summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--slides/ecc2011-klauser.nios2-linux.tex139
-rw-r--r--slides/images/design-flow.diabin0 -> 3284 bytes
-rw-r--r--slides/images/design-flow.dia~bin0 -> 3284 bytes
-rw-r--r--slides/images/design-flow.pdfbin0 -> 23142 bytes
-rw-r--r--slides/images/design-flow.svg375
-rw-r--r--slides/images/ines-logo.pngbin0 -> 85366 bytes
-rw-r--r--slides/images/tux.pdfbin0 -> 119015 bytes
-rw-r--r--slides/images/tux.svg973
8 files changed, 1476 insertions, 11 deletions
diff --git a/slides/ecc2011-klauser.nios2-linux.tex b/slides/ecc2011-klauser.nios2-linux.tex
index cd8697d..5903eef 100644
--- a/slides/ecc2011-klauser.nios2-linux.tex
+++ b/slides/ecc2011-klauser.nios2-linux.tex
@@ -7,6 +7,7 @@
\usetheme{Boadilla}
+\usepackage{epstopdf}
\usepackage{ngerman}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
@@ -32,7 +33,7 @@
% \setbeamercovered{dynamic}
}
-\logo{\includegraphics[width=2cm]{images/zhaw-logo.png}}
+\logo{\includegraphics[width=2cm]{images/ines-logo.png}}
\title{Linux auf dem Nios II Softcore Prozessor}
\subtitle{}
@@ -71,20 +72,19 @@
\section{Übersicht FPGA und Softcore Prozessoren}
-\begin{frame}
+\begin{frame}{FPGA und Softcore}
\begin{itemize}
\item Field Programmable Gate Array
\begin{itemize}
\item Chip-Logik (Gateware) wird in einer Beschreibungssprache (VHDL, Verilog) codiert
- \item Änderungen am Design relativ einfach
+ \item Änderungen am Design relativ einfach, Custom Systems
\item Parallelität
- \item Custom Systems
\end{itemize}
\item Softcore
\begin{itemize}
\item Prozessor innerhalb des FPGA implementiert
\item Fast immer Bestandteil eines System-on-a-Chip
- \item Konfigurierbar (z.B. mit oder ohne MMU), erweiterbar (z.B. Custom Instructions)
+ \item Konfigurierbar (z.B. MMU), erweiterbar (z.B. Custom Instructions)
\item Proprietär, herstellerabhängig: Nios II (Altera), MicroBlaze (Xilinx),
Cortex M1 (ARM)
\item Open-Source Softcores: Gaisler LEON, OpenRISC, LatticeMico32
@@ -92,13 +92,30 @@
\end{itemize}
\end{frame}
+\begin{frame}{Nios II}
+ \begin{itemize}
+ \item 32-bit RISC Softcore-Prozessorarchitektur für Altera FPGAs
+ \item 3 Basisvarianten:
+ \begin{itemize}
+ \item Economy (600-700 LEs)
+ \item Standard (1200-1400 LEs)
+ \item Fast (2600-3000 LEs)
+ \end{itemize}
+ \item Konfigurierbar mit oder ohne Memory Management Unit (MMU)
+ \item Optionale Hardware MUL/DIV Instruktionen, Custom Instructions
+ \item Peripherie (Timer, UART, Ethernet MAC, Flash Controller, \dots) als IP über SOPC
+ System konfigurierbar
+ \end{itemize}
+\end{frame}
+
\section{Übersicht Linux}
\begin{frame}{Wieso ein Betriebssystem?}
\begin{itemize}
\item Multi-Tasking, Multi-User
\item Memory Management, Memory Protection (MMU benötigt)
- \item TCP/IP
+ \item TCP/IP Stack
+ \item Filesysteme
\item Bestehende Software und Treiber
\end{itemize}
\end{frame}
@@ -109,26 +126,47 @@
Smartphones), Skalierbarkeit
\item Umfangreiches Software-Ökosystem, grosse Community
\item Einheitliche Entwicklungsumgebung (Unix-artig, POSIX-Standard)
- \item Portierungen auf zahlreiche (~30) Prozessor-Architekturen
- \item Niedrige Kosten
+ \item Portierungen auf zahlreiche ($\sim 30$) Prozessor-Architekturen
+ \item Niedrige Kosten, freie Lizenzen
+ \end{itemize}
+\end{frame}
+
+\begin{frame}{Embedded Linux}
+ \begin{columns}
+ \column{8cm}
+ \begin{itemize}
+ \item Linux Kernel als Kernkomponente eines Linux Systems
+ \item Libraries und Applikationen werden zusätzlich benötigt, um ein
+ komplettes System zu erhalten
+ \item Minimale Voraussetzungen:
+ \begin{itemize}
+ \item 32-bit Prozessor (mit oder ohne MMU)
+ \item unterstützte Toolchain (GCC, binutils, \dots)
+ \item libc (uClibc, eglibc)
+ \end{itemize}
\end{itemize}
+ \column{4.5cm}
+ \begin{center}
+ \includegraphics[width=0.8\textwidth]{images/tux.pdf}
+ \end{center}
+ \end{columns}
\end{frame}
\section{Linux auf dem Nios II}
\begin{frame}{Linux/uClinux auf dem Nios II}
\begin{itemize}
- \item Nios II: 32-bit Softcore-Prozessorarchitektur für Altera FPGAs
\item Linux unterstützt Nios II mit \emph{und} ohne MMU
\begin{itemize}
\item Erster Port von Microtronix für Nios II NOMMU
\item Separater Port von Wind River für Nios II MMU
\end{itemize}
\item Open Source Nios II Linux
+ (\href{http://www.alterawiki.com/wiki/Linux}{alterawiki.com/wiki/Linux})
\begin{itemize}
\item MMU und NOMMU Ports zusammengeführt
\item Anpassungen an aktuelle Linux Kernel Versionen
- \item Integration in Mainline (kernel.org) geplant
+ \item Integration in Mainline (\href{http://www.kernel.org}{kernel.org}) geplant
\end{itemize}
\item Kommerzielle Anbieter
\begin{itemize}
@@ -138,9 +176,88 @@
\end{itemize}
\end{frame}
+\begin{frame}{Development Workflow}
+ \begin{center}
+ \includegraphics[height=0.8\textheight]{images/design-flow.pdf}
+ \end{center}
+\end{frame}
+
+\begin{frame}[containsverbatim]{Linux Image}
+ \begin{itemize}
+ \item Kernel Image als ELF-Binary
+ \item Device Tree: Strukturierte Beschreibung der Hardware
+ \begin{itemize}
+ \item Bestandteil des Kernel Images
+ \item Optional in Flash (bedingt Verwendung von u-boot Bootloader)
+ \end{itemize}
+ \item Root Filesystem in einem \verb|initramfs| an Kernel angehängt
+ \item Keine Persistenz über Reboot hinweg
+ \begin{itemize}
+ \item Alternative: Root FS separat in Flash speichern
+ \item NFS (Network Filesystem) verwenden
+ \end{itemize}
+ \end{itemize}
+\end{frame}
+
+\begin{frame}[containsverbatim]{Bootprozess - RAM}
+ \begin{enumerate}
+ \item Laden des FPGA-Bitstreams via JTAG
+ \item Laden des Linux Images via JTAG
+ \item ...
+ \item Beim Booten wird das \verb|initramfs| durch den Kernel ins RAM entpackt und
+ verwendet
+ \end{enumerate}
+\end{frame}
+
\section{Anwendungsbeispiele}
-\begin{frame}{Danke}
+\begin{frame}{Anwendungsbeispiel - Redundantes Kommunikationsnetzwerk}
+ \begin{columns}
+ \column{8cm}
+ \begin{itemize}
+ \item Ethernet-basiert, optional SHDSL
+ \item Parallel Redundancy Protocol
+ \item Software-Komponenten für SHDSL, Webserver, SNMP
+ \item Treiber für eigene IP-Komponenten
+ \end{itemize}
+ \column{4.5cm}
+ \begin{center}
+ \end{center}
+ \end{columns}
+\end{frame}
+
+\begin{frame}{Anwendungsbeispiel - Übertragung von HD-Videodaten}
+ \begin{itemize}
+ \item Gigabit-Ethernet
+ \item USB Host- und Device-Controller
+ \item Software-Komponenten für Session-Setup, Webserver
+ \end{itemize}
+\end{frame}
+
+\begin{frame}{Zusammenfassung}
+ \begin{columns}[t]
+ \column{0.5\textwidth}
+ \begin{itemize}
+ \item foo
+ \item bar
+ \item baz
+ \item quuz
+ \end{itemize}
+ \column{0.5\textwidth}
+ \begin{itemize}
+ \item foo
+ \item bar
+ \end{itemize}
+ \end{columns}
+\end{frame}
+
+\begin{frame}{Danke für Ihre Aufmerksamkeit}
+\begin{center}
+Tobias Klauser\\
+Institute of Embedded Systems\\
+Zürcher Hochschule für Angewandte Wissenschaften\\
+\href{mailto:klto@zhaw.ch}{klto@zhaw.ch}\\
+\end{center}
\end{frame}
\end{document}
diff --git a/slides/images/design-flow.dia b/slides/images/design-flow.dia
new file mode 100644
index 0000000..b9d746f
--- /dev/null
+++ b/slides/images/design-flow.dia
Binary files differ
diff --git a/slides/images/design-flow.dia~ b/slides/images/design-flow.dia~
new file mode 100644
index 0000000..b9d746f
--- /dev/null
+++ b/slides/images/design-flow.dia~
Binary files differ
diff --git a/slides/images/design-flow.pdf b/slides/images/design-flow.pdf
new file mode 100644
index 0000000..741ce36
--- /dev/null
+++ b/slides/images/design-flow.pdf
Binary files differ
diff --git a/slides/images/design-flow.svg b/slides/images/design-flow.svg
new file mode 100644
index 0000000..55ae0c6
--- /dev/null
+++ b/slides/images/design-flow.svg
@@ -0,0 +1,375 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/PR-SVG-20010719/DTD/svg10.dtd">
+<svg width="28cm" height="24cm" viewBox="-2 8 542 474" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <g>
+ <rect style="fill: #add8e6" x="61.05" y="69.6576" width="107.45" height="55.8667"/>
+ <path style="fill: #add8e6" d="M 61.05,69.6576 A 10,10 0 0 0 51.05,79.6576 L 61.05,79.6576 z"/>
+ <path style="fill: #add8e6" d="M 178.5,79.6576 A 10,10 0 0 0 168.5,69.6576 L 168.5,79.6576 z"/>
+ <rect style="fill: #add8e6" x="51.05" y="79.6576" width="127.45" height="35.8667"/>
+ <path style="fill: #add8e6" d="M 51.05,115.524 A 10,10 0 0 0 61.05,125.524 L 61.05,115.524 z"/>
+ <path style="fill: #add8e6" d="M 168.5,125.524 A 10,10 0 0 0 178.5,115.524 L 168.5,115.524 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="61.05" y1="69.6576" x2="168.5" y2="69.6576"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="61.05" y1="125.524" x2="168.5" y2="125.524"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 61.05,69.6576 A 10,10 0 0 0 51.05,79.6576"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 178.5,79.6576 A 10,10 0 0 0 168.5,69.6576"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="51.05" y1="79.6576" x2="51.05" y2="115.524"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="178.5" y1="79.6576" x2="178.5" y2="115.524"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 51.05,115.524 A 10,10 0 0 0 61.05,125.524"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 168.5,125.524 A 10,10 0 0 0 178.5,115.524"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="114.775" y="93.2576">
+ <tspan x="114.775" y="93.2576">FPGA Gateware</tspan>
+ <tspan x="114.775" y="110.191">Design</tspan>
+ </text>
+ </g>
+ <g>
+ <rect style="fill: #add8e6" x="64.25" y="210.244" width="100.75" height="55.8667"/>
+ <path style="fill: #add8e6" d="M 64.25,210.244 A 10,10 0 0 0 54.25,220.244 L 64.25,220.244 z"/>
+ <path style="fill: #add8e6" d="M 175,220.244 A 10,10 0 0 0 165,210.244 L 165,220.244 z"/>
+ <rect style="fill: #add8e6" x="54.25" y="220.244" width="120.75" height="35.8667"/>
+ <path style="fill: #add8e6" d="M 54.25,256.111 A 10,10 0 0 0 64.25,266.111 L 64.25,256.111 z"/>
+ <path style="fill: #add8e6" d="M 165,266.111 A 10,10 0 0 0 175,256.111 L 165,256.111 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="64.25" y1="210.244" x2="165" y2="210.244"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="64.25" y1="266.111" x2="165" y2="266.111"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 64.25,210.244 A 10,10 0 0 0 54.25,220.244"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 175,220.244 A 10,10 0 0 0 165,210.244"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="54.25" y1="220.244" x2="54.25" y2="256.111"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="175" y1="220.244" x2="175" y2="256.111"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 54.25,256.111 A 10,10 0 0 0 64.25,266.111"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 165,266.111 A 10,10 0 0 0 175,256.111"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="114.625" y="233.844">
+ <tspan x="114.625" y="233.844">Generate</tspan>
+ <tspan x="114.625" y="250.777">device tree</tspan>
+ </text>
+ </g>
+ <g>
+ <rect style="fill: #4d4d4d" x="400" y="67" width="101.55" height="123.3"/>
+ <path style="fill: #4d4d4d" d="M 400,67 A 10,10 0 0 0 390,77 L 400,77 z"/>
+ <path style="fill: #4d4d4d" d="M 511.55,77 A 10,10 0 0 0 501.55,67 L 501.55,77 z"/>
+ <rect style="fill: #4d4d4d" x="390" y="77" width="121.55" height="103.3"/>
+ <path style="fill: #4d4d4d" d="M 390,180.3 A 10,10 0 0 0 400,190.3 L 400,180.3 z"/>
+ <path style="fill: #4d4d4d" d="M 501.55,190.3 A 10,10 0 0 0 511.55,180.3 L 501.55,180.3 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="400" y1="67" x2="501.55" y2="67"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="400" y1="190.3" x2="501.55" y2="190.3"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 400,67 A 10,10 0 0 0 390,77"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 511.55,77 A 10,10 0 0 0 501.55,67"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="390" y1="77" x2="390" y2="180.3"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="511.55" y1="77" x2="511.55" y2="180.3"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 390,180.3 A 10,10 0 0 0 400,190.3"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 501.55,190.3 A 10,10 0 0 0 511.55,180.3"/>
+ <text style="fill: #ffffff;text-anchor:middle;font-size:14.6756;font-family:sanserif;font-style:normal;font-weight:700" x="450.775" y="133.128">
+ <tspan x="450.775" y="133.128">FPGA</tspan>
+ </text>
+ </g>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="178.5" y1="97.5909" x2="204.264" y2="97.7193"/>
+ <polygon style="fill: #000000" points="211.764,97.7566 201.739,102.707 204.264,97.7193 201.789,92.7069 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="211.764,97.7566 201.739,102.707 204.264,97.7193 201.789,92.7069 "/>
+ </g>
+ <g>
+ <rect style="fill: #e9b65b" x="224" y="77.7678" width="101.55" height="40"/>
+ <path style="fill: #e9b65b" d="M 224,77.7678 A 10,10 0 0 0 214,87.7678 L 224,87.7678 z"/>
+ <path style="fill: #e9b65b" d="M 335.55,87.7678 A 10,10 0 0 0 325.55,77.7678 L 325.55,87.7678 z"/>
+ <rect style="fill: #e9b65b" x="214" y="87.7678" width="121.55" height="20"/>
+ <path style="fill: #e9b65b" d="M 214,107.768 A 10,10 0 0 0 224,117.768 L 224,107.768 z"/>
+ <path style="fill: #e9b65b" d="M 325.55,117.768 A 10,10 0 0 0 335.55,107.768 L 325.55,107.768 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="224" y1="77.7678" x2="325.55" y2="77.7678"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="224" y1="117.768" x2="325.55" y2="117.768"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 224,77.7678 A 10,10 0 0 0 214,87.7678"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 335.55,87.7678 A 10,10 0 0 0 325.55,77.7678"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="214" y1="87.7678" x2="214" y2="107.768"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="335.55" y1="87.7678" x2="335.55" y2="107.768"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 214,107.768 A 10,10 0 0 0 224,117.768"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 325.55,117.768 A 10,10 0 0 0 335.55,107.768"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="274.775" y="101.901">
+ <tspan x="274.775" y="101.901">Bitstream</tspan>
+ </text>
+ </g>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="335.55" y1="97.7678" x2="380.264" y2="97.8148"/>
+ <polygon style="fill: #000000" points="387.764,97.8226 377.759,102.812 380.264,97.8148 377.769,92.8121 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="387.764,97.8226 377.759,102.812 380.264,97.8148 377.769,92.8121 "/>
+ </g>
+ <g>
+ <rect style="fill: #e9b65b" x="64" y="149.294" width="101.55" height="38.9333"/>
+ <path style="fill: #e9b65b" d="M 64,149.294 A 10,10 0 0 0 54,159.294 L 64,159.294 z"/>
+ <path style="fill: #e9b65b" d="M 175.55,159.294 A 10,10 0 0 0 165.55,149.294 L 165.55,159.294 z"/>
+ <rect style="fill: #e9b65b" x="54" y="159.294" width="121.55" height="18.9333"/>
+ <path style="fill: #e9b65b" d="M 54,178.228 A 10,10 0 0 0 64,188.228 L 64,178.228 z"/>
+ <path style="fill: #e9b65b" d="M 165.55,188.228 A 10,10 0 0 0 175.55,178.228 L 165.55,178.228 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="64" y1="149.294" x2="165.55" y2="149.294"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="64" y1="188.228" x2="165.55" y2="188.228"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 64,149.294 A 10,10 0 0 0 54,159.294"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 175.55,159.294 A 10,10 0 0 0 165.55,149.294"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="54" y1="159.294" x2="54" y2="178.228"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="175.55" y1="159.294" x2="175.55" y2="178.228"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 54,178.228 A 10,10 0 0 0 64,188.228"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 165.55,188.228 A 10,10 0 0 0 175.55,178.228"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="114.775" y="172.894">
+ <tspan x="114.775" y="172.894">sopcinfo</tspan>
+ </text>
+ </g>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="114.775" y1="125.524" x2="114.775" y2="138.568"/>
+ <polygon style="fill: #000000" points="114.775,146.068 109.775,136.068 114.775,138.568 119.775,136.068 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="114.775,146.068 109.775,136.068 114.775,138.568 119.775,136.068 "/>
+ </g>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="114.775" y1="188.228" x2="114.741" y2="199.503"/>
+ <polygon style="fill: #000000" points="114.719,207.003 109.749,196.988 114.741,199.503 119.749,197.018 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="114.719,207.003 109.749,196.988 114.741,199.503 119.749,197.018 "/>
+ </g>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="114.625" y1="266.112" x2="114.591" y2="277.258"/>
+ <polygon style="fill: #000000" points="114.567,284.758 109.598,274.743 114.591,277.258 119.598,274.773 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="114.567,284.758 109.598,274.743 114.591,277.258 119.598,274.773 "/>
+ </g>
+ <g>
+ <rect style="fill: #add8e6" x="63.625" y="346.766" width="101.55" height="55.8667"/>
+ <path style="fill: #add8e6" d="M 63.625,346.766 A 10,10 0 0 0 53.625,356.766 L 63.625,356.766 z"/>
+ <path style="fill: #add8e6" d="M 175.175,356.766 A 10,10 0 0 0 165.175,346.766 L 165.175,356.766 z"/>
+ <rect style="fill: #add8e6" x="53.625" y="356.766" width="121.55" height="35.8667"/>
+ <path style="fill: #add8e6" d="M 53.625,392.633 A 10,10 0 0 0 63.625,402.633 L 63.625,392.633 z"/>
+ <path style="fill: #add8e6" d="M 165.175,402.633 A 10,10 0 0 0 175.175,392.633 L 165.175,392.633 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="63.625" y1="346.766" x2="165.175" y2="346.766"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="63.625" y1="402.633" x2="165.175" y2="402.633"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 63.625,346.766 A 10,10 0 0 0 53.625,356.766"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 175.175,356.766 A 10,10 0 0 0 165.175,346.766"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="53.625" y1="356.766" x2="53.625" y2="392.633"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="175.175" y1="356.766" x2="175.175" y2="392.633"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 53.625,392.633 A 10,10 0 0 0 63.625,402.633"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 165.175,402.633 A 10,10 0 0 0 175.175,392.633"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="114.4" y="370.366">
+ <tspan x="114.4" y="370.366">uClinux-dist</tspan>
+ <tspan x="114.4" y="387.299">Build System</tspan>
+ </text>
+ </g>
+ <g>
+ <rect style="fill: #e9b65b" x="64" y="286.994" width="101.121" height="38.9333"/>
+ <path style="fill: #e9b65b" d="M 64,286.994 A 10,10 0 0 0 54,296.994 L 64,296.994 z"/>
+ <path style="fill: #e9b65b" d="M 175.121,296.994 A 10,10 0 0 0 165.121,286.994 L 165.121,296.994 z"/>
+ <rect style="fill: #e9b65b" x="54" y="296.994" width="121.121" height="18.9333"/>
+ <path style="fill: #e9b65b" d="M 54,315.927 A 10,10 0 0 0 64,325.927 L 64,315.927 z"/>
+ <path style="fill: #e9b65b" d="M 165.121,325.927 A 10,10 0 0 0 175.121,315.927 L 165.121,315.927 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="64" y1="286.994" x2="165.121" y2="286.994"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="64" y1="325.927" x2="165.121" y2="325.927"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 64,286.994 A 10,10 0 0 0 54,296.994"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 175.121,296.994 A 10,10 0 0 0 165.121,286.994"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="54" y1="296.994" x2="54" y2="315.927"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="175.121" y1="296.994" x2="175.121" y2="315.927"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 54,315.927 A 10,10 0 0 0 64,325.927"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 165.121,325.927 A 10,10 0 0 0 175.121,315.927"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="114.561" y="310.594">
+ <tspan x="114.561" y="310.594">device tree</tspan>
+ </text>
+ </g>
+ <g>
+ <rect style="fill: #4d4d4d" x="372.323" y="211.85" width="57.5" height="61.3"/>
+ <path style="fill: #4d4d4d" d="M 372.323,211.85 A 10,10 0 0 0 362.323,221.85 L 372.323,221.85 z"/>
+ <path style="fill: #4d4d4d" d="M 439.823,221.85 A 10,10 0 0 0 429.823,211.85 L 429.823,221.85 z"/>
+ <rect style="fill: #4d4d4d" x="362.323" y="221.85" width="77.5" height="41.3"/>
+ <path style="fill: #4d4d4d" d="M 362.323,263.15 A 10,10 0 0 0 372.323,273.15 L 372.323,263.15 z"/>
+ <path style="fill: #4d4d4d" d="M 429.823,273.15 A 10,10 0 0 0 439.823,263.15 L 429.823,263.15 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="372.323" y1="211.85" x2="429.823" y2="211.85"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="372.323" y1="273.15" x2="429.823" y2="273.15"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 372.323,211.85 A 10,10 0 0 0 362.323,221.85"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 439.823,221.85 A 10,10 0 0 0 429.823,211.85"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="362.323" y1="221.85" x2="362.323" y2="263.15"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="439.823" y1="221.85" x2="439.823" y2="263.15"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 362.323,263.15 A 10,10 0 0 0 372.323,273.15"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 429.823,273.15 A 10,10 0 0 0 439.823,263.15"/>
+ <text style="fill: #ffffff;text-anchor:middle;font-size:14.6756;font-family:sanserif;font-style:normal;font-weight:700" x="401.073" y="246.978">
+ <tspan x="401.073" y="246.978">RAM</tspan>
+ </text>
+ </g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 6; stroke: #000000" x1="420.388" y1="190.3" x2="420.448" y2="211.85"/>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="114.561" y1="325.927" x2="114.475" y2="337.03"/>
+ <polygon style="fill: #000000" points="114.417,344.53 109.494,334.492 114.475,337.03 119.494,334.569 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="114.417,344.53 109.494,334.492 114.475,337.03 119.494,334.569 "/>
+ </g>
+ <g>
+ <rect style="fill: #e9b65b" x="9.6" y="9.93378" width="90.5" height="38.9333"/>
+ <path style="fill: #e9b65b" d="M 9.6,9.93378 A 10,10 0 0 0 -0.4,19.9338 L 9.6,19.9338 z"/>
+ <path style="fill: #e9b65b" d="M 110.1,19.9338 A 10,10 0 0 0 100.1,9.93378 L 100.1,19.9338 z"/>
+ <rect style="fill: #e9b65b" x="-0.4" y="19.9338" width="110.5" height="18.9333"/>
+ <path style="fill: #e9b65b" d="M -0.4,38.8671 A 10,10 0 0 0 9.6,48.8671 L 9.6,38.8671 z"/>
+ <path style="fill: #e9b65b" d="M 100.1,48.8671 A 10,10 0 0 0 110.1,38.8671 L 100.1,38.8671 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="9.6" y1="9.93378" x2="100.1" y2="9.93378"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="9.6" y1="48.8671" x2="100.1" y2="48.8671"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 9.6,9.93378 A 10,10 0 0 0 -0.4,19.9338"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 110.1,19.9338 A 10,10 0 0 0 100.1,9.93378"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="-0.4" y1="19.9338" x2="-0.4" y2="38.8671"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="110.1" y1="19.9338" x2="110.1" y2="38.8671"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M -0.4,38.8671 A 10,10 0 0 0 9.6,48.8671"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 100.1,48.8671 A 10,10 0 0 0 110.1,38.8671"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="54.85" y="33.5338">
+ <tspan x="54.85" y="33.5338">VHDL/Verilog</tspan>
+ </text>
+ </g>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="54.85" y1="48.8671" x2="75.0895" y2="63.8618"/>
+ <polygon style="fill: #000000" points="81.1158,68.3265 70.1042,66.3911 75.0895,63.8618 76.0572,58.356 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="81.1158,68.3265 70.1042,66.3911 75.0895,63.8618 76.0572,58.356 "/>
+ </g>
+ <g>
+ <rect style="fill: #e9b65b" x="136.136" y="9.86056" width="83.2" height="38.9333"/>
+ <path style="fill: #e9b65b" d="M 136.136,9.86056 A 10,10 0 0 0 126.136,19.8606 L 136.136,19.8606 z"/>
+ <path style="fill: #e9b65b" d="M 229.336,19.8606 A 10,10 0 0 0 219.336,9.86056 L 219.336,19.8606 z"/>
+ <rect style="fill: #e9b65b" x="126.136" y="19.8606" width="103.2" height="18.9333"/>
+ <path style="fill: #e9b65b" d="M 126.136,38.7939 A 10,10 0 0 0 136.136,48.7939 L 136.136,38.7939 z"/>
+ <path style="fill: #e9b65b" d="M 219.336,48.7939 A 10,10 0 0 0 229.336,38.7939 L 219.336,38.7939 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="136.136" y1="9.86056" x2="219.336" y2="9.86056"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="136.136" y1="48.7939" x2="219.336" y2="48.7939"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 136.136,9.86056 A 10,10 0 0 0 126.136,19.8606"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 229.336,19.8606 A 10,10 0 0 0 219.336,9.86056"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="126.136" y1="19.8606" x2="126.136" y2="38.7939"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="229.336" y1="19.8606" x2="229.336" y2="38.7939"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 126.136,38.7939 A 10,10 0 0 0 136.136,48.7939"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 219.336,48.7939 A 10,10 0 0 0 229.336,38.7939"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="177.736" y="33.4606">
+ <tspan x="177.736" y="33.4606">SOPC/qsys</tspan>
+ </text>
+ </g>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="177.736" y1="48.7939" x2="154.723" y2="64.2334"/>
+ <polygon style="fill: #000000" points="148.494,68.4118 154.013,58.6884 154.723,64.2334 159.584,66.9927 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="148.494,68.4118 154.013,58.6884 154.723,64.2334 159.584,66.9927 "/>
+ </g>
+ <g>
+ <rect style="fill: #e9b65b" x="13.9355" y="425" width="85.4" height="55.7491"/>
+ <path style="fill: #e9b65b" d="M 13.9355,425 A 10,10 0 0 0 3.93554,435 L 13.9355,435 z"/>
+ <path style="fill: #e9b65b" d="M 109.336,435 A 10,10 0 0 0 99.3355,425 L 99.3355,435 z"/>
+ <rect style="fill: #e9b65b" x="3.93554" y="435" width="105.4" height="35.7491"/>
+ <path style="fill: #e9b65b" d="M 3.93554,470.749 A 10,10 0 0 0 13.9355,480.749 L 13.9355,470.749 z"/>
+ <path style="fill: #e9b65b" d="M 99.3355,480.749 A 10,10 0 0 0 109.336,470.749 L 99.3355,470.749 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="13.9355" y1="425" x2="99.3355" y2="425"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="13.9355" y1="480.749" x2="99.3355" y2="480.749"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 13.9355,425 A 10,10 0 0 0 3.93554,435"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 109.336,435 A 10,10 0 0 0 99.3355,425"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="3.93554" y1="435" x2="3.93554" y2="470.749"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="109.336" y1="435" x2="109.336" y2="470.749"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 3.93554,470.749 A 10,10 0 0 0 13.9355,480.749"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 99.3355,480.749 A 10,10 0 0 0 109.336,470.749"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="56.6355" y="457.008">
+ <tspan x="56.6355" y="457.008">Linux Kernel</tspan>
+ </text>
+ </g>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="56.6355" y1="425" x2="76.4729" y2="408.793"/>
+ <polygon style="fill: #000000" points="82.2809,404.047 77.7004,414.246 76.4729,408.793 71.3734,406.502 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="82.2809,404.047 77.7004,414.246 76.4729,408.793 71.3734,406.502 "/>
+ </g>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="173.636" y1="425.276" x2="152.446" y2="408.644"/>
+ <polygon style="fill: #000000" points="146.546,404.013 157.5,406.255 152.446,408.644 151.325,414.121 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="146.546,404.013 157.5,406.255 152.446,408.644 151.325,414.121 "/>
+ </g>
+ <g>
+ <rect style="fill: #e9b65b" x="133.5" y="425.276" width="80.2711" height="55.8667"/>
+ <path style="fill: #e9b65b" d="M 133.5,425.276 A 10,10 0 0 0 123.5,435.276 L 133.5,435.276 z"/>
+ <path style="fill: #e9b65b" d="M 223.771,435.276 A 10,10 0 0 0 213.771,425.276 L 213.771,435.276 z"/>
+ <rect style="fill: #e9b65b" x="123.5" y="435.276" width="100.271" height="35.8667"/>
+ <path style="fill: #e9b65b" d="M 123.5,471.143 A 10,10 0 0 0 133.5,481.143 L 133.5,471.143 z"/>
+ <path style="fill: #e9b65b" d="M 213.771,481.143 A 10,10 0 0 0 223.771,471.143 L 213.771,471.143 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="133.5" y1="425.276" x2="213.771" y2="425.276"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="133.5" y1="481.143" x2="213.771" y2="481.143"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 133.5,425.276 A 10,10 0 0 0 123.5,435.276"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 223.771,435.276 A 10,10 0 0 0 213.771,425.276"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="123.5" y1="435.276" x2="123.5" y2="471.143"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="223.771" y1="435.276" x2="223.771" y2="471.143"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 123.5,471.143 A 10,10 0 0 0 133.5,481.143"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 213.771,481.143 A 10,10 0 0 0 223.771,471.143"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="173.636" y="448.876">
+ <tspan x="173.636" y="448.876">Userspace/</tspan>
+ <tspan x="173.636" y="465.809">Libraries</tspan>
+ </text>
+ </g>
+ <g>
+ <rect style="fill: #e9b65b" x="220.5" y="320.222" width="108.5" height="38.9333"/>
+ <path style="fill: #e9b65b" d="M 220.5,320.222 A 10,10 0 0 0 210.5,330.222 L 220.5,330.222 z"/>
+ <path style="fill: #e9b65b" d="M 339,330.222 A 10,10 0 0 0 329,320.222 L 329,330.222 z"/>
+ <rect style="fill: #e9b65b" x="210.5" y="330.222" width="128.5" height="18.9333"/>
+ <path style="fill: #e9b65b" d="M 210.5,349.155 A 10,10 0 0 0 220.5,359.155 L 220.5,349.155 z"/>
+ <path style="fill: #e9b65b" d="M 329,359.155 A 10,10 0 0 0 339,349.155 L 329,349.155 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="220.5" y1="320.222" x2="329" y2="320.222"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="220.5" y1="359.155" x2="329" y2="359.155"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 220.5,320.222 A 10,10 0 0 0 210.5,330.222"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 339,330.222 A 10,10 0 0 0 329,320.222"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="210.5" y1="330.222" x2="210.5" y2="349.155"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" x1="339" y1="330.222" x2="339" y2="349.155"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 210.5,349.155 A 10,10 0 0 0 220.5,359.155"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #4d4d4d" d="M 329,359.155 A 10,10 0 0 0 339,349.155"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="274.75" y="343.822">
+ <tspan x="274.75" y="343.822">Kernel Image</tspan>
+ </text>
+ </g>
+ <g>
+ <rect style="fill: #e9b65b" x="221.476" y="371.15" width="108.6" height="40"/>
+ <path style="fill: #e9b65b" d="M 221.476,371.15 A 10,10 0 0 0 211.476,381.15 L 221.476,381.15 z"/>
+ <path style="fill: #e9b65b" d="M 340.076,381.15 A 10,10 0 0 0 330.076,371.15 L 330.076,381.15 z"/>
+ <rect style="fill: #e9b65b" x="211.476" y="381.15" width="128.6" height="20"/>
+ <path style="fill: #e9b65b" d="M 211.476,401.15 A 10,10 0 0 0 221.476,411.15 L 221.476,401.15 z"/>
+ <path style="fill: #e9b65b" d="M 330.076,411.15 A 10,10 0 0 0 340.076,401.15 L 330.076,401.15 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #4d4d4d" x1="221.476" y1="371.15" x2="330.076" y2="371.15"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #4d4d4d" x1="221.476" y1="411.15" x2="330.076" y2="411.15"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #4d4d4d" d="M 221.476,371.15 A 10,10 0 0 0 211.476,381.15"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #4d4d4d" d="M 340.076,381.15 A 10,10 0 0 0 330.076,371.15"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #4d4d4d" x1="211.476" y1="381.15" x2="211.476" y2="401.15"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #4d4d4d" x1="340.076" y1="381.15" x2="340.076" y2="401.15"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #4d4d4d" d="M 211.476,401.15 A 10,10 0 0 0 221.476,411.15"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #4d4d4d" d="M 330.076,411.15 A 10,10 0 0 0 340.076,401.15"/>
+ <text style="fill: #000000;text-anchor:middle;font-size:13.5467;font-family:sanserif;font-style:normal;font-weight:normal" x="275.776" y="395.283">
+ <tspan x="275.776" y="395.283">Root Filesystem</tspan>
+ </text>
+ </g>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="175.175" y1="360.733" x2="202.136" y2="344.673"/>
+ <polygon style="fill: #000000" points="208.579,340.834 202.547,350.248 202.136,344.673 197.429,341.656 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="208.579,340.834 202.547,350.248 202.136,344.673 197.429,341.656 "/>
+ </g>
+ <g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #000000" x1="175.175" y1="388.666" x2="201.763" y2="390.485"/>
+ <polygon style="fill: #000000" points="209.245,390.997 198.927,395.303 201.763,390.485 199.61,385.326 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="209.245,390.997 198.927,395.303 201.763,390.485 199.61,385.326 "/>
+ </g>
+ <g>
+ <polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="339,339.689 381.698,339.689 381.698,282.886 "/>
+ <polygon style="fill: #000000" points="381.698,275.386 386.698,285.386 381.698,282.886 376.698,285.386 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="381.698,275.386 386.698,285.386 381.698,282.886 376.698,285.386 "/>
+ </g>
+ <g>
+ <polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #000000" points="340.076,391.15 420.448,391.15 420.448,282.886 "/>
+ <polygon style="fill: #000000" points="420.448,275.386 425.448,285.386 420.448,282.886 415.448,285.386 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="420.448,275.386 425.448,285.386 420.448,282.886 415.448,285.386 "/>
+ </g>
+ <g>
+ <rect style="fill: #4d4d4d" x="471.777" y="211.32" width="57.5" height="61.3"/>
+ <path style="fill: #4d4d4d" d="M 471.777,211.32 A 10,10 0 0 0 461.777,221.32 L 471.777,221.32 z"/>
+ <path style="fill: #4d4d4d" d="M 539.277,221.32 A 10,10 0 0 0 529.277,211.32 L 529.277,221.32 z"/>
+ <rect style="fill: #4d4d4d" x="461.777" y="221.32" width="77.5" height="41.3"/>
+ <path style="fill: #4d4d4d" d="M 461.777,262.62 A 10,10 0 0 0 471.777,272.62 L 471.777,262.62 z"/>
+ <path style="fill: #4d4d4d" d="M 529.277,272.62 A 10,10 0 0 0 539.277,262.62 L 529.277,262.62 z"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="471.777" y1="211.32" x2="529.277" y2="211.32"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="471.777" y1="272.62" x2="529.277" y2="272.62"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 471.777,211.32 A 10,10 0 0 0 461.777,221.32"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 539.277,221.32 A 10,10 0 0 0 529.277,211.32"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="461.777" y1="221.32" x2="461.777" y2="262.62"/>
+ <line style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" x1="539.277" y1="221.32" x2="539.277" y2="262.62"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 461.777,262.62 A 10,10 0 0 0 471.777,272.62"/>
+ <path style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" d="M 529.277,272.62 A 10,10 0 0 0 539.277,262.62"/>
+ <text style="fill: #ffffff;text-anchor:middle;font-size:14.6756;font-family:sanserif;font-style:normal;font-weight:700" x="500.527" y="246.447">
+ <tspan x="500.527" y="246.447">Flash</tspan>
+ </text>
+ </g>
+ <line style="fill: none; fill-opacity:0; stroke-width: 6; stroke: #000000" x1="481.163" y1="190.3" x2="481.152" y2="211.32"/>
+ <g>
+ <polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #000000" points="422,390 422,391 519.902,391 519.902,282.356 "/>
+ <polygon style="fill: #000000" points="519.902,274.856 524.902,284.856 519.902,282.356 514.902,284.856 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="519.902,274.856 524.902,284.856 519.902,282.356 514.902,284.856 "/>
+ </g>
+ <g>
+ <polyline style="fill: none; fill-opacity:0; stroke-width: 2; stroke-dasharray: 4; stroke: #000000" points="384,341 384,340 481.152,340 481.152,282.356 "/>
+ <polygon style="fill: #000000" points="481.152,274.856 486.152,284.856 481.152,282.356 476.152,284.856 "/>
+ <polygon style="fill: none; fill-opacity:0; stroke-width: 2; stroke: #000000" points="481.152,274.856 486.152,284.856 481.152,282.356 476.152,284.856 "/>
+ </g>
+</svg>
diff --git a/slides/images/ines-logo.png b/slides/images/ines-logo.png
new file mode 100644
index 0000000..3f90be2
--- /dev/null
+++ b/slides/images/ines-logo.png
Binary files differ
diff --git a/slides/images/tux.pdf b/slides/images/tux.pdf
new file mode 100644
index 0000000..1b5daae
--- /dev/null
+++ b/slides/images/tux.pdf
Binary files differ
diff --git a/slides/images/tux.svg b/slides/images/tux.svg
new file mode 100644
index 0000000..da88bf1
--- /dev/null
+++ b/slides/images/tux.svg
@@ -0,0 +1,973 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 335 394">
+<title>Tux</title>
+<desc>For more information see: http://commons.wikimedia.org/wiki/Image:Tux.svg</desc>
+<radialGradient id="SVGID_1_" cx="274.822" cy="-551.0396" r="165.384" gradientTransform="matrix(0.5671 0 0 -0.2835 84.6678 188.6448)" gradientUnits="userSpaceOnUse">
+ <stop offset="0" stop-color="#000000" stop-opacity="0.502"/>
+ <stop offset="1" stop-color="#000000" stop-opacity="0"/>
+</radialGradient>
+<path fill="url(#SVGID_1_)" d="M334.297,344.885c0,25.898-41.989,46.893-93.785,46.893c-51.795,0-93.784-20.994-93.784-46.893
+ s41.989-46.893,93.784-46.893C292.307,297.993,334.297,318.987,334.297,344.885z"/>
+<radialGradient id="SVGID_2_" cx="268.7937" cy="-551.0415" r="165.3826" gradientTransform="matrix(0.5823 0 0 -0.2835 -58.2004 188.1399)" gradientUnits="userSpaceOnUse">
+ <stop offset="0" stop-color="#000000" stop-opacity="0.502"/>
+ <stop offset="1" stop-color="#000000" stop-opacity="0"/>
+</radialGradient>
+<path fill="url(#SVGID_2_)" d="M194.628,344.381c0,25.897-43.117,46.892-96.306,46.892c-53.188,0-96.305-20.994-96.305-46.892
+ c0-25.898,43.117-46.893,96.305-46.893C151.51,297.489,194.628,318.483,194.628,344.381z"/>
+<g>
+ <path d="M304.732,246.606c-4.752,19.584-28.872,60.48-41.688,78.48c-12.815,18.072-11.231,34.344-34.92,28.008 c-23.616-6.336-30.24-5.184-54.647-3.744c-24.265,1.439-19.009-0.721-34.2,6.12c-15.12,6.84-65.88-82.944-69.984-99.647 c-4.031-16.705-5.976-14.689,4.536-32.761c10.513-18.071,12.024-35.928,25.92-57.816c13.896-21.96,29.952-33.12,28.8-49.896 c-4.535-62.28-8.136-93.384,19.513-107.784c26.352-13.68,48.384-5.544,57.096-0.864c3.744,2.016,11.376,5.904,17.064,12.744 c5.688,6.696,10.8,16.848,13.68,29.664c5.904,25.704-2.448,17.208,4.248,46.656c6.624,29.375,20.088,43.775,36.504,67.031 C293.068,186.054,310.204,224.43,304.732,246.606z"/>
+ <g>
+ <path fill="#666666" d="M148.47,94.049c4.319-1.728,3.592-1.958,6.472-8.222c2.304-4.824,4.328-6.898,4.256-14.242 c0-7.2-2.232-9.648-5.616-14.328c-3.24-4.464-8.424-4.68-11.664-4.104c-1.872,0.288-4.319,2.664-5.976,6.192 c-1.08,2.376-1.944,5.4-2.017,8.568c-0.216,8.496,0.505,11.736,2.448,17.496C138.678,92.178,144.294,95.706,148.47,94.049z"/>
+ <g>
+ <path fill="#6D6D6D" d="M148.47,94.023c4.293-1.717,3.563-1.954,6.425-8.178c2.289-4.793,4.312-6.861,4.271-14.164 c0.027-7.152-2.162-9.702-5.488-14.201c-3.296-4.345-8.376-4.509-11.593-3.953c-1.916,0.283-4.354,2.569-6.038,5.968 c-1.159,2.31-2.016,5.353-2.087,8.535c-0.212,8.438,0.547,11.691,2.46,17.417C138.688,92.178,144.321,95.668,148.47,94.023z"/>
+ <path fill="#757575" d="M148.471,93.996c4.264-1.706,3.533-1.95,6.377-8.133c2.273-4.762,4.296-6.823,4.288-14.085 c0.053-7.105-2.093-9.756-5.363-14.075c-3.35-4.225-8.327-4.338-11.52-3.801c-1.961,0.278-4.389,2.474-6.099,5.744 c-1.242,2.245-2.089,5.305-2.16,8.501c-0.207,8.38,0.591,11.647,2.473,17.34C138.698,92.178,144.348,95.631,148.471,93.996z"/>
+ <path fill="#7C7C7C" d="M148.471,93.969c4.235-1.694,3.506-1.946,6.329-8.089c2.26-4.731,4.28-6.786,4.304-14.006 c0.081-7.058-2.021-9.811-5.236-13.948c-3.403-4.105-8.278-4.167-11.446-3.649c-2.006,0.273-4.424,2.379-6.16,5.519 c-1.322,2.179-2.161,5.257-2.232,8.468c-0.202,8.323,0.636,11.603,2.486,17.261C138.707,92.179,144.375,95.593,148.471,93.969z"/>
+ <path fill="#848484" d="M148.471,93.943c4.209-1.684,3.477-1.942,6.282-8.045c2.245-4.7,4.266-6.749,4.319-13.928 c0.107-7.01-1.95-9.864-5.109-13.821c-3.458-3.985-8.23-3.996-11.375-3.498c-2.049,0.268-4.458,2.284-6.222,5.295 c-1.403,2.114-2.233,5.21-2.303,8.435c-0.198,8.265,0.679,11.559,2.498,17.183C138.717,92.179,144.403,95.556,148.471,93.943z"/>
+ <path fill="#8C8C8C" d="M148.471,93.916c4.181-1.672,3.448-1.938,6.235-8c2.23-4.668,4.249-6.711,4.335-13.85 c0.134-6.962-1.88-9.918-4.982-13.695c-3.513-3.865-8.183-3.825-11.303-3.347c-2.094,0.263-4.492,2.189-6.283,5.07 c-1.484,2.049-2.306,5.163-2.375,8.401c-0.193,8.207,0.723,11.515,2.511,17.105C138.727,92.18,144.43,95.519,148.471,93.916z"/>
+ <path fill="#939393" d="M148.472,93.889c4.152-1.661,3.419-1.934,6.188-7.956c2.215-4.638,4.233-6.674,4.35-13.771 c0.161-6.915-1.809-9.972-4.854-13.568c-3.567-3.746-8.134-3.654-11.23-3.195c-2.138,0.259-4.527,2.094-6.345,4.847 c-1.564,1.983-2.378,5.115-2.447,8.368c-0.188,8.149,0.767,11.47,2.523,17.026C138.736,92.18,144.457,95.481,148.472,93.889z"/>
+ <path fill="#9B9B9B" d="M148.472,93.863c4.125-1.65,3.391-1.93,6.141-7.912c2.2-4.607,4.217-6.637,4.366-13.693 c0.188-6.868-1.739-10.026-4.729-13.441c-3.621-3.626-8.085-3.484-11.157-3.044c-2.183,0.253-4.562,1.999-6.406,4.622 c-1.646,1.918-2.45,5.068-2.52,8.335c-0.185,8.091,0.811,11.426,2.535,16.948C138.746,92.18,144.484,95.444,148.472,93.863z"/>
+ <path fill="#A3A3A3" d="M148.472,93.836c4.097-1.639,3.361-1.926,6.094-7.867c2.185-4.576,4.201-6.599,4.382-13.614 c0.214-6.82-1.669-10.081-4.603-13.315c-3.676-3.506-8.036-3.313-11.084-2.893c-2.229,0.249-4.598,1.904-6.47,4.398 c-1.726,1.852-2.521,5.021-2.591,8.301c-0.18,8.034,0.854,11.382,2.548,16.87C138.756,92.181,144.511,95.407,148.472,93.836z"/>
+ <path fill="#AAAAAA" d="M148.472,93.809c4.069-1.628,3.334-1.922,6.047-7.823c2.17-4.544,4.185-6.562,4.396-13.536 c0.242-6.772-1.597-10.134-4.475-13.188c-3.73-3.387-7.989-3.142-11.013-2.741c-2.271,0.243-4.632,1.809-6.53,4.173 c-1.808,1.787-2.594,4.974-2.662,8.268c-0.176,7.976,0.897,11.337,2.56,16.792C138.765,92.181,144.538,95.369,148.472,93.809z"/>
+ <path fill="#B2B2B2" d="M148.473,93.782c4.041-1.617,3.304-1.918,5.999-7.778c2.154-4.514,4.169-6.524,4.412-13.458 c0.269-6.725-1.526-10.188-4.349-13.062c-3.784-3.267-7.939-2.971-10.939-2.589c-2.316,0.238-4.666,1.714-6.592,3.949 c-1.888,1.721-2.667,4.926-2.734,8.234c-0.171,7.918,0.941,11.293,2.572,16.713C138.775,92.182,144.565,95.332,148.473,93.782z"/>
+ <path fill="#BABABA" d="M148.473,93.756c4.014-1.606,3.275-1.914,5.951-7.734c2.141-4.482,4.153-6.487,4.43-13.379 c0.295-6.678-1.457-10.243-4.223-12.935c-3.839-3.147-7.892-2.8-10.867-2.438c-2.36,0.233-4.701,1.619-6.653,3.725 c-1.969,1.656-2.739,4.879-2.806,8.201c-0.167,7.86,0.984,11.249,2.585,16.636C138.785,92.182,144.592,95.294,148.473,93.756z"/>
+ <path fill="#C1C1C1" d="M148.473,93.729c3.985-1.595,3.247-1.91,5.904-7.69c2.125-4.451,4.138-6.45,4.445-13.3 c0.321-6.63-1.387-10.297-4.096-12.808c-3.894-3.028-7.844-2.629-10.795-2.287c-2.405,0.229-4.735,1.524-6.716,3.5 c-2.049,1.59-2.811,4.831-2.878,8.167c-0.161,7.802,1.029,11.205,2.599,16.557C138.795,92.182,144.619,95.257,148.473,93.729z"/>
+ <path fill="#C9C9C9" d="M148.473,93.702c3.958-1.583,3.219-1.906,5.857-7.646c2.11-4.42,4.121-6.412,4.46-13.222 c0.35-6.583-1.315-10.351-3.969-12.682c-3.947-2.908-7.794-2.458-10.722-2.135c-2.45,0.224-4.771,1.429-6.777,3.276 c-2.13,1.525-2.883,4.784-2.95,8.135c-0.157,7.745,1.073,11.16,2.611,16.479C138.804,92.183,144.646,95.22,148.473,93.702z"/>
+ <path fill="#D1D1D1" d="M148.474,93.676c3.93-1.573,3.188-1.902,5.809-7.601c2.097-4.389,4.107-6.375,4.477-13.144 c0.375-6.535-1.245-10.404-3.842-12.555c-4.002-2.788-7.747-2.287-10.65-1.984c-2.493,0.219-4.805,1.334-6.837,3.052 c-2.213,1.459-2.957,4.736-3.022,8.101c-0.153,7.687,1.116,11.116,2.623,16.401C138.814,92.183,144.674,95.183,148.474,93.676z"/>
+ <path fill="#D8D8D8" d="M148.474,93.649c3.901-1.562,3.16-1.898,5.762-7.557c2.082-4.358,4.091-6.338,4.493-13.065 c0.401-6.487-1.176-10.458-3.716-12.428c-4.057-2.668-7.698-2.116-10.578-1.832c-2.538,0.214-4.839,1.239-6.899,2.827 c-2.292,1.394-3.029,4.689-3.094,8.068c-0.148,7.629,1.16,11.072,2.636,16.322C138.824,92.184,144.701,95.145,148.474,93.649z"/>
+ <path fill="#E0E0E0" d="M148.474,93.622c3.875-1.55,3.132-1.894,5.715-7.512c2.066-4.327,4.075-6.3,4.508-12.987 c0.429-6.44-1.104-10.513-3.588-12.302c-4.111-2.549-7.65-1.945-10.506-1.681c-2.582,0.209-4.874,1.144-6.961,2.604 c-2.373,1.328-3.102,4.642-3.165,8.034c-0.145,7.571,1.204,11.027,2.647,16.244C138.833,92.184,144.728,95.108,148.474,93.622z"/>
+ <path fill="#E8E8E8" d="M148.474,93.596c3.847-1.54,3.104-1.89,5.668-7.468c2.052-4.296,4.059-6.263,4.523-12.908 c0.456-6.393-1.034-10.567-3.462-12.175c-4.165-2.429-7.601-1.774-10.433-1.529c-2.627,0.204-4.908,1.049-7.023,2.379 c-2.453,1.263-3.173,4.594-3.236,8.001c-0.141,7.514,1.247,10.983,2.659,16.166C138.843,92.185,144.755,95.07,148.474,93.596z"/>
+ <path fill="#EFEFEF" d="M148.475,93.569c3.817-1.528,3.073-1.886,5.62-7.424c2.036-4.265,4.043-6.226,4.539-12.83 c0.482-6.345-0.964-10.621-3.336-12.048c-4.219-2.31-7.552-1.604-10.359-1.378c-2.672,0.199-4.943,0.954-7.084,2.155 c-2.535,1.197-3.246,4.546-3.311,7.967c-0.135,7.456,1.292,10.939,2.673,16.087C138.853,92.185,144.782,95.033,148.475,93.569z"/>
+ <path fill="#F7F7F7" d="M148.475,93.542c3.791-1.517,3.046-1.882,5.572-7.379c2.022-4.234,4.027-6.188,4.556-12.751 c0.51-6.297-0.894-10.675-3.208-11.921c-4.274-2.19-7.505-1.433-10.289-1.227c-2.715,0.194-4.978,0.859-7.146,1.93 c-2.614,1.132-3.317,4.5-3.381,7.935c-0.131,7.398,1.335,10.895,2.686,16.009C138.862,92.185,144.809,94.996,148.475,93.542z"/>
+ </g>
+ <path fill="#FFFFFF" d="M148.475,93.516c3.763-1.506,3.017-1.878,5.525-7.335c2.007-4.203,4.012-6.151,4.571-12.673 c0.536-6.25-0.823-10.729-3.082-11.795c-4.328-2.07-7.456-1.262-10.216-1.075c-2.76,0.189-5.012,0.764-7.207,1.706 c-2.696,1.066-3.39,4.452-3.453,7.901c-0.126,7.34,1.379,10.85,2.698,15.931C138.872,92.186,144.836,94.958,148.475,93.516z"/>
+ </g>
+ <path d="M144.438,64.746c2.16,0,4.896,1.44,6.191,3.384c1.368,1.944,2.376,4.68,2.376,7.776c0,4.608-0.504,9.72-3.239,11.304 c-0.864,0.504-2.736,0.936-3.816,0.936c-2.448,0-2.664-1.584-4.968-3.96c-0.792-0.864-3.168-5.04-3.168-8.496 c0-2.16-0.504-5.256,1.368-7.992C140.478,65.682,142.134,64.746,144.438,64.746z"/>
+ <g>
+ <path d="M143.862,68.608c0.844-1.305,4.222-0.69,5.45,1.996c1.229,2.687,0.998,8.522,0.153,8.829 c-2.226,0.691-1.535-2.534-3.454-5.451C144.092,71.22,143.017,69.915,143.862,68.608z"/>
+ <g>
+ <path fill="#070707" d="M143.916,68.664c0.833-1.289,4.169-0.681,5.381,1.971c1.215,2.653,0.985,8.414,0.152,8.717 c-2.198,0.682-1.516-2.502-3.411-5.382C144.143,71.242,143.082,69.953,143.916,68.664z"/>
+ <path fill="#0F0F0F" d="M143.97,68.719c0.822-1.272,4.114-0.673,5.312,1.945c1.198,2.619,0.973,8.306,0.15,8.605 c-2.169,0.673-1.497-2.47-3.367-5.313C144.194,71.264,143.147,69.992,143.97,68.719z"/>
+ <path fill="#161616" d="M144.024,68.774c0.812-1.255,4.062-0.664,5.243,1.92c1.182,2.585,0.96,8.198,0.147,8.493 c-2.141,0.665-1.477-2.438-3.323-5.244C144.245,71.286,143.211,70.03,144.024,68.774z"/>
+ <path fill="#1E1E1E" d="M144.078,68.829c0.801-1.239,4.008-0.655,5.174,1.895c1.167,2.551,0.947,8.09,0.146,8.381 c-2.113,0.656-1.458-2.405-3.28-5.174C144.297,71.308,143.276,70.068,144.078,68.829z"/>
+ <path fill="#262626" d="M144.132,68.884c0.791-1.222,3.955-0.646,5.105,1.87c1.151,2.517,0.935,7.982,0.144,8.27 c-2.085,0.647-1.438-2.374-3.235-5.105C144.348,71.33,143.341,70.107,144.132,68.884z"/>
+ <path fill="#2D2D2D" d="M144.186,68.939c0.779-1.206,3.9-0.638,5.036,1.844c1.135,2.483,0.922,7.874,0.142,8.158 c-2.057,0.639-1.419-2.341-3.192-5.037C144.399,71.352,143.406,70.146,144.186,68.939z"/>
+ <path fill="#353535" d="M144.24,68.994c0.769-1.189,3.848-0.629,4.967,1.819c1.12,2.449,0.909,7.766,0.141,8.046 c-2.028,0.629-1.399-2.31-3.148-4.967C144.45,71.374,143.47,70.184,144.24,68.994z"/>
+ <path fill="#3D3D3D" d="M144.294,69.049c0.76-1.172,3.794-0.621,4.898,1.793c1.104,2.415,0.896,7.658,0.138,7.934 c-2,0.621-1.38-2.277-3.104-4.898C144.501,71.396,143.535,70.223,144.294,69.049z"/>
+ <path fill="#444444" d="M144.348,69.104c0.748-1.156,3.74-0.612,4.829,1.768c1.088,2.38,0.884,7.55,0.136,7.822 c-1.973,0.612-1.36-2.245-3.062-4.829C144.552,71.417,143.6,70.261,144.348,69.104z"/>
+ <path fill="#4C4C4C" d="M144.402,69.16c0.737-1.14,3.687-0.603,4.76,1.743c1.073,2.347,0.871,7.442,0.134,7.71 c-1.943,0.604-1.341-2.213-3.017-4.76C144.603,71.439,143.665,70.299,144.402,69.16z"/>
+ <path fill="#545454" d="M144.456,69.215c0.727-1.123,3.634-0.595,4.691,1.717c1.057,2.313,0.857,7.334,0.132,7.598 c-1.916,0.595-1.321-2.181-2.973-4.691C144.654,71.461,143.729,70.338,144.456,69.215z"/>
+ <path fill="#5B5B5B" d="M144.51,69.27c0.717-1.106,3.58-0.585,4.622,1.692c1.041,2.278,0.847,7.226,0.131,7.486 c-1.888,0.586-1.303-2.149-2.93-4.622C144.705,71.483,143.794,70.376,144.51,69.27z"/>
+ <path fill="#636363" d="M144.564,69.325c0.705-1.09,3.526-0.577,4.553,1.667c1.026,2.245,0.833,7.118,0.128,7.375 c-1.858,0.577-1.282-2.117-2.885-4.553C144.756,71.505,143.859,70.415,144.564,69.325z"/>
+ <path fill="#6B6B6B" d="M144.618,69.38c0.694-1.073,3.473-0.568,4.483,1.642c1.011,2.21,0.82,7.01,0.127,7.263 c-1.831,0.568-1.264-2.084-2.842-4.484C144.808,71.527,143.924,70.454,144.618,69.38z"/>
+ <path fill="#727272" d="M144.672,69.435c0.685-1.057,3.42-0.56,4.414,1.617c0.995,2.176,0.81,6.902,0.125,7.15 c-1.803,0.56-1.243-2.053-2.798-4.415C144.859,71.549,143.988,70.492,144.672,69.435z"/>
+ <path fill="#7A7A7A" d="M144.726,69.49c0.673-1.041,3.365-0.551,4.345,1.591c0.979,2.143,0.796,6.794,0.123,7.039 c-1.775,0.551-1.224-2.021-2.754-4.346C144.91,71.571,144.053,70.53,144.726,69.49z"/>
+ <path fill="#828282" d="M144.78,69.545c0.662-1.023,3.313-0.542,4.276,1.566c0.964,2.108,0.782,6.686,0.121,6.926 c-1.746,0.542-1.204-1.988-2.711-4.276C144.961,71.594,144.118,70.569,144.78,69.545z"/>
+ <path fill="#898989" d="M144.834,69.6c0.652-1.007,3.259-0.533,4.207,1.541c0.948,2.074,0.771,6.578,0.119,6.815 c-1.718,0.534-1.185-1.956-2.666-4.207C145.012,71.615,144.183,70.607,144.834,69.6z"/>
+ <path fill="#919191" d="M144.888,69.655c0.641-0.99,3.206-0.524,4.138,1.516c0.933,2.04,0.758,6.47,0.117,6.703 c-1.69,0.525-1.165-1.924-2.623-4.138C145.063,71.638,144.247,70.646,144.888,69.655z"/>
+ </g>
+ <path fill="#999999" d="M144.942,69.71c0.63-0.974,3.152-0.516,4.069,1.49c0.917,2.006,0.744,6.362,0.114,6.591 c-1.662,0.516-1.146-1.892-2.579-4.069C145.114,71.66,144.312,70.685,144.942,69.71z"/>
+ </g>
+ <g>
+ <path fill="#666666" d="M193.11,94.985c10.8-1.152,14.616-5.328,16.56-12.6c1.729-6.48,1.801-13.68-3.023-22.104 c-4.536-8.063-7.128-9.36-13.681-9.864c-10.079-0.864-14.832,6.192-17.063,11.232c-2.376,5.472-1.872,4.68-1.729,11.592 c0.145,7.272,4.245,9.299,6.766,13.835C183.459,91.541,191.886,95.058,193.11,94.985z"/>
+ <g>
+ <path fill="#6D6D6D" d="M193.115,94.944c10.759-1.131,14.618-5.354,16.515-12.569c1.701-6.525,1.785-13.686-3.002-21.912 c-4.434-7.797-7.038-9.081-13.512-9.581c-10.049-0.861-14.941,5.873-17.181,10.874c-2.304,5.28-1.878,4.718-1.726,11.539 c0.16,7.268,4.268,9.223,6.784,13.76C183.514,91.53,191.891,95.017,193.115,94.944z"/>
+ <path fill="#757575" d="M193.12,94.902c10.718-1.11,14.62-5.379,16.469-12.538c1.676-6.57,1.771-13.692-2.979-21.721 c-4.331-7.53-6.947-8.801-13.344-9.297c-10.018-0.858-15.05,5.553-17.298,10.516c-2.229,5.087-1.885,4.757-1.722,11.487 c0.176,7.264,4.289,9.146,6.803,13.686C183.569,91.52,191.897,94.977,193.12,94.902z"/>
+ <path fill="#7C7C7C" d="M193.126,94.861c10.675-1.09,14.621-5.405,16.423-12.507c1.648-6.616,1.756-13.698-2.958-21.529 c-4.229-7.263-6.856-8.522-13.176-9.014c-9.985-0.854-15.158,5.234-17.414,10.158c-2.156,4.895-1.891,4.795-1.719,11.434 c0.193,7.26,4.31,9.07,6.822,13.611C183.624,91.509,191.902,94.936,193.126,94.861z"/>
+ <path fill="#848484" d="M193.131,94.82c10.635-1.069,14.623-5.431,16.377-12.476c1.622-6.661,1.741-13.704-2.936-21.337 c-4.126-6.996-6.767-8.242-13.008-8.73c-9.955-0.852-15.267,4.915-17.53,9.8c-2.084,4.703-1.896,4.833-1.716,11.38 c0.209,7.256,4.332,8.995,6.841,13.537C183.679,91.499,191.907,94.896,193.131,94.82z"/>
+ <path fill="#8C8C8C" d="M193.136,94.778c10.593-1.048,14.625-5.457,16.331-12.445c1.596-6.706,1.726-13.709-2.913-21.145 c-4.025-6.729-6.678-7.963-12.841-8.447c-9.924-0.848-15.375,4.595-17.647,9.441c-2.01,4.51-1.903,4.872-1.712,11.328 c0.225,7.251,4.354,8.918,6.858,13.462C183.733,91.489,191.912,94.855,193.136,94.778z"/>
+ <path fill="#939393" d="M193.141,94.737c10.552-1.027,14.627-5.482,16.286-12.414c1.568-6.751,1.711-13.715-2.893-20.954 c-3.922-6.462-6.586-7.683-12.672-8.163c-9.892-0.845-15.483,4.276-17.764,9.083c-1.938,4.318-1.909,4.91-1.709,11.275 c0.24,7.247,4.375,8.842,6.878,13.387C183.788,91.479,191.918,94.814,193.141,94.737z"/>
+ <path fill="#9B9B9B" d="M193.146,94.695c10.51-1.007,14.63-5.508,16.241-12.382c1.542-6.796,1.694-13.721-2.87-20.762 c-3.82-6.195-6.496-7.404-12.504-7.879c-9.861-0.842-15.592,3.956-17.882,8.725c-1.863,4.126-1.915,4.949-1.706,11.223 c0.258,7.243,4.397,8.766,6.897,13.313C183.843,91.468,191.923,94.774,193.146,94.695z"/>
+ <path fill="#A3A3A3" d="M193.151,94.654c10.469-0.986,14.632-5.534,16.196-12.351c1.515-6.842,1.68-13.727-2.85-20.57 c-3.717-5.928-6.405-7.125-12.335-7.596c-9.83-0.839-15.7,3.637-17.998,8.367c-1.791,3.933-1.922,4.987-1.703,11.169 c0.273,7.239,4.419,8.689,6.916,13.238C183.898,91.458,191.928,94.733,193.151,94.654z"/>
+ <path fill="#AAAAAA" d="M193.157,94.612c10.427-0.965,14.633-5.56,16.149-12.32c1.488-6.887,1.666-13.733-2.826-20.379 c-3.615-5.661-6.316-6.845-12.168-7.313c-9.799-0.835-15.809,3.317-18.114,8.009c-1.718,3.741-1.928,5.025-1.7,11.117 c0.29,7.235,4.44,8.613,6.936,13.163C183.953,91.447,191.933,94.693,193.157,94.612z"/>
+ <path fill="#B2B2B2" d="M193.162,94.571c10.386-0.944,14.635-5.585,16.104-12.289c1.462-6.932,1.649-13.739-2.806-20.188 c-3.512-5.394-6.225-6.565-11.999-7.029c-9.768-0.833-15.917,2.998-18.23,7.651c-1.646,3.549-1.935,5.064-1.697,11.064 c0.306,7.231,4.462,8.537,6.954,13.088C184.008,91.437,191.939,94.652,193.162,94.571z"/>
+ <path fill="#BABABA" d="M193.167,94.529c10.345-0.923,14.638-5.611,16.059-12.258c1.436-6.977,1.636-13.744-2.782-19.995 c-3.41-5.127-6.135-6.286-11.832-6.746c-9.736-0.829-16.025,2.679-18.347,7.293c-1.572,3.356-1.941,5.103-1.694,11.011 c0.322,7.227,4.484,8.461,6.973,13.014C184.063,91.427,191.944,94.612,193.167,94.529z"/>
+ <path fill="#C1C1C1" d="M193.172,94.488c10.304-0.903,14.64-5.637,16.014-12.227c1.409-7.022,1.62-13.75-2.762-19.804 c-3.308-4.86-6.044-6.006-11.662-6.462c-9.705-0.826-16.135,2.359-18.466,6.935c-1.498,3.164-1.945,5.141-1.689,10.958 c0.338,7.223,4.506,8.385,6.991,12.939C184.117,91.417,191.949,94.571,193.172,94.488z"/>
+ <path fill="#C9C9C9" d="M193.177,94.447c10.262-0.882,14.641-5.663,15.967-12.196c1.383-7.068,1.605-13.756-2.738-19.612 c-3.206-4.593-5.954-5.727-11.496-6.179c-9.673-0.823-16.242,2.04-18.581,6.577c-1.425,2.972-1.952,5.179-1.687,10.906 c0.354,7.219,4.526,8.308,7.01,12.865C184.172,91.406,191.954,94.531,193.177,94.447z"/>
+ <path fill="#D1D1D1" d="M193.182,94.405c10.221-0.861,14.643-5.688,15.922-12.165c1.355-7.113,1.591-13.762-2.717-19.42 c-3.104-4.326-5.864-5.448-11.327-5.895c-9.644-0.82-16.352,1.721-18.698,6.219c-1.353,2.779-1.959,5.217-1.684,10.853 c0.369,7.214,4.549,8.232,7.028,12.79C184.227,91.396,191.96,94.49,193.182,94.405z"/>
+ <path fill="#D8D8D8" d="M193.187,94.364c10.179-0.841,14.645-5.714,15.876-12.133c1.33-7.158,1.576-13.768-2.694-19.229 c-3.001-4.059-5.773-5.168-11.16-5.612c-9.61-0.817-16.459,1.401-18.813,5.861c-1.279,2.586-1.965,5.256-1.682,10.8 c0.387,7.21,4.571,8.156,7.049,12.715C184.282,91.385,191.965,94.45,193.187,94.364z"/>
+ <path fill="#E0E0E0" d="M193.193,94.322c10.137-0.82,14.646-5.74,15.83-12.103c1.303-7.203,1.561-13.773-2.673-19.037 c-2.898-3.792-5.684-4.889-10.991-5.328c-9.58-0.813-16.568,1.082-18.931,5.502c-1.206,2.395-1.972,5.294-1.679,10.747 c0.403,7.207,4.592,8.08,7.067,12.641C184.337,91.375,191.97,94.41,193.193,94.322z"/>
+ <path fill="#E8E8E8" d="M193.198,94.281c10.096-0.799,14.648-5.766,15.785-12.071c1.275-7.249,1.545-13.779-2.651-18.845 c-2.796-3.525-5.593-4.609-10.823-5.044c-9.549-0.81-16.677,0.762-19.048,5.145c-1.133,2.202-1.978,5.333-1.675,10.694 c0.419,7.202,4.614,8.003,7.086,12.566C184.392,91.364,191.975,94.369,193.198,94.281z"/>
+ <path fill="#EFEFEF" d="M193.203,94.239c10.055-0.778,14.65-5.792,15.739-12.04c1.25-7.293,1.531-13.785-2.629-18.653 c-2.694-3.258-5.502-4.33-10.655-4.761c-9.517-0.807-16.785,0.443-19.165,4.786c-1.059,2.01-1.983,5.372-1.671,10.642 c0.435,7.198,4.636,7.928,7.104,12.492C184.446,91.354,191.981,94.329,193.203,94.239z"/>
+ <path fill="#F7F7F7" d="M193.208,94.198c10.014-0.757,14.652-5.817,15.694-12.009c1.223-7.339,1.516-13.792-2.607-18.462 c-2.592-2.991-5.413-4.05-10.486-4.478c-9.487-0.804-16.895,0.124-19.282,4.428c-0.986,1.817-1.989,5.41-1.668,10.589 c0.451,7.194,4.657,7.851,7.123,12.417C184.501,91.344,191.986,94.288,193.208,94.198z"/>
+ </g>
+ <path fill="#FFFFFF" d="M193.213,94.156c9.973-0.737,14.654-5.843,15.648-11.978c1.197-7.384,1.501-13.797-2.585-18.27 c-2.489-2.724-5.322-3.771-10.319-4.194c-9.455-0.801-17.002-0.196-19.397,4.07c-0.913,1.625-1.996,5.448-1.665,10.536 c0.467,7.19,4.679,7.775,7.142,12.342C184.556,91.333,191.991,94.248,193.213,94.156z"/>
+ </g>
+ <path d="M192.246,64.458c5.4,0,8.568,4.824,9.648,11.016c0.432,2.808-0.216,6.048-1.944,8.28c-1.944,2.592-5.4,4.176-8.208,4.176 c-2.664,0-5.688,0.432-7.271-1.728c-1.584-2.232-1.944-7.2-1.944-10.728c0-3.96,1.152-6.768,3.168-9 C187.206,64.817,189.942,64.458,192.246,64.458z"/>
+ <g>
+ <path d="M192.591,66.68c0.98-0.653,2.612,0,4.489,2.122c2.039,2.285,2.938,4.08,0.489,5.385c-1.877,0.98-2.448-1.958-3.59-3.182 C192.184,69.046,190.633,67.985,192.591,66.68z"/>
+ <g>
+ <path fill="#070707" d="M192.631,66.738c0.96-0.649,2.573,0,4.423,2.09c2.009,2.251,2.864,4.02,0.481,5.305 c-1.837,0.977-2.403-1.929-3.525-3.135C192.242,69.073,190.714,68.033,192.631,66.738z"/>
+ <path fill="#0F0F0F" d="M192.671,66.797c0.939-0.645,2.534,0,4.356,2.059c1.978,2.217,2.792,3.958,0.474,5.225 c-1.798,0.974-2.357-1.9-3.46-3.087C192.299,69.099,190.794,68.081,192.671,66.797z"/>
+ <path fill="#161616" d="M192.711,66.855c0.919-0.641,2.495,0,4.289,2.027c1.948,2.184,2.721,3.898,0.467,5.146 c-1.759,0.971-2.313-1.871-3.396-3.041C192.356,69.126,190.874,68.129,192.711,66.855z"/>
+ <path fill="#1E1E1E" d="M192.751,66.914c0.899-0.637,2.457,0,4.223,1.996c1.918,2.149,2.647,3.838,0.46,5.065 c-1.72,0.968-2.269-1.842-3.331-2.993C192.414,69.152,190.955,68.177,192.751,66.914z"/>
+ <path fill="#262626" d="M192.791,66.973c0.878-0.633,2.418,0,4.155,1.964c1.888,2.116,2.576,3.777,0.453,4.986 c-1.68,0.965-2.224-1.813-3.267-2.946C192.471,69.179,191.035,68.225,192.791,66.973z"/>
+ <path fill="#2D2D2D" d="M192.831,67.031c0.858-0.629,2.379,0,4.089,1.933c1.857,2.082,2.503,3.717,0.445,4.906 c-1.641,0.961-2.178-1.784-3.201-2.898C192.528,69.205,191.116,68.272,192.831,67.031z"/>
+ <path fill="#353535" d="M192.87,67.09c0.838-0.625,2.341,0,4.023,1.902c1.827,2.047,2.431,3.656,0.438,4.826 c-1.601,0.958-2.133-1.755-3.137-2.852C192.586,69.231,191.196,68.32,192.87,67.09z"/>
+ <path fill="#3D3D3D" d="M192.91,67.148c0.818-0.621,2.302,0,3.956,1.87c1.797,2.014,2.359,3.596,0.431,4.746 c-1.562,0.956-2.088-1.726-3.071-2.804C192.643,69.258,191.276,68.368,192.91,67.148z"/>
+ <path fill="#444444" d="M192.95,67.207c0.798-0.617,2.263,0,3.889,1.839c1.768,1.98,2.287,3.535,0.425,4.666 c-1.523,0.952-2.043-1.697-3.008-2.757C192.7,69.284,191.357,68.416,192.95,67.207z"/>
+ <path fill="#4C4C4C" d="M192.99,67.266c0.777-0.614,2.224,0,3.823,1.807c1.735,1.946,2.214,3.474,0.416,4.586 c-1.483,0.949-1.998-1.667-2.942-2.709C192.758,69.311,191.437,68.464,192.99,67.266z"/>
+ <path fill="#545454" d="M193.03,67.325c0.757-0.61,2.185,0,3.756,1.775c1.706,1.912,2.143,3.414,0.409,4.506 c-1.444,0.946-1.953-1.639-2.878-2.663C192.815,69.337,191.518,68.512,193.03,67.325z"/>
+ <path fill="#5B5B5B" d="M193.07,67.383c0.736-0.605,2.146,0,3.688,1.744c1.677,1.878,2.07,3.353,0.402,4.426 c-1.405,0.943-1.908-1.609-2.813-2.615C192.872,69.363,191.598,68.56,193.07,67.383z"/>
+ <path fill="#636363" d="M193.11,67.442c0.716-0.602,2.106,0,3.622,1.712c1.646,1.844,1.998,3.293,0.395,4.347 c-1.364,0.94-1.862-1.581-2.748-2.568C192.93,69.39,191.678,68.607,193.11,67.442z"/>
+ <path fill="#6B6B6B" d="M193.15,67.5c0.696-0.598,2.069,0,3.556,1.681c1.615,1.811,1.925,3.232,0.387,4.267 c-1.325,0.937-1.818-1.552-2.683-2.521C192.987,69.416,191.759,68.655,193.15,67.5z"/>
+ <path fill="#727272" d="M193.19,67.559c0.675-0.594,2.03,0,3.489,1.649c1.585,1.777,1.853,3.172,0.38,4.187 c-1.287,0.935-1.774-1.522-2.619-2.473C193.044,69.442,191.839,68.703,193.19,67.559z"/>
+ <path fill="#7A7A7A" d="M193.23,67.618c0.654-0.59,1.991,0,3.422,1.618c1.555,1.743,1.781,3.111,0.373,4.107 c-1.247,0.931-1.729-1.494-2.554-2.426C193.102,69.469,191.92,68.751,193.23,67.618z"/>
+ <path fill="#828282" d="M193.269,67.677c0.635-0.586,1.953,0,3.355,1.586c1.525,1.708,1.709,3.05,0.366,4.026 c-1.208,0.928-1.684-1.464-2.489-2.378C193.159,69.495,192,68.799,193.269,67.677z"/>
+ <path fill="#898989" d="M193.309,67.735c0.614-0.582,1.914,0,3.29,1.555c1.493,1.675,1.636,2.99,0.357,3.947 c-1.169,0.925-1.639-1.435-2.424-2.332C193.216,69.521,192.08,68.847,193.309,67.735z"/>
+ <path fill="#919191" d="M193.349,67.794c0.595-0.578,1.875,0,3.223,1.523c1.464,1.641,1.564,2.93,0.351,3.867 c-1.129,0.922-1.594-1.406-2.359-2.284C193.274,69.548,192.161,68.895,193.349,67.794z"/>
+ </g>
+ <path fill="#999999" d="M193.389,67.853c0.573-0.574,1.836,0,3.155,1.492c1.435,1.607,1.492,2.869,0.345,3.787 c-1.091,0.919-1.55-1.377-2.295-2.237C193.331,69.575,192.241,68.942,193.389,67.853z"/>
+ </g>
+ <g>
+ <path d="M165.498,69.906c1.693-0.654,3.012-0.69,5.63,1.036c3.166,2.088,1.705,5.245-0.779,4.601 c-2.146-0.556-2.417-0.681-4.391-1.086C162.857,73.809,162.317,71.135,165.498,69.906z"/>
+ <g>
+ <path fill="#050505" d="M165.564,70.033c1.658-0.629,2.973-0.656,5.555,1.026c3.066,2.009,1.654,5.012-0.805,4.38 c-2.131-0.547-2.345-0.656-4.284-1.052C162.975,73.753,162.443,71.214,165.564,70.033z"/>
+ <path fill="#0A0A0A" d="M165.63,70.16c1.623-0.604,2.935-0.622,5.481,1.015c2.965,1.93,1.602,4.779-0.83,4.159 c-2.119-0.539-2.274-0.63-4.179-1.018C163.093,73.698,162.569,71.294,165.63,70.16z"/>
+ <path fill="#0F0F0F" d="M165.696,70.287c1.587-0.579,2.895-0.587,5.406,1.005c2.864,1.851,1.551,4.546-0.855,3.938 c-2.105-0.53-2.203-0.605-4.073-0.983C163.211,73.643,162.694,71.374,165.696,70.287z"/>
+ <path fill="#141414" d="M165.761,70.413c1.553-0.553,2.856-0.553,5.331,0.995c2.766,1.772,1.5,4.313-0.88,3.717 c-2.092-0.521-2.131-0.58-3.967-0.949C163.329,73.588,162.82,71.453,165.761,70.413z"/>
+ <path fill="#191919" d="M165.827,70.54c1.519-0.528,2.818-0.519,5.258,0.984c2.664,1.693,1.448,4.079-0.905,3.497 c-2.079-0.513-2.06-0.554-3.861-0.915C163.446,73.533,162.946,71.533,165.827,70.54z"/>
+ <path fill="#1E1E1E" d="M165.893,70.667c1.482-0.503,2.778-0.484,5.183,0.974c2.564,1.614,1.397,3.846-0.93,3.276 c-2.067-0.504-1.989-0.529-3.756-0.88C163.564,73.478,163.071,71.612,165.893,70.667z"/>
+ <path fill="#232323" d="M165.959,70.793c1.447-0.478,2.74-0.45,5.108,0.964c2.464,1.535,1.345,3.613-0.955,3.055 c-2.053-0.496-1.917-0.503-3.651-0.846C163.682,73.423,163.197,71.692,165.959,70.793z"/>
+ <path fill="#282828" d="M166.025,70.92c1.412-0.453,2.701-0.416,5.034,0.954c2.362,1.456,1.293,3.38-0.981,2.834 c-2.04-0.487-1.845-0.478-3.545-0.812C163.8,73.368,163.323,71.771,166.025,70.92z"/>
+ <path fill="#2D2D2D" d="M166.09,71.047c1.378-0.428,2.663-0.382,4.96,0.943c2.264,1.377,1.242,3.146-1.006,2.613 c-2.026-0.478-1.773-0.453-3.438-0.777C163.918,73.313,163.448,71.852,166.09,71.047z"/>
+ <path fill="#333333" d="M166.156,71.173c1.343-0.402,2.624-0.347,4.885,0.933c2.163,1.298,1.191,2.914-1.029,2.392 c-2.015-0.47-1.703-0.428-3.334-0.743C164.036,73.257,163.574,71.931,166.156,71.173z"/>
+ <path fill="#383838" d="M166.222,71.3c1.307-0.377,2.585-0.313,4.81,0.922c2.063,1.219,1.14,2.681-1.055,2.171 c-2.001-0.461-1.631-0.402-3.229-0.708C164.154,73.202,163.7,72.011,166.222,71.3z"/>
+ <path fill="#3D3D3D" d="M166.288,71.427c1.272-0.352,2.546-0.279,4.736,0.913c1.962,1.14,1.088,2.447-1.081,1.95 c-1.988-0.452-1.56-0.377-3.122-0.674C164.271,73.147,163.826,72.09,166.288,71.427z"/>
+ <path fill="#424242" d="M166.354,71.554c1.236-0.327,2.507-0.245,4.661,0.902c1.861,1.061,1.037,2.214-1.106,1.729 c-1.974-0.444-1.488-0.352-3.016-0.64C164.389,73.092,163.951,72.17,166.354,71.554z"/>
+ <path fill="#474747" d="M166.419,71.68c1.203-0.302,2.469-0.21,4.587,0.892c1.762,0.982,0.986,1.98-1.13,1.508 c-1.962-0.435-1.417-0.326-2.911-0.606C164.507,73.037,164.077,72.25,166.419,71.68z"/>
+ <path fill="#4C4C4C" d="M166.485,71.807c1.167-0.276,2.429-0.176,4.513,0.882c1.66,0.903,0.935,1.748-1.156,1.288 c-1.948-0.426-1.345-0.301-2.805-0.572C164.625,72.982,164.203,72.329,166.485,71.807z"/>
+ <path fill="#515151" d="M166.551,71.934c1.133-0.251,2.391-0.142,4.438,0.871c1.56,0.824,0.883,1.515-1.181,1.067 c-1.936-0.417-1.274-0.275-2.699-0.537C164.743,72.927,164.328,72.409,166.551,71.934z"/>
+ <path fill="#565656" d="M166.617,72.061c1.097-0.227,2.351-0.108,4.363,0.861c1.46,0.745,0.831,1.281-1.206,0.846 c-1.922-0.409-1.202-0.25-2.594-0.503C164.861,72.872,164.454,72.488,166.617,72.061z"/>
+ <path fill="#5B5B5B" d="M166.683,72.187c1.062-0.201,2.312-0.073,4.289,0.851c1.358,0.666,0.778,1.048-1.231,0.625 c-1.91-0.4-1.131-0.225-2.489-0.469C164.978,72.817,164.58,72.568,166.683,72.187z"/>
+ <path fill="#606060" d="M166.748,72.314c1.027-0.176,2.274-0.04,4.215,0.84c1.26,0.587,0.729,0.815-1.256,0.404 c-1.896-0.392-1.06-0.2-2.383-0.435C165.096,72.762,164.705,72.648,166.748,72.314z"/>
+ </g>
+ <path fill="#666666" d="M166.814,72.44c0.992-0.151,2.234-0.005,4.14,0.83c1.159,0.508,0.677,0.582-1.281,0.183 c-1.883-0.383-0.987-0.174-2.276-0.4C165.214,72.707,164.831,72.728,166.814,72.44z"/>
+ </g>
+ <g>
+ <path fill="#666666" d="M159.99,128.249c-9.36,0.36-24.192-25.848-24.552-14.976c-0.288,9.216,0.216,9.072,0.216,18 c0,5.976-2.736,6.408-8.64,15.408c-3.024,4.752-5.4,9.864-7.272,15.048c-1.152,3.096-2.232,6.336-3.096,9.504 c-0.36,1.584-1.008,3.24-1.368,4.824c-2.952,10.872-13.464,24.264-15.912,35.136c-2.448,10.8-5.328,17.712-4.968,32.185 c0.36,14.472,0.504,10.295,4.896,13.896c4.32,3.601,8.784,6.983,15.624,13.032c7.2,6.264,22.177,17.208,24.192,20.592 c2.16,3.456,2.088,11.232,0.792,13.752c-1.296,2.448-12.6,3.816-12.528,3.816c-0.071,0,9.864,13.68,11.809,15.623 c1.872,1.873,9.936,10.873,42.768,4.752c18.504-3.455,32.832-13.823,43.2-23.832c13.392-13.031,6.624-16.775,8.352-23.327 c2.521-9.433,10.729-12.96,12.601-23.616c0.216-1.512,0.72-2.664,2.088-4.896c2.088-3.168,1.584-9.432,1.584-15.191 c0-14.977-1.729-30.24-5.185-41.472c-3.168-10.512-8.208-17.856-12.527-27.36c-8.641-18.936-8.208-27.432-15.912-39.528 c-8.784-13.968-4.464-23.256-16.128-22.68C185.478,107.729,173.742,127.673,159.99,128.249z"/>
+ <g>
+ <path fill="#6D6D6D" d="M159.973,129.334c-9.281,0.353-23.746-25.511-24.242-15.179c-0.316,8.755,0.1,8.678,0.03,17.247 c-0.15,5.87-2.953,6.637-8.727,15.481c-3.013,4.763-5.273,9.812-6.993,14.877c-0.968,3.253-1.56,6.422-2.43,9.526 c-0.415,1.642-1.497,3.187-2.185,5.042c-3.254,10.78-13.545,24.182-15.961,34.877c-2.466,10.81-5.37,17.694-4.961,32.141 c0.366,14,0.395,10.177,4.773,13.816c4.283,3.616,8.839,7.069,15.662,13.103c7.183,6.248,22.237,17.216,24.243,20.588 c2.149,3.444,2.131,11.317,0.844,13.823c-1.284,2.439-12.579,3.875-12.508,3.875c-0.071,0,9.815,13.566,11.757,15.508 c1.87,1.87,9.902,10.809,42.678,4.704c18.524-3.455,33.124-13.753,43.078-23.856c12.789-12.762,6.107-16.773,7.826-23.291 c2.513-9.416,11.277-12.961,13.143-23.602c0.216-1.508,0.754-2.654,2.113-4.876c2.096-3.202,1.561-9.447,1.582-15.185 c0.067-15.027-1.705-30.234-5.159-41.434c-3.171-10.483-8.204-17.817-12.515-27.305c-8.624-18.906-8.221-27.415-15.933-39.474 c-8.586-13.613-4.601-22.583-16.011-21.99C185.703,108.576,173.702,128.766,159.973,129.334z"/>
+ <path fill="#757575" d="M159.955,130.419c-9.201,0.346-23.299-25.175-23.931-15.383c-0.344,8.295-0.017,8.284-0.156,16.494 c-0.301,5.764-3.17,6.867-8.812,15.555c-3.002,4.774-5.148,9.76-6.714,14.706c-0.784,3.41-0.889,6.508-1.764,9.548 c-0.471,1.699-1.986,3.133-3.003,5.259c-3.554,10.688-13.624,24.1-16.009,34.619c-2.483,10.82-5.411,17.678-4.954,32.097 c0.373,13.528,0.285,10.058,4.651,13.739c4.244,3.632,8.893,7.154,15.699,13.171c7.167,6.233,22.299,17.224,24.294,20.585 c2.142,3.432,2.175,11.404,0.896,13.896c-1.271,2.428-12.558,3.932-12.486,3.932c-0.071,0,9.768,13.453,11.705,15.392 c1.867,1.867,9.867,10.744,42.588,4.655c18.545-3.453,33.415-13.682,42.956-23.879c12.187-12.492,5.591-16.771,7.3-23.258 c2.507-9.398,11.826-12.959,13.687-23.586c0.215-1.5,0.788-2.643,2.138-4.854c2.104-3.235,1.538-9.462,1.58-15.178 c0.133-15.076-1.681-30.228-5.135-41.394c-3.173-10.455-8.199-17.779-12.501-27.25c-8.609-18.877-8.234-27.399-15.952-39.42 c-8.389-13.258-4.739-21.911-15.895-21.301C185.927,109.423,173.663,129.859,159.955,130.419z"/>
+ <path fill="#7C7C7C" d="M159.938,131.504c-9.122,0.338-22.854-24.838-23.622-15.586c-0.37,7.833-0.131,7.89-0.341,15.741 c-0.452,5.657-3.388,7.096-8.899,15.628c-2.99,4.785-5.021,9.708-6.433,14.535c-0.602,3.566-0.218,6.594-1.099,9.57 c-0.526,1.756-2.475,3.08-3.82,5.477c-3.854,10.596-13.703,24.016-16.057,34.361c-2.501,10.829-5.453,17.66-4.948,32.052 c0.38,13.059,0.177,9.939,4.529,13.66c4.208,3.648,8.948,7.239,15.739,13.242c7.149,6.217,22.358,17.232,24.345,20.581 c2.13,3.42,2.216,11.489,0.946,13.968c-1.259,2.417-12.538,3.99-12.466,3.99c-0.072,0,9.718,13.34,11.653,15.275 c1.865,1.864,9.833,10.681,42.498,4.607c18.565-3.453,33.706-13.609,42.834-23.902c11.583-12.223,5.074-16.771,6.774-23.223 c2.499-9.382,12.375-12.959,14.229-23.57c0.215-1.496,0.821-2.633,2.162-4.834c2.111-3.271,1.516-9.478,1.578-15.173 c0.199-15.125-1.657-30.221-5.109-41.354c-3.177-10.427-8.196-17.741-12.488-27.195c-8.594-18.848-8.247-27.383-15.972-39.366 c-8.192-12.903-4.877-21.239-15.779-20.612C186.151,110.27,173.623,130.952,159.938,131.504z"/>
+ <path fill="#848484" d="M159.921,132.589c-9.043,0.331-22.406-24.502-23.312-15.79c-0.398,7.373-0.247,7.496-0.527,14.988 c-0.602,5.551-3.604,7.326-8.984,15.702c-2.98,4.796-4.896,9.656-6.154,14.364c-0.417,3.723,0.455,6.679-0.432,9.592 c-0.582,1.813-2.964,3.026-4.639,5.694c-4.153,10.504-13.782,23.936-16.104,34.104c-2.519,10.838-5.495,17.643-4.941,32.008 c0.387,12.586,0.067,9.819,4.407,13.582c4.171,3.664,9.002,7.324,15.777,13.311c7.132,6.201,22.419,17.24,24.396,20.576 c2.12,3.41,2.259,11.578,0.998,14.041c-1.247,2.408-12.517,4.049-12.446,4.049c-0.07,0,9.67,13.227,11.604,15.16 c1.861,1.861,9.798,10.615,42.409,4.558c18.584-3.45,33.996-13.538,42.711-23.926c10.979-11.952,4.557-16.769,6.248-23.187 c2.491-9.367,12.924-12.959,14.771-23.557c0.215-1.49,0.856-2.622,2.188-4.813c2.118-3.305,1.491-9.494,1.575-15.166 c0.267-15.174-1.635-30.215-5.086-41.314c-3.179-10.399-8.19-17.703-12.473-27.141c-8.579-18.818-8.262-27.366-15.994-39.312 c-7.993-12.547-5.013-20.565-15.661-19.922C186.376,111.117,173.583,132.045,159.921,132.589z"/>
+ <path fill="#8C8C8C" d="M159.903,133.674c-8.963,0.323-21.961-24.165-23.001-15.994c-0.426,6.912-0.363,7.102-0.713,14.236 c-0.753,5.445-3.821,7.554-9.071,15.775c-2.969,4.807-4.768,9.604-5.875,14.192c-0.232,3.881,1.128,6.766,0.234,9.615 c-0.638,1.87-3.452,2.972-5.455,5.911c-4.455,10.413-13.862,23.853-16.153,33.845c-2.537,10.849-5.537,17.625-4.935,31.963 c0.393,12.115-0.042,9.701,4.285,13.505c4.133,3.68,9.057,7.409,15.814,13.38c7.116,6.188,22.48,17.248,24.447,20.574 c2.109,3.398,2.301,11.662,1.049,14.113c-1.235,2.396-12.496,4.104-12.425,4.104c-0.071,0,9.622,13.114,11.552,15.045 c1.86,1.858,9.763,10.552,42.319,4.509c18.604-3.449,34.288-13.467,42.589-23.949c10.377-11.682,4.04-16.766,5.721-23.15 c2.486-9.35,13.474-12.959,15.316-23.542c0.214-1.483,0.89-2.611,2.213-4.793c2.126-3.339,1.468-9.507,1.573-15.158 c0.333-15.224-1.611-30.208-5.062-41.276c-3.181-10.37-8.186-17.664-12.459-27.085c-8.563-18.789-8.275-27.35-16.014-39.258 c-7.796-12.192-5.151-19.893-15.545-19.233C186.6,111.964,173.544,133.137,159.903,133.674z"/>
+ <path fill="#939393" d="M159.886,134.759c-8.885,0.316-21.516-23.829-22.691-16.197c-0.454,6.451-0.479,6.708-0.899,13.482 c-0.903,5.339-4.038,7.784-9.157,15.849c-2.957,4.818-4.642,9.552-5.595,14.021c-0.05,4.037,1.799,6.852,0.9,9.637 c-0.693,1.928-3.941,2.919-6.273,6.129c-4.756,10.32-13.941,23.77-16.201,33.587c-2.555,10.858-5.579,17.608-4.928,31.92 c0.399,11.644-0.151,9.581,4.162,13.424c4.096,3.697,9.111,7.494,15.854,13.451c7.099,6.17,22.541,17.256,24.498,20.569 c2.1,3.387,2.344,11.75,1.101,14.186c-1.223,2.387-12.476,4.163-12.404,4.163c-0.071,0,9.573,13.001,11.5,14.929 c1.857,1.856,9.729,10.488,42.229,4.461c18.625-3.449,34.579-13.396,42.467-23.973c9.774-11.412,3.523-16.764,5.195-23.115 c2.479-9.334,14.022-12.959,15.858-23.527c0.214-1.479,0.924-2.601,2.238-4.772c2.134-3.373,1.445-9.522,1.571-15.151 c0.399-15.273-1.587-30.201-5.036-41.237c-3.185-10.342-8.184-17.625-12.446-27.03c-8.548-18.76-8.288-27.333-16.034-39.204 c-7.598-11.837-5.289-19.221-15.428-18.544C186.824,112.811,173.504,134.23,159.886,134.759z"/>
+ <path fill="#9B9B9B" d="M159.868,135.844c-8.805,0.308-21.068-23.492-22.381-16.401c-0.481,5.991-0.594,6.314-1.085,12.73 c-1.053,5.232-4.253,8.013-9.243,15.922c-2.946,4.829-4.515,9.5-5.314,13.85c0.133,4.194,2.471,6.937,1.565,9.658 c-0.749,1.986-4.43,2.866-7.091,6.347c-5.056,10.229-14.021,23.689-16.249,33.329c-2.572,10.868-5.621,17.591-4.921,31.876 c0.405,11.172-0.261,9.463,4.04,13.346c4.058,3.713,9.166,7.58,15.892,13.521c7.082,6.155,22.601,17.265,24.548,20.567 c2.092,3.373,2.388,11.834,1.152,14.256c-1.21,2.377-12.454,4.222-12.383,4.222c-0.071,0,9.523,12.888,11.45,14.813 c1.854,1.854,9.692,10.424,42.138,4.412c18.645-3.447,34.871-13.324,42.345-23.996c9.171-11.143,3.007-16.762,4.669-23.08 c2.472-9.317,14.572-12.959,16.401-23.514c0.214-1.473,0.958-2.588,2.265-4.75c2.142-3.408,1.421-9.539,1.568-15.145 c0.466-15.324-1.564-30.196-5.012-41.198c-3.187-10.313-8.179-17.587-12.433-26.976c-8.533-18.73-8.301-27.316-16.054-39.149 c-7.401-11.482-5.426-18.548-15.313-17.855C187.049,113.658,173.464,135.323,159.868,135.844z"/>
+ <path fill="#A3A3A3" d="M159.851,136.929c-8.727,0.301-20.622-23.156-22.071-16.604c-0.509,5.529-0.71,5.919-1.271,11.976 c-1.203,5.126-4.47,8.243-9.328,15.996c-2.936,4.84-4.39,9.448-5.036,13.679c0.316,4.351,3.143,7.023,2.231,9.68 c-0.804,2.043-4.919,2.812-7.908,6.563c-5.356,10.137-14.101,23.607-16.298,33.072c-2.589,10.877-5.661,17.574-4.913,31.832 c0.412,10.699-0.37,9.342,3.918,13.268c4.021,3.729,9.221,7.664,15.93,13.59c7.064,6.139,22.661,17.271,24.599,20.563 c2.081,3.363,2.43,11.922,1.204,14.33c-1.198,2.365-12.434,4.278-12.363,4.278c-0.07,0,9.477,12.774,11.399,14.697 c1.851,1.851,9.659,10.36,42.048,4.364c18.666-3.447,35.162-13.254,42.223-24.021c8.568-10.873,2.49-16.761,4.144-23.045 c2.464-9.301,15.121-12.958,16.943-23.498c0.215-1.467,0.992-2.579,2.29-4.729c2.148-3.441,1.398-9.553,1.566-15.139 c0.532-15.373-1.541-30.189-4.987-41.158c-3.188-10.285-8.174-17.549-12.419-26.921c-8.518-18.701-8.313-27.3-16.073-39.096 c-7.204-11.126-5.564-17.875-15.196-17.165C187.273,114.505,173.425,136.416,159.851,136.929z"/>
+ <path fill="#AAAAAA" d="M159.834,138.014c-8.646,0.293-20.176-22.819-21.761-16.808c-0.536,5.069-0.826,5.526-1.457,11.224 c-1.354,5.02-4.687,8.472-9.416,16.069c-2.924,4.851-4.262,9.396-4.756,13.508c0.501,4.507,3.814,7.109,2.897,9.702 c-0.858,2.1-5.406,2.759-8.725,6.782c-5.657,10.045-14.181,23.524-16.347,32.812c-2.606,10.888-5.703,17.557-4.906,31.787 c0.418,10.229-0.479,9.225,3.795,13.189c3.984,3.745,9.275,7.749,15.968,13.66c7.048,6.124,22.723,17.279,24.651,20.559 c2.07,3.352,2.472,12.008,1.255,14.402c-1.186,2.355-12.414,4.337-12.343,4.337c-0.071,0,9.428,12.66,11.348,14.581 c1.85,1.848,9.624,10.297,41.958,4.314c18.687-3.444,35.453-13.18,42.102-24.043c7.965-10.602,1.973-16.758,3.616-23.01 c2.457-9.283,15.67-12.957,17.487-23.482c0.214-1.461,1.026-2.568,2.315-4.709c2.155-3.477,1.375-9.568,1.563-15.131 c0.6-15.424-1.518-30.184-4.963-41.119c-3.192-10.257-8.17-17.511-12.405-26.866c-8.502-18.672-8.328-27.284-16.095-39.042 c-7.005-10.771-5.701-17.203-15.078-16.476C187.497,115.352,173.385,137.509,159.834,138.014z"/>
+ <path fill="#B2B2B2" d="M159.816,139.099c-8.567,0.286-19.729-22.483-21.45-17.012c-0.563,4.608-0.942,5.132-1.643,10.471 c-1.506,4.914-4.904,8.701-9.502,16.143c-2.913,4.862-4.137,9.344-4.477,13.336c0.685,4.665,4.486,7.195,3.564,9.725 c-0.915,2.157-5.897,2.705-9.543,6.999c-5.958,9.953-14.262,23.443-16.396,32.554c-2.624,10.898-5.745,17.54-4.9,31.744 c0.426,9.757-0.588,9.105,3.674,13.111c3.945,3.761,9.33,7.834,16.006,13.729c7.032,6.109,22.783,17.288,24.702,20.557 c2.06,3.338,2.515,12.094,1.306,14.473c-1.173,2.346-12.392,4.395-12.321,4.395c-0.07,0,9.379,12.549,11.296,14.465 c1.847,1.848,9.591,10.234,41.868,4.268c18.706-3.444,35.745-13.11,41.979-24.066c7.361-10.332,1.456-16.757,3.091-22.974 c2.45-9.269,16.219-12.958,18.03-23.47c0.213-1.455,1.06-2.557,2.34-4.688c2.164-3.509,1.352-9.583,1.562-15.124 c0.665-15.473-1.494-30.177-4.938-41.08c-3.195-10.228-8.166-17.472-12.393-26.811c-8.486-18.642-8.341-27.267-16.114-38.987 c-6.809-10.416-5.838-16.531-14.962-15.787C187.722,116.199,173.345,138.601,159.816,139.099z"/>
+ <path fill="#BABABA" d="M159.799,140.184c-8.487,0.279-19.282-22.146-21.141-17.215c-0.591,4.147-1.057,4.737-1.828,9.717 c-1.656,4.808-5.121,8.931-9.588,16.217c-2.902,4.873-4.01,9.292-4.197,13.165c0.868,4.822,5.158,7.281,4.23,9.747 c-0.971,2.215-6.385,2.651-10.361,7.216c-6.258,9.861-14.339,23.36-16.442,32.297c-2.643,10.906-5.787,17.521-4.894,31.699 c0.432,9.285-0.697,8.986,3.552,13.032c3.908,3.776,9.384,7.919,16.043,13.799c7.016,6.093,22.845,17.296,24.753,20.552 c2.051,3.328,2.559,12.18,1.358,14.547c-1.161,2.334-12.372,4.451-12.301,4.451c-0.071,0,9.33,12.436,11.245,14.35 c1.844,1.844,9.555,10.17,41.777,4.219c18.727-3.443,36.036-13.039,41.857-24.09c6.759-10.063,0.939-16.756,2.565-22.939 c2.442-9.25,16.768-12.957,18.572-23.453c0.213-1.451,1.095-2.547,2.365-4.668c2.171-3.543,1.329-9.599,1.56-15.117 c0.732-15.522-1.471-30.172-4.913-41.042c-3.197-10.2-8.161-17.433-12.379-26.756c-8.471-18.612-8.354-27.25-16.135-38.933 c-6.609-10.061-5.976-15.858-14.845-15.098C187.946,117.046,173.305,139.694,159.799,140.184z"/>
+ <path fill="#C1C1C1" d="M159.781,141.269c-8.408,0.271-18.837-21.81-20.83-17.419c-0.619,3.687-1.173,4.344-2.014,8.965 c-1.808,4.701-5.338,9.16-9.674,16.29c-2.892,4.884-3.885,9.24-3.918,12.994c1.052,4.978,5.829,7.367,4.896,9.769 c-1.026,2.272-6.874,2.598-11.178,7.434c-6.56,9.769-14.419,23.277-16.491,32.039c-2.66,10.916-5.829,17.504-4.887,31.656 c0.438,8.813-0.807,8.867,3.43,12.953c3.87,3.793,9.438,8.004,16.082,13.868c6.997,6.077,22.904,17.304,24.803,20.55 c2.041,3.314,2.601,12.266,1.409,14.617c-1.149,2.324-12.351,4.51-12.28,4.51c-0.07,0,9.282,12.321,11.194,14.233 c1.841,1.842,9.521,10.106,41.688,4.17c18.746-3.44,36.326-12.967,41.734-24.112c6.156-9.793,0.423-16.754,2.038-22.904 c2.438-9.235,17.318-12.957,19.117-23.438c0.212-1.444,1.128-2.536,2.39-4.647c2.18-3.578,1.306-9.613,1.558-15.11 c0.799-15.571-1.447-30.165-4.889-41.002c-3.2-10.172-8.156-17.395-12.364-26.701c-8.456-18.583-8.367-27.234-16.155-38.88 c-6.413-9.705-6.114-15.185-14.729-14.408C188.17,117.893,173.266,140.787,159.781,141.269z"/>
+ <path fill="#C9C9C9" d="M159.764,142.354c-8.329,0.264-18.392-21.473-20.521-17.622c-0.646,3.225-1.289,3.949-2.2,8.211 c-1.957,4.596-5.555,9.39-9.761,16.364c-2.879,4.895-3.757,9.188-3.638,12.823c1.235,5.135,6.502,7.453,5.562,9.791 c-1.081,2.329-7.362,2.544-11.995,7.651c-6.859,9.677-14.499,23.195-16.54,31.78c-2.677,10.927-5.87,17.488-4.879,31.611 c0.444,8.344-0.916,8.748,3.307,12.875c3.834,3.81,9.492,8.09,16.121,13.939c6.98,6.061,22.965,17.311,24.854,20.545 c2.031,3.303,2.643,12.352,1.461,14.69c-1.137,2.313-12.33,4.567-12.26,4.567c-0.07,0,9.233,12.209,11.143,14.117 c1.839,1.84,9.486,10.043,41.599,4.122c18.767-3.44,36.618-12.896,41.612-24.137c5.554-9.522-0.094-16.751,1.513-22.868 c2.43-9.219,17.866-12.957,19.659-23.424c0.213-1.439,1.162-2.525,2.415-4.627c2.188-3.612,1.282-9.629,1.556-15.104 c0.865-15.621-1.424-30.158-4.864-40.962c-3.202-10.144-8.153-17.357-12.351-26.646c-8.441-18.554-8.381-27.218-16.176-38.826 c-6.216-9.35-6.251-14.513-14.612-13.719C188.395,118.74,173.226,141.88,159.764,142.354z"/>
+ <path fill="#D1D1D1" d="M159.747,143.439c-8.25,0.256-17.944-21.137-20.21-17.826c-0.675,2.765-1.406,3.555-2.386,7.459 c-2.108,4.489-5.772,9.619-9.847,16.437c-2.869,4.906-3.631,9.136-3.358,12.652c1.419,5.292,7.174,7.538,6.228,9.812 c-1.137,2.387-7.852,2.491-12.813,7.869c-7.161,9.586-14.579,23.114-16.588,31.522c-2.695,10.938-5.912,17.471-4.873,31.568 c0.451,7.871-1.025,8.629,3.185,12.797c3.796,3.824,9.547,8.174,16.158,14.008c6.964,6.047,23.026,17.32,24.905,20.541 c2.021,3.292,2.686,12.439,1.513,14.764c-1.125,2.303-12.31,4.625-12.239,4.625c-0.07,0,9.186,12.094,11.092,14.002 c1.836,1.836,9.45,9.978,41.509,4.072c18.786-3.439,36.909-12.824,41.49-24.16c4.948-9.252-0.611-16.748,0.985-22.832 c2.423-9.203,18.415-12.957,20.203-23.41c0.212-1.434,1.196-2.514,2.44-4.605c2.193-3.646,1.259-9.645,1.553-15.098 c0.932-15.67-1.4-30.151-4.84-40.922c-3.205-10.115-8.148-17.319-12.336-26.592c-8.427-18.524-8.396-27.201-16.197-38.771 c-6.017-8.995-6.388-13.84-14.495-13.03C188.619,119.587,173.186,142.973,159.747,143.439z"/>
+ <path fill="#D8D8D8" d="M159.729,144.524c-8.17,0.249-17.498-20.8-19.9-18.03c-0.702,2.304-1.521,3.162-2.571,6.706 c-2.259,4.383-5.988,9.848-9.933,16.511c-2.858,4.917-3.504,9.084-3.079,12.48c1.604,5.449,7.846,7.625,6.895,9.835 c-1.193,2.444-8.342,2.438-13.631,8.087c-7.461,9.493-14.658,23.031-16.637,31.262c-2.712,10.947-5.953,17.455-4.865,31.524 c0.458,7.399-1.135,8.511,3.063,12.718c3.758,3.842,9.601,8.26,16.196,14.078c6.946,6.031,23.087,17.328,24.956,20.538 c2.011,3.28,2.729,12.524,1.563,14.835c-1.112,2.293-12.289,4.684-12.218,4.684c-0.071,0,9.136,11.981,11.04,13.886 c1.834,1.834,9.417,9.913,41.419,4.024c18.807-3.438,37.2-12.752,41.368-24.184c4.346-8.982-1.128-16.747,0.46-22.798 c2.416-9.187,18.964-12.956,20.746-23.394c0.211-1.429,1.229-2.504,2.465-4.586c2.202-3.681,1.236-9.658,1.551-15.091 c0.998-15.72-1.377-30.146-4.814-40.884c-3.208-10.086-8.145-17.28-12.323-26.536c-8.411-18.495-8.408-27.185-16.217-38.717 c-5.82-8.64-6.526-13.168-14.38-12.341C188.843,120.434,173.147,144.065,159.729,144.524z"/>
+ <path fill="#E0E0E0" d="M159.712,145.609c-8.091,0.241-17.052-20.464-19.59-18.233c-0.729,1.843-1.637,2.767-2.757,5.953 c-2.409,4.276-6.206,10.077-10.02,16.584c-2.847,4.928-3.378,9.032-2.8,12.309c1.787,5.606,8.519,7.711,7.561,9.857 c-1.248,2.502-8.829,2.384-14.448,8.304c-7.761,9.402-14.738,22.95-16.684,31.006c-2.731,10.955-5.996,17.436-4.859,31.48 c0.464,6.928-1.244,8.389,2.939,12.639c3.722,3.857,9.656,8.344,16.234,14.148c6.932,6.014,23.148,17.336,25.008,20.533 c2,3.268,2.771,12.611,1.615,14.907c-1.1,2.282-12.268,4.741-12.198,4.741c-0.069,0,9.089,11.867,10.989,13.77 c1.831,1.831,9.382,9.85,41.329,3.977c18.827-3.438,37.492-12.683,41.246-24.207c3.743-8.715-1.646-16.746-0.066-22.762 c2.409-9.171,19.514-12.957,21.289-23.381c0.211-1.422,1.265-2.494,2.49-4.564c2.21-3.715,1.213-9.674,1.549-15.084 c1.065-15.77-1.354-30.139-4.791-40.844c-3.21-10.058-8.14-17.241-12.309-26.481c-8.396-18.466-8.421-27.168-16.237-38.664 c-5.622-8.284-6.663-12.495-14.262-11.651C189.068,121.281,173.107,145.158,159.712,145.609z"/>
+ <path fill="#E8E8E8" d="M159.694,146.694c-8.012,0.234-16.605-20.127-19.279-18.437c-0.757,1.383-1.753,2.373-2.943,5.2 c-2.56,4.171-6.423,10.307-10.105,16.658c-2.835,4.939-3.251,8.979-2.52,12.138c1.97,5.763,9.189,7.796,8.226,9.879 c-1.303,2.559-9.318,2.33-15.265,8.521c-8.063,9.31-14.818,22.867-16.733,30.748c-2.748,10.967-6.037,17.419-4.853,31.436 c0.472,6.457-1.353,8.271,2.818,12.562c3.685,3.873,9.711,8.429,16.273,14.218c6.913,6,23.207,17.344,25.058,20.529 c1.991,3.257,2.814,12.697,1.666,14.98c-1.087,2.271-12.247,4.799-12.177,4.799c-0.07,0,9.04,11.755,10.938,13.654 c1.829,1.828,9.349,9.785,41.239,3.926c18.847-3.435,37.783-12.609,41.124-24.229c3.14-8.444-2.161-16.743-0.592-22.728 c2.401-9.152,20.062-12.955,21.831-23.364c0.211-1.417,1.298-2.483,2.516-4.544c2.217-3.748,1.19-9.689,1.547-15.076 c1.132-15.82-1.331-30.133-4.766-40.806c-3.213-10.03-8.136-17.203-12.296-26.427c-8.38-18.436-8.435-27.151-16.257-38.609 c-5.425-7.929-6.802-11.822-14.146-10.962C189.292,122.128,173.067,146.251,159.694,146.694z"/>
+ <path fill="#EFEFEF" d="M159.677,147.779c-7.934,0.226-16.16-19.791-18.97-18.64c-0.785,0.921-1.869,1.979-3.13,4.447 c-2.71,4.064-6.639,10.536-10.19,16.731c-2.824,4.95-3.125,8.928-2.24,11.967c2.152,5.919,9.86,7.882,8.892,9.901 c-1.358,2.616-9.808,2.277-16.083,8.739c-8.363,9.218-14.896,22.784-16.781,30.489c-2.766,10.977-6.079,17.402-4.846,31.393 c0.478,5.984-1.462,8.152,2.696,12.482c3.646,3.889,9.765,8.514,16.311,14.287c6.896,5.983,23.269,17.352,25.109,20.526 c1.98,3.245,2.855,12.782,1.718,15.052c-1.076,2.262-12.227,4.857-12.156,4.857c-0.07,0,8.991,11.641,10.887,13.537 c1.826,1.826,9.313,9.723,41.148,3.879c18.868-3.434,38.074-12.538,41.002-24.254c2.537-8.174-2.678-16.741-1.119-22.69 c2.396-9.138,20.612-12.957,22.375-23.351c0.212-1.412,1.332-2.473,2.541-4.523c2.226-3.783,1.166-9.704,1.545-15.07 c1.197-15.869-1.307-30.125-4.741-40.766c-3.215-10.002-8.131-17.165-12.282-26.372c-8.365-18.407-8.447-27.135-16.277-38.555 c-5.228-7.574-6.938-11.15-14.029-10.272C189.516,122.975,173.028,147.344,159.677,147.779z"/>
+ <path fill="#F7F7F7" d="M159.66,148.864c-7.854,0.219-15.714-19.454-18.66-18.844c-0.812,0.461-1.983,1.585-3.314,3.694 c-2.86,3.958-6.856,10.766-10.278,16.805c-2.813,4.961-2.998,8.876-1.96,11.796c2.337,6.076,10.533,7.968,9.558,9.923 c-1.415,2.673-10.296,2.223-16.899,8.956c-8.664,9.126-14.978,22.702-16.83,30.23c-2.783,10.986-6.121,17.386-4.839,31.349 c0.484,5.515-1.571,8.033,2.573,12.403c3.609,3.906,9.82,8.6,16.35,14.357c6.88,5.969,23.329,17.36,25.16,20.523 c1.971,3.232,2.898,12.869,1.77,15.124c-1.063,2.252-12.206,4.915-12.136,4.915c-0.07,0,8.942,11.527,10.835,13.422 c1.824,1.822,9.279,9.658,41.059,3.83c18.889-3.434,38.366-12.467,40.881-24.278c1.934-7.903-3.195-16.739-1.646-22.655 c2.388-9.121,21.161-12.955,22.918-23.336c0.211-1.404,1.366-2.461,2.566-4.502c2.232-3.816,1.143-9.719,1.542-15.063 c1.265-15.92-1.283-30.12-4.717-40.727c-3.219-9.974-8.128-17.127-12.269-26.317c-8.349-18.378-8.461-27.119-16.298-38.501 c-5.029-7.219-7.075-10.478-13.912-9.584C189.741,123.822,172.988,148.437,159.66,148.864z"/>
+ </g>
+ <path fill="#FFFFFF" d="M159.642,149.949c-7.774,0.211-15.268-19.118-18.35-19.048c-0.84,0-2.1,1.191-3.501,2.941 c-3.011,3.852-7.072,10.995-10.363,16.878c-2.803,4.972-2.872,8.824-1.682,11.625c2.521,6.233,11.205,8.054,10.225,9.945 c-1.471,2.731-10.785,2.17-17.719,9.174c-8.964,9.034-15.056,22.621-16.877,29.973c-2.801,10.995-6.163,17.368-4.832,31.304 c0.49,5.043-1.681,7.914,2.451,12.325c3.571,3.923,9.874,8.685,16.387,14.427c6.863,5.953,23.391,17.368,25.211,20.521 c1.962,3.221,2.942,12.954,1.821,15.196c-1.051,2.24-12.185,4.972-12.115,4.972c-0.069,0,8.895,11.416,10.784,13.307 c1.821,1.82,9.244,9.595,40.97,3.781c18.907-3.431,38.656-12.396,40.758-24.302c1.331-7.633-3.712-16.736-2.171-22.619 c2.381-9.104,21.71-12.956,23.461-23.321c0.21-1.399,1.399-2.45,2.591-4.481c2.24-3.852,1.12-9.734,1.54-15.057 c1.331-15.968-1.26-30.113-4.692-40.688c-3.221-9.945-8.123-17.088-12.255-26.262c-8.334-18.348-8.474-27.102-16.318-38.447 c-4.832-6.863-7.213-9.805-13.796-8.894C189.965,124.668,172.948,149.529,159.642,149.949z"/>
+ </g>
+ <path fill="#995900" d="M164.958,78.857c5.256-0.648,12.456,0.648,15.769,3.096c3.096,2.304,5.256,3.528,8.063,4.464 c9.433,3.096,21.816,4.536,21.24,13.032c-0.648,10.151-3.6,14.688-12.024,17.351c-6.768,2.088-18.863,13.824-28.224,13.824 c-4.176,0-10.008,0.216-13.392-1.008c-3.24-1.152-7.776-6.624-13.104-11.016c-5.328-4.32-10.296-8.928-10.439-14.976 c-0.217-6.407,3.96-8.496,9.863-13.607c3.097-2.736,8.712-7.272,12.601-9.288C158.91,78.93,161.214,79.29,164.958,78.857z"/>
+ <g>
+ <path fill="#9E5F00" d="M165.068,78.951c5.225-0.644,12.384,0.645,15.677,3.079c3.078,2.29,5.227,3.51,8.018,4.438 c9.375,3.078,21.729,4.529,21.159,12.973c-0.641,10.09-3.669,14.581-12.041,17.223c-6.723,2.073-18.768,13.589-28.07,13.64 c-4.21,0.032-9.926,0.234-13.287-0.977c-3.215-1.142-7.737-6.608-13.031-10.969c-5.291-4.292-10.26-8.774-10.317-14.765 c-0.153-6.252,3.912-8.411,9.773-13.488c3.071-2.71,8.594-7.303,12.463-9.333C158.975,78.969,161.345,79.38,165.068,78.951z"/>
+ <path fill="#A36400" d="M165.177,79.044c5.195-0.641,12.313,0.64,15.587,3.06c3.06,2.278,5.194,3.494,7.971,4.413 c9.317,3.06,21.641,4.522,21.078,12.914c-0.634,10.027-3.737,14.474-12.058,17.094c-6.678,2.057-18.673,13.352-27.919,13.454 c-4.241,0.064-9.842,0.252-13.18-0.945c-3.19-1.133-7.7-6.592-12.96-10.921c-5.254-4.264-10.222-8.622-10.192-14.555 c-0.093-6.099,3.863-8.329,9.681-13.369c3.048-2.685,8.478-7.335,12.328-9.379C159.039,79.006,161.476,79.472,165.177,79.044z"/>
+ <path fill="#A86A00" d="M165.287,79.138c5.165-0.637,12.241,0.637,15.496,3.043c3.042,2.264,5.165,3.476,7.924,4.387 c9.26,3.042,21.556,4.515,20.998,12.854c-0.627,9.968-3.805,14.368-12.074,16.967c-6.633,2.042-18.576,13.117-27.766,13.27 c-4.276,0.096-9.759,0.27-13.075-0.914c-3.165-1.123-7.661-6.577-12.887-10.874c-5.217-4.236-10.187-8.468-10.069-14.345 c-0.03-5.943,3.815-8.244,9.589-13.249c3.023-2.66,8.36-7.366,12.191-9.424C159.104,79.045,161.607,79.562,165.287,79.138z"/>
+ <path fill="#AD7000" d="M165.396,79.23c5.135-0.633,12.17,0.633,15.404,3.025c3.025,2.251,5.137,3.46,7.88,4.361 c9.201,3.025,21.467,4.508,20.917,12.796c-0.62,9.905-3.874,14.26-12.093,16.837c-6.586,2.027-18.479,12.882-27.611,13.086 c-4.311,0.127-9.677,0.287-12.971-0.883c-3.14-1.113-7.622-6.561-12.814-10.826c-5.18-4.208-10.148-8.315-9.945-14.135 c0.031-5.789,3.768-8.16,9.497-13.129c2.999-2.635,8.244-7.398,12.055-9.47C159.169,79.084,161.738,79.652,165.396,79.23z"/>
+ <path fill="#B27600" d="M165.506,79.325c5.105-0.63,12.099,0.629,15.314,3.007c3.007,2.237,5.104,3.442,7.832,4.335 c9.145,3.007,21.38,4.501,20.837,12.737c-0.614,9.844-3.943,14.154-12.109,16.709c-6.541,2.011-18.385,12.645-27.46,12.9 c-4.342,0.16-9.592,0.306-12.862-0.851c-3.115-1.103-7.584-6.545-12.743-10.779c-5.144-4.18-10.112-8.162-9.821-13.924 c0.092-5.634,3.718-8.076,9.405-13.009c2.975-2.609,8.126-7.429,11.919-9.514C159.234,79.124,161.87,79.744,165.506,79.325z"/>
+ <path fill="#B77B00" d="M165.615,79.417c5.075-0.626,12.026,0.626,15.224,2.989c2.989,2.225,5.075,3.425,7.786,4.31 c9.087,2.989,21.292,4.494,20.756,12.678c-0.606,9.781-4.012,14.046-12.126,16.581c-6.496,1.997-18.289,12.41-27.307,12.716 c-4.376,0.191-9.51,0.323-12.758-0.82c-3.09-1.094-7.546-6.53-12.671-10.732c-5.106-4.152-10.074-8.008-9.697-13.713 c0.155-5.479,3.67-7.992,9.313-12.889c2.951-2.585,8.011-7.461,11.783-9.56C159.298,79.163,162.001,79.834,165.615,79.417z"/>
+ <path fill="#BC8100" d="M165.725,79.511c5.044-0.622,11.954,0.622,15.133,2.972c2.971,2.211,5.045,3.408,7.739,4.284 c9.029,2.971,21.205,4.487,20.675,12.619c-0.6,9.719-4.079,13.939-12.143,16.451c-6.45,1.982-18.192,12.175-27.153,12.532 c-4.41,0.223-9.428,0.341-12.653-0.789c-3.065-1.084-7.507-6.514-12.598-10.684c-5.069-4.124-10.038-7.855-9.574-13.504 c0.217-5.324,3.622-7.908,9.222-12.77c2.926-2.559,7.894-7.492,11.646-9.605C159.363,79.201,162.132,79.925,165.725,79.511z"/>
+ <path fill="#C18700" d="M165.834,79.604c5.015-0.618,11.883,0.619,15.043,2.954c2.953,2.198,5.015,3.391,7.693,4.259 c8.972,2.953,21.118,4.48,20.594,12.559c-0.593,9.66-4.147,13.833-12.159,16.324c-6.405,1.967-18.098,11.94-27.002,12.347 c-4.441,0.255-9.343,0.359-12.546-0.757c-3.04-1.074-7.469-6.498-12.526-10.637c-5.032-4.096-10-7.701-9.45-13.293 c0.278-5.169,3.574-7.823,9.13-12.649c2.903-2.534,7.776-7.524,11.511-9.651C159.428,79.239,162.263,80.016,165.834,79.604z"/>
+ <path fill="#C68D00" d="M165.944,79.697c4.984-0.615,11.811,0.614,14.952,2.936c2.935,2.184,4.983,3.374,7.646,4.233 c8.915,2.935,21.031,4.473,20.515,12.5c-0.586,9.597-4.218,13.726-12.177,16.195c-6.36,1.951-18.002,11.703-26.849,12.162 c-4.476,0.287-9.261,0.377-12.441-0.726c-3.015-1.064-7.431-6.482-12.453-10.589c-4.995-4.068-9.965-7.549-9.326-13.083 c0.34-5.015,3.524-7.741,9.038-12.531c2.878-2.508,7.658-7.555,11.374-9.696C159.492,79.278,162.394,80.106,165.944,79.697z"/>
+ <path fill="#CC9200" d="M166.054,79.791c4.952-0.61,11.738,0.611,14.86,2.918c2.918,2.172,4.954,3.357,7.601,4.207 c8.857,2.918,20.942,4.466,20.432,12.442c-0.578,9.536-4.285,13.62-12.192,16.066c-6.314,1.936-17.906,11.468-26.696,11.978 c-4.509,0.319-9.178,0.394-12.335-0.696c-2.989-1.054-7.393-6.466-12.382-10.541c-4.959-4.04-9.928-7.395-9.202-12.873 c0.401-4.859,3.477-7.655,8.945-12.411c2.854-2.482,7.542-7.586,11.239-9.741C159.557,79.316,162.525,80.197,166.054,79.791z"/>
+ <path fill="#D19800" d="M166.163,79.883c4.923-0.606,11.668,0.608,14.771,2.901c2.9,2.158,4.924,3.339,7.554,4.181 c8.801,2.9,20.855,4.459,20.352,12.383c-0.571,9.474-4.353,13.512-12.21,15.938c-6.269,1.921-17.81,11.233-26.543,11.793 c-4.542,0.351-9.094,0.413-12.229-0.664c-2.965-1.044-7.354-6.45-12.311-10.494c-4.921-4.012-9.89-7.241-9.079-12.662 c0.465-4.705,3.431-7.571,8.855-12.29c2.83-2.458,7.425-7.618,11.102-9.787C159.622,79.355,162.656,80.289,166.163,79.883z"/>
+ <path fill="#D69E00" d="M166.273,79.978c4.893-0.603,11.596,0.603,14.679,2.882c2.883,2.145,4.895,3.323,7.507,4.156 c8.744,2.882,20.77,4.452,20.272,12.324c-0.565,9.412-4.422,13.406-12.228,15.81c-6.224,1.905-17.714,10.996-26.39,11.608 c-4.576,0.383-9.012,0.431-12.124-0.633c-2.94-1.034-7.316-6.434-12.237-10.446c-4.884-3.984-9.854-7.089-8.955-12.452 c0.525-4.551,3.382-7.489,8.764-12.171c2.805-2.432,7.307-7.649,10.965-9.832C159.686,79.395,162.787,80.379,166.273,79.978z"/>
+ <path fill="#DBA300" d="M166.382,80.07c4.863-0.599,11.525,0.6,14.59,2.865c2.864,2.131,4.862,3.305,7.461,4.13 c8.686,2.864,20.682,4.445,20.19,12.264c-0.559,9.352-4.491,13.299-12.244,15.681c-6.179,1.89-17.619,10.761-26.237,11.423 c-4.608,0.415-8.929,0.449-12.018-0.601c-2.915-1.024-7.277-6.418-12.166-10.399c-4.847-3.956-9.815-6.935-8.831-12.241 c0.587-4.396,3.333-7.404,8.671-12.051c2.782-2.407,7.191-7.681,10.83-9.878C159.751,79.434,162.918,80.47,166.382,80.07z"/>
+ <path fill="#E0A900" d="M166.492,80.164c4.832-0.595,11.453,0.596,14.498,2.847c2.847,2.118,4.833,3.289,7.414,4.104 c8.629,2.846,20.595,4.438,20.111,12.205c-0.553,9.29-4.56,13.193-12.262,15.553c-6.134,1.875-17.522,10.526-26.085,11.239 c-4.642,0.447-8.845,0.467-11.912-0.57c-2.89-1.015-7.238-6.402-12.093-10.351c-4.81-3.928-9.78-6.782-8.708-12.032 c0.649-4.241,3.285-7.32,8.58-11.932c2.757-2.381,7.073-7.712,10.693-9.923C159.816,79.473,163.049,80.561,166.492,80.164z"/>
+ <path fill="#E5AF00" d="M166.601,80.257c4.803-0.592,11.382,0.592,14.407,2.829c2.829,2.105,4.804,3.271,7.368,4.079 c8.571,2.828,20.507,4.431,20.029,12.146c-0.544,9.228-4.627,13.085-12.277,15.423c-6.089,1.861-17.427,10.29-25.932,11.055 c-4.676,0.478-8.763,0.484-11.807-0.539c-2.865-1.005-7.2-6.387-12.021-10.304c-4.772-3.9-9.742-6.629-8.583-11.821 c0.711-4.085,3.236-7.236,8.487-11.812c2.732-2.357,6.957-7.744,10.557-9.968C159.881,79.511,163.18,80.651,166.601,80.257z"/>
+ <path fill="#EAB500" d="M166.711,80.351c4.772-0.588,11.31,0.589,14.317,2.811c2.811,2.092,4.771,3.254,7.321,4.054 c8.514,2.81,20.42,4.424,19.948,12.087c-0.538,9.165-4.695,12.979-12.294,15.295c-6.044,1.845-17.332,10.054-25.779,10.869 c-4.708,0.511-8.68,0.503-11.7-0.507c-2.84-0.995-7.163-6.371-11.949-10.257c-4.736-3.872-9.706-6.475-8.46-11.61 c0.773-3.931,3.188-7.152,8.396-11.692c2.709-2.331,6.839-7.775,10.421-10.013C159.945,79.549,163.312,80.743,166.711,80.351z"/>
+ <path fill="#EFBA00" d="M166.82,80.443c4.742-0.584,11.238,0.585,14.226,2.794c2.794,2.078,4.743,3.237,7.276,4.027 c8.456,2.793,20.332,4.417,19.868,12.029c-0.531,9.104-4.766,12.872-12.313,15.167c-5.997,1.83-17.234,9.819-25.626,10.685 c-4.742,0.542-8.596,0.52-11.595-0.476c-2.815-0.985-7.124-6.355-11.877-10.209c-4.699-3.844-9.668-6.322-8.336-11.4 c0.835-3.778,3.14-7.068,8.304-11.573c2.686-2.306,6.724-7.807,10.285-10.059C160.01,79.588,163.443,80.833,166.82,80.443z"/>
+ <path fill="#F4C000" d="M166.93,80.537c4.711-0.58,11.166,0.582,14.135,2.776c2.775,2.066,4.713,3.22,7.229,4.002 c8.399,2.775,20.246,4.41,19.787,11.969c-0.522,9.043-4.832,12.765-12.328,15.039c-5.952,1.815-17.139,9.584-25.473,10.501 c-4.776,0.574-8.513,0.538-11.49-0.445c-2.79-0.976-7.085-6.34-11.804-10.162c-4.662-3.816-9.632-6.168-8.213-11.189 c0.896-3.623,3.092-6.984,8.213-11.454c2.66-2.281,6.604-7.838,10.147-10.104C160.075,79.626,163.574,80.923,166.93,80.537z"/>
+ <path fill="#F9C600" d="M167.039,80.63c4.683-0.577,11.095,0.577,14.045,2.758c2.758,2.052,4.683,3.203,7.184,3.976 c8.341,2.757,20.157,4.403,19.706,11.91c-0.518,8.981-4.901,12.659-12.346,14.911c-5.906,1.799-17.044,9.347-25.32,10.315 c-4.809,0.606-8.431,0.556-11.384-0.413c-2.765-0.966-7.048-6.324-11.732-10.114c-4.625-3.788-9.594-6.016-8.088-10.98 c0.958-3.467,3.043-6.9,8.12-11.333c2.637-2.256,6.488-7.87,10.013-10.15C160.139,79.666,163.705,81.015,167.039,80.63z"/>
+ </g>
+ <path fill="#FFCC00" d="M167.149,80.724c4.65-0.573,11.022,0.574,13.954,2.74c2.739,2.039,4.651,3.186,7.136,3.951 c8.284,2.739,20.071,4.396,19.626,11.851c-0.51,8.919-4.97,12.551-12.362,14.781c-5.861,1.784-16.947,9.112-25.168,10.131 c-4.842,0.638-8.347,0.574-11.277-0.382c-2.74-0.956-7.01-6.308-11.66-10.067c-4.588-3.76-9.559-5.862-7.965-10.769 c1.02-3.313,2.995-6.816,8.028-11.213c2.612-2.23,6.371-7.901,9.876-10.195C160.204,79.705,163.836,81.105,167.149,80.724z"/>
+ <g>
+ <path fill="#FFCC00" d="M167.982,83.609c1.008,2.088,3.6,2.376,5.328,3.312c1.655,0.936,2.592,1.152,3.239,0.792 c1.44-0.792,0.36-3.384-1.079-4.32C174.102,82.458,167.406,82.242,167.982,83.609z"/>
+ <g>
+ <path fill="#F9C600" d="M168.125,83.631c0.982,2.035,3.508,2.316,5.193,3.229c1.614,0.912,2.526,1.123,3.158,0.771 c1.402-0.771,0.35-3.298-1.054-4.21C174.09,82.508,167.563,82.298,168.125,83.631z"/>
+ <path fill="#F4C000" d="M168.267,83.653c0.957,1.982,3.418,2.255,5.058,3.144c1.572,0.889,2.461,1.094,3.076,0.752 c1.367-0.752,0.342-3.213-1.025-4.101C174.077,82.559,167.72,82.354,168.267,83.653z"/>
+ <path fill="#EFBA00" d="M168.409,83.674c0.932,1.929,3.327,2.195,4.924,3.06c1.53,0.865,2.395,1.064,2.993,0.732 c1.331-0.732,0.333-3.127-0.998-3.992C174.064,82.61,167.877,82.41,168.409,83.674z"/>
+ <path fill="#EAB500" d="M168.552,83.696c0.905,1.876,3.234,2.135,4.787,2.977c1.488,0.841,2.329,1.035,2.912,0.711 c1.294-0.711,0.323-3.041-0.971-3.882C174.052,82.661,168.034,82.466,168.552,83.696z"/>
+ <path fill="#E5AF00" d="M168.694,83.718c0.881,1.823,3.144,2.075,4.653,2.892c1.446,0.818,2.264,1.006,2.83,0.692 c1.257-0.692,0.313-2.956-0.943-3.773C174.039,82.711,168.191,82.522,168.694,83.718z"/>
+ <path fill="#E0A900" d="M168.837,83.739c0.855,1.771,3.053,2.015,4.519,2.809c1.403,0.793,2.198,0.977,2.747,0.671 c1.221-0.671,0.306-2.87-0.916-3.664C174.026,82.762,168.348,82.579,168.837,83.739z"/>
+ <path fill="#DBA300" d="M168.979,83.761c0.829,1.718,2.962,1.955,4.383,2.725c1.363,0.77,2.132,0.948,2.666,0.651 c1.184-0.651,0.296-2.784-0.889-3.554C174.014,82.813,168.505,82.635,168.979,83.761z"/>
+ <path fill="#D69E00" d="M169.121,83.782c0.804,1.665,2.871,1.895,4.249,2.641c1.32,0.747,2.066,0.918,2.583,0.631 c1.148-0.631,0.287-2.698-0.861-3.444C174.001,82.864,168.662,82.691,169.121,83.782z"/>
+ <path fill="#D19800" d="M169.264,83.804c0.777,1.612,2.778,1.834,4.112,2.557c1.279,0.723,2.001,0.889,2.501,0.611 c1.112-0.611,0.278-2.612-0.834-3.335C173.988,82.915,168.819,82.748,169.264,83.804z"/>
+ <path fill="#CC9200" d="M169.406,83.826c0.753,1.559,2.688,1.774,3.979,2.473c1.236,0.699,1.936,0.86,2.42,0.591 c1.074-0.591,0.269-2.527-0.808-3.226C173.976,82.965,168.976,82.804,169.406,83.826z"/>
+ <path fill="#C68C00" d="M169.549,83.847c0.728,1.506,2.597,1.714,3.844,2.389c1.194,0.675,1.869,0.831,2.337,0.571 c1.039-0.571,0.26-2.441-0.779-3.116C173.963,83.016,169.133,82.86,169.549,83.847z"/>
+ <path fill="#C18700" d="M169.691,83.869c0.702,1.453,2.506,1.654,3.709,2.305c1.152,0.652,1.803,0.802,2.254,0.551 c1.002-0.551,0.251-2.355-0.751-3.006C173.95,83.067,169.29,82.917,169.691,83.869z"/>
+ <path fill="#BC8100" d="M169.833,83.89c0.677,1.4,2.415,1.594,3.574,2.221c1.111,0.628,1.738,0.772,2.173,0.531 c0.965-0.531,0.241-2.27-0.725-2.897C173.938,83.118,169.447,82.973,169.833,83.89z"/>
+ <path fill="#B77B00" d="M169.976,83.912c0.65,1.347,2.322,1.533,3.438,2.137c1.069,0.604,1.673,0.743,2.091,0.511 c0.93-0.511,0.233-2.184-0.696-2.788C173.925,83.169,169.604,83.029,169.976,83.912z"/>
+ <path fill="#B27500" d="M170.118,83.934c0.626,1.294,2.232,1.473,3.304,2.053c1.027,0.581,1.606,0.714,2.009,0.491 c0.893-0.491,0.224-2.098-0.669-2.678C173.912,83.22,169.761,83.085,170.118,83.934z"/>
+ <path fill="#AD7000" d="M170.261,83.955c0.6,1.242,2.14,1.413,3.168,1.97c0.984,0.557,1.541,0.685,1.927,0.47 c0.855-0.47,0.214-2.012-0.644-2.569C173.9,83.271,169.918,83.142,170.261,83.955z"/>
+ <path fill="#A86A00" d="M170.403,83.977c0.574,1.189,2.05,1.353,3.034,1.886c0.942,0.533,1.475,0.656,1.844,0.45 c0.82-0.45,0.205-1.926-0.615-2.459C173.887,83.321,170.075,83.198,170.403,83.977z"/>
+ <path fill="#A36400" d="M170.545,83.998c0.55,1.136,1.959,1.292,2.899,1.802c0.901,0.509,1.41,0.626,1.762,0.43 c0.783-0.43,0.197-1.841-0.587-2.35C173.874,83.372,170.232,83.254,170.545,83.998z"/>
+ <path fill="#9E5E00" d="M170.688,84.02c0.522,1.083,1.867,1.232,2.764,1.718c0.859,0.486,1.343,0.597,1.68,0.41 c0.746-0.41,0.188-1.755-0.561-2.241C173.862,83.423,170.389,83.31,170.688,84.02z"/>
+ </g>
+ <path fill="#995900" d="M170.83,84.042c0.498,1.03,1.776,1.172,2.629,1.634c0.817,0.462,1.278,0.568,1.599,0.39 c0.71-0.39,0.178-1.669-0.533-2.131C173.849,83.474,170.546,83.367,170.83,84.042z"/>
+ </g>
+ <g>
+ <path fill="#FFCC00" d="M152.875,86.29c-0.325,0.813,1.952,2.359,3.091,1.301c1.222-1.057,2.686-2.033,3.175-2.359 c2.195-1.465,1.383-2.522-2.278-1.871C153.2,84.012,153.2,85.476,152.875,86.29z"/>
+ <g>
+ <path fill="#F9C600" d="M152.934,86.279c-0.318,0.794,1.906,2.304,3.019,1.271c1.193-1.033,2.623-1.986,3.102-2.305 c2.145-1.431,1.351-2.463-2.226-1.828C153.251,84.054,153.251,85.484,152.934,86.279z"/>
+ <path fill="#F4C000" d="M152.993,86.269c-0.31,0.775,1.861,2.25,2.948,1.241c1.164-1.008,2.56-1.939,3.026-2.25 c2.095-1.397,1.319-2.405-2.173-1.784C153.303,84.096,153.303,85.493,152.993,86.269z"/>
+ <path fill="#EFBA00" d="M153.051,86.258c-0.302,0.757,1.817,2.195,2.878,1.211c1.136-0.984,2.497-1.892,2.952-2.195 c2.044-1.363,1.287-2.347-2.118-1.741C153.354,84.139,153.354,85.501,153.051,86.258z"/>
+ <path fill="#EAB500" d="M153.11,86.248c-0.295,0.738,1.771,2.141,2.805,1.181c1.108-0.959,2.437-1.845,2.88-2.141 c1.993-1.329,1.255-2.289-2.066-1.698C153.405,84.181,153.405,85.51,153.11,86.248z"/>
+ <path fill="#E5AF00" d="M153.169,86.238c-0.287,0.719,1.727,2.086,2.733,1.151c1.08-0.935,2.374-1.798,2.807-2.086 c1.942-1.296,1.224-2.23-2.015-1.655S153.456,85.518,153.169,86.238z"/>
+ <path fill="#E0A900" d="M153.228,86.228c-0.28,0.7,1.681,2.032,2.661,1.121c1.052-0.91,2.312-1.751,2.732-2.031 c1.893-1.262,1.191-2.172-1.961-1.611C153.508,84.266,153.508,85.527,153.228,86.228z"/>
+ <path fill="#DBA300" d="M153.286,86.217c-0.271,0.681,1.636,1.977,2.591,1.09c1.023-0.886,2.25-1.704,2.659-1.977 c1.84-1.228,1.159-2.114-1.909-1.568C153.559,84.309,153.559,85.535,153.286,86.217z"/>
+ <path fill="#D69E00" d="M153.345,86.207c-0.265,0.662,1.591,1.922,2.519,1.061c0.995-0.862,2.188-1.657,2.586-1.922 c1.789-1.194,1.127-2.055-1.855-1.525C153.61,84.351,153.61,85.544,153.345,86.207z"/>
+ <path fill="#D19800" d="M153.404,86.197c-0.257,0.643,1.546,1.868,2.447,1.03c0.967-0.837,2.126-1.61,2.512-1.868 c1.739-1.16,1.095-1.997-1.803-1.481C153.661,84.394,153.661,85.552,153.404,86.197z"/>
+ <path fill="#CC9200" d="M153.463,86.187c-0.25,0.625,1.5,1.813,2.375,1c0.939-0.813,2.064-1.563,2.439-1.813 c1.688-1.126,1.063-1.938-1.75-1.438C153.713,84.436,153.713,85.561,153.463,86.187z"/>
+ <path fill="#C68C00" d="M153.521,86.176c-0.242,0.605,1.456,1.758,2.304,0.97c0.911-0.788,2.002-1.516,2.366-1.758 c1.637-1.092,1.031-1.88-1.698-1.395C153.764,84.479,153.764,85.569,153.521,86.176z"/>
+ <path fill="#C18700" d="M153.58,86.166c-0.233,0.587,1.41,1.704,2.233,0.939c0.882-0.763,1.938-1.469,2.292-1.704 c1.586-1.058,0.999-1.822-1.646-1.352C153.815,84.521,153.815,85.578,153.58,86.166z"/>
+ <path fill="#BC8100" d="M153.639,86.156c-0.228,0.568,1.364,1.649,2.16,0.91c0.854-0.739,1.878-1.422,2.219-1.649 c1.536-1.024,0.967-1.764-1.593-1.308S153.866,85.586,153.639,86.156z"/>
+ <path fill="#B77B00" d="M153.698,86.146c-0.22,0.549,1.32,1.594,2.089,0.879c0.825-0.715,1.815-1.375,2.146-1.595 c1.484-0.99,0.935-1.705-1.54-1.265S153.918,85.595,153.698,86.146z"/>
+ <path fill="#B27500" d="M153.756,86.135c-0.211,0.53,1.275,1.54,2.019,0.85c0.797-0.69,1.753-1.328,2.072-1.54 c1.434-0.957,0.902-1.646-1.487-1.221S153.969,85.604,153.756,86.135z"/>
+ <path fill="#AD7000" d="M153.815,86.125c-0.204,0.512,1.229,1.486,1.946,0.82c0.769-0.666,1.69-1.281,1.997-1.486 c1.385-0.922,0.871-1.588-1.434-1.178S154.02,85.612,153.815,86.125z"/>
+ <path fill="#A86A00" d="M153.874,86.114c-0.196,0.493,1.185,1.431,1.875,0.79c0.74-0.642,1.628-1.234,1.924-1.431 c1.332-0.889,0.84-1.53-1.381-1.135S154.071,85.621,153.874,86.114z"/>
+ <path fill="#A36400" d="M153.933,86.104c-0.189,0.474,1.139,1.376,1.803,0.759c0.712-0.617,1.566-1.187,1.851-1.376 c1.281-0.855,0.808-1.472-1.329-1.092C154.123,84.775,154.123,85.629,153.933,86.104z"/>
+ <path fill="#9E5E00" d="M153.991,86.094c-0.181,0.455,1.095,1.322,1.732,0.729c0.684-0.592,1.504-1.14,1.776-1.321 c1.231-0.821,0.775-1.414-1.274-1.048C154.174,84.818,154.174,85.638,153.991,86.094z"/>
+ </g>
+ <path fill="#995900" d="M154.05,86.083c-0.174,0.436,1.05,1.267,1.66,0.699c0.656-0.568,1.442-1.093,1.704-1.267 c1.181-0.787,0.743-1.355-1.223-1.005C154.225,84.86,154.225,85.646,154.05,86.083z"/>
+ </g>
+ <g>
+ <path fill="#FFCC00" d="M156.951,107.887c-0.229,2.858,6.343-4.286,6.743-4.915c0.856-1.543,3.715-5.886,4.172-7.715 c0.857-3.2,2.401-5.543,1.429-8.915c-0.343-1.086-2.742-1.372-3.829-0.687c-3.086,1.829-2.629,4.058-2.972,6.115 C161.351,97.601,157.351,103.487,156.951,107.887z"/>
+ <g>
+ <path fill="#FFCC02" d="M157.22,107.441c-0.22,2.787,6.178-4.188,6.566-4.802c0.833-1.506,3.614-5.745,4.056-7.529 c0.831-3.122,2.333-5.408,1.382-8.695c-0.337-1.058-2.678-1.333-3.735-0.663c-3.006,1.788-2.557,3.96-2.889,5.967 C161.495,97.404,157.603,103.15,157.22,107.441z"/>
+ <path fill="#FFCC05" d="M157.488,106.995c-0.209,2.715,6.014-4.091,6.392-4.69c0.811-1.469,3.513-5.603,3.941-7.342 c0.804-3.043,2.264-5.273,1.331-8.474c-0.329-1.031-2.61-1.295-3.64-0.64c-2.927,1.747-2.486,3.863-2.806,5.818 C161.638,97.208,157.855,102.813,157.488,106.995z"/>
+ <path fill="#FFCC07" d="M157.757,106.548c-0.198,2.645,5.85-3.993,6.217-4.577c0.785-1.431,3.409-5.461,3.824-7.156 c0.779-2.964,2.196-5.138,1.282-8.253c-0.322-1.003-2.543-1.257-3.545-0.618c-2.847,1.706-2.414,3.766-2.722,5.67 C161.782,97.012,158.107,102.476,157.757,106.548z"/>
+ <path fill="#FFCD0A" d="M158.026,106.102c-0.189,2.573,5.684-3.896,6.04-4.465c0.762-1.394,3.309-5.32,3.709-6.969 c0.753-2.886,2.129-5.004,1.233-8.033c-0.315-0.976-2.478-1.219-3.45-0.595c-2.768,1.665-2.343,3.668-2.64,5.522 C161.925,96.816,158.36,102.139,158.026,106.102z"/>
+ <path fill="#FFCD0C" d="M158.294,105.655c-0.179,2.503,5.52-3.798,5.865-4.351c0.738-1.357,3.207-5.179,3.594-6.783 c0.727-2.807,2.061-4.869,1.185-7.813c-0.309-0.948-2.411-1.18-3.356-0.572c-2.687,1.623-2.271,3.571-2.556,5.374 C162.068,96.62,158.612,101.801,158.294,105.655z"/>
+ <path fill="#FFCD0F" d="M158.563,105.209c-0.169,2.431,5.354-3.701,5.688-4.239c0.715-1.319,3.106-5.037,3.479-6.596 c0.7-2.728,1.992-4.734,1.135-7.592c-0.301-0.92-2.344-1.142-3.261-0.549c-2.608,1.583-2.199,3.474-2.473,5.226 C162.212,96.424,158.864,101.464,158.563,105.209z"/>
+ <path fill="#FFCD11" d="M158.831,104.762c-0.159,2.361,5.19-3.602,5.515-4.126c0.69-1.282,3.004-4.896,3.361-6.409 c0.674-2.649,1.924-4.599,1.087-7.372c-0.295-0.893-2.277-1.104-3.167-0.526c-2.527,1.541-2.128,3.376-2.389,5.077 C162.355,96.228,159.116,101.127,158.831,104.762z"/>
+ <path fill="#FFCE14" d="M159.1,104.316c-0.149,2.289,5.024-3.505,5.338-4.014c0.667-1.244,2.901-4.754,3.247-6.223 c0.646-2.571,1.854-4.464,1.037-7.151c-0.287-0.865-2.211-1.065-3.072-0.504c-2.448,1.5-2.056,3.279-2.306,4.929 C162.499,96.032,159.368,100.79,159.1,104.316z"/>
+ <path fill="#FFCE16" d="M159.369,103.869c-0.139,2.219,4.86-3.407,5.162-3.9c0.643-1.208,2.801-4.613,3.131-6.037 c0.622-2.492,1.787-4.329,0.988-6.93c-0.28-0.838-2.146-1.027-2.978-0.481c-2.368,1.459-1.983,3.182-2.223,4.781 C162.642,95.835,159.62,100.453,159.369,103.869z"/>
+ <path fill="#FFCE19" d="M159.637,103.423c-0.13,2.147,4.695-3.31,4.986-3.788c0.62-1.17,2.699-4.471,3.016-5.85 c0.596-2.414,1.719-4.195,0.939-6.71c-0.273-0.81-2.079-0.989-2.883-0.458c-2.289,1.418-1.913,3.084-2.139,4.632 C162.786,95.64,159.872,100.115,159.637,103.423z"/>
+ <path fill="#FFCE1C" d="M159.906,102.977c-0.119,2.076,4.531-3.213,4.811-3.676c0.597-1.133,2.599-4.33,2.899-5.664 c0.57-2.335,1.651-4.06,0.891-6.49c-0.267-0.782-2.012-0.95-2.787-0.435c-2.21,1.377-1.842,2.987-2.057,4.484 C162.929,95.443,160.124,99.778,159.906,102.977z"/>
+ <path fill="#FFCF1E" d="M160.174,102.53c-0.108,2.005,4.366-3.115,4.637-3.563c0.571-1.096,2.496-4.189,2.784-5.478 c0.543-2.256,1.581-3.925,0.841-6.269c-0.26-0.754-1.945-0.912-2.693-0.412c-2.129,1.336-1.77,2.889-1.973,4.336 C163.073,95.247,160.376,99.441,160.174,102.53z"/>
+ <path fill="#FFCF21" d="M160.443,102.084c-0.099,1.934,4.201-3.018,4.46-3.45c0.548-1.059,2.394-4.047,2.668-5.291 c0.517-2.178,1.514-3.79,0.793-6.049c-0.253-0.727-1.879-0.874-2.599-0.39c-2.051,1.295-1.698,2.792-1.891,4.188 C163.216,95.051,160.628,99.104,160.443,102.084z"/>
+ <path fill="#FFCF23" d="M160.712,101.637c-0.089,1.863,4.036-2.919,4.283-3.337c0.526-1.021,2.294-3.905,2.553-5.104 c0.491-2.099,1.447-3.655,0.744-5.828c-0.246-0.699-1.813-0.835-2.505-0.367c-1.969,1.253-1.625,2.694-1.805,4.04 C163.359,94.855,160.881,98.767,160.712,101.637z"/>
+ <path fill="#FFCF26" d="M160.98,101.191c-0.079,1.792,3.872-2.822,4.107-3.225c0.502-0.984,2.192-3.764,2.438-4.918 c0.464-2.02,1.378-3.52,0.694-5.607c-0.238-0.672-1.746-0.797-2.41-0.344c-1.89,1.212-1.555,2.597-1.723,3.891 C163.503,94.659,161.133,98.43,160.98,101.191z"/>
+ <path fill="#FFD028" d="M161.249,100.744c-0.068,1.721,3.707-2.724,3.933-3.112c0.478-0.947,2.091-3.623,2.321-4.731 c0.439-1.942,1.311-3.386,0.646-5.387c-0.232-0.645-1.68-0.758-2.316-0.321c-1.81,1.171-1.481,2.5-1.639,3.743 C163.646,94.463,161.385,98.092,161.249,100.744z"/>
+ <path fill="#FFD02B" d="M161.517,100.298c-0.06,1.65,3.543-2.627,3.757-2.999c0.454-0.91,1.989-3.481,2.206-4.545 c0.413-1.863,1.242-3.25,0.597-5.167c-0.225-0.617-1.613-0.72-2.221-0.298c-1.73,1.13-1.411,2.402-1.557,3.595 C163.79,94.267,161.637,97.755,161.517,100.298z"/>
+ <path fill="#FFD02D" d="M161.786,99.852c-0.049,1.579,3.377-2.529,3.581-2.887c0.431-0.872,1.887-3.34,2.091-4.359 c0.387-1.784,1.173-3.116,0.547-4.946c-0.217-0.589-1.546-0.682-2.126-0.275c-1.649,1.089-1.339,2.305-1.472,3.446 C163.933,94.071,161.889,97.418,161.786,99.852z"/>
+ <path fill="#FFD030" d="M162.055,99.405c-0.039,1.508,3.212-2.432,3.404-2.773c0.407-0.835,1.786-3.199,1.976-4.172 c0.359-1.706,1.104-2.981,0.499-4.726c-0.211-0.562-1.481-0.644-2.032-0.253c-1.571,1.048-1.268,2.208-1.389,3.298 C164.077,93.875,162.141,97.081,162.055,99.405z"/>
+ </g>
+ <path fill="#FFD133" d="M162.323,98.958c-0.029,1.437,3.048-2.334,3.23-2.661c0.383-0.798,1.684-3.057,1.858-3.986 c0.334-1.627,1.037-2.846,0.45-4.505c-0.204-0.534-1.414-0.605-1.938-0.23c-1.49,1.007-1.195,2.11-1.306,3.15 C164.22,93.679,162.393,96.744,162.323,98.958z"/>
+ </g>
+ <g>
+ <path fill="#FFCC00" d="M179.646,95.994c-3.168,3.456-5.4,6.767-7.2,9c-1.872,2.304-6.48,5.04-4.176,7.704 c1.943,2.376,9.936-1.944,16.128-6.552c6.12-4.608,15.696-8.711,11.016-13.967c-2.448-2.664-8.208-2.088-10.439-0.648 C183.246,92.609,182.238,93.186,179.646,95.994z"/>
+ <g>
+ <path fill="#FFCC02" d="M179.782,96.147c-3.118,3.378-5.313,6.628-7.086,8.809c-1.841,2.249-6.375,4.945-4.13,7.534 c1.893,2.31,9.724-1.943,15.795-6.469c6.001-4.525,15.38-8.574,10.82-13.682c-2.387-2.588-8.022-1.998-10.209-0.584 C183.28,92.817,182.307,93.425,179.782,96.147z"/>
+ <path fill="#FFCC05" d="M179.919,96.3c-3.068,3.3-5.227,6.488-6.973,8.619c-1.81,2.193-6.271,4.85-4.085,7.364 c1.843,2.243,9.513-1.943,15.463-6.386c5.882-4.442,15.064-8.437,10.623-13.396c-2.323-2.513-7.835-1.907-9.978-0.52 C183.314,93.025,182.376,93.665,179.919,96.3z"/>
+ <path fill="#FFCC07" d="M180.055,96.454c-3.02,3.222-5.14,6.347-6.859,8.428c-1.78,2.138-6.166,4.754-4.04,7.194 c1.793,2.177,9.302-1.942,15.131-6.303c5.762-4.359,14.748-8.299,10.427-13.11c-2.261-2.437-7.648-1.817-9.747-0.456 C183.348,93.232,182.445,93.905,180.055,96.454z"/>
+ <path fill="#FFCD0A" d="M180.191,96.607c-2.97,3.143-5.052,6.207-6.745,8.237c-1.749,2.082-6.063,4.659-3.994,7.023 c1.743,2.111,9.09-1.941,14.798-6.219c5.644-4.276,14.433-8.162,10.231-12.824c-2.199-2.361-7.463-1.727-9.518-0.392 C183.382,93.44,182.513,94.145,180.191,96.607z"/>
+ <path fill="#FFCD0C" d="M180.327,96.761c-2.92,3.065-4.965,6.066-6.631,8.047c-1.718,2.027-5.957,4.564-3.949,6.853 c1.693,2.044,8.878-1.94,14.466-6.136c5.524-4.194,14.116-8.024,10.034-12.538c-2.137-2.286-7.275-1.636-9.285-0.328 C183.416,93.647,182.582,94.385,180.327,96.761z"/>
+ <path fill="#FFCD0F" d="M180.464,96.914c-2.871,2.987-4.879,5.926-6.518,7.857c-1.688,1.971-5.854,4.468-3.903,6.683 c1.643,1.978,8.666-1.94,14.133-6.053c5.404-4.111,13.801-7.887,9.839-12.251c-2.075-2.21-7.091-1.546-9.056-0.264 C183.45,93.855,182.651,94.624,180.464,96.914z"/>
+ <path fill="#FFCD11" d="M180.6,97.067c-2.821,2.909-4.792,5.786-6.404,7.667c-1.657,1.916-5.748,4.373-3.858,6.512 c1.593,1.912,8.455-1.938,13.802-5.969c5.284-4.028,13.484-7.75,9.641-11.966c-2.012-2.134-6.902-1.456-8.823-0.199 C183.484,94.063,182.72,94.864,180.6,97.067z"/>
+ <path fill="#FFCE14" d="M180.736,97.221c-2.771,2.83-4.705,5.645-6.29,7.476c-1.626,1.86-5.644,4.278-3.813,6.342 c1.542,1.845,8.244-1.938,13.47-5.886c5.166-3.945,13.169-7.612,9.444-11.68c-1.949-2.059-6.716-1.365-8.592-0.135 C183.518,94.271,182.789,95.104,180.736,97.221z"/>
+ <path fill="#FFCE16" d="M180.872,97.375c-2.722,2.752-4.617,5.504-6.176,7.286c-1.595,1.805-5.539,4.182-3.767,6.172 c1.49,1.779,8.031-1.937,13.136-5.803c5.046-3.862,12.853-7.475,9.249-11.394c-1.889-1.983-6.53-1.274-8.362-0.071 C183.552,94.479,182.857,95.344,180.872,97.375z"/>
+ <path fill="#FFCE19" d="M181.009,97.528c-2.673,2.674-4.53,5.364-6.063,7.095c-1.564,1.749-5.435,4.087-3.722,6.001 c1.44,1.713,7.82-1.936,12.804-5.719c4.927-3.78,12.537-7.338,9.052-11.108c-1.825-1.907-6.343-1.185-8.13-0.007 C183.586,94.686,182.926,95.583,181.009,97.528z"/>
+ <path fill="#FFCE1C" d="M181.145,97.682c-2.623,2.595-4.444,5.225-5.949,6.904c-1.534,1.693-5.33,3.992-3.676,5.831 c1.39,1.646,7.608-1.935,12.471-5.636c4.808-3.697,12.221-7.2,8.856-10.822c-1.764-1.832-6.157-1.094-7.9,0.057 C183.62,94.894,182.995,95.823,181.145,97.682z"/>
+ <path fill="#FFCF1E" d="M181.281,97.835c-2.573,2.517-4.357,5.084-5.835,6.714c-1.503,1.638-5.226,3.896-3.631,5.661 c1.34,1.58,7.396-1.935,12.139-5.553c4.689-3.614,11.905-7.063,8.659-10.536c-1.701-1.756-5.97-1.004-7.668,0.121 C183.654,95.102,183.064,96.063,181.281,97.835z"/>
+ <path fill="#FFCF21" d="M181.417,97.988c-2.522,2.439-4.27,4.944-5.721,6.524c-1.472,1.582-5.121,3.801-3.586,5.491 c1.29,1.513,7.186-1.934,11.807-5.47c4.569-3.531,11.589-6.926,8.463-10.25c-1.639-1.68-5.783-0.914-7.438,0.186 C183.688,95.309,183.133,96.303,181.417,97.988z"/>
+ <path fill="#FFCF23" d="M181.554,98.142c-2.476,2.361-4.185,4.803-5.608,6.333c-1.441,1.527-5.017,3.706-3.54,5.32 c1.24,1.447,6.974-1.933,11.474-5.386c4.45-3.448,11.273-6.788,8.268-9.964c-1.577-1.605-5.599-0.823-7.207,0.25 C183.721,95.517,183.201,96.543,181.554,98.142z"/>
+ <path fill="#FFCF26" d="M181.69,98.295c-2.425,2.283-4.098,4.663-5.494,6.143c-1.411,1.471-4.912,3.61-3.495,5.15 c1.19,1.381,6.763-1.932,11.142-5.303c4.331-3.366,10.957-6.65,8.07-9.679c-1.514-1.529-5.411-0.732-6.976,0.313 C183.755,95.724,183.27,96.782,181.69,98.295z"/>
+ <path fill="#FFD028" d="M181.826,98.449c-2.375,2.204-4.009,4.522-5.38,5.952c-1.38,1.416-4.808,3.515-3.449,4.98 c1.14,1.314,6.551-1.932,10.81-5.22c4.211-3.283,10.641-6.513,7.874-9.393c-1.452-1.454-5.226-0.642-6.745,0.378 C183.789,95.932,183.339,97.022,181.826,98.449z"/>
+ <path fill="#FFD02B" d="M181.962,98.602c-2.324,2.127-3.922,4.382-5.266,5.762c-1.349,1.36-4.703,3.42-3.404,4.809 c1.089,1.248,6.34-1.93,10.478-5.136c4.092-3.2,10.325-6.376,7.677-9.106c-1.389-1.378-5.038-0.552-6.513,0.441 C183.823,96.14,183.408,97.262,181.962,98.602z"/>
+ <path fill="#FFD02D" d="M182.099,98.756c-2.276,2.048-3.836,4.241-5.153,5.571c-1.318,1.305-4.599,3.324-3.359,4.639 c1.039,1.182,6.128-1.93,10.146-5.053c3.973-3.117,10.009-6.238,7.48-8.82c-1.328-1.303-4.852-0.462-6.282,0.506 C183.857,96.347,183.477,97.502,182.099,98.756z"/>
+ <path fill="#FFD030" d="M182.235,98.909c-2.228,1.97-3.749,4.101-5.039,5.381c-1.288,1.249-4.494,3.229-3.313,4.469 c0.988,1.115,5.916-1.929,9.813-4.97c3.853-3.034,9.693-6.101,7.285-8.535c-1.267-1.227-4.666-0.371-6.052,0.57 C183.891,96.555,183.545,97.742,182.235,98.909z"/>
+ </g>
+ <path fill="#FFD133" d="M182.371,99.063c-2.177,1.892-3.662,3.96-4.925,5.19c-1.257,1.193-4.39,3.133-3.268,4.298 c0.938,1.049,5.704-1.928,9.479-4.886c3.734-2.952,9.377-5.963,7.088-8.249c-1.203-1.151-4.479-0.281-5.821,0.634 C183.925,96.763,183.614,97.981,182.371,99.063z"/>
+ </g>
+ <g>
+ <path fill="#FFFFFF" d="M186.414,168.569c0.864-2.808,28.872-9.432,33.48-7.272c4.536,2.16,26.279,33.768,22.392,35.496 c-3.888,1.657-12.24-10.512-24.408-16.128S185.55,171.449,186.414,168.569z"/>
+ <g>
+ <path fill="#F9F9F9" d="M187.239,168.626c0.848-2.761,28.145-9.076,32.69-6.997c4.476,2.079,25.768,32.897,21.943,34.591 c-3.824,1.625-11.965-10.346-23.94-15.874C205.956,174.819,186.391,171.456,187.239,168.626z"/>
+ <path fill="#F4F4F4" d="M188.063,168.683c0.832-2.714,27.418-8.72,31.899-6.722c4.417,1.998,25.259,32.026,21.497,33.685 c-3.76,1.595-11.689-10.18-23.474-15.619C206.203,174.589,187.231,171.462,188.063,168.683z"/>
+ <path fill="#EFEFEF" d="M188.888,168.74c0.814-2.668,26.69-8.364,31.109-6.447c4.357,1.917,24.746,31.155,21.049,32.779 c-3.695,1.563-11.416-10.014-23.007-15.364C206.449,174.359,188.072,171.469,188.888,168.74z"/>
+ <path fill="#EAEAEA" d="M189.712,168.797c0.801-2.621,25.964-8.009,30.32-6.173c4.299,1.837,24.235,30.285,20.603,31.874 c-3.633,1.532-11.142-9.847-22.54-15.109C206.695,174.128,188.913,171.475,189.712,168.797z"/>
+ <path fill="#E5E5E5" d="M190.537,168.853c0.783-2.573,25.236-7.652,29.53-5.897c4.239,1.756,23.723,29.414,20.155,30.968 c-3.569,1.501-10.867-9.681-22.074-14.854C206.942,173.898,189.753,171.481,190.537,168.853z"/>
+ <path fill="#E0E0E0" d="M191.361,168.91c0.768-2.527,24.51-7.296,28.74-5.622c4.18,1.675,23.212,28.543,19.708,30.063 c-3.505,1.469-10.593-9.516-21.607-14.6C207.188,173.668,190.594,171.488,191.361,168.91z"/>
+ <path fill="#DBDBDB" d="M192.186,168.967c0.751-2.48,23.781-6.941,27.95-5.347c4.119,1.593,22.7,27.671,19.26,29.157 c-3.441,1.438-10.318-9.349-21.141-14.345C207.434,173.438,191.434,171.494,192.186,168.967z"/>
+ <path fill="#D6D6D6" d="M193.01,169.024c0.735-2.433,23.057-6.585,27.16-5.073c4.062,1.513,22.19,26.801,18.813,28.252 c-3.377,1.407-10.043-9.183-20.673-14.09C207.681,173.207,192.275,171.501,193.01,169.024z"/>
+ <path fill="#D1D1D1" d="M193.835,169.081c0.72-2.387,22.328-6.229,26.37-4.798c4.001,1.432,21.678,25.93,18.365,27.346 c-3.313,1.376-9.768-9.017-20.206-13.835C207.927,172.977,193.116,171.507,193.835,169.081z"/>
+ <path fill="#CCCCCC" d="M194.659,169.137c0.703-2.339,21.603-5.873,25.58-4.521c3.942,1.351,21.167,25.059,17.918,26.44 c-3.249,1.345-9.493-8.851-19.739-13.58C208.173,172.747,193.956,171.513,194.659,169.137z"/>
+ <path fill="#C6C6C6" d="M195.484,169.194c0.687-2.292,20.874-5.517,24.79-4.247c3.882,1.27,20.655,24.188,17.47,25.535 c-3.185,1.314-9.219-8.685-19.271-13.326C208.419,172.517,194.797,171.52,195.484,169.194z"/>
+ <path fill="#C1C1C1" d="M196.308,169.251c0.671-2.246,20.147-5.161,24-3.973c3.822,1.19,20.145,23.318,17.022,24.63 c-3.121,1.283-8.943-8.519-18.805-13.071C208.666,172.286,195.637,171.526,196.308,169.251z"/>
+ <path fill="#BCBCBC" d="M197.133,169.308c0.654-2.199,19.421-4.805,23.21-3.698c3.764,1.109,19.634,22.447,16.575,23.724 c-3.057,1.252-8.669-8.353-18.338-12.816C208.912,172.056,196.478,171.533,197.133,169.308z"/>
+ <path fill="#B7B7B7" d="M197.957,169.365c0.64-2.152,18.693-4.45,22.42-3.423c3.705,1.027,19.122,21.575,16.129,22.818 c-2.993,1.221-8.395-8.186-17.872-12.561C209.158,171.826,197.319,171.539,197.957,169.365z"/>
+ <path fill="#B2B2B2" d="M198.782,169.421c0.622-2.105,17.966-4.093,21.63-3.147c3.646,0.946,18.61,20.704,15.681,21.912 c-2.93,1.19-8.12-8.02-17.404-12.306C209.405,171.596,198.159,171.545,198.782,169.421z"/>
+ <path fill="#ADADAD" d="M199.606,169.478c0.606-2.058,17.239-3.737,20.84-2.873c3.586,0.866,18.099,19.834,15.234,21.008 c-2.866,1.158-7.847-7.855-16.938-12.052C209.651,171.365,199,171.552,199.606,169.478z"/>
+ <path fill="#A8A8A8" d="M200.431,169.535c0.59-2.011,16.512-3.382,20.05-2.598c3.525,0.785,17.588,18.963,14.786,20.102 c-2.803,1.127-7.571-7.688-16.472-11.797C209.897,171.135,199.84,171.558,200.431,169.535z"/>
+ <path fill="#A3A3A3" d="M201.255,169.592c0.574-1.965,15.785-3.026,19.261-2.323c3.467,0.704,17.076,18.092,14.339,19.196 c-2.738,1.096-7.296-7.522-16.004-11.542C210.144,170.905,200.681,171.565,201.255,169.592z"/>
+ <path fill="#9E9E9E" d="M202.08,169.649c0.559-1.918,15.059-2.67,18.47-2.048c3.407,0.623,16.565,17.221,13.892,18.29 c-2.674,1.065-7.022-7.356-15.537-11.287C210.39,170.675,201.522,171.571,202.08,169.649z"/>
+ </g>
+ <path fill="#999999" d="M202.904,169.705c0.542-1.871,14.331-2.314,17.68-1.773c3.349,0.542,16.055,16.35,13.444,17.385 c-2.61,1.034-6.747-7.19-15.07-11.032C210.636,170.444,202.362,171.577,202.904,169.705z"/>
+ </g>
+ <g>
+ <path fill="#FFFFFF" d="M151.134,211.625c2.881,0.144,0.145,16.271,0.145,32.903s2.231,22.464,0.144,24.552 s-5.688-5.399-5.688-22.031C145.734,230.417,148.254,211.481,151.134,211.625z"/>
+ <g>
+ <path fill="#F9F9F9" d="M151.105,212.016c2.783,0.162,0.109,16.052,0.097,32.419c-0.012,16.366,2.188,22.208,0.164,24.237 c-2.02,2.029-5.561-5.383-5.546-21.752C145.832,230.553,148.322,211.855,151.105,212.016z"/>
+ <path fill="#F4F4F4" d="M151.075,212.407c2.687,0.18,0.076,15.832,0.051,31.934c-0.023,16.102,2.143,21.951,0.185,23.924 c-1.953,1.968-5.435-5.367-5.405-21.473C145.93,230.689,148.39,212.228,151.075,212.407z"/>
+ <path fill="#EFEFEF" d="M151.046,212.797c2.588,0.197,0.041,15.613,0.004,31.449c-0.036,15.836,2.098,21.694,0.204,23.609 c-1.886,1.907-5.308-5.352-5.263-21.195C146.028,230.825,148.458,212.602,151.046,212.797z"/>
+ <path fill="#EAEAEA" d="M151.017,213.189c2.49,0.214,0.007,15.392-0.043,30.962c-0.05,15.571,2.052,21.439,0.224,23.297 c-1.818,1.848-5.181-5.334-5.122-20.916C146.125,230.961,148.526,212.975,151.017,213.189z"/>
+ <path fill="#E5E5E5" d="M150.987,213.581c2.394,0.23-0.027,15.17-0.089,30.477s2.007,21.182,0.244,22.982 c-1.751,1.787-5.055-5.32-4.98-20.638C146.223,231.097,148.593,213.349,150.987,213.581z"/>
+ <path fill="#E0E0E0" d="M150.958,213.971c2.297,0.248-0.062,14.951-0.136,29.99c-0.074,15.041,1.962,20.927,0.264,22.668 c-1.683,1.728-4.928-5.301-4.839-20.356C146.321,231.233,148.661,213.722,150.958,213.971z"/>
+ <path fill="#DBDBDB" d="M150.928,214.362c2.199,0.266-0.096,14.73-0.182,29.506c-0.087,14.775,1.915,20.67,0.282,22.354 c-1.615,1.667-4.8-5.286-4.696-20.078C146.419,231.368,148.729,214.096,150.928,214.362z"/>
+ <path fill="#D6D6D6" d="M150.899,214.752c2.102,0.283-0.13,14.511-0.229,29.021c-0.099,14.511,1.87,20.413,0.303,22.04 c-1.549,1.607-4.674-5.27-4.556-19.799C146.517,231.504,148.797,214.469,150.899,214.752z"/>
+ <path fill="#D1D1D1" d="M150.87,215.144c2.005,0.301-0.165,14.29-0.274,28.535c-0.112,14.245,1.824,20.155,0.321,21.725 c-1.479,1.548-4.547-5.252-4.413-19.519C146.614,231.64,148.865,214.842,150.87,215.144z"/>
+ <path fill="#CCCCCC" d="M150.84,215.536c1.908,0.317-0.197,14.069-0.32,28.049c-0.124,13.979,1.779,19.899,0.342,21.412 c-1.413,1.486-4.42-5.238-4.272-19.242C146.712,231.776,148.933,215.215,150.84,215.536z"/>
+ <path fill="#C6C6C6" d="M150.811,215.926c1.811,0.334-0.233,13.85-0.368,27.564c-0.136,13.713,1.735,19.643,0.362,21.096 c-1.346,1.428-4.293-5.219-4.131-18.961C146.81,231.913,149.001,215.59,150.811,215.926z"/>
+ <path fill="#C1C1C1" d="M150.781,216.317c1.714,0.354-0.267,13.629-0.414,27.078s1.69,19.387,0.382,20.783 c-1.277,1.367-4.166-5.203-3.989-18.682C146.908,232.047,149.068,215.963,150.781,216.317z"/>
+ <path fill="#BCBCBC" d="M150.752,216.708c1.616,0.371-0.301,13.41-0.461,26.594c-0.161,13.184,1.646,19.13,0.402,20.469 c-1.211,1.307-4.04-5.188-3.847-18.402C147.006,232.184,149.136,216.336,150.752,216.708z"/>
+ <path fill="#B7B7B7" d="M150.723,217.099c1.519,0.387-0.336,13.188-0.509,26.106c-0.173,12.92,1.601,18.875,0.423,20.156 c-1.144,1.246-3.913-5.171-3.706-18.123C147.103,232.319,149.204,216.709,150.723,217.099z"/>
+ <path fill="#B2B2B2" d="M150.693,217.491c1.422,0.404-0.37,12.969-0.554,25.621c-0.186,12.653,1.555,18.617,0.441,19.842 c-1.076,1.187-3.786-5.156-3.563-17.846C147.201,232.456,149.272,217.084,150.693,217.491z"/>
+ <path fill="#ADADAD" d="M150.664,217.881c1.325,0.422-0.404,12.748-0.601,25.136c-0.198,12.388,1.51,18.36,0.462,19.528 c-1.008,1.125-3.66-5.139-3.423-17.566C147.299,232.59,149.34,217.458,150.664,217.881z"/>
+ <path fill="#A8A8A8" d="M150.634,218.272c1.229,0.439-0.438,12.527-0.646,24.65c-0.21,12.123,1.464,18.104,0.48,19.213 c-0.939,1.066-3.531-5.121-3.279-17.285C147.397,232.727,149.408,217.831,150.634,218.272z"/>
+ <path fill="#A3A3A3" d="M150.605,218.663c1.13,0.457-0.474,12.309-0.694,24.166c-0.222,11.857,1.419,17.848,0.501,18.899 c-0.873,1.006-3.405-5.106-3.139-17.009C147.495,232.864,149.475,218.204,150.605,218.663z"/>
+ <path fill="#9E9E9E" d="M150.576,219.054c1.033,0.474-0.507,12.088-0.741,23.68c-0.234,11.593,1.374,17.591,0.521,18.585 c-0.806,0.946-3.279-5.089-2.997-16.729C147.592,232.999,149.543,218.579,150.576,219.054z"/>
+ </g>
+ <path fill="#999999" d="M150.546,219.444c0.937,0.492-0.541,11.868-0.787,23.195c-0.246,11.326,1.329,17.335,0.541,18.271 c-0.737,0.885-3.151-5.074-2.855-16.449C147.69,233.133,149.611,218.952,150.546,219.444z"/>
+ </g>
+ <g>
+ <path fill="#FFFFFF" d="M157.434,167.161c1.735,0.192,12.437-2.218,12.822-1.254c0.386,0.772-6.651,2.893-8.966,5.303 c-0.771,0.771-2.796,2.603-4.049,2.41c-0.964-0.096-1.543-2.121-2.989-3.664c-3.471-3.47-5.688-3.181-5.013-4.531 C149.818,164.365,154.446,166.871,157.434,167.161z"/>
+ <g>
+ <path fill="#FBFBFB" d="M157.479,167.201c1.7,0.188,12.176-2.171,12.554-1.227c0.377,0.755-6.512,2.832-8.778,5.191 c-0.755,0.755-2.736,2.549-3.964,2.36c-0.942-0.094-1.51-2.077-2.926-3.587c-3.398-3.397-5.568-3.115-4.907-4.436 C150.023,164.464,154.554,166.917,157.479,167.201z"/>
+ <path fill="#F8F8F8" d="M157.525,167.241c1.663,0.184,11.914-2.124,12.283-1.201c0.369,0.739-6.372,2.771-8.589,5.08 c-0.738,0.739-2.679,2.494-3.879,2.309c-0.924-0.092-1.479-2.032-2.863-3.51c-3.325-3.324-5.449-3.048-4.803-4.341 C150.229,164.563,154.662,166.963,157.525,167.241z"/>
+ <path fill="#F5F5F5" d="M157.57,167.281c1.626,0.18,11.652-2.078,12.014-1.175c0.361,0.723-6.231,2.711-8.4,4.969 c-0.723,0.722-2.619,2.439-3.793,2.258c-0.903-0.09-1.446-1.987-2.802-3.433c-3.252-3.251-5.329-2.981-4.695-4.245 C150.434,164.662,154.77,167.009,157.57,167.281z"/>
+ <path fill="#F2F2F2" d="M157.615,167.321c1.59,0.176,11.391-2.031,11.745-1.148c0.352,0.706-6.093,2.649-8.212,4.856 c-0.707,0.707-2.562,2.385-3.709,2.208c-0.883-0.088-1.413-1.943-2.738-3.356c-3.179-3.178-5.209-2.914-4.591-4.15 C150.639,164.76,154.878,167.055,157.615,167.321z"/>
+ <path fill="#EFEFEF" d="M157.66,167.361c1.554,0.172,11.13-1.985,11.475-1.122c0.346,0.69-5.952,2.589-8.022,4.745 c-0.69,0.69-2.503,2.33-3.624,2.157c-0.863-0.086-1.381-1.898-2.675-3.279c-3.106-3.105-5.09-2.847-4.486-4.055 C150.845,164.859,154.986,167.101,157.66,167.361z"/>
+ <path fill="#EBEBEB" d="M157.705,167.401c1.518,0.168,10.868-1.938,11.206-1.096c0.336,0.674-5.813,2.528-7.835,4.634 c-0.674,0.674-2.444,2.275-3.539,2.106c-0.842-0.084-1.348-1.853-2.612-3.202c-3.032-3.032-4.97-2.78-4.38-3.959 C151.05,164.958,155.094,167.147,157.705,167.401z"/>
+ <path fill="#E8E8E8" d="M157.751,167.441c1.48,0.164,10.606-1.892,10.936-1.069c0.329,0.657-5.673,2.467-7.646,4.522 c-0.658,0.657-2.385,2.22-3.453,2.055c-0.822-0.082-1.315-1.809-2.549-3.124c-2.96-2.96-4.851-2.714-4.275-3.865 C151.255,165.056,155.202,167.193,157.751,167.441z"/>
+ <path fill="#E5E5E5" d="M157.796,167.481c1.444,0.16,10.346-1.845,10.666-1.043c0.32,0.641-5.532,2.406-7.458,4.41 c-0.641,0.642-2.325,2.166-3.367,2.005c-0.803-0.08-1.284-1.764-2.486-3.047c-2.887-2.887-4.732-2.647-4.17-3.769 C151.461,165.155,155.31,167.239,157.796,167.481z"/>
+ <path fill="#E2E2E2" d="M157.841,167.521c1.407,0.156,10.083-1.799,10.397-1.017c0.312,0.625-5.394,2.346-7.271,4.299 c-0.625,0.625-2.267,2.111-3.282,1.954c-0.782-0.078-1.251-1.719-2.423-2.97c-2.814-2.814-4.612-2.58-4.065-3.674 C151.666,165.254,155.418,167.285,157.841,167.521z"/>
+ <path fill="#DFDFDF" d="M157.886,167.56c1.37,0.152,9.821-1.751,10.127-0.99c0.304,0.609-5.254,2.285-7.081,4.188 c-0.609,0.609-2.208,2.056-3.198,1.903c-0.761-0.076-1.218-1.675-2.36-2.893c-2.741-2.741-4.492-2.513-3.959-3.579 C151.871,165.352,155.526,167.331,157.886,167.56z"/>
+ <path fill="#DBDBDB" d="M157.931,167.6c1.335,0.148,9.561-1.704,9.857-0.963c0.296,0.592-5.114,2.223-6.893,4.076 c-0.593,0.593-2.149,2.001-3.113,1.853c-0.741-0.074-1.186-1.631-2.297-2.817c-2.668-2.667-4.373-2.446-3.854-3.483 C152.076,165.451,155.634,167.377,157.931,167.6z"/>
+ <path fill="#D8D8D8" d="M157.977,167.64c1.298,0.144,9.299-1.658,9.587-0.937c0.288,0.576-4.974,2.163-6.704,3.964 c-0.576,0.577-2.091,1.947-3.027,1.803c-0.721-0.072-1.153-1.586-2.234-2.74c-2.596-2.594-4.253-2.379-3.748-3.388 C152.282,165.55,155.742,167.423,157.977,167.64z"/>
+ <path fill="#D5D5D5" d="M158.022,167.68c1.261,0.14,9.037-1.611,9.317-0.911c0.28,0.56-4.834,2.102-6.516,3.853 c-0.56,0.561-2.032,1.892-2.942,1.752c-0.7-0.07-1.12-1.541-2.172-2.663c-2.521-2.521-4.133-2.312-3.643-3.292 C152.487,165.649,155.85,167.469,158.022,167.68z"/>
+ <path fill="#D2D2D2" d="M158.067,167.72c1.225,0.136,8.775-1.564,9.049-0.884c0.271,0.543-4.695,2.041-6.327,3.741 c-0.545,0.544-1.974,1.837-2.857,1.701c-0.682-0.068-1.09-1.497-2.109-2.585c-2.449-2.449-4.014-2.246-3.538-3.198 C152.692,165.747,155.958,167.515,158.067,167.72z"/>
+ <path fill="#CFCFCF" d="M158.112,167.76c1.188,0.132,8.515-1.518,8.779-0.858c0.264,0.527-4.555,1.98-6.139,3.63 c-0.527,0.528-1.915,1.782-2.772,1.65c-0.66-0.066-1.057-1.452-2.046-2.508c-2.376-2.376-3.895-2.179-3.433-3.103 C152.898,165.846,156.066,167.561,158.112,167.76z"/>
+ <path fill="#CCCCCC" d="M158.157,167.8c1.152,0.128,8.253-1.472,8.51-0.832c0.255,0.511-4.415,1.92-5.95,3.518 c-0.512,0.512-1.855,1.728-2.688,1.6c-0.64-0.064-1.023-1.407-1.983-2.431c-2.303-2.303-3.773-2.112-3.326-3.007 C153.103,165.945,156.174,167.607,158.157,167.8z"/>
+ <path fill="#C8C8C8" d="M158.203,167.84c1.115,0.124,7.991-1.425,8.239-0.805c0.248,0.494-4.274,1.858-5.761,3.406 c-0.496,0.496-1.798,1.673-2.603,1.549c-0.62-0.063-0.992-1.363-1.921-2.354c-2.229-2.229-3.655-2.045-3.221-2.912 C153.308,166.043,156.282,167.653,158.203,167.84z"/>
+ <path fill="#C5C5C5" d="M158.248,167.88c1.079,0.12,7.73-1.379,7.97-0.779c0.239,0.478-4.135,1.798-5.572,3.295 c-0.479,0.479-1.739,1.618-2.518,1.498c-0.6-0.06-0.959-1.318-1.857-2.277c-2.157-2.157-3.535-1.978-3.116-2.816 C153.514,166.142,156.39,167.699,158.248,167.88z"/>
+ <path fill="#C2C2C2" d="M158.293,167.92c1.042,0.116,7.469-1.332,7.701-0.753c0.231,0.462-3.995,1.737-5.385,3.184 c-0.463,0.463-1.68,1.563-2.432,1.447c-0.579-0.058-0.927-1.273-1.796-2.2c-2.084-2.084-3.415-1.911-3.01-2.721 C153.719,166.241,156.498,167.745,158.293,167.92z"/>
+ </g>
+ <path fill="#BFBFBF" d="M158.338,167.959c1.007,0.112,7.207-1.285,7.432-0.726c0.223,0.446-3.855,1.676-5.196,3.072 c-0.447,0.447-1.621,1.509-2.347,1.397c-0.56-0.056-0.895-1.229-1.732-2.123c-2.011-2.011-3.296-1.844-2.905-2.626 C153.924,166.339,156.606,167.791,158.338,167.959z"/>
+ </g>
+ <g>
+ <path d="M194.253,11.922c-1.222,2.631-3.812,23.214-0.248,20.892c3.594-2.341,13.57-5.312,19.886-7.013 C220.894,23.915,196.703,6.338,194.253,11.922z"/>
+ <g>
+ <path fill="#060606" d="M194.485,12.307c-1.21,2.594-3.704,22.255-0.234,20.007c3.491-2.262,13.077-5.1,19.039-6.782 C219.88,23.627,196.854,6.923,194.485,12.307z"/>
+ <path fill="#0C0C0C" d="M194.717,12.691c-1.198,2.557-3.595,21.296-0.221,19.124c3.391-2.184,12.586-4.888,18.194-6.551 C218.867,23.34,197.006,7.507,194.717,12.691z"/>
+ <path fill="#131313" d="M194.949,13.076c-1.187,2.52-3.487,20.337-0.207,18.239c3.288-2.105,12.093-4.676,17.348-6.321 C217.853,23.053,197.157,8.091,194.949,13.076z"/>
+ <path fill="#191919" d="M195.181,13.46c-1.177,2.483-3.379,19.378-0.193,17.355c3.187-2.027,11.6-4.464,16.502-6.09 C216.839,22.766,197.308,8.675,195.181,13.46z"/>
+ <path fill="#1F1F1F" d="M195.413,13.845c-1.164,2.446-3.27,18.419-0.18,16.471c3.086-1.949,11.107-4.252,15.657-5.859 C215.825,22.479,197.46,9.259,195.413,13.845z"/>
+ <path fill="#262626" d="M195.645,14.229c-1.153,2.409-3.162,17.46-0.166,15.586c2.983-1.87,10.616-4.04,14.811-5.628 C214.811,22.192,197.611,9.843,195.645,14.229z"/>
+ <path fill="#2C2C2C" d="M195.878,14.614c-1.142,2.372-3.055,16.501-0.152,14.702c2.882-1.792,10.123-3.828,13.965-5.398 C213.798,21.905,197.762,10.428,195.878,14.614z"/>
+ <path fill="#333333" d="M196.11,14.999c-1.131,2.335-2.946,15.542-0.14,13.817c2.78-1.713,9.631-3.616,13.119-5.167 C212.784,21.618,197.914,11.012,196.11,14.999z"/>
+ <path fill="#393939" d="M196.342,15.383c-1.118,2.299-2.838,14.583-0.126,12.934c2.68-1.636,9.139-3.404,12.274-4.937 C211.77,21.331,198.065,11.596,196.342,15.383z"/>
+ <path fill="#3F3F3F" d="M196.574,15.768c-1.108,2.261-2.729,13.624-0.112,12.049c2.577-1.557,8.646-3.192,11.429-4.706 C210.756,21.043,198.216,12.18,196.574,15.768z"/>
+ <path fill="#464646" d="M196.806,16.152c-1.097,2.225-2.622,12.665-0.1,11.165c2.477-1.479,8.154-2.98,10.583-4.475 C209.742,20.756,198.367,12.764,196.806,16.152z"/>
+ <path fill="#4C4C4C" d="M197.038,16.537c-1.085,2.188-2.513,11.706-0.085,10.28c2.374-1.4,7.661-2.768,9.737-4.244 C208.729,20.469,198.519,13.348,197.038,16.537z"/>
+ <path fill="#525252" d="M197.27,16.921c-1.073,2.151-2.405,10.747-0.071,9.396c2.272-1.322,7.168-2.556,8.891-4.013 C207.715,20.182,198.67,13.933,197.27,16.921z"/>
+ <path fill="#595959" d="M197.502,17.306c-1.062,2.113-2.297,9.788-0.058,8.512c2.172-1.244,6.677-2.344,8.046-3.783 C206.701,19.895,198.821,14.517,197.502,17.306z"/>
+ <path fill="#5F5F5F" d="M197.734,17.69c-1.05,2.077-2.188,8.829-0.044,7.627c2.069-1.165,6.184-2.132,7.2-3.552 C205.687,19.608,198.973,15.101,197.734,17.69z"/>
+ <path fill="#666666" d="M197.966,18.075c-1.038,2.04-2.079,7.87-0.029,6.743c1.968-1.087,5.69-1.92,6.354-3.321 C204.673,19.321,199.124,15.685,197.966,18.075z"/>
+ <path fill="#6C6C6C" d="M198.198,18.459c-1.027,2.003-1.972,6.911-0.017,5.859c1.866-1.008,5.198-1.708,5.509-3.09 C203.66,19.034,199.275,16.269,198.198,18.459z"/>
+ <path fill="#727272" d="M198.43,18.844c-1.017,1.966-1.863,5.952-0.003,4.975c1.765-0.93,4.706-1.496,4.662-2.86 C202.646,18.747,199.427,16.853,198.43,18.844z"/>
+ <path fill="#797979" d="M198.662,19.228c-1.004,1.929-1.755,4.993,0.011,4.09c1.663-0.852,4.215-1.284,3.817-2.629 C201.632,18.459,199.578,17.438,198.662,19.228z"/>
+ </g>
+ <path fill="#7F7F7F" d="M198.894,19.612c-0.993,1.892-1.647,4.034,0.023,3.206c1.563-0.773,3.723-1.072,2.973-2.398 C200.618,18.172,199.729,18.021,198.894,19.612z"/>
+ </g>
+ <g>
+ <path d="M143.502,46.386c-0.72,2.16,8.712,5.112,10.801,6.984c2.808,2.52,3.023,7.488,6.336,5.472 c2.159-1.296,0.504-4.176-3.456-8.568C151.35,43.793,144.15,44.585,143.502,46.386z"/>
+ <g>
+ <path fill="#050505" d="M143.991,46.582c-0.716,2.073,8.275,4.9,10.336,6.741c2.745,2.457,2.961,7.249,6.146,5.313 c2.094-1.254,0.449-4.072-3.343-8.28C151.556,44.153,144.639,44.851,143.991,46.582z"/>
+ <path fill="#0A0A0A" d="M144.479,46.779c-0.71,1.987,7.839,4.688,9.873,6.498c2.682,2.394,2.897,7.009,5.956,5.154 c2.028-1.212,0.395-3.968-3.228-7.993C151.761,44.512,145.127,45.117,144.479,46.779z"/>
+ <path fill="#0F0F0F" d="M144.967,46.976c-0.704,1.9,7.403,4.476,9.41,6.254c2.62,2.33,2.835,6.77,5.766,4.995 c1.964-1.171,0.342-3.864-3.112-7.706C151.967,44.872,145.616,45.382,144.967,46.976z"/>
+ <path fill="#141414" d="M145.456,47.172c-0.701,1.813,6.966,4.263,8.946,6.011c2.557,2.266,2.772,6.53,5.575,4.835 c1.897-1.129,0.287-3.76-2.998-7.418C152.172,45.231,146.105,45.648,145.456,47.172z"/>
+ <path fill="#191919" d="M145.944,47.369c-0.696,1.726,6.53,4.051,8.483,5.768c2.493,2.203,2.71,6.291,5.385,4.676 c1.833-1.087,0.231-3.656-2.884-7.13C152.377,45.59,146.593,45.914,145.944,47.369z"/>
+ <path fill="#1E1E1E" d="M146.433,47.565c-0.692,1.64,6.093,3.839,8.019,5.525c2.431,2.14,2.647,6.052,5.194,4.517 c1.768-1.046,0.179-3.552-2.77-6.843C152.583,45.95,147.082,46.179,146.433,47.565z"/>
+ <path fill="#232323" d="M146.921,47.762c-0.686,1.553,5.657,3.627,7.558,5.282c2.367,2.076,2.583,5.813,5.003,4.357 c1.702-1.003,0.124-3.448-2.654-6.555C152.788,46.309,147.571,46.445,146.921,47.762z"/>
+ <path fill="#282828" d="M147.409,47.959c-0.681,1.466,5.221,3.415,7.094,5.039c2.305,2.013,2.521,5.573,4.813,4.198 c1.637-0.962,0.07-3.344-2.54-6.268C152.994,46.668,148.059,46.71,147.409,47.959z"/>
+ <path fill="#2D2D2D" d="M147.898,48.156c-0.677,1.379,4.784,3.203,6.63,4.795c2.242,1.949,2.457,5.333,4.622,4.039 c1.572-0.92,0.016-3.24-2.425-5.98C153.199,47.027,148.548,46.976,147.898,48.156z"/>
+ <path fill="#333333" d="M148.386,48.353c-0.673,1.292,4.348,2.99,6.167,4.552c2.179,1.886,2.394,5.095,4.432,3.88 c1.506-0.878-0.038-3.136-2.312-5.693C153.405,47.387,149.037,47.242,148.386,48.353z"/>
+ <path fill="#383838" d="M148.875,48.549c-0.668,1.206,3.911,2.778,5.703,4.309c2.116,1.823,2.331,4.855,4.242,3.721 c1.439-0.836-0.093-3.032-2.197-5.405C153.61,47.746,149.525,47.507,148.875,48.549z"/>
+ <path fill="#3D3D3D" d="M149.363,48.746c-0.662,1.119,3.475,2.566,5.24,4.065c2.053,1.759,2.268,4.616,4.052,3.562 c1.375-0.795-0.147-2.928-2.082-5.118C153.816,48.105,150.014,47.772,149.363,48.746z"/>
+ <path fill="#424242" d="M149.851,48.942c-0.657,1.032,3.039,2.354,4.776,3.823c1.99,1.696,2.205,4.376,3.861,3.402 c1.31-0.753-0.201-2.824-1.967-4.831C154.021,48.465,150.503,48.038,149.851,48.942z"/>
+ <path fill="#474747" d="M150.34,49.139c-0.652,0.946,2.603,2.142,4.313,3.58c1.927,1.632,2.143,4.137,3.671,3.243 c1.244-0.712-0.256-2.72-1.853-4.543C154.226,48.824,150.991,48.304,150.34,49.139z"/>
+ <path fill="#4C4C4C" d="M150.828,49.336c-0.647,0.859,2.166,1.93,3.851,3.336c1.863,1.569,2.079,3.898,3.48,3.084 c1.179-0.67-0.31-2.616-1.739-4.255C154.432,49.184,151.48,48.569,150.828,49.336z"/>
+ <path fill="#515151" d="M151.317,49.533c-0.645,0.772,1.729,1.718,3.386,3.093c1.802,1.505,2.018,3.658,3.29,2.925 c1.114-0.628-0.364-2.512-1.624-3.968C154.637,49.543,151.969,48.835,151.317,49.533z"/>
+ <path fill="#565656" d="M151.805,49.729c-0.639,0.685,1.293,1.505,2.923,2.85c1.738,1.442,1.954,3.419,3.1,2.766 c1.048-0.586-0.418-2.408-1.509-3.681C154.843,49.902,152.457,49.101,151.805,49.729z"/>
+ <path fill="#5B5B5B" d="M152.293,49.926c-0.633,0.598,0.857,1.293,2.46,2.606c1.677,1.379,1.892,3.18,2.91,2.606 c0.983-0.544-0.473-2.304-1.395-3.393C155.048,50.262,152.946,49.366,152.293,49.926z"/>
+ <path fill="#606060" d="M152.782,50.123c-0.629,0.512,0.42,1.081,1.996,2.363c1.613,1.315,1.828,2.94,2.719,2.447 c0.918-0.502-0.525-2.2-1.28-3.105C155.254,50.621,153.435,49.632,152.782,50.123z"/>
+ </g>
+ <path fill="#666666" d="M153.27,50.319c-0.624,0.425-0.017,0.869,1.533,2.12c1.55,1.252,1.765,2.701,2.528,2.288 c0.853-0.461-0.581-2.096-1.166-2.818C155.459,50.98,153.923,49.897,153.27,50.319z"/>
+ </g>
+ <g>
+ <path d="M193.47,45.594c-0.072,1.08,2.951,1.728,4.896,2.448c1.944,0.648,5.76,3.24,7.56,5.256 c1.801,1.944,5.688,7.704,6.553,6.192c0.863-1.368-2.017-5.328-2.809-6.984c-0.792-1.656-3.239-5.256-7.128-6.48 C199.158,45.018,193.542,44.729,193.47,45.594z"/>
+ <g>
+ <path fill="#060606" d="M193.779,45.67c-0.071,1.05,2.869,1.685,4.758,2.387c1.891,0.633,5.598,3.161,7.345,5.122 c1.747,1.893,5.535,7.493,6.376,6.027c0.84-1.328-1.936-5.173-2.738-6.795c-0.8-1.622-3.175-5.09-6.952-6.301 C199.286,45.115,193.85,44.83,193.779,45.67z"/>
+ <path fill="#0C0C0C" d="M194.088,45.747c-0.07,1.021,2.785,1.641,4.62,2.327c1.836,0.618,5.436,3.081,7.131,4.988 c1.692,1.842,5.382,7.282,6.198,5.862c0.814-1.288-1.855-5.019-2.67-6.607c-0.808-1.587-3.11-4.925-6.776-6.122 C199.413,45.212,194.158,44.931,194.088,45.747z"/>
+ <path fill="#131313" d="M194.397,45.824c-0.071,0.991,2.702,1.598,4.481,2.267c1.782,0.603,5.272,3.001,6.916,4.854 c1.64,1.791,5.229,7.071,6.022,5.697c0.788-1.248-1.776-4.865-2.603-6.418c-0.815-1.554-3.044-4.759-6.599-5.942 C199.541,45.309,194.466,45.031,194.397,45.824z"/>
+ <path fill="#191919" d="M194.706,45.9c-0.069,0.961,2.618,1.555,4.345,2.206c1.728,0.588,5.109,2.922,6.7,4.721 c1.586,1.74,5.075,6.86,5.846,5.531c0.764-1.207-1.696-4.711-2.532-6.23c-0.824-1.519-2.979-4.593-6.424-5.763 C199.669,45.406,194.775,45.131,194.706,45.9z"/>
+ <path fill="#1F1F1F" d="M195.015,45.977c-0.07,0.931,2.534,1.511,4.207,2.146c1.672,0.573,4.945,2.843,6.485,4.586 c1.531,1.689,4.921,6.649,5.668,5.367c0.738-1.167-1.616-4.557-2.464-6.042c-0.832-1.485-2.914-4.428-6.247-5.583 C199.796,45.503,195.083,45.232,195.015,45.977z"/>
+ <path fill="#262626" d="M195.324,46.054c-0.069,0.901,2.451,1.468,4.069,2.085c1.618,0.557,4.784,2.763,6.271,4.453 c1.479,1.638,4.769,6.438,5.491,5.201c0.714-1.127-1.536-4.402-2.396-5.854c-0.839-1.451-2.848-4.263-6.07-5.404 C199.924,45.601,195.391,45.333,195.324,46.054z"/>
+ <path fill="#2C2C2C" d="M195.632,46.13c-0.067,0.872,2.369,1.424,3.933,2.025c1.563,0.542,4.621,2.684,6.056,4.318 c1.424,1.587,4.615,6.228,5.315,5.036c0.688-1.086-1.456-4.248-2.326-5.665c-0.848-1.416-2.783-4.097-5.896-5.224 C200.052,45.697,195.699,45.433,195.632,46.13z"/>
+ <path fill="#333333" d="M195.941,46.207c-0.068,0.842,2.285,1.381,3.794,1.964c1.51,0.527,4.458,2.605,5.842,4.185 c1.37,1.536,4.461,6.016,5.138,4.871c0.662-1.046-1.377-4.093-2.258-5.476c-0.855-1.382-2.718-3.932-5.718-5.045 C200.179,45.795,196.007,45.534,195.941,46.207z"/>
+ <path fill="#393939" d="M196.25,46.284c-0.066,0.813,2.202,1.338,3.656,1.904c1.456,0.512,4.296,2.525,5.627,4.051 c1.317,1.485,4.308,5.805,4.961,4.706c0.638-1.006-1.296-3.939-2.188-5.288c-0.863-1.348-2.652-3.766-5.542-4.866 C200.307,45.892,196.315,45.634,196.25,46.284z"/>
+ <path fill="#3F3F3F" d="M196.559,46.36c-0.067,0.783,2.118,1.295,3.518,1.844c1.402,0.497,4.133,2.446,5.412,3.917 c1.263,1.434,4.155,5.594,4.785,4.541c0.612-0.966-1.217-3.785-2.12-5.1c-0.872-1.313-2.587-3.6-5.366-4.687 C200.435,45.989,196.623,45.734,196.559,46.36z"/>
+ <path fill="#464646" d="M196.868,46.437c-0.065,0.753,2.035,1.251,3.38,1.783c1.349,0.482,3.972,2.367,5.197,3.783 c1.21,1.383,4.002,5.383,4.608,4.375c0.588-0.926-1.137-3.63-2.052-4.911c-0.879-1.279-2.521-3.435-5.189-4.507 C200.562,46.086,196.931,45.835,196.868,46.437z"/>
+ <path fill="#4C4C4C" d="M197.177,46.514c-0.066,0.723,1.95,1.208,3.241,1.723c1.293,0.467,3.809,2.287,4.983,3.649 c1.155,1.332,3.848,5.172,4.431,4.21c0.563-0.885-1.057-3.476-1.982-4.723c-0.888-1.245-2.456-3.269-5.014-4.328 C200.69,46.183,197.239,45.936,197.177,46.514z"/>
+ <path fill="#525252" d="M197.486,46.591c-0.066,0.693,1.868,1.164,3.104,1.662c1.239,0.452,3.646,2.208,4.769,3.515 c1.102,1.281,3.695,4.961,4.254,4.045c0.537-0.845-0.976-3.321-1.913-4.534c-0.896-1.21-2.391-3.103-4.838-4.148 C200.818,46.28,197.547,46.036,197.486,46.591z"/>
+ <path fill="#595959" d="M197.795,46.667c-0.064,0.664,1.784,1.121,2.968,1.602c1.184,0.437,3.481,2.128,4.552,3.381 c1.049,1.23,3.542,4.75,4.078,3.88c0.512-0.805-0.897-3.167-1.846-4.346c-0.902-1.176-2.325-2.938-4.66-3.969 C200.945,46.377,197.856,46.137,197.795,46.667z"/>
+ <path fill="#5F5F5F" d="M198.104,46.744c-0.065,0.634,1.701,1.078,2.829,1.541c1.13,0.421,3.318,2.049,4.338,3.248 c0.994,1.179,3.388,4.539,3.899,3.715c0.487-0.765-0.815-3.013-1.775-4.157c-0.911-1.142-2.261-2.772-4.485-3.79 C201.073,46.475,198.164,46.237,198.104,46.744z"/>
+ <path fill="#666666" d="M198.413,46.821c-0.063,0.604,1.617,1.034,2.691,1.481c1.076,0.406,3.157,1.969,4.123,3.113 c0.94,1.128,3.234,4.328,3.724,3.55c0.462-0.725-0.737-2.858-1.707-3.969c-0.919-1.108-2.195-2.606-4.309-3.61 C201.201,46.572,198.472,46.337,198.413,46.821z"/>
+ <path fill="#6C6C6C" d="M198.721,46.897c-0.063,0.574,1.534,0.991,2.554,1.42c1.021,0.391,2.994,1.89,3.908,2.979 c0.887,1.077,3.082,4.117,3.548,3.384c0.436-0.685-0.657-2.704-1.64-3.78c-0.927-1.074-2.13-2.44-4.132-3.431 C201.328,46.669,198.78,46.438,198.721,46.897z"/>
+ <path fill="#727272" d="M199.03,46.974c-0.063,0.544,1.451,0.948,2.416,1.36c0.967,0.376,2.831,1.811,3.694,2.846 c0.833,1.026,2.928,3.906,3.369,3.219c0.411-0.644-0.576-2.549-1.569-3.592c-0.936-1.04-2.064-2.275-3.956-3.251 C201.456,46.766,199.088,46.539,199.03,46.974z"/>
+ <path fill="#797979" d="M199.339,47.051c-0.062,0.515,1.368,0.904,2.278,1.299c0.913,0.361,2.669,1.731,3.479,2.712 c0.779,0.975,2.774,3.695,3.193,3.054c0.386-0.604-0.497-2.396-1.501-3.403c-0.942-1.005-1.999-2.11-3.78-3.072 C201.584,46.863,199.396,46.639,199.339,47.051z"/>
+ </g>
+ <path fill="#7F7F7F" d="M199.648,47.127c-0.063,0.485,1.284,0.861,2.14,1.239c0.859,0.346,2.506,1.652,3.265,2.578 c0.726,0.924,2.621,3.484,3.017,2.889c0.361-0.564-0.417-2.241-1.432-3.215c-0.951-0.971-1.935-1.944-3.604-2.893 C201.711,46.96,199.704,46.739,199.648,47.127z"/>
+ </g>
+ <g>
+ <path fill="#995900" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-20.017,11.592-31.104,19.152 c-13.968,9.576-18.792,13.824-23.328,18.359c-7.056,7.057-13.752,9.432-24.48,9.432c-10.728,0-15.552-2.231-18.863-5.184 c-3.313-2.88-6.984-10.225-6.624-21.168c0.288-10.872,3.744-20.809,5.399-37.729c0.721-7.271,0.648-16.271,0.648-24.264 c0-10.08,0.144-18.648,2.304-19.943c3.889-2.448,4.752-2.592,9.36-2.592c4.607,0,6.696,0.287,8.208,1.799 c1.439,1.44,0.864,4.752,0.359,9.433c-0.432,4.681,1.801,6.192,4.032,8.136c2.232,1.872,4.248,4.248,11.305,4.824 c7.056,0.504,9.647-0.648,12.96-2.736c3.312-2.088,7.991-5.832,9.72-7.992c1.656-2.088,5.76-9.287,6.552-9.287 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <g>
+ <path fill="#9E5E00" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-20.12,11.556-31.26,19.008 c-13.885,9.371-18.903,13.54-23.521,17.902c-6.912,6.74-13.414,9.084-23.915,9.019c-10.411-0.047-15.116-2.181-18.414-5.118 c-3.297-2.867-6.931-9.966-6.613-20.578c0.205-10.851,3.701-20.683,5.256-37.279c0.666-7.379,0.407-16.303,0.335-24.375 c-0.076-10.068-0.072-18.627,2.084-19.922c3.889-2.444,4.752-2.592,9.36-2.592c4.607,0,6.7,0.291,8.208,1.799 c1.491,1.492,0.767,4.887,0.205,9.408c-0.63,4.658,1.458,6.486,3.795,8.607c2.34,2.059,4.489,4.471,11.534,5.021 c7.232,0.482,10.015-0.832,13.362-3.106c3.303-2.207,7.773-5.903,9.513-8.168c1.641-2.132,5.727-9.386,6.519-9.386 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#A36400" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-20.226,11.52-31.414,18.863 c-13.803,9.166-19.016,13.256-23.717,17.447c-6.768,6.422-13.075,8.733-23.35,8.604c-10.094-0.094-14.682-2.131-17.964-5.055 c-3.283-2.852-6.876-9.705-6.603-19.987c0.122-10.828,3.657-20.556,5.112-36.828c0.612-7.487,0.165-16.336,0.021-24.487 c-0.15-10.058-0.287-18.605,1.865-19.9c3.889-2.44,4.752-2.592,9.36-2.592c4.607,0,6.703,0.295,8.208,1.799 c1.541,1.541,0.67,5.02,0.051,9.383c-0.828,4.637,1.116,6.781,3.556,9.078c2.448,2.248,4.731,4.695,11.766,5.221 c7.409,0.461,10.383-1.016,13.767-3.477c3.29-2.326,7.552-5.977,9.302-8.346c1.627-2.175,5.695-9.482,6.487-9.482 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#A86A00" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-20.329,11.484-31.568,18.72 c-13.721,8.961-19.127,12.972-23.911,16.989c-6.624,6.105-12.737,8.384-22.785,8.189c-9.777-0.141-14.245-2.08-17.514-4.99 c-3.27-2.836-6.822-9.445-6.591-19.396c0.038-10.807,3.613-20.43,4.968-36.378c0.558-7.597-0.076-16.368-0.292-24.599 c-0.228-10.047-0.504-18.584,1.645-19.879c3.889-2.438,4.752-2.592,9.36-2.592c4.607,0,6.707,0.299,8.208,1.799 c1.591,1.593,0.573,5.152-0.104,9.357c-1.025,4.615,0.774,7.077,3.319,9.551c2.556,2.434,4.972,4.918,11.995,5.418 c7.585,0.439,10.75-1.199,14.17-3.849c3.279-2.444,7.333-6.048,9.093-8.521c1.613-2.219,5.663-9.58,6.455-9.58 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#AD7000" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-20.434,11.447-31.724,18.576 c-13.637,8.756-19.238,12.687-24.106,16.531c-6.479,5.789-12.397,8.035-22.219,7.776c-9.461-0.188-13.809-2.03-17.063-4.925 c-3.254-2.823-6.769-9.188-6.581-18.807c-0.043-10.785,3.571-20.305,4.824-35.928c0.504-7.705-0.316-16.402-0.604-24.711 c-0.303-10.037-0.72-18.563,1.425-19.857c3.889-2.434,4.752-2.592,9.36-2.592c4.607,0,6.711,0.303,8.208,1.799 c1.642,1.643,0.475,5.285-0.259,9.332c-1.225,4.594,0.432,7.373,3.082,10.022c2.664,2.621,5.212,5.142,12.225,5.616 c7.762,0.418,11.117-1.383,14.573-4.219c3.269-2.563,7.113-6.121,8.885-8.698c1.598-2.261,5.63-9.677,6.422-9.677 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#B27500" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-20.538,11.412-31.879,18.432 c-13.554,8.551-19.35,12.402-24.3,16.074c-6.336,5.473-12.06,7.686-21.654,7.361c-9.144-0.233-13.374-1.979-16.613-4.859 c-3.24-2.809-6.714-8.928-6.57-18.216c-0.126-10.765,3.528-20.179,4.68-35.478c0.45-7.813-0.558-16.435-0.918-24.822 c-0.378-10.026-0.936-18.541,1.206-19.836c3.889-2.43,4.752-2.592,9.36-2.592c4.607,0,6.714,0.305,8.208,1.799 c1.691,1.693,0.378,5.418-0.414,9.307c-1.422,4.572,0.09,7.668,2.844,10.494c2.772,2.808,5.454,5.363,12.456,5.814 c7.938,0.396,11.484-1.566,14.977-4.591c3.258-2.682,6.894-6.192,8.676-8.874c1.584-2.304,5.598-9.773,6.39-9.773 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#B77B00" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-20.643,11.376-32.033,18.288 c-13.472,8.345-19.461,12.118-24.494,15.616c-6.192,5.156-11.723,7.338-21.089,6.949c-8.827-0.281-12.938-1.93-16.164-4.795 c-3.226-2.795-6.66-8.67-6.56-17.627c-0.209-10.742,3.485-20.052,4.536-35.027c0.396-7.92-0.799-16.467-1.23-24.934 c-0.454-10.015-1.152-18.52,0.985-19.814c3.889-2.426,4.752-2.592,9.36-2.592c4.607,0,6.718,0.31,8.208,1.799 c1.743,1.744,0.281,5.553-0.569,9.281c-1.62,4.551-0.252,7.963,2.607,10.967c2.88,2.994,5.694,5.586,12.686,6.012 c8.115,0.373,11.852-1.75,15.379-4.961c3.248-2.801,6.676-6.264,8.469-9.051c1.568-2.348,5.564-9.871,6.356-9.871 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#BC8100" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-20.747,11.34-32.188,18.145 c-13.389,8.139-19.574,11.834-24.689,15.159c-6.048,4.839-11.383,6.988-20.523,6.534c-8.51-0.328-12.503-1.879-15.714-4.73 c-3.211-2.779-6.606-8.41-6.549-17.035c-0.292-10.721,3.441-19.926,4.393-34.578c0.342-8.028-1.041-16.498-1.545-25.045 c-0.529-10.004-1.368-18.498,0.767-19.793c3.889-2.422,4.752-2.592,9.36-2.592c4.607,0,6.721,0.313,8.208,1.799 c1.793,1.793,0.184,5.686-0.723,9.256c-1.818,4.529-0.595,8.259,2.367,11.438c2.988,3.184,5.938,5.811,12.917,6.211 c8.291,0.352,12.22-1.934,15.783-5.332c3.236-2.92,6.454-6.336,8.258-9.227c1.556-2.391,5.533-9.969,6.325-9.969 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#C18700" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-20.852,11.304-32.343,18 c-13.306,7.936-19.685,11.549-24.883,14.703c-5.904,4.521-11.045,6.638-19.959,6.119c-8.193-0.375-12.067-1.828-15.264-4.666 c-3.197-2.764-6.553-8.149-6.537-16.444c-0.375-10.699,3.397-19.8,4.248-34.128c0.288-8.137-1.282-16.531-1.858-25.156 c-0.604-9.994-1.584-18.477,0.547-19.771c3.889-2.42,4.752-2.592,9.36-2.592c4.607,0,6.725,0.316,8.208,1.799 c1.843,1.845,0.087,5.818-0.878,9.231c-2.017,4.507-0.937,8.554,2.131,11.909c3.096,3.369,6.178,6.033,13.146,6.408 c8.468,0.33,12.587-2.117,16.187-5.703c3.225-3.038,6.235-6.408,8.049-9.402c1.541-2.436,5.501-10.066,6.293-10.066 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#C68C00" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-20.955,11.268-32.498,17.855 c-13.223,7.73-19.796,11.266-25.077,14.246c-5.761,4.204-10.706,6.289-19.394,5.707c-7.877-0.423-11.631-1.779-14.813-4.602 c-3.183-2.751-6.498-7.891-6.527-15.855c-0.457-10.677,3.355-19.674,4.104-33.678c0.234-8.244-1.521-16.563-2.17-25.268 c-0.681-9.983-1.8-18.455,0.327-19.75c3.889-2.416,4.752-2.592,9.36-2.592c4.607,0,6.729,0.32,8.208,1.799 c1.894,1.895-0.011,5.951-1.033,9.207c-2.214,4.484-1.278,8.848,1.895,12.379c3.203,3.558,6.418,6.258,13.377,6.607 c8.644,0.309,12.952-2.301,16.589-6.074c3.215-3.156,6.016-6.479,7.841-9.58c1.526-2.477,5.468-10.162,6.26-10.162 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#CC9200" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-21.061,11.232-32.652,17.712 c-13.141,7.524-19.908,10.979-25.272,13.788c-5.616,3.888-10.368,5.939-18.828,5.292c-7.56-0.468-11.195-1.728-14.363-4.536 c-3.168-2.736-6.444-7.632-6.517-15.264c-0.54-10.656,3.313-19.549,3.96-33.229c0.181-8.352-1.764-16.596-2.483-25.38 c-0.757-9.972-2.017-18.433,0.107-19.728c3.889-2.412,4.752-2.592,9.36-2.592c4.607,0,6.731,0.323,8.208,1.799 c1.944,1.945-0.108,6.084-1.188,9.181c-2.412,4.464-1.62,9.144,1.656,12.853c3.313,3.744,6.66,6.479,13.608,6.803 c8.819,0.289,13.319-2.483,16.991-6.443c3.204-3.275,5.797-6.553,7.633-9.756c1.512-2.52,5.436-10.26,6.228-10.26 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#D19800" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-21.164,11.195-32.808,17.568 c-13.057,7.318-20.019,10.695-25.466,13.33c-5.473,3.571-10.03,5.592-18.263,4.879c-7.243-0.516-10.761-1.678-13.914-4.472 c-3.153-2.722-6.391-7.372-6.506-14.674c-0.623-10.634,3.27-19.422,3.816-32.778c0.126-8.459-2.005-16.627-2.797-25.49 c-0.832-9.961-2.232-18.412-0.112-19.707c3.889-2.408,4.752-2.592,9.36-2.592c4.607,0,6.736,0.328,8.208,1.799 c1.995,1.996-0.205,6.219-1.343,9.156c-2.61,4.442-1.962,9.438,1.419,13.323c3.42,3.931,6.9,6.703,13.838,7.002 c8.997,0.267,13.687-2.668,17.395-6.815c3.194-3.395,5.577-6.623,7.424-9.932c1.497-2.564,5.403-10.357,6.195-10.357 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#D69E00" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-21.27,11.16-32.962,17.424 c-12.975,7.114-20.132,10.412-25.661,12.874c-5.327,3.254-9.69,5.242-17.697,4.464c-6.927-0.563-10.325-1.627-13.464-4.406 c-3.14-2.707-6.337-7.113-6.494-14.084c-0.706-10.611,3.225-19.295,3.672-32.328c0.072-8.567-2.247-16.66-3.111-25.603 c-0.907-9.95-2.448-18.39-0.331-19.685c3.889-2.404,4.752-2.592,9.36-2.592c4.607,0,6.739,0.332,8.208,1.799 c2.045,2.045-0.302,6.352-1.497,9.131c-2.808,4.421-2.304,9.734,1.18,13.795c3.528,4.119,7.144,6.927,14.069,7.199 c9.173,0.246,14.055-2.851,17.799-7.185c3.182-3.514,5.356-6.696,7.214-10.108c1.483-2.607,5.371-10.455,6.163-10.455 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#DBA300" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-21.373,11.124-33.116,17.279 c-12.893,6.91-20.243,10.127-25.855,12.418c-5.184,2.937-9.353,4.892-17.133,4.05c-6.609-0.609-9.889-1.577-13.014-4.343 c-3.125-2.692-6.282-6.854-6.483-13.492c-0.789-10.592,3.182-19.17,3.528-31.879c0.018-8.676-2.488-16.692-3.425-25.713 c-0.982-9.94-2.664-18.369-0.551-19.664c3.889-2.401,4.752-2.592,9.36-2.592c4.607,0,6.743,0.334,8.208,1.799 c2.095,2.097-0.399,6.484-1.652,9.105c-3.006,4.398-2.646,10.029,0.943,14.268c3.636,4.305,7.384,7.148,14.299,7.397 c9.349,0.224,14.422-3.034,18.202-7.558c3.171-3.631,5.137-6.768,7.005-10.284c1.469-2.649,5.339-10.552,6.131-10.552 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#E0A900" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-21.478,11.088-33.271,17.136 c-12.81,6.704-20.354,9.843-26.05,11.96c-5.04,2.62-9.015,4.543-16.567,3.637c-6.293-0.656-9.453-1.527-12.563-4.277 c-3.11-2.68-6.229-6.596-6.474-12.903c-0.871-10.569,3.141-19.044,3.384-31.428c-0.035-8.784-2.728-16.726-3.735-25.826 c-1.06-9.929-2.88-18.347-0.771-19.642c3.889-2.397,4.752-2.592,9.36-2.592c4.607,0,6.747,0.338,8.208,1.799 c2.146,2.146-0.497,6.617-1.808,9.08c-3.203,4.377-2.987,10.324,0.706,14.738c3.744,4.493,7.624,7.373,14.529,7.596 c9.526,0.203,14.789-3.217,18.605-7.926c3.161-3.752,4.918-6.841,6.797-10.463c1.454-2.693,5.306-10.648,6.098-10.648 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#E5AF00" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-21.582,11.052-33.427,16.992 c-12.726,6.498-20.466,9.558-26.244,11.502c-4.896,2.304-8.676,4.193-16.002,3.222c-5.976-0.702-9.018-1.476-12.114-4.212 c-3.096-2.664-6.174-6.336-6.462-12.313c-0.953-10.547,3.097-18.918,3.24-30.978c-0.09-8.892-2.97-16.758-4.05-25.938 c-1.134-9.918-3.096-18.324-0.99-19.619c3.889-2.395,4.752-2.592,9.36-2.592c4.607,0,6.75,0.342,8.208,1.799 c2.196,2.197-0.594,6.75-1.962,9.055c-3.402,4.355-3.33,10.619,0.468,15.21c3.852,4.681,7.866,7.597,14.76,7.794 c9.702,0.18,15.156-3.402,19.008-8.298c3.15-3.87,4.698-6.912,6.589-10.638c1.439-2.736,5.273-10.746,6.065-10.746 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#EAB500" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-21.687,11.016-33.582,16.848 c-12.643,6.293-20.576,9.274-26.438,11.045c-4.752,1.987-8.338,3.846-15.438,2.809c-5.658-0.75-8.582-1.426-11.664-4.147 c-3.08-2.649-6.119-6.077-6.45-11.722c-1.037-10.526,3.053-18.792,3.096-30.528c-0.144-9-3.211-16.79-4.363-26.049 c-1.21-9.907-3.312-18.304-1.21-19.599c3.889-2.391,4.752-2.592,9.36-2.592c4.607,0,6.754,0.346,8.208,1.799 c2.247,2.248-0.691,6.885-2.117,9.029c-3.6,4.336-3.672,10.916,0.231,15.682c3.96,4.867,8.106,7.82,14.989,7.992 c9.879,0.158,15.523-3.586,19.411-8.668c3.141-3.99,4.479-6.984,6.38-10.814c1.426-2.78,5.241-10.844,6.033-10.844 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#EFBA00" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-21.791,10.98-33.735,16.703 c-12.562,6.089-20.69,8.99-26.633,10.589c-4.608,1.67-7.999,3.496-14.872,2.394c-5.343-0.796-8.147-1.375-11.215-4.082 c-3.066-2.636-6.065-5.818-6.439-11.132c-1.12-10.504,3.009-18.666,2.952-30.077c-0.198-9.109-3.453-16.822-4.677-26.162 c-1.285-9.896-3.528-18.281-1.43-19.576c3.889-2.387,4.752-2.592,9.36-2.592c4.607,0,6.757,0.35,8.208,1.799 c2.297,2.297-0.788,7.018-2.271,9.004c-3.798,4.314-4.014,11.211-0.008,16.154c4.068,5.055,8.35,8.043,15.221,8.189 c10.056,0.137,15.892-3.77,19.815-9.039c3.128-4.107,4.258-7.057,6.17-10.99c1.411-2.824,5.209-10.941,6.001-10.941 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#F4C000" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-21.896,10.943-33.891,16.561 c-12.478,5.883-20.801,8.704-26.827,10.131c-4.464,1.353-7.661,3.146-14.307,1.979c-5.025-0.843-7.711-1.325-10.765-4.019 c-3.053-2.621-6.012-5.558-6.429-10.541c-1.203-10.482,2.966-18.539,2.809-29.627c-0.253-9.217-3.694-16.855-4.99-26.272 c-1.361-9.886-3.744-18.261-1.649-19.556c3.889-2.383,4.752-2.592,9.36-2.592c4.607,0,6.761,0.353,8.208,1.799 c2.347,2.349-0.885,7.15-2.426,8.979c-3.996,4.291-4.356,11.505-0.245,16.625c4.176,5.241,8.59,8.265,15.451,8.388 c10.23,0.115,16.258-3.953,20.218-9.41c3.117-4.227,4.039-7.129,5.961-11.168c1.396-2.865,5.177-11.037,5.969-11.037 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ <path fill="#F9C600" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-21.999,10.908-34.046,16.416 c-12.395,5.678-20.912,8.421-27.021,9.674c-4.32,1.036-7.322,2.797-13.741,1.566c-4.709-0.891-7.275-1.275-10.314-3.953 c-3.037-2.607-5.958-5.299-6.419-9.951c-1.284-10.461,2.925-18.414,2.664-29.178c-0.306-9.324-3.934-16.887-5.302-26.385 c-1.437-9.875-3.96-18.238-1.869-19.533c3.889-2.379,4.752-2.592,9.36-2.592c4.607,0,6.765,0.356,8.208,1.799 c2.397,2.398-0.983,7.283-2.581,8.955c-4.194,4.269-4.698,11.799-0.482,17.096c4.284,5.429,8.83,8.488,15.682,8.586 c10.407,0.094,16.625-4.137,20.621-9.781c3.106-4.345,3.819-7.199,5.753-11.344c1.382-2.909,5.144-11.135,5.936-11.135 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ </g>
+ <path fill="#FFCC00" d="M303.631,262.529c4.464,6.479-0.145,14.904,3.096,20.089c5.328,8.496,16.056,17.063,20.16,19.439 c2.952,1.8,7.128,3.527,6.983,8.783c-0.216,5.977-3.168,7.561-4.823,9.217c-3.313,3.313-22.104,10.872-34.2,16.271 c-12.313,5.473-21.024,8.137-27.217,9.217c-4.176,0.72-6.983,2.447-13.176,1.151c-4.392-0.937-6.84-1.224-9.864-3.888 c-3.023-2.592-5.903-5.04-6.407-9.359c-1.368-10.441,2.88-18.289,2.52-28.729c-0.36-9.432-4.176-16.92-5.616-26.496 c-1.512-9.864-4.176-18.217-2.088-19.512c3.889-2.377,4.752-2.592,9.36-2.592c4.607,0,6.768,0.359,8.208,1.799 c2.448,2.449-1.08,7.416-2.736,8.929c-4.392,4.248-5.04,12.096-0.72,17.567c4.392,5.617,9.072,8.713,15.912,8.785 c10.584,0.071,16.992-4.32,21.023-10.152c3.097-4.465,3.601-7.272,5.544-11.521c1.368-2.952,5.112-11.231,5.904-11.231 C296.214,260.297,300.967,258.641,303.631,262.529z"/>
+ </g>
+ <g>
+ <path fill="#FFCC00" d="M236.263,275.762c-0.709-0.258-3.932-15.209-2.191-16.239c3.351-1.997,4.253-2.319,8.377-2.319 s6.057,0.322,7.346,1.61c2.126,2.127-1.159,6.702-2.448,7.991C243.609,270.478,236.972,276.02,236.263,275.762z"/>
+ <g>
+ <path fill="#FFCC02" d="M236.492,275.286c-0.77-0.326-4.102-14.719-2.368-15.742c3.344-1.992,4.278-2.211,8.322-2.211 c4.124,0,5.976,0.269,7.282,1.602c2.105,2.136-1.119,6.572-2.398,7.852C243.603,270.45,237.249,275.598,236.492,275.286z"/>
+ <path fill="#FFCC05" d="M236.721,274.809c-0.832-0.393-4.273-14.229-2.547-15.247c3.339-1.983,4.306-2.101,8.269-2.101 c4.124,0,5.896,0.213,7.217,1.592c2.087,2.146-1.076,6.443-2.346,7.714C243.596,270.42,237.526,275.176,236.721,274.809z"/>
+ <path fill="#FFCC07" d="M236.949,274.333c-0.892-0.461-4.443-13.74-2.722-14.75c3.331-1.979,4.33-1.992,8.213-1.992 c4.124,0,5.814,0.158,7.151,1.582c2.068,2.156-1.033,6.316-2.294,7.574C243.59,270.391,237.803,274.754,236.949,274.333z"/>
+ <path fill="#FFCD0A" d="M237.178,273.855c-0.954-0.528-4.614-13.249-2.9-14.254c3.326-1.972,4.355-1.882,8.158-1.882 c4.124,0,5.734,0.104,7.089,1.572c2.048,2.166-0.993,6.187-2.243,7.437C243.583,270.362,238.08,274.333,237.178,273.855z"/>
+ <path fill="#FFCD0C" d="M237.407,273.377c-1.015-0.596-4.785-12.758-3.077-13.758c3.319-1.965,4.382-1.771,8.104-1.771 c4.124,0,5.653,0.049,7.023,1.563c2.029,2.176-0.951,6.057-2.19,7.299C243.577,270.333,238.357,273.911,237.407,273.377z"/>
+ <path fill="#FFCD0F" d="M237.636,272.901c-1.077-0.662-4.956-12.27-3.256-13.261c3.313-1.959,4.408-1.663,8.05-1.663 c4.124,0,5.573-0.006,6.959,1.553c2.01,2.186-0.908,5.93-2.14,7.159C243.57,270.303,238.634,273.489,237.636,272.901z"/>
+ <path fill="#FFCD11" d="M237.864,272.424c-1.137-0.731-5.126-11.779-3.431-12.766c3.306-1.951,4.433-1.553,7.994-1.553 c4.123,0,5.492-0.061,6.895,1.543c1.991,2.193-0.867,5.801-2.089,7.021C243.564,270.275,238.912,273.066,237.864,272.424z"/>
+ <path fill="#FFCE14" d="M238.093,271.948c-1.197-0.799-5.297-11.289-3.607-12.27c3.299-1.946,4.459-1.443,7.938-1.443 c4.124,0,5.412-0.115,6.83,1.533c1.973,2.204-0.824,5.671-2.037,6.883C243.558,270.247,239.189,272.644,238.093,271.948z"/>
+ <path fill="#FFCE16" d="M238.322,271.471c-1.26-0.867-5.468-10.801-3.786-11.773c3.293-1.939,4.485-1.334,7.884-1.334 c4.124,0,5.332-0.171,6.767,1.524c1.953,2.213-0.783,5.542-1.985,6.743C243.551,270.217,239.466,272.222,238.322,271.471z"/>
+ <path fill="#FFCE19" d="M238.551,270.995c-1.32-0.935-5.639-10.312-3.963-11.277c3.286-1.934,4.511-1.225,7.829-1.225 c4.124,0,5.252-0.226,6.702,1.514c1.934,2.224-0.741,5.414-1.934,6.605C243.545,270.188,239.743,271.799,238.551,270.995z"/>
+ <path fill="#FFCE1C" d="M238.779,270.517c-1.382-1.002-5.809-9.821-4.14-10.781c3.279-1.926,4.535-1.114,7.774-1.114 c4.124,0,5.171-0.279,6.637,1.504c1.914,2.233-0.698,5.285-1.882,6.467C243.538,270.159,240.02,271.377,238.779,270.517z"/>
+ <path fill="#FFCF1E" d="M239.008,270.04c-1.442-1.068-5.979-9.33-4.316-10.283c3.272-1.922,4.562-1.006,7.72-1.006 c4.124,0,5.09-0.334,6.572,1.494c1.895,2.244-0.657,5.156-1.83,6.328C243.532,270.129,240.297,270.956,239.008,270.04z"/>
+ <path fill="#FFCF21" d="M239.237,269.563c-1.505-1.137-6.151-8.841-4.495-9.788c3.267-1.914,4.588-0.896,7.666-0.896 c4.124,0,5.009-0.389,6.508,1.486c1.875,2.252-0.616,5.025-1.778,6.188C243.525,270.101,240.574,270.534,239.237,269.563z"/>
+ <path fill="#FFCF23" d="M239.466,269.086c-1.565-1.205-6.321-8.352-4.672-9.293c3.262-1.906,4.613-0.785,7.61-0.785 c4.124,0,4.93-0.444,6.444,1.476c1.855,2.261-0.573,4.897-1.728,6.052C243.519,270.073,240.851,270.111,239.466,269.086z"/>
+ <path fill="#FFCF26" d="M239.694,268.61c-1.627-1.273-6.492-7.861-4.849-8.796c3.255-1.901,4.64-0.677,7.556-0.677 c4.124,0,4.849-0.499,6.379,1.466c1.837,2.271-0.531,4.769-1.675,5.912C243.512,270.043,241.128,269.689,239.694,268.61z"/>
+ <path fill="#FFD028" d="M239.923,268.133c-1.688-1.34-6.663-7.373-5.025-8.301c3.248-1.895,4.665-0.566,7.501-0.566 c4.124,0,4.768-0.555,6.314,1.456c1.817,2.28-0.489,4.64-1.624,5.774C243.506,270.015,241.405,269.267,239.923,268.133z"/>
+ <path fill="#FFD02B" d="M240.152,267.657c-1.749-1.408-6.834-6.883-5.203-7.805c3.241-1.889,4.69-0.457,7.446-0.457 c4.124,0,4.687-0.609,6.25,1.447c1.798,2.289-0.448,4.51-1.573,5.635C243.5,269.986,241.682,268.844,240.152,267.657z"/>
+ <path fill="#FFD02D" d="M240.381,267.178c-1.811-1.475-7.005-6.391-5.381-7.307c3.235-1.881,4.717-0.348,7.393-0.348 c4.124,0,4.606-0.664,6.185,1.438c1.779,2.299-0.405,4.381-1.521,5.496C243.493,269.958,241.959,268.422,240.381,267.178z"/>
+ <path fill="#FFD030" d="M240.609,266.702c-1.871-1.543-7.175-5.902-5.557-6.811c3.228-1.875,4.741-0.238,7.336-0.238 c4.124,0,4.526-0.719,6.122,1.428c1.759,2.31-0.364,4.252-1.471,5.357C243.487,269.928,242.236,268,240.609,266.702z"/>
+ </g>
+ <path fill="#FFD133" d="M240.838,266.225c-1.933-1.611-7.346-5.413-5.734-6.314c3.222-1.869,4.768-0.129,7.281-0.129 c4.124,0,4.446-0.773,6.058,1.418c1.74,2.318-0.322,4.123-1.418,5.219C243.48,269.899,242.513,267.579,240.838,266.225z"/>
+ </g>
+ <g>
+ <path fill="#FFCC00" d="M302.769,263.374c3.742,5.461-0.062,12.76,2.638,17.117c-6.809-6.258-9.938-8.834-19.324,0.367 c2.577-3.742,3.129-6.257,4.725-9.814c1.104-2.455,4.354-9.57,5.029-9.57C296.45,261.473,300.561,260.124,302.769,263.374z"/>
+ <g>
+ <path fill="#FFCC02" d="M302.73,263.413c3.655,5.334,0.035,12.601,2.578,16.723c-6.668-6.098-9.729-8.666-18.908,0.322 c2.421-3.527,3.025-6.094,4.605-9.592c1.122-2.462,4.243-9.302,4.951-9.311C296.584,261.547,300.573,260.237,302.73,263.413z"/>
+ <path fill="#FFCC05" d="M302.691,263.45c3.568,5.209,0.132,12.441,2.517,16.332c-6.526-5.938-9.519-8.5-18.492,0.277 c2.268-3.314,2.924-5.934,4.488-9.372c1.141-2.468,4.132-9.032,4.873-9.052C296.718,261.622,300.585,260.351,302.691,263.45z"/>
+ <path fill="#FFCC07" d="M302.652,263.487c3.48,5.086,0.229,12.282,2.457,15.939c-6.386-5.777-9.311-8.332-18.076,0.232 c2.111-3.1,2.819-5.771,4.369-9.15c1.158-2.475,4.021-8.762,4.795-8.791C296.852,261.698,300.596,260.463,302.652,263.487z"/>
+ <path fill="#FFCD0A" d="M302.614,263.524c3.393,4.96,0.323,12.123,2.396,15.549c-6.245-5.617-9.102-8.164-17.66,0.188 c1.955-2.887,2.716-5.611,4.251-8.93c1.176-2.481,3.91-8.494,4.716-8.533C296.987,261.771,300.608,260.579,302.614,263.524z"/>
+ <path fill="#FFCD0C" d="M302.575,263.562c3.306,4.835,0.419,11.964,2.335,15.155c-6.104-5.457-8.891-7.996-17.244,0.143 c1.8-2.673,2.613-5.449,4.133-8.707c1.194-2.488,3.8-8.225,4.638-8.273C297.121,261.844,300.619,260.691,302.575,263.562z"/>
+ <path fill="#FFCD0F" d="M302.536,263.599c3.219,4.71,0.517,11.805,2.275,14.765c-5.963-5.299-8.683-7.83-16.828,0.098 c1.644-2.461,2.51-5.289,4.015-8.486c1.212-2.496,3.688-7.956,4.559-8.016C297.255,261.92,300.632,260.805,302.536,263.599z"/>
+ <path fill="#FFCD11" d="M302.497,263.637c3.131,4.585,0.612,11.645,2.216,14.371c-5.822-5.137-8.474-7.661-16.413,0.053 c1.489-2.245,2.406-5.125,3.896-8.264c1.229-2.504,3.576-7.688,4.479-7.756C297.389,261.995,300.643,260.918,302.497,263.637z"/>
+ <path fill="#FFCE14" d="M302.458,263.674c3.044,4.459,0.708,11.486,2.154,13.979c-5.681-4.978-8.263-7.493-15.996,0.009 c1.334-2.033,2.303-4.965,3.779-8.043c1.247-2.511,3.464-7.418,4.4-7.498C297.523,262.069,300.654,261.032,302.458,263.674z"/>
+ <path fill="#FFCE16" d="M302.42,263.711c2.956,4.336,0.804,11.328,2.094,13.588c-5.54-4.817-8.055-7.326-15.58-0.036 c1.178-1.819,2.199-4.804,3.659-7.822c1.267-2.517,3.354-7.149,4.323-7.237C297.657,262.143,300.666,261.146,302.42,263.711z"/>
+ <path fill="#FFCE19" d="M302.381,263.749c2.868,4.211,0.9,11.168,2.033,13.196c-5.398-4.657-7.845-7.159-15.164-0.081 c1.022-1.605,2.097-4.642,3.542-7.601c1.283-2.524,3.241-6.88,4.244-6.979C297.791,262.217,300.678,261.258,302.381,263.749z"/>
+ <path fill="#FFCE1C" d="M302.342,263.788c2.78,4.084,0.997,11.008,1.973,12.803c-5.258-4.498-7.635-6.991-14.748-0.127 c0.867-1.391,1.994-4.479,3.424-7.379c1.302-2.531,3.13-6.61,4.166-6.719C297.925,262.292,300.689,261.374,302.342,263.788z"/>
+ <path fill="#FFCF1E" d="M302.302,263.825c2.693,3.959,1.093,10.85,1.913,12.411c-5.117-4.338-7.427-6.825-14.333-0.172 c0.713-1.177,1.891-4.317,3.307-7.157c1.318-2.537,3.018-6.342,4.086-6.461C298.059,262.366,300.701,261.487,302.302,263.825z"/>
+ <path fill="#FFCF21" d="M302.263,263.862c2.606,3.834,1.188,10.689,1.853,12.02c-4.976-4.178-7.217-6.657-13.916-0.217 c0.556-0.963,1.786-4.156,3.188-6.936c1.337-2.545,2.906-6.072,4.008-6.202C298.193,262.441,300.714,261.6,302.263,263.862z"/>
+ <path fill="#FFCF23" d="M302.225,263.899c2.519,3.71,1.285,10.531,1.791,11.628c-4.835-4.019-7.008-6.489-13.5-0.262 c0.4-0.75,1.684-3.994,3.068-6.714c1.356-2.553,2.797-5.805,3.931-5.943C298.328,262.515,300.724,261.713,302.225,263.899z"/>
+ <path fill="#FFCF26" d="M302.186,263.937c2.431,3.584,1.381,10.371,1.73,11.235c-4.693-3.857-6.798-6.322-13.084-0.307 c0.245-0.535,1.58-3.832,2.951-6.492c1.373-2.56,2.686-5.535,3.852-5.685C298.463,262.588,300.736,261.827,302.186,263.937z"/>
+ <path fill="#FFD028" d="M302.147,263.974c2.344,3.46,1.477,10.213,1.671,10.845c-4.553-3.699-6.589-6.156-12.668-0.354 c0.089-0.321,1.477-3.67,2.832-6.271c1.392-2.565,2.574-5.267,3.772-5.425C298.596,262.665,300.748,261.941,302.147,263.974z"/>
+ <path fill="#FFD02B" d="M302.108,264.012c2.257,3.334,1.573,10.053,1.61,10.451c-4.412-3.537-6.38-5.987-12.253-0.396 c-0.064-0.109,1.374-3.51,2.716-6.05c1.408-2.573,2.462-4.997,3.693-5.166C298.73,262.739,300.76,262.055,302.108,264.012z"/>
+ <path fill="#FFD02D" d="M302.069,264.049c2.17,3.209,1.67,9.894,1.55,10.061c-4.271-3.379-6.17-5.82-11.836-0.441 c-0.221,0.104,1.271-3.35,2.596-5.83c1.428-2.58,2.352-4.728,3.615-4.906C298.864,262.813,300.771,262.168,302.069,264.049z"/>
+ <path fill="#FFD030" d="M302.03,264.086c2.082,3.084,1.767,9.736,1.49,9.668c-4.131-3.219-5.961-5.652-11.42-0.486 c-0.377,0.318,1.167-3.188,2.478-5.607c1.445-2.586,2.239-4.459,3.536-4.647C298.998,262.887,300.783,262.282,302.03,264.086z"/>
+ </g>
+ <path fill="#FFD133" d="M301.991,264.124c1.995,2.959,1.862,9.576,1.43,9.277c-3.989-3.059-5.752-5.486-11.005-0.531 c-0.532,0.531,1.064-3.027,2.36-5.387c1.463-2.594,2.128-4.189,3.458-4.389C299.133,262.961,300.795,262.395,301.991,264.124z"/>
+ </g>
+ <g>
+ <path fill="#FFCC00" d="M305.862,283.481c5.977,7.848,17.064,16.271,21.024,18.576c2.88,1.656,7.056,3.6,6.983,8.783 c-0.144,5.904-3.168,7.561-4.823,9.217c-3.313,3.313-22.177,10.943-34.2,16.271c-12.24,5.4-21.097,8.209-27.217,9.217 c-4.104,0.647-7.056,2.375-13.176,1.151c-4.32-0.864-6.912-1.296-9.864-3.888c-2.951-2.52-5.976-5.184-6.407-9.359 c-1.225-10.369,3.672-16.921,8.424-25.921c3.888-7.2,11.735-8.64,16.632-7.991c17.568,2.375,16.416-8.641,21.24-13.465 C288.942,281.609,301.686,278.008,305.862,283.481z"/>
+ <g>
+ <path fill="#FFCC02" d="M305.81,283.553c5.962,7.83,17.024,16.234,20.975,18.533c2.873,1.652,7.039,3.592,6.969,8.764 c-0.145,5.891-3.161,7.542-4.813,9.195c-3.304,3.304-22.34,10.992-34.24,16.088c-12.259,5.176-20.647,7.873-26.802,8.959 c-4.077,0.684-7.156,2.394-13.258,1.177c-4.304-0.854-6.767-1.231-9.707-3.812c-2.939-2.51-5.756-4.961-6.185-9.117 c-1.211-10.34,3.365-16.657,8.044-25.65c3.89-7.375,11.791-8.434,16.665-7.777c17.514,2.414,16.206-8.959,21.02-13.772 C288.93,281.687,301.644,278.094,305.81,283.553z"/>
+ <path fill="#FFCC05" d="M305.76,283.627c5.946,7.812,16.982,16.195,20.925,18.488c2.866,1.648,7.022,3.584,6.951,8.743 c-0.144,5.876-3.153,7.524-4.801,9.173c-3.298,3.297-22.506,11.043-34.28,15.907c-12.279,4.949-20.201,7.538-26.389,8.699 c-4.051,0.721-7.256,2.413-13.341,1.202c-4.286-0.846-6.619-1.168-9.55-3.733c-2.924-2.501-5.536-4.741-5.959-8.877 c-1.198-10.312,3.058-16.394,7.664-25.379c3.89-7.552,11.845-8.229,16.698-7.563c17.458,2.453,15.995-9.279,20.797-14.08 C288.918,281.764,301.602,278.181,305.76,283.627z"/>
+ <path fill="#FFCC07" d="M305.707,283.702c5.935,7.791,16.943,16.156,20.876,18.444c2.859,1.644,7.007,3.574,6.935,8.722 c-0.144,5.862-3.146,7.508-4.79,9.151c-3.288,3.289-22.668,11.093-34.319,15.726c-12.298,4.723-19.753,7.202-25.974,8.44 c-4.024,0.756-7.357,2.431-13.423,1.226c-4.27-0.836-6.473-1.101-9.394-3.654c-2.911-2.492-5.317-4.52-5.735-8.635 c-1.185-10.285,2.75-16.133,7.284-25.109c3.892-7.727,11.9-8.023,16.731-7.35c17.402,2.494,15.785-9.599,20.575-14.389 C288.906,281.842,301.56,278.267,305.707,283.702z"/>
+ <path fill="#FFCD0A" d="M305.655,283.774c5.92,7.773,16.904,16.119,20.826,18.4c2.854,1.642,6.99,3.566,6.919,8.703 c-0.143,5.848-3.138,7.488-4.779,9.129c-3.28,3.281-22.832,11.143-34.358,15.543c-12.317,4.498-19.307,6.867-25.561,8.182 c-3.997,0.793-7.457,2.45-13.506,1.251c-4.252-0.828-6.325-1.036-9.236-3.577c-2.896-2.482-5.096-4.298-5.51-8.393 c-1.172-10.258,2.443-15.869,6.904-24.84c3.892-7.901,11.955-7.818,16.763-7.135c17.349,2.532,15.576-9.918,20.355-14.697 C288.894,281.918,301.518,278.353,305.655,283.774z"/>
+ <path fill="#FFCD0C" d="M305.603,283.847c5.906,7.756,16.864,16.081,20.777,18.358c2.846,1.635,6.973,3.557,6.901,8.68 c-0.142,5.835-3.131,7.472-4.767,9.107c-3.273,3.273-22.997,11.193-34.399,15.361c-12.337,4.273-18.858,6.533-25.146,7.924 c-3.971,0.829-7.557,2.469-13.588,1.276c-4.234-0.82-6.179-0.972-9.078-3.5c-2.884-2.474-4.878-4.076-5.287-8.152 c-1.158-10.229,2.137-15.606,6.523-24.569c3.895-8.076,12.01-7.611,16.797-6.92c17.293,2.571,15.366-10.236,20.134-15.004 C288.882,281.997,301.476,278.439,305.603,283.847z"/>
+ <path fill="#FFCD0F" d="M305.552,283.92c5.892,7.736,16.824,16.043,20.728,18.313c2.839,1.634,6.957,3.55,6.886,8.66 c-0.142,5.821-3.124,7.454-4.756,9.086c-3.266,3.267-23.161,11.243-34.438,15.179c-12.356,4.047-18.411,6.198-24.733,7.666 c-3.943,0.865-7.656,2.486-13.67,1.301c-4.218-0.812-6.032-0.908-8.922-3.422c-2.869-2.465-4.656-3.855-5.063-7.91 c-1.145-10.203,1.83-15.344,6.145-24.299c3.895-8.252,12.064-7.408,16.83-6.707c17.237,2.61,15.154-10.557,19.912-15.313 C288.87,282.075,301.434,278.525,305.552,283.92z"/>
+ <path fill="#FFCD11" d="M305.501,283.993c5.877,7.719,16.782,16.004,20.678,18.271c2.833,1.628,6.939,3.54,6.869,8.639 c-0.143,5.807-3.116,7.436-4.745,9.064c-3.257,3.258-23.324,11.293-34.479,14.996c-12.375,3.822-17.963,5.863-24.319,7.408 c-3.917,0.9-7.757,2.504-13.752,1.324c-4.2-0.802-5.886-0.842-8.765-3.344c-2.856-2.454-4.438-3.633-4.838-7.669 c-1.132-10.173,1.521-15.081,5.764-24.029c3.896-8.426,12.119-7.2,16.863-6.491c17.183,2.649,14.945-10.875,19.689-15.621 C288.857,282.152,301.392,278.611,305.501,283.993z"/>
+ <path fill="#FFCE14" d="M305.448,284.066c5.863,7.701,16.743,15.966,20.629,18.228c2.826,1.625,6.924,3.531,6.853,8.619 c-0.142,5.793-3.108,7.418-4.733,9.043c-3.25,3.25-23.489,11.342-34.518,14.813c-12.396,3.598-17.517,5.529-23.905,7.148 c-3.891,0.938-7.857,2.524-13.834,1.351c-4.185-0.793-5.74-0.776-8.609-3.267c-2.841-2.444-4.217-3.412-4.613-7.426 c-1.118-10.146,1.216-14.818,5.385-23.76c3.896-8.602,12.174-6.996,16.896-6.277c17.128,2.688,14.735-11.195,19.468-15.929 C288.845,282.229,301.35,278.698,305.448,284.066z"/>
+ <path fill="#FFCE16" d="M305.396,284.139c5.85,7.682,16.703,15.928,20.579,18.184c2.82,1.62,6.907,3.523,6.837,8.598 c-0.141,5.779-3.101,7.4-4.722,9.021c-3.242,3.242-23.653,11.393-34.559,14.631c-12.414,3.372-17.068,5.194-23.491,6.891 c-3.862,0.975-7.957,2.543-13.917,1.375c-4.167-0.783-5.592-0.713-8.451-3.188c-2.827-2.437-3.997-3.19-4.389-7.187 c-1.105-10.117,0.908-14.555,5.004-23.487c3.898-8.776,12.229-6.79,16.928-6.063c17.074,2.728,14.525-11.515,19.248-16.236 C288.833,282.307,301.308,278.784,305.396,284.139z"/>
+ <path fill="#FFCE19" d="M305.344,284.211c5.836,7.664,16.663,15.891,20.529,18.141c2.813,1.617,6.892,3.516,6.82,8.578 c-0.14,5.765-3.093,7.382-4.71,8.999c-3.235,3.233-23.817,11.442-34.598,14.448c-12.434,3.146-16.621,4.859-23.077,6.633 c-3.837,1.01-8.058,2.561-13.999,1.4c-4.15-0.775-5.446-0.648-8.295-3.111c-2.814-2.426-3.777-2.969-4.164-6.944 c-1.094-10.09,0.601-14.293,4.624-23.22c3.898-8.951,12.282-6.584,16.961-5.848c17.019,2.767,14.314-11.834,19.025-16.545 C288.821,282.383,301.266,278.87,305.344,284.211z"/>
+ <path fill="#FFCE1C" d="M305.292,284.286c5.822,7.646,16.623,15.852,20.481,18.096c2.806,1.613,6.874,3.507,6.804,8.558 c-0.141,5.751-3.086,7.364-4.699,8.978c-3.227,3.227-23.981,11.492-34.638,14.267c-12.453,2.921-16.173,4.524-22.663,6.374 c-3.81,1.046-8.158,2.578-14.082,1.424c-4.133-0.766-5.299-0.583-8.137-3.033c-2.801-2.416-3.558-2.748-3.94-6.703 c-1.08-10.062,0.293-14.029,4.244-22.947c3.9-9.127,12.338-6.379,16.994-5.635c16.964,2.805,14.105-12.152,18.805-16.853 C288.809,282.461,301.224,278.956,305.292,284.286z"/>
+ <path fill="#FFCF1E" d="M305.241,284.358c5.808,7.627,16.582,15.814,20.432,18.053c2.799,1.609,6.856,3.498,6.787,8.536 c-0.141,5.738-3.079,7.347-4.688,8.957c-3.219,3.218-24.145,11.541-34.677,14.084c-12.473,2.695-15.727,4.188-22.25,6.115 c-3.783,1.083-8.258,2.599-14.163,1.448c-4.116-0.756-5.153-0.518-7.981-2.954c-2.786-2.408-3.337-2.526-3.716-6.462 c-1.066-10.034-0.013-13.766,3.864-22.678c3.901-9.303,12.393-6.172,17.027-5.42c16.908,2.844,13.896-12.473,18.583-17.16 C288.797,282.54,301.182,279.042,305.241,284.358z"/>
+ <path fill="#FFCF21" d="M305.189,284.431c5.793,7.608,16.542,15.776,20.382,18.009c2.792,1.605,6.84,3.49,6.771,8.516 c-0.14,5.725-3.071,7.33-4.677,8.936c-3.211,3.211-24.309,11.591-34.717,13.902c-12.491,2.47-15.278,3.854-21.836,5.856 c-3.756,1.119-8.357,2.616-14.246,1.474c-4.099-0.748-5.006-0.453-7.823-2.877c-2.772-2.398-3.118-2.306-3.492-6.22 c-1.053-10.007-0.319-13.505,3.484-22.407c3.903-9.479,12.448-5.969,17.062-5.207c16.853,2.883,13.684-12.791,18.36-17.469 C288.785,282.616,301.14,279.125,305.189,284.431z"/>
+ <path fill="#FFCF23" d="M305.137,284.504c5.778,7.59,16.503,15.736,20.332,17.965c2.786,1.602,6.825,3.482,6.755,8.496 c-0.139,5.709-3.064,7.311-4.665,8.912c-3.204,3.203-24.474,11.642-34.759,13.721c-12.51,2.244-14.829,3.52-21.421,5.598 c-3.729,1.155-8.457,2.635-14.327,1.499c-4.082-0.739-4.86-0.389-7.667-2.8c-2.76-2.389-2.897-2.083-3.268-5.979 c-1.04-9.979-0.627-13.24,3.104-22.138c3.903-9.653,12.503-5.762,17.093-4.991c16.799,2.922,13.475-13.111,18.141-17.777 C288.773,282.694,301.098,279.211,305.137,284.504z"/>
+ <path fill="#FFCF26" d="M305.086,284.579c5.765,7.57,16.463,15.697,20.282,17.92c2.779,1.599,6.809,3.474,6.738,8.476 c-0.139,5.696-3.056,7.293-4.654,8.892c-3.194,3.194-24.637,11.69-34.797,13.536c-12.529,2.021-14.382,3.185-21.007,5.341 c-3.703,1.191-8.559,2.652-14.411,1.523c-4.065-0.73-4.713-0.324-7.509-2.723c-2.745-2.379-2.679-1.861-3.043-5.735 c-1.027-9.952-0.936-12.979,2.724-21.868c3.905-9.828,12.557-5.557,17.126-4.777c16.744,2.961,13.265-13.431,17.919-18.084 C288.761,282.771,301.056,279.297,305.086,284.579z"/>
+ <path fill="#FFD028" d="M305.033,284.651c5.752,7.553,16.423,15.66,20.234,17.878c2.771,1.593,6.791,3.464,6.722,8.454 c-0.139,5.682-3.049,7.275-4.643,8.869c-3.188,3.188-24.801,11.74-34.838,13.355c-12.548,1.793-13.935,2.85-20.593,5.082 c-3.676,1.228-8.658,2.67-14.493,1.547c-4.048-0.721-4.565-0.258-7.353-2.644c-2.731-2.37-2.457-1.64-2.818-5.495 c-1.014-9.923-1.242-12.716,2.345-21.597c3.905-10.004,12.611-5.351,17.158-4.563c16.689,3,13.055-13.75,17.698-18.393 C288.749,282.849,301.014,279.383,305.033,284.651z"/>
+ <path fill="#FFD02B" d="M304.982,284.724c5.737,7.534,16.382,15.622,20.184,17.834c2.766,1.59,6.774,3.456,6.705,8.433 c-0.138,5.67-3.041,7.26-4.631,8.85c-3.18,3.179-24.966,11.789-34.877,13.172c-12.568,1.568-13.487,2.515-20.179,4.824 c-3.65,1.263-8.759,2.688-14.575,1.572c-4.031-0.713-4.42-0.195-7.196-2.566c-2.718-2.361-2.238-1.42-2.594-5.254 c-1.001-9.896-1.549-12.453,1.964-21.328c3.907-10.178,12.666-5.145,17.192-4.348c16.634,3.039,12.844-14.068,17.476-18.701 C288.736,282.926,300.972,279.469,304.982,284.724z"/>
+ <path fill="#FFD02D" d="M304.93,284.797c5.723,7.516,16.342,15.584,20.135,17.789c2.758,1.588,6.758,3.449,6.688,8.414 c-0.138,5.654-3.034,7.24-4.619,8.826c-3.173,3.172-25.13,11.84-34.918,12.99c-12.587,1.344-13.039,2.18-19.766,4.564 c-3.622,1.301-8.856,2.709-14.657,1.599c-4.014-0.704-4.272-0.13-7.039-2.489c-2.702-2.352-2.018-1.197-2.369-5.012 c-0.987-9.868-1.855-12.189,1.584-21.057c3.908-10.354,12.722-4.94,17.226-4.135c16.578,3.078,12.634-14.389,17.254-19.009 C288.724,283.004,300.93,279.556,304.93,284.797z"/>
+ <path fill="#FFD030" d="M304.879,284.87c5.709,7.498,16.302,15.547,20.085,17.748c2.752,1.582,6.741,3.438,6.673,8.391 c-0.139,5.642-3.027,7.224-4.609,8.806c-3.164,3.164-25.293,11.89-34.956,12.808c-12.606,1.119-12.592,1.844-19.352,4.308 c-3.596,1.336-8.958,2.726-14.739,1.622c-3.997-0.695-4.127-0.065-6.882-2.411c-2.69-2.343-1.799-0.976-2.146-4.771 c-0.974-9.84-2.163-11.928,1.204-20.787c3.91-10.529,12.777-4.734,17.258-3.92c16.524,3.117,12.424-14.707,17.034-19.316 C288.712,283.081,300.888,279.642,304.879,284.87z"/>
+ </g>
+ <path fill="#FFD133" d="M304.826,284.943c5.695,7.479,16.263,15.509,20.036,17.703c2.745,1.579,6.726,3.431,6.656,8.372 c-0.137,5.627-3.02,7.205-4.597,8.783c-3.157,3.156-25.458,11.939-34.997,12.625c-12.626,0.893-12.145,1.51-18.938,4.049 c-3.569,1.373-9.058,2.745-14.822,1.646c-3.979-0.686-3.979,0-6.725-2.332c-2.676-2.334-1.578-0.756-1.921-4.529 c-0.961-9.813-2.471-11.665,0.824-20.516c3.91-10.705,12.83-4.529,17.29-3.707c16.47,3.156,12.215-15.027,16.813-19.625 C288.7,283.159,300.846,279.728,304.826,284.943z"/>
+ </g>
+ <g>
+ <path fill="#995900" d="M52.494,273.618c-6.479,4.68-22.896,4.248-27.072,9.719c-4.104,5.473,0.145,13.393,0.072,28.08 c0,6.265-1.08,11.017-1.8,14.832c-1.008,4.824-1.656,8.209,0.36,11.664c3.672,6.121,9.575,7.633,43.344,14.688 c18.072,3.744,35.136,13.464,46.584,14.399c11.448,0.865,13.896-2.951,20.88-9.144c6.912-6.192,9.144-4.248,8.928-17.856 c-0.216-13.535-8.928-17.567-18.792-33.191s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S58.974,268.937,52.494,273.618z"/>
+ <g>
+ <path fill="#9E5E00" d="M52.598,273.905c-6.397,4.702-22.475,3.788-27.062,9.512c-4.154,5.414,0.228,13.276,0.098,27.955 c-0.025,6.23-1.152,10.881-1.937,14.877c-1.037,4.871-1.678,8.201,0.349,11.619c3.787,6.162,9.695,7.123,43.456,14.168 c18.061,3.737,34.541,13.307,46.343,14.112c11.186,0.792,13.564-2.829,20.463-8.96c6.896-6.195,9.024-4.277,8.858-17.406 c-0.075-13.521-8.305-17.349-18.169-32.973s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.028,269.168,52.598,273.905z"/>
+ <path fill="#A36400" d="M52.703,274.193c-6.314,4.724-22.054,3.327-27.051,9.304c-4.204,5.356,0.31,13.16,0.123,27.828 c-0.051,6.198-1.225,10.748-2.074,14.924c-1.065,4.918-1.699,8.194,0.339,11.571c3.902,6.206,9.813,6.617,43.567,13.651 c18.05,3.73,33.948,13.146,46.101,13.824c10.923,0.72,13.234-2.707,20.045-8.777c6.885-6.199,8.907-4.305,8.792-16.956 c0.064-13.507-7.683-17.129-17.547-32.753s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.082,269.398,52.703,274.193z"/>
+ <path fill="#A86A00" d="M52.807,274.481c-6.231,4.745-21.633,2.866-27.04,9.094c-4.255,5.299,0.393,13.047,0.148,27.702 c-0.076,6.167-1.297,10.616-2.211,14.972c-1.095,4.965-1.721,8.188,0.328,11.524c4.018,6.25,9.932,6.108,43.679,13.134 c18.039,3.721,33.354,12.988,45.86,13.535c10.659,0.648,12.902-2.585,19.627-8.593c6.869-6.203,8.788-4.335,8.723-16.507 c0.205-13.492-7.06-16.909-16.924-32.533s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.136,269.629,52.807,274.481z"/>
+ <path fill="#AD7000" d="M52.912,274.769c-6.149,4.767-21.211,2.405-27.029,8.885c-4.306,5.242,0.476,12.931,0.173,27.576 c-0.101,6.136-1.368,10.483-2.347,15.019c-1.123,5.012-1.742,8.181,0.316,11.478c4.133,6.293,10.052,5.603,43.791,12.614 c18.028,3.716,32.76,12.83,45.619,13.248c10.396,0.576,12.57-2.463,19.21-8.409c6.854-6.206,8.668-4.363,8.653-16.056 c0.347-13.479-6.437-16.69-16.301-32.314s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.19,269.859,52.912,274.769z"/>
+ <path fill="#B27500" d="M53.016,275.057c-6.066,4.787-20.79,1.943-27.019,8.676c-4.355,5.184,0.559,12.816,0.198,27.45 c-0.126,6.103-1.44,10.351-2.484,15.065c-1.151,5.059-1.764,8.172,0.307,11.431c4.248,6.336,10.17,5.094,43.901,12.096 c18.019,3.708,32.166,12.672,45.378,12.96c10.135,0.504,12.24-2.34,18.792-8.227c6.841-6.209,8.551-4.391,8.586-15.605 c0.486-13.464-5.813-16.47-15.678-32.094s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.244,270.088,53.016,275.057z"/>
+ <path fill="#B77B00" d="M53.121,275.344c-5.983,4.811-20.369,1.484-27.008,8.469c-4.406,5.126,0.641,12.7,0.224,27.324 c-0.151,6.068-1.512,10.216-2.621,15.111c-1.181,5.105-1.785,8.166,0.295,11.385c4.363,6.379,10.289,4.586,44.014,11.576 c18.008,3.701,31.572,12.515,45.137,12.672c9.872,0.433,11.909-2.217,18.375-8.041c6.825-6.215,8.431-4.422,8.518-15.156 c0.627-13.45-5.191-16.251-15.056-31.875s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.299,270.32,53.121,275.344z"/>
+ <path fill="#BC8100" d="M53.225,275.633c-5.9,4.832-19.948,1.023-26.997,8.259c-4.457,5.069,0.724,12.585,0.249,27.198 c-0.177,6.037-1.584,10.082-2.758,15.158c-1.21,5.152-1.808,8.158,0.284,11.338c4.479,6.422,10.407,4.078,44.125,11.059 c17.997,3.693,30.979,12.355,44.896,12.384c9.608,0.36,11.578-2.095,17.957-7.858c6.812-6.217,8.313-4.449,8.45-14.707 c0.766-13.435-4.569-16.03-14.434-31.654s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.352,270.549,53.225,275.633z"/>
+ <path fill="#C18700" d="M53.329,275.92c-5.817,4.854-19.526,0.563-26.985,8.051c-4.507,5.011,0.807,12.47,0.273,27.072 c-0.201,6.004-1.655,9.949-2.894,15.205c-1.239,5.199-1.829,8.151,0.273,11.291c4.594,6.465,10.526,3.57,44.236,10.541 c17.985,3.686,30.384,12.196,44.655,12.096c9.345,0.287,11.245-1.973,17.539-7.676c6.797-6.221,8.193-4.479,8.381-14.256 c0.906-13.42-3.946-15.812-13.811-31.436s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.406,270.782,53.329,275.92z"/>
+ <path fill="#C68C00" d="M53.433,276.209c-5.734,4.875-19.104,0.101-26.975,7.84c-4.558,4.955,0.89,12.355,0.299,26.947 c-0.227,5.973-1.728,9.816-3.031,15.252c-1.267,5.246-1.851,8.145,0.263,11.244c4.709,6.508,10.646,3.063,44.349,10.022 c17.975,3.679,29.79,12.038,44.413,11.808c9.083,0.217,10.915-1.851,17.122-7.492c6.782-6.224,8.074-4.506,8.313-13.806 c1.048-13.405-3.323-15.592-13.188-31.216s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.46,271.01,53.433,276.209z"/>
+ <path fill="#CC9200" d="M53.538,276.497c-5.651,4.896-18.684-0.359-26.964,7.633c-4.607,4.896,0.972,12.24,0.324,26.82 c-0.252,5.939-1.8,9.684-3.168,15.299c-1.296,5.293-1.872,8.137,0.252,11.196c4.824,6.552,10.764,2.556,44.46,9.505 c17.964,3.672,29.196,11.879,44.172,11.52c8.82,0.144,10.584-1.729,16.704-7.309c6.768-6.228,7.956-4.535,8.244-13.355 c1.188-13.393-2.7-15.372-12.564-30.996s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.514,271.241,53.538,276.497z"/>
+ <path fill="#D19800" d="M53.642,276.786c-5.569,4.918-18.263-0.82-26.953,7.424c-4.658,4.838,1.055,12.123,0.35,26.693 c-0.277,5.907-1.872,9.551-3.305,15.346c-1.325,5.34-1.894,8.129,0.241,11.15c4.938,6.596,10.883,2.048,44.571,8.984 c17.953,3.666,28.602,11.723,43.931,11.232c8.558,0.072,10.253-1.605,16.287-7.123c6.753-6.232,7.837-4.566,8.175-12.906 c1.329-13.379-2.077-15.153-11.941-30.777s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.568,271.472,53.642,276.786z"/>
+ <path fill="#D69E00" d="M53.747,277.073c-5.486,4.94-17.842-1.281-26.942,7.215c-4.709,4.781,1.138,12.01,0.374,26.568 c-0.302,5.875-1.943,9.417-3.441,15.393c-1.354,5.387-1.915,8.123,0.23,11.104c5.055,6.639,11.002,1.541,44.684,8.467 c17.942,3.658,28.008,11.563,43.688,10.944c8.296,0,9.923-1.483,15.869-6.941c6.74-6.235,7.72-4.593,8.108-12.456 c1.468-13.363-1.455-14.933-11.319-30.557s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.622,271.702,53.747,277.073z"/>
+ <path fill="#DBA300" d="M53.851,277.361c-5.403,4.962-17.421-1.741-26.932,7.007c-4.759,4.723,1.221,11.893,0.399,26.441 c-0.327,5.843-2.016,9.283-3.578,15.439c-1.383,5.434-1.937,8.115,0.22,11.057c5.169,6.682,11.12,1.033,44.795,7.949 c17.932,3.649,27.414,11.404,43.448,10.656c8.031-0.072,9.59-1.361,15.451-6.758c6.725-6.238,7.6-4.623,8.039-12.006 c1.609-13.35-0.832-14.714-10.696-30.338s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.677,271.933,53.851,277.361z"/>
+ <path fill="#E0A900" d="M53.956,277.649c-5.321,4.982-16.999-2.203-26.921,6.797c-4.81,4.666,1.303,11.779,0.425,26.316 c-0.353,5.811-2.088,9.15-3.715,15.486c-1.411,5.48-1.959,8.108,0.208,11.01c5.285,6.725,11.239,0.525,44.907,7.431 c17.92,3.644,26.819,11.246,43.207,10.368c7.769-0.145,9.259-1.239,15.034-6.574c6.71-6.242,7.479-4.65,7.97-11.557 c1.75-13.334-0.209-14.493-10.073-30.117s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.73,272.163,53.956,277.649z"/>
+ <path fill="#E5AF00" d="M54.06,277.937c-5.238,5.004-16.578-2.664-26.91,6.588c-4.86,4.608,1.386,11.664,0.45,26.19 c-0.378,5.777-2.16,9.018-3.853,15.533c-1.439,5.526-1.979,8.101,0.198,10.963c5.4,6.768,11.358,0.018,45.018,6.912 c17.91,3.635,26.227,11.088,42.967,10.08c7.506-0.217,8.928-1.117,14.615-6.391c6.696-6.246,7.362-4.68,7.902-11.105 c1.89-13.32,0.414-14.274-9.45-29.898s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.784,272.393,54.06,277.937z"/>
+ <path fill="#EAB500" d="M54.165,278.225c-5.155,5.025-16.157-3.124-26.899,6.38c-4.91,4.55,1.469,11.548,0.476,26.063 c-0.403,5.746-2.232,8.885-3.989,15.58c-1.469,5.573-2.002,8.094,0.188,10.916c5.515,6.812,11.477-0.49,45.129,6.394 c17.899,3.629,25.633,10.93,42.725,9.792c7.243-0.288,8.598-0.993,14.199-6.206c6.681-6.25,7.243-4.709,7.833-10.656 c2.031-13.306,1.037-14.055-8.827-29.679s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.838,272.624,54.165,278.225z"/>
+ <path fill="#EFBA00" d="M54.269,278.513c-5.073,5.048-15.736-3.585-26.889,6.171c-4.961,4.492,1.552,11.434,0.5,25.938 c-0.428,5.713-2.304,8.752-4.125,15.627c-1.498,5.621-2.023,8.086,0.176,10.869c5.631,6.854,11.596-0.996,45.241,5.875 c17.889,3.623,25.038,10.771,42.483,9.504c6.981-0.359,8.266-0.871,13.781-6.022c6.668-6.253,7.125-4.737,7.766-10.206 c2.17-13.291,1.659-13.835-8.205-29.459s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.892,272.854,54.269,278.513z"/>
+ <path fill="#F4C000" d="M54.374,278.801c-4.99,5.068-15.314-4.047-26.878,5.962c-5.012,4.435,1.634,11.317,0.525,25.812 c-0.453,5.682-2.376,8.618-4.263,15.674c-1.526,5.668-2.045,8.08,0.166,10.822c5.745,6.898,11.714-1.505,45.353,5.357 c17.878,3.613,24.444,10.613,42.243,9.216c6.717-0.433,7.934-0.749,13.362-5.839c6.653-6.258,7.007-4.768,7.697-9.756 c2.312-13.277,2.282-13.616-7.582-29.24s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S59.946,273.084,54.374,278.801z"/>
+ <path fill="#F9C600" d="M54.477,279.088c-4.906,5.092-14.893-4.506-26.866,5.754c-5.062,4.377,1.717,11.203,0.551,25.686 c-0.479,5.648-2.448,8.485-4.399,15.721c-1.555,5.715-2.066,8.072,0.155,10.775c5.86,6.941,11.833-2.012,45.464,4.839 c17.867,3.607,23.851,10.454,42.001,8.929c6.455-0.504,7.604-0.627,12.946-5.656c6.638-6.26,6.886-4.795,7.628-9.307 c2.452-13.262,2.905-13.396-6.959-29.02s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S60,273.315,54.477,279.088z"/>
+ </g>
+ <path fill="#FFCC00" d="M54.582,279.377c-4.823,5.111-14.472-4.969-26.855,5.543c-5.112,4.32,1.8,11.088,0.576,25.561 c-0.504,5.616-2.521,8.352-4.536,15.768c-1.584,5.76-2.088,8.064,0.144,10.729c5.977,6.984,11.952-2.52,45.576,4.32 c17.856,3.6,23.256,10.295,41.76,8.64c6.192-0.576,7.272-0.504,12.528-5.472c6.624-6.264,6.768-4.824,7.56-8.856 c2.592-13.248,3.528-13.176-6.336-28.8s-11.448-18.504-18-28.872c-6.552-10.224-19.512-28.8-26.928-29.017 c-5.904-0.144-9.216,3.024-12.888,6.769S60.054,273.545,54.582,279.377z"/>
+ </g>
+ <g>
+ <path fill="#FFCC00" d="M57.701,285.002c-4.278,4.539-18.28-1.36-24.892,3.631c-4.732,3.5,2.398,7.908,1.426,20.873 c-0.389,4.926-3.824,5.834-2.398,12.64c1.103,5.121,2.27,4.991,4.214,7.325c5.315,6.223,4.084,1.686,34.355,7.777 c16.011,3.242,20.938,9.271,37.596,7.779c5.575-0.518,6.612-0.453,11.279-4.926c5.964-5.575,2.917-4.408,3.565-7.973 c2.269-11.863,0.453-13.938-8.428-28.004c-8.88-14.066-8.102-14.844-13.936-24.113c-5.834-9.141-13.872-25.799-20.549-25.93 c-5.25-0.129-8.297,2.723-11.603,6.094C65.025,263.547,62.562,279.818,57.701,285.002z"/>
+ <g>
+ <path fill="#FFCC02" d="M57.995,285.094c-4.461,4.701-18.604-1.196-25.06,3.705c-4.701,3.514,2.578,8.05,1.608,20.68 c-0.4,4.896-3.733,5.877-2.458,12.634c0.986,5.093,2.357,4.938,4.334,7.201c5.686,6.131,4.673,1.826,34.119,7.743 c15.918,3.211,20.815,9.215,37.372,7.732c5.541-0.513,6.479-0.463,11.155-4.849c5.865-5.407,2.858-4.287,3.412-8.058 c2.066-11.787,0.442-13.981-8.188-27.649c-8.83-13.983-8.143-14.698-13.941-23.913c-5.8-9.085-13.701-25.805-20.338-25.934 c-5.219-0.129-8.248,2.705-11.533,6.057C65.19,263.795,62.833,279.948,57.995,285.094z"/>
+ <path fill="#FFCC05" d="M58.289,285.185c-4.644,4.866-18.93-1.031-25.229,3.78c-4.669,3.527,2.759,8.191,1.792,20.488 c-0.413,4.866-3.642,5.918-2.519,12.625c0.872,5.066,2.447,4.887,4.455,7.078c6.057,6.04,5.263,1.969,33.883,7.709 c15.825,3.18,20.693,9.159,37.148,7.686c5.508-0.506,6.345-0.471,11.03-4.77c5.768-5.24,2.803-4.168,3.26-8.142 c1.865-11.716,0.432-14.027-7.949-27.298c-8.78-13.899-8.183-14.553-13.948-23.713c-5.764-9.03-13.529-25.811-20.126-25.938 c-5.188-0.129-8.198,2.688-11.465,6.021C65.355,264.042,63.104,280.079,58.289,285.185z"/>
+ <path fill="#FFCC07" d="M58.584,285.276c-4.827,5.03-19.255-0.865-25.397,3.855c-4.639,3.541,2.938,8.332,1.975,20.295 c-0.425,4.838-3.551,5.961-2.578,12.619c0.757,5.039,2.536,4.834,4.575,6.955c6.428,5.949,5.852,2.108,33.646,7.674 c15.733,3.147,20.571,9.103,36.925,7.639c5.475-0.501,6.211-0.48,10.905-4.693c5.67-5.072,2.745-4.045,3.107-8.224 c1.663-11.642,0.42-14.073-7.711-26.946c-8.73-13.814-8.223-14.406-13.952-23.511c-5.729-8.976-13.358-25.817-19.916-25.944 c-5.156-0.127-8.148,2.674-11.396,5.984S63.376,280.208,58.584,285.276z"/>
+ <path fill="#FFCD0A" d="M58.878,285.368c-5.01,5.193-19.579-0.701-25.565,3.93c-4.607,3.555,3.117,8.475,2.157,20.102 c-0.437,4.809-3.459,6.004-2.639,12.613c0.643,5.011,2.626,4.781,4.695,6.83c6.799,5.857,6.442,2.25,33.411,7.64 c15.641,3.118,20.45,9.048,36.701,7.593c5.44-0.494,6.076-0.488,10.781-4.615c5.57-4.904,2.688-3.926,2.954-8.308 c1.462-11.569,0.409-14.118-7.472-26.593c-8.68-13.732-8.263-14.262-13.958-23.311c-5.695-8.922-13.188-25.824-19.705-25.951 c-5.125-0.127-8.1,2.658-11.326,5.949C65.685,264.536,63.646,280.338,58.878,285.368z"/>
+ <path fill="#FFCD0C" d="M59.173,285.458c-5.193,5.358-19.905-0.535-25.734,4.008c-4.577,3.566,3.297,8.613,2.34,19.908 c-0.449,4.778-3.368,6.045-2.698,12.605c0.526,4.982,2.715,4.729,4.815,6.707c7.17,5.766,7.031,2.391,33.175,7.604 c15.549,3.088,20.328,8.994,36.477,7.547c5.408-0.488,5.943-0.498,10.657-4.537c5.472-4.737,2.63-3.805,2.802-8.393 c1.261-11.494,0.398-14.162-7.232-26.24c-8.63-13.647-8.304-14.117-13.964-23.109c-5.66-8.867-13.017-25.829-19.494-25.956 c-5.094-0.126-8.05,2.642-11.257,5.912C65.85,264.784,63.918,280.469,59.173,285.458z"/>
+ <path fill="#FFCD0F" d="M59.467,285.547c-5.376,5.523-20.229-0.369-25.903,4.084c-4.545,3.58,3.478,8.756,2.523,19.715 c-0.461,4.75-3.277,6.088-2.758,12.599c0.411,4.955,2.804,4.677,4.936,6.584c7.541,5.675,7.621,2.532,32.938,7.569 c15.456,3.056,20.206,8.938,36.253,7.5c5.375-0.482,5.811-0.506,10.533-4.459c5.374-4.57,2.572-3.686,2.649-8.477 c1.058-11.42,0.387-14.209-6.995-25.888c-8.58-13.563-8.344-13.972-13.969-22.909c-5.626-8.813-12.846-25.834-19.283-25.961 c-5.063-0.125-8,2.625-11.188,5.877C66.015,265.032,64.188,280.599,59.467,285.547z"/>
+ <path fill="#FFCD11" d="M59.76,285.639c-5.559,5.688-20.555-0.205-26.071,4.158c-4.515,3.594,3.657,8.896,2.706,19.521 c-0.473,4.721-3.186,6.131-2.818,12.594c0.297,4.926,2.894,4.623,5.057,6.459c7.911,5.584,8.21,2.674,32.703,7.535 c15.362,3.025,20.084,8.883,36.027,7.453c5.342-0.477,5.677-0.515,10.409-4.381c5.275-4.402,2.516-3.564,2.497-8.561 c0.855-11.348,0.375-14.254-6.756-25.535c-8.53-13.479-8.385-13.825-13.976-22.709c-5.59-8.758-12.673-25.842-19.071-25.965 c-5.031-0.125-7.951,2.608-11.119,5.838C66.18,265.278,64.46,280.73,59.76,285.639z"/>
+ <path fill="#FFCE14" d="M60.055,285.73c-5.742,5.851-20.88-0.04-26.24,4.233c-4.483,3.607,3.837,9.039,2.889,19.33 c-0.485,4.69-3.095,6.172-2.878,12.584c0.182,4.9,2.982,4.572,5.177,6.338c8.282,5.492,8.8,2.814,32.467,7.498 c15.271,2.996,19.962,8.828,35.804,7.408c5.309-0.472,5.543-0.523,10.285-4.304c5.177-4.235,2.458-3.444,2.344-8.644 c0.654-11.273,0.364-14.299-6.518-25.184c-8.479-13.395-8.425-13.679-13.98-22.507c-5.556-8.704-12.502-25.849-18.86-25.972 c-5-0.123-7.901,2.593-11.05,5.803S64.73,280.86,60.055,285.73z"/>
+ <path fill="#FFCE16" d="M60.349,285.821c-5.925,6.016-21.205,0.125-26.408,4.309c-4.453,3.621,4.017,9.18,3.07,19.137 c-0.496,4.662-3.002,6.215-2.938,12.579c0.066,4.872,3.072,4.518,5.298,6.213c8.653,5.401,9.389,2.956,32.23,7.464 c15.178,2.964,19.84,8.771,35.58,7.361c5.275-0.465,5.409-0.532,10.159-4.225c5.079-4.068,2.401-3.324,2.192-8.729 c0.452-11.2,0.354-14.346-6.279-24.831c-8.429-13.312-8.464-13.534-13.985-22.306c-5.521-8.65-12.331-25.854-18.649-25.978 c-4.969-0.123-7.853,2.577-10.98,5.767C66.51,265.772,65.002,280.991,60.349,285.821z"/>
+ <path fill="#FFCE19" d="M60.643,285.911c-6.107,6.18-21.529,0.291-26.577,4.385c-4.421,3.635,4.197,9.322,3.254,18.945 c-0.508,4.631-2.911,6.256-2.997,12.571c-0.049,4.845,3.161,4.465,5.418,6.089c9.023,5.309,9.979,3.098,31.994,7.43 c15.085,2.934,19.718,8.717,35.355,7.314c5.242-0.459,5.276-0.541,10.036-4.148c4.98-3.899,2.344-3.203,2.039-8.811 c0.25-11.127,0.342-14.391-6.04-24.479c-8.38-13.228-8.505-13.389-13.991-22.105c-5.486-8.596-12.16-25.859-18.438-25.982 c-4.938-0.123-7.803,2.561-10.911,5.73C66.676,266.02,65.272,281.122,60.643,285.911z"/>
+ <path fill="#FFCE1C" d="M60.938,286.002c-6.291,6.344-21.855,0.455-26.746,4.459c-4.391,3.648,4.377,9.463,3.437,18.752 c-0.521,4.603-2.82,6.299-3.058,12.564c-0.163,4.817,3.251,4.413,5.539,5.965c9.395,5.219,10.567,3.24,31.758,7.396 c14.993,2.903,19.597,8.661,35.132,7.269c5.209-0.453,5.143-0.55,9.912-4.07c4.882-3.732,2.286-3.082,1.887-8.895 c0.048-11.053,0.329-14.436-5.802-24.126c-8.33-13.144-8.545-13.243-13.997-21.905c-5.451-8.541-11.988-25.865-18.228-25.988 c-4.906-0.121-7.753,2.545-10.843,5.695C66.841,266.267,65.544,281.25,60.938,286.002z"/>
+ <path fill="#FFCF1E" d="M61.232,286.092c-6.473,6.51-22.18,0.621-26.914,4.535c-4.359,3.662,4.557,9.604,3.619,18.559 c-0.532,4.574-2.729,6.342-3.117,12.559c-0.278,4.789,3.34,4.36,5.659,5.842c9.766,5.127,11.157,3.381,31.521,7.359 c14.9,2.872,19.475,8.607,34.908,7.223c5.176-0.447,5.008-0.559,9.787-3.992c4.784-3.565,2.229-2.963,1.735-8.979 c-0.155-10.98,0.317-14.482-5.564-23.773c-8.279-13.061-8.585-13.098-14.002-21.705c-5.416-8.485-11.817-25.871-18.017-25.992 c-4.875-0.121-7.704,2.527-10.773,5.658C67.006,266.514,65.814,281.381,61.232,286.092z"/>
+ <path fill="#FFCF21" d="M61.526,286.184c-6.655,6.673-22.505,0.785-27.082,4.611c-4.328,3.674,4.736,9.744,3.802,18.365 c-0.544,4.543-2.638,6.383-3.178,12.551c-0.394,4.761,3.43,4.308,5.78,5.718c10.136,5.036,11.746,3.522,31.285,7.325 c14.808,2.841,19.353,8.551,34.685,7.176c5.142-0.441,4.875-0.567,9.663-3.914c4.685-3.398,2.171-2.842,1.582-9.063 c-0.357-10.906,0.307-14.527-5.325-23.422c-8.23-12.976-8.625-12.951-14.008-21.503c-5.382-8.432-11.646-25.878-17.806-25.999 c-4.844-0.119-7.654,2.512-10.704,5.622C67.171,266.76,66.086,281.51,61.526,286.184z"/>
+ <path fill="#FFCF23" d="M61.821,286.275c-6.839,6.837-22.83,0.95-27.251,4.687c-4.298,3.688,4.916,9.886,3.984,18.172 c-0.557,4.515-2.546,6.426-3.237,12.545c-0.509,4.732,3.519,4.255,5.9,5.594c10.507,4.945,12.336,3.663,31.05,7.29 c14.715,2.812,19.23,8.496,34.46,7.129c5.108-0.435,4.74-0.575,9.538-3.835c4.587-3.23,2.113-2.723,1.43-9.146 c-0.559-10.834,0.296-14.572-5.086-23.069c-8.18-12.892-8.666-12.806-14.014-21.302c-5.347-8.377-11.476-25.885-17.595-26.004 c-4.813-0.119-7.605,2.496-10.635,5.584C67.336,267.008,66.357,281.642,61.821,286.275z"/>
+ <path fill="#FFCF26" d="M62.115,286.366c-7.021,7.002-23.154,1.115-27.42,4.762c-4.266,3.701,5.096,10.027,4.168,17.979 c-0.568,4.486-2.455,6.469-3.297,12.538c-0.624,4.706,3.607,4.203,6.021,5.472c10.878,4.852,12.925,3.803,30.813,7.254 c14.622,2.78,19.108,8.441,34.236,7.084c5.075-0.43,4.606-0.584,9.413-3.759c4.489-3.063,2.058-2.601,1.277-9.229 c-0.761-10.76,0.284-14.618-4.848-22.717c-8.129-12.809-8.706-12.66-14.019-21.102c-5.313-8.322-11.304-25.891-17.384-26.01 c-4.781-0.118-7.556,2.48-10.566,5.55C67.501,267.256,66.628,281.772,62.115,286.366z"/>
+ <path fill="#FFD028" d="M62.409,286.456c-7.204,7.166-23.479,1.281-27.588,4.838c-4.235,3.715,5.275,10.168,4.351,17.787 c-0.58,4.455-2.364,6.51-3.357,12.53c-0.738,4.679,3.697,4.149,6.142,5.347c11.249,4.763,13.515,3.946,30.577,7.221 c14.529,2.748,18.986,8.386,34.012,7.037c5.043-0.424,4.474-0.594,9.289-3.68c4.392-2.897,2-2.481,1.125-9.314 c-0.963-10.686,0.273-14.664-4.608-22.364c-8.079-12.726-8.746-12.517-14.024-20.901c-5.277-8.269-11.133-25.896-17.173-26.015 c-4.75-0.116-7.506,2.464-10.497,5.513C67.666,267.502,66.899,281.902,62.409,286.456z"/>
+ <path fill="#FFD02B" d="M62.704,286.547c-7.388,7.33-23.805,1.445-27.757,4.912c-4.204,3.729,5.455,10.311,4.533,17.594 c-0.593,4.427-2.272,6.553-3.417,12.523c-0.854,4.651,3.786,4.098,6.262,5.225c11.619,4.671,14.104,4.087,30.341,7.185 c14.438,2.72,18.864,8.33,33.787,6.991c5.01-0.418,4.341-0.604,9.166-3.604c4.292-2.729,1.942-2.359,0.972-9.396 c-1.163-10.613,0.263-14.709-4.369-22.012c-8.03-12.641-8.787-12.371-14.03-20.7c-5.243-8.214-10.962-25.903-16.962-26.021 c-4.719-0.117-7.457,2.447-10.428,5.477C67.83,267.75,67.17,282.034,62.704,286.547z"/>
+ <path fill="#FFD02D" d="M62.998,286.638c-7.57,7.493-24.13,1.61-27.925,4.987c-4.174,3.742,5.635,10.451,4.716,17.4 c-0.604,4.398-2.182,6.596-3.478,12.518c-0.969,4.623,3.875,4.045,6.382,5.101c11.991,4.579,14.694,4.228,30.105,7.149 c14.345,2.688,18.743,8.275,33.563,6.944c4.977-0.411,4.207-0.61,9.042-3.524c4.193-2.562,1.884-2.239,0.819-9.481 c-1.366-10.538,0.251-14.754-4.133-21.659c-7.979-12.557-8.825-12.224-14.034-20.498c-5.208-8.16-10.791-25.91-16.751-26.027 c-4.688-0.114-7.407,2.433-10.358,5.441C67.995,267.999,67.441,282.163,62.998,286.638z"/>
+ <path fill="#FFD030" d="M63.292,286.729c-7.753,7.658-24.454,1.775-28.094,5.063c-4.142,3.756,5.815,10.594,4.899,17.209 c-0.616,4.367-2.09,6.638-3.537,12.51c-1.084,4.596,3.964,3.992,6.502,4.977c12.362,4.488,15.283,4.369,29.869,7.115 c14.252,2.656,18.621,8.22,33.34,6.898c4.943-0.406,4.073-0.621,8.917-3.447c4.095-2.395,1.828-2.119,0.667-9.565 c-1.568-10.465,0.239-14.8-3.894-21.307c-7.929-12.474-8.866-12.078-14.04-20.298c-5.173-8.105-10.619-25.916-16.54-26.031 c-4.656-0.115-7.357,2.415-10.289,5.404C68.16,268.245,67.712,282.293,63.292,286.729z"/>
+ </g>
+ <path fill="#FFD133" d="M63.587,286.82c-7.937,7.822-24.78,1.94-28.263,5.138c-4.111,3.77,5.995,10.734,5.081,17.016 c-0.627,4.339-1.998,6.68-3.597,12.504c-1.199,4.568,4.054,3.939,6.623,4.854c12.732,4.396,15.873,4.51,29.633,7.08 c14.16,2.625,18.499,8.164,33.116,6.852c4.909-0.4,3.939-0.629,8.793-3.369c3.997-2.227,1.77-1.999,0.514-9.648 c-1.771-10.393,0.228-14.846-3.654-20.955c-7.88-12.39-8.907-11.934-14.046-20.098c-5.139-8.051-10.448-25.922-16.329-26.037 c-4.625-0.113-7.309,2.398-10.221,5.368S67.983,282.422,63.587,286.82z"/>
+ </g>
+ <g>
+ <path d="M88.782,218.681c-0.936,2.088-1.728,20.017,2.952,27c4.68,6.911,3.312,10.872-1.872,5.616 c-5.4-5.112-8.928-12.816-9-18.145c0-3.096,2.376-15.84,3.313-17.208C85.182,214.504,89.502,217.097,88.782,218.681z"/>
+ <g>
+ <path fill="#030303" d="M88.692,219.032c-0.903,2.34-1.656,19.698,3.01,26.668c4.665,6.901,3.186,10.49-1.84,5.356 c-5.23-4.997-8.607-12.47-8.741-17.787c-0.043-3.114,2.236-15.419,3.133-16.791C85.215,215.084,89.38,217.467,88.692,219.032z"/>
+ <path fill="#070707" d="M88.602,219.379c-0.871,2.593-1.584,19.383,3.067,26.338c4.65,6.891,3.06,10.109-1.808,5.098 c-5.062-4.882-8.287-12.125-8.481-17.432c-0.087-3.131,2.095-14.998,2.952-16.373C85.247,215.665,89.258,217.838,88.602,219.379z"/>
+ <path fill="#0B0B0B" d="M88.512,219.729c-0.839,2.844-1.513,19.066,3.124,26.006c4.638,6.881,2.935,9.729-1.774,4.84 c-4.893-4.768-7.967-11.779-8.223-17.076c-0.129-3.149,1.955-14.576,2.772-15.955C85.279,216.245,89.135,218.209,88.512,219.729z"/>
+ <path fill="#0F0F0F" d="M88.422,220.079c-0.806,3.096-1.439,18.748,3.183,25.674c4.623,6.869,2.809,9.347-1.742,4.58 c-4.724-4.651-7.646-11.434-7.963-16.719c-0.173-3.168,1.814-14.154,2.592-15.537C85.311,216.825,89.012,218.581,88.422,220.079z"/>
+ <path fill="#131313" d="M88.332,220.426c-0.773,3.349-1.368,18.433,3.24,25.345c4.608,6.858,2.682,8.964-1.71,4.319 c-4.554-4.535-7.326-11.088-7.704-16.361c-0.216-3.186,1.674-13.734,2.412-15.12C85.344,217.403,88.89,218.952,88.332,220.426z"/>
+ <path fill="#161616" d="M88.242,220.777c-0.741,3.601-1.296,18.115,3.298,25.013c4.594,6.848,2.556,8.582-1.678,4.061 c-4.385-4.421-7.006-10.742-7.444-16.006c-0.26-3.203,1.533-13.313,2.231-14.702C85.377,217.983,88.767,219.323,88.242,220.777z"/>
+ <path fill="#1A1A1A" d="M88.152,221.125c-0.709,3.853-1.224,17.799,3.355,24.682c4.579,6.837,2.43,8.201-1.646,3.802 c-4.216-4.306-6.686-10.397-7.186-15.649c-0.303-3.221,1.394-12.892,2.052-14.285C85.409,218.563,88.645,219.693,88.152,221.125z"/>
+ <path fill="#1E1E1E" d="M88.062,221.475c-0.677,4.104-1.152,17.482,3.413,24.35c4.564,6.826,2.304,7.82-1.613,3.543 c-4.046-4.191-6.365-10.051-6.927-15.293c-0.345-3.24,1.253-12.47,1.872-13.867C85.441,219.142,88.523,220.064,88.062,221.475z"/>
+ <path fill="#222222" d="M87.972,221.825c-0.645,4.355-1.08,17.164,3.47,24.018c4.551,6.816,2.179,7.439-1.58,3.285 c-3.877-4.076-6.044-9.707-6.667-14.938c-0.389-3.258,1.112-12.049,1.691-13.449C85.473,219.722,88.4,220.435,87.972,221.825z"/>
+ <path fill="#262626" d="M87.883,222.172c-0.612,4.609-1.009,16.849,3.527,23.688c4.536,6.804,2.052,7.056-1.548,3.024 c-3.708-3.961-5.724-9.36-6.408-14.58c-0.432-3.276,0.973-11.629,1.513-13.032C85.507,220.301,88.278,220.805,87.883,222.172z"/>
+ <path fill="#2A2A2A" d="M87.792,222.523c-0.579,4.86-0.936,16.531,3.586,23.356c4.521,6.793,1.926,6.675-1.516,2.765 c-3.539-3.845-5.403-9.015-6.148-14.224c-0.476-3.293,0.831-11.207,1.332-12.614C85.539,220.881,88.156,221.176,87.792,222.523z"/>
+ <path fill="#2D2D2D" d="M87.702,222.872c-0.547,5.112-0.864,16.215,3.644,23.025c4.507,6.783,1.8,6.293-1.483,2.506 c-3.369-3.73-5.083-8.669-5.89-13.867c-0.519-3.312,0.691-10.785,1.152-12.197C85.571,221.461,88.033,221.547,87.702,222.872z"/>
+ <path fill="#313131" d="M87.612,223.221c-0.515,5.363-0.792,15.898,3.701,22.693c4.492,6.772,1.674,5.912-1.451,2.248 c-3.2-3.615-4.763-8.324-5.63-13.512c-0.563-3.33,0.551-10.363,0.972-11.779C85.603,222.04,87.911,221.918,87.612,223.221z"/>
+ <path fill="#353535" d="M87.522,223.57c-0.482,5.616-0.72,15.581,3.758,22.363c4.479,6.761,1.549,5.53-1.418,1.987 c-3.031-3.5-4.442-7.978-5.371-13.154c-0.604-3.348,0.41-9.943,0.792-11.361C85.635,222.62,87.789,222.29,87.522,223.57z"/>
+ <path fill="#393939" d="M87.432,223.918c-0.45,5.869-0.648,15.265,3.815,22.033c4.464,6.75,1.422,5.147-1.386,1.728 c-2.862-3.384-4.122-7.632-5.112-12.798c-0.647-3.366,0.271-9.522,0.612-10.944C85.668,223.2,87.666,222.659,87.432,223.918z"/>
+ <path fill="#3D3D3D" d="M87.343,224.269c-0.418,6.12-0.576,14.946,3.873,21.7c4.45,6.74,1.296,4.767-1.354,1.469 c-2.692-3.27-3.802-7.286-4.853-12.441c-0.691-3.383,0.129-9.101,0.432-10.527C85.701,223.779,87.544,223.03,87.343,224.269z"/>
+ <path fill="#414141" d="M87.252,224.618c-0.385,6.373-0.504,14.631,3.932,21.369c4.436,6.729,1.17,4.385-1.321,1.211 c-2.523-3.154-3.481-6.941-4.594-12.086c-0.734-3.402-0.011-8.68,0.252-10.109C85.733,224.359,87.422,223.401,87.252,224.618z"/>
+ <path fill="#444444" d="M87.162,224.967c-0.353,6.623-0.432,14.314,3.989,21.037c4.421,6.719,1.044,4.004-1.289,0.951 c-2.354-3.039-3.161-6.595-4.334-11.729c-0.778-3.42-0.151-8.258,0.071-9.691C85.765,224.938,87.299,223.772,87.162,224.967z"/>
+ <path fill="#484848" d="M87.072,225.316c-0.32,6.876-0.36,13.997,4.047,20.707c4.406,6.707,0.918,3.622-1.257,0.692 c-2.186-2.924-2.841-6.25-4.075-11.373c-0.82-3.438-0.292-7.838-0.108-9.273C85.798,225.518,87.177,224.143,87.072,225.316z"/>
+ </g>
+ <path fill="#4C4C4C" d="M86.982,225.665c-0.288,7.129-0.288,13.68,4.104,20.377c4.393,6.695,0.792,3.24-1.224,0.432 s-2.52-5.904-3.816-11.016c-0.863-3.457-0.432-7.416-0.287-8.856C85.83,226.097,87.054,224.513,86.982,225.665z"/>
+ </g>
+ <g>
+ <path d="M88.782,218.681c4.32-9.433,6.696-19.584,12.888-29.448c6.12-9.792,3.672-13.608-0.863-8.64 c-4.536,4.968-9.504,15.48-9.504,15.48s-5.832,9.216-7.128,19.872C83.958,217.745,88.062,220.193,88.782,218.681z"/>
+ <g>
+ <path fill="#020202" d="M88.968,218.071c4.279-9.5,6.615-19.246,12.586-28.802c5.901-9.488,3.608-13.279-0.764-8.472 c-4.403,4.847-9.302,15.236-9.368,15.381c0,0-5.637,8.993-6.877,19.239C84.336,217.188,88.265,219.562,88.968,218.071z"/>
+ <path fill="#050505" d="M89.152,217.459c4.239-9.566,6.535-18.908,12.284-28.155c5.683-9.183,3.547-12.95-0.663-8.303 c-4.27,4.725-9.099,14.991-9.231,15.282c0,0-5.442,8.766-6.627,18.605C84.714,216.629,88.469,218.93,89.152,217.459z"/>
+ <path fill="#070707" d="M89.338,216.849c4.199-9.634,6.454-18.572,11.981-27.51c5.465-8.878,3.484-12.621-0.563-8.135 c-4.137,4.605-8.896,14.748-9.096,15.184c0,0-5.247,8.542-6.376,17.972C85.092,216.073,88.671,218.297,89.338,216.849z"/>
+ <path fill="#0A0A0A" d="M89.522,216.239c4.159-9.701,6.375-18.234,11.68-26.865c5.247-8.573,3.422-12.292-0.461-7.966 c-4.005,4.483-8.693,14.503-8.96,15.085c0,0-5.053,8.317-6.126,17.337C85.469,215.514,88.874,217.667,89.522,216.239z"/>
+ <path fill="#0C0C0C" d="M89.708,215.627c4.118-9.769,6.294-17.897,11.376-26.218c5.029-8.268,3.36-11.962-0.359-7.797 c-3.871,4.361-8.49,14.259-8.823,14.985c0,0-4.858,8.093-5.876,16.706C85.847,214.956,89.077,217.034,89.708,215.627z"/>
+ <path fill="#0F0F0F" d="M89.893,215.017c4.077-9.836,6.213-17.56,11.073-25.573c4.812-7.963,3.298-11.633-0.259-7.629 c-3.738,4.241-8.288,14.015-8.688,14.887c0,0-4.663,7.868-5.625,16.072C86.225,214.398,89.28,216.402,89.893,215.017z"/>
+ <path fill="#111111" d="M90.078,214.407c4.037-9.904,6.133-17.224,10.772-24.928c4.593-7.658,3.234-11.304-0.159-7.46 c-3.605,4.119-8.085,13.771-8.551,14.788c0,0-4.47,7.645-5.375,15.439C86.603,213.84,89.483,215.77,90.078,214.407z"/>
+ <path fill="#141414" d="M90.263,213.795c3.997-9.971,6.052-16.885,10.47-24.281c4.374-7.353,3.172-10.975-0.059-7.291 c-3.472,3.998-7.882,13.526-8.415,14.689c0,0-4.273,7.418-5.124,14.805C86.981,213.282,89.686,215.138,90.263,213.795z"/>
+ <path fill="#161616" d="M90.449,213.184c3.956-10.037,5.972-16.548,10.167-23.635c4.156-7.048,3.11-10.645,0.043-7.123 c-3.34,3.877-7.68,13.283-8.279,14.591c0,0-4.08,7.194-4.874,14.172C87.359,212.724,89.889,214.506,90.449,213.184z"/>
+ <path fill="#191919" d="M90.634,212.573c3.916-10.105,5.892-16.209,9.865-22.989c3.938-6.743,3.047-10.316,0.144-6.954 c-3.207,3.755-7.477,13.038-8.143,14.491c0,0-3.886,6.969-4.624,13.54C87.737,212.167,90.093,213.874,90.634,212.573z"/>
+ <path fill="#1C1C1C" d="M90.819,211.963c3.875-10.174,5.811-15.874,9.563-22.344c3.721-6.438,2.984-9.987,0.244-6.785 c-3.073,3.634-7.274,12.793-8.007,14.392c0,0-3.69,6.745-4.373,12.905C88.115,211.608,90.295,213.243,90.819,211.963z"/>
+ <path fill="#1E1E1E" d="M91.004,211.352c3.836-10.24,5.73-15.536,9.262-21.698c3.501-6.133,2.922-9.658,0.344-6.617 c-2.94,3.513-7.071,12.55-7.87,14.293c0,0-3.496,6.521-4.123,12.272C88.493,211.049,90.498,212.611,91.004,211.352z"/>
+ <path fill="#212121" d="M91.189,210.741c3.795-10.307,5.649-15.198,8.958-21.052c3.284-5.828,2.859-9.328,0.445-6.448 c-2.808,3.392-6.868,12.305-7.734,14.195c0,0-3.301,6.295-3.872,11.639C88.871,210.493,90.701,211.979,91.189,210.741z"/>
+ <path fill="#232323" d="M91.375,210.129c3.754-10.373,5.569-14.86,8.655-20.405c3.066-5.523,2.797-8.999,0.547-6.279 c-2.675,3.27-6.666,12.061-7.599,14.097c0,0-3.106,6.07-3.622,11.004C89.249,209.934,90.904,211.347,91.375,210.129z"/>
+ <path fill="#262626" d="M91.559,209.519c3.714-10.44,5.489-14.523,8.354-19.76c2.847-5.218,2.735-8.67,0.647-6.111 c-2.542,3.149-6.463,11.817-7.462,13.997c0,0-2.912,5.848-3.372,10.373C89.627,209.375,91.107,210.715,91.559,209.519z"/>
+ <path fill="#282828" d="M91.745,208.909c3.674-10.509,5.408-14.187,8.051-19.115c2.629-4.913,2.672-8.341,0.748-5.942 c-2.409,3.028-6.261,11.573-7.326,13.898c0,0-2.717,5.621-3.121,9.738C90.005,208.818,91.31,210.083,91.745,208.909z"/>
+ <path fill="#2B2B2B" d="M91.929,208.297c3.634-10.575,5.328-13.848,7.75-18.468c2.41-4.608,2.609-8.011,0.848-5.773 c-2.275,2.906-6.058,11.328-7.189,13.799c0,0-2.522,5.397-2.871,9.106C90.383,208.26,91.513,209.452,91.929,208.297z"/>
+ <path fill="#2D2D2D" d="M92.115,207.687c3.593-10.643,5.247-13.512,7.447-17.823c2.191-4.303,2.547-7.682,0.949-5.605 c-2.144,2.786-5.855,11.085-7.055,13.701c0,0-2.327,5.172-2.62,8.473C90.76,207.702,91.717,208.819,92.115,207.687z"/>
+ <path fill="#303030" d="M92.301,207.077c3.552-10.71,5.167-13.175,7.145-17.178c1.974-3.998,2.484-7.353,1.05-5.436 c-2.011,2.664-5.652,10.84-6.918,13.602c0,0-2.133,4.947-2.37,7.839C91.138,207.144,91.92,208.187,92.301,207.077z"/>
+ </g>
+ <path fill="#333333" d="M92.485,206.465c3.513-10.778,5.087-12.837,6.843-16.531s2.422-7.024,1.15-5.268 c-1.877,2.543-5.449,10.596-6.781,13.502c0,0-1.938,4.724-2.12,7.207C91.516,206.586,92.122,207.555,92.485,206.465z"/>
+ </g>
+ <g>
+ <path d="M273.03,225.592c2.088-5.903,1.872-20.951-3.456-30.671c-1.872-3.528-3.672-7.632-4.752-7.848 c-1.152-0.216-3.24,2.088-3.024,2.448c0.288,0.576,10.009,14.256,7.992,32.832C269.646,223.866,272.526,226.961,273.03,225.592z"/>
+ <g>
+ <path fill="#030303" d="M272.936,224.831c2.025-5.719,1.753-20.379-3.344-29.663c-1.815-3.407-3.535-7.374-4.595-7.59 c-1.122-0.214-3.125,2.022-2.925,2.367c0.258,0.562,9.605,13.778,7.729,31.753C269.672,223.185,272.448,226.154,272.936,224.831z"/>
+ <path fill="#070707" d="M272.841,224.068c1.967-5.532,1.637-19.808-3.228-28.654c-1.762-3.286-3.401-7.115-4.44-7.332 c-1.091-0.211-3.009,1.956-2.824,2.287c0.227,0.548,9.201,13.299,7.466,30.672C269.697,222.504,272.37,225.346,272.841,224.068z"/>
+ <path fill="#0B0B0B" d="M272.747,223.305c1.904-5.348,1.518-19.235-3.115-27.645c-1.706-3.165-3.265-6.856-4.282-7.073 c-1.062-0.21-2.896,1.889-2.727,2.206c0.197,0.534,8.799,12.821,7.203,29.592C269.723,221.825,272.292,224.538,272.747,223.305z"/>
+ <path fill="#0F0F0F" d="M272.652,222.542c1.843-5.162,1.398-18.662-3.001-26.635c-1.65-3.044-3.13-6.598-4.127-6.815 c-1.03-0.207-2.779,1.823-2.626,2.126c0.167,0.52,8.396,12.341,6.94,28.511C269.748,221.145,272.214,223.73,272.652,222.542z"/>
+ <path fill="#131313" d="M272.558,221.779c1.78-4.976,1.279-18.09-2.889-25.626c-1.595-2.923-2.994-6.34-3.97-6.557 c-1-0.205-2.664,1.756-2.527,2.045c0.137,0.506,7.993,11.861,6.679,27.432C269.773,220.465,272.136,222.922,272.558,221.779z"/>
+ <path fill="#161616" d="M272.463,221.016c1.721-4.79,1.163-17.518-2.773-24.617c-1.539-2.802-2.858-6.081-3.814-6.299 c-0.969-0.203-2.548,1.691-2.427,1.965c0.106,0.492,7.59,11.383,6.415,26.352C269.799,219.786,272.058,222.114,272.463,221.016z"/>
+ <path fill="#1A1A1A" d="M272.369,220.254c1.659-4.605,1.044-16.946-2.66-23.609c-1.483-2.681-2.723-5.822-3.658-6.04 c-0.938-0.201-2.434,1.624-2.326,1.884c0.074,0.478,7.185,10.904,6.15,25.271C269.824,219.104,271.981,221.306,272.369,220.254z"/>
+ <path fill="#1E1E1E" d="M272.274,219.491c1.598-4.42,0.926-16.373-2.546-22.6c-1.43-2.56-2.587-5.564-3.501-5.782 c-0.908-0.198-2.319,1.558-2.229,1.804c0.044,0.464,6.782,10.425,5.889,24.19C269.85,218.424,271.903,220.499,272.274,219.491z"/>
+ <path fill="#222222" d="M272.18,218.728c1.535-4.233,0.807-15.802-2.434-21.59c-1.373-2.439-2.452-5.306-3.345-5.524 c-0.877-0.197-2.203,1.491-2.128,1.723c0.014,0.45,6.379,9.947,5.625,23.111C269.875,217.745,271.825,219.69,272.18,218.728z"/>
+ <path fill="#262626" d="M272.085,217.965c1.476-4.049,0.69-15.229-2.318-20.582c-1.317-2.317-2.316-5.046-3.188-5.265 c-0.847-0.194-2.088,1.425-2.029,1.642c-0.016,0.436,5.977,9.468,5.362,22.032C269.901,217.064,271.747,218.881,272.085,217.965z"/>
+ <path fill="#2A2A2A" d="M271.991,217.202c1.413-3.861,0.571-14.656-2.206-19.572c-1.262-2.196-2.18-4.788-3.032-5.007 c-0.815-0.191-1.973,1.36-1.929,1.562c-0.047,0.422,5.573,8.988,5.099,20.951C269.926,216.383,271.669,218.075,271.991,217.202z"/>
+ <path fill="#2D2D2D" d="M271.896,216.439c1.353-3.677,0.453-14.084-2.091-18.563c-1.207-2.076-2.045-4.529-2.876-4.749 c-0.786-0.19-1.858,1.293-1.83,1.481c-0.077,0.408,5.17,8.51,4.836,19.87C269.952,215.704,271.591,217.267,271.896,216.439z"/>
+ <path fill="#313131" d="M271.802,215.676c1.29-3.491,0.334-13.512-1.979-17.553c-1.151-1.956-1.909-4.272-2.72-4.493 c-0.755-0.187-1.742,1.227-1.73,1.401c-0.106,0.394,4.768,8.031,4.573,18.791C269.977,215.024,271.513,216.459,271.802,215.676z"/>
+ <path fill="#353535" d="M271.707,214.915c1.23-3.307,0.217-12.94-1.864-16.545c-1.096-1.834-1.773-4.014-2.563-4.234 c-0.725-0.185-1.627,1.16-1.631,1.32c-0.138,0.38,4.364,7.552,4.311,17.71C270.002,214.342,271.435,215.651,271.707,214.915z"/>
+ <path fill="#393939" d="M271.613,214.151c1.168-3.119,0.098-12.367-1.751-15.535c-1.04-1.714-1.638-3.755-2.407-3.976 c-0.693-0.183-1.512,1.094-1.531,1.24c-0.168,0.366,3.962,7.074,4.049,16.63C270.028,213.663,271.357,214.842,271.613,214.151z"/>
+ <path fill="#3D3D3D" d="M271.518,213.388c1.106-2.935-0.021-11.796-1.638-14.527c-0.983-1.592-1.502-3.496-2.25-3.716 c-0.664-0.181-1.396,1.028-1.432,1.159c-0.198,0.352,3.558,6.594,3.785,15.549C270.053,212.983,271.279,214.036,271.518,213.388z"/>
+ <path fill="#414141" d="M271.424,212.625c1.047-2.75-0.139-11.223-1.522-13.518c-0.93-1.471-1.367-3.238-2.094-3.459 c-0.635-0.178-1.282,0.962-1.333,1.079c-0.229,0.338,3.153,6.114,3.521,14.47C270.079,212.303,271.201,213.227,271.424,212.625z"/>
+ <path fill="#444444" d="M271.329,211.862c0.985-2.563-0.256-10.65-1.409-12.508c-0.874-1.35-1.23-2.979-1.938-3.2 c-0.604-0.177-1.166,0.895-1.233,0.998c-0.259,0.324,2.751,5.636,3.259,13.39C270.104,211.624,271.123,212.418,271.329,211.862z"/>
+ <path fill="#484848" d="M271.235,211.099c0.923-2.377-0.375-10.077-1.296-11.499c-0.818-1.229-1.097-2.72-1.781-2.942 c-0.573-0.174-1.052,0.829-1.134,0.918c-0.289,0.309,2.348,5.156,2.996,12.309C270.13,210.943,271.045,211.611,271.235,211.099z"/>
+ </g>
+ <path fill="#4C4C4C" d="M271.14,210.336c0.861-2.192-0.493-9.506-1.183-10.49c-0.763-1.107-0.96-2.463-1.625-2.684 c-0.542-0.172-0.936,0.762-1.034,0.836c-0.319,0.297,1.945,4.68,2.733,11.229C270.155,210.262,270.967,210.803,271.14,210.336z"/>
+ </g>
+ <g>
+ <path d="M264.822,187.073c-10.224-13.968-23.472-18.504-22.104-14.112c0,0,10.152,5.76,19.08,16.56 C263.526,191.609,266.406,189.233,264.822,187.073z"/>
+ <g>
+ <path fill="#030303" d="M264.372,186.687c-9.924-13.495-22.894-17.912-21.539-13.7c0.018,0.012,9.901,5.614,18.609,16.071 C263.12,191.074,265.909,188.773,264.372,186.687z"/>
+ <path fill="#070707" d="M263.922,186.3c-9.624-13.022-22.316-17.319-20.975-13.287c0.036,0.023,9.652,5.467,18.139,15.582 C262.714,190.538,265.411,188.312,263.922,186.3z"/>
+ <path fill="#0B0B0B" d="M263.472,185.913c-9.324-12.549-21.739-16.726-20.41-12.874c0.053,0.034,9.4,5.32,17.668,15.093 C262.308,190.003,264.913,187.852,263.472,185.913z"/>
+ <path fill="#0F0F0F" d="M263.022,185.527c-9.024-12.077-21.162-16.134-19.847-12.462c0.071,0.045,9.151,5.174,17.198,14.604 C261.902,189.467,264.416,187.391,263.022,185.527z"/>
+ <path fill="#131313" d="M262.571,185.14c-8.723-11.603-20.583-15.541-19.28-12.049c0.088,0.056,8.901,5.027,16.728,14.114 C261.496,188.931,263.918,186.93,262.571,185.14z"/>
+ <path fill="#161616" d="M262.121,184.753c-8.423-11.13-20.006-14.948-18.716-11.636c0.106,0.067,8.651,4.88,16.257,13.625 C261.09,188.396,263.421,186.47,262.121,184.753z"/>
+ <path fill="#1A1A1A" d="M261.671,184.367c-8.124-10.658-19.428-14.356-18.15-11.224c0.124,0.078,8.399,4.734,15.785,13.136 C260.684,187.86,262.923,186.009,261.671,184.367z"/>
+ <path fill="#1E1E1E" d="M261.221,183.98c-7.824-10.185-18.851-13.763-17.588-10.811c0.143,0.089,8.151,4.587,15.315,12.647 C260.278,187.324,262.425,185.549,261.221,183.98z"/>
+ <path fill="#222222" d="M260.771,183.593c-7.524-9.711-18.273-13.17-17.022-10.398c0.159,0.1,7.9,4.44,14.844,12.158 C259.872,186.789,261.928,185.088,260.771,183.593z"/>
+ <path fill="#262626" d="M260.321,183.206c-7.224-9.238-17.695-12.578-16.458-9.985c0.177,0.111,7.65,4.293,14.374,11.668 C259.466,186.253,261.43,184.627,260.321,183.206z"/>
+ <path fill="#2A2A2A" d="M259.871,182.82c-6.924-8.766-17.118-11.986-15.893-9.573c0.193,0.122,7.398,4.147,13.902,11.179 C259.06,185.717,260.933,184.167,259.871,182.82z"/>
+ <path fill="#2D2D2D" d="M259.42,182.433c-6.623-8.293-16.539-11.393-15.328-9.16c0.214,0.133,7.15,4,13.434,10.69 C258.654,185.182,260.435,183.706,259.42,182.433z"/>
+ <path fill="#313131" d="M258.97,182.046c-6.323-7.819-15.963-10.8-14.764-8.747c0.23,0.144,6.899,3.853,12.962,10.201 C258.248,184.646,259.937,183.246,258.97,182.046z"/>
+ <path fill="#353535" d="M258.52,181.66c-6.023-7.347-15.384-10.208-14.199-8.335c0.248,0.155,6.649,3.707,12.492,9.712 C257.841,184.11,259.44,182.785,258.52,181.66z"/>
+ <path fill="#393939" d="M258.07,181.273c-5.723-6.874-14.807-9.615-13.634-7.922c0.265,0.166,6.398,3.56,12.021,9.222 C257.435,183.575,258.942,182.324,258.07,181.273z"/>
+ <path fill="#3D3D3D" d="M257.62,180.886c-5.423-6.401-14.229-9.021-13.07-7.509c0.283,0.177,6.149,3.413,11.552,8.733 C257.029,183.039,258.445,181.864,257.62,180.886z"/>
+ <path fill="#414141" d="M257.17,180.5c-5.124-5.928-13.65-8.43-12.505-7.097c0.301,0.188,5.898,3.267,11.079,8.244 C256.623,182.503,257.947,181.403,257.17,180.5z"/>
+ <path fill="#444444" d="M256.719,180.113c-4.823-5.455-13.073-7.837-11.94-6.684c0.319,0.199,5.649,3.12,10.609,7.755 C256.217,181.968,257.449,180.943,256.719,180.113z"/>
+ <path fill="#484848" d="M256.269,179.726c-4.523-4.982-12.495-7.244-11.375-6.271c0.336,0.21,5.397,2.973,10.138,7.266 C255.811,181.432,256.952,180.482,256.269,179.726z"/>
+ </g>
+ <path fill="#4C4C4C" d="M255.819,179.339c-4.223-4.509-11.918-6.652-10.812-5.859c0.354,0.222,5.148,2.827,9.668,6.777 C255.405,180.896,256.454,180.021,255.819,179.339z"/>
+ </g>
+ <g>
+ <path d="M273.03,225.592c0.144,6.265-5.76,22.248-7.992,21.673c-2.52-0.576,0.504-5.257,2.809-13.177 c0.936-3.312,1.655-11.447,1.943-11.735C270.726,221.417,273.03,224.081,273.03,225.592z"/>
+ <g>
+ <path fill="#050505" d="M272.846,226.116c0.103,6.082-5.638,21.594-7.797,21.018c-2.422-0.567,0.548-5.146,2.814-12.928 c0.899-3.178,1.595-10.947,1.887-11.25C270.664,222.029,272.897,224.483,272.846,226.116z"/>
+ <path fill="#0A0A0A" d="M272.662,226.637c0.063,5.902-5.514,20.939-7.601,20.363c-2.323-0.558,0.592-5.035,2.82-12.681 c0.861-3.041,1.534-10.446,1.83-10.761C270.601,222.641,272.765,224.885,272.662,226.637z"/>
+ <path fill="#0F0F0F" d="M272.478,227.159c0.021,5.721-5.392,20.284-7.405,19.711c-2.224-0.55,0.635-4.927,2.827-12.434 c0.824-2.907,1.473-9.945,1.773-10.273C270.539,223.252,272.632,225.288,272.478,227.159z"/>
+ <path fill="#141414" d="M272.294,227.68c-0.02,5.539-5.268,19.63-7.21,19.057c-2.125-0.541,0.68-4.816,2.835-12.186 c0.786-2.771,1.412-9.445,1.717-9.786C270.476,223.864,272.499,225.689,272.294,227.68z"/>
+ <path fill="#191919" d="M272.11,228.202c-0.063,5.359-5.146,18.977-7.014,18.403c-2.027-0.532,0.722-4.706,2.841-11.938 c0.748-2.637,1.351-8.944,1.659-9.299C270.414,224.475,272.366,226.09,272.11,228.202z"/>
+ <path fill="#1E1E1E" d="M271.926,228.723c-0.103,5.179-5.021,18.322-6.818,17.75c-1.928-0.523,0.766-4.596,2.848-11.691 c0.711-2.5,1.29-8.443,1.603-8.811C270.351,225.086,272.233,226.493,271.926,228.723z"/>
+ <path fill="#232323" d="M271.742,229.245c-0.144,4.998-4.9,17.668-6.623,17.096c-1.83-0.514,0.811-4.485,2.854-11.442 c0.673-2.366,1.229-7.944,1.545-8.325C270.289,225.698,272.101,226.894,271.742,229.245z"/>
+ <path fill="#282828" d="M271.558,229.766c-0.186,4.816-4.777,17.013-6.428,16.443c-1.731-0.506,0.854-4.377,2.86-11.196 c0.636-2.231,1.168-7.443,1.488-7.837C270.227,226.31,271.968,227.295,271.558,229.766z"/>
+ <path fill="#2D2D2D" d="M271.374,230.288c-0.226,4.637-4.653,16.359-6.231,15.789c-1.632-0.496,0.896-4.266,2.866-10.947 c0.6-2.098,1.107-6.943,1.433-7.351C270.164,226.92,271.835,227.698,271.374,230.288z"/>
+ <path fill="#333333" d="M271.19,230.809c-0.268,4.456-4.531,15.705-6.036,15.136c-1.534-0.489,0.94-4.155,2.873-10.7 c0.561-1.961,1.046-6.443,1.375-6.863C270.102,227.534,271.702,228.1,271.19,230.809z"/>
+ <path fill="#383838" d="M271.006,231.331c-0.308,4.275-4.407,15.051-5.841,14.482c-1.435-0.48,0.984-4.046,2.88-10.453 c0.524-1.826,0.985-5.941,1.318-6.375C270.039,228.145,271.569,228.502,271.006,231.331z"/>
+ <path fill="#3D3D3D" d="M270.822,231.853c-0.35,4.093-4.285,14.396-5.645,13.828c-1.338-0.472,1.027-3.937,2.886-10.206 c0.485-1.691,0.924-5.441,1.261-5.887C269.977,228.756,271.437,228.904,270.822,231.853z"/>
+ <path fill="#424242" d="M270.638,232.374c-0.392,3.914-4.162,13.742-5.45,13.176c-1.238-0.463,1.072-3.826,2.893-9.959 c0.449-1.555,0.863-4.94,1.204-5.399C269.914,229.368,271.304,229.306,270.638,232.374z"/>
+ <path fill="#474747" d="M270.454,232.896c-0.432,3.731-4.039,13.087-5.254,12.521c-1.14-0.453,1.115-3.715,2.9-9.711 c0.411-1.42,0.802-4.439,1.146-4.912C269.852,229.979,271.171,229.708,270.454,232.896z"/>
+ <path fill="#4C4C4C" d="M270.27,233.417c-0.474,3.553-3.916,12.434-5.06,11.869c-1.041-0.445,1.159-3.606,2.907-9.463 c0.373-1.287,0.741-3.941,1.089-4.427C269.789,230.59,271.038,230.109,270.27,233.417z"/>
+ <path fill="#515151" d="M270.086,233.939c-0.514,3.37-3.793,11.778-4.862,11.214c-0.942-0.436,1.201-3.496,2.913-9.216 c0.336-1.151,0.68-3.438,1.032-3.938C269.727,231.202,270.905,230.51,270.086,233.939z"/>
+ <path fill="#565656" d="M269.902,234.461c-0.555,3.188-3.671,11.123-4.667,10.56c-0.844-0.429,1.246-3.386,2.919-8.968 c0.298-1.016,0.619-2.939,0.976-3.451C269.665,231.814,270.773,230.913,269.902,234.461z"/>
+ <path fill="#5B5B5B" d="M269.718,234.982c-0.597,3.009-3.548,10.47-4.472,9.907c-0.745-0.42,1.29-3.275,2.926-8.721 c0.262-0.881,0.559-2.438,0.919-2.963C269.602,232.424,270.64,231.315,269.718,234.982z"/>
+ <path fill="#606060" d="M269.534,235.504c-0.638,2.828-3.425,9.814-4.276,9.252c-0.646-0.409,1.333-3.166,2.933-8.473 c0.224-0.746,0.497-1.938,0.862-2.476C269.54,233.038,270.507,231.717,269.534,235.504z"/>
+ </g>
+ <path fill="#666666" d="M269.35,236.025c-0.68,2.647-3.303,9.161-4.081,8.599c-0.548-0.4,1.377-3.056,2.938-8.225 c0.187-0.611,0.437-1.438,0.806-1.988C269.477,233.648,270.374,232.118,269.35,236.025z"/>
+ </g>
+ <g>
+ <path d="M251.07,187.865c-1.537,1.622-2.903,9.991,0.938,12.893c3.844,2.818,10.59-2.391,10.59-5.379 C262.512,188.633,252.607,186.157,251.07,187.865z"/>
+ <g>
+ <path fill="#010101" d="M251.207,188.006c-1.559,1.611-2.876,9.823,0.857,12.667c3.731,2.764,10.349-2.273,10.384-5.279 C262.401,188.818,252.767,186.311,251.207,188.006z"/>
+ <path fill="#030303" d="M251.344,188.146c-1.582,1.601-2.85,9.653,0.774,12.438c3.62,2.709,10.109-2.154,10.178-5.177 C262.289,189.003,252.926,186.464,251.344,188.146z"/>
+ <path fill="#050505" d="M251.481,188.287c-1.604,1.589-2.823,9.484,0.691,12.211c3.511,2.653,9.869-2.037,9.975-5.078 C262.178,189.188,253.086,186.618,251.481,188.287z"/>
+ <path fill="#070707" d="M251.617,188.427c-1.626,1.579-2.795,9.316,0.611,11.984c3.397,2.6,9.629-1.918,9.768-4.976 C262.067,189.373,253.245,186.771,251.617,188.427z"/>
+ <path fill="#090909" d="M251.754,188.567c-1.648,1.568-2.768,9.146,0.529,11.758c3.287,2.543,9.389-1.802,9.563-4.875 C261.955,189.558,253.405,186.925,251.754,188.567z"/>
+ <path fill="#0B0B0B" d="M251.891,188.708c-1.671,1.557-2.741,8.978,0.445,11.529c3.177,2.489,9.15-1.683,9.358-4.774 C261.844,189.743,253.564,187.078,251.891,188.708z"/>
+ <path fill="#0D0D0D" d="M252.028,188.848c-1.694,1.546-2.715,8.809,0.364,11.302c3.064,2.435,8.908-1.565,9.152-4.673 C261.733,189.928,253.724,187.232,252.028,188.848z"/>
+ <path fill="#0F0F0F" d="M252.165,188.989c-1.716,1.535-2.688,8.64,0.282,11.074c2.953,2.38,8.669-1.447,8.948-4.572 C261.621,190.113,253.883,187.385,252.165,188.989z"/>
+ <path fill="#111111" d="M252.301,189.129c-1.737,1.524-2.659,8.471,0.2,10.847c2.844,2.325,8.431-1.33,8.743-4.471 C261.51,190.298,254.043,187.539,252.301,189.129z"/>
+ <path fill="#131313" d="M252.438,189.269c-1.76,1.514-2.633,8.304,0.118,10.619c2.73,2.271,8.189-1.212,8.538-4.369 C261.399,190.483,254.202,187.692,252.438,189.269z"/>
+ <path fill="#151515" d="M252.575,189.41c-1.783,1.503-2.606,8.133,0.036,10.391c2.62,2.216,7.949-1.094,8.332-4.268 C261.287,190.668,254.362,187.846,252.575,189.41z"/>
+ <path fill="#161616" d="M252.712,189.55c-1.805,1.492-2.58,7.965-0.046,10.164c2.508,2.162,7.709-0.975,8.127-4.167 C261.176,190.853,254.521,187.999,252.712,189.55z"/>
+ <path fill="#181818" d="M252.849,189.691c-1.828,1.481-2.554,7.796-0.129,9.937c2.397,2.105,7.47-0.857,7.922-4.066 C261.065,191.038,254.681,188.153,252.849,189.691z"/>
+ <path fill="#1A1A1A" d="M252.985,189.831c-1.85,1.47-2.525,7.626-0.21,9.708c2.286,2.053,7.229-0.74,7.717-3.964 C260.953,191.223,254.84,188.306,252.985,189.831z"/>
+ <path fill="#1C1C1C" d="M253.122,189.971c-1.872,1.46-2.499,7.459-0.292,9.482c2.175,1.996,6.989-0.623,7.511-3.865 C260.842,191.408,255,188.46,253.122,189.971z"/>
+ <path fill="#1E1E1E" d="M253.259,190.112c-1.895,1.448-2.472,7.289-0.375,9.254c2.064,1.942,6.75-0.504,7.308-3.763 C260.731,191.593,255.159,188.613,253.259,190.112z"/>
+ <path fill="#202020" d="M253.396,190.252c-1.917,1.438-2.445,7.122-0.457,9.027c1.953,1.888,6.51-0.386,7.102-3.662 C260.619,191.778,255.319,188.767,253.396,190.252z"/>
+ <path fill="#222222" d="M253.533,190.393c-1.939,1.426-2.418,6.951-0.539,8.799c1.841,1.832,6.271-0.268,6.896-3.561 C260.508,191.963,255.478,188.92,253.533,190.393z"/>
+ <path fill="#242424" d="M253.669,190.533c-1.961,1.416-2.391,6.783-0.621,8.572c1.731,1.776,6.03-0.149,6.692-3.46 C260.397,192.148,255.638,189.074,253.669,190.533z"/>
+ </g>
+ <path fill="#262626" d="M253.806,190.673c-1.984,1.405-2.364,6.615-0.703,8.344c1.619,1.724,5.79-0.032,6.485-3.358 C260.285,192.333,255.797,189.227,253.806,190.673z"/>
+ </g>
+ <g>
+ <path d="M250.71,256.698c1.513,1.512,2.809-2.232,4.32-3.457c1.512-1.224,3.96-3.888,8.856-3.888c4.896,0,4.535-0.144,4.319-2.017 c-0.144-1.799-1.584-1.655-5.903-1.008c-4.32,0.576-7.2,2.809-8.929,4.824C251.719,253.097,249.846,255.833,250.71,256.698z"/>
+ <g>
+ <path fill="#050505" d="M251.043,256.331c1.459,1.449,2.703-2.121,4.205-3.308c1.501-1.187,3.931-3.731,8.64-3.731 c4.71-0.002,4.415-0.129,4.209-1.94c-0.139-1.743-1.543-1.593-5.749-0.979c-4.207,0.543-7.029,2.703-8.712,4.648 C252.02,252.898,250.198,255.495,251.043,256.331z"/>
+ <path fill="#0A0A0A" d="M251.376,255.961c1.406,1.389,2.6-2.008,4.089-3.156c1.491-1.148,3.901-3.576,8.425-3.577 c4.521-0.001,4.293-0.11,4.096-1.862c-0.132-1.688-1.501-1.531-5.594-0.951c-4.093,0.51-6.857,2.596-8.495,4.471 C252.322,252.698,250.549,255.157,251.376,255.961z"/>
+ <path fill="#0F0F0F" d="M251.709,255.594c1.354,1.326,2.494-1.895,3.975-3.008c1.479-1.111,3.871-3.42,8.207-3.422 s4.171-0.094,3.984-1.785c-0.126-1.631-1.46-1.467-5.438-0.924c-3.979,0.479-6.687,2.492-8.28,4.297 C252.624,252.499,250.9,254.818,251.709,255.594z"/>
+ <path fill="#141414" d="M252.042,255.226c1.302,1.265,2.39-1.783,3.858-2.856c1.47-1.076,3.842-3.266,7.991-3.268 s4.05-0.077,3.873-1.709c-0.119-1.575-1.419-1.404-5.284-0.895c-3.865,0.444-6.515,2.385-8.063,4.121 C252.927,252.297,251.252,254.48,252.042,255.226z"/>
+ <path fill="#191919" d="M252.374,254.859c1.249,1.202,2.285-1.671,3.744-2.708c1.458-1.037,3.813-3.109,7.774-3.111 c3.963-0.004,3.929-0.061,3.761-1.633c-0.113-1.519-1.377-1.341-5.128-0.867c-3.751,0.414-6.344,2.279-7.847,3.945 C253.229,252.098,251.603,254.141,252.374,254.859z"/>
+ <path fill="#1E1E1E" d="M252.707,254.491c1.196,1.141,2.182-1.559,3.628-2.558c1.448-1,3.783-2.954,7.56-2.957 c3.775-0.003,3.806-0.043,3.648-1.556c-0.106-1.461-1.336-1.277-4.974-0.838c-3.637,0.379-6.172,2.174-7.63,3.77 C253.531,251.898,251.955,253.803,252.707,254.491z"/>
+ <path fill="#232323" d="M253.04,254.124c1.144,1.078,2.076-1.447,3.514-2.41c1.437-0.961,3.753-2.797,7.342-2.799 c3.589-0.004,3.685-0.027,3.537-1.48c-0.101-1.405-1.294-1.215-4.818-0.811c-3.524,0.349-6.001,2.068-7.415,3.594 C253.833,251.698,252.306,253.463,253.04,254.124z"/>
+ <path fill="#282828" d="M253.373,253.754c1.09,1.018,1.972-1.334,3.398-2.258c1.426-0.926,3.723-2.642,7.125-2.646 c3.402-0.005,3.563-0.011,3.426-1.403c-0.095-1.349-1.253-1.15-4.664-0.781c-3.409,0.314-5.829,1.961-7.198,3.418 C254.135,251.499,252.657,253.125,253.373,253.754z"/>
+ <path fill="#2D2D2D" d="M253.706,253.388c1.038,0.954,1.866-1.222,3.282-2.11c1.416-0.887,3.694-2.486,6.909-2.49 c3.217-0.004,3.441,0.008,3.313-1.326c-0.088-1.293-1.212-1.088-4.508-0.754c-3.296,0.283-5.658,1.857-6.981,3.244 C254.437,251.297,253.009,252.788,253.706,253.388z"/>
+ <path fill="#333333" d="M254.039,253.02c0.985,0.893,1.762-1.109,3.167-1.96s3.664-2.33,6.693-2.335 c3.029-0.006,3.32,0.023,3.202-1.249c-0.082-1.237-1.171-1.024-4.354-0.726c-3.182,0.25-5.485,1.75-6.765,3.066 C254.739,251.098,253.36,252.45,254.039,253.02z"/>
+ <path fill="#383838" d="M254.372,252.652c0.933,0.831,1.657-0.998,3.051-1.81c1.396-0.813,3.636-2.174,6.478-2.18 c2.843-0.006,3.199,0.039,3.09-1.172c-0.076-1.181-1.129-0.963-4.198-0.697c-3.068,0.217-5.314,1.644-6.55,2.891 C255.041,250.898,253.712,252.111,254.372,252.652z"/>
+ <path fill="#3D3D3D" d="M254.704,252.284c0.88,0.771,1.553-0.885,2.938-1.66c1.383-0.775,3.604-2.019,6.26-2.024 c2.656-0.007,3.078,0.058,2.979-1.095c-0.069-1.125-1.088-0.899-4.044-0.67c-2.954,0.185-5.144,1.539-6.333,2.715 C255.344,250.698,254.063,251.772,254.704,252.284z"/>
+ <path fill="#424242" d="M255.037,251.917c0.827,0.707,1.448-0.773,2.821-1.51c1.373-0.738,3.576-1.863,6.044-1.871 c2.47-0.007,2.956,0.074,2.867-1.018c-0.063-1.068-1.046-0.836-3.889-0.641c-2.841,0.151-4.973,1.433-6.116,2.539 C255.645,250.499,254.414,251.434,255.037,251.917z"/>
+ <path fill="#474747" d="M255.37,251.549c0.774,0.645,1.344-0.661,2.706-1.362c1.362-0.7,3.545-1.706,5.828-1.713 c2.283-0.009,2.834,0.09,2.754-0.942c-0.057-1.012-1.005-0.773-3.733-0.613c-2.727,0.119-4.801,1.328-5.899,2.365 C255.948,250.297,254.766,251.094,255.37,251.549z"/>
+ <path fill="#4C4C4C" d="M255.703,251.181c0.721,0.584,1.239-0.55,2.59-1.212c1.353-0.663,3.517-1.551,5.612-1.559 c2.096-0.009,2.713,0.107,2.643-0.865c-0.051-0.955-0.964-0.709-3.577-0.584c-2.613,0.086-4.631,1.222-5.686,2.188 C256.25,250.098,255.117,250.756,255.703,251.181z"/>
+ <path fill="#515151" d="M256.036,250.813c0.669,0.521,1.134-0.436,2.476-1.063c1.341-0.625,3.485-1.395,5.395-1.402 c1.91-0.01,2.591,0.124,2.531-0.789c-0.044-0.898-0.922-0.646-3.423-0.557c-2.499,0.055-4.458,1.117-5.469,2.014 C256.552,249.898,255.469,250.418,256.036,250.813z"/>
+ <path fill="#565656" d="M256.369,250.446c0.616,0.459,1.029-0.324,2.36-0.912c1.33-0.589,3.456-1.24,5.178-1.248 c1.723-0.01,2.47,0.141,2.42-0.713c-0.039-0.842-0.881-0.582-3.268-0.527c-2.387,0.021-4.287,1.01-5.252,1.836 C256.854,249.698,255.82,250.081,256.369,250.446z"/>
+ <path fill="#5B5B5B" d="M256.701,250.079c0.564,0.397,0.926-0.213,2.245-0.764s3.427-1.084,4.963-1.093 c1.536-0.011,2.348,0.157,2.307-0.636c-0.031-0.785-0.839-0.52-3.112-0.5c-2.271-0.01-4.116,0.906-5.035,1.662 C257.156,249.499,256.171,249.741,256.701,250.079z"/>
+ <path fill="#606060" d="M257.034,249.709c0.511,0.336,0.821-0.1,2.13-0.612c1.309-0.515,3.397-0.929,4.746-0.938 c1.351-0.01,2.227,0.176,2.196-0.558c-0.026-0.729-0.799-0.457-2.958-0.472c-2.158-0.043-3.945,0.799-4.82,1.486 C257.458,249.297,256.523,249.403,257.034,249.709z"/>
+ </g>
+ <path fill="#666666" d="M257.367,249.342c0.458,0.273,0.716,0.012,2.014-0.465c1.299-0.476,3.368-0.771,4.53-0.781 c1.163-0.012,2.105,0.191,2.084-0.482c-0.02-0.673-0.757-0.393-2.803-0.443c-2.044-0.076-3.773,0.693-4.604,1.311 C257.76,249.098,256.874,249.064,257.367,249.342z"/>
+ </g>
+ <g>
+ <path d="M270.222,247.265c0,2.304,4.68,3.096,9.144,3.743c4.392,0.648,7.92,1.513,8.136,6.121c0.216,4.535-0.936,7.775,1.08,7.416 c4.32-0.793,5.904-5.473,5.832-7.633c0-2.16-3.168-6.047-8.855-8.207c-4.177-1.584-7.2-2.305-10.872-2.449 C269.79,246.042,270.222,247.265,270.222,247.265z"/>
+ <g>
+ <path fill="#030303" d="M270.348,247.304c0.012,2.239,4.643,2.97,9.049,3.639c4.352,0.675,7.75,1.511,8.11,6.002 c0.345,4.415-0.854,7.515,1.136,7.188c4.145-0.739,5.688-5.2,5.607-7.332c-0.015-2.151-3.118-5.91-8.733-8.038 c-4.129-1.563-7.11-2.298-10.74-2.452C270.023,246.094,270.339,247.263,270.348,247.304z"/>
+ <path fill="#070707" d="M270.474,247.342c0.023,2.174,4.605,2.845,8.953,3.533c4.312,0.701,7.58,1.508,8.087,5.885 c0.471,4.295-0.771,7.252,1.189,6.963c3.97-0.689,5.472-4.93,5.384-7.033c-0.028-2.145-3.068-5.773-8.61-7.87 c-4.082-1.543-7.022-2.291-10.609-2.456C270.256,246.146,270.456,247.26,270.474,247.342z"/>
+ <path fill="#0B0B0B" d="M270.6,247.379c0.035,2.109,4.568,2.721,8.857,3.431c4.271,0.728,7.411,1.506,8.063,5.767 c0.599,4.174-0.689,6.988,1.245,6.735c3.795-0.638,5.257-4.66,5.159-6.733c-0.044-2.137-3.019-5.636-8.488-7.701 c-4.035-1.522-6.933-2.285-10.478-2.459C270.489,246.2,270.574,247.256,270.6,247.379z"/>
+ <path fill="#0F0F0F" d="M270.726,247.418c0.047,2.043,4.531,2.595,8.762,3.324c4.232,0.754,7.242,1.504,8.039,5.649 c0.725,4.052-0.608,6.728,1.299,6.509c3.621-0.586,5.041-4.389,4.937-6.436c-0.06-2.127-2.971-5.496-8.367-7.53 c-3.988-1.502-6.842-2.278-10.346-2.464C270.722,246.25,270.691,247.254,270.726,247.418z"/>
+ <path fill="#131313" d="M270.852,247.458c0.059,1.978,4.495,2.469,8.667,3.219c4.19,0.781,7.071,1.502,8.014,5.531 c0.854,3.932-0.526,6.465,1.354,6.283c3.445-0.535,4.824-4.119,4.712-6.137c-0.074-2.119-2.92-5.359-8.245-7.361 c-3.941-1.482-6.753-2.271-10.213-2.469C270.955,246.303,270.808,247.25,270.852,247.458z"/>
+ <path fill="#161616" d="M270.978,247.495c0.07,1.914,4.458,2.344,8.57,3.115c4.151,0.807,6.903,1.5,7.99,5.413 c0.98,3.812-0.443,6.202,1.409,6.056c3.271-0.482,4.609-3.848,4.488-5.836c-0.088-2.111-2.871-5.222-8.123-7.193 c-3.894-1.461-6.663-2.264-10.081-2.471C271.188,246.356,270.925,247.249,270.978,247.495z"/>
+ <path fill="#1A1A1A" d="M271.104,247.534c0.082,1.848,4.422,2.219,8.476,3.01c4.111,0.832,6.734,1.498,7.965,5.295 c1.108,3.69-0.36,5.94,1.464,5.83c3.097-0.433,4.394-3.578,4.265-5.537c-0.104-2.104-2.821-5.084-8-7.023 c-3.848-1.441-6.575-2.26-9.949-2.477C271.42,246.409,271.042,247.245,271.104,247.534z"/>
+ <path fill="#1E1E1E" d="M271.23,247.573c0.094,1.781,4.385,2.092,8.381,2.904c4.07,0.859,6.563,1.495,7.939,5.178 c1.236,3.568-0.278,5.678,1.52,5.602c2.921-0.381,4.177-3.305,4.04-5.237c-0.118-2.097-2.771-4.946-7.878-6.854 c-3.8-1.42-6.485-2.252-9.817-2.479C271.653,246.461,271.159,247.243,271.23,247.573z"/>
+ <path fill="#222222" d="M271.356,247.61c0.105,1.717,4.348,1.969,8.285,2.801c4.029,0.885,6.395,1.493,7.916,5.059 c1.362,3.449-0.197,5.416,1.573,5.377c2.746-0.329,3.962-3.036,3.816-4.939c-0.133-2.087-2.722-4.808-7.756-6.684 c-3.753-1.4-6.396-2.247-9.686-2.484C271.886,246.513,271.277,247.239,271.356,247.61z"/>
+ <path fill="#262626" d="M271.482,247.648c0.118,1.651,4.311,1.843,8.189,2.694c3.99,0.914,6.226,1.492,7.892,4.943 c1.491,3.328-0.115,5.152,1.629,5.149c2.571-0.278,3.746-2.765,3.592-4.64c-0.146-2.08-2.672-4.672-7.634-6.516 c-3.705-1.38-6.306-2.24-9.553-2.488C272.119,246.565,271.394,247.236,271.482,247.648z"/>
+ <path fill="#2A2A2A" d="M271.608,247.687c0.129,1.587,4.273,1.716,8.094,2.59c3.95,0.938,6.056,1.489,7.867,4.825 c1.618,3.206-0.033,4.891,1.684,4.922c2.396-0.227,3.53-2.494,3.368-4.34c-0.162-2.072-2.623-4.534-7.512-6.348 c-3.658-1.358-6.216-2.232-9.421-2.492C272.352,246.618,271.511,247.234,271.608,247.687z"/>
+ <path fill="#2D2D2D" d="M271.734,247.725c0.141,1.521,4.237,1.591,7.999,2.484c3.909,0.967,5.886,1.488,7.842,4.707 c1.746,3.086,0.05,4.629,1.739,4.697c2.221-0.176,3.313-2.225,3.144-4.041c-0.177-2.064-2.572-4.396-7.389-6.178 c-3.612-1.339-6.128-2.227-9.29-2.497C272.585,246.67,271.628,247.231,271.734,247.725z"/>
+ <path fill="#313131" d="M271.86,247.763c0.153,1.456,4.2,1.466,7.903,2.381c3.869,0.991,5.717,1.485,7.817,4.589 c1.873,2.965,0.132,4.365,1.794,4.469c2.046-0.123,3.099-1.953,2.92-3.742c-0.191-2.055-2.523-4.258-7.267-6.008 c-3.565-1.318-6.038-2.22-9.158-2.5C272.818,246.723,271.745,247.228,271.86,247.763z"/>
+ <path fill="#353535" d="M271.986,247.801c0.165,1.392,4.163,1.341,7.808,2.275c3.829,1.018,5.547,1.483,7.794,4.473 c2,2.843,0.213,4.103,1.848,4.242c1.873-0.074,2.883-1.683,2.696-3.443c-0.206-2.047-2.474-4.12-7.145-5.838 c-3.517-1.299-5.948-2.215-9.026-2.506C273.051,246.775,271.862,247.225,271.986,247.801z"/>
+ <path fill="#393939" d="M272.112,247.84c0.176,1.326,4.126,1.215,7.712,2.17c3.789,1.045,5.378,1.482,7.771,4.354 c2.127,2.723,0.295,3.842,1.901,4.016c1.698-0.021,2.667-1.412,2.474-3.144c-0.222-2.038-2.426-3.981-7.023-5.669 c-3.47-1.277-5.859-2.208-8.894-2.509C273.284,246.827,271.979,247.222,272.112,247.84z"/>
+ <path fill="#3D3D3D" d="M272.238,247.877c0.188,1.262,4.089,1.09,7.617,2.066c3.749,1.071,5.208,1.479,7.745,4.236 c2.255,2.602,0.377,3.578,1.957,3.789c1.522,0.029,2.451-1.141,2.249-2.844c-0.236-2.033-2.375-3.846-6.901-5.5 c-3.423-1.258-5.769-2.203-8.762-2.514C273.517,246.879,272.097,247.219,272.238,247.877z"/>
+ <path fill="#414141" d="M272.364,247.917c0.2,1.195,4.052,0.965,7.522,1.961c3.708,1.098,5.037,1.477,7.72,4.119 c2.383,2.479,0.46,3.315,2.012,3.562c1.348,0.081,2.236-0.87,2.025-2.545c-0.251-2.022-2.325-3.707-6.778-5.331 c-3.377-1.237-5.681-2.195-8.631-2.518C273.749,246.932,272.214,247.215,272.364,247.917z"/>
+ <path fill="#444444" d="M272.49,247.956c0.212,1.129,4.015,0.838,7.426,1.855c3.668,1.124,4.869,1.475,7.696,4 c2.51,2.359,0.542,3.055,2.067,3.336c1.173,0.133,2.02-0.6,1.801-2.246c-0.266-2.016-2.276-3.568-6.656-5.16 c-3.329-1.218-5.591-2.189-8.499-2.521C273.982,246.985,272.331,247.213,272.49,247.956z"/>
+ <path fill="#484848" d="M272.616,247.993c0.223,1.065,3.979,0.715,7.331,1.752c3.628,1.15,4.699,1.473,7.671,3.883 c2.638,2.238,0.624,2.791,2.122,3.108c0.998,0.185,1.804-0.329,1.577-1.946c-0.28-2.008-2.227-3.432-6.534-4.992 c-3.282-1.196-5.501-2.182-8.367-2.525C274.215,247.038,272.448,247.209,272.616,247.993z"/>
+ </g>
+ <path fill="#4C4C4C" d="M272.742,248.032c0.235,1,3.941,0.588,7.235,1.645c3.588,1.178,4.529,1.472,7.646,3.766 c2.766,2.118,0.706,2.529,2.177,2.883c0.823,0.235,1.589-0.059,1.354-1.648c-0.295-1.998-2.177-3.293-6.412-4.822 c-3.235-1.176-5.412-2.176-8.235-2.529C274.448,247.088,272.565,247.208,272.742,248.032z"/>
+ </g>
+ <g>
+ <path fill="#4C4C4C" d="M287.565,252.854c1.646,1,1.353,2.059,2.412,2.766c0.528,0.352,1.412,0.352,0.882-1 c-0.706-1.588-1.294-2.472-4.941-3.943C283.565,249.736,284.036,250.736,287.565,252.854z"/>
+ <g>
+ <path fill="#505050" d="M287.609,252.868c1.605,0.975,1.32,2.008,2.353,2.696c0.517,0.343,1.377,0.343,0.86-0.976 c-0.689-1.549-1.262-2.41-4.82-3.846C283.707,249.825,284.166,250.801,287.609,252.868z"/>
+ <path fill="#545454" d="M287.652,252.879c1.567,0.951,1.287,1.957,2.294,2.629c0.503,0.334,1.343,0.334,0.839-0.951 c-0.671-1.51-1.23-2.35-4.699-3.749C283.848,249.915,284.296,250.866,287.652,252.879z"/>
+ <path fill="#575757" d="M287.696,252.891c1.526,0.926,1.254,1.908,2.235,2.563c0.489,0.325,1.308,0.325,0.816-0.928 c-0.653-1.471-1.199-2.289-4.578-3.652C283.99,250.002,284.426,250.929,287.696,252.891z"/>
+ <path fill="#5B5B5B" d="M287.74,252.903c1.485,0.902,1.22,1.857,2.175,2.494c0.479,0.318,1.274,0.318,0.796-0.902 c-0.637-1.432-1.167-2.229-4.457-3.556C284.132,250.09,284.557,250.993,287.74,252.903z"/>
+ <path fill="#5F5F5F" d="M287.783,252.915c1.446,0.879,1.188,1.808,2.117,2.426c0.464,0.31,1.239,0.31,0.773-0.877 c-0.619-1.394-1.136-2.168-4.336-3.459C284.273,250.179,284.687,251.057,287.783,252.915z"/>
+ <path fill="#636363" d="M287.827,252.926c1.405,0.854,1.154,1.758,2.057,2.359c0.452,0.301,1.205,0.301,0.754-0.853 c-0.603-1.354-1.104-2.108-4.216-3.363C284.415,250.268,284.817,251.122,287.827,252.926z"/>
+ <path fill="#676767" d="M287.871,252.94c1.364,0.828,1.121,1.705,1.998,2.29c0.438,0.292,1.17,0.292,0.731-0.828 c-0.585-1.315-1.072-2.047-4.095-3.267C284.557,250.356,284.947,251.185,287.871,252.94z"/>
+ <path fill="#6B6B6B" d="M287.914,252.952c1.325,0.805,1.088,1.655,1.94,2.223c0.425,0.283,1.135,0.283,0.709-0.803 c-0.568-1.277-1.041-1.988-3.974-3.17C284.698,250.445,285.077,251.249,287.914,252.952z"/>
+ <path fill="#6E6E6E" d="M287.958,252.963c1.284,0.779,1.056,1.605,1.88,2.156c0.413,0.274,1.102,0.274,0.688-0.779 c-0.551-1.238-1.009-1.926-3.853-3.073C284.84,250.534,285.207,251.313,287.958,252.963z"/>
+ <path fill="#727272" d="M288.002,252.976c1.243,0.755,1.021,1.554,1.821,2.087c0.399,0.266,1.066,0.266,0.666-0.755 c-0.533-1.199-0.977-1.865-3.731-2.976C284.982,250.622,285.337,251.377,288.002,252.976z"/>
+ <path fill="#767676" d="M288.045,252.989c1.203,0.73,0.989,1.504,1.763,2.02c0.387,0.257,1.031,0.257,0.645-0.731 c-0.516-1.159-0.946-1.805-3.61-2.879C285.123,250.711,285.467,251.441,288.045,252.989z"/>
+ <path fill="#7A7A7A" d="M288.089,253c1.163,0.705,0.955,1.453,1.703,1.951c0.373,0.25,0.997,0.25,0.623-0.705 c-0.499-1.121-0.914-1.744-3.489-2.783C285.265,250.799,285.597,251.504,288.089,253z"/>
+ <path fill="#7E7E7E" d="M288.133,253.012c1.122,0.682,0.923,1.404,1.644,1.885c0.361,0.24,0.962,0.24,0.602-0.682 c-0.481-1.082-0.882-1.684-3.367-2.687C285.407,250.888,285.727,251.569,288.133,253.012z"/>
+ <path fill="#828282" d="M288.176,253.025c1.082,0.657,0.89,1.353,1.586,1.815c0.348,0.232,0.927,0.232,0.578-0.656 c-0.463-1.043-0.85-1.623-3.245-2.59C285.548,250.976,285.858,251.633,288.176,253.025z"/>
+ <path fill="#858585" d="M288.22,253.038c1.042,0.631,0.855,1.301,1.524,1.748c0.335,0.223,0.894,0.223,0.559-0.633 c-0.446-1.005-0.818-1.563-3.125-2.492C285.69,251.065,285.988,251.698,288.22,253.038z"/>
+ <path fill="#898989" d="M288.264,253.049c1.001,0.607,0.821,1.252,1.466,1.681c0.322,0.214,0.857,0.214,0.536-0.608 c-0.43-0.965-0.786-1.502-3.004-2.396C285.832,251.153,286.118,251.76,288.264,253.049z"/>
+ <path fill="#8D8D8D" d="M288.307,253.061c0.961,0.584,0.79,1.201,1.407,1.613c0.309,0.205,0.823,0.205,0.515-0.584 c-0.412-0.926-0.755-1.441-2.883-2.299C285.973,251.243,286.248,251.825,288.307,253.061z"/>
+ <path fill="#919191" d="M288.351,253.073c0.921,0.559,0.756,1.151,1.348,1.547c0.296,0.196,0.789,0.196,0.493-0.56 c-0.395-0.888-0.723-1.381-2.762-2.204C286.115,251.331,286.378,251.889,288.351,253.073z"/>
+ <path fill="#959595" d="M288.395,253.084c0.88,0.535,0.723,1.102,1.289,1.479c0.282,0.189,0.754,0.189,0.471-0.534 c-0.377-0.849-0.691-1.321-2.641-2.106C286.257,251.418,286.508,251.954,288.395,253.084z"/>
+ </g>
+ <path fill="#999999" d="M288.438,253.097c0.84,0.51,0.689,1.05,1.229,1.409c0.271,0.181,0.721,0.181,0.45-0.51 c-0.36-0.81-0.66-1.26-2.52-2.01C286.398,251.506,286.638,252.017,288.438,253.097z"/>
+ </g>
+ <g>
+ <path d="M222.275,107.427c-0.738,0.902,0.574,8.365,5.412,13.285c4.839,4.838,7.791,4.838,9.759,2.706 c3.771-4.018,0.738-7.791-1.558-10.415c-2.297-2.624-5.248-1.722-7.955-4.346C225.227,106.033,223.341,106.197,222.275,107.427z"/>
+ <g>
+ <path fill="#050505" d="M222.345,107.494c-0.732,0.895,0.569,8.3,5.369,13.182c4.803,4.801,7.731,4.801,9.685,2.685 c3.742-3.987,0.731-7.73-1.546-10.334c-2.278-2.604-5.208-1.709-7.894-4.312C225.275,106.111,223.403,106.274,222.345,107.494z"/>
+ <path fill="#0A0A0A" d="M222.416,107.561c-0.727,0.888,0.565,8.235,5.328,13.079c4.763,4.763,7.67,4.763,9.607,2.664 c3.713-3.956,0.727-7.67-1.534-10.253c-2.26-2.584-5.166-1.696-7.831-4.279C225.322,106.189,223.465,106.35,222.416,107.561z"/>
+ <path fill="#0F0F0F" d="M222.486,107.628c-0.721,0.881,0.561,8.17,5.286,12.976c4.726,4.725,7.608,4.725,9.532,2.642 c3.684-3.924,0.72-7.609-1.522-10.172c-2.243-2.563-5.126-1.682-7.77-4.244C225.369,106.267,223.527,106.427,222.486,107.628z"/>
+ <path fill="#141414" d="M222.556,107.695c-0.716,0.874,0.557,8.105,5.243,12.872c4.689,4.688,7.55,4.688,9.456,2.622 c3.655-3.893,0.716-7.549-1.51-10.091c-2.224-2.543-5.085-1.669-7.707-4.211C225.417,106.344,223.589,106.503,222.556,107.695z"/>
+ <path fill="#191919" d="M222.627,107.762c-0.71,0.867,0.552,8.04,5.202,12.769c4.65,4.65,7.488,4.65,9.379,2.601 c3.626-3.862,0.71-7.489-1.497-10.011s-5.044-1.655-7.646-4.177S223.651,106.58,222.627,107.762z"/>
+ <path fill="#1E1E1E" d="M222.697,107.829c-0.704,0.86,0.547,7.975,5.16,12.666c4.613,4.612,7.428,4.612,9.304,2.579 c3.596-3.83,0.703-7.427-1.486-9.929c-2.188-2.502-5.003-1.642-7.584-4.143C225.512,106.5,223.713,106.656,222.697,107.829z"/>
+ <path fill="#232323" d="M222.767,107.896c-0.697,0.853,0.543,7.91,5.117,12.562c4.576,4.575,7.367,4.575,9.229,2.559 c3.567-3.8,0.698-7.367-1.473-9.848c-2.171-2.482-4.963-1.629-7.522-4.11C225.559,106.578,223.775,106.733,222.767,107.896z"/>
+ <path fill="#282828" d="M222.838,107.963c-0.691,0.846,0.538,7.845,5.076,12.459c4.537,4.537,7.307,4.537,9.152,2.538 c3.537-3.769,0.691-7.307-1.461-9.768c-2.154-2.461-4.922-1.615-7.461-4.076C225.606,106.655,223.837,106.809,222.838,107.963z"/>
+ <path fill="#2D2D2D" d="M222.908,108.03c-0.686,0.839,0.534,7.78,5.034,12.355c4.5,4.499,7.246,4.499,9.076,2.516 c3.509-3.737,0.686-7.246-1.449-9.686c-2.135-2.441-4.881-1.602-7.399-4.042C225.654,106.733,223.899,106.886,222.908,108.03z"/>
+ <path fill="#333333" d="M222.978,108.096c-0.681,0.832,0.529,7.715,4.992,12.253c4.463,4.462,7.186,4.462,9.001,2.496 c3.479-3.706,0.68-7.186-1.438-9.605c-2.118-2.42-4.841-1.588-7.337-4.008S223.961,106.962,222.978,108.096z"/>
+ <path fill="#383838" d="M223.048,108.163c-0.674,0.825,0.526,7.65,4.95,12.15c4.425,4.425,7.125,4.425,8.925,2.475 c3.45-3.675,0.676-7.125-1.425-9.525c-2.099-2.4-4.8-1.575-7.274-3.975C225.749,106.889,224.023,107.038,223.048,108.163z"/>
+ <path fill="#3D3D3D" d="M223.119,108.23c-0.669,0.818,0.521,7.585,4.908,12.047c4.387,4.387,7.063,4.387,8.849,2.453 c3.42-3.643,0.669-7.064-1.413-9.443c-2.082-2.38-4.759-1.562-7.214-3.941C225.796,106.966,224.085,107.115,223.119,108.23z"/>
+ <path fill="#424242" d="M223.189,108.297c-0.663,0.811,0.516,7.52,4.866,11.944c4.35,4.349,7.004,4.349,8.772,2.432 c3.392-3.612,0.663-7.004-1.4-9.363c-2.064-2.359-4.719-1.548-7.151-3.907C225.843,107.044,224.147,107.191,223.189,108.297z"/>
+ <path fill="#474747" d="M223.259,108.364c-0.656,0.804,0.513,7.455,4.824,11.84c4.313,4.312,6.944,4.312,8.697,2.412 c3.362-3.582,0.658-6.944-1.388-9.282c-2.046-2.339-4.679-1.535-7.09-3.874C225.891,107.122,224.209,107.268,223.259,108.364z"/>
+ <path fill="#4C4C4C" d="M223.33,108.431c-0.651,0.797,0.507,7.39,4.782,11.737c4.274,4.274,6.882,4.274,8.621,2.39 c3.332-3.55,0.651-6.883-1.377-9.201s-4.636-1.521-7.028-3.839C225.938,107.2,224.271,107.344,223.33,108.431z"/>
+ <path fill="#515151" d="M223.4,108.498c-0.646,0.79,0.503,7.325,4.74,11.634c4.236,4.236,6.821,4.236,8.545,2.369 c3.304-3.519,0.646-6.822-1.364-9.12c-2.01-2.298-4.596-1.508-6.966-3.806C225.986,107.277,224.333,107.421,223.4,108.498z"/>
+ <path fill="#565656" d="M223.47,108.565c-0.641,0.783,0.499,7.26,4.697,11.53c4.199,4.199,6.763,4.199,8.471,2.349 c3.273-3.488,0.64-6.762-1.353-9.039c-1.993-2.278-4.556-1.495-6.905-3.773C226.033,107.355,224.395,107.497,223.47,108.565z"/>
+ <path fill="#5B5B5B" d="M223.541,108.632c-0.635,0.776,0.493,7.195,4.656,11.427c4.161,4.161,6.701,4.161,8.393,2.327 c3.245-3.456,0.636-6.701-1.34-8.958c-1.975-2.257-4.514-1.48-6.843-3.738C226.08,107.433,224.457,107.574,223.541,108.632z"/>
+ <path fill="#606060" d="M223.611,108.699c-0.629,0.769,0.489,7.13,4.614,11.324c4.124,4.123,6.64,4.123,8.317,2.306 c3.215-3.425,0.628-6.641-1.328-8.877c-1.957-2.237-4.474-1.468-6.78-3.705C226.128,107.511,224.519,107.65,223.611,108.699z"/>
+ </g>
+ <path fill="#666666" d="M223.681,108.765c-0.623,0.762,0.484,7.065,4.571,11.221c4.086,4.086,6.58,4.086,8.242,2.285 c3.187-3.394,0.623-6.58-1.315-8.796c-1.939-2.217-4.434-1.455-6.72-3.671C226.175,107.588,224.581,107.726,223.681,108.765z"/>
+ </g>
+</g>
+<g>
+ <g>
+ <path fill="#FFCC00" d="M137.79,109.277c1.978,1.366,2.031,1.607,4.948,3.514c4.64,3.768,12.885,4.616,16.922,4.75 c9.233,1.467,25.738-7.161,32.273-11.111c3.291-2.463,9.38-7.551,11.659-7.637c1.405,1.485-0.66,1.792-3.587,3.775 c-3.906,2.779-7.25,5.156-13.172,8.515c-6.338,3.316-16.078,8.794-28.548,8.054c-6.542-0.959-6.566-1.024-10.606-3.086 C145.279,114.319,139.778,111.443,137.79,109.277z"/>
+ <g>
+ <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="129.342" y1="259.3052" x2="195.5984" y2="259.3052" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#FAC700"/>
+ <stop offset="0.415" stop-color="#F7C400"/>
+ <stop offset="1" stop-color="#F7C400"/>
+ </linearGradient>
+ <path fill="url(#SVGID_3_)" d="M137.742,109.259c1.926,1.274,2.165,1.643,5.083,3.554c4.616,3.734,12.716,4.616,16.796,4.763 c9.365,1.452,26.05-7.294,32.356-11.159c3.357-2.506,9.344-7.498,11.595-7.604c1.365,1.472-0.728,1.768-3.688,3.814 c-3.889,2.753-7.119,5.065-12.972,8.383c-6.29,3.291-16.078,8.795-28.536,8.104c-6.561-0.945-6.851-1.07-10.758-3.079 C145.15,114.28,139.742,111.448,137.742,109.259z"/>
+ <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="129.2932" y1="259.311" x2="195.5535" y2="259.311" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#F6C200"/>
+ <stop offset="0.415" stop-color="#EFBC00"/>
+ <stop offset="1" stop-color="#EFBC00"/>
+ </linearGradient>
+ <path fill="url(#SVGID_4_)" d="M137.693,109.24c1.876,1.183,2.3,1.68,5.218,3.595c4.593,3.7,12.548,4.616,16.67,4.776 c9.498,1.437,26.364-7.428,32.44-11.207c3.425-2.55,9.308-7.444,11.528-7.57c1.326,1.457-0.795,1.743-3.788,3.854 c-3.87,2.725-6.99,4.973-12.771,8.25c-6.243,3.266-16.078,8.796-28.525,8.154c-6.579-0.931-7.134-1.117-10.908-3.073 C145.021,114.24,139.705,111.452,137.693,109.24z"/>
+ <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="129.2454" y1="259.3169" x2="195.5095" y2="259.3169" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#F1BD00"/>
+ <stop offset="0.415" stop-color="#E8B500"/>
+ <stop offset="1" stop-color="#E8B500"/>
+ </linearGradient>
+ <path fill="url(#SVGID_5_)" d="M137.645,109.222c1.825,1.091,2.434,1.715,5.352,3.635c4.569,3.665,12.38,4.615,16.544,4.789 c9.631,1.422,26.677-7.562,32.524-11.255c3.491-2.594,9.271-7.392,11.463-7.538c1.287,1.442-0.861,1.718-3.889,3.893 c-3.853,2.699-6.86,4.882-12.57,8.119c-6.195,3.241-16.078,8.797-28.513,8.203c-6.6-0.916-7.418-1.163-11.061-3.066 C144.892,114.201,139.669,111.456,137.645,109.222z"/>
+ <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="129.1965" y1="259.3218" x2="195.4646" y2="259.3218" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#EDB800"/>
+ <stop offset="0.415" stop-color="#E0AD00"/>
+ <stop offset="1" stop-color="#E0AD00"/>
+ </linearGradient>
+ <path fill="url(#SVGID_6_)" d="M137.596,109.203c1.774,1,2.568,1.752,5.487,3.676c4.545,3.631,12.211,4.615,16.418,4.801 c9.764,1.408,26.989-7.695,32.608-11.302c3.557-2.637,9.236-7.338,11.396-7.505c1.247,1.427-0.928,1.693-3.99,3.932 c-3.833,2.672-6.729,4.791-12.369,7.986c-6.148,3.217-16.078,8.799-28.501,8.254c-6.619-0.902-7.702-1.21-11.21-3.059 C144.763,114.161,139.632,111.461,137.596,109.203z"/>
+ <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="129.1477" y1="259.3267" x2="195.4216" y2="259.3267" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#E9B300"/>
+ <stop offset="0.415" stop-color="#D8A500"/>
+ <stop offset="1" stop-color="#D8A500"/>
+ </linearGradient>
+ <path fill="url(#SVGID_7_)" d="M137.548,109.184c1.724,0.909,2.703,1.788,5.622,3.717c4.522,3.597,12.043,4.615,16.292,4.814 c9.896,1.393,27.303-7.829,32.692-11.35c3.624-2.681,9.2-7.286,11.331-7.472c1.208,1.412-0.995,1.668-4.092,3.972 c-3.814,2.644-6.6,4.698-12.168,7.853c-6.101,3.192-16.077,8.8-28.489,8.303c-6.638-0.887-7.986-1.256-11.361-3.052 C144.634,114.121,139.596,111.465,137.548,109.184z"/>
+ <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="129.0989" y1="259.3315" x2="195.3787" y2="259.3315" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#E4AE00"/>
+ <stop offset="0.415" stop-color="#D19E00"/>
+ <stop offset="1" stop-color="#D19E00"/>
+ </linearGradient>
+ <path fill="url(#SVGID_8_)" d="M137.499,109.166c1.673,0.817,2.838,1.824,5.757,3.757c4.499,3.562,11.875,4.614,16.166,4.827 c10.029,1.378,27.615-7.963,32.776-11.398c3.691-2.725,9.164-7.232,11.265-7.439c1.169,1.397-1.061,1.644-4.191,4.01 c-3.796,2.618-6.469,4.608-11.968,7.722c-6.053,3.167-16.077,8.801-28.478,8.353c-6.657-0.873-8.27-1.303-11.512-3.046 C144.505,114.082,139.559,111.469,137.499,109.166z"/>
+ <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="129.051" y1="259.3364" x2="195.3376" y2="259.3364" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#E0A900"/>
+ <stop offset="0.415" stop-color="#C99600"/>
+ <stop offset="1" stop-color="#C99600"/>
+ </linearGradient>
+ <path fill="url(#SVGID_9_)" d="M137.451,109.147c1.622,0.726,2.972,1.86,5.892,3.798c4.475,3.528,11.705,4.614,16.04,4.84 c10.161,1.362,27.929-8.097,32.859-11.447c3.757-2.767,9.128-7.178,11.2-7.405c1.13,1.382-1.128,1.619-4.294,4.049 c-3.777,2.592-6.339,4.517-11.767,7.589c-6.005,3.143-16.077,8.803-28.466,8.404c-6.676-0.859-8.553-1.35-11.663-3.039 C144.376,114.042,139.523,111.474,137.451,109.147z"/>
+ <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="129.0032" y1="259.3403" x2="195.2957" y2="259.3403" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#DCA400"/>
+ <stop offset="0.415" stop-color="#C18E00"/>
+ <stop offset="1" stop-color="#C18E00"/>
+ </linearGradient>
+ <path fill="url(#SVGID_10_)" d="M137.403,109.129c1.571,0.634,3.105,1.896,6.026,3.838c4.45,3.494,11.536,4.614,15.913,4.852 c10.295,1.348,28.241-8.23,32.943-11.494c3.824-2.811,9.092-7.125,11.134-7.373c1.092,1.367-1.194,1.594-4.394,4.088 c-3.759,2.565-6.209,4.425-11.566,7.457c-5.957,3.118-16.077,8.804-28.454,8.453c-6.694-0.844-8.837-1.396-11.813-3.032 C144.247,114.002,139.486,111.478,137.403,109.129z"/>
+ <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="128.9543" y1="259.3433" x2="195.2546" y2="259.3433" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#D79F00"/>
+ <stop offset="0.415" stop-color="#BA8700"/>
+ <stop offset="1" stop-color="#BA8700"/>
+ </linearGradient>
+ <path fill="url(#SVGID_11_)" d="M137.354,109.11c1.521,0.543,3.241,1.932,6.161,3.879c4.428,3.459,11.368,4.613,15.788,4.865 c10.427,1.333,28.554-8.364,33.026-11.542c3.892-2.855,9.057-7.073,11.068-7.339c1.052,1.353-1.261,1.569-4.495,4.127 c-3.74,2.538-6.078,4.334-11.365,7.325c-5.91,3.093-16.077,8.805-28.441,8.503c-6.716-0.83-9.121-1.443-11.966-3.026 C144.118,113.963,139.45,111.482,137.354,109.11z"/>
+ <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="128.9065" y1="259.3481" x2="195.2156" y2="259.3481" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#D39B00"/>
+ <stop offset="0.415" stop-color="#B27F00"/>
+ <stop offset="1" stop-color="#B27F00"/>
+ </linearGradient>
+ <path fill="url(#SVGID_12_)" d="M137.306,109.091c1.47,0.451,3.375,1.969,6.296,3.919c4.403,3.426,11.2,4.614,15.662,4.879 c10.559,1.318,28.865-8.498,33.109-11.59c3.958-2.899,9.021-7.02,11.003-7.306c1.013,1.337-1.328,1.544-4.596,4.167 c-3.722,2.511-5.949,4.242-11.165,7.192c-5.862,3.068-16.077,8.807-28.43,8.553c-6.734-0.816-9.405-1.489-12.116-3.019 C143.989,113.923,139.413,111.486,137.306,109.091z"/>
+ <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="128.8567" y1="259.3501" x2="195.1755" y2="259.3501" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#CF9600"/>
+ <stop offset="0.415" stop-color="#AA7700"/>
+ <stop offset="1" stop-color="#AA7700"/>
+ </linearGradient>
+ <path fill="url(#SVGID_13_)" d="M137.257,109.073c1.421,0.359,3.511,2.005,6.432,3.959c4.38,3.392,11.032,4.614,15.536,4.892 c10.691,1.303,29.179-8.631,33.193-11.638c4.024-2.942,8.984-6.967,10.938-7.274c0.973,1.323-1.396,1.521-4.697,4.206 c-3.703,2.484-5.818,4.151-10.964,7.06c-5.814,3.043-16.077,8.808-28.418,8.603c-6.753-0.802-9.689-1.535-12.268-3.012 C143.86,113.883,139.377,111.491,137.257,109.073z"/>
+ <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="128.8088" y1="259.354" x2="195.1365" y2="259.354" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#CA9100"/>
+ <stop offset="0.415" stop-color="#A37000"/>
+ <stop offset="1" stop-color="#A37000"/>
+ </linearGradient>
+ <path fill="url(#SVGID_14_)" d="M137.209,109.054c1.368,0.268,3.645,2.041,6.565,4c4.356,3.357,10.864,4.613,15.41,4.904 c10.824,1.289,29.493-8.764,33.277-11.685c4.092-2.986,8.948-6.914,10.871-7.241c0.935,1.308-1.461,1.496-4.797,4.245 c-3.685,2.457-5.688,4.06-10.763,6.928c-5.768,3.018-16.077,8.809-28.407,8.653c-6.771-0.788-9.972-1.582-12.418-3.006 C143.731,113.844,139.34,111.495,137.209,109.054z"/>
+ <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="128.76" y1="259.356" x2="195.0994" y2="259.356" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#C68C00"/>
+ <stop offset="0.415" stop-color="#9B6800"/>
+ <stop offset="1" stop-color="#9B6800"/>
+ </linearGradient>
+ <path fill="url(#SVGID_15_)" d="M137.16,109.036c1.318,0.176,3.779,2.077,6.701,4.04c4.333,3.323,10.695,4.613,15.284,4.917 c10.957,1.274,29.805-8.898,33.36-11.733c4.158-3.03,8.912-6.86,10.807-7.208c0.894,1.292-1.528,1.471-4.899,4.284 c-3.666,2.43-5.558,3.968-10.562,6.796c-5.72,2.993-16.077,8.81-28.396,8.702c-6.791-0.773-10.256-1.628-12.568-2.999 C143.602,113.804,139.304,111.499,137.16,109.036z"/>
+ <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="128.7122" y1="259.3579" x2="195.0623" y2="259.3579" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#C28700"/>
+ <stop offset="0.415" stop-color="#936000"/>
+ <stop offset="1" stop-color="#936000"/>
+ </linearGradient>
+ <path fill="url(#SVGID_16_)" d="M137.112,109.017c1.267,0.085,3.912,2.113,6.835,4.081c4.31,3.289,10.527,4.613,15.158,4.93 c11.09,1.258,30.118-9.032,33.445-11.782c4.225-3.072,8.877-6.807,10.739-7.174c0.855,1.278-1.595,1.446-5,4.323 c-3.647,2.404-5.427,3.877-10.36,6.663c-5.673,2.969-16.077,8.812-28.384,8.753c-6.811-0.759-10.54-1.675-12.719-2.992 C143.473,113.764,139.267,111.504,137.112,109.017z"/>
+ <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="128.6633" y1="259.3599" x2="195.0251" y2="259.3599" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#BD8200"/>
+ <stop offset="0.415" stop-color="#8C5900"/>
+ <stop offset="1" stop-color="#8C5900"/>
+ </linearGradient>
+ <path fill="url(#SVGID_17_)" d="M137.063,108.998c1.217-0.006,4.047,2.15,6.97,4.122c4.286,3.254,10.359,4.612,15.032,4.943 c11.223,1.243,30.431-9.166,33.53-11.83c4.289-3.116,8.84-6.753,10.673-7.141c0.815,1.263-1.661,1.421-5.101,4.362 c-3.63,2.377-5.298,3.785-10.161,6.531c-5.624,2.944-16.075,8.813-28.37,8.802c-6.83-0.744-10.824-1.721-12.87-2.985 C143.344,113.725,139.231,111.508,137.063,108.998z"/>
+ <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="128.6155" y1="259.3618" x2="194.989" y2="259.3618" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#B97D00"/>
+ <stop offset="0.415" stop-color="#845100"/>
+ <stop offset="1" stop-color="#845100"/>
+ </linearGradient>
+ <path fill="url(#SVGID_18_)" d="M137.015,108.98c1.166-0.098,4.181,2.185,7.104,4.162c4.262,3.22,10.19,4.612,14.906,4.955 c11.354,1.229,30.743-9.299,33.613-11.877c4.356-3.16,8.804-6.7,10.607-7.108c0.776,1.248-1.728,1.397-5.202,4.401 c-3.61,2.35-5.167,3.694-9.96,6.399c-5.576,2.919-16.076,8.814-28.358,8.852c-6.85-0.73-11.108-1.768-13.021-2.979 C143.215,113.685,139.194,111.512,137.015,108.98z"/>
+ <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="128.5667" y1="259.3638" x2="194.9539" y2="259.3638" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#B57800"/>
+ <stop offset="0.415" stop-color="#7C4900"/>
+ <stop offset="1" stop-color="#7C4900"/>
+ </linearGradient>
+ <path fill="url(#SVGID_19_)" d="M136.967,108.961c1.115-0.189,4.315,2.222,7.239,4.203c4.239,3.186,10.021,4.612,14.78,4.968 c11.488,1.214,31.057-9.433,33.697-11.925c4.424-3.203,8.768-6.647,10.542-7.075c0.736,1.233-1.795,1.372-5.303,4.44 c-3.593,2.323-5.038,3.603-9.759,6.266c-5.529,2.895-16.077,8.816-28.348,8.903c-6.868-0.716-11.392-1.815-13.172-2.972 C143.086,113.645,139.158,111.517,136.967,108.961z"/>
+ <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="128.5178" y1="259.3657" x2="194.9177" y2="259.3657" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#B07300"/>
+ <stop offset="0.415" stop-color="#754200"/>
+ <stop offset="1" stop-color="#754200"/>
+ </linearGradient>
+ <path fill="url(#SVGID_20_)" d="M136.918,108.943c1.064-0.281,4.45,2.257,7.374,4.243c4.216,3.151,9.854,4.611,14.654,4.981 c11.621,1.199,31.37-9.567,33.781-11.973c4.49-3.247,8.731-6.594,10.476-7.042c0.698,1.218-1.861,1.347-5.403,4.479 c-3.573,2.296-4.906,3.511-9.558,6.134c-5.48,2.87-16.076,8.817-28.336,8.952c-6.887-0.701-11.675-1.861-13.323-2.965 C142.957,113.606,139.121,111.521,136.918,108.943z"/>
+ <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="128.47" y1="259.3667" x2="194.8855" y2="259.3667" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#AC6E00"/>
+ <stop offset="0.415" stop-color="#6D3A00"/>
+ <stop offset="1" stop-color="#6D3A00"/>
+ </linearGradient>
+ <path fill="url(#SVGID_21_)" d="M136.87,108.924c1.013-0.372,4.584,2.294,7.509,4.284c4.191,3.117,9.685,4.611,14.528,4.994 c11.753,1.184,31.682-9.701,33.864-12.021c4.557-3.291,8.695-6.542,10.411-7.009c0.657,1.203-1.929,1.322-5.504,4.518 c-3.557,2.269-4.777,3.42-9.358,6.002c-5.434,2.845-16.076,8.818-28.324,9.002c-6.907-0.687-11.959-1.908-13.474-2.959 C142.828,113.566,139.085,111.525,136.87,108.924z"/>
+ </g>
+ <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="128.4211" y1="259.3687" x2="194.8503" y2="259.3687" gradientTransform="matrix(1 0 0 -1 8.3999 368.2998)">
+ <stop offset="0" stop-color="#A86A00"/>
+ <stop offset="0.415" stop-color="#663200"/>
+ <stop offset="1" stop-color="#663200"/>
+ </linearGradient>
+ <path fill="url(#SVGID_22_)" d="M136.821,108.905c0.963-0.464,4.719,2.33,7.644,4.324c4.168,3.083,9.517,4.611,14.402,5.007 c11.886,1.169,31.995-9.834,33.948-12.069c4.624-3.334,8.66-6.487,10.345-6.976c0.619,1.188-1.995,1.298-5.604,4.558 c-3.537,2.242-4.647,3.328-9.157,5.869c-5.386,2.82-16.076,8.82-28.313,9.052c-6.926-0.673-12.243-1.954-13.625-2.952 C142.699,113.526,139.048,111.529,136.821,108.905z"/>
+ </g>
+</g>
+</svg>