diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
commit | c853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch) | |
tree | 7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /packaging | |
parent | Initial commit. (diff) | |
download | inkscape-upstream.tar.xz inkscape-upstream.zip |
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
47 files changed, 13291 insertions, 0 deletions
diff --git a/packaging/README.md b/packaging/README.md new file mode 100644 index 0000000..a99995b --- /dev/null +++ b/packaging/README.md @@ -0,0 +1,6 @@ +Packaging +========= + +This directory contains files and utilities for creating source and +binary packages of Inkscape. Items in this directory typically are not +referenced, used, or included in the regular Inkscape builds. diff --git a/packaging/appimage/AppRun b/packaging/appimage/AppRun new file mode 100644 index 0000000..cd5142b --- /dev/null +++ b/packaging/appimage/AppRun @@ -0,0 +1,74 @@ +#!/bin/bash + +HERE="$(dirname "$(readlink -f "${0}")")" + +# Temporary workaround for broken libgc +if [ -z "$_INKSCAPE_GC" ] ; then + echo "Setting _INKSCAPE_GC=disable as a workaround for broken libgc" >&2 + export _INKSCAPE_GC=disable +fi + +# Custom AppRun script for Inkscape +# by Simon Peter + +############################################################################################ +# Allow AppRun or the AppImage to be symlinked to, e.g., +# /usr/local/bin/inkview +# or to be called with ./Inkscape*.AppImage inkview +############################################################################################ + +if [ ! -z "$APPIMAGE" ] ; then + BINARY_NAME=$(basename "$ARGV0") +else + BINARY_NAME=$(basename "$0") +fi +if [ ! -z "$1" ] && [ -e "$HERE/usr/bin/$1" ] ; then + MAIN="$HERE/usr/bin/$1" ; shift +elif [ -e "$HERE/usr/bin/$BINARY_NAME" ] ; then + MAIN="$HERE/usr/bin/$BINARY_NAME" +else + MAIN="$HERE/usr/bin/inkscape" +fi + +############################################################################################ +# Prefer to run the bundled executables (e.g., Python) +############################################################################################ + +export PATH="${HERE}/usr/bin:${PATH}" + +############################################################################################ +# Make sure commands launch Inkscape through this file to correctly set environment +############################################################################################ + +export INKSCAPE_COMMAND="${HERE}/AppRun" + +############################################################################################ +# Run experimental bundle that bundles everything if a private ld-linux-x86-64.so.2 is there +############################################################################################ + +PLATFORM=x86_64-linux-gnu + +# Glib/Gtk environment +export GCONV_PATH="$HERE/usr/lib/$PLATFORM/gconv" +export FONTCONFIG_FILE="$HERE/etc/fonts/fonts.conf" +export GTK_EXE_PREFIX="$HERE/usr" +export GDK_PIXBUF_MODULEDIR=$(readlink -f "$HERE"/usr/lib/$PLATFORM/gdk-pixbuf-*/*/loaders/ ) +export GDK_PIXBUF_MODULE_FILE=$(readlink -f "$HERE"/usr/lib/$PLATFORM/gdk-pixbuf-*/*/loaders.cache ) # Patched to contain no paths +export GI_TYPELIB_PATH="$HERE/usr/lib/$PLATFORM/girepository-1.0" + +# For bundled themes +export XDG_DATA_DIRS="$HERE/usr/share:${XDG_DATA_DIRS:-/usr/local/share:/usr/share}" + +# Shared library path +LIBRARY_PATH="$HERE/lib/$PLATFORM" +LIBRARY_PATH+=":$HERE/usr/lib/$PLATFORM" +LIBRARY_PATH+=":$HERE/usr/lib" +LIBRARY_PATH+=":$GDK_PIXBUF_MODULEDIR" # Otherwise getting "Unable to load image-loading module" + +# Otherwise getting "Unable to load image-loading module" when opening extension manager +export LD_LIBRARY_PATH="$GDK_PIXBUF_MODULEDIR" + +if [[ "$( dirname "$0"; )" == *"tmp/.mount_"* ]] ; then + echo "You should not use AppImage in production, but you can speedup the AppImage by following this guide: https://inkscape.org/learn/appimage/" +fi +exec "$HERE/lib/$PLATFORM/ld-linux-x86-64.so.2" --inhibit-cache --library-path "$LIBRARY_PATH" "$MAIN" "$@" diff --git a/packaging/appimage/generate.sh b/packaging/appimage/generate.sh new file mode 100644 index 0000000..59bf0e2 --- /dev/null +++ b/packaging/appimage/generate.sh @@ -0,0 +1,145 @@ +#!/bin/bash + +######################################################################## +# Install build-time and run-time dependencies +######################################################################## + +export DEBIAN_FRONTEND=noninteractive + +######################################################################## +# Build pixman 0.40 (needed for dithering) +######################################################################## + +git clone https://gitlab.freedesktop.org/pixman/pixman.git +cd pixman +git checkout pixman-0.40.0 +./autogen.sh --prefix /usr --libdir /usr/lib/x86_64-linux-gnu +make install -j$(nproc) +cd .. + +######################################################################## +# Build Inkscape and install to appdir/ +######################################################################## + +mkdir -p build && cd build +cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_BINRELOC=ON \ +-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_COMPILER_LAUNCHER=ccache \ +-DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DWITH_INTERNAL_CAIRO=ON +make -j$(nproc) +make DESTDIR=$PWD/appdir -j$(nproc) install ; find appdir/ +cp ../packaging/appimage/AppRun appdir/AppRun ; chmod +x appdir/AppRun +cp ./appdir/usr/share/icons/hicolor/256x256/apps/org.inkscape.Inkscape.png ./appdir/ +sed -i -e 's|^Icon=.*|Icon=org.inkscape.Inkscape|g' ./appdir/usr/share/applications/org.inkscape.Inkscape.desktop # FIXME +cd appdir/ + +######################################################################## +# Bundle everyhting +# to allow the AppImage to run on older systems as well +######################################################################## + +apt_bundle() { + apt-get download "$@" + find *.deb -exec dpkg-deb -x {} . \; + find *.deb -delete +} + +make_ld_launcher() { + cat > "$2" <<EOF +#!/bin/sh +HERE="\$(dirname "\$(readlink -f "\${0}")")" +exec "\${HERE}/../../lib/x86_64-linux-gnu/ld-linux-x86-64.so.2" "\${HERE}/$1" "\$@" +EOF + chmod a+x "$2" +} + +# Bundle all of glibc; this should eventually be done by linuxdeployqt +apt update +apt_bundle libc6 + +# Make absolutely sure it will not load stuff from /lib or /usr +sed -i -e 's|/usr|/xxx|g' lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 + +# Bundle Gdk pixbuf loaders without which the bundled Gtk does not work; +# this should eventually be done by linuxdeployqt +apt_bundle librsvg2-common libgdk-pixbuf2.0-0 +cp /usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/* usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders/ +cp /usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders.cache usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/ +sed -i -e 's|/usr/lib/x86_64-linux-gnu/gdk-pixbuf-.*/.*/loaders/||g' usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders.cache + +# Bundle fontconfig settings +mkdir -p etc/fonts/ +cp /etc/fonts/fonts.conf etc/fonts/ + +# Bundle Python +PY_VER=3.8 +apt_bundle \ + libpython${PY_VER}-stdlib \ + libpython${PY_VER}-minimal \ + python${PY_VER} \ + python${PY_VER}-minimal \ + python3-lxml \ + python3-numpy \ + python3-six \ + python3-scour \ + python3-requests \ + python3-cachecontrol \ + python3-urllib3 \ + python3-chardet \ + python3-certifi \ + python3-idna \ + python3-msgpack \ + python3-lockfile \ + python3-cssselect \ + python3-distutils \ + python3-packaging \ + python3-appdirs \ + python3-bs4 \ + python3-gi \ + python3-gi-cairo \ + python3-pil \ + gir1.2-glib-2.0 \ + gir1.2-gtk-3.0 \ + gir1.2-gdkpixbuf-2.0 \ + gir1.2-pango-1.0 +( + cd usr/bin + make_ld_launcher "python${PY_VER}" python3 + make_ld_launcher "python${PY_VER}" python +) + +# Compile GLib schemas if the subdirectory is present in the AppImage +# AppRun has to export GSETTINGS_SCHEMA_DIR for this to work +apt_bundle gnome-settings-daemon-common +mkdir -p usr/share/glib-2.0/schemas/ +cp /usr/share/glib-2.0/schemas/*.gschema.xml usr/share/glib-2.0/schemas/ +if [ -d usr/share/glib-2.0/schemas/ ] ; then + ( cd usr/share/glib-2.0/schemas/ ; glib-compile-schemas . ) +fi + +cd - + +######################################################################## +# Generate AppImage +######################################################################## + +wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" +chmod a+x linuxdeployqt-continuous-x86_64.AppImage + +linuxdeployqtargs=() + +for so in $(find \ + appdir/usr/lib/x86_64-linux-gnu/gdk-pixbuf-*/*/loaders \ + appdir/usr/lib/python3 \ + appdir/usr/lib/python${PY_VER} \ + -name \*.so); do + linuxdeployqtargs+=("-executable=$(readlink -f "$so")") +done + +./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract-and-run appdir/usr/share/applications/org.inkscape.Inkscape.desktop \ + -appimage -unsupported-bundle-everything -executable=appdir/usr/bin/inkview \ + -executable=appdir/usr/lib/inkscape/libinkscape_base.so \ + -executable=appdir/usr/bin/python${PY_VER} \ + "${linuxdeployqtargs[@]}" + +# -executable=appdir/usr/lib/x86_64-linux-gnu/inkscape/libinkscape_base.so \ +mv Inkscape*.AppImage* ../ diff --git a/packaging/cairo.patch b/packaging/cairo.patch new file mode 100644 index 0000000..dc92e26 --- /dev/null +++ b/packaging/cairo.patch @@ -0,0 +1,659 @@ +From e0d713b9bbd6d4a1e27e18c15141fa7f568001c7 Mon Sep 17 00:00:00 2001 +From: Marc Jeanmougin <marc@jeanmougin.fr> +Date: Wed, 29 May 2019 09:44:09 +0200 +Subject: [PATCH 1/3] Enable access to the pixman dithering path Code to choose + between dithering quality is modeled on the filter rendering choice + +--- + src/cairo-gl-gradient.c | 4 +++- + src/cairo-image-source.c | 48 +++++++++++++++++++++++++++++++++++++ + src/cairo-pattern-private.h | 1 + + src/cairo-pattern.c | 45 ++++++++++++++++++++++++++++++++++ + src/cairo.h | 14 +++++++++++ + 5 files changed, 111 insertions(+), 1 deletion(-) + +diff --git a/src/cairo-gl-gradient.c b/src/cairo-gl-gradient.c +index 293d4e30e..a22cca729 100644 +--- a/src/cairo-gl-gradient.c ++++ b/src/cairo-gl-gradient.c +@@ -160,7 +160,9 @@ _cairo_gl_gradient_render (const cairo_gl_context_t *ctx, + + pixman_image_set_filter (gradient, PIXMAN_FILTER_BILINEAR, NULL, 0); + pixman_image_set_repeat (gradient, PIXMAN_REPEAT_PAD); +- ++#if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0,39,0) ++ pixman_image_set_dither (gradient, PIXMAN_DITHER_BEST); ++#endif + image = pixman_image_create_bits (gradient_pixman_format, width, 1, + bytes, sizeof(uint32_t)*width); + if (unlikely (image == NULL)) { +diff --git a/src/cairo-image-source.c b/src/cairo-image-source.c +index c56845ab2..274f43df7 100644 +--- a/src/cairo-image-source.c ++++ b/src/cairo-image-source.c +@@ -383,6 +383,30 @@ _pixman_image_for_gradient (const cairo_gradient_pattern_t *pattern, + + pixman_image_set_repeat (pixman_image, pixman_repeat); + } ++#if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0,39,0) ++ { ++ pixman_dither_t pixman_dither; ++ ++ switch (pattern->base.dither) { ++ default: ++ case CAIRO_DITHER_NONE: ++ case CAIRO_DITHER_DEFAULT: ++ pixman_dither = PIXMAN_DITHER_NONE; ++ break; ++ case CAIRO_DITHER_FAST: ++ pixman_dither = PIXMAN_DITHER_FAST; ++ break; ++ case CAIRO_DITHER_GOOD: ++ pixman_dither = PIXMAN_DITHER_GOOD; ++ break; ++ case CAIRO_DITHER_BEST: ++ pixman_dither = PIXMAN_DITHER_BEST; ++ break; ++ } ++ ++ pixman_image_set_dither (pixman_image, pixman_dither); ++ } ++#endif + + return pixman_image; + } +@@ -1047,6 +1071,30 @@ _pixman_image_set_properties (pixman_image_t *pixman_image, + + pixman_image_set_repeat (pixman_image, pixman_repeat); + } ++#if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0,39,0) ++ { ++ pixman_dither_t pixman_dither; ++ ++ switch (pattern->dither) { ++ default: ++ case CAIRO_DITHER_NONE: ++ case CAIRO_DITHER_DEFAULT: ++ pixman_dither = PIXMAN_DITHER_NONE; ++ break; ++ case CAIRO_DITHER_FAST: ++ pixman_dither = PIXMAN_DITHER_FAST; ++ break; ++ case CAIRO_DITHER_GOOD: ++ pixman_dither = PIXMAN_DITHER_GOOD; ++ break; ++ case CAIRO_DITHER_BEST: ++ pixman_dither = PIXMAN_DITHER_BEST; ++ break; ++ } ++ ++ pixman_image_set_dither (pixman_image, pixman_dither); ++ } ++#endif + + if (pattern->has_component_alpha) + pixman_image_set_component_alpha (pixman_image, TRUE); +diff --git a/src/cairo-pattern-private.h b/src/cairo-pattern-private.h +index f6138fb70..96ae4f615 100644 +--- a/src/cairo-pattern-private.h ++++ b/src/cairo-pattern-private.h +@@ -70,6 +70,7 @@ struct _cairo_pattern { + cairo_pattern_type_t type; + + cairo_filter_t filter; ++ cairo_dither_t dither; + cairo_extend_t extend; + cairo_bool_t has_component_alpha; + cairo_bool_t is_userfont_foreground; +diff --git a/src/cairo-pattern.c b/src/cairo-pattern.c +index 6bd3edfd8..6cf907f36 100644 +--- a/src/cairo-pattern.c ++++ b/src/cairo-pattern.c +@@ -74,6 +74,7 @@ static const cairo_solid_pattern_t _cairo_pattern_nil = { + + CAIRO_PATTERN_TYPE_SOLID, /* type */ + CAIRO_FILTER_DEFAULT, /* filter */ ++ CAIRO_DITHER_DEFAULT, /* dither */ + CAIRO_EXTEND_GRADIENT_DEFAULT, /* extend */ + FALSE, /* has component alpha */ + FALSE, /* is_userfont_foreground */ +@@ -91,6 +92,7 @@ static const cairo_solid_pattern_t _cairo_pattern_nil_null_pointer = { + + CAIRO_PATTERN_TYPE_SOLID, /* type */ + CAIRO_FILTER_DEFAULT, /* filter */ ++ CAIRO_DITHER_DEFAULT, /* dither */ + CAIRO_EXTEND_GRADIENT_DEFAULT, /* extend */ + FALSE, /* has component alpha */ + FALSE, /* is_userfont_foreground */ +@@ -108,6 +110,7 @@ const cairo_solid_pattern_t _cairo_pattern_black = { + + CAIRO_PATTERN_TYPE_SOLID, /* type */ + CAIRO_FILTER_NEAREST, /* filter */ ++ CAIRO_DITHER_DEFAULT, /* dither */ + CAIRO_EXTEND_REPEAT, /* extend */ + FALSE, /* has component alpha */ + FALSE, /* is_userfont_foreground */ +@@ -126,6 +129,7 @@ const cairo_solid_pattern_t _cairo_pattern_clear = { + + CAIRO_PATTERN_TYPE_SOLID, /* type */ + CAIRO_FILTER_NEAREST, /* filter */ ++ CAIRO_DITHER_DEFAULT, /* dither */ + CAIRO_EXTEND_REPEAT, /* extend */ + FALSE, /* has component alpha */ + FALSE, /* is_userfont_foreground */ +@@ -144,6 +148,7 @@ const cairo_solid_pattern_t _cairo_pattern_white = { + + CAIRO_PATTERN_TYPE_SOLID, /* type */ + CAIRO_FILTER_NEAREST, /* filter */ ++ CAIRO_DITHER_DEFAULT, /* dither */ + CAIRO_EXTEND_REPEAT, /* extend */ + FALSE, /* has component alpha */ + FALSE, /* is_userfont_foreground */ +@@ -235,6 +240,7 @@ _cairo_pattern_init (cairo_pattern_t *pattern, cairo_pattern_type_t type) + pattern->extend = CAIRO_EXTEND_GRADIENT_DEFAULT; + + pattern->filter = CAIRO_FILTER_DEFAULT; ++ pattern->dither = CAIRO_DITHER_DEFAULT; + pattern->opacity = 1.0; + + pattern->has_component_alpha = FALSE; +@@ -2074,6 +2080,28 @@ cairo_pattern_set_filter (cairo_pattern_t *pattern, cairo_filter_t filter) + _cairo_pattern_notify_observers (pattern, CAIRO_PATTERN_NOTIFY_FILTER); + } + ++/** ++ * cairo_pattern_set_dither: ++ * @pattern: a #cairo_pattern_t ++ * @filter: a #cairo_dither_t describing the dithering to use ++ * ++ * See #cairo_dither_t for details on each algorithm. ++ * ++ * Since: TODO ++ **/ ++void ++cairo_pattern_set_dither (cairo_pattern_t *pattern, cairo_dither_t dither) ++{ ++ if (pattern->status) ++ return; ++ ++ pattern->dither = dither; ++ _cairo_pattern_notify_observers (pattern, CAIRO_PATTERN_NOTIFY_FILTER); ++ /* We probably can notify the same observers as when we notify filter ++ * changes (?) TODO CHECK THAT */ ++} ++ ++ + /** + * cairo_pattern_get_filter: + * @pattern: a #cairo_pattern_t +@@ -2091,6 +2119,23 @@ cairo_pattern_get_filter (cairo_pattern_t *pattern) + return pattern->filter; + } + ++/** ++ * cairo_pattern_get_dither: ++ * @pattern: a #cairo_pattern_t ++ * ++ * Gets the current dithering for a pattern. See #cairo_dither_t ++ * for details. ++ * ++ * Return value: the current dithering algorithm of the pattern ++ * ++ * Since: TODO ++ **/ ++cairo_dither_t ++cairo_pattern_get_dither (cairo_pattern_t *pattern) ++{ ++ return pattern->dither; ++} ++ + /** + * cairo_pattern_set_extend: + * @pattern: a #cairo_pattern_t +diff --git a/src/cairo.h b/src/cairo.h +index fb1da4146..1c911d09d 100644 +--- a/src/cairo.h ++++ b/src/cairo.h +@@ -3003,12 +3003,26 @@ typedef enum _cairo_filter { + CAIRO_FILTER_GAUSSIAN + } cairo_filter_t; + ++typedef enum _cairo_dither { ++ CAIRO_DITHER_NONE, ++ CAIRO_DITHER_DEFAULT, ++ CAIRO_DITHER_FAST, ++ CAIRO_DITHER_GOOD, ++ CAIRO_DITHER_BEST ++} cairo_dither_t; ++ + cairo_public void + cairo_pattern_set_filter (cairo_pattern_t *pattern, cairo_filter_t filter); + + cairo_public cairo_filter_t + cairo_pattern_get_filter (cairo_pattern_t *pattern); + ++cairo_public void ++cairo_pattern_set_dither (cairo_pattern_t *pattern, cairo_dither_t dither); ++ ++cairo_public cairo_dither_t ++cairo_pattern_get_dither (cairo_pattern_t *pattern); ++ + cairo_public cairo_status_t + cairo_pattern_get_rgba (cairo_pattern_t *pattern, + double *red, double *green, +-- +2.25.1 + + +From 659173b4bb01e2de438d894dca9ed01838eaf028 Mon Sep 17 00:00:00 2001 +From: Marc Jeanmougin <marc@jeanmougin.fr> +Date: Sat, 27 Mar 2021 23:53:28 +0100 +Subject: [PATCH 2/3] Expose dithering property at the image surface level. + +Copies the property on push_group +--- + src/cairo-default-context.c | 6 ++- + src/cairo-image-source.c | 40 ++---------------- + src/cairo-image-surface-private.h | 1 + + src/cairo-image-surface.c | 67 +++++++++++++++++++++++++++++++ + src/cairo.h | 22 ++++++---- + src/cairoint.h | 5 +++ + 6 files changed, 96 insertions(+), 45 deletions(-) + +diff --git a/src/cairo-default-context.c b/src/cairo-default-context.c +index 567c5d4d5..24af125da 100644 +--- a/src/cairo-default-context.c ++++ b/src/cairo-default-context.c +@@ -180,7 +180,11 @@ _cairo_default_context_push_group (void *abstract_cr, cairo_content_t content) + if (unlikely (status)) + goto bail; + +- /* Set device offsets on the new surface so that logically it appears at ++ /* copies over the dither property */ ++ cairo_image_surface_set_dither(group_surface, ++ cairo_image_surface_get_dither(parent_surface)); ++ ++ /* Set device offsets on the new surface so that logically it appears at + * the same location on the parent surface -- when we pop_group this, + * the source pattern will get fixed up for the appropriate target surface + * device offsets, so we want to set our own surface offsets from /that/, +diff --git a/src/cairo-image-source.c b/src/cairo-image-source.c +index 274f43df7..93daff3c0 100644 +--- a/src/cairo-image-source.c ++++ b/src/cairo-image-source.c +@@ -385,24 +385,8 @@ _pixman_image_for_gradient (const cairo_gradient_pattern_t *pattern, + } + #if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0,39,0) + { +- pixman_dither_t pixman_dither; +- +- switch (pattern->base.dither) { +- default: +- case CAIRO_DITHER_NONE: +- case CAIRO_DITHER_DEFAULT: +- pixman_dither = PIXMAN_DITHER_NONE; +- break; +- case CAIRO_DITHER_FAST: +- pixman_dither = PIXMAN_DITHER_FAST; +- break; +- case CAIRO_DITHER_GOOD: +- pixman_dither = PIXMAN_DITHER_GOOD; +- break; +- case CAIRO_DITHER_BEST: +- pixman_dither = PIXMAN_DITHER_BEST; +- break; +- } ++ pixman_dither_t pixman_dither = ++ _pixman_dither_from_cairo_dither(pattern->base.dither); + + pixman_image_set_dither (pixman_image, pixman_dither); + } +@@ -1073,24 +1057,8 @@ _pixman_image_set_properties (pixman_image_t *pixman_image, + } + #if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0,39,0) + { +- pixman_dither_t pixman_dither; +- +- switch (pattern->dither) { +- default: +- case CAIRO_DITHER_NONE: +- case CAIRO_DITHER_DEFAULT: +- pixman_dither = PIXMAN_DITHER_NONE; +- break; +- case CAIRO_DITHER_FAST: +- pixman_dither = PIXMAN_DITHER_FAST; +- break; +- case CAIRO_DITHER_GOOD: +- pixman_dither = PIXMAN_DITHER_GOOD; +- break; +- case CAIRO_DITHER_BEST: +- pixman_dither = PIXMAN_DITHER_BEST; +- break; +- } ++ pixman_dither_t pixman_dither = ++ _pixman_dither_from_cairo_dither (pattern->dither); + + pixman_image_set_dither (pixman_image, pixman_dither); + } +diff --git a/src/cairo-image-surface-private.h b/src/cairo-image-surface-private.h +index 2b7921133..c06b9737b 100644 +--- a/src/cairo-image-surface-private.h ++++ b/src/cairo-image-surface-private.h +@@ -78,6 +78,7 @@ struct _cairo_image_surface { + unsigned owns_data : 1; + unsigned transparency : 2; + unsigned color : 2; ++ cairo_dither_t dither : 3; + }; + #define to_image_surface(S) ((cairo_image_surface_t *)(S)) + +diff --git a/src/cairo-image-surface.c b/src/cairo-image-surface.c +index 3b11eb981..977bb48e6 100644 +--- a/src/cairo-image-surface.c ++++ b/src/cairo-image-surface.c +@@ -169,6 +169,7 @@ _cairo_image_surface_init (cairo_image_surface_t *surface, + surface->owns_data = FALSE; + surface->transparency = CAIRO_IMAGE_UNKNOWN; + surface->color = CAIRO_IMAGE_UNKNOWN_COLOR; ++ surface->dither = CAIRO_DITHER_DEFAULT; + + surface->width = pixman_image_get_width (pixman_image); + surface->height = pixman_image_get_height (pixman_image); +@@ -248,6 +249,25 @@ _pixman_format_from_masks (cairo_format_masks_t *masks, + return TRUE; + } + ++#if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0,39,0) ++/* Convenience function to convert cairo_dither_t into pixman_dither_t */ ++pixman_dither_t _pixman_dither_from_cairo_dither(cairo_dither_t dither) ++{ ++ switch(dither) { ++ default: ++ case CAIRO_DITHER_NONE: ++ case CAIRO_DITHER_DEFAULT: ++ return PIXMAN_DITHER_NONE; ++ case CAIRO_DITHER_FAST: ++ return PIXMAN_DITHER_FAST; ++ case CAIRO_DITHER_GOOD: ++ return PIXMAN_DITHER_GOOD; ++ case CAIRO_DITHER_BEST: ++ return PIXMAN_DITHER_BEST; ++ } ++} ++#endif ++ + /* A mask consisting of N bits set to 1. */ + #define MASK(N) ((1UL << (N))-1) + +@@ -631,6 +651,30 @@ cairo_image_surface_get_width (cairo_surface_t *surface) + } + slim_hidden_def (cairo_image_surface_get_width); + ++/** ++ * cairo_image_surface_get_dither: ++ * @surface: a #cairo_image_surface_t ++ * ++ * Get the current dithering method ++ * ++ * Return value: the current dithering method. ++ * ++ * Since: TODO ++ **/ ++cairo_dither_t ++cairo_image_surface_get_dither (cairo_surface_t *surface) ++{ ++ cairo_image_surface_t *image_surface = (cairo_image_surface_t *) surface; ++ ++ if (! _cairo_surface_is_image (surface)) { ++ _cairo_error_throw (CAIRO_STATUS_SURFACE_TYPE_MISMATCH); ++ return CAIRO_DITHER_DEFAULT; ++ } ++ ++ return image_surface->dither; ++} ++//slim_hidden_def (cairo_image_surface_get_dither); ++ + /** + * cairo_image_surface_get_height: + * @surface: a #cairo_image_surface_t +@@ -792,6 +836,7 @@ _cairo_image_surface_snapshot (void *abstract_surface) + + clone->transparency = image->transparency; + clone->color = image->color; ++ clone->dither = image->dither; + + clone->owns_data = TRUE; + return &clone->base; +@@ -1361,3 +1406,25 @@ error: + cairo_surface_destroy (image); + return to_image_surface (_cairo_surface_create_in_error (status)); + } ++ ++cairo_public int ++cairo_image_surface_set_dither (cairo_surface_t *surface, cairo_dither_t dither) ++{ ++ cairo_image_surface_t *image_surface = (cairo_image_surface_t *) surface; ++ ++ if (! _cairo_surface_is_image (surface)) { ++ _cairo_error_throw (CAIRO_STATUS_SURFACE_TYPE_MISMATCH); ++ return 0; ++ } ++ ++ image_surface->dither = dither; ++ if (image_surface->pixman_image) { ++#if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0,39,0) ++ pixman_image_set_dither(image_surface->pixman_image, ++ _pixman_dither_from_cairo_dither(dither)); ++#endif ++ } ++ ++} ++//slim_hidden_def (cairo_image_surface_set_dither); ++ +diff --git a/src/cairo.h b/src/cairo.h +index 1c911d09d..76db87d2e 100644 +--- a/src/cairo.h ++++ b/src/cairo.h +@@ -427,6 +427,14 @@ typedef enum _cairo_format { + CAIRO_FORMAT_RGBA128F = 7 + } cairo_format_t; + ++typedef enum _cairo_dither { ++ CAIRO_DITHER_NONE, ++ CAIRO_DITHER_DEFAULT, ++ CAIRO_DITHER_FAST, ++ CAIRO_DITHER_GOOD, ++ CAIRO_DITHER_BEST ++} cairo_dither_t; ++ + + /** + * cairo_write_func_t: +@@ -2607,6 +2615,12 @@ cairo_image_surface_create_for_data (unsigned char *data, + cairo_public unsigned char * + cairo_image_surface_get_data (cairo_surface_t *surface); + ++cairo_public cairo_dither_t ++cairo_image_surface_get_dither (cairo_surface_t *surface); ++ ++cairo_public int ++cairo_image_surface_set_dither (cairo_surface_t *surface, cairo_dither_t dither); ++ + cairo_public cairo_format_t + cairo_image_surface_get_format (cairo_surface_t *surface); + +@@ -3003,14 +3017,6 @@ typedef enum _cairo_filter { + CAIRO_FILTER_GAUSSIAN + } cairo_filter_t; + +-typedef enum _cairo_dither { +- CAIRO_DITHER_NONE, +- CAIRO_DITHER_DEFAULT, +- CAIRO_DITHER_FAST, +- CAIRO_DITHER_GOOD, +- CAIRO_DITHER_BEST +-} cairo_dither_t; +- + cairo_public void + cairo_pattern_set_filter (cairo_pattern_t *pattern, cairo_filter_t filter); + +diff --git a/src/cairoint.h b/src/cairoint.h +index 80b695feb..a8442b5fe 100644 +--- a/src/cairoint.h ++++ b/src/cairoint.h +@@ -1592,6 +1592,11 @@ cairo_private cairo_bool_t + _pixman_format_to_masks (pixman_format_code_t pixman_format, + cairo_format_masks_t *masks); + ++#if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0,39,0) ++cairo_private pixman_dither_t ++_pixman_dither_from_cairo_dither(cairo_dither_t dither); ++#endif ++ + cairo_private void + _cairo_image_scaled_glyph_fini (cairo_scaled_font_t *scaled_font, + cairo_scaled_glyph_t *scaled_glyph); +-- +2.25.1 + + +From edf60824e871d2393136303761135bb49986fa33 Mon Sep 17 00:00:00 2001 +From: Marc Jeanmougin <marc@jeanmougin.fr> +Date: Mon, 29 Mar 2021 12:18:56 +0200 +Subject: [PATCH 3/3] make lint tests pass + +--- + src/cairo-image-surface.c | 20 +++++++++++++++----- + src/cairo-pattern.c | 4 ++-- + src/cairoint.h | 4 +++- + 3 files changed, 20 insertions(+), 8 deletions(-) + +diff --git a/src/cairo-image-surface.c b/src/cairo-image-surface.c +index 977bb48e6..d2f544a68 100644 +--- a/src/cairo-image-surface.c ++++ b/src/cairo-image-surface.c +@@ -250,8 +250,9 @@ _pixman_format_from_masks (cairo_format_masks_t *masks, + } + + #if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0,39,0) +-/* Convenience function to convert cairo_dither_t into pixman_dither_t */ +-pixman_dither_t _pixman_dither_from_cairo_dither(cairo_dither_t dither) ++/* Convenience function to convert #cairo_dither_t into #pixman_dither_t */ ++pixman_dither_t ++_pixman_dither_from_cairo_dither (cairo_dither_t dither) + { + switch(dither) { + default: +@@ -659,7 +660,7 @@ slim_hidden_def (cairo_image_surface_get_width); + * + * Return value: the current dithering method. + * +- * Since: TODO ++ * Since: 1.18 + **/ + cairo_dither_t + cairo_image_surface_get_dither (cairo_surface_t *surface) +@@ -673,7 +674,7 @@ cairo_image_surface_get_dither (cairo_surface_t *surface) + + return image_surface->dither; + } +-//slim_hidden_def (cairo_image_surface_get_dither); ++slim_hidden_def (cairo_image_surface_get_dither); + + /** + * cairo_image_surface_get_height: +@@ -1407,6 +1408,15 @@ error: + return to_image_surface (_cairo_surface_create_in_error (status)); + } + ++/** ++ * cairo_image_surface_set_dither: ++ * @surface: a #cairo_image_surface_t ++ * @dither: a #cairo_dither_t ++ * ++ * Sets the current dithering method ++ * ++ * Since: 1.18 ++ **/ + cairo_public int + cairo_image_surface_set_dither (cairo_surface_t *surface, cairo_dither_t dither) + { +@@ -1426,5 +1436,5 @@ cairo_image_surface_set_dither (cairo_surface_t *surface, cairo_dither_t dither) + } + + } +-//slim_hidden_def (cairo_image_surface_set_dither); ++slim_hidden_def (cairo_image_surface_set_dither); + +diff --git a/src/cairo-pattern.c b/src/cairo-pattern.c +index 6cf907f36..7d05b06a1 100644 +--- a/src/cairo-pattern.c ++++ b/src/cairo-pattern.c +@@ -2087,7 +2087,7 @@ cairo_pattern_set_filter (cairo_pattern_t *pattern, cairo_filter_t filter) + * + * See #cairo_dither_t for details on each algorithm. + * +- * Since: TODO ++ * Since: 1.18 + **/ + void + cairo_pattern_set_dither (cairo_pattern_t *pattern, cairo_dither_t dither) +@@ -2128,7 +2128,7 @@ cairo_pattern_get_filter (cairo_pattern_t *pattern) + * + * Return value: the current dithering algorithm of the pattern + * +- * Since: TODO ++ * Since: 1.18 + **/ + cairo_dither_t + cairo_pattern_get_dither (cairo_pattern_t *pattern) +diff --git a/src/cairoint.h b/src/cairoint.h +index a8442b5fe..274d43556 100644 +--- a/src/cairoint.h ++++ b/src/cairoint.h +@@ -1594,7 +1594,7 @@ _pixman_format_to_masks (pixman_format_code_t pixman_format, + + #if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0,39,0) + cairo_private pixman_dither_t +-_pixman_dither_from_cairo_dither(cairo_dither_t dither); ++_pixman_dither_from_cairo_dither (cairo_dither_t dither); + #endif + + cairo_private void +@@ -1982,6 +1982,8 @@ slim_hidden_proto (cairo_image_surface_get_format); + slim_hidden_proto (cairo_image_surface_get_height); + slim_hidden_proto (cairo_image_surface_get_stride); + slim_hidden_proto (cairo_image_surface_get_width); ++slim_hidden_proto (cairo_image_surface_get_dither); ++slim_hidden_proto (cairo_image_surface_set_dither); + slim_hidden_proto (cairo_line_to); + slim_hidden_proto (cairo_mask); + slim_hidden_proto (cairo_matrix_init); +-- +2.25.1 + + +From b2e0f1d6f69ad3013dfb8d677f7b3ee9fac0fceb Mon Sep 17 00:00:00 2001 +From: Marc Jeanmougin <marc@jeanmougin.fr> +Date: Mon, 24 Jan 2022 21:28:44 +0100 +Subject: [PATCH] add define to detect patched cairo + +--- + src/cairo.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/cairo.h b/src/cairo.h +index 76db87d2e..934bf65d0 100644 +--- a/src/cairo.h ++++ b/src/cairo.h +@@ -2615,6 +2615,7 @@ cairo_image_surface_create_for_data (unsigned char *data, + cairo_public unsigned char * + cairo_image_surface_get_data (cairo_surface_t *surface); + ++#define CAIRO_HAS_DITHER + cairo_public cairo_dither_t + cairo_image_surface_get_dither (cairo_surface_t *surface); + +-- +2.25.1 + diff --git a/packaging/inkscape.16.png.bz2 b/packaging/inkscape.16.png.bz2 Binary files differnew file mode 100644 index 0000000..6e8a821 --- /dev/null +++ b/packaging/inkscape.16.png.bz2 diff --git a/packaging/inkscape.32.png.bz2 b/packaging/inkscape.32.png.bz2 Binary files differnew file mode 100644 index 0000000..5934273 --- /dev/null +++ b/packaging/inkscape.32.png.bz2 diff --git a/packaging/inkscape.48.png.bz2 b/packaging/inkscape.48.png.bz2 Binary files differnew file mode 100644 index 0000000..172e05f --- /dev/null +++ b/packaging/inkscape.48.png.bz2 diff --git a/packaging/macos/README.md b/packaging/macos/README.md new file mode 100644 index 0000000..e2d07b4 --- /dev/null +++ b/packaging/macos/README.md @@ -0,0 +1,4 @@ +# macOS build pipeline + +The macOS build pipeline is developed separately from Inkscape's codebase and can be found here: +[https://gitlab.com/inkscape/devel/mibap](https://gitlab.com/inkscape/devel/mibap) diff --git a/packaging/macos/build.sh b/packaging/macos/build.sh new file mode 100755 index 0000000..91a9c0a --- /dev/null +++ b/packaging/macos/build.sh @@ -0,0 +1,52 @@ +#!/usr/bin/env bash +# +# SPDX-FileCopyrightText: 2022 René de Hesselle <dehesselle@web.de> +# +# SPDX-License-Identifier: GPL-2.0-or-later + +# +# This script is CI-only, you will encounter errors if you run it on your +# local machine. If you want to build Inkscape locally, see +# https://gitlab.com/inkscape/devel/mibap +# + +# toolset release to build Inkscape +VERSION=v0.76-1-g3ef5190 + +# directory convenience handles +SELF_DIR=$(dirname "${BASH_SOURCE[0]}") +MIBAP_DIR=$SELF_DIR/mibap + +git clone --single-branch https://gitlab.com/inkscape/devel/mibap "$MIBAP_DIR" + +if git -C "$MIBAP_DIR" checkout "$VERSION"; then + git -C "$MIBAP_DIR" submodule update --init --recursive + + # make sure the runner is clean (this doesn't hurt if there's nothing to do) + "$MIBAP_DIR"/uninstall_toolset.sh + + if [ "$(basename -s .sh "${BASH_SOURCE[0]}")" = "test" ]; then + # install build dependencies and Inkscape + "$MIBAP_DIR"/install_toolset.sh restore_overlay + # run the test suite + if ! "$MIBAP_DIR"/310-inkscape_test.sh; then + # save testfiles only on failure + "$MIBAP_DIR"/uninstall_toolset.sh save_testfiles + exit 1 + fi + else + # install build dependencies + "$MIBAP_DIR"/install_toolset.sh + # build Inkscape + if "$MIBAP_DIR"/build_inkscape.sh; then + # uninstall build dependencies and archive build files + "$MIBAP_DIR"/uninstall_toolset.sh save_overlay + else + "$MIBAP_DIR"/uninstall_toolset.sh + exit 1 + fi + fi +else + echo "error: unknown version $VERSION" + exit 1 +fi diff --git a/packaging/macos/res/Inkscape-Generic.icns b/packaging/macos/res/Inkscape-Generic.icns Binary files differnew file mode 100644 index 0000000..9843be9 --- /dev/null +++ b/packaging/macos/res/Inkscape-Generic.icns diff --git a/packaging/macos/res/application-gimp-gradient.icns b/packaging/macos/res/application-gimp-gradient.icns Binary files differnew file mode 100644 index 0000000..ebd4b2a --- /dev/null +++ b/packaging/macos/res/application-gimp-gradient.icns diff --git a/packaging/macos/res/application-illustrator-svg.icns b/packaging/macos/res/application-illustrator-svg.icns Binary files differnew file mode 100644 index 0000000..b666dcc --- /dev/null +++ b/packaging/macos/res/application-illustrator-svg.icns diff --git a/packaging/macos/res/application-illustrator.icns b/packaging/macos/res/application-illustrator.icns Binary files differnew file mode 100644 index 0000000..c44d465 --- /dev/null +++ b/packaging/macos/res/application-illustrator.icns diff --git a/packaging/macos/res/application-pdf.icns b/packaging/macos/res/application-pdf.icns Binary files differnew file mode 100644 index 0000000..1eb670f --- /dev/null +++ b/packaging/macos/res/application-pdf.icns diff --git a/packaging/macos/res/application-vnd.corel-draw-compressed.icns b/packaging/macos/res/application-vnd.corel-draw-compressed.icns Binary files differnew file mode 100644 index 0000000..ad5dad9 --- /dev/null +++ b/packaging/macos/res/application-vnd.corel-draw-compressed.icns diff --git a/packaging/macos/res/application-vnd.corel-draw-template.icns b/packaging/macos/res/application-vnd.corel-draw-template.icns Binary files differnew file mode 100644 index 0000000..475c3fc --- /dev/null +++ b/packaging/macos/res/application-vnd.corel-draw-template.icns diff --git a/packaging/macos/res/application-vnd.corel-draw.icns b/packaging/macos/res/application-vnd.corel-draw.icns Binary files differnew file mode 100644 index 0000000..5907b7e --- /dev/null +++ b/packaging/macos/res/application-vnd.corel-draw.icns diff --git a/packaging/macos/res/application-vnd.ms.xaml.icns b/packaging/macos/res/application-vnd.ms.xaml.icns Binary files differnew file mode 100644 index 0000000..6a44b4a --- /dev/null +++ b/packaging/macos/res/application-vnd.ms.xaml.icns diff --git a/packaging/macos/res/application-vnd.wordperfect-graphic.icns b/packaging/macos/res/application-vnd.wordperfect-graphic.icns Binary files differnew file mode 100644 index 0000000..9ee4993 --- /dev/null +++ b/packaging/macos/res/application-vnd.wordperfect-graphic.icns diff --git a/packaging/macos/res/fonts.conf b/packaging/macos/res/fonts.conf new file mode 100644 index 0000000..f6f6583 --- /dev/null +++ b/packaging/macos/res/fonts.conf @@ -0,0 +1,67 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> +<!-- Inkscape.app/Contents/Resources/etc/fonts/fonts.conf file to configure system font access --> +<fontconfig> + <its:rules xmlns:its="http://www.w3.org/2005/11/its" version="1.0"> + <its:translateRule translate="no" selector="/fontconfig/*[not(self::description)]"/> + </its:rules> + + <description>Default configuration file</description> + + <!-- + Usually you'll find the "DO NOT EDIT THIS FILE" warning here. + I removed it since I clearly edited this file. I removed the + non-macOS paths and configured the cachedir. + --> + + <!-- Font directory list --> + <dir>/System/Library/Fonts</dir> + <dir>/Library/Fonts</dir> + <dir>~/Library/Fonts</dir> + + <!-- Accept deprecated 'mono' alias, replacing it with 'monospace' --> + <match target="pattern"> + <test qual="any" name="family"> + <string>mono</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>monospace</string> + </edit> + </match> + + <!-- Accept alternate 'sans serif' spelling, replacing it with 'sans-serif' --> + <match target="pattern"> + <test qual="any" name="family"> + <string>sans serif</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>sans-serif</string> + </edit> + </match> + + <!-- Accept deprecated 'sans' alias, replacing it with 'sans-serif' --> + <match target="pattern"> + <test qual="any" name="family"> + <string>sans</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>sans-serif</string> + </edit> + </match> + + <!-- Load local system customization file --> + <include ignore_missing="yes">conf.d</include> + + <!-- Font cache directory list + TODO: this should probably go below ~/Library/Caches + --> + <cachedir>~/Library/Application Support/org.inkscape.Inkscape/cache/fontconfig</cachedir> + + <config> + <rescan> + <!-- Rescan configuration every 30 seconds when FcFontSetList is called --> + <int>30</int> + </rescan> + </config> + +</fontconfig> diff --git a/packaging/macos/res/image-svg+xml-compressed.icns b/packaging/macos/res/image-svg+xml-compressed.icns Binary files differnew file mode 100644 index 0000000..7d24206 --- /dev/null +++ b/packaging/macos/res/image-svg+xml-compressed.icns diff --git a/packaging/macos/res/image-svg+xml.icns b/packaging/macos/res/image-svg+xml.icns Binary files differnew file mode 100644 index 0000000..6341984 --- /dev/null +++ b/packaging/macos/res/image-svg+xml.icns diff --git a/packaging/macos/res/image-vnd.dxf.icns b/packaging/macos/res/image-vnd.dxf.icns Binary files differnew file mode 100644 index 0000000..3b18609 --- /dev/null +++ b/packaging/macos/res/image-vnd.dxf.icns diff --git a/packaging/macos/res/image-vnd.windows-metafile.icns b/packaging/macos/res/image-vnd.windows-metafile.icns Binary files differnew file mode 100644 index 0000000..fb0bfa9 --- /dev/null +++ b/packaging/macos/res/image-vnd.windows-metafile.icns diff --git a/packaging/macos/res/inkscape.plist b/packaging/macos/res/inkscape.plist new file mode 100644 index 0000000..9667c23 --- /dev/null +++ b/packaging/macos/res/inkscape.plist @@ -0,0 +1,485 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> + <dict> + <key>ATSApplicationFontsPath</key> + <string>share/inkscape/fonts</string> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleDocumentTypes</key> + <array> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>svg</string> + <string>SVG</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>image-svg+xml.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/svg+xml</string> + </array> + <key>CFBundleTypeName</key> + <string>Scalable Vector Graphics Image</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>SVG </string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Owner</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>svgz</string> + <string>SVGZ</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>image-svg+xml-compressed.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/svg+xml-compressed</string> + </array> + <key>CFBundleTypeName</key> + <string>Compressed Scalable Vector Graphics Image</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>SVGZ</string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Owner</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>ai</string> + <string>AI</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-illustrator.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/illustrator</string> + <string>application/pdf</string> + </array> + <key>CFBundleTypeName</key> + <string>Adobe Illustrator Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>AI </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + <key>LSItemContentTypes</key> + <array> + <string>com.adobe.illustrator.ai-image</string> + </array> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>aisvg</string> + <string>AISVG</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-illustrator-svg.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/illustrator-svg</string> + </array> + <key>CFBundleTypeName</key> + <string>Adobe Illustrator SVG Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>AISVG</string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>wmf</string> + <string>WMF</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>image-vnd.windows-metafile.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/vnd.windows-metafile</string> + </array> + <key>CFBundleTypeName</key> + <string>Windows MetaFile</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>WMF </string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>pdf</string> + <string>PDF</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-pdf.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/pdf</string> + </array> + <key>CFBundleTypeName</key> + <string>NSPDFPboardType</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>PDF </string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + <key>LSItemContentTypes</key> + <array> + <string>com.adobe.pdf</string> + </array> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>ggr</string> + <string>GGR</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-gimp-gradient.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/x-gimp-gradient</string> + </array> + <key>CFBundleTypeName</key> + <string>Gimp Gradient</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + <key>LSItemContentTypes</key> + <array> + <string>org.gimp.ggr</string> + </array> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>ccx</string> + <string>CCX</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-vnd.corel-draw-compressed.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.corel-draw-compressed</string> + </array> + <key>CFBundleTypeName</key> + <string>Corel Draw Compressed Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>CCX </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>cdt</string> + <string>CDT</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-vnd.corel-draw-template.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.corel-draw-template</string> + </array> + <key>CFBundleTypeName</key> + <string>Corel Draw Template</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>CDT </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>cdr</string> + <string>CDR</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-vnd.corel-draw.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.corel-draw</string> + </array> + <key>CFBundleTypeName</key> + <string>Corel Draw Compressed Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>CDR </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>xaml</string> + <string>XAML</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-vnd.ms.xaml.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.ms.xaml</string> + </array> + <key>CFBundleTypeName</key> + <string>Extensible Application Markup Language (XAML)</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>XAML</string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>dxf</string> + <string>DXF</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>image-vnd.dxf.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/vnd.dxf</string> + </array> + <key>CFBundleTypeName</key> + <string>AutoCAD Document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>DXF </string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>wpg</string> + <string>WPG</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>application-vnd.wordperfect-graphic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.wordperfect-graphic</string> + <string>image/x-wpg</string> + </array> + <key>CFBundleTypeName</key> + <string>WordPerfect Graphics</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>WPG </string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>emf</string> + <string>EMF</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/emf</string> + </array> + <key>CFBundleTypeName</key> + <string>Windows Enhanced Metafile document</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>EMF </string> + </array> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>vsd</string> + <string>VSD</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.visio</string> + </array> + <key>CFBundleTypeName</key> + <string>Microsoft Visio Diagram</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>vdx</string> + <string>VDX</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.visio</string> + </array> + <key>CFBundleTypeName</key> + <string>Microsoft Visio XML Diagram</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>vsdm</string> + <string>VSDM</string> + <string>vsdx</string> + <string>VSDX</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.visio</string> + </array> + <key>CFBundleTypeName</key> + <string>Microsoft Visio 2013 drawing</string> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>plt</string> + <string>PLT</string> + <string>hpgl</string> + <string>hpgl</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icons</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>application/vnd.hp-HPGL</string> + <string>image/hpgl</string> + <string>image/plt</string> + <string>image/x-plt</string> + </array> + <key>CFBundleTypeName</key> + <string>HP Graphics Language file</string> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>png</string> + <string>PNG</string> + </array> + <key>CFBundleTypeIconFile</key> + <string>Inkscape-Generic.icns</string> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>image/png</string> + </array> + <key>CFBundleTypeName</key> + <string>Portable Network Graphics Image</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>PNGf</string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>None</string> + </dict> + </array> + <key>CFBundleExecutable</key> + <string>inkscape</string> + <key>CFBundleName</key> + <string>Inkscape</string> + <key>CFBundleIconFile</key> + <string>inkscape.icns</string> + <key>CFBundleIdentifier</key> + <string>org.inkscape.Inkscape</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>CFBundleShortVersionString</string> + <key>CFBundleSignature</key> + <string>Inks</string> + <key>CFBundleVersion</key> + <string>CFBundleVersion</string> + <key>LSApplicationCategoryType</key> + <string>public.app-category.graphics-design</string> + <key>LSMinimumSystemVersion</key> + <string>LSMinimumSystemVersion</string> + <key>NSDesktopFolderUsageDescription</key> + <string>Inkscape needs your permission to access the Desktop folder.</string> + <key>NSDocumentsFolderUsageDescription</key> + <string>Inkscape needs your permission to access the Documents folder.</string> + <key>NSDownloadsFolderUsageDescription</key> + <string>Inkscape needs your permission to access the Downloads folder.</string> + <key>NSRemoveableVolumesUsageDescription</key> + <string>Inkscape needs your permission to access removable volumes.</string> + <key>NSHighResolutionCapable</key> + <true/> + <key>NSHumanReadableCopyright</key> + <string>Copyright © 2022 Inkscape Developers, GNU General Public License.</string> + <key>NSRequiresAquaSystemAppearance</key> + <false/> + </dict> +</plist> diff --git a/packaging/macos/res/mibap_icon.png b/packaging/macos/res/mibap_icon.png Binary files differnew file mode 100644 index 0000000..2ea6521 --- /dev/null +++ b/packaging/macos/res/mibap_icon.png diff --git a/packaging/macos/test.sh b/packaging/macos/test.sh new file mode 120000 index 0000000..c07a74d --- /dev/null +++ b/packaging/macos/test.sh @@ -0,0 +1 @@ +build.sh
\ No newline at end of file diff --git a/packaging/mkNEWS b/packaging/mkNEWS new file mode 100755 index 0000000..69c23e3 --- /dev/null +++ b/packaging/mkNEWS @@ -0,0 +1,42 @@ +#!/usr/bin/python3 + +import re +import os +import sys +import subprocess + +wiki = "http://wiki.inkscape.org/wiki/index.php" + +if len(sys.argv) < 2: + print("Usage: mkNEWS <release-version>") + sys.exit(1) + +release_number = sys.argv[1] + +# TODO: Use beautifulsoup +url = "%s/Release_notes/%s" %(wiki, release_number) +result = subprocess.run(["w3m", "-dump", url], stdout=subprocess.PIPE) + +re_edit = re.compile(r'\[\[\d+\]edit\]', flags=re.IGNORECASE) +re_overview = re.compile(r'^\s*Inkscape '+release_number) +re_prev_rels = re.compile(r'^\s*Previous releases') + +seen_overview = 0; +for line in result.stdout.decode('utf-8').split("\n"): + line = re_edit.sub("", line) + + # Ignore everything before the overview section + if re_overview.match(line): + seen_overview = 1 + + # Ignore everything from Previous releases onward + if re_prev_rels.match(line): + break + + # TODO: Implement some additional formatting/cleanup + + if seen_overview: + print(line) + +print("\nFor information on prior releases, please see:\n") +print(" %s/Inkscape\n" %(wiki)) diff --git a/packaging/nsis/fileassoc.nsh b/packaging/nsis/fileassoc.nsh new file mode 100644 index 0000000..4bc68ea --- /dev/null +++ b/packaging/nsis/fileassoc.nsh @@ -0,0 +1,122 @@ +; from https://nsis.sourceforge.io/FileAssoc + +; fileassoc.nsh +; File association helper macros +; Written by Saivert +; +; Features automatic backup system and UPDATEFILEASSOC macro for +; shell change notification. +; +; |> How to use <| +; To associate a file with an application so you can double-click it in explorer, use +; the APP_ASSOCIATE macro like this: +; +; Example: +; !insertmacro APP_ASSOCIATE "txt" "myapp.textfile" "Description of txt files" \ +; "$INSTDIR\myapp.exe,0" "Open with myapp" "$INSTDIR\myapp.exe $\"%1$\"" +; +; Never insert the APP_ASSOCIATE macro multiple times, it is only meant +; to associate an application with a single file and using the +; the "open" verb as default. To add more verbs (actions) to a file +; use the APP_ASSOCIATE_ADDVERB macro. +; +; Example: +; !insertmacro APP_ASSOCIATE_ADDVERB "myapp.textfile" "edit" "Edit with myapp" \ +; "$INSTDIR\myapp.exe /edit $\"%1$\"" +; +; To have access to more options when registering the file association use the +; APP_ASSOCIATE_EX macro. Here you can specify the verb and what verb is to be the +; standard action (default verb). +; +; And finally: To remove the association from the registry use the APP_UNASSOCIATE +; macro. Here is another example just to wrap it up: +; !insertmacro APP_UNASSOCIATE "txt" "myapp.textfile" +; +; |> Note <| +; When defining your file class string always use the short form of your application title +; then a period (dot) and the type of file. This keeps the file class sort of unique. +; Examples: +; Winamp.Playlist +; NSIS.Script +; Photoshop.JPEGFile +; +; |> Tech info <| +; The registry key layout for a file association is: +; HKEY_CLASSES_ROOT +; <applicationID> = <"description"> +; shell +; <verb> = <"menu-item text"> +; command = <"command string"> +; + +!macro APP_ASSOCIATE EXT FILECLASS DESCRIPTION ICON COMMANDTEXT COMMAND + ; Backup the previously associated file class + ReadRegStr $R0 HKCR ".${EXT}" "" + WriteRegStr HKCR ".${EXT}" "${FILECLASS}_backup" "$R0" + + WriteRegStr HKCR ".${EXT}" "" "${FILECLASS}" + + WriteRegStr HKCR "${FILECLASS}" "" `${DESCRIPTION}` + WriteRegStr HKCR "${FILECLASS}\DefaultIcon" "" `${ICON}` + WriteRegStr HKCR "${FILECLASS}\shell" "" "open" + WriteRegStr HKCR "${FILECLASS}\shell\open" "" `${COMMANDTEXT}` + WriteRegStr HKCR "${FILECLASS}\shell\open\command" "" `${COMMAND}` +!macroend + +!macro APP_ASSOCIATE_EX EXT FILECLASS DESCRIPTION ICON VERB DEFAULTVERB SHELLNEW COMMANDTEXT COMMAND + ; Backup the previously associated file class + ReadRegStr $R0 HKCR ".${EXT}" "" + WriteRegStr HKCR ".${EXT}" "${FILECLASS}_backup" "$R0" + + WriteRegStr HKCR ".${EXT}" "" "${FILECLASS}" + StrCmp "${SHELLNEW}" "0" +2 + WriteRegStr HKCR ".${EXT}\ShellNew" "NullFile" "" + + WriteRegStr HKCR "${FILECLASS}" "" `${DESCRIPTION}` + WriteRegStr HKCR "${FILECLASS}\DefaultIcon" "" `${ICON}` + WriteRegStr HKCR "${FILECLASS}\shell" "" `${DEFAULTVERB}` + WriteRegStr HKCR "${FILECLASS}\shell\${VERB}" "" `${COMMANDTEXT}` + WriteRegStr HKCR "${FILECLASS}\shell\${VERB}\command" "" `${COMMAND}` +!macroend + +!macro APP_ASSOCIATE_ADDVERB FILECLASS VERB COMMANDTEXT COMMAND + WriteRegStr HKCR "${FILECLASS}\shell\${VERB}" "" `${COMMANDTEXT}` + WriteRegStr HKCR "${FILECLASS}\shell\${VERB}\command" "" `${COMMAND}` +!macroend + +!macro APP_ASSOCIATE_REMOVEVERB FILECLASS VERB + DeleteRegKey HKCR `${FILECLASS}\shell\${VERB}` +!macroend + + +!macro APP_UNASSOCIATE EXT FILECLASS + ; Backup the previously associated file class + ReadRegStr $R0 HKCR ".${EXT}" `${FILECLASS}_backup` + WriteRegStr HKCR ".${EXT}" "" "$R0" + DeleteRegValue HKCR ".${EXT}" `${FILECLASS}_backup` + + DeleteRegKey HKCR `${FILECLASS}` +!macroend + +!macro APP_ASSOCIATE_GETFILECLASS OUTPUT EXT + ReadRegStr ${OUTPUT} HKCR ".${EXT}" "" +!macroend + + +; !defines for use with SHChangeNotify +!ifdef SHCNE_ASSOCCHANGED +!undef SHCNE_ASSOCCHANGED +!endif +!define SHCNE_ASSOCCHANGED 0x08000000 +!ifdef SHCNF_FLUSH +!undef SHCNF_FLUSH +!endif +!define SHCNF_FLUSH 0x1000 + +!macro UPDATEFILEASSOC +; Using the system.dll plugin to call the SHChangeNotify Win32 API function so we +; can update the shell. + System::Call "shell32::SHChangeNotify(i,i,i,i) (${SHCNE_ASSOCCHANGED}, ${SHCNF_FLUSH}, 0, 0)" +!macroend + +;EOF diff --git a/packaging/nsis/header.bmp b/packaging/nsis/header.bmp Binary files differnew file mode 100644 index 0000000..951eb65 --- /dev/null +++ b/packaging/nsis/header.bmp diff --git a/packaging/nsis/header.svg b/packaging/nsis/header.svg new file mode 100644 index 0000000..805c09f --- /dev/null +++ b/packaging/nsis/header.svg @@ -0,0 +1,3168 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + inkscape:export-filename="header.png" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:docname="header.svg" + inkscape:version="1.4-dev (6fe04ba, 2023-06-30, custom)" + version="1.1" + id="svg2" + height="57" + width="150" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <defs + id="defs4" /> + <sodipodi:namedview + inkscape:snap-bbox-midpoints="true" + inkscape:snap-bbox="true" + inkscape:snap-center="true" + inkscape:document-rotation="0" + inkscape:window-maximized="1" + inkscape:window-y="-8" + inkscape:window-x="1912" + inkscape:window-height="1177" + inkscape:window-width="1858" + showgrid="false" + inkscape:current-layer="g10920" + inkscape:document-units="px" + inkscape:cy="34.825009" + inkscape:cx="90.332892" + inkscape:zoom="5.6568542" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(0,-995.36218)" + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Layer 1"> + <rect + y="995.36218" + x="0" + height="57" + width="150" + id="rect8549" + style="fill:#ffffff;fill-opacity:1;stroke:none" + sodipodi:insensitive="true" /> + <g + id="g12103" + style="display:inline" + transform="matrix(0.28178205,0,0,0.28178205,-264.00727,881.25441)"> + <g + id="g10920"> + <rect + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.244833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect76843" + width="700" + height="220" + x="931.97632" + y="401.65381" /> + <path + id="path76847" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 931.99484,459.9536 V 467.18362 L 948.37339,477.20605 931.99484,488.51555 V 541.55438 L 963.3921,568.86002 946.47168,582.18036 982.05194,603.94411 952.12644,605.43451 C 952.11544,605.43403 952.10474,605.43368 952.09374,605.43534 L 952.08674,605.43617 C 952.01314,605.45057 951.94631,605.51687 951.89834,605.62364 951.78817,605.86928 951.80534,606.25876 951.93654,606.49382 951.99364,606.59579 952.06539,606.65534 952.13986,606.66256 V 606.66339 H 952.14686 C 952.15926,606.66422 952.17096,606.66348 952.18326,606.66139 L 983.91441,605.08331 987.65346,607.37021 1000.3619,608.13966 1008.449,603.51924 1024.2382,617.38239 1033.4809,618.15275 1062.7479,608.91005 1074.3018,618.15275 1104.5697,609.51255 1163.0916,576.16789 1121.3623,552.76265 1082.4599,555.15119 1070.5208,547.06312 1079.6927,541.90268 1088.4952,523.64484 1052.7359,496.0762 998.62908,486.0631 966.47356,467.5786 Z M 1052.8319,600.82341 1060.684,606.98833 1034.1339,615.83839 Z" /> + <path + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.299282;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1309.2027,621.39284 H 1272.1556 L 1242.7647,604.42398 1275.6867,585.41644 Z" + id="path76857" /> + <path + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.299282;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1608.7548,498.60122 H 1588.1378 L 1571.7816,489.15793 1590.1029,478.58011 Z" + id="path78077" /> + <path + id="path76861" + style="color:#000000;display:inline;fill:#393d46;fill-opacity:1;stroke-width:0.478274;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 999.18164,401.6543 1001.168,402.80078 965.18359,423.57422 931.97656,404.40234 V 404.95898 L 964.70312,423.85352 931.97656,442.74805 V 443.29883 L 965.17969,424.12891 1001.1699,444.9082 965.18164,465.68555 931.97656,446.51367 V 447.06836 L 964.70312,465.96289 931.97656,484.85742 V 485.4043 L 965.17578,466.23633 1001.168,487.01562 965.17969,507.79297 931.97656,488.62305 V 489.17578 L 964.70117,508.06836 931.97656,526.96289 V 527.51758 L 965.18164,508.34766 1001.168,529.12305 965.17969,549.90234 931.97656,530.73242 V 531.2832 L 964.70312,550.17773 931.97656,569.07227 V 569.625 L 965.18164,550.45508 1001.166,571.23047 965.17969,592.00781 931.97656,572.83789 V 573.39062 L 964.70117,592.2832 931.97656,611.17773 V 611.73438 L 965.18359,592.5625 1001.1699,613.33789 986.76562,621.6543 H 987.72852 L 1001.6484,613.61719 1015.5684,621.6543 H 1016.5234 L 1002.127,613.3418 1038.1152,592.56445 1074.1055,613.34375 1059.7109,621.6543 H 1060.6641 L 1074.582,613.61914 1088.5,621.6543 H 1089.4531 L 1075.0586,613.34375 1111.0488,592.56445 1147.0391,613.34375 1132.6445,621.6543 H 1133.5957 L 1147.5137,613.61914 1161.4316,621.6543 H 1162.3848 L 1147.9902,613.34375 1183.9805,592.56445 1219.9688,613.3418 1205.5723,621.6543 H 1206.5273 L 1220.4473,613.61719 1234.3672,621.6543 H 1235.332 L 1223.7188,614.94922 V 614.95322 L 1220.9258,613.33994 1223.7188,611.72666 V 611.73466 L 1256.9199,592.56669 1290.1191,611.73466 V 611.72666 L 1292.9141,613.33994 1290.1191,614.95322 V 614.94922 L 1278.5059,621.6543 H 1279.4727 L 1293.3926,613.61719 1307.3125,621.6543 H 1308.2656 L 1293.8691,613.3418 1329.8594,592.56445 1365.8496,613.34375 1351.4551,621.6543 H 1352.4062 L 1366.3242,613.61914 1380.2422,621.6543 H 1381.1953 L 1366.8008,613.34375 1402.791,592.56445 1438.7812,613.34375 1424.3867,621.6543 H 1425.3398 L 1439.2578,613.61914 1453.1758,621.6543 H 1454.1289 L 1439.7344,613.34375 1475.7246,592.56445 1511.7129,613.3418 1497.3164,621.6543 H 1498.2695 L 1512.1895,613.61719 1526.1094,621.6543 H 1527.0762 L 1515.4629,614.94922 V 614.95322 L 1512.6699,613.33994 1515.4629,611.72666 V 611.73466 L 1548.6621,592.56669 1581.8633,611.73466 V 611.72666 L 1584.6562,613.33994 1581.8633,614.95322 V 614.94922 L 1570.25,621.6543 H 1571.2148 L 1585.1348,613.61719 1599.0547,621.6543 H 1600.0098 L 1585.6133,613.3418 1621.6016,592.56445 1631.9766,598.55469 V 598.00391 L 1622.0781,592.28906 1631.9766,586.57422 V 586.01953 L 1621.5977,592.01172 1585.6113,571.23438 1621.6016,550.45508 1631.9766,556.44531 V 555.89648 L 1622.0781,550.18164 1631.9766,544.4668 V 543.91016 L 1621.5977,549.90234 1585.6113,529.12695 1621.6016,508.34961 1631.9766,514.33984 V 513.78516 L 1622.0801,508.07227 1631.9766,502.35742 V 501.80469 L 1621.6016,507.79492 1585.6152,487.01562 1621.6016,466.23828 1631.9766,472.22852 V 471.67383 L 1622.082,465.96094 1631.9766,460.24805 V 459.69336 L 1621.6016,465.68359 1585.6113,444.9043 1621.5977,424.12891 1631.9766,430.12109 V 429.56836 L 1622.0762,423.85156 1631.9766,418.13477 V 417.58789 L 1621.6016,423.57812 1585.6113,402.79883 1587.5938,401.6543 H 1586.6387 L 1585.1328,402.52344 1583.627,401.6543 H 1582.668 L 1584.6543,402.80078 1581.8633,404.41016 V 404.40216 L 1548.6621,423.57209 1515.4629,404.40216 V 404.41016 L 1512.6699,402.80078 1514.6562,401.6543 H 1513.6973 L 1512.1914,402.52344 1510.6855,401.6543 H 1509.7324 L 1511.7148,402.79883 1475.7246,423.57812 1439.7363,402.80078 1441.7227,401.6543 H 1440.7578 L 1439.2559,402.52148 1437.7539,401.6543 H 1436.8027 L 1438.7812,402.79688 1402.791,423.57617 1366.8008,402.79688 1368.7793,401.6543 H 1367.8281 L 1366.3262,402.52148 1364.8242,401.6543 H 1363.8594 L 1365.8457,402.80078 1329.8594,423.57812 1293.8691,402.79883 1295.8516,401.6543 H 1294.8965 L 1293.3906,402.52344 1291.8848,401.6543 H 1290.9258 L 1292.9121,402.80078 1290.1191,404.41016 V 404.40216 L 1256.9199,423.57209 1223.7188,404.40216 V 404.41016 L 1220.9277,402.80078 1222.9141,401.6543 H 1221.9551 L 1220.4492,402.52344 1218.9434,401.6543 H 1217.9883 L 1219.9707,402.79883 1183.9805,423.57812 1147.9941,402.80078 1149.9805,401.6543 H 1149.0156 L 1147.5137,402.52148 1146.0117,401.6543 H 1145.0605 L 1147.0391,402.79688 1111.0488,423.57617 1075.0586,402.79688 1077.0371,401.6543 H 1076.0859 L 1074.584,402.52148 1073.082,401.6543 H 1072.1172 L 1074.1035,402.80078 1038.1152,423.57812 1002.125,402.79883 1004.1074,401.6543 H 1003.1543 L 1001.6484,402.52344 1000.1426,401.6543 Z M 1074.5781,403.07422 1110.5664,423.85352 1074.5801,444.63086 1038.5898,423.85156 Z M 1147.5176,403.07422 1183.5059,423.85156 1147.5156,444.63086 1111.5293,423.85352 Z M 1366.3223,403.07422 1402.3105,423.85352 1366.3223,444.63086 1330.332,423.85156 Z M 1439.2598,403.07422 1475.25,423.85156 1439.2598,444.63086 1403.2715,423.85352 Z M 1001.6445,403.07622 1037.6348,423.85552 1001.6504,444.62896 965.66016,423.85161 Z M 1220.4492,403.07622 1256.4355,423.85161 1220.4453,444.62896 1184.459,423.85357 Z M 1293.3867,403.07622 1329.377,423.85552 1293.3945,444.62896 1257.4043,423.85161 Z M 1512.1934,403.07622 1548.1777,423.85161 1512.1875,444.62896 1476.2031,423.85357 Z M 1585.1309,403.07622 1621.1211,423.85552 1585.1367,444.62896 1549.1465,423.85161 Z M 1038.1113,424.12896 1074.1016,444.90825 1038.1152,465.68364 1002.125,444.90435 Z M 1183.9863,424.12896 1219.9707,444.90435 1183.9805,465.68364 1147.9961,444.90825 Z M 1329.8535,424.12896 1365.8438,444.90825 1329.8594,465.68364 1293.8691,444.90435 Z M 1475.7285,424.12896 1511.7148,444.90435 1475.7246,465.68364 1439.7383,444.90825 Z M 1111.0488,424.13096 1147.0352,444.9083 1111.0488,465.68565 1075.0605,444.9083 Z M 1256.9199,424.13096 1290.1191,443.29893 V 443.29693 L 1292.9141,444.90825 1290.1191,446.52153 V 446.51553 L 1256.9199,465.6835 1223.7188,446.51553 V 446.52153 L 1220.9258,444.90825 1223.7188,443.29693 V 443.29893 Z M 1402.791,424.13096 1438.7773,444.9083 1402.791,465.68565 1366.8047,444.9083 Z M 1548.6621,424.13096 1581.8633,443.29893 V 443.29693 L 1584.6562,444.90825 1581.8633,446.52153 V 446.51553 L 1548.6621,465.6835 1515.4629,446.51553 V 446.52153 L 1512.6699,444.90825 1515.4629,443.29693 V 443.29893 Z M 1001.6445,445.18174 1037.6348,465.96104 1001.6484,486.74033 965.65625,465.96104 Z M 1220.4512,445.18174 1223.7188,447.06846 1256.4395,465.96104 1220.4492,486.74033 1184.4609,465.96104 Z M 1293.3867,445.18174 1329.377,465.96104 1293.3906,486.74033 1257.3984,465.96104 1282.9004,451.23643 1290.1191,447.06846 Z M 1512.1953,445.18174 1515.4629,447.06846 1548.1836,465.96104 1512.1914,486.74033 1476.2051,465.96104 Z M 1585.1309,445.18174 1621.1211,465.96104 1585.1328,486.74033 1549.1426,465.96104 1574.6426,451.23643 1581.8633,447.06846 Z M 1074.5801,445.18574 1110.5684,465.96308 1074.584,486.73847 1038.5957,465.96113 Z M 1147.5137,445.18574 1183.5,465.96113 1147.5137,486.73847 1111.5273,465.96308 Z M 1366.3223,445.18574 1402.3125,465.96308 1366.3262,486.73847 1330.3398,465.96113 Z M 1439.2578,445.18574 1475.2422,465.96113 1439.2559,486.73847 1403.2695,465.96308 Z M 1256.9199,466.23652 1290.1191,485.40449 1292.9121,487.01581 1290.1191,488.62714 V 488.62514 L 1256.9199,507.79311 1223.7188,488.62514 V 488.62714 L 1220.9277,487.01581 1223.7188,485.40449 Z M 1548.6621,466.23652 1581.8633,485.40449 1584.6543,487.01581 1581.8633,488.62714 V 488.62514 L 1548.6621,507.79311 1515.4629,488.62514 V 488.62714 L 1512.6699,487.01581 1515.4629,485.40449 Z M 1038.1152,466.23852 1074.1035,487.01586 1038.1152,507.79516 1002.1289,487.01586 Z M 1183.9805,466.23852 1219.9668,487.01586 1183.9805,507.79516 1147.9941,487.01586 Z M 1329.8594,466.23852 1365.8457,487.01586 1329.8594,507.79516 1293.8711,487.01586 Z M 1475.7246,466.23852 1511.7109,487.01586 1475.7246,507.79516 1439.7363,487.01586 Z M 1111.0488,466.24052 1147.0332,487.01787 1111.0488,507.79326 1075.0625,487.01787 Z M 1402.791,466.24052 1438.7773,487.01787 1402.791,507.79326 1366.8066,487.01787 Z M 1001.6484,487.29326 1037.6348,508.07256 1001.6465,528.8499 965.66016,508.07256 Z M 1074.582,487.29326 1110.5664,508.0706 1074.5801,528.84795 1038.5957,508.07256 Z M 1147.5137,487.29326 1183.502,508.07256 1147.5156,528.84795 1111.5293,508.0706 Z M 1220.4492,487.29326 1256.4355,508.07256 1220.4492,528.8499 1184.4609,508.07256 Z M 1293.3906,487.29326 1329.377,508.07256 1293.3887,528.8499 1257.4043,508.07256 Z M 1366.3242,487.29326 1402.3105,508.0706 1366.3223,528.84795 1330.3379,508.07256 Z M 1439.2578,487.29326 1475.2441,508.07256 1439.2598,528.84795 1403.2715,508.0706 Z M 1512.1914,487.29326 1548.1777,508.07256 1512.1934,528.8499 1476.2051,508.07256 Z M 1585.1328,487.29326 1621.1211,508.07256 1585.1328,528.8499 1549.1465,508.07256 Z M 1111.0488,508.34599 1147.0352,529.12529 1111.0488,549.90263 1075.0605,529.12529 Z M 1402.791,508.34599 1438.7773,529.12529 1402.791,549.90263 1366.8047,529.12529 Z M 1038.1152,508.34999 1074.1016,529.12538 1038.1113,549.90272 1002.125,529.12733 Z M 1183.9805,508.34999 1219.9688,529.12733 1183.9863,549.90272 1147.9961,529.12538 Z M 1329.8594,508.34999 1365.8438,529.12538 1329.8535,549.90272 1293.8691,529.12733 Z M 1475.7246,508.34999 1511.7129,529.12733 1475.7285,549.90272 1439.7383,529.12538 Z M 1256.9199,508.35199 1290.1191,527.51996 V 527.51396 L 1292.9121,529.12334 1290.1191,530.73467 V 530.73267 L 1256.9199,549.90064 1223.7188,530.73267 V 530.73467 L 1220.9277,529.12334 1223.7188,527.51396 V 527.51996 Z M 1548.6621,508.35199 1581.8633,527.51996 V 527.51396 L 1584.6543,529.12334 1581.8633,530.73467 V 530.73267 L 1548.6621,549.90064 1515.4629,530.73267 V 530.73467 L 1512.6699,529.12334 1515.4629,527.51396 V 527.51996 Z M 1001.6484,529.40277 1037.6328,550.17816 1001.6445,570.95746 965.6582,550.18207 Z M 1074.582,529.40277 1110.5684,550.18012 1074.5781,570.95941 1038.5918,550.18207 Z M 1147.5137,529.40277 1183.5039,550.18207 1147.5176,570.95941 1111.5273,550.18012 Z M 1220.4473,529.40277 1256.4375,550.18207 1220.4512,570.95746 1184.4629,550.17816 Z M 1293.3926,529.40277 1329.377,550.17816 1293.3867,570.95746 1257.4023,550.18207 Z M 1366.3242,529.40277 1402.3125,550.18012 1366.3223,570.95941 1330.334,550.18207 Z M 1439.2578,529.40277 1475.248,550.18207 1439.2598,570.95941 1403.2695,550.18012 Z M 1512.1895,529.40277 1548.1797,550.18207 1512.1953,570.95746 1476.207,550.17816 Z M 1585.1348,529.40277 1621.1191,550.17816 1585.1309,570.95746 1549.1445,550.18207 Z M 1038.1152,550.45551 1074.1035,571.23481 1038.1133,592.01215 1002.125,571.23481 Z M 1111.0488,550.45551 1147.0391,571.23481 1111.0488,592.0141 1075.0586,571.23481 Z M 1183.9805,550.45551 1219.9707,571.23481 1183.9844,592.01215 1147.9941,571.23481 Z M 1329.8594,550.45551 1365.8457,571.23481 1329.8555,592.01215 1293.8691,571.23481 Z M 1402.791,550.45551 1438.7812,571.23481 1402.791,592.0141 1366.8008,571.23481 Z M 1475.7246,550.45551 1511.7148,571.23481 1475.7266,592.01215 1439.7363,571.23481 Z M 1256.9199,550.45951 1290.1191,569.62748 V 569.62148 L 1292.9102,571.23086 1290.1191,572.84219 V 572.84019 L 1256.9199,592.00816 1223.7188,572.84019 V 572.84219 L 1220.9297,571.23086 1223.7188,569.62148 V 569.62748 Z M 1548.6621,550.45951 1581.8633,569.62748 V 569.62148 L 1584.6523,571.23086 1581.8633,572.84219 V 572.84019 L 1548.6621,592.00816 1515.4629,572.84019 V 572.84219 L 1512.6719,571.23086 1515.4629,569.62148 V 569.62748 Z M 1001.6484,571.50834 1037.6348,592.28764 1001.6484,613.06498 965.66016,592.28764 Z M 1220.4492,571.50834 1256.4355,592.28764 1220.4492,613.06498 1184.4609,592.28764 Z M 1293.3906,571.50834 1329.377,592.28764 1293.3906,613.06498 1257.4043,592.28764 Z M 1512.1914,571.50834 1548.1777,592.28764 1512.1914,613.06498 1476.2051,592.28764 Z M 1585.1328,571.50834 1621.1211,592.28764 1585.1328,613.06498 1549.1465,592.28764 Z M 1074.582,571.51034 1110.5723,592.28963 1074.582,613.06893 1038.5918,592.28963 Z M 1147.5137,571.51034 1183.5039,592.28963 1147.5137,613.06893 1111.5234,592.28963 Z M 1366.3242,571.51034 1402.3145,592.28963 1366.3242,613.06893 1330.334,592.28963 Z M 1439.2578,571.51034 1475.248,592.28963 1439.2578,613.06893 1403.2676,592.28963 Z M 931.97656,614.94784 V 615.49862 L 942.63867,621.65487 H 943.59375 Z" /> + <path + inkscape:connector-curvature="0" + id="path76863" + d="M 1084.0758,551.58908 1028.5325,519.52111 1017.6338,500.64409 1085.787,539.99234 Z" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.299105;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1187.86,544.03076 1183.5561,541.54593 1182.0895,542.39259 1186.3934,544.8775 Z" + id="path76865" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <g + id="g76907" + transform="matrix(0.29182874,0,0,0.29182874,1257.3114,96.153624)" + style="display:inline;fill:#9d968e;fill-opacity:1"> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1092.7207,6115.248 -1104.9551,6122.2031 -1105.082,6122.2751 -1117.1875,6129.1579 C -1117.1775,6129.1719 -1117.1715,6129.1839 -1117.1645,6129.1969 L -1227.9281,6192.6558 -1227.6254,6220.9293 -1094.5551,6144.1285 C -1084.0617,6140.3214 -1086.0136,6129.508 -1092.7211,6115.2476 Z" + transform="scale(0.26458333)" + id="path76867" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1435.9785,5583.666 C -1437.3169,5583.625 -1438.6075,5583.9352 -1439.8496,5584.6191 L -1439.8596,5584.6091 -1440.0432,5584.7145 C -1440.0532,5584.7245 -1440.0612,5584.7245 -1440.0702,5584.7305 L -1575.3514,5662.4316 -1560.2948,5683.2402 -1424.8631,5602.6426 -1429.1209,5597.5215 -1421.6463,5593.2305 C -1424.7871,5589.7556 -1427.8149,5587.0016 -1430.6873,5585.3613 -1432.5183,5584.3155 -1434.2855,5583.7193 -1435.9803,5583.666 Z" + transform="scale(0.26458333)" + id="path76869" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1334.6758,5562.0703 C -1335.6389,5562.0603 -1336.5998,5562.0603 -1337.5566,5562.0703 -1359.8866,5562.3184 -1379.6833,5568.1243 -1396.418,5578.7597 L -1396.428,5578.7497 -1530.7483,5655.859 -1460.3519,5701.8141 -1456.0198,5699.4684 C -1456.4193,5705.4449 -1456.6292,5711.5767 -1456.6292,5717.8649 -1456.629,5857.0125 -1359.0664,6026.1414 -1238.7171,6095.6247 -1227.6565,6101.947 -1216.6161,6107.284 -1205.6917,6111.5895 L -1209.6019,6181.693 -1087.9261,6112.5172 C -1087.1079,6112.0667 -1086.296,6111.6051 -1085.4905,6111.1325 L -1081.1546,6108.2536 C -1042.5103,6083.7967 -1020.9029,6034.1112 -1020.8069,5969.486 -1020.8066,5830.3391 -1118.3682,5661.2105 -1238.7171,5591.7262 -1271.9996,5572.5109 -1304.8243,5562.373 -1334.68,5562.068 Z" + transform="scale(0.26458333)" + id="path76871" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1378.5293,5542.5684 C -1379.9222,5542.5684 -1381.3691,5542.7687 -1382.873,5543.2344 -1383.7991,5543.5213 -1384.622,5543.8704 -1385.3613,5544.2715 H -1385.3713 L -1385.5198,5544.3575 C -1385.5648,5544.3825 -1385.6088,5544.4085 -1385.6526,5544.4335 L -1517.9924,5620.8417 -1492.4143,5641.4433 -1357.3147,5563.8476 C -1361.6948,5554.8644 -1366.3959,5547.6828 -1371.9788,5544.4472 -1374.0352,5543.26 -1376.21,5542.5975 -1378.5315,5542.5722 Z" + transform="scale(0.26458333)" + id="path76873" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1305.1074,5543.0977 C -1306.2644,5543.1197 -1307.2659,5543.3132 -1308.1348,5543.6523 L -1308.1448,5543.6423 -1308.1978,5543.6713 C -1308.7714,5543.9015 -1309.2847,5544.198 -1309.7408,5544.558 L -1444.9048,5622.1869 -1413.4205,5650.6654 -1281.4498,5571.976 C -1280.4017,5572.3391 -1279.3545,5572.703 -1278.3033,5573.0853 -1278.4915,5572.1964 -1278.6946,5571.3237 -1278.9029,5570.4584 H -1278.8929 L -1278.9029,5570.4484 C -1281.4316,5559.9506 -1285.5272,5551.2814 -1293.4381,5546.5597 -1295.385,5545.3945 -1297.5627,5544.4808 -1300.0045,5543.8273 -1301.9607,5543.3038 -1303.6536,5543.0692 -1305.108,5543.0968 Z" + transform="scale(0.26458333)" + id="path76875" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1218.8809,5585.2227 C -1223.6933,5585.2997 -1225.9979,5589.9429 -1227.1465,5596.791 L -1227.1645,5596.777 -1357.2035,5663.7224 -1327.641,5701.7263 -1195.0805,5622.0017 C -1194.4825,5622.4875 -1193.8817,5622.9663 -1193.2856,5623.4567 -1193.1866,5622.5614 -1193.1152,5621.6713 -1193.059,5620.7849 H -1193.049 L -1193.059,5620.7749 C -1192.3543,5609.625 -1195.2887,5599.1999 -1207.8031,5590.0698 -1209.0562,5589.1544 -1210.2312,5588.3803 -1211.3344,5587.7378 -1214.3632,5585.9705 -1216.845,5585.1904 -1218.8813,5585.2222 Z" + transform="scale(0.26458333)" + id="path76877" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1135.4414,5664.1113 C -1137.9198,5664.0683 -1140.096,5665.1561 -1142.084,5666.9805 L -1142.094,5666.9685 -1273.8557,5742.3474 -1250.301,5785.0485 -1116.133,5706.1462 C -1115.8176,5706.5769 -1115.498,5707.0034 -1115.1838,5707.4352 -1114.5568,5706.5104 -1113.9944,5705.5631 -1113.4924,5704.5954 L -1113.4764,5704.5854 -1113.4864,5704.5754 C -1109.5625,5696.9975 -1109.8449,5687.9502 -1120.3126,5674.9192 -1124.1438,5670.1498 -1127.4856,5667.1594 -1130.4454,5665.5618 -1132.2437,5664.5912 -1133.9021,5664.1351 -1135.4454,5664.1086 Z" + transform="scale(0.26458333)" + id="path76879" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -344.70543,1645.8209 -334.753,1640.0748 -348.23556,1639.7661 Z" + id="path76881" + inkscape:connector-curvature="0" /> + <path + style="fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -368.12622,1634.9368 -364.41393,1632.7936 -367.43073,1630.9047 Z" + id="path76883" + inkscape:connector-curvature="0" /> + <path + style="fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -424.84521,1519.13 -416.75994,1514.462 -419.21332,1523.6181 Z" + id="path76885" + inkscape:connector-curvature="0" /> + <ellipse + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse76887" + cx="-419.72574" + cy="1776.5353" + rx="66.575096" + ry="66.661377" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" /> + <ellipse + cy="1776.5353" + cx="-419.72574" + id="ellipse76889" + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="28.036783" + ry="28.073118" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1408.8262,5803.0859 A 129.86525,74.977594 60.06427 0 0 -1415.9531,5839.918 129.86525,74.977594 60.06427 0 0 -1324.1836,5999.0039 129.86525,74.977594 60.06427 0 0 -1289.1895,6011.0957 129.86525,74.977594 60.06427 0 0 -1282.0625,5974.2637 129.86525,74.977594 60.06427 0 0 -1373.832,5815.1777 129.86525,74.977594 60.06427 0 0 -1408.8262,5803.0859 Z" + transform="scale(0.26458333)" + id="path76891" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1366.3965,5874.7891 C -1368.9207,5874.8251 -1371.2246,5875.4409 -1373.2227,5876.6133 L -1373.2367,5876.5923 -1393.1254,5888.02 -1354.7772,5953.7172 -1335.893,5942.811 C -1335.5242,5942.6216 -1335.1653,5942.4145 -1334.8168,5942.19 L -1334.2289,5941.8501 -1334.2509,5941.8131 C -1329.8043,5938.6832 -1327.338,5932.7092 -1327.3271,5925.0416 -1327.3279,5907.8783 -1339.3618,5887.018 -1354.206,5878.4479 -1358.4435,5876.0014 -1362.6209,5874.7479 -1366.3974,5874.7897 Z" + transform="scale(0.26458333)" + id="path76893" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccc" /> + <ellipse + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse76895" + cx="-419.72589" + cy="1776.4075" + rx="8.2117853" + ry="8.2224283" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" /> + <path + style="fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.87024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1070.8691,5767.5332 C -1071.9631,5767.5222 -1073.0619,5767.6292 -1074.166,5767.8184 V 5767.8084 L -1074.19,5767.8224 C -1075.0758,5767.9752 -1075.9651,5768.176 -1076.8579,5768.4357 -1076.734,5768.6661 -1076.9738,5768.2029 -1076.8479,5768.4357 L -1211.9689,5846.0395 -1184.2209,5885.7445 -1052.3048,5810.602 -1052.3148,5810.586 C -1045.9846,5807.0795 -1043.7473,5800.2452 -1050.8382,5785.4669 -1054.6853,5777.4486 -1058.6136,5772.6426 -1062.6194,5770.0528 -1065.3325,5768.2989 -1068.0822,5767.5622 -1070.8655,5767.5333 Z" + transform="scale(0.26458333)" + id="path76897" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1033.2949,5878.0469 C -1033.1665,5878.5398 -1033.4055,5877.5585 -1033.2789,5878.0469 L -1168.459,5955.6185 -1148.3027,5999.3002 -1014.1144,5922.1205 V 5922.1205 C -1010.0771,5919.6347 -1007.6617,5915.7844 -1009.8917,5904.8744 -1012.5088,5892.0705 -1018.1627,5885.1745 -1025.3223,5881.2162 -1027.2236,5880.1649 -1029.2418,5879.3285 -1031.3438,5878.6381 V 5878.6381 5878.6381 C -1031.9856,5878.4273 -1032.6343,5878.2275 -1033.291,5878.0424 Z" + transform="scale(0.26458333)" + id="path76899" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccsccccc" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1021.123,5982.3418 C -1021.1232,5982.3418 -1021.1229,5982.3518 -1021.123,5982.3538 L -1156.1074,6057.4319 -1144.1641,6102.6819 -1009.3672,6025.2093 V 6025.1993 C -1006.5838,6024.1475 -1004.6678,6021.001 -1003.9317,6014.961 -1002.1499,6000.3423 -1009.9255,5990.6396 -1021.1114,5982.3458 -1021.1117,5982.3456 -1021.1111,5982.3458 -1021.1114,5982.3458 V 5982.3458 C -1021.1114,5982.3458 -1021.1214,5982.3458 -1021.1214,5982.3358 Z" + transform="scale(0.26458333)" + id="path76901" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1042.127,6065.4141 C -1043.0091,6067.0382 -1043.927,6068.6221 -1044.8613,6070.1875 L -1176.8164,6142.6855 -1171.5215,6179.5801 -1039.9065,6103.5814 V 6103.5814 C -1036.4007,6101.6298 -1035.6037,6101.7866 -1033.6335,6098.9786 -1027.2043,6089.8155 -1031.6752,6079.1603 -1040.3464,6067.7071 -1040.9224,6066.9463 -1041.5165,6066.1818 -1042.1277,6065.4142 Z" + transform="scale(0.26458333)" + id="path76903" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccscc" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -356.24889,1498.9551 C -361.94761,1495.6298 -360.33553,1505.5091 -360.94105,1511.9889 A 69.066595,39.875541 60.064274 0 1 -353.38099,1517.4541 C -352.37792,1510.9175 -348.52516,1504.5253 -355.31444,1499.5721 -355.64598,1499.3299 -355.957,1499.1253 -356.24889,1498.9553 Z M -377.97219,1488.0603 C -378.4873,1487.752 -379.06345,1487.51 -379.70951,1487.3371 -386.33455,1485.5645 -381.51799,1496.3284 -379.72671,1504.2737 A 69.066595,39.875541 60.064274 0 1 -372.37143,1506.2146 C -373.66246,1499.1358 -373.21108,1490.9021 -377.97198,1488.0605 Z M -334.84584,1519.5466 C -338.65225,1517.4918 -340.08764,1524.1545 -342.54357,1528.0041 A 69.066595,39.875541 60.064274 0 1 -335.90934,1536.1732 C -332.62194,1531.9517 -326.24578,1529.3916 -332.16529,1522.0225 -333.17897,1520.7606 -334.06272,1519.9693 -334.84584,1519.5466 Z M -398.75227,1487.4998 C -399.62281,1486.9972 -400.57384,1486.851 -401.63504,1487.1799 -407.07167,1488.8643 -399.99628,1498.1885 -396.0519,1506.0528 A 69.066595,39.875541 60.064274 0 1 -390.02946,1504.1306 C -392.95322,1497.7345 -395.17249,1489.5745 -398.75227,1487.4998 Z M -316.90254,1547.1927 C -320.18409,1545.0713 -323.66264,1548.5697 -327.31309,1549.9102 A 69.066595,39.875541 60.064274 0 1 -322.63093,1559.568 C -317.56771,1558.2973 -309.62743,1559.9364 -313.78523,1551.271 -314.8031,1549.1495 -315.84266,1547.8779 -316.90254,1547.1927 Z M -414.28557,1498.3263 C -415.57736,1497.5885 -416.75084,1497.6946 -417.7541,1499.1245 -421.17486,1504 -412.93614,1510.4713 -407.44286,1517.0484 A 69.066595,39.875541 60.064274 0 1 -403.66406,1511.5739 C -407.39711,1506.7321 -411.18199,1500.0986 -414.28557,1498.3263 Z M -307.03305,1576.6055 C -309.97708,1574.9777 -313.9362,1575.2215 -317.56396,1574.398 A 69.066595,39.875541 60.064274 0 1 -315.55611,1584.0628 C -309.4925,1585.9384 -301.2074,1591.5014 -302.9726,1582.8654 -303.66504,1579.4777 -305.13874,1577.6528 -307.03305,1576.6055 Z M -421.29959,1519.2999 C -423.55988,1518.0148 -425.21911,1518.1294 -425.61197,1521.3527 -426.5029,1528.6631 -418.36318,1531.3289 -412.16601,1535.6083 A 69.066595,39.875541 60.064274 0 1 -411.1881,1527.4292 C -414.6178,1524.7887 -418.43873,1520.9268 -421.29959,1519.2999 Z M -314.81029,1597.7439 A 69.066595,39.875541 60.064274 0 1 -315.74475,1605.9567 C -309.61588,1610.6923 -302.26175,1619.2742 -301.37425,1611.9922 -300.48376,1604.686 -308.61433,1602.0193 -314.81029,1597.7439 Z M -411.47598,1549.2687 C -417.53541,1547.3792 -425.77431,1541.867 -424.01354,1550.4811 -422.25138,1559.1025 -415.43371,1557.6035 -409.48675,1558.9313 A 69.066595,39.875541 60.064274 0 1 -411.47598,1549.2687 Z M -319.4602,1616.3979 A 69.066595,39.875541 60.064274 0 1 -323.21045,1621.9146 C -317.95937,1628.773 -312.62172,1639.0517 -309.23211,1634.2206 -305.8287,1629.37 -313.96733,1622.9403 -319.4602,1616.3979 Z M -404.45708,1573.8044 C -409.52403,1575.0278 -417.33056,1573.4674 -413.20097,1582.074 -409.06319,1590.6978 -404.57164,1585.2921 -399.78356,1583.4759 A 69.066595,39.875541 60.064274 0 1 -404.45708,1573.8044 Z M -330.83125,1627.4981 A 69.066595,39.875541 60.064274 0 1 -336.85497,1629.4382 C -333.2743,1637.3646 -330.72558,1647.8319 -325.35111,1646.1667 -319.96194,1644.497 -326.86827,1635.3184 -330.83125,1627.4981 Z M -391.16743,1597.2903 C -394.47993,1601.4425 -400.6854,1604.0219 -394.82086,1611.3225 -388.94188,1618.6413 -387.43603,1610.1607 -384.53565,1605.4852 A 69.066595,39.875541 60.064274 0 1 -391.16743,1597.2903 Z M -347.20096,1629.3333 A 69.066595,39.875541 60.064274 0 1 -354.56616,1627.3954 C -353.198,1635.1824 -353.81934,1644.259 -347.27665,1646.0095 -340.72442,1647.7625 -345.36536,1637.2508 -347.20095,1629.3333 Z M -373.63865,1616.1112 C -374.69224,1622.5711 -378.38474,1628.8754 -371.67171,1633.773 -364.94526,1638.6805 -366.64231,1628.408 -366.06747,1621.5916 A 69.066595,39.875541 60.064274 0 1 -373.63865,1616.1112 Z" + id="path76905" /> + </g> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path76909" + d="M 1054.0881,551.66263 1053.1434,552.19965 1053.1334,552.20565 1052.1987,552.7371 C 1052.1996,552.73793 1052.1987,552.7391 1052.1987,552.7411 L 1043.6463,557.64097 1043.6693,559.82404 1053.944,553.89402 C 1054.7543,553.60007 1054.6035,552.76512 1054.0856,551.66405 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76911" + d="M 1027.5841,510.61758 C 1027.4808,510.61558 1027.3811,510.63838 1027.2852,510.69118 L 1027.2844,510.69035 1027.2704,510.69835 C 1027.2696,510.69918 1027.2704,510.69918 1027.2704,510.70035 L 1016.8249,516.69988 1017.9875,518.30658 1028.4446,512.08339 1028.1158,511.68798 1028.693,511.35666 C 1028.4505,511.08834 1028.2167,510.87571 1027.9949,510.74905 1027.8535,510.66835 1027.7171,510.62227 1027.5862,510.61816 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76913" + d="M 1035.406,508.95011 C 1035.332,508.94928 1035.2574,508.94928 1035.1835,508.95011 1033.4594,508.96931 1031.9308,509.41756 1030.6387,510.23875 L 1030.6379,510.23792 1020.2666,516.19177 1025.7021,519.7401 1026.0366,519.55897 C 1026.0056,520.02044 1025.9896,520.4939 1025.9896,520.97943 1025.9896,531.72344 1033.5227,544.78239 1042.8152,550.14741 1043.6693,550.63556 1044.5217,551.04766 1045.3652,551.3801 L 1045.0633,556.79298 1054.4583,551.45171 C 1054.5213,551.41691 1054.5841,551.38131 1054.6463,551.34487 L 1054.9811,551.12257 C 1057.965,549.23417 1059.6333,545.39782 1059.6407,540.40791 1059.6408,529.66395 1052.1077,516.60502 1042.8152,511.23993 1040.2454,509.75627 1037.7109,508.97349 1035.4056,508.94993 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76915" + d="M 1032.0199,507.44431 C 1031.9124,507.44431 1031.8007,507.45981 1031.6845,507.49581 1031.6125,507.51791 1031.5495,507.54501 1031.4924,507.57591 H 1031.4916 L 1031.4796,507.58291 C 1031.4796,507.58491 1031.4696,507.58691 1031.4696,507.58891 L 1021.2512,513.48861 1023.2262,515.07932 1033.6576,509.08793 C 1033.3194,508.3943 1032.9564,507.83979 1032.5254,507.58997 1032.3666,507.49827 1032.1987,507.44715 1032.0194,507.44518 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76917" + d="M 1037.6891,507.48518 C 1037.6001,507.48718 1037.5224,507.50178 1037.4553,507.52798 L 1037.4545,507.52715 V 507.52915 C 1037.4105,507.54685 1037.3705,507.56985 1037.3354,507.59765 L 1026.899,513.59161 1029.33,515.79051 1039.5198,509.71467 C 1039.6008,509.74267 1039.6816,509.77077 1039.7628,509.80037 1039.7478,509.73177 1039.7328,509.66436 1039.7168,509.59754 H 1039.7176 L 1039.7168,509.59671 C 1039.5216,508.78614 1039.2053,508.11676 1038.5945,507.75219 1038.4442,507.66219 1038.276,507.59168 1038.0875,507.54122 1037.9364,507.50082 1037.8057,507.48272 1037.6934,507.48482 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76919" + d="M 1044.3469,510.73777 C 1043.9753,510.74377 1043.7973,511.10223 1043.7086,511.63099 V 511.63016 L 1033.6679,516.79922 1035.9505,519.73362 1046.1859,513.57784 C 1046.2319,513.61534 1046.2789,513.65224 1046.3245,513.69019 1046.3345,513.62099 1046.3375,513.55233 1046.3425,513.48389 H 1046.3433 L 1046.3425,513.48306 C 1046.3965,512.62214 1046.1703,511.81719 1045.204,511.11222 1045.107,511.04162 1045.0166,510.98178 1044.9314,510.93216 1044.6975,510.7957 1044.5059,510.73546 1044.3487,510.73792 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76921" + d="M 1050.7895,516.829 C 1050.5981,516.825 1050.4301,516.9097 1050.2766,517.05054 L 1050.2758,517.04971 1040.102,522.86995 1041.9208,526.16702 1052.2803,520.07474 C 1052.3043,520.10794 1052.3293,520.14094 1052.3533,520.17424 1052.4013,520.10284 1052.4453,520.0297 1052.4839,519.95497 V 519.95414 L 1052.4831,519.95331 C 1052.7861,519.3682 1052.7643,518.66962 1051.956,517.66346 1051.6602,517.29521 1051.4022,517.0643 1051.1736,516.94095 1051.0348,516.86605 1050.9067,516.83079 1050.7876,516.82875 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76923" + d="M 1037.8654,559.78371 1040.7698,558.10684 1036.8352,558.01674 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76925" + d="M 1031.0305,556.60742 1032.1139,555.98197 1031.2335,555.43074 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76927" + d="M 1014.4783,522.81167 1016.8378,521.44941 1016.1218,524.12142 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="19.453707" + rx="19.428528" + cy="-59.360722" + cx="1192.0929" + id="ellipse76929" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + cy="-58.78685" + cx="1191.806" + id="ellipse76931" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.320973;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="10.107956" + ry="10.113745" + transform="matrix(0.86623374,0.49963897,0,1,0,0)" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="8.192543" + rx="8.1819391" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse76933" + cx="1192.0929" + cy="-59.360722" /> + <path + inkscape:connector-curvature="0" + id="path76935" + d="M 1029.6806,527.55965 A 10.027288,5.7892463 60.06427 0 0 1029.1303,530.40356 10.027288,5.7892463 60.06427 0 0 1036.2161,542.68708 10.027288,5.7892463 60.06427 0 0 1038.9181,543.62072 10.027288,5.7892463 60.06427 0 0 1039.4684,540.7768 10.027288,5.7892463 60.06427 0 0 1032.3826,528.49329 10.027288,5.7892463 60.06427 0 0 1029.6806,527.55965 Z" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccccc" + inkscape:connector-curvature="0" + id="path76937" + d="M 1032.9567,533.09607 C 1032.7618,533.09807 1032.5839,533.14637 1032.4297,533.23692 L 1032.4288,533.23492 1030.8932,534.1173 1033.8541,539.18997 1035.3122,538.34788 C 1035.3402,538.33328 1035.3682,538.31718 1035.3952,538.29988 L 1035.4412,538.27358 V 538.27158 C 1035.7846,538.02991 1035.975,537.56865 1035.9758,536.97661 1035.9758,535.65138 1035.0466,534.04068 1033.9004,533.37896 1033.5732,533.19006 1033.2507,533.09328 1032.9591,533.0965 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="2.3995409" + rx="2.396435" + cy="-59.398014" + cx="1192.0929" + id="ellipse76939" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccc" + inkscape:connector-curvature="0" + id="path76941" + d="M 1055.7753,524.81452 C 1055.6913,524.81369 1055.606,524.82152 1055.5207,524.83662 V 524.83579 524.83662 C 1055.4527,524.84842 1055.3836,524.86392 1055.3147,524.88392 1055.3247,524.90172 1055.3047,524.86582 1055.3155,524.88392 L 1044.8824,530.87594 1047.0249,533.94169 1057.2105,528.13971 1057.2097,528.13771 C 1057.6985,527.86696 1057.8712,527.33926 1057.3237,526.1982 1057.0267,525.57907 1056.7234,525.20799 1056.4141,525.00801 1056.2046,524.8726 1055.9923,524.81571 1055.7774,524.81348 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccsccccc" + inkscape:connector-curvature="0" + id="path76943" + d="M 1058.6765,533.34761 C 1058.6865,533.38561 1058.6665,533.30991 1058.6765,533.34761 L 1048.2388,539.33715 1049.7951,542.70995 1060.1562,536.75066 V 536.75066 C 1060.468,536.55873 1060.6545,536.26144 1060.4823,535.41905 1060.2802,534.43041 1059.8436,533.89796 1059.2908,533.59233 1059.144,533.51113 1058.9882,533.44656 1058.8259,533.39327 V 533.39327 533.39327 C 1058.7759,533.37697 1058.7259,533.36147 1058.6755,533.34727 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76945" + d="M 1059.6163,541.40054 C 1059.6163,541.40054 1059.6163,541.40136 1059.6163,541.40136 L 1049.1938,547.19837 1050.116,550.69226 1060.524,544.71037 V 544.70954 C 1060.739,544.62834 1060.8869,544.38537 1060.9437,543.91901 1061.0813,542.79026 1060.4809,542.04108 1059.6172,541.40069 1059.6172,541.40068 1059.6173,541.40069 1059.6172,541.40069 V 541.40069 C 1059.6172,541.40069 1059.6164,541.40069 1059.6164,541.39986 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccscc" + inkscape:connector-curvature="0" + id="path76947" + d="M 1057.9946,547.81479 C 1057.9266,547.94023 1057.8556,548.0625 1057.7834,548.18338 L 1047.5948,553.78116 1048.0036,556.6299 1058.166,550.7618 V 550.7618 C 1058.4367,550.6111 1058.4982,550.6232 1058.6504,550.40642 1059.1468,549.69891 1058.8016,548.87619 1058.132,547.99185 1058.088,547.93315 1058.042,547.87417 1057.9945,547.81479 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path76949" + d="M 1034.4967,516.92406 C 1032.8336,515.95364 1033.3041,518.83669 1033.1274,520.72769 A 20.155618,11.636829 60.064274 0 1 1035.3336,522.32259 C 1035.6263,520.41503 1036.7507,518.5496 1034.7694,517.10412 1034.6724,517.03352 1034.5819,516.97372 1034.4967,516.92412 Z M 1028.1572,513.74464 C 1028.0069,513.65464 1027.8387,513.58405 1027.6502,513.53359 1025.7168,513.01629 1027.1224,516.15751 1027.6402,518.47618 A 20.155618,11.636829 60.064274 0 1 1029.7867,519.04258 C 1029.41,516.97679 1029.5417,514.57396 1028.1523,513.7447 Z M 1040.7427,522.93325 C 1039.6319,522.3336 1039.213,524.27796 1038.4963,525.40139 A 20.155618,11.636829 60.064274 0 1 1040.4323,527.78537 C 1041.3917,526.55341 1043.2524,525.8063 1041.525,523.65579 1041.2291,523.28752 1040.9712,523.0566 1040.7427,522.93325 Z M 1022.093,513.58107 C 1021.8389,513.43439 1021.5614,513.39173 1021.2517,513.48767 1019.6651,513.97923 1021.7299,516.7003 1022.881,518.99533 A 20.155618,11.636829 60.064274 0 1 1024.6385,518.43437 C 1023.7853,516.56782 1023.1376,514.18649 1022.093,513.58103 Z M 1045.9791,531.00117 C 1045.0214,530.38209 1044.0063,531.40302 1042.941,531.79422 A 20.155618,11.636829 60.064274 0 1 1044.3074,534.61265 C 1045.7849,534.24182 1048.1021,534.72015 1046.8888,532.19134 1046.5917,531.57222 1046.2884,531.20114 1045.9791,531.00117 Z M 1017.5599,516.74056 C 1017.1829,516.52524 1016.8405,516.55621 1016.5477,516.97349 1015.5494,518.3963 1017.9537,520.28481 1019.5568,522.2042 A 20.155618,11.636829 60.064274 0 1 1020.6596,520.60659 C 1019.5701,519.19361 1018.4656,517.25776 1017.5599,516.74056 Z M 1048.8593,539.58467 C 1048.0001,539.10964 1046.8447,539.18078 1045.786,538.94045 A 20.155618,11.636829 60.064274 0 1 1046.372,541.76093 C 1048.1415,542.30829 1050.5594,543.93172 1050.0442,541.4115 1049.8422,540.42286 1049.4121,539.89031 1048.8593,539.58467 Z M 1015.513,522.86125 C 1014.8534,522.48623 1014.3692,522.51967 1014.2545,523.46032 1013.9945,525.5937 1016.3699,526.37166 1018.1784,527.62051 A 20.155618,11.636829 60.064274 0 1 1018.4638,525.23361 C 1017.4629,524.46304 1016.3479,523.33603 1015.513,522.86125 Z M 1046.5896,545.75346 A 20.155618,11.636829 60.064274 0 1 1046.3169,548.1502 C 1048.1055,549.53219 1050.2517,552.03662 1050.5107,549.91154 1050.7705,547.77936 1048.3978,547.00115 1046.5896,545.75346 Z M 1018.3798,531.60701 C 1016.6115,531.0556 1014.2072,529.44698 1014.721,531.96082 1015.2352,534.47679 1017.2248,534.03934 1018.9603,534.42683 A 20.155618,11.636829 60.064274 0 1 1018.3798,531.60701 Z M 1045.2327,551.19724 A 20.155618,11.636829 60.064274 0 1 1044.1382,552.80718 C 1045.6706,554.80864 1047.2283,557.80827 1048.2175,556.39842 1049.2107,554.98287 1046.8356,553.1065 1045.2327,551.19724 Z M 1020.4281,538.76723 C 1018.9494,539.12426 1016.6713,538.66893 1017.8764,541.18053 1019.0839,543.69721 1020.3947,542.11967 1021.792,541.58966 A 20.155618,11.636829 60.064274 0 1 1020.4281,538.76723 Z M 1041.9143,554.4366 A 20.155618,11.636829 60.064274 0 1 1040.1564,555.00277 C 1041.2013,557.31591 1041.9451,560.37059 1043.5135,559.88463 1045.0862,559.39736 1043.0708,556.71879 1041.9143,554.4366 Z M 1024.3064,545.62109 C 1023.3397,546.83283 1021.5288,547.58557 1023.2403,549.71609 1024.9559,551.85194 1025.3954,549.37704 1026.2418,548.0126 A 20.155618,11.636829 60.064274 0 1 1024.3064,545.62109 Z M 1037.1371,554.97216 A 20.155618,11.636829 60.064274 0 1 1034.9877,554.40662 C 1035.387,556.67911 1035.2057,559.32791 1037.115,559.83876 1039.0272,560.35034 1037.6728,557.28272 1037.137,554.97216 Z M 1029.4218,551.11356 C 1029.1144,552.99875 1028.0368,554.83853 1029.9958,556.26779 1031.9588,557.69995 1031.4636,554.70212 1031.6313,552.71291 A 20.155618,11.636829 60.064274 0 1 1029.4218,551.11356 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1127.9078,594.19123 1126.9631,594.72826 1126.9531,594.73426 1126.0184,595.26569 C 1126.0184,595.26652 1126.0184,595.26769 1126.0184,595.26969 L 1117.466,600.16955 1117.489,602.35262 1127.7638,596.4226 C 1128.574,596.12865 1128.4233,595.29373 1127.9055,594.19262 Z" + id="path76951" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1101.4038,553.14619 C 1101.3005,553.14219 1101.2008,553.16699 1101.1049,553.21979 V 553.21896 L 1101.0909,553.22796 C 1101.0909,553.22879 1101.0909,553.22879 1101.0909,553.22996 L 1090.6454,559.2295 1091.808,560.8362 1102.2651,554.61301 1101.9364,554.21759 1102.5134,553.88628 C 1102.271,553.61796 1102.0372,553.40532 1101.8154,553.27867 1101.674,553.19797 1101.5375,553.15179 1101.4067,553.14782 Z" + id="path76953" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1109.2257,551.47872 C 1109.1507,551.47789 1109.0772,551.47789 1109.0033,551.47872 1107.2791,551.49792 1105.7506,551.94617 1104.4584,552.76736 V 552.76653 L 1094.0872,558.72037 1099.5227,562.26869 1099.8572,562.08756 C 1099.8262,562.54904 1099.8102,563.02249 1099.8102,563.50803 1099.8102,574.25204 1107.3434,587.31098 1116.6359,592.676 1117.4899,593.16417 1118.3423,593.57625 1119.1859,593.90869 L 1118.884,599.32159 1128.2789,593.98033 C 1128.3419,593.94543 1128.4047,593.90993 1128.4669,593.87348 L 1128.8018,593.65117 C 1131.7857,591.7628 1133.454,587.92642 1133.4614,582.93651 1133.4614,572.19256 1125.9284,559.13363 1116.6359,553.76854 1114.066,552.28488 1111.5316,551.50209 1109.2263,551.47854 Z" + id="path76955" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1105.8397,549.97292 C 1105.7321,549.97292 1105.6204,549.98912 1105.5043,550.02432 1105.4333,550.04652 1105.3692,550.07342 1105.3122,550.10452 V 550.10452 L 1105.3002,550.11152 C 1105.3002,550.11352 1105.2902,550.11552 1105.2902,550.11752 L 1095.0718,556.01722 1097.0468,557.60792 1107.4783,551.61654 C 1107.14,550.92291 1106.7771,550.3684 1106.346,550.11858 1106.1872,550.02688 1106.0193,549.97581 1105.84,549.97383 Z" + id="path76957" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1111.5088,550.01378 C 1111.4198,550.01578 1111.3421,550.03008 1111.275,550.05658 V 550.05575 L 1111.265,550.05775 C 1111.221,550.07585 1111.181,550.09835 1111.1459,550.12615 L 1100.7095,556.12011 1103.1405,558.31903 1113.3303,552.24318 C 1113.4113,552.27108 1113.492,552.29928 1113.5732,552.32888 1113.5592,552.26028 1113.5432,552.1928 1113.5272,552.12604 V 552.12604 552.12521 C 1113.332,551.31466 1113.0157,550.64527 1112.4048,550.28069 1112.2545,550.19059 1112.0864,550.12024 1111.8979,550.06972 1111.7468,550.02922 1111.6161,550.01132 1111.5039,550.01342 Z" + id="path76959" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1118.1666,553.26639 C 1117.795,553.27239 1117.6171,553.63086 1117.5283,554.15961 V 554.15878 L 1107.4876,559.32784 1109.7702,562.26223 1120.0057,556.10647 C 1120.0517,556.14407 1120.0987,556.18097 1120.1443,556.21873 1120.1543,556.14963 1120.1563,556.08083 1120.1623,556.01241 V 556.01241 556.01158 C 1120.2173,555.15066 1119.9902,554.34572 1119.0239,553.64076 1118.9269,553.57006 1118.8364,553.51027 1118.7513,553.46064 1118.5174,553.32419 1118.3258,553.26394 1118.1686,553.26641 Z" + id="path76961" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1124.6092,559.35762 C 1124.4178,559.35362 1124.2498,559.43832 1124.0963,559.57916 V 559.57833 L 1113.9226,565.39856 1115.7414,568.69564 1126.1008,562.60336 C 1126.1248,562.63656 1126.1498,562.66946 1126.1738,562.70286 1126.2218,562.63136 1126.2658,562.55829 1126.3044,562.48359 V 562.48276 562.48193 C 1126.6075,561.89683 1126.5856,561.19825 1125.7773,560.19208 1125.4815,559.82383 1125.2235,559.59294 1124.995,559.46958 1124.8562,559.39468 1124.7281,559.35949 1124.6089,559.35733 Z" + id="path76963" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1111.6851,602.31232 1114.5895,600.63545 1110.6549,600.54535 Z" + id="path76965" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1104.8502,599.13604 1105.9336,598.51058 1105.0532,597.95935 Z" + id="path76967" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1088.298,565.34028 1090.6575,563.97802 1089.9416,566.65003 Z" + id="path76969" + inkscape:connector-curvature="0" /> + <ellipse + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse76971" + cx="1277.3326" + cy="-59.451981" + rx="19.428528" + ry="19.453707" + transform="matrix(0.86602531,0.50000016,0,1,0,0)" /> + <ellipse + transform="matrix(0.86623374,0.49963897,0,1,0,0)" + ry="10.113745" + rx="10.107956" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.320973;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse76973" + cx="1277.0253" + cy="-58.837044" /> + <ellipse + cy="-59.451981" + cx="1277.3326" + id="ellipse76975" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="8.1819391" + ry="8.192543" + transform="matrix(0.86602531,0.50000016,0,1,0,0)" /> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1103.5003,570.08825 A 10.027288,5.7892463 60.06427 0 0 1102.9501,572.93218 10.027288,5.7892463 60.06427 0 0 1110.0359,585.21568 10.027288,5.7892463 60.06427 0 0 1112.7378,586.14933 10.027288,5.7892463 60.06427 0 0 1113.2882,583.30543 10.027288,5.7892463 60.06427 0 0 1106.2023,571.0219 10.027288,5.7892463 60.06427 0 0 1103.5003,570.08825 Z" + id="path76977" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1106.7765,575.62467 C 1106.5816,575.62867 1106.4037,575.67497 1106.2494,575.76545 V 575.76345 L 1104.7138,576.64581 1107.6748,581.7185 1109.1329,580.87639 C 1109.1609,580.86199 1109.1889,580.84569 1109.2159,580.82839 L 1109.2619,580.80199 V 580.79799 C 1109.6052,580.55633 1109.7957,580.09505 1109.7965,579.50301 1109.7964,578.17779 1108.8673,576.5671 1107.7211,575.90538 1107.3939,575.71647 1107.0714,575.6197 1106.7798,575.62291 Z" + id="path76979" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccc" /> + <ellipse + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse76981" + cx="1277.3325" + cy="-59.489246" + rx="2.396435" + ry="2.3995409" + transform="matrix(0.86602531,0.50000016,0,1,0,0)" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1129.5951,567.34312 C 1129.5111,567.34229 1129.4258,567.35012 1129.3405,567.36522 V 567.36439 567.36522 C 1129.2725,567.37792 1129.2035,567.39252 1129.1344,567.41242 1129.1444,567.43052 1129.1244,567.39432 1129.1344,567.41242 L 1118.7014,573.40445 1120.8438,576.47019 1131.0294,570.6682 V 570.6662 C 1131.5182,570.39547 1131.6909,569.86776 1131.1435,568.72667 1130.8465,568.10758 1130.5431,567.73648 1130.2338,567.53651 1130.0243,567.40115 1129.812,567.34421 1129.5971,567.34197 Z" + id="path76983" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1132.4963,575.87622 C 1132.5063,575.91422 1132.4863,575.83852 1132.4963,575.87622 L 1122.0586,581.86575 1123.615,585.23856 1133.976,579.27929 V 579.27929 C 1134.2878,579.08735 1134.4743,578.79006 1134.3021,577.94766 1134.1,576.95903 1133.6635,576.42657 1133.1107,576.12092 1132.9639,576.03972 1132.808,575.9751 1132.6457,575.92187 V 575.92187 575.92187 C 1132.5957,575.90557 1132.5457,575.89017 1132.4954,575.87587 Z" + id="path76985" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccsccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1133.4361,583.92915 C 1133.4361,583.92915 1133.4361,583.92998 1133.4361,583.92998 L 1123.0135,589.72698 1123.9357,593.22087 1134.3438,587.23899 V 587.23816 C 1134.5587,587.15696 1134.7066,586.914 1134.7634,586.44763 1134.901,585.31887 1134.3007,584.5697 1133.437,583.92931 1133.437,583.92929 1133.437,583.92931 1133.437,583.92931 V 583.92931 C 1133.437,583.92931 1133.437,583.92931 1133.437,583.92848 Z" + id="path76987" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1131.8143,590.34342 C 1131.7463,590.46885 1131.6753,590.59111 1131.6031,590.71198 L 1121.4145,596.30977 1121.8233,599.15851 1131.9857,593.29042 V 593.29042 C 1132.2564,593.13972 1132.3179,593.1518 1132.4701,592.93503 1132.9665,592.22752 1132.6214,591.40479 1131.9518,590.52045 1131.9078,590.46185 1131.8618,590.4026 1131.8142,590.3434 Z" + id="path76989" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccscc" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1108.3164,559.45268 C 1106.6533,558.48224 1107.1238,561.36531 1106.9471,563.25631 A 20.155618,11.636829 60.064274 0 1 1109.1533,564.85121 C 1109.4461,562.94364 1110.5704,561.07822 1108.5891,559.63272 1108.4921,559.56202 1108.4016,559.50241 1108.3164,559.45278 Z M 1101.9769,556.27325 C 1101.8266,556.18315 1101.6584,556.11263 1101.4699,556.0622 1099.5365,555.5449 1100.9422,558.68611 1101.4599,561.00478 A 20.155618,11.636829 60.064274 0 1 1103.6064,561.57118 C 1103.2297,559.5054 1103.3613,557.10257 1101.972,556.27331 Z M 1114.5624,565.46185 C 1113.4516,564.8622 1113.0327,566.80657 1112.316,567.93 A 20.155618,11.636829 60.064274 0 1 1114.2521,570.31397 C 1115.2114,569.08201 1117.0721,568.33491 1115.3447,566.1844 1115.0489,565.81614 1114.791,565.58521 1114.5624,565.46185 Z M 1095.9127,556.10968 C 1095.6586,555.96295 1095.3811,555.92034 1095.0714,556.01638 1093.4848,556.50794 1095.5496,559.22901 1096.7007,561.52403 A 20.155618,11.636829 60.064274 0 1 1098.4583,560.96308 C 1097.605,559.09651 1096.9574,556.7152 1095.9127,556.10973 Z M 1119.7988,573.52979 C 1118.8411,572.9107 1117.826,573.93163 1116.7607,574.32282 A 20.155618,11.636829 60.064274 0 1 1118.1271,577.14124 C 1119.6047,576.77042 1121.9219,577.24881 1120.7085,574.71995 1120.4115,574.10083 1120.1081,573.72974 1119.7988,573.52979 Z M 1091.3796,559.26916 C 1091.0026,559.05385 1090.6602,559.08481 1090.3674,559.50211 1089.3691,560.92492 1091.7734,562.81343 1093.3765,564.73282 A 20.155618,11.636829 60.064274 0 1 1094.4793,563.13519 C 1093.3899,561.72222 1092.2853,559.78637 1091.3796,559.26916 Z M 1122.679,582.11329 C 1121.8199,581.63826 1120.6644,581.70938 1119.6057,581.46907 A 20.155618,11.636829 60.064274 0 1 1120.1917,584.28953 C 1121.9613,584.8369 1124.3791,586.46033 1123.8639,583.9401 1123.6619,582.95148 1123.2318,582.41891 1122.679,582.11329 Z M 1089.3327,565.38986 C 1088.6731,565.01484 1088.1889,565.04828 1088.0743,565.98893 1087.8143,568.12232 1090.1897,568.90027 1091.9982,570.14913 A 20.155618,11.636829 60.064274 0 1 1092.2835,567.76222 C 1091.2827,566.99165 1090.1676,565.86464 1089.3327,565.38986 Z M 1120.4093,588.28208 A 20.155618,11.636829 60.064274 0 1 1120.1367,590.67881 C 1121.9252,592.06079 1124.0714,594.56523 1124.3304,592.44014 1124.5902,590.30799 1122.2175,589.52975 1120.4093,588.28208 Z M 1092.1995,574.13563 C 1090.4312,573.58422 1088.0269,571.97559 1088.5407,574.48945 1089.055,577.0054 1091.0446,576.56794 1092.7801,576.95544 A 20.155618,11.636829 60.064274 0 1 1092.1995,574.13563 Z M 1119.0524,593.72585 A 20.155618,11.636829 60.064274 0 1 1117.958,595.33578 C 1119.4903,597.33727 1121.048,600.33688 1122.0372,598.92703 1123.0304,597.51149 1120.6554,595.63511 1119.0524,593.72585 Z M 1094.2479,581.29585 C 1092.7692,581.65287 1090.491,581.19745 1091.6961,583.70914 1092.9037,586.22581 1094.2144,584.64828 1095.6117,584.11826 A 20.155618,11.636829 60.064274 0 1 1094.2479,581.29585 Z M 1115.734,596.9652 A 20.155618,11.636829 60.064274 0 1 1113.9761,597.53138 C 1115.021,599.84454 1115.7648,602.8992 1117.3333,602.41325 1118.906,601.92598 1116.8905,599.2474 1115.734,596.9652 Z M 1098.1262,588.1497 C 1097.1595,589.36143 1095.3485,590.11417 1097.06,592.24471 1098.7756,594.38054 1099.2151,591.90566 1100.0615,590.5412 A 20.155618,11.636829 60.064274 0 1 1098.1262,588.1497 Z M 1110.9568,597.50077 A 20.155618,11.636829 60.064274 0 1 1108.8075,596.93524 C 1109.2067,599.20771 1109.0254,601.85652 1110.9348,602.36737 1112.8469,602.87894 1111.4926,599.81134 1110.9568,597.50077 Z M 1103.2416,593.64218 C 1102.9341,595.52737 1101.8565,597.36714 1103.8156,598.7964 1105.7785,600.22855 1105.2833,597.23074 1105.451,595.24151 A 20.155618,11.636829 60.064274 0 1 1103.2416,593.64218 Z" + id="path76991" /> + <path + id="path76993" + d="M 1036.0347,433.43309 980.64747,465.41092 979.82106,471.15636 1008.0317,495.10032 1083.26,538.53341 1137.2088,505.7251 1063.4189,463.12251 1035.2083,439.17852 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path76995" + d="M 1077.614,490.35139 1062.4197,499.12382 1072.9848,502.60516 1087.0086,497.4313 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path76997" + d="M 1036.0347,433.43309 1025.3445,439.67137 1024.4702,440.22541 1025.7569,444.63513 1051.3467,470.10788 1107.2556,523.77182 1108.4487,523.04632 1129.1958,501.09865 1063.4189,463.12237 1035.2083,439.17834 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.289229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76999" + d="M 979.82108,471.15636 1035.2083,439.17855 1036.0346,433.43314 980.64752,465.41092 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#172935;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1037.9234,417.92087 1039.5504,416.98153 V 419.3637 L 1037.9234,420.30303 Z" + id="path77001" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path77003" + d="M 1035.2083,439.17855 979.82108,471.15636 1008.0317,495.10032 1063.4189,463.12251 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke-width:0.627;stroke-linecap:round;stroke-linejoin:round" + d="M 1049.2781,473.6308 1033.7667,475.45025 1023.5695,470.00448 1047.5432,467.13944 Z" + id="path8312" /> + <path + inkscape:connector-curvature="0" + id="path77005" + d="M 1063.4189,463.12251 1008.0317,495.10032 1083.26,538.53341 1137.2088,505.7251 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + y="513.24542" + x="1080.4493" + height="20.900974" + width="10.02462" + id="rect77007" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77009" + d="M 1084.9488,526.49207 1090.474,523.30206 V 531.49659 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path77011" + d="M 1142.708,469.83869 1142.4767,483.74253 V 495.75023 L 1180.8969,517.93224 1184.2895,496.59151 1186.5372,497.88934 1185.9009,494.77581 Z M 1174.7085,492.33058 C 1174.9325,492.31958 1175.1894,492.38808 1175.463,492.54607 L 1180.1838,495.27186 C 1181.0594,495.77736 1181.9015,497.09074 1181.7641,498.0112 L 1179.5393,512.91578 C 1179.4019,513.83618 1178.8342,514.33627 1177.9586,513.83078 L 1175.463,512.38967 C 1174.5874,511.88424 1173.8827,510.66226 1173.8827,509.64996 V 493.46107 C 1173.8827,492.76511 1174.2158,492.35481 1174.7085,492.33058 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.289229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1035.2083,439.17855 1063.4189,463.12251 1138.6472,506.55568 V 485.95943 L 1153.7789,477.20053 1174.1422,484.4016 V 482.41085 L 1172.553,479.65566 1138.7796,460.15664 1126.1643,467.45902 1037.9234,420.30303 Z" + id="path77013" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cscccccscccscccccscccscccccscccscccccscccscccccscccscccccscccscccc" + inkscape:connector-curvature="0" + id="path77015" + d="M 1042.3431,426.84721 C 1041.5547,426.88601 1041.0216,427.54267 1041.0216,428.65615 V 437.68381 L 1039.6338,437.9166 1041.0216,442.01582 1042.2731,441.63073 V 437.47397 428.27105 C 1042.2731,427.65796 1042.4355,427.18425 1042.7124,426.87506 1042.5847,426.85296 1042.4604,426.84146 1042.3431,426.84726 Z M 1056.1838,434.83805 C 1055.3954,434.87695 1054.8622,435.53383 1054.8622,436.64735 V 451.29396 452.2902 453.73508 L 1056.1138,453.34998 V 450.76445 436.26225 C 1056.1138,435.64917 1056.2759,435.17515 1056.5527,434.86589 1056.4251,434.84379 1056.301,434.83229 1056.1838,434.83809 Z M 1069.9507,442.02823 C 1069.1624,442.06703 1068.6292,442.72362 1068.6292,443.83716 V 461.49913 463.11701 464.23507 L 1069.8808,463.84997 V 461.21029 443.45206 C 1069.8808,442.83923 1070.0427,442.36564 1070.3193,442.05643 1070.1918,442.03433 1070.0679,442.02243 1069.9507,442.02823 Z M 1083.7173,449.3271 C 1082.929,449.3659 1082.3962,450.02253 1082.3962,451.13601 V 468.84989 471.18081 472.29887 L 1083.6478,471.91376 V 468.5761 450.75091 C 1083.6478,450.13809 1083.8097,449.66448 1084.0863,449.35531 1083.9586,449.33321 1083.8346,449.32131 1083.7173,449.32711 Z M 1096.8288,456.57217 C 1096.0405,456.61097 1095.5073,457.26756 1095.5073,458.3811 V 477.59364 L 1095.1455,477.82115 1095.5073,479.97907 1096.7589,479.59396 V 476.80688 457.996 C 1096.7589,457.38303 1096.921,456.90918 1097.1977,456.60001 1097.0701,456.57791 1096.9459,456.56641 1096.8288,456.57211 Z M 1110.3382,463.72174 C 1109.5497,463.76044 1109.0163,464.41706 1109.0163,465.53065 V 484.31634 486.77324 487.89169 L 1110.2678,487.50659 V 483.69055 465.14555 C 1110.2678,464.5327 1110.4301,464.05908 1110.7067,463.74994 1110.5792,463.72794 1110.4553,463.71604 1110.3382,463.72174 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1138.7798,460.15679 1126.1643,467.45887 1037.9233,420.30315 1035.4755,437.31986 1041.0216,442.01582 V 428.65617 C 1041.0216,427.03652 1042.1496,426.38355 1043.5504,427.19232 L 1047.8583,429.67944 C 1049.2591,430.48821 1050.3868,432.44355 1050.3868,434.0632 V 449.94567 L 1054.8623,453.73505 V 436.64711 C 1054.8623,435.02746 1055.99,434.37429 1057.3908,435.18306 L 1061.6986,437.67017 C 1063.0995,438.47898 1064.2272,440.43429 1064.2272,442.05394 V 461.65675 L 1068.6291,464.23502 V 443.83713 C 1068.6291,442.21745 1069.7568,441.56468 1071.1577,442.37349 L 1075.4655,444.8606 C 1076.8663,445.66937 1077.9944,447.62451 1077.9944,449.24419 V 469.7208 L 1082.396,472.29892 V 451.13597 C 1082.396,449.51629 1083.5237,448.86355 1084.9245,449.67233 L 1089.2323,452.15941 C 1090.6332,452.96822 1091.7612,454.92332 1091.7612,456.543 V 477.78469 L 1095.5073,479.97885 V 458.38086 C 1095.5073,456.76126 1096.635,456.10846 1098.0359,456.91721 L 1102.3437,459.40436 C 1103.7445,460.21311 1104.8722,462.16807 1104.8722,463.78768 V 485.46398 L 1109.0163,487.89168 V 465.53042 C 1109.0163,463.91074 1110.1444,463.25824 1111.5453,464.06699 L 1115.853,466.55414 C 1117.2539,467.36289 1118.3816,469.31776 1118.3816,470.93744 V 493.37708 L 1122.261,495.64948 V 472.85274 C 1122.261,471.23306 1123.3886,470.5799 1124.7895,471.38865 L 1129.0977,473.87595 C 1130.4985,474.68477 1131.6262,476.64009 1131.6262,478.25976 V 501.13518 L 1135.8366,503.60131 V 479.69489 C 1135.8366,478.07521 1136.9643,477.42249 1138.3652,478.23124 L 1142.6729,480.71839 C 1143.3706,481.12113 1144.0003,481.80834 1144.4569,482.59672 L 1153.779,477.2006 1174.1421,484.40153 V 482.41099 L 1172.553,479.65573 Z" + id="path77017" /> + <rect + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77019" + width="16.701548" + height="18.388933" + x="1335.2357" + y="-184.65327" + rx="1.662598" + ry="1.6648418" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1189.3732,530.49353 1140.336,502.18183 V 525.67663 L 1143.5023,527.50474 C 1146.702,521.05826 1153.8191,519.82247 1161.6737,524.34944 1169.5246,528.89467 1176.6366,538.34492 1179.8348,548.48131 L 1186.3934,552.26793 V 544.8775 Z" + id="path77021" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1174.7769,492.32956 C 1174.2469,492.31776 1173.8827,492.73346 1173.8827,493.46107 V 509.65014 C 1173.8827,510.66244 1174.5877,511.8844 1175.4631,512.38982 L 1177.9587,513.83069 C 1178.8342,514.33619 1179.4018,513.83769 1179.5392,512.91584 L 1179.5512,512.82764 C 1179.4952,512.80224 1179.4366,512.77314 1179.3772,512.73874 L 1176.8817,511.29794 C 1176.0062,510.79244 1175.3012,509.57048 1175.3012,508.55818 V 492.46275 C 1175.1144,492.37655 1174.9375,492.33315 1174.7758,492.32958 Z" + id="path77023" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1189.3732,528.71885 1140.336,500.40714 V 502.18183 L 1189.3732,530.49353 Z" + id="path77025" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1140.336,494.51427 V 500.40714 L 1189.3732,528.71885 1187.8014,521.91846 1142.4767,495.75013 Z" + id="path77027" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path77029" + d="M 1174.8545,514.44375 1160.8077,506.33386 1128.9022,528.56936 1118.9393,540.37321 1122.5862,545.05377 1128.7604,541.0563 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:nodetypes="ccccccc" /> + <path + inkscape:connector-curvature="0" + id="path77031" + d="M 1172.0526,515.99582 1160.5429,509.35074 1163.1585,507.84059 1174.6679,514.48589 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + cy="-123.31643" + cx="1341.3854" + id="ellipse77033" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="2.396435" + ry="2.3995409" /> + <path + inkscape:connector-curvature="0" + id="path77035" + d="M 1172.9487,519.23612 1158.3532,519.48822 1118.6236,542.42607 1094.4121,528.44759 1096.614,523.60547 1131.6262,490.83921 1135.8366,496.65684 1156.9915,517.81185 H 1175.4158 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccccccc" /> + <path + inkscape:connector-curvature="0" + id="path77037" + d="M 1108.4768,535.75234 1127.2015,524.94162 1113.626,519.12757 1106.6269,523.16843 1101.8965,533.76743 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + cy="-123.31643" + cx="1256.0485" + id="ellipse77039" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="8.1819391" + ry="8.192543" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77041" + cx="1256.0485" + cy="-123.35365" + rx="2.396435" + ry="2.3995409" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1037.9234,417.92087 1142.4768,473.75784 V 476.14005 L 1037.9234,420.30303 Z" + id="path77043" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1186.3934,544.8775 1182.0895,542.39267 V 549.78304 L 1186.3934,552.26793 Z" + id="path77045" + inkscape:connector-curvature="0" /> + <path + id="path77047" + d="M 1183.5335,530.42432 1176.1779,534.67103 V 550.77547 L 1183.5335,546.52875 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.29182874,0,0,0.29182874,1138.4603,72.715729)" + id="g77065" + style="display:inline"> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path77049" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + id="path77051" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path77053" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse77055" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path77057" + transform="scale(0.26458333)" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77059" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + id="path77061" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + ry="7.2247276" + rx="7.2083259" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77063" + cx="-168.4836" + cy="1675.6819" /> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77067" + d="M 1141.2217,556.51916 1176.1779,536.33714 1173.4747,549.21488 1138.5185,569.39689 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77069" + d="M 1176.1779,550.7754 1173.4747,549.21488 1139.932,568.5808 1141.2217,570.95749 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77071" + d="M 1142.0326,556.05099 1174.3118,537.41457 1172.1362,547.73078 1139.8569,566.3672 Z" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77073" + d="M 1172.1362,547.73078 1171.5363,547.38438 1141.3841,564.79279 1141.5255,565.32048 1141.6165,565.35098 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.299105;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" + y="1213.7379" + x="1309.276" + height="16.104431" + width="8.4934216" + id="rect77075" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g77103" + style="display:inline;fill:#c0b2a5;fill-opacity:1" + transform="matrix(1.8048181,0,0,1.8048181,931.97619,364.55963)"> + <g + id="g77099" + style="fill:#c0b2a5;fill-opacity:1"> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 116.09432,111.28872 115.7508,111.09041 116.65665,106.92743 117.0721,106.68755 Z" + id="path77077" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 129.6594,103.45691 129.31588,103.25856 130.22174,99.095575 130.63719,98.855736 Z" + id="path77079" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 128.00932,104.40957 127.6658,104.21126 128.57166,100.04828 128.9871,99.808398 Z" + id="path77081" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path77083" + d="M 124.59308,106.38203 124.24957,106.18372 125.15542,102.02074 125.57086,101.78086 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 122.83643,107.39622 122.49291,107.19791 123.39877,103.03493 123.81421,102.79505 Z" + id="path77085" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 121.19603,108.34328 120.85251,108.14493 121.75836,103.98195 122.17381,103.74211 Z" + id="path77087" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path77089" + d="M 119.43937,109.35747 119.09586,109.15912 120.00171,104.99614 120.41715,104.7563 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77091" + d="M 117.85097,110.27453 117.50745,110.07622 118.41331,105.91324 118.82875,105.67336 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g77097" + style="fill:#c0b2a5;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + id="path77093" + d="M 131.41605,102.44271 131.07254,102.24437 131.97839,98.081381 132.39384,97.841543 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165726;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 133.06605,101.49009 132.72254,101.29174 133.62839,97.12876 134.04384,96.888922 Z" + id="path77095" + inkscape:connector-curvature="0" /> + </g> + </g> + <path + inkscape:connector-curvature="0" + id="path77101" + d="M 126.25267,105.42376 125.90915,105.22545 126.81501,101.06247 127.23045,100.82259 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccscccsccccc" + inkscape:connector-curvature="0" + id="path77105" + d="M 1172.9133,538.22201 1171.3763,539.1095 1169.0621,549.50569 1170.599,548.61819 Z M 1169.8391,539.99685 1168.3021,540.88434 1165.9878,551.28053 1167.5249,550.39317 Z M 1166.7649,541.77183 1165.2279,542.65917 1162.9137,553.0555 1164.4506,552.16802 Z M 1163.6907,543.54666 1162.1535,544.43415 1159.8393,554.83034 1161.3765,553.94285 Z M 1160.6165,545.3215 1159.0794,546.20899 1156.7651,556.60517 1158.3022,555.71782 Z M 1157.5424,547.09654 1156.0052,547.98382 1153.6909,558.38017 1155.2281,557.49267 Z M 1154.4681,548.87139 1152.931,549.75887 1150.6168,560.15498 1152.1539,559.26765 Z M 1151.3938,550.64635 1149.8568,551.53371 1147.5425,561.93004 1149.0796,561.04256 Z M 1148.3196,552.42119 1146.7826,553.30869 1144.4683,563.70488 1146.0053,562.81738 Z M 1145.2454,554.19604 1143.7084,555.08352 1141.3941,565.47972 1142.9312,564.59236 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(0.29182874,0,0,0.29182874,1135.7571,77.925334)" + id="g77111" + style="display:inline;fill:#c0b2a5;fill-opacity:1"> + <ellipse + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77107" + cx="110.45281" + cy="1685.7919" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + rx="2.1047468" + ry="2.1047475" /> + <ellipse + cy="1685.7919" + cx="49.777477" + id="ellipse77109" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + rx="2.1047468" + ry="2.1047475" /> + </g> + <g + transform="matrix(0.29182874,0,0,0.29182874,1127.9902,90.231737)" + id="g77149" + style="display:inline"> + <g + transform="translate(-105.30417,20.721772)" + id="g77129"> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path77113" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + id="path77115" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path77117" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse77119" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path77121" + transform="scale(0.26458333)" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77123" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + id="path77125" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + ry="7.2247276" + rx="7.2083259" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77127" + cx="-168.4836" + cy="1675.6819" /> + </g> + <g + id="g77147" + transform="translate(-105.30417,43.920833)"> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path77131" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path77133" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path77135" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77137" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + transform="scale(0.26458333)" + id="path77139" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse77141" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path77143" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + cy="1675.6819" + cx="-168.4836" + id="ellipse77145" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + rx="7.2083259" + ry="7.2247276" /> + </g> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77151" + d="M 1132.4143,553.89627 1130.8641,562.49914 1189.3732,528.71885 1187.8014,521.91846 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(0.26649649,0,0,0.26637035,1140.6496,121.03416)" + id="g77155" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke-width:1.09532"> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.12124;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 41.036782,1590.8594 94.551621,1560.2266 97.916265,1571.7751 40.791662,1604.756 Z" + id="path77153" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path77157" + d="M 1184.2895,496.59151 1128.9022,528.56954 1125.5097,549.91028 1180.8969,517.93224 Z M 1182.2996,498.79116 1179.3418,517.39672 1127.7902,547.16004 1130.748,528.5545 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path77159" + d="M 1087.3208,501.81633 1087.0895,515.72055 V 527.72824 L 1125.5097,549.91028 1128.9022,528.56954 1131.1501,529.86699 1130.5137,526.75385 Z M 1119.3214,524.30822 C 1119.5453,524.29722 1119.8021,524.36622 1120.0758,524.52409 L 1124.7967,527.24951 C 1125.6721,527.75502 1126.5143,529.06884 1126.3769,529.98921 L 1124.152,544.89381 C 1124.0147,545.81426 1123.4469,546.314 1122.5714,545.80843 L 1120.0758,544.36769 C 1119.2003,543.86219 1118.4955,542.64028 1118.4955,541.62797 V 525.43871 C 1118.4955,524.74275 1118.8286,524.33244 1119.3214,524.30822 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path77161" + d="M 1098.3918,509.17834 1153.7789,477.20046 1159.7771,479.69343 1185.9008,494.77589 1130.5135,526.75377 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path77163" + d="M 1116.9372,515.73655 1113.6606,517.53272 1098.3918,509.17834 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1098.3918,509.17834 1153.7789,477.20046 1159.7771,479.69343 1185.9008,494.77589 1130.5135,526.75377 Z" + id="path77165" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <rect + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="1.6648418" + rx="1.662598" + y="-120.6976" + x="1271.28" + height="18.388933" + width="16.701548" + id="rect77167" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77169" + d="M 979.82114,471.15636 1008.0318,495.1004 1083.2601,538.53341 V 517.93724 L 1098.3919,509.17834 1118.7552,516.37941 V 514.38873 L 1117.1658,511.63355 1083.3925,492.13453 1070.7772,499.43683 982.53625,452.28086 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.289229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cscccccscccscccccscccscccccscccscccccscccscccccscccscccccscccscccccscccccccccsccc" + inkscape:connector-curvature="0" + id="path77171" + d="M 986.95581,458.82494 C 986.16738,458.86374 985.63428,459.5204 985.63428,460.63387 V 469.66154 L 984.24657,469.89433 985.63428,473.99355 986.88586,473.60845 V 469.45169 460.24878 C 986.88586,459.63569 987.04824,459.16198 987.32513,458.85278 987.19745,458.83068 987.07311,458.81908 986.95581,458.82488 Z M 1000.7965,466.81578 C 1000.0082,466.85468 999.47497,467.51156 999.47497,468.62509 V 483.27169 484.26793 485.7128 L 1000.7265,485.3277 V 482.74218 468.23997 C 1000.7265,467.62689 1000.8886,467.15288 1001.1654,466.84362 1001.0378,466.82152 1000.9137,466.81002 1000.7965,466.81572 Z M 1014.5635,474.00595 C 1013.7751,474.04475 1013.2419,474.70135 1013.2419,475.81489 V 493.47685 495.09474 496.2128 L 1014.4935,495.82769 V 493.18802 475.42979 C 1014.4935,474.81696 1014.6554,474.34336 1014.932,474.03416 1014.8045,474.01216 1014.6806,474.00016 1014.5635,474.00596 Z M 1028.3301,481.30483 C 1027.5417,481.34363 1027.0089,482.00026 1027.0089,483.11374 V 500.82762 503.15853 504.2766 L 1028.2605,503.89149 V 500.55383 482.72864 C 1028.2605,482.11582 1028.4224,481.64221 1028.699,481.33304 1028.5714,481.31094 1028.4473,481.29904 1028.3301,481.30484 Z M 1041.4415,488.54989 C 1040.6532,488.58869 1040.12,489.24529 1040.12,490.35883 V 509.57136 L 1039.7582,509.79888 1040.12,511.9568 1041.3716,511.57169 V 508.78461 489.97373 C 1041.3716,489.36076 1041.5338,488.88691 1041.8105,488.57774 1041.6829,488.55564 1041.5586,488.54414 1041.4415,488.54984 Z M 1054.9509,495.69946 C 1054.1624,495.73816 1053.629,496.39479 1053.629,497.50838 V 516.29406 518.75097 519.86942 L 1054.8806,519.48432 V 515.66827 497.12328 C 1054.8806,496.51043 1055.0428,496.03681 1055.3195,495.72767 1055.1919,495.70567 1055.068,495.69377 1054.9509,495.69947 Z M 1068.1951,503.02127 C 1067.4068,503.06017 1066.8736,503.71708 1066.8736,504.83057 V 526.50902 526.50902 527.62708 L 1068.1248,527.24161 V 524.66963 504.44508 C 1068.1248,503.83201 1068.2872,503.35834 1068.564,503.04909 1068.4363,503.02699 1068.3121,503.01509 1068.1947,503.02089 Z M 1081.7707,509.86394 C 1080.9823,509.90274 1080.4495,510.55935 1080.4495,511.67286 V 533.34192 534.46111 535.57919 L 1081.7011,535.19409 V 532.96735 511.28776 C 1081.7011,510.67482 1081.8629,510.20096 1082.1396,509.89177 1082.012,509.86967 1081.8879,509.85817 1081.7707,509.86397 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path77173" + d="M 1130.8641,564.27383 1081.8268,535.96213 1084.9488,557.65444 1088.1151,559.48254 C 1091.3148,553.03615 1098.4318,551.80029 1106.2865,556.32732 1114.1374,560.87255 1121.2494,570.32274 1124.4476,580.45911 L 1131.0062,584.24575 V 576.85531 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77175" + d="M 1130.8641,562.49914 1081.8268,534.18744 V 535.96213 L 1130.8641,564.27383 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path77177" + d="M 1084.9488,526.49207 1081.8268,534.18744 1130.8641,562.49914 1132.4143,553.89627 1087.0895,527.72801 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77179" + d="M 1039.5504,416.98153 1144.1038,472.81853 1142.4768,473.75784 1037.9234,417.92087 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + id="path77181" + d="M 1035.6237,432.473 1018.545,442.33331 1020.3789,442.45075 1036.0347,433.43313 1036.1037,432.95289 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.299105;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path77183" + d="M 1020.619,442.33331 H 1018.545 L 994.43481,456.25336 995.51227,456.82876 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.299105;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.299105;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1036.1037,432.95286 1035.6238,432.47291 994.43497,456.25329 995.51234,456.82864 1036.0347,433.43309 Z" + id="path77185" + inkscape:connector-curvature="0" /> + <path + id="path77187" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.278809;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1099.5491,472.50252 1092.8466,476.3722 V 476.3712 C 1092.0745,476.85029 1091.1612,477.07567 1090.1006,477.03635 1091.9602,478.90062 1093.3437,480.88544 1094.2508,482.99048 1094.3338,483.17963 1094.4075,483.36927 1094.4826,483.55876 1094.5736,483.78758 1094.658,484.01685 1094.7381,484.24617 1094.7481,484.26577 1094.7521,484.28537 1094.7591,484.30497 1094.8321,484.51619 1094.899,484.72764 1094.9628,484.93927 1094.9768,484.98397 1094.9898,485.02867 1095.0028,485.07346 1095.0578,485.26229 1095.1091,485.45114 1095.1571,485.64031 1095.1761,485.71611 1095.1941,485.7919 1095.2121,485.86777 1095.2521,486.03482 1095.2901,486.20202 1095.3241,486.36933 1095.3431,486.46333 1095.3601,486.55729 1095.3771,486.65132 1095.4061,486.81005 1095.4351,486.9688 1095.4591,487.12777 1095.4731,487.22377 1095.4851,487.32014 1095.4981,487.41621 1095.5191,487.57001 1095.5401,487.72358 1095.5551,487.87759 1095.5691,488.01317 1095.5771,488.14869 1095.5871,488.28443 1095.5971,488.39823 1095.6061,488.51206 1095.6121,488.62598 1095.6251,488.88224 1095.6331,489.13904 1095.6331,489.3959 1095.6331,489.74858 1095.6191,490.08395 1095.5971,490.40978 1095.5979,490.41006 1095.5971,490.41015 1095.5971,490.41051 1095.4533,492.54244 1094.8389,494.09876 1093.7545,495.08168 L 1093.0097,495.62845 1101.9308,490.50164 V 490.49664 C 1103.6605,489.48089 1104.5283,487.41189 1104.5283,484.28277 1104.5283,482.12642 1104.0671,479.9918 1103.1449,477.87803 1102.331,475.9892 1101.1301,474.19795 1099.5493,472.50296 Z" + sodipodi:nodetypes="cccccsscsccccccccccsccccccscc" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1058.1751,429.21866 V 468.51818 L 1049.2781,473.6308 V 434.33129 Z" + id="path77189" /> + <path + id="path77191" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.278809;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1071.4295,468.61777 C 1071.1141,468.61677 1070.8234,468.68417 1070.557,468.82011 L 1061.6602,473.93328 1066.9894,483.02089 1075.8861,477.90844 C 1076.5816,477.53726 1076.9294,476.74025 1076.9294,475.51833 1076.9294,474.27842 1076.5737,473.06693 1075.8632,471.884 1075.1677,470.70979 1074.2838,469.81296 1073.2104,469.19324 1072.549,468.81136 1071.9551,468.61939 1071.4295,468.61777 Z" /> + <path + d="M 1049.2781,473.6308 1042.7243,469.84698 V 439.81977 L 1034.9006,438.18687 V 431.85258 L 1048.5751,433.92541 1049.2781,434.33129 Z" + id="path77193" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#393d46;stroke:#162834;stroke-width:0.278809;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + d="M 1060.6169,476.34969 Q 1060.6169,474.48984 1061.66,473.93307 1062.7259,473.38939 1064.3133,474.30589 1065.9234,475.23548 1066.9666,476.99679 1068.0324,478.77119 1068.0324,480.63105 1068.0324,482.46395 1066.9892,483.02072 1065.9461,483.55053 1064.3133,482.60785 1062.7032,481.67826 1061.66,479.94391 1060.6169,478.18259 1060.6169,476.34969 Z" + id="path77195" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#393d46;stroke:#162834;stroke-width:0.278809;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + d="M 1080.1649,468.39027 1083.6572,470.40657 Q 1086.1517,471.84678 1087.3536,471.05821 1088.5555,470.26964 1088.5555,467.81679 1088.5555,465.4448 1087.3536,463.43012 1086.1744,461.42852 1084.0881,460.22398 1082.2058,459.13728 1080.9359,459.64398 1079.666,460.12373 1079.666,462.0914 L 1073.1122,458.30757 Q 1073.1122,455.23477 1074.4955,453.60754 1075.9015,451.96644 1078.396,452.03198 1080.9132,452.11058 1083.9293,453.85196 1089.1678,456.8764 1092.1386,461.5835 1095.1093,466.26365 1095.1093,471.4928 1095.1093,474.18824 1093.726,475.65375 1092.3427,477.11925 1090.0976,477.03601 1092.8869,479.83242 1094.2476,482.98998 1095.6309,486.16063 1095.6309,489.39516 1095.6309,494.62431 1092.4107,495.9188 1089.2132,497.22637 1083.9293,494.17574 1078.9856,491.3215 1075.8335,486.40184 1072.704,481.49528 1072.704,476.4009 L 1079.2578,480.18472 Q 1079.2578,482.39498 1080.6411,484.59528 1082.0471,486.80866 1084.0881,487.98701 1086.4238,489.33557 1087.7391,488.63942 1089.0771,487.92941 1089.0771,485.50351 1089.0771,479.62745 1083.6345,476.48518 L 1080.1649,474.48197 Z" + id="path77197" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#393d46;stroke:#162834;stroke-width:0.278809;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1034.9006,431.85258 1043.7975,426.73996 1057.4721,428.81278 1048.5751,433.92541 Z" + id="path77199" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1048.5751,433.92541 1057.4721,428.81278 1058.1751,429.21866 1049.2781,434.33129 Z" + id="path77201" /> + <path + id="path77203" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1080.1648,472.09352 1072.7039,476.4009 1079.2578,480.18447 C 1079.2578,480.19247 1079.2586,480.20027 1079.2586,480.20817 L 1084.6193,477.11343 C 1084.3058,476.89666 1083.9815,476.685 1083.6348,476.48487 L 1080.1648,474.48222 Z" /> + <path + id="path77205" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1083.891,476.63697 C 1084.1431,476.79108 1084.3841,476.95083 1084.6193,477.11341 L 1079.2586,480.20815 C 1079.2586,481.67372 1079.724,483.13617 1080.6413,484.59517 1081.5786,486.07075 1082.7277,487.2014 1084.0883,487.98697 1085.6455,488.88601 1086.8623,489.10331 1087.7391,488.63921 1088.6311,488.16587 1089.0773,487.12083 1089.0773,485.50357 1089.0773,481.67982 1087.348,478.72428 1083.891,476.63697 Z" /> + <path + id="path77207" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1087.686,464.04778 1080.1648,468.39031 1083.6571,470.40659 C 1085.3201,471.36673 1086.5526,471.58383 1087.3538,471.05811 1088.1551,470.5324 1088.5557,469.45223 1088.5557,467.817 1088.5557,466.47451 1088.2635,465.21858 1087.686,464.04778 Z" /> + <path + id="path77209" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1081.9744,459.48783 C 1081.5996,459.46513 1081.2536,459.51763 1080.9362,459.64425 1080.0895,459.96408 1079.6661,460.77927 1079.6661,462.09105 L 1083.4576,459.90185 C 1082.9221,459.65731 1082.4264,459.51521 1081.9744,459.48783 Z" /> + <path + id="path77211" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.278809;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1087.2928,446.91945 C 1086.3771,446.89535 1085.5754,447.04986 1084.8797,447.37078 L 1084.8697,447.36678 1084.7847,447.41558 C 1084.6159,447.49848 1084.4537,447.59163 1084.2982,447.69542 L 1075.85,452.54597 C 1076.5752,452.181 1077.4214,452.0059 1078.3958,452.0315 1080.0739,452.0839 1081.918,452.69099 1083.9287,453.85189 1087.421,455.86818 1090.1576,458.44529 1092.1381,461.58335 1094.1186,464.70344 1095.1087,468.00644 1095.1087,471.49254 1095.1087,473.28949 1094.6482,474.67653 1093.726,475.65354 1093.4578,475.93768 1093.1623,476.17282 1092.8455,476.36964 L 1092.8463,476.37164 1099.5488,472.50196 1100.4048,472.00758 1101.2608,471.5132 C 1101.5162,471.39757 1101.7583,471.25817 1101.9863,471.09344 L 1102.0333,471.06614 V 471.05534 C 1102.2389,470.90213 1102.4365,470.73403 1102.6195,470.54015 1103.5417,469.56315 1104.0029,468.17683 1104.0029,466.37987 1104.0029,465.71257 1103.9549,465.05408 1103.8824,464.40019 L 1103.8924,464.36859 1103.8784,464.34919 C 1103.5658,461.60549 1102.6256,458.97725 1101.0341,456.46991 1099.0536,453.33186 1096.3171,450.75474 1092.8247,448.73845 1090.814,447.57756 1088.9692,446.9712 1087.2911,446.91878 Z" + sodipodi:nodetypes="cccccccscssccccccccssccccsc" /> + <path + sodipodi:nodetypes="cccccsccsccsccsccsccsccsccsccsccsccsccsccsccsccscccccccc" + id="path77215" + d="M 1083.3926,492.13459 1070.777,499.43668 982.53613,452.28101 979.47565,468.92326 985.63435,473.99363 V 460.63397 C 985.63435,459.01437 986.76239,458.36135 988.16324,459.17018 L 992.47105,461.65726 C 993.8719,462.46601 994.9996,464.4214 994.9996,466.04101 V 481.92347 L 999.47507,485.71286 V 468.62494 C 999.47507,467.00527 1000.6028,466.35212 1002.0036,467.16086 L 1006.3114,469.64802 C 1007.7123,470.45684 1008.84,472.41216 1008.84,474.03176 V 493.63456 L 1013.2419,496.21283 V 475.81497 C 1013.2419,474.19529 1014.3696,473.5425 1015.7705,474.35132 L 1020.0783,476.8384 C 1021.4791,477.64722 1022.6072,479.60232 1022.6072,481.222 V 501.6986 L 1027.0088,504.27673 V 483.11378 C 1027.0088,481.49417 1028.1365,480.84138 1029.5373,481.65013 L 1033.8451,484.13729 C 1035.246,484.94603 1036.374,486.9012 1036.374,488.52082 V 509.7625 L 1040.1201,511.95667 V 490.35874 C 1040.1201,488.73907 1041.2478,488.08628 1042.6487,488.89509 L 1046.9565,491.38218 C 1048.3573,492.19093 1049.485,494.14588 1049.485,495.76556 V 517.44178 L 1053.6291,519.86956 V 497.5083 C 1053.6291,495.88854 1054.7572,495.23604 1056.158,496.04487 L 1060.4658,498.53195 C 1061.8667,499.34069 1062.9944,501.29558 1062.9944,502.91533 V 525.35489 L 1066.8738,527.62729 V 504.83054 C 1066.8738,503.21094 1068.0015,502.55771 1069.4023,503.36646 L 1073.7105,505.85376 C 1075.1113,506.66258 1076.239,508.61797 1076.239,510.23758 V 533.11307 L 1080.4494,535.57912 V 511.67277 C 1080.4494,510.05309 1081.5771,509.4003 1082.9779,510.20912 L 1087.2857,512.69621 C 1087.9834,513.09901 1088.6131,513.78616 1089.0697,514.57453 L 1098.3919,509.17841 1118.755,516.37941 V 514.3888 L 1117.1658,511.63355 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77217" + d="M 982.53619,449.89873 1087.0896,505.73572 V 508.11786 L 982.53619,452.28086 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77219" + d="M 1131.0062,576.85538 1126.7023,574.37047 V 581.76084 L 1131.0062,584.24575 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77221" + d="M 1168.2436,513.6465 H 1158.8087 L 1159.29,512.58748 H 1168.5325 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + id="path77223" + d="M 1182.2997,498.79103 1180.6856,499.72306 1178.0518,516.28975 1163.8167,524.50838 1173.0148,521.04946 H 1173.0153 L 1179.3414,517.39696 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:none;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path77225" + d="M 1182.2997,498.79103 1180.6856,499.72306 1178.0518,516.28975 1128.1142,545.12107 1127.79,547.16015 1179.3416,517.39682 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + id="path77227" + d="M 1173.1148,519.20137 1128.1142,545.12107 1127.79,547.16015 1179.0396,517.47541 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path77229" + d="M 1125.5097,549.91017 1180.8969,517.93236 1187.8014,521.91846 1132.4143,553.89627 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1182.2997,498.79103 1180.6856,499.72306 1178.0518,516.28975 1128.1142,545.12107 1127.79,547.16015 1179.3416,517.39682 Z" + id="path77231" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path77233" + d="M 1130.5135,526.75377 1185.9008,494.77589 1186.5371,497.8892 1131.1499,529.86701 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77235" + d="M 1130.8641,562.49914 V 564.27383 L 1189.3732,530.49353 V 528.71885 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77237" + d="M 1118.7551,514.38873 1174.1422,482.41085 V 484.40153 L 1118.755,516.37941 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77239" + d="M 1118.7551,514.38866 1117.1658,511.63355 1172.553,479.65573 1174.1421,482.41099 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77241" + d="M 1083.3926,492.13459 1117.1657,511.63355 1172.553,479.65566 1138.7796,460.15664 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path77243" + d="M 1116.8258,506.72907 1109.5243,507.04873 1111.5012,508.20066 1116.8567,507.9592 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 984.16318,448.95935 1088.7166,504.79635 1087.0896,505.73572 982.53619,449.89873 Z" + id="path77245" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77247" + d="M 1087.0896,505.73572 1088.7166,504.79635 V 507.17856 L 1087.0896,508.11786 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1129.5396,577.70204 1125.2357,575.21723 V 582.60759 L 1129.5396,585.09248 Z" + id="path77249" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77251" + d="M 1131.0062,576.85538 1126.7023,574.37047 1125.2357,575.21723 1129.5396,577.70204 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77253" + d="M 1187.86,544.03076 1186.3935,544.87756 1131.0062,576.85538 1129.5397,577.70197 V 585.09241 L 1131.0062,584.24582 1186.3935,552.26786 1187.86,551.42119 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1189.9223,545.22157 1188.4559,546.06831 1133.0686,578.04613 1131.602,578.89279 V 586.28323 L 1133.0686,585.43657 1188.4559,553.4586 1189.9223,552.61202 Z" + id="path77255" + inkscape:connector-curvature="0" /> + <rect + style="display:inline;fill:#ed658b;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77257" + width="7.9946876" + height="4.8960977" + x="1360.6576" + y="1233.8601" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" /> + <rect + y="1233.8601" + x="1312.0134" + height="4.8960977" + width="7.9946876" + id="rect77259" + style="display:inline;fill:#ed658b;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" /> + <ellipse + cy="1236.7266" + cx="1340.3329" + id="ellipse77261" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" + rx="1.7648686" + ry="1.7648692" /> + <ellipse + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.321012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77263" + cx="1332.6302" + cy="1236.7266" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" + rx="1.7648686" + ry="1.7648692" /> + <g + transform="matrix(0.29182874,0,0,0.29182874,1140.5227,80.676656)" + id="g77271" + style="display:inline"> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1704.5676" + cx="133.18871" + id="ellipse77265" + style="opacity:1;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77267" + d="M 114.64843,1634.0823 V 1637.571 L 111.62671,1639.3156 V 1640.9243 L 114.64843,1639.1797 V 1642.6684 L 116.04116,1641.8643 V 1638.3756 L 119.06244,1636.6313 V 1635.0226 L 116.04116,1636.7669 V 1633.2782 Z" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77269" + cx="133.18871" + cy="1704.5676" /> + </g> + <g + transform="matrix(0.29182874,0,0,0.29182874,1140.5227,80.676656)" + id="g77279" + style="display:inline"> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + style="opacity:1;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77273" + cx="26.977436" + cy="1704.5676" /> + <path + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 22.66679,1687.188 V 1690.6767 L 19.645055,1692.4213 V 1694.03 L 22.66679,1692.2854 V 1695.774 L 24.059522,1694.97 V 1691.4813 L 27.080789,1689.737 V 1688.1283 L 24.059522,1689.8726 V 1686.3839 Z" + id="path77275" + inkscape:connector-curvature="0" /> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1704.5676" + cx="26.977436" + id="ellipse77277" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1131.602,578.89279 V 586.28323 L 1129.5396,585.09248 V 577.70204 Z" + id="path77281" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77283" + d="M 1131.602,578.89279 1189.9223,545.22157 1187.8599,544.03084 1129.5396,577.70204 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(0.29182874,0,0,0.29182874,1138.4603,79.485887)" + id="g77291" + style="display:inline"> + <rect + y="1709.6759" + x="-2.4622216" + height="16.777298" + width="27.395132" + id="rect77285" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" /> + <path + style="fill:#cc2e2d;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -2.1323462,1710.907 V 1727.6844 L -7.6192306,1724.5165 V 1707.7392 Z" + id="path77287" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77289" + d="M -2.1323462,1710.907 21.592532,1697.2094 16.105647,1694.0415 -7.6192306,1707.7392 Z" + style="fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.29182874,0,0,0.29182874,1180.5874,55.163783)" + id="g77299" + style="display:inline"> + <rect + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77293" + width="27.395132" + height="16.777298" + x="-2.4622216" + y="1709.6759" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77295" + d="M -2.1323462,1710.907 V 1727.6844 L -7.6192306,1724.5165 V 1707.7392 Z" + style="fill:#cc2e2d;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -2.1323462,1710.907 21.592532,1697.2094 16.105647,1694.0415 -7.6192306,1707.7392 Z" + id="path77297" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + transform="matrix(0.29182874,0,0,0.29182874,1138.4603,79.485887)" + id="g77305" + style="display:inline"> + <ellipse + ry="6.0476193" + rx="6.0476174" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1713.1624" + cx="114.63751" + id="ellipse77301" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 384.71875,6232.7676 A 16.162436,27.994167 29.999978 0 0 375.22852,6235.4492 16.162436,27.994167 29.999978 0 0 355.43359,6269.7344 16.162436,27.994167 29.999978 0 0 356.67188,6276.9355 16.162436,27.994167 29.999979 0 0 366.72852,6274.3281 16.162436,27.994167 29.999979 0 0 386.52344,6240.043 16.162436,27.994167 29.999979 0 0 385.2832,6232.8418 16.162436,27.994167 29.999978 0 0 384.71875,6232.7678 Z" + id="path77303" + transform="scale(0.26458333)" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0.29182874,0,0,0.29182874,1131.7949,83.337174)" + id="g77311" + style="display:inline"> + <ellipse + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77307" + cx="114.63751" + cy="1713.1624" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + rx="6.0476174" + ry="6.0476193" /> + <path + inkscape:connector-curvature="0" + transform="scale(0.26458333)" + id="path77309" + d="M 384.71875,6232.7676 A 16.162436,27.994167 29.999978 0 0 375.22852,6235.4492 16.162436,27.994167 29.999978 0 0 355.43359,6269.7344 16.162436,27.994167 29.999978 0 0 356.67188,6276.9355 16.162436,27.994167 29.999979 0 0 366.72852,6274.3281 16.162436,27.994167 29.999979 0 0 386.52344,6240.043 16.162436,27.994167 29.999979 0 0 385.2832,6232.8418 16.162436,27.994167 29.999978 0 0 384.71875,6232.7678 Z" + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + id="g77317" + transform="matrix(0.29182874,0,0,0.29182874,1125.119,87.188511)" + style="display:inline"> + <ellipse + ry="6.0476193" + rx="6.0476174" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1713.1624" + cx="114.63751" + id="ellipse77313" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 384.71875,6232.7676 A 16.162436,27.994167 29.999978 0 0 375.22852,6235.4492 16.162436,27.994167 29.999978 0 0 355.43359,6269.7344 16.162436,27.994167 29.999978 0 0 356.67188,6276.9355 16.162436,27.994167 29.999979 0 0 366.72852,6274.3281 16.162436,27.994167 29.999979 0 0 386.52344,6240.043 16.162436,27.994167 29.999979 0 0 385.2832,6232.8418 16.162436,27.994167 29.999978 0 0 384.71875,6232.7678 Z" + id="path77315" + transform="scale(0.26458333)" + inkscape:connector-curvature="0" /> + </g> + <path + id="path77319" + d="M 1106.6269,534.68412 1104.9655,535.64351 1113.9849,540.85101 C 1114.7825,541.31153 1115.4245,540.94001 1115.4245,540.01764 V 539.76378 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path77321" + d="M 1110.9174,520.69121 1106.6271,523.16842 1101.8968,533.76622 C 1101.8973,533.76669 1101.8968,533.76704 1101.8968,533.76822 L 1108.4751,535.75239 1115.4228,531.74118 V 524.9583 C 1115.4228,524.03597 1114.7804,522.92282 1113.9827,522.46229 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path77323" + d="M 1106.6269,534.68412 V 523.16842 L 1102.5357,520.80637 1101.8965,533.76743 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cssccccsccc" + id="path77325" + d="M 1101.7753,515.57653 C 1101.2924,515.56643 1100.9606,515.94444 1100.9606,516.60735 V 531.66652 C 1100.9606,532.58879 1101.603,533.702 1102.4006,534.16253 L 1111.3165,539.31056 1112.978,538.35118 1103.9756,533.15351 C 1103.178,532.69298 1102.5356,531.57977 1102.5356,530.6575 V 515.85182 L 1102.4006,515.77392 C 1102.1763,515.64446 1101.9641,515.58062 1101.7753,515.57648 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path77327" + d="M 1119.3896,524.30737 C 1118.8597,524.29557 1118.4955,524.71128 1118.4955,525.43887 V 541.62795 C 1118.4955,542.64024 1119.2004,543.86221 1120.076,544.36764 L 1122.5715,545.8085 C 1123.447,546.314 1124.0146,545.8155 1124.1519,544.89365 L 1124.1639,544.80545 C 1124.1079,544.78005 1124.0492,544.75095 1123.9899,544.71655 L 1121.4943,543.27575 C 1120.6187,542.77027 1119.9139,541.5483 1119.9139,540.53601 V 524.44059 C 1119.727,524.35439 1119.5501,524.31098 1119.3885,524.30741 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path77329" + d="M 1176.1779,550.7754 1173.4747,549.21488 1175.754,538.35657 1176.1779,538.11182 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77331" + d="M 1186.3934,544.8775 1183.5335,546.52875 1185.3581,532.81172 1189.3732,530.49353 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path77333" + d="M 1183.5335,546.52875 V 533.86512 L 1185.3581,532.81172 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1133.8662,575.20412 1131.0062,576.85538 1130.864,564.27383 1136.1486,561.22282 Z" + id="path77335" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.29182874,0,0,0.29182874,1138.4603,79.485887)" + id="g77353" + style="display:inline"> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path77337" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path77339" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path77341" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse77343" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + transform="scale(0.26458333)" + id="path77345" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse77347" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path77349" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + cy="1675.6819" + cx="-168.4836" + id="ellipse77351" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + rx="7.2083259" + ry="7.2247276" /> + </g> + <path + inkscape:connector-curvature="0" + id="path77355" + d="M 1090.4111,545.17373 C 1089.7335,544.77567 1089.1879,545.09503 1089.1879,545.88997 V 547.16903 L 1091.6343,548.60608 V 547.32701 C 1091.6343,546.53214 1091.0888,545.57178 1090.4111,545.17373 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path77357" + d="M 1090.411,545.17366 C 1089.7334,544.77561 1089.1878,545.09516 1089.1878,545.88999 V 546.37601 C 1089.1878,545.58115 1089.7334,545.26161 1090.411,545.65968 1091.0887,546.05773 1091.6343,547.01822 1091.6343,547.81306 V 547.32706 C 1091.6343,546.53219 1091.0887,545.57173 1090.411,545.17366 Z" + style="display:inline;fill:#162834;fill-opacity:1;stroke:none;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <ellipse + ry="0.64430398" + rx="0.63604891" + transform="matrix(0.86224625,0.5064893,0,1,0,0)" + cy="-93.984245" + cx="1264.6167" + id="ellipse77359" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.299029;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1090.4111,545.17373 C 1089.7335,544.77567 1089.1879,545.09503 1089.1879,545.88997 V 547.16903 L 1091.6343,548.60608 V 547.32701 C 1091.6343,546.53214 1091.0888,545.57178 1090.4111,545.17373 Z" + id="path77361" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path77363" + d="M 1109.3259,553.06133 V 557.12675 C 1112.983,559.51638 1116.3591,563.37244 1118.8038,567.82467 L 1120.1583,568.61144 V 559.35374 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.298378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path77365" + d="M 1124.3442,543.60576 1123.2058,544.26314 1124.1637,544.81634 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path77367" + d="M 1128.7605,541.05634 1128.1144,545.12098 1178.0519,516.28993 1174.8545,514.4438 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path77369" + d="M 1130.4299,529.61012 1128.7377,530.58712 1129.012,528.80195 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + id="path77371" + d="M 984.16308,448.95937 982.53618,449.89881 1070.2808,496.75924 1071.9081,495.81981 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77373" + d="M 984.16318,448.95935 1088.7166,504.79635 1087.0896,505.73572 982.53619,449.89873 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path77375" + d="M 1119.3895,524.30748 C 1118.8595,524.29598 1118.4955,524.71109 1118.4955,525.43871 V 534.78116 L 1119.9152,533.9613 V 524.4406 C 1119.7284,524.3544 1119.551,524.31103 1119.3895,524.30748 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1119.3896,524.30737 C 1118.8597,524.29557 1118.4955,524.71128 1118.4955,525.43887 V 541.62795 C 1118.4955,542.64024 1119.2004,543.86221 1120.076,544.36764 L 1122.5715,545.8085 C 1123.447,546.314 1124.0146,545.8155 1124.1519,544.89365 L 1124.1639,544.80545 C 1124.1079,544.78005 1124.0492,544.75095 1123.9899,544.71655 L 1121.4943,543.27575 C 1120.6187,542.77027 1119.9139,541.5483 1119.9139,540.53601 V 524.44059 C 1119.727,524.35439 1119.5501,524.31098 1119.3885,524.30741 Z" + id="path77377" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.298735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1101.7753,515.57657 C 1101.2924,515.56647 1100.9606,515.94458 1100.9606,516.60749 V 531.66659 C 1100.9606,532.58887 1101.6028,533.70218 1102.4005,534.16269 L 1113.9847,540.851 C 1114.7824,541.31152 1115.4246,540.9399 1115.4246,540.01751 V 539.76374 L 1103.9757,533.15353 C 1103.178,532.69301 1102.5357,531.5797 1102.5357,530.65742 V 515.85194 L 1102.4005,515.77374 C 1102.1762,515.64428 1101.9642,515.58067 1101.7753,515.57652 Z" + id="path77379" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77381" + d="M 1122.0575,467.42911 1123.6844,466.48974 V 468.87195 L 1122.0575,469.81125 Z" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.298833;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77383" + d="M 1126.9436,472.63231 H 1123.835 L 1120.6356,470.79292 1122.1899,469.89553 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.72774924,0,0,0.72774924,1414.7304,-278.84622)" + id="g77391" + style="display:inline"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77385" + d="M -395.44777,1029.3331 -393.21213,1028.0423 V 1031.3157 L -395.44777,1032.6064 Z" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.410626;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -395.44775,1032.6064 -402.16182,1028.73 -402.16179,1025.4567 -395.44777,1029.3331 Z" + id="path77387" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77389" + d="M -393.21213,1028.0423 -399.92615,1024.1659 -402.16179,1025.4567 -395.44777,1029.3331 Z" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1115.2588,479.38268 H 1112.1502 L 1108.9507,477.5433 1110.505,476.64591 Z" + id="path77393" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <g + transform="matrix(0.72774924,0,0,0.72774924,1403.0267,-272.12177)" + id="g77401" + style="display:inline"> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.410626;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -395.44777,1029.3331 -393.21213,1028.0423 V 1031.3157 L -395.44777,1032.6064 Z" + id="path77395" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path77397" + d="M -395.44775,1032.6064 -402.16182,1028.73 -402.16179,1025.4567 -395.44777,1029.3331 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -393.21213,1028.0423 -399.92615,1024.1659 -402.16179,1025.4567 -395.44777,1029.3331 Z" + id="path77399" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77403" + d="M 1103.3195,486.27483 H 1100.2109 L 1097.0115,484.43544 1098.5658,483.53805 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="g77411" + transform="matrix(0.72774924,0,0,0.72774924,1391.263,-265.22889)" + style="display:inline"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77405" + d="M -395.44777,1029.3331 -393.21213,1028.0423 V 1031.3157 L -395.44777,1032.6064 Z" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.410626;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -395.44775,1032.6064 -402.16182,1028.73 -402.16179,1025.4567 -395.44777,1029.3331 Z" + id="path77407" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path77409" + d="M -393.21213,1028.0423 -399.92615,1024.1659 -402.16179,1025.4567 -395.44777,1029.3331 Z" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + inkscape:connector-curvature="0" + id="path77413" + d="M 1117.361,506.40536 A 1.6382392,0.94860035 0 0 0 1116.1788,506.68286 1.6382392,0.94860035 0 0 0 1115.9732,506.83016 H 1115.6991 V 507.33995 507.36845 507.36845 A 1.6382392,0.94860035 0 0 0 1116.1773,508.02482 1.6382392,0.94860035 0 0 0 1118.494,508.02482 1.6382392,0.94860035 0 0 0 1118.9735,507.36845 V 506.83113 H 1118.7017 A 1.6382392,0.94860035 0 0 0 1118.494,506.68382 1.6382392,0.94860035 0 0 0 1117.3593,506.40632 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <circle + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.298242;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="circle77415" + cx="1151.5336" + cy="-139.24237" + r="1.3090111" + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1115.865,506.67928 1116.9796,506.57768 1117.6592,507.20511 1116.307,507.59006 1115.7741,507.09214 Z" + id="path77417" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <circle + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" + r="1.3090111" + cy="-139.24237" + cx="1151.5336" + id="circle77419" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.298242;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77421" + d="M 1116.7227,491.89063 V 506.78724 A 0.61608313,0.30948465 0 0 0 1116.7227,506.82034 V 506.82734 H 1116.7231 A 0.61608313,0.30948465 0 0 0 1116.9016,507.02376 0.61608313,0.30948465 0 0 0 1117.7727,507.02376 0.61608313,0.30948465 0 0 0 1117.9508,506.82734 V 506.82734 506.82134 A 0.61608313,0.30948465 0 0 0 1117.9508,506.78434 V 491.91431 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1116.7223,491.89063 V 506.78724 A 0.34407669,0.30948465 0 0 0 1116.7223,506.82034 V 506.82734 H 1116.7225 A 0.34407669,0.30948465 0 0 0 1116.8225,507.02376 0.34407669,0.30948465 0 0 0 1117.309,507.02376 0.34407669,0.30948465 0 0 0 1117.408,506.82734 H 1117.4084 V 506.82134 A 0.34407669,0.30948465 0 0 0 1117.4084,506.78434 V 491.91431 Z" + id="path77423" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1116.7227,491.89063 V 506.78724 A 0.61608313,0.30948465 0 0 0 1116.7227,506.82034 V 506.82734 H 1116.7231 A 0.61608313,0.30948465 0 0 0 1116.9016,507.02376 0.61608313,0.30948465 0 0 0 1117.7727,507.02376 0.61608313,0.30948465 0 0 0 1117.9508,506.82734 V 506.82734 506.82134 A 0.61608313,0.30948465 0 0 0 1117.9508,506.78434 V 491.91431 Z" + id="path77425" + inkscape:connector-curvature="0" /> + <circle + transform="matrix(0.89093626,0.45412837,-0.89093626,0.45412837,0,0)" + r="0.45025992" + cy="-85.574196" + cx="1168.5415" + id="circle77427" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.308677;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77429" + d="M 1166.1812,478.98028 1151.2988,479.63196 A 0.61608313,0.30948465 87.492665 0 0 1151.2658,479.63396 L 1151.2558,479.63421 V 479.63464 A 0.61608313,0.30948465 87.492665 0 0 1151.0674,479.82153 0.61608313,0.30948465 87.492665 0 0 1151.1054,480.69181 0.61608313,0.30948465 87.492665 0 0 1151.3095,480.86113 V 480.86196 L 1151.3195,480.86168 A 0.61608313,0.30948465 87.492665 0 0 1151.3565,480.85968 L 1166.2123,480.2106 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1166.7161,478.79256 A 1.6382392,0.94860035 0 0 0 1165.534,479.07005 1.6382392,0.94860035 0 0 0 1165.3283,479.21736 H 1165.0542 V 479.72716 479.75566 479.75566 A 1.6382392,0.94860035 0 0 0 1165.5324,480.41203 1.6382392,0.94860035 0 0 0 1167.8492,480.41203 1.6382392,0.94860035 0 0 0 1168.3287,479.75566 V 479.21834 H 1168.0573 A 1.6382392,0.94860035 0 0 0 1167.8495,479.07103 1.6382392,0.94860035 0 0 0 1166.7149,478.79353 Z" + id="path77431" + inkscape:connector-curvature="0" /> + <circle + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" + r="1.3090111" + cy="-195.32579" + cx="1152.4664" + id="circle77433" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.298242;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path77435" + d="M 1165.2409,479.02605 1166.3892,478.95805 1167.0686,479.58547 1165.7165,479.97043 1165.1837,479.47251 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <circle + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.298242;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="circle77437" + cx="1152.4664" + cy="-195.32579" + r="1.3090111" + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" /> + <path + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1166.0779,464.27784 V 479.17444 A 0.61608313,0.30948465 0 0 0 1166.0779,479.20754 V 479.21454 H 1166.0783 A 0.61608313,0.30948465 0 0 0 1166.2568,479.41095 0.61608313,0.30948465 0 0 0 1167.1278,479.41095 0.61608313,0.30948465 0 0 0 1167.306,479.21454 V 479.21454 479.20854 A 0.61608313,0.30948465 0 0 0 1167.306,479.17154 V 464.30151 Z" + id="path77439" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path77441" + d="M 1166.0774,464.27784 V 479.17444 A 0.34407669,0.30948465 0 0 0 1166.0774,479.20754 V 479.21454 H 1166.0777 A 0.34407669,0.30948465 0 0 0 1166.1777,479.41095 0.34407669,0.30948465 0 0 0 1166.6642,479.41095 0.34407669,0.30948465 0 0 0 1166.7632,479.21454 H 1166.7636 V 479.20854 A 0.34407669,0.30948465 0 0 0 1166.7636,479.17154 V 464.30151 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77443" + d="M 1166.0779,464.27784 V 479.17444 A 0.61608313,0.30948465 0 0 0 1166.0779,479.20754 V 479.21454 H 1166.0783 A 0.61608313,0.30948465 0 0 0 1166.2568,479.41095 0.61608313,0.30948465 0 0 0 1167.1278,479.41095 0.61608313,0.30948465 0 0 0 1167.306,479.21454 V 479.21454 479.20854 A 0.61608313,0.30948465 0 0 0 1167.306,479.17154 V 464.30151 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.277671;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <circle + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.308677;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="circle77445" + cx="1165.838" + cy="-143.67465" + r="0.45025992" + transform="matrix(0.89093626,0.45412837,-0.89093626,0.45412837,0,0)" /> + <path + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.298378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1108.0614,553.79136 V 557.85679 C 1111.7185,560.24642 1115.0946,564.10249 1117.5394,568.55469 L 1118.8939,569.34147 V 560.08377 Z" + id="path77447" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path77449" + d="M 1118.8939,569.34147 1120.1583,568.61144 V 559.35374 L 1118.8939,560.08377 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1108.0614,553.79136 1109.3259,553.06133 1120.1583,559.35374 1118.8939,560.08377 Z" + id="path77451" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path77453" + d="M 1175.8794,550.77473 1173.476,549.38596 1171.9721,550.25469 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path77455" + d="M 1102.5357,518.07377 1104.4599,516.96288 1102.5357,515.85198 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.298378;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g77471" + transform="matrix(0.8290361,0,0,0.8290361,596.67101,470.08849)"> + <path + id="path77457" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77465" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path77459" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77461" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77463" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <g + aria-label="A" + transform="matrix(-0.93060465,0.53728509,0.93060465,0.53728509,0,0)" + id="text77469" + style="font-size:27.1725px;display:inline;fill:#393d46;stroke-width:20.2722;stroke-linecap:round;stroke-linejoin:round"> + <path + d="M -504.96973,779.72791 -507.30657,773.72278 H -514.99639 L -517.30605,779.72791 H -519.77875 L -512.19762,760.24522 H -509.99665 L -502.44269,779.72791 Z M -510.21403,765.67972 Q -510.29553,765.46234 -510.48575,764.89172 -510.67596,764.3211 -510.86617,763.7233 -511.0292,763.09833 -511.13789,762.77226 -511.3281,763.61461 -511.57265,764.42979 -511.8172,765.21779 -511.98024,765.67972 L -514.18121,771.54898 H -508.04023 Z" + style="-inkscape-font-specification:sans-serif" + id="path12300" /> + </g> + </g> + <g + id="g77507" + transform="matrix(0.8290361,0,0,0.8290361,669.59459,343.77642)"> + <path + id="path77495" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1081.4198,89.317081 1069.3238,96.301081 1096.9797,111.98133 1104.5115,111.79796 1076.957,95.937121 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77503" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,584.46179,-177.69595)"> + <path + id="path77497" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77499" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77501" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + style="color:#000000;display:inline;fill:#393d46;fill-opacity:1;fill-rule:evenodd;stroke-width:1.14333;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1112.0352,82.073781 C 1105.2629,80.084704 1096.5851,81.54203 1093.1151,85.527448 1089.9765,89.132327 1092.3167,93.742539 1098.6962,95.567485 1104.4115,97.202409 1111.7035,95.957431 1114.5544,92.575828 1117.0788,89.581371 1115.1052,85.770601 1109.7691,84.304445 1105.1114,83.024648 1099.2005,84.058913 1096.9744,86.839997 1095.0663,89.223732 1096.6775,92.238453 1100.9784,93.341055 1104.5779,94.26387 1109.1153,93.437605 1110.7039,91.249778 1111.991,89.477201 1110.7349,87.249066 1107.4489,86.522419 1104.9078,85.96052 1101.7117,86.589229 1100.8014,88.204898 1100.4737,88.786491 1100.5422,89.41205 1100.9712,89.961721 1101.4001,90.511403 1102.2635,90.996873 1103.4362,91.145044 1104.1932,91.240684 1104.9535,91.174474 1105.6409,90.949941 1106.3282,90.725468 1106.9578,90.24312 1106.9151,89.673715 1106.8821,89.234049 1106.6077,89.04337 1106.1353,88.818113 1105.8991,88.705476 1105.5488,88.578347 1105.0308,88.594285 1104.5128,88.610185 1104.0193,88.834881 1103.8063,89.047845 A 1.1466641,0.66202713 0 0 0 1104.1691,89.82829 C 1104.0781,89.83439 1103.9811,89.85882 1103.9263,89.85191 1103.509,89.79921 1103.245,89.654521 1103.0602,89.417779 1102.8756,89.181043 1102.8428,88.863011 1102.9832,88.614547 1103.4456,87.79392 1105.2216,87.447439 1106.6303,87.758934 1108.6086,88.196389 1109.405,89.614299 1108.5892,90.737914 1107.5315,92.194646 1104.3893,92.767306 1101.9095,92.131551 1098.8474,91.346538 1097.665,89.133656 1099.0567,87.394902 1100.7194,85.317806 1105.2414,84.527107 1108.7838,85.500409 1112.915,86.635532 1114.4745,89.645224 1112.4923,91.99641 1110.2224,94.688893 1104.317,95.698086 1099.7151,94.381632 1094.5202,92.895563 1092.586,89.085462 1095.1654,86.122904 1098.0435,82.817228 1105.3354,81.591236 1110.9957,83.253715 A 1.1466641,0.66202713 0 0 0 1112.5376,82.964863 1.1466641,0.66202713 0 0 0 1112.0359,82.07378 Z" + id="path77505" /> + </g> + <path + id="path77615" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:5.51212;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1201.3937,586.61367 1191.3657,592.40366 1214.2934,605.40316 1220.5376,605.2512 1197.6939,592.102 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77627" + transform="matrix(1.8048181,0,0,1.8048181,895.33696,384.96511)" + style="display:inline"> + <g + id="g77623" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(1.3379224,0,0,1.339215,-58.698092,-10.923431)"> + <path + id="path77617" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77619" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77621" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path77625" + style="fill:#393d46;fill-opacity:1;stroke-width:0.15448;stroke-linecap:round;stroke-linejoin:round" + d="M 178.15156,113.32062 C 179.6369,114.17818 182.08848,114.15315 183.62728,113.26472 185.16609,112.37629 185.20943,110.96087 183.72408,110.10331 182.23873,109.24575 176.17272,108.96083 176.17272,108.96083 176.17272,108.96083 176.66621,112.46304 178.15156,113.32061 Z" + sodipodi:nodetypes="ssscs" /> + </g> + <path + id="path77629" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:5.51212;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1237.5968,565.57188 1227.5688,571.36186 1250.4965,584.36137 1256.7407,584.2094 1233.897,571.0602 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77641" + transform="matrix(1.8048181,0,0,1.8048181,968.2567,342.86211)" + style="display:inline"> + <g + id="g77637" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(1.3379224,0,0,1.339215,-78.888748,0.76269957)"> + <path + id="path77631" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77633" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77635" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path77639" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.154481;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 165.73445,122.58447 C 165.73444,122.36044 165.42233,122.18023 165.03431,122.18024 H 163.98554 L 163.98553,123.60626 H 165.03431 C 165.42233,123.60626 165.73445,123.42607 165.73444,123.20203 Z M 162.85969,122.18024 H 155.70993 C 155.53213,122.18023 155.37004,122.21834 155.24678,122.28088 155.24378,122.28188 155.24078,122.28388 155.23778,122.28488 L 153.86992,122.8933 155.24642,123.50587 C 155.36968,123.56837 155.5319,123.6061 155.70959,123.6061 H 162.85935 Z" /> + </g> + <g + id="g81635"> + <path + id="path77671" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:5.51212;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1602.6094,565.24902 1592.5814,571.039 1615.5091,584.03851 1621.7533,583.88654 1598.9096,570.73735 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path81601" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1621.6133,551.80664 1598.9102,564.92773 1621.6133,578.04883 1631.9766,572.06055 V 557.79492 Z" /> + <path + id="path81603" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1621.5391,551.67773 1598.834,564.79883 A 0.14981498,0.14981498 0 0 0 1598.834,565.05859 L 1621.5391,578.17969 A 0.14981498,0.14981498 0 0 0 1621.6895,578.17969 L 1631.9766,572.23438 V 571.88867 L 1621.6133,577.87695 1599.209,564.92969 1621.6133,551.98047 1631.9766,557.96875 V 557.62305 L 1621.6895,551.67773 A 0.14981498,0.14981498 0 0 0 1621.5391,551.67773 Z" /> + <path + style="color:#000000;fill:#c0b2a5;stroke-width:0.299603;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1598.9096,564.92822 1621.614,578.0494 V 583.85853 L 1598.9096,570.73736 Z" + id="path81595" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1598.834,564.79883 A 0.14981647,0.14981647 0 0 0 1598.76,564.92773 V 570.73828 A 0.14981647,0.14981647 0 0 0 1598.834,570.86719 L 1621.5391,583.98828 A 0.14981647,0.14981647 0 0 0 1621.7637,583.85937 V 578.04883 A 0.14981647,0.14981647 0 0 0 1621.6897,577.91992 L 1598.9846,564.79883 A 0.14981647,0.14981647 0 0 0 1598.8342,564.79883 Z M 1599.0586,565.1875 1621.4648,578.13672 V 583.59961 L 1599.0586,570.65039 Z" + id="path81597" /> + <path + id="path81589" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1631.9766,572.06836 1621.627,578.04883 V 583.85938 L 1631.9766,577.87891 Z" /> + <path + id="path81591" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1631.9766,571.89648 1621.5527,577.91992 A 0.14981498,0.14981498 0 0 0 1621.4767,578.04883 V 583.85938 A 0.14981498,0.14981498 0 0 0 1621.7013,583.98828 L 1631.9767,578.05078 V 577.70508 L 1621.7774,583.59961 V 578.13672 L 1631.9767,572.24219 Z" /> + <path + id="path77681" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.930485;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" + d="M 1622.8684,558.78191 1616.8441,562.26008 1612.2245,564.92729 1618.1244,568.47656 1622.8684,565.73825 1626.2702,565.9627 1628.944,566.13975 1625.7054,564.26967 C 1625.5269,564.16662 1625.5269,564.00081 1625.7054,563.89777 1625.8839,563.79472 1626.1713,563.79472 1626.3498,563.89777 L 1629.5884,565.76783 1629.2817,564.22426 1628.8926,562.26004 Z" /> + </g> + <g + id="g85347"> + <path + id="path76849" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:5.51212;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 938.33789,401.6543 936.03906,402.98242 958.9668,415.98242 965.21094,415.83008 942.36719,402.67969 943.05859,401.6543 Z" /> + <path + id="path85309" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 950.73242,401.6543 965.21094,410.02148 979.68945,401.6543 Z" /> + <path + id="path85311" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 950.43359,401.6543 965.13477,410.15039 A 0.14981498,0.14981498 0 0 0 965.28516,410.15039 L 979.98633,401.6543 H 979.38867 L 965.21094,409.84766 951.0332,401.6543 Z" /> + <path + id="path85303" + style="color:#000000;fill:#c0b2a5;stroke-width:0.299603;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 942.50586,401.6543 V 402.70898 L 965.21094,415.83008 V 410.02148 L 950.73242,401.6543 Z" /> + <path + id="path85305" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 942.35547,401.6543 V 402.70898 A 0.14981647,0.14981647 0 0 0 942.43167,402.83789 L 965.1348,415.95898 A 0.14981647,0.14981647 0 0 0 965.35941,415.83008 V 410.02148 A 0.14981647,0.14981647 0 0 0 965.28521,409.89062 L 951.0332,401.6543 H 950.43555 L 965.06055,410.10742 V 415.57031 L 942.65625,402.62305 V 401.6543 Z" /> + <path + id="path85297" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 979.70117,401.6543 965.22266,410.02148 V 415.83008 L 987.92773,402.70898 V 401.6543 Z" /> + <path + id="path85299" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 979.40039,401.6543 965.14844,409.89062 A 0.14981498,0.14981498 0 0 0 965.07224,410.02148 V 415.83008 A 0.14981498,0.14981498 0 0 0 965.2988,415.95898 L 988.00192,402.83789 A 0.14981498,0.14981498 0 0 0 988.07612,402.70898 V 401.6543 H 987.77729 V 402.62305 L 965.373,415.57031 V 410.10742 L 979.998,401.6543 Z" /> + </g> + <g + id="g77703" + transform="matrix(1.8048181,0,0,1.8048181,931.97619,364.55963)" + style="display:inline"> + <path + id="path77695" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.321057 V 36.379175 L 11.296985,29.849858 Z" /> + <path + id="path77697" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.225456 V 23.417175 L 11.131104,29.849858 0,36.282023 V 36.473743 L 11.337809,29.921688 A 0.0830083,0.0830083 0 0 0 11.337809,29.777511 Z" /> + <path + id="path77699" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.30422,29.849858 0,36.382792 V 39.6012 L 11.30422,33.068783 Z" /> + <path + id="path77701" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.309904,29.766142 A 0.0830083,0.0830083 0 0 0 11.261844,29.777512 L 0,36.288224 V 36.478394 L 11.220504,29.994035 V 33.02124 L 0,39.507149 V 39.696802 L 11.345561,33.140613 A 0.0830083,0.0830083 0 0 0 11.386901,33.068263 V 29.849855 A 0.0830083,0.0830083 0 0 0 11.309901,29.766135 Z" /> + </g> + <g + id="g77715" + transform="matrix(1.8048181,0,0,1.8048181,931.97619,364.55963)" + style="display:inline"> + <g + id="g77713" + transform="translate(0,69.923174)"> + <path + id="path77705" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.321057 V 36.379175 L 11.296985,29.849858 Z" /> + <path + id="path77707" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.225456 V 23.417175 L 11.131104,29.849858 0,36.282023 V 36.473743 L 11.337809,29.921688 A 0.0830083,0.0830083 0 0 0 11.337809,29.777511 Z" /> + <path + id="path77709" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.30422,29.849858 0,36.382792 V 39.6012 L 11.30422,33.068783 Z" /> + <path + id="path77711" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.309904,29.766142 A 0.0830083,0.0830083 0 0 0 11.261844,29.777512 L 0,36.288224 V 36.478394 L 11.220504,29.994035 V 33.02124 L 0,39.507149 V 39.696802 L 11.345561,33.140613 A 0.0830083,0.0830083 0 0 0 11.386901,33.068263 V 29.849855 A 0.0830083,0.0830083 0 0 0 11.309901,29.766135 Z" /> + </g> + </g> + <g + id="g77733" + transform="matrix(0.47752478,0,0,0.47752478,931.94556,365.22308)" + style="display:inline"> + <g + id="g77729" + transform="matrix(3.7795276,0,0,3.7795276,-2.349e-4,0)"> + <path + id="path77717" + style="fill:#aeaaa3;fill-opacity:1;stroke:none;stroke-width:3.0541;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 7.8068644,111.20506 2.2506144,114.41313 14.954234,121.6158 18.413964,121.5316 5.7568944,114.24599 Z" + sodipodi:nodetypes="cccccc" /> + <path + style="color:#000000;fill:#c0b2a5;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 18.413959,103.77277 5.8341031,111.04284 18.413959,118.31292 30.993814,111.04284 Z" + id="path77719" /> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 10.692116,108.23533 12.690513,112.41794 12.124031,114.67788 5.8341031,111.04284 Z" + id="path77721" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 18.373047,103.70117 5.7929687,110.9707 A 0.0830083,0.0830083 0 0 0 5.7929687,111.11523 L 18.373047,118.38477 A 0.0830083,0.0830083 0 0 0 18.455077,118.38477 L 31.035155,111.11523 A 0.0830083,0.0830083 0 0 0 31.035155,110.9707 L 18.455077,103.70117 A 0.0830083,0.0830083 0 0 0 18.373047,103.70117 Z M 18.414067,103.86719 30.82813,111.04297 18.414062,118.2168 6,111.04297 Z" + id="path77723" /> + <path + id="path77725" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 5.8340851,111.04284 18.413954,118.31292 V 121.5316 L 5.8340851,114.26152 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77727" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 31.000959,111.04284 18.42109,118.31292 V 121.5316 L 31.000959,114.26152 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path77731" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.583861;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 54.650661,410.55549 A 11.260325,6.5011545 0 0 1 70.575046,410.55549 11.260325,6.5011545 0 0 1 71.797225,418.90772 L 83.867792,425.87668 C 84.610417,426.30543 84.610953,426.99557 83.868329,427.42432 83.125709,427.85307 81.929802,427.85307 81.187178,427.42432 L 69.11661,420.45536 A 11.260325,6.5011545 0 0 1 54.65012,419.74976 11.260325,6.5011545 0 0 1 54.650661,410.55549 Z M 56.898047,411.85301 A 8.0824117,4.6663847 0 0 0 56.897511,418.45221 8.0824117,4.6663847 0 0 0 68.328197,418.45221 8.0824117,4.6663847 0 0 0 68.327656,411.85301 8.0824117,4.6663847 0 0 0 56.898047,411.85301 Z" /> + </g> + <g + id="g77751" + transform="matrix(0.8290361,0,0,0.8290361,-61.94383,230.17781)"> + <g + id="g77747" + transform="translate(618.30848,289.40305)"> + <path + id="path77737" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77745" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path77739" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77741" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77743" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + id="path77749" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0673168px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1805.4894,420.74866 1803.4539,421.92265 1807.2315,423.03386 1797.584,428.60303 1799.9713,429.98145 1812.5976,422.69217 1812.3421,422.54469 Z M 1816.4526,427.29908 C 1816.1229,427.29863 1815.7949,427.31768 1815.4698,427.35748 1814.6143,427.46347 1813.8574,427.70762 1813.1992,428.08758 L 1815.5867,429.466 C 1816.0082,429.22269 1816.5019,429.11521 1817.0702,429.1433 1817.6442,429.1681 1818.1609,429.31161 1818.618,429.57551 1819.1248,429.86808 1819.3797,430.1799 1819.3832,430.50858 1819.3932,430.84043 1819.1435,431.15272 1818.6356,431.44603 1818.1102,431.74931 1817.5424,431.90728 1816.9329,431.92204 1816.3235,431.93674 1815.7164,431.76951 1815.1106,431.41974 L 1813.8373,430.68526 1811.8807,431.81545 1813.1452,432.54555 C 1814.4671,433.30874 1814.4987,434.05304 1813.2402,434.77964 1812.7207,435.07961 1812.1392,435.22785 1811.4968,435.22354 1810.8656,435.21954 1810.2666,435.05315 1809.6993,434.72561 1809.2035,434.43945 1808.9345,434.11046 1808.8932,433.73998 1808.8572,433.37269 1809.0768,433.05394 1809.5503,432.78064 L 1807.1614,431.40076 C 1806.0703,432.03069 1805.5744,432.75722 1805.6706,433.57936 1805.7722,434.40463 1806.4237,435.16404 1807.6244,435.85727 1808.9076,436.59816 1810.2739,436.99769 1811.726,437.05608 1813.1835,437.11758 1814.4726,436.82512 1815.5926,436.1785 1816.2854,435.77856 1816.7187,435.33556 1816.8907,434.84827 1817.0683,434.36418 1816.9437,433.85286 1816.5213,433.31507 1817.3264,433.47988 1818.1389,433.51934 1818.9598,433.43335 1819.7808,433.34735 1820.4793,433.1373 1821.0567,432.804 1822.1766,432.15739 1822.6939,431.44218 1822.6074,430.65898 1822.5264,429.87242 1821.8514,429.11269 1820.5792,428.37816 1819.8466,427.95524 1819.026,427.65143 1818.1202,427.46846 1817.5576,427.35609 1817.0021,427.29982 1816.4527,427.29908 Z M 1803.4232,429.97707 C 1802.9591,429.98797 1802.5409,430.10169 1802.1675,430.3173 1801.7749,430.54395 1801.5798,430.80308 1801.5848,431.09266 1801.5948,431.37892 1801.7984,431.63496 1802.1894,431.86072 1802.5861,432.08968 1803.0312,432.20634 1803.5269,432.21263 1804.0286,432.21563 1804.4763,432.10343 1804.8688,431.87679 1805.2672,431.64681 1805.4606,431.38691 1805.45,431.09412 1805.44,430.80452 1805.2467,430.54598 1804.8557,430.32022 1804.4702,430.09763 1804.0238,429.9832 1803.5167,429.97707 1803.4857,429.97689 1803.4537,429.97635 1803.4237,429.97707 Z" /> + </g> + <g + id="g77767" + transform="matrix(0.8290361,0,0,0.8290361,-42.172446,600.16872)"> + <g + id="g77763" + transform="translate(242.47602,-360.27361)"> + <path + id="path77753" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77761" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path77755" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77757" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77759" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1440.638,-226.33356 1426.0562,-217.91481 1428.9233,-216.25954 1443.505,-224.6783 Z" + id="path77765" /> + </g> + <g + id="g77783" + transform="matrix(0.8290361,0,0,0.8290361,-35.323621,596.1561)"> + <g + id="g77779" + transform="translate(278.33637,-329.78533)"> + <path + id="path77769" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77777" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path77771" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77773" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77775" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1472.0955,-198.06368 1457.5138,-189.64493 1460.3797,-187.99024 1469.9737,-193.52931 1465.96,-184.76857 1468.826,-183.11385 1483.4077,-191.53261 1480.5516,-193.18153 1470.9377,-187.63093 1474.9615,-196.40901 Z" + id="path77781" /> + </g> + <g + id="g77799" + transform="matrix(0.8290361,0,0,0.8290361,-38.613253,589.36915)"> + <g + id="g77795" + transform="translate(326.10713,-296.10122)"> + <path + id="path77785" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77793" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path77787" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77789" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77791" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1520.5138,-163.31502 1505.9322,-154.89627 1508.7992,-153.24099 1512.9658,-155.6466 1516.1384,-155.75736 1513.8628,-150.31749 1517.2743,-148.34788 1520.2931,-155.96094 1531.7122,-156.84971 1528.1868,-158.88506 1519.8446,-158.16238 1516.7708,-157.84342 1523.3809,-161.65975 Z" + id="path77797" /> + </g> + <g + id="g77815" + transform="matrix(0.8290361,0,0,0.8290361,-34.700651,589.93362)"> + <g + id="g77811" + transform="translate(365.49617,-271.43897)"> + <path + id="path77801" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77809" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path77803" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77805" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77807" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1565.7008,-135.88305 C 1564.7135,-136.45309 1563.6466,-136.86786 1562.5032,-137.12709 1561.3662,-137.38266 1560.2754,-137.45427 1559.2277,-137.34222 1558.193,-137.23028 1557.2803,-136.94696 1556.4924,-136.4921 1554.9769,-135.61708 1554.5617,-134.46539 1555.2468,-133.03682 1555.4992,-132.51328 1555.9531,-131.86637 1556.6064,-131.09605 1557.2663,-130.32961 1557.6332,-129.74705 1557.7082,-129.3491 1557.7902,-128.955 1557.5475,-128.59419 1556.98,-128.26655 1556.4592,-127.96588 1555.8607,-127.8412 1555.1848,-127.89225 1554.5155,-127.94715 1553.8396,-128.17179 1553.1579,-128.5653 1551.3235,-129.62446 1551.2113,-130.6181 1552.8203,-131.54708 L 1549.9444,-133.20753 C 1549.0029,-132.66401 1548.404,-132.05298 1548.1482,-131.37578 1547.8988,-130.69484 1548.0069,-129.98138 1548.472,-129.2349 1548.9436,-128.49224 1549.7143,-127.81278 1550.7844,-127.19495 1552.3259,-126.30501 1553.9091,-125.80253 1555.5345,-125.68906 1557.1664,-125.57951 1558.614,-125.88909 1559.8759,-126.61762 1561.011,-127.27292 1561.5862,-128.0353 1561.6022,-128.90501 1561.6182,-129.77471 1561.0675,-130.82902 1559.9508,-132.06729 1559.3459,-132.74037 1558.9742,-133.30157 1558.836,-133.75139 1558.7042,-134.19751 1558.875,-134.55738 1559.3495,-134.83107 1559.857,-135.12402 1560.4579,-135.24722 1561.1536,-135.20017 1561.8559,-135.15707 1562.5577,-134.93281 1563.2584,-134.52826 1563.9846,-134.10901 1564.3618,-133.67585 1564.3892,-133.22829 1564.4232,-132.7846 1564.1059,-132.37029 1563.4382,-131.98482 L 1566.3052,-130.32955 C 1567.1798,-130.83452 1567.7439,-131.41098 1567.9984,-132.05806 1568.2593,-132.70149 1568.1878,-133.35564 1567.7846,-134.02017 1567.3882,-134.68853 1566.6946,-135.30933 1565.7008,-135.88305 Z" + id="path77813" /> + </g> + <g + id="g77831" + transform="matrix(0.8290361,0,0,0.8290361,-30.016025,590.68336)"> + <g + id="g77827" + transform="translate(403.83978,-247.25394)"> + <path + id="path77817" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77825" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path77819" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77821" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77823" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1603.5957,-112.15054 C 1602.4364,-112.81981 1601.129,-113.2422 1599.6757,-113.41822 1598.2356,-113.5944 1596.7461,-113.51022 1595.2064,-113.1656 1593.6668,-112.821 1592.1962,-112.24428 1590.7941,-111.43478 L 1589.903,-110.92033 C 1587.7064,-109.65214 1586.4865,-108.35867 1586.2438,-107.04172 1586.0141,-105.72494 1586.7919,-104.5521 1588.5754,-103.52241 1590.2061,-102.58093 1591.9678,-102.08369 1593.8628,-102.03038 1595.7642,-101.97338 1597.554,-102.36589 1599.2312,-103.20924 L 1596.3642,-104.8645 C 1595.4126,-104.38859 1594.5039,-104.15382 1593.6371,-104.16087 1592.7833,-104.16787 1591.9143,-104.42769 1591.0289,-104.9389 1590.0479,-105.50522 1589.6917,-106.13126 1589.9609,-106.8162 1590.2365,-107.49745 1591.1613,-108.29249 1592.737,-109.20219 L 1593.8389,-109.83834 C 1595.3605,-110.70216 1596.7149,-111.20451 1597.9006,-111.34482 1599.0994,-111.48532 1600.1758,-111.27932 1601.1313,-110.72771 1602.0103,-110.22016 1602.4503,-109.7201 1602.4498,-109.22701 1602.4618,-108.73408 1602.0325,-108.19609 1601.1612,-107.61212 L 1604.0282,-105.95685 C 1605.5045,-106.98566 1606.2017,-108.04338 1606.122,-109.13011 1606.042,-110.21685 1605.2008,-111.22376 1603.5957,-112.15054 Z" + id="path77829" /> + </g> + <g + id="g77847" + transform="matrix(0.8290361,0,0,0.8290361,-39.354909,587.36227)"> + <g + id="g77843" + transform="translate(459.10702,-217.74054)"> + <path + id="path77833" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77841" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path77835" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77837" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77839" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + id="path77845" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1659.0582,-83.521494 1639.2981,-78.092384 1642.3463,-76.332314 1646.3064,-77.515624 1651.3319,-74.614144 1649.2917,-72.321424 1652.3399,-70.562454 1661.7137,-81.987494 Z M 1656.7015,-80.626634 1652.9917,-76.465754 1649.5134,-78.472854 Z" /> + </g> + <g + id="g77863" + transform="matrix(0.8290361,0,0,0.8290361,-43.956432,590.87839)"> + <g + id="g77859" + transform="translate(552.68526,-170.52754)"> + <path + id="path77849" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77857" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path77851" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77853" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77855" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1746.0866,-38.048107 1731.5048,-29.629345 1740.83,-24.245429 1743.2435,-25.638845 1736.7843,-29.36808 1740.6902,-31.623162 1746.1943,-28.445302 1748.5479,-29.804112 1743.0437,-32.981972 1746.5191,-34.988471 1752.9593,-31.270194 1755.3928,-32.67515 Z" + id="path77861" /> + </g> + <g + id="g77879" + transform="matrix(0.8290361,0,0,0.8290361,-38.893443,589.50095)"> + <g + id="g77875" + transform="translate(502.44573,-194.76314)"> + <path + id="path77865" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77873" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path77867" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77869" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77871" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + id="path77877" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1697.0177,-62.691389 1682.4364,-54.272589 1685.3015,-52.618386 1690.4394,-55.584919 1692.9527,-54.133629 C 1694.6025,-53.181142 1696.3032,-52.67344 1698.0543,-52.610663 1699.8187,-52.548053 1701.4161,-52.929353 1702.8449,-53.754269 1703.7863,-54.297779 1704.4098,-54.904559 1704.7175,-55.574999 1705.0317,-56.249269 1704.9918,-56.931949 1704.5962,-57.622899 1704.2069,-58.310219 1703.4893,-58.955189 1702.4446,-59.558329 Z M 1697.45,-59.632219 1700.078,-58.114759 C 1700.7717,-57.698829 1701.0987,-57.247739 1701.0594,-56.761609 1701.0204,-56.275519 1700.6436,-55.826449 1699.9291,-55.413989 1699.2348,-55.013099 1698.4998,-54.820299 1697.7246,-54.836119 1696.9558,-54.848219 1696.1921,-55.073379 1695.4341,-55.511039 L 1692.8733,-56.989889 Z" /> + </g> + <g + id="g77893" + transform="matrix(0.8290361,0,0,0.8290361,-346.57769,356.88253)"> + <path + id="path77881" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1911.2838,200.2433 1899.1878,207.22729 1926.8437,222.90756 1934.3755,222.72425 1906.821,206.86343 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77889" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1414.3258,-66.769716)"> + <path + id="path77883" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77885" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77887" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path77891" + style="fill:#f06060;fill-opacity:1;stroke-width:0.161858;stroke-linecap:round;stroke-linejoin:round" + d="M 1936.2119,193.15801 C 1935.0639,192.49521 1933.4765,192.08633 1931.7171,192.08633 1928.1986,192.08633 1925.3655,193.72196 1925.3655,195.75345 V 203.91164 H 1939.4959 C 1943.0146,203.91163 1945.8475,202.276 1945.8475,200.24451 1945.8475,199.22875 1945.1393,198.31225 1943.9914,197.64947 1942.8433,196.98667 1941.2556,196.57758 1939.4961,196.57758 H 1938.0685 V 195.75327 C 1938.0685,194.7375 1937.3599,193.82081 1936.2119,193.15801 Z" /> + </g> + <g + id="g77917" + transform="matrix(0.8290361,0,0,0.8290361,1580.4055,-1029.8027)" + style="stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77895" + width="49.608288" + height="28.616287" + x="-377.58615" + y="1774.5229" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + y="1769.9749" + x="-377.44922" + height="10.99284" + width="51.378963" + id="rect77897" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.386807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77899" + width="4.0359759" + height="22.193449" + x="-352.90894" + y="1784.7853" + transform="matrix(0.87101483,-0.49125672,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.388047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77901" + width="51.573917" + height="51.573917" + x="1719.9558" + y="2097.7068" + transform="matrix(0.8663092,0.49950813,-0.8663092,0.49950813,0,0)" /> + <rect + y="1769.3447" + x="-354.10547" + height="11.032285" + width="4.0612364" + id="rect77903" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.388016;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86559719,-0.50074095,0,1,0,0)" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + y="2151.6548" + x="377.58615" + height="28.616287" + width="49.608288" + id="rect77905" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77907" + width="51.378963" + height="10.99284" + x="377.72311" + y="2147.1067" /> + <rect + transform="matrix(-0.87101492,-0.49125657,0,1,0,0)" + y="2153.7698" + x="398.22769" + height="22.193438" + width="4.0359755" + id="rect77909" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.386807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86714785,-0.49805081,0,1,0,0)" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.387669;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77911" + width="4.0539742" + height="10.953394" + x="401.02496" + y="2146.4229" /> + <path + inkscape:connector-curvature="0" + id="path77913" + d="M -306.54749,1946.692 -351.26334,1920.9168 -347.75477,1918.8938 -303.03211,1944.673 Z" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -347.74796,1946.692 -303.03211,1920.9168 -306.54068,1918.8938 -351.26334,1944.673 Z" + id="path77915" + inkscape:connector-curvature="0" /> + </g> + <g + id="g81647" + transform="matrix(0.7513561,0,0,0.75118832,-7.9095531,-7.4595229)" + style="stroke-width:1.33108"> + <path + inkscape:connector-curvature="0" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:1.78926;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1671.4123,589.25081 1646.1054,602.62991 1663.2187,613.04544 1685.5244,613.5374 V 603.48768 Z" + id="path76845" + sodipodi:nodetypes="cccccc" /> + <g + id="g77935" + transform="matrix(0.18420025,0,0,0.18475163,1764.6551,255.237)" + style="stroke:#393d46;stroke-width:2.15944;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <g + id="g77933" + style="stroke:#393d46;stroke-width:2.15944;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:2.32036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77919" + width="126.21308" + height="126.17226" + x="-497.19119" + y="1563.3389" + transform="matrix(0.86611877,-0.49983825,0,1,0,0)" /> + <rect + style="fill:#f06060;fill-opacity:1;stroke:#393d46;stroke-width:2.32036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77921" + width="26.635878" + height="126.17226" + x="-447.40262" + y="1563.3389" + transform="matrix(0.86611877,-0.49983825,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:2.32073;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77923" + width="126.21308" + height="126.21308" + x="1437.6316" + y="1934.8229" + transform="matrix(0.86611877,0.49983825,-0.86611877,0.49983825,0,0)" /> + <rect + style="fill:#f06060;fill-opacity:1;stroke:#393d46;stroke-width:2.32073;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect77925" + width="26.635878" + height="126.21308" + x="1487.4203" + y="1934.8229" + transform="matrix(0.86611877,0.49983825,-0.86611877,0.49983825,0,0)" /> + <rect + y="2060.3691" + x="497.19119" + height="126.17226" + width="126.21308" + id="rect77927" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:2.32036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86611877,-0.49983825,0,1,0,0)" /> + <rect + y="2060.3691" + x="546.9798" + height="126.17226" + width="26.635878" + id="rect77929" + style="fill:#e05a5a;fill-opacity:1;stroke:#393d46;stroke-width:2.32036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86611877,-0.49983825,0,1,0,0)" /> + <rect + transform="matrix(-0.86611877,0.49983825,0.86611877,0.49983825,0,0)" + y="1437.6316" + x="1984.6115" + height="126.21308" + width="26.635878" + id="rect77931" + style="fill:#f06060;fill-opacity:1;stroke:#393d46;stroke-width:2.32073;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + </g> + </g> + <g + id="g77989" + transform="matrix(0.8290361,0,0,0.8290361,114.47127,508.52652)"> + <g + id="g77983" + transform="translate(182.38873,-175.95603)"> + <path + id="path77973" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1552.91,82.07311 1512.41,105.45592 V 112.46302 L 1552.91,89.0802 Z" + sodipodi:nodetypes="ccccc" /> + <g + id="g77981"> + <path + id="path77975" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1467.798,77.509111 1455.702,84.493111 1504.8781,112.64639 1512.41,112.46302 1463.3352,84.129151 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path77977" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1503.8352,53.73925 1463.3352,77.122063 1512.41,105.45592 1552.91,82.073112 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77979" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1463.3352,77.122063 1512.41,105.45592 V 112.46302 L 1463.3352,84.129151 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + d="M 1678.4929,-90.908116 1662.31,-100.25132 1665.5206,-102.10498 1681.2981,-102.39521 Q 1684.5899,-102.47951 1686.6168,-102.7884 1688.6599,-103.08797 1689.8112,-103.7527 1691.3841,-104.66081 1691.4814,-105.63443 1691.5949,-106.61745 1690.1193,-107.46938 1688.5302,-108.38685 1686.5033,-108.28385 1684.5088,-108.1809 1682.7251,-107.15108 L 1678.0227,-109.86604 Q 1680.1793,-111.11114 1682.9845,-111.55116 1685.806,-111.98181 1688.6923,-111.47626 1691.5949,-110.98011 1693.9785,-109.60391 1697.627,-107.49747 1697.8864,-105.32548 1698.1621,-103.14417 1694.9677,-101.29989 1693.2164,-100.28877 1690.4922,-99.764529 1687.7681,-99.240247 1683.1467,-99.118541 L 1672.1203,-98.950027 1682.2711,-93.089455 Z" + id="path79652" + style="font-weight:bold;font-size:35.6854px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#8cbeb2;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 1707.0157,-85.712247 Q 1702.1186,-82.88494 1697.4972,-82.557277 1692.8759,-82.229608 1688.968,-84.485835 1685.1087,-86.713972 1685.6114,-89.3634 1686.1141,-92.012828 1690.8165,-94.783956 L 1695.1623,-97.29297 Q 1700.1079,-100.14832 1704.7131,-100.44791 1709.3345,-100.73815 1713.1937,-98.510012 1717.053,-96.28187 1716.5502,-93.632415 1716.0638,-90.992368 1711.3613,-88.221223 Z M 1707.0967,-91.170268 Q 1710.0317,-92.864758 1710.5506,-94.100524 1711.102,-95.336334 1709.3993,-96.31934 1707.7454,-97.274257 1705.6698,-96.993364 1703.6266,-96.712509 1700.87,-95.177152 L 1695.1298,-91.863038 Q 1692.2435,-90.196611 1691.6111,-88.93275 1691.0111,-87.668889 1692.7462,-86.667164 1694.465,-85.674798 1696.573,-86.011832 1698.681,-86.348854 1701.4862,-87.931025 Z" + id="path79654" + style="font-weight:bold;font-size:35.6854px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#8cbeb2;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + </g> + <g + id="g78003" + transform="matrix(0.8290361,0,0,0.8290361,-254.02586,273.05159)"> + <path + id="path77991" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1887.4588,200.45773 1875.3628,207.44172 1903.0187,223.12199 1910.5505,222.93868 1882.996,207.07786 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g77999" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1390.5008,-66.555286)"> + <path + id="path77993" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path77995" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path77997" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path78001" + style="fill:#8cbeb2;fill-opacity:1;stroke:none;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1907.7747,193.42039 C 1908.9319,192.75233 1910.5319,192.34019 1912.3052,192.34019 1915.8516,192.34019 1918.7073,193.98882 1918.7073,196.03645 V 204.25943 H 1904.4646 C 1900.9181,204.25941 1898.0625,202.6108 1898.0625,200.56317 1898.0625,199.53934 1898.7764,198.61556 1899.9334,197.94752 1901.0906,197.27945 1902.6909,196.86711 1904.4643,196.86711 H 1905.9033 V 196.03625 C 1905.9033,195.01242 1906.6176,194.08846 1907.7747,193.42039 Z" /> + </g> + <g + id="g78017" + transform="matrix(0.8290361,0,0,0.8290361,-164.22721,251.6397)"> + <path + id="path78005" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1911.2838,200.2433 1899.1878,207.22729 1926.8437,222.90756 1934.3755,222.72425 1906.821,206.86343 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g78013" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1414.3258,-66.769716)"> + <path + id="path78007" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path78009" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path78011" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path78015" + style="fill:#f06060;fill-opacity:1;stroke-width:0.161858;stroke-linecap:round;stroke-linejoin:round" + d="M 1936.2119,193.15801 C 1935.0639,192.49521 1933.4765,192.08633 1931.7171,192.08633 1928.1986,192.08633 1925.3655,193.72196 1925.3655,195.75345 V 203.91164 H 1939.4959 C 1943.0146,203.91163 1945.8475,202.276 1945.8475,200.24451 1945.8475,199.22875 1945.1393,198.31225 1943.9914,197.64947 1942.8433,196.98667 1941.2556,196.57758 1939.4961,196.57758 H 1938.0685 V 195.75327 C 1938.0685,194.7375 1937.3599,193.82081 1936.2119,193.15801 Z" /> + </g> + <g + id="g78031" + transform="matrix(0.8290361,0,0,0.8290361,1.3132972,378.17802)"> + <path + id="path78019" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1887.4588,200.45773 1875.3628,207.44172 1903.0187,223.12199 1910.5505,222.93868 1882.996,207.07786 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g78027" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1390.5008,-66.555286)"> + <path + id="path78021" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path78023" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path78025" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path78029" + style="fill:#8cbeb2;fill-opacity:1;stroke:none;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1907.7747,193.42039 C 1908.9319,192.75233 1910.5319,192.34019 1912.3052,192.34019 1915.8516,192.34019 1918.7073,193.98882 1918.7073,196.03645 V 204.25943 H 1904.4646 C 1900.9181,204.25941 1898.0625,202.6108 1898.0625,200.56317 1898.0625,199.53934 1898.7764,198.61556 1899.9334,197.94752 1901.0906,197.27945 1902.6909,196.86711 1904.4643,196.86711 H 1905.9033 V 196.03625 C 1905.9033,195.01242 1906.6176,194.08846 1907.7747,193.42039 Z" /> + </g> + <g + id="g78101" + transform="matrix(0.46136402,0,0,0.46136402,1759.681,-420.29988)" + style="stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect78079" + width="49.608288" + height="28.616287" + x="-377.58615" + y="1774.5229" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + y="1769.9749" + x="-377.44922" + height="10.99284" + width="51.378963" + id="rect78081" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.695063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect78083" + width="4.0359759" + height="22.193449" + x="-352.90894" + y="1784.7853" + transform="matrix(0.87101483,-0.49125672,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.697291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect78085" + width="51.573917" + height="51.573917" + x="1719.9558" + y="2097.7068" + transform="matrix(0.8663092,0.49950813,-0.8663092,0.49950813,0,0)" /> + <rect + y="1769.3447" + x="-354.10547" + height="11.032285" + width="4.0612364" + id="rect78087" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.697235;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86559719,-0.50074095,0,1,0,0)" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + y="2151.6548" + x="377.58615" + height="28.616287" + width="49.608288" + id="rect78089" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect78091" + width="51.378963" + height="10.99284" + x="377.72311" + y="2147.1067" /> + <rect + transform="matrix(-0.87101492,-0.49125657,0,1,0,0)" + y="2153.7698" + x="398.22769" + height="22.193438" + width="4.0359755" + id="rect78093" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.695063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86714785,-0.49805081,0,1,0,0)" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.696612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect78095" + width="4.0539742" + height="10.953394" + x="401.02496" + y="2146.4229" /> + <path + inkscape:connector-curvature="0" + id="path78097" + d="M -306.54749,1946.692 -351.26334,1920.9168 -347.75477,1918.8938 -303.03211,1944.673 Z" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -347.74796,1946.692 -303.03211,1920.9168 -306.54068,1918.8938 -351.26334,1944.673 Z" + id="path78099" + inkscape:connector-curvature="0" /> + </g> + <g + id="g78189" + transform="matrix(0.8290361,0,0,0.8290361,-618.55308,272.75251)"> + <path + id="path78177" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1887.4588,200.45773 1875.3628,207.44172 1903.0187,223.12199 1910.5505,222.93868 1882.996,207.07786 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g78185" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1390.5008,-66.555286)"> + <path + id="path78179" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path78181" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path78183" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path78187" + style="fill:#f06060;fill-opacity:1;stroke:none;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1907.7747,193.42039 C 1908.9319,192.75233 1910.5319,192.34019 1912.3052,192.34019 1915.8516,192.34019 1918.7073,193.98882 1918.7073,196.03645 V 204.25943 H 1904.4646 C 1900.9181,204.25941 1898.0625,202.6108 1898.0625,200.56317 1898.0625,199.53934 1898.7764,198.61556 1899.9334,197.94752 1901.0906,197.27945 1902.6909,196.86711 1904.4643,196.86711 H 1905.9033 V 196.03625 C 1905.9033,195.01242 1906.6176,194.08846 1907.7747,193.42039 Z" /> + </g> + <g + id="g85363" + transform="translate(218.63973)"> + <path + id="path85349" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:5.51212;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 938.33789,401.6543 936.03906,402.98242 958.9668,415.98242 965.21094,415.83008 942.36719,402.67969 943.05859,401.6543 Z" /> + <path + id="path85351" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 950.73242,401.6543 965.21094,410.02148 979.68945,401.6543 Z" /> + <path + id="path85353" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 950.43359,401.6543 965.13477,410.15039 A 0.14981498,0.14981498 0 0 0 965.28516,410.15039 L 979.98633,401.6543 H 979.38867 L 965.21094,409.84766 951.0332,401.6543 Z" /> + <path + id="path85355" + style="color:#000000;fill:#c0b2a5;stroke-width:0.299603;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 942.50586,401.6543 V 402.70898 L 965.21094,415.83008 V 410.02148 L 950.73242,401.6543 Z" /> + <path + id="path85357" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 942.35547,401.6543 V 402.70898 A 0.14981647,0.14981647 0 0 0 942.43167,402.83789 L 965.1348,415.95898 A 0.14981647,0.14981647 0 0 0 965.35941,415.83008 V 410.02148 A 0.14981647,0.14981647 0 0 0 965.28521,409.89062 L 951.0332,401.6543 H 950.43555 L 965.06055,410.10742 V 415.57031 L 942.65625,402.62305 V 401.6543 Z" /> + <path + id="path85359" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 979.70117,401.6543 965.22266,410.02148 V 415.83008 L 987.92773,402.70898 V 401.6543 Z" /> + <path + id="path85361" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 979.40039,401.6543 965.14844,409.89062 A 0.14981498,0.14981498 0 0 0 965.07224,410.02148 V 415.83008 A 0.14981498,0.14981498 0 0 0 965.2988,415.95898 L 988.00192,402.83789 A 0.14981498,0.14981498 0 0 0 988.07612,402.70898 V 401.6543 H 987.77729 V 402.62305 L 965.373,415.57031 V 410.10742 L 979.998,401.6543 Z" /> + </g> + <g + id="g85379" + transform="translate(292.32396)"> + <path + id="path85365" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:5.51212;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 938.33789,401.6543 936.03906,402.98242 958.9668,415.98242 965.21094,415.83008 942.36719,402.67969 943.05859,401.6543 Z" /> + <path + id="path85367" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 950.73242,401.6543 965.21094,410.02148 979.68945,401.6543 Z" /> + <path + id="path85369" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 950.43359,401.6543 965.13477,410.15039 A 0.14981498,0.14981498 0 0 0 965.28516,410.15039 L 979.98633,401.6543 H 979.38867 L 965.21094,409.84766 951.0332,401.6543 Z" /> + <path + id="path85371" + style="color:#000000;fill:#c0b2a5;stroke-width:0.299603;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 942.50586,401.6543 V 402.70898 L 965.21094,415.83008 V 410.02148 L 950.73242,401.6543 Z" /> + <path + id="path85373" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 942.35547,401.6543 V 402.70898 A 0.14981647,0.14981647 0 0 0 942.43167,402.83789 L 965.1348,415.95898 A 0.14981647,0.14981647 0 0 0 965.35941,415.83008 V 410.02148 A 0.14981647,0.14981647 0 0 0 965.28521,409.89062 L 951.0332,401.6543 H 950.43555 L 965.06055,410.10742 V 415.57031 L 942.65625,402.62305 V 401.6543 Z" /> + <path + id="path85375" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 979.70117,401.6543 965.22266,410.02148 V 415.83008 L 987.92773,402.70898 V 401.6543 Z" /> + <path + id="path85377" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 979.40039,401.6543 965.14844,409.89062 A 0.14981498,0.14981498 0 0 0 965.07224,410.02148 V 415.83008 A 0.14981498,0.14981498 0 0 0 965.2988,415.95898 L 988.00192,402.83789 A 0.14981498,0.14981498 0 0 0 988.07612,402.70898 V 401.6543 H 987.77729 V 402.62305 L 965.373,415.57031 V 410.10742 L 979.998,401.6543 Z" /> + </g> + <g + id="g85395" + transform="translate(510.90626)"> + <path + id="path85381" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:5.51212;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 938.33789,401.6543 936.03906,402.98242 958.9668,415.98242 965.21094,415.83008 942.36719,402.67969 943.05859,401.6543 Z" /> + <path + id="path85383" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 950.73242,401.6543 965.21094,410.02148 979.68945,401.6543 Z" /> + <path + id="path85385" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 950.43359,401.6543 965.13477,410.15039 A 0.14981498,0.14981498 0 0 0 965.28516,410.15039 L 979.98633,401.6543 H 979.38867 L 965.21094,409.84766 951.0332,401.6543 Z" /> + <path + id="path85387" + style="color:#000000;fill:#c0b2a5;stroke-width:0.299603;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 942.50586,401.6543 V 402.70898 L 965.21094,415.83008 V 410.02148 L 950.73242,401.6543 Z" /> + <path + id="path85389" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 942.35547,401.6543 V 402.70898 A 0.14981647,0.14981647 0 0 0 942.43167,402.83789 L 965.1348,415.95898 A 0.14981647,0.14981647 0 0 0 965.35941,415.83008 V 410.02148 A 0.14981647,0.14981647 0 0 0 965.28521,409.89062 L 951.0332,401.6543 H 950.43555 L 965.06055,410.10742 V 415.57031 L 942.65625,402.62305 V 401.6543 Z" /> + <path + id="path85391" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 979.70117,401.6543 965.22266,410.02148 V 415.83008 L 987.92773,402.70898 V 401.6543 Z" /> + <path + id="path85393" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 979.40039,401.6543 965.14844,409.89062 A 0.14981498,0.14981498 0 0 0 965.07224,410.02148 V 415.83008 A 0.14981498,0.14981498 0 0 0 965.2988,415.95898 L 988.00192,402.83789 A 0.14981498,0.14981498 0 0 0 988.07612,402.70898 V 401.6543 H 987.77729 V 402.62305 L 965.373,415.57031 V 410.10742 L 979.998,401.6543 Z" /> + </g> + <g + id="g86305"> + <path + id="path85397" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:5.51212;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1019.0723,607.42578 1009.043,613.2168 1023.9258,621.6543 H 1030.5566 L 1015.3711,612.91406 Z" /> + <path + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1038.0759,593.98384 1015.3715,607.105 1038.0759,620.22616 1060.7802,607.105 Z" + id="path85438" /> + <path + id="path85946" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.19255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1038.0762,593.98438 1015.3711,607.10547 1034.1309,617.94727 1051.5234,612.45508 1060.7793,607.10547 1060.6152,607.01177 1034.1348,615.83794 1051.6094,601.80669 Z" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1038,593.85352 1015.2969,606.97461 A 0.14981498,0.14981498 0 0 0 1015.2969,607.23437 L 1038,620.35547 A 0.14981498,0.14981498 0 0 0 1038.1504,620.35547 L 1060.8555,607.23437 A 0.14981498,0.14981498 0 0 0 1060.8555,606.97461 L 1038.1504,593.85352 A 0.14981498,0.14981498 0 0 0 1038,593.85352 Z M 1038.076,594.15625 1060.4803,607.10547 1038.076,620.05273 1015.6717,607.10352 Z" + id="path85440" /> + <path + id="path85432" + style="color:#000000;fill:#c0b2a5;stroke-width:0.299603;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1015.3711,607.10547 V 612.91406 L 1030.4961,621.6543 H 1038.0762 V 620.22656 Z" /> + <path + id="path85434" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1015.2969,606.97461 A 0.14981647,0.14981647 0 0 0 1015.2229,607.10547 V 612.91406 A 0.14981647,0.14981647 0 0 0 1015.2969,613.04297 L 1030.1973,621.6543 H 1030.793 L 1015.5215,612.82812 V 607.36328 L 1037.9258,620.3125 V 621.6543 H 1038.2266 V 620.22656 A 0.14981647,0.14981647 0 0 0 1038.1506,620.0957 L 1015.4475,606.97461 A 0.14981647,0.14981647 0 0 0 1015.2971,606.97461 Z" /> + <path + id="path85426" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1060.793,607.10547 1038.0879,620.22656 V 621.6543 H 1045.668 L 1060.793,612.91406 Z" /> + <path + id="path85428" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1060.7949,606.95508 A 0.14981498,0.14981498 0 0 0 1060.7189,606.97458 L 1038.0138,620.09567 A 0.14981498,0.14981498 0 0 0 1037.9398,620.22653 V 621.65427 H 1038.2386 V 620.31247 L 1060.6429,607.36325 V 612.82809 L 1045.3714,621.65427 H 1045.9671 L 1060.8675,613.04294 A 0.14981498,0.14981498 0 0 0 1060.9435,612.91403 V 607.10544 A 0.14981498,0.14981498 0 0 0 1060.795,606.95505 Z" /> + <path + id="path85407" + style="fill:#393d46;fill-opacity:1;stroke-width:0.134186;stroke-linecap:round;stroke-linejoin:round" + d="M 1039.7376,601.5519 C 1038.7859,601.00242 1037.4699,600.66344 1036.0113,600.66344 1033.0943,600.66344 1030.7455,602.01944 1030.7455,603.70362 V 610.46705 H 1042.4602 C 1045.3773,610.46704 1047.7259,609.11105 1047.7259,607.42687 1047.7259,606.58477 1047.1387,605.82495 1046.1871,605.27549 1045.2353,604.726 1043.919,604.38685 1042.4603,604.38685 H 1041.2768 V 603.70347 C 1041.2768,602.86136 1040.6893,602.10139 1039.7376,601.5519 Z" /> + </g> + <g + id="g7204"> + <path + id="path6262" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:5.51212;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1383.7613,607.42578 1373.732,613.2168 1388.6148,621.6543 H 1395.2456 L 1380.0601,612.91406 Z" /> + <path + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1402.7649,593.98384 1380.0605,607.105 1402.7649,620.22616 1425.4692,607.105 Z" + id="path6264" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1402.689,593.85352 1379.9859,606.97461 A 0.14981498,0.14981498 0 0 0 1379.9859,607.23437 L 1402.689,620.35547 A 0.14981498,0.14981498 0 0 0 1402.8394,620.35547 L 1425.5445,607.23437 A 0.14981498,0.14981498 0 0 0 1425.5445,606.97461 L 1402.8394,593.85352 A 0.14981498,0.14981498 0 0 0 1402.689,593.85352 Z M 1402.765,594.15625 1425.1693,607.10547 1402.765,620.05273 1380.3607,607.10352 Z" + id="path6268" /> + <path + id="path6270" + style="color:#000000;fill:#c0b2a5;stroke-width:0.299603;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1380.0601,607.10547 V 612.91406 L 1395.1851,621.6543 H 1402.7652 V 620.22656 Z" /> + <path + id="path6272" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1379.9859,606.97461 A 0.14981647,0.14981647 0 0 0 1379.9119,607.10547 V 612.91406 A 0.14981647,0.14981647 0 0 0 1379.9859,613.04297 L 1394.8863,621.6543 H 1395.482 L 1380.2105,612.82812 V 607.36328 L 1402.6148,620.3125 V 621.6543 H 1402.9156 V 620.22656 A 0.14981647,0.14981647 0 0 0 1402.8396,620.0957 L 1380.1365,606.97461 A 0.14981647,0.14981647 0 0 0 1379.9861,606.97461 Z" /> + <path + id="path6274" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1425.482,607.10547 1402.7769,620.22656 V 621.6543 H 1410.357 L 1425.482,612.91406 Z" /> + <path + id="path6276" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1425.4839,606.95508 A 0.14981498,0.14981498 0 0 0 1425.4079,606.97458 L 1402.7028,620.09567 A 0.14981498,0.14981498 0 0 0 1402.6288,620.22653 V 621.65427 H 1402.9276 V 620.31247 L 1425.3319,607.36325 V 612.82809 L 1410.0604,621.65427 H 1410.6561 L 1425.5565,613.04294 A 0.14981498,0.14981498 0 0 0 1425.6325,612.91403 V 607.10544 A 0.14981498,0.14981498 0 0 0 1425.484,606.95505 Z" /> + <path + id="path6278" + style="fill:#f06060;fill-opacity:1;stroke-width:0.134186;stroke-linecap:round;stroke-linejoin:round" + d="M 1401.8187,601.60775 C 1402.7704,601.05827 1404.0864,600.71929 1405.545,600.71929 1408.462,600.71929 1410.8108,602.07529 1410.8108,603.75947 V 610.5229 H 1399.0961 C 1396.179,610.52289 1393.8304,609.1669 1393.8304,607.48272 1393.8304,606.64062 1394.4176,605.8808 1395.3692,605.33134 1396.321,604.78185 1397.6373,604.4427 1399.096,604.4427 H 1400.2795 V 603.75932 C 1400.2795,602.91721 1400.867,602.15724 1401.8187,601.60775 Z" /> + </g> + <g + id="g7329"> + <path + id="path7289" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:5.51212;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1529.7722,607.42578 1519.7429,613.2168 1534.6257,621.6543 H 1541.2565 L 1526.071,612.91406 Z" /> + <path + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1548.7758,593.98384 1526.0714,607.105 1548.7758,620.22616 1571.4801,607.105 Z" + id="path7291" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1548.6999,593.85352 1525.9968,606.97461 A 0.14981498,0.14981498 0 0 0 1525.9968,607.23437 L 1548.6999,620.35547 A 0.14981498,0.14981498 0 0 0 1548.8503,620.35547 L 1571.5554,607.23437 A 0.14981498,0.14981498 0 0 0 1571.5554,606.97461 L 1548.8503,593.85352 A 0.14981498,0.14981498 0 0 0 1548.6999,593.85352 Z M 1548.7759,594.15625 1571.1802,607.10547 1548.7759,620.05273 1526.3716,607.10352 Z" + id="path7293" /> + <path + id="path7295" + style="color:#000000;fill:#c0b2a5;stroke-width:0.299603;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1526.071,607.10547 V 612.91406 L 1541.196,621.6543 H 1548.7761 V 620.22656 Z" /> + <path + id="path7297" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1525.9968,606.97461 A 0.14981647,0.14981647 0 0 0 1525.9228,607.10547 V 612.91406 A 0.14981647,0.14981647 0 0 0 1525.9968,613.04297 L 1540.8972,621.6543 H 1541.4929 L 1526.2214,612.82812 V 607.36328 L 1548.6257,620.3125 V 621.6543 H 1548.9265 V 620.22656 A 0.14981647,0.14981647 0 0 0 1548.8505,620.0957 L 1526.1474,606.97461 A 0.14981647,0.14981647 0 0 0 1525.997,606.97461 Z" /> + <path + id="path7299" + style="color:#000000;fill:#ffeedc;stroke-width:0.2996;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1571.4929,607.10547 1548.7878,620.22656 V 621.6543 H 1556.3679 L 1571.4929,612.91406 Z" /> + <path + id="path7301" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1571.4948,606.95508 A 0.14981498,0.14981498 0 0 0 1571.4188,606.97458 L 1548.7137,620.09567 A 0.14981498,0.14981498 0 0 0 1548.6397,620.22653 V 621.65427 H 1548.9385 V 620.31247 L 1571.3428,607.36325 V 612.82809 L 1556.0713,621.65427 H 1556.667 L 1571.5674,613.04294 A 0.14981498,0.14981498 0 0 0 1571.6434,612.91403 V 607.10544 A 0.14981498,0.14981498 0 0 0 1571.4949,606.95505 Z" /> + <path + sodipodi:type="star" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.466183" + id="path77483" + inkscape:flatsided="false" + sodipodi:sides="5" + sodipodi:cx="160.2216" + sodipodi:cy="25.069553" + sodipodi:r1="19.20122" + sodipodi:r2="9.6006098" + sodipodi:arg1="1.5707963" + sodipodi:arg2="2.1991149" + inkscape:rounded="0" + inkscape:randomized="0" + d="M 160.2216,44.270773 154.57851,32.83661 141.96016,31.003057 151.09088,22.102801 148.93541,9.5354407 160.2216,15.468944 171.5078,9.5354401 169.35233,22.102802 178.48305,31.003056 165.8647,32.83661 Z" + inkscape:transform-center-y="-0.45290131" + transform="matrix(0.38607386,-0.22289998,-0.38607386,-0.22289998,1496.0745,647.99142)" + inkscape:transform-center-x="2.8953047e-05" /> + </g> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke-width:0.627;stroke-linecap:round;stroke-linejoin:round" + d="M 1058.0348,439.1226 1052.8461,471.43244 1058.04,468.4434 Z" + id="path8314" + sodipodi:nodetypes="cccc" /> + <g + id="g24505" + transform="matrix(1.1774737,0,0,1.1774737,1336.8776,368.15986)" + inkscape:label="Logo"> + <path + style="fill:#000000;stroke:#ffeedc;stroke-width:17.4117;stroke-opacity:1;paint-order:markers stroke fill" + d="M 52.141958,130.59785 51.824303,130.55305 51.53324,130.47215 51.242177,130.39115 50.972632,130.26101 50.703087,130.13087 50.456956,129.88994 50.210826,129.649 50.110127,129.4435 50.009428,129.238 49.913498,128.81802 49.817568,128.39804 49.732878,128.15408 49.648188,127.91012 49.539479,127.68261 49.43077,127.45509 49.265107,127.21067 49.099444,126.96625 48.870146,126.74216 48.640849,126.51807 48.419721,126.37224 48.198593,126.22642 47.974328,126.11552 47.750064,126.00462 47.465475,125.90552 47.180887,125.80642 46.808699,125.71412 46.436513,125.62182 45.715661,125.49095 44.994811,125.36009 44.658413,125.28289 44.322016,125.20569 44.065714,125.12219 43.809411,125.03869 43.601726,124.94689 43.39404,124.85509 43.132627,124.68344 42.871213,124.51179 42.702492,124.32974 42.53377,124.14768 42.44539,123.96342 42.35701,123.77917 42.33561,123.62566 42.31421,123.47214 42.35164,123.28825 42.38907,123.10435 42.498443,122.88304 42.607815,122.66173 42.81503,122.38937 43.022246,122.117 43.592029,121.5256 44.161813,120.93421 44.43783,120.61679 44.713847,120.29936 44.841127,120.08944 44.968407,119.87952 45.036207,119.7004 45.104007,119.52128 45.124837,119.3663 45.145667,119.21132 45.093147,119.009 45.040627,118.80667 44.942857,118.65632 44.845087,118.50597 44.647623,118.32544 44.450159,118.1449 44.182479,117.97263 43.914798,117.80035 43.493665,117.58901 43.072532,117.37767 42.596546,117.17997 42.12056,116.98226 41.523279,116.75949 40.925998,116.53672 38.010556,115.58027 35.095113,114.62382 34.390281,114.36261 33.685449,114.10142 33.172844,113.88243 32.660239,113.66344 32.291804,113.47293 31.923369,113.28243 31.651205,113.10395 31.37904,112.92547 31.182797,112.73181 30.986553,112.53815 30.931143,112.37351 30.875723,112.20887 30.897643,112.09219 30.919563,111.97551 31.003443,111.82282 31.087323,111.67014 31.281082,111.49298 31.474841,111.31584 31.731143,111.15123 31.987446,110.98662 32.342612,110.794 32.697778,110.60138 33.885889,110.05013 35.073999,109.49889 35.436973,109.30166 35.799948,109.10443 36.06779,108.92931 36.335632,108.75419 36.526861,108.56839 36.718089,108.38258 36.795339,108.21885 36.872589,108.05512 36.872909,107.93555 36.873229,107.81597 36.824179,107.70012 36.775129,107.58429 36.697509,107.48386 36.619889,107.38344 36.273997,107.23379 35.928105,107.08414 35.548719,106.94469 35.169334,106.80524 34.587584,106.63112 34.005835,106.45702 32.980625,106.20735 31.955414,105.9577 30.763867,105.68531 29.57232,105.41292 28.982315,105.25713 28.39231,105.10134 27.915195,104.95552 27.438081,104.8097 26.973532,104.63448 26.508984,104.45926 26.119383,104.27106 25.729782,104.08287 25.391992,103.86588 25.054203,103.64889 24.776463,103.38596 24.498723,103.12302 24.359375,102.93052 24.220027,102.73802 24.108033,102.5037 23.996039,102.26939 23.943959,102.07969 23.891879,101.88999 23.875339,101.49479 23.858799,101.09959 23.911739,100.79942 23.964679,100.49924 24.097621,100.10386 24.230564,99.70849 24.496396,99.18334 24.762228,98.658184 25.176872,98.045158 25.591516,97.432136 25.866654,97.08436 26.141793,96.736583 37.312523,85.455298 48.483254,74.174018 48.774065,73.943198 49.064876,73.712378 49.337925,73.536735 49.610975,73.361098 49.924328,73.202224 50.237681,73.04335 50.563795,72.917524 50.889909,72.791698 51.178182,72.709258 51.466455,72.626808 51.898966,72.544958 52.331477,72.463118 53.03919,72.447708 53.746901,72.432298 54.176532,72.485958 54.606163,72.539618 55.09273,72.661803 55.579298,72.783994 55.951805,72.927729 56.324316,73.071464 56.671164,73.246547 57.018009,73.421625 57.349901,73.639671 57.681794,73.857722 57.935722,74.057648 58.189651,74.257579 69.687993,85.854189 81.186337,97.450805 81.556624,97.836668 81.926905,98.222536 82.197965,98.554504 82.469025,98.886472 82.710251,99.24526 82.951476,99.604055 83.137577,99.967413 83.323689,100.33077 83.438387,100.68357 83.553095,101.03636 83.600585,101.35252 83.648075,101.66868 83.648392,101.84818 83.648714,102.02769 83.614364,102.27146 83.580014,102.51523 83.501124,102.78389 83.422234,103.05255 83.276515,103.33935 83.130801,103.62615 82.971373,103.85372 82.811951,104.0813 82.565554,104.34715 82.319162,104.61299 82.078881,104.82746 81.838594,105.04193 81.48618,105.30287 81.133765,105.56381 80.781345,105.78381 80.42893,106.0038 80.132474,106.16829 79.836013,106.33278 79.288727,106.6031 78.741442,106.87343 78.271633,107.07954 77.80183,107.28566 77.048941,107.58105 76.296052,107.87645 75.527144,108.15129 74.758235,108.42613 71.842794,109.38218 68.927352,110.33823 68.227203,110.59727 67.527065,110.85631 67.073845,111.04753 66.620626,111.23875 66.157429,111.46486 65.694232,111.69096 65.569899,111.81232 65.445571,111.93368 65.385041,112.06525 65.324501,112.19682 65.323974,112.3724 65.323446,112.54799 65.405706,112.7109 65.487976,112.87381 65.670025,113.05809 65.852073,113.24237 66.076335,113.40667 66.300602,113.57097 66.781169,113.85171 67.261737,114.13245 68.0787,114.5739 68.895663,115.01535 69.198746,115.20082 69.50183,115.38628 69.811947,115.61681 70.122064,115.84734 70.334221,116.07347 70.546373,116.2996 70.661588,116.52965 70.776798,116.7597 70.793158,116.96073 70.809518,117.16177 70.694767,117.50019 70.580016,117.8386 70.418795,118.15689 70.257584,118.47518 70.141224,118.65569 70.024869,118.83618 69.809356,119.08965 69.593854,119.34312 69.372922,119.52053 69.151985,119.69793 68.961457,119.81739 68.770923,119.93685 68.480889,120.07186 68.190849,120.20687 67.804442,120.33383 67.41803,120.46078 66.747193,120.62124 66.07635,120.7817 65.467635,120.92746 64.858914,121.07323 64.314272,121.24671 63.76963,121.42019 63.29494,121.62093 62.820253,121.82166 62.461954,122.01515 62.103659,122.20863 61.65513,122.50384 61.2066,122.79904 60.982492,122.97709 60.758381,123.15514 60.450844,123.42143 60.143309,123.68772 59.902061,123.93691 59.660817,124.18609 59.573067,124.33386 59.485317,124.48162 59.454967,124.61492 59.424617,124.74823 59.462857,124.88299 59.501087,125.01775 59.626198,125.15802 59.751305,125.29828 59.950331,125.42793 60.149356,125.55758 60.750213,125.85536 61.351069,126.15314 61.539628,126.2795 61.728184,126.40586 61.84005,126.53483 61.951917,126.6638 61.990997,126.80155 62.030077,126.9393 62.006857,127.04525 61.983637,127.1512 61.910337,127.29348 61.837037,127.43575 61.722447,127.56679 61.607857,127.69783 61.279082,127.9176 60.950303,128.13738 60.593319,128.3455 60.236331,128.55362 59.808392,128.77515 59.38045,128.99668 58.931921,129.19244 58.483391,129.3882 58.038629,129.55957 57.593864,129.73095 57.161299,129.87357 56.72873,130.01618 56.212415,130.15737 55.6961,130.29856 55.151457,130.40609 54.606813,130.51364 54.206341,130.56604 53.805868,130.61854 53.133073,130.63054 52.46028,130.64254 52.142624,130.59774 Z" + id="path24070" /> + <path + style="fill:#ffffff;stroke-width:0.0318262" + d="M 54.485501,89.169564 57.280292,87.425779 H 57.298062 57.315832 L 59.111218,88.361244 60.906602,89.296715 60.917012,89.286005 60.927412,89.275295 61.347012,86.775645 61.766611,84.276001 V 84.254051 84.232051 L 63.934793,85.94425 66.102981,87.656454 66.177131,87.564824 66.251281,87.473184 66.319011,87.28349 66.386741,87.093795 66.403101,86.682784 66.419461,86.271778 66.365341,85.988012 66.311221,85.704246 66.217811,85.466344 66.124391,85.228448 65.998422,85.042083 65.872448,84.855724 61.586011,80.558067 57.299571,76.260411 56.961594,75.93879 56.623621,75.61717 56.335748,75.423576 56.047872,75.229982 55.748136,75.08171 55.448396,74.933437 55.11743,74.824142 54.78646,74.714853 54.47205,74.645363 54.15764,74.575883 53.42077,74.575877 52.6839,74.575872 52.358788,74.645932 52.033676,74.715992 51.704717,74.82899 51.375758,74.941984 51.116751,75.070147 50.857744,75.198311 50.63348,75.34106 50.409215,75.483808 50.18495,75.665994 49.960685,75.848179 46.835915,78.941701 43.711144,82.035229 42.988733,82.778203 42.266321,83.521182 41.707649,84.108343 41.148978,84.695509 41.001442,84.867131 40.853906,85.038747 40.703539,85.260059 40.553171,85.481376 40.430671,85.7343 40.308171,85.98723 40.227711,86.240159 40.147251,86.493088 40.111031,86.793439 40.074811,87.093794 40.108561,87.33091 40.142311,87.56803 40.178141,87.678686 40.213971,87.789342 40.305061,87.969016 40.396151,88.148685 40.556751,88.307173 40.717353,88.465662 40.917801,88.558902 41.11825,88.652142 41.288026,88.687072 41.457801,88.722002 43.963184,88.720902 46.468567,88.719802 48.00316,86.095482 49.537754,83.471162 49.560084,83.457552 49.582414,83.443942 50.471654,86.975898 51.360893,90.507854 51.425813,90.769411 51.490733,91.030973 51.590738,90.971913 51.690742,90.912853 54.485537,89.169068 Z" + id="path24494" /> + <path + style="fill:#ffffff;stroke-width:0.0318262" + d="M 53.917336,112.5003 54.061506,112.4252 54.253733,112.29732 54.44596,112.16945 54.649541,111.97771 54.853119,111.78597 54.932619,111.6315 55.012119,111.47702 54.992729,111.375 54.973339,111.27299 54.917839,111.22339 54.862339,111.17389 54.779239,111.14269 54.696139,111.11149 54.042426,110.99603 53.388717,110.88058 51.690712,110.54877 49.992707,110.21696 48.695175,109.94893 47.397643,109.68091 46.164187,109.41123 44.93073,109.14156 44.189819,108.95619 43.448908,108.77082 43.196647,108.68682 42.944385,108.60282 42.755862,108.61592 42.56734,108.62902 42.52698,108.68352 42.48662,108.73802 42.50325,108.80082 42.51988,108.86362 42.67944,109.00136 42.839001,109.1391 43.170097,109.33373 43.501193,109.52836 44.08781,109.80855 44.674428,110.08873 45.403261,110.39143 46.132094,110.69414 46.828944,110.95209 47.525795,111.21004 48.178002,111.42769 48.830209,111.64534 49.283307,111.78411 49.736405,111.92289 50.329104,112.08188 50.921805,112.24087 51.434409,112.35227 51.947015,112.46368 52.363507,112.52648 52.779998,112.58928 53.276584,112.58228 53.773171,112.57528 Z" + id="path24492" /> + </g> + </g> + </g> + </g> +</svg> diff --git a/packaging/nsis/welcomefinish.bmp b/packaging/nsis/welcomefinish.bmp Binary files differnew file mode 100644 index 0000000..ba15d46 --- /dev/null +++ b/packaging/nsis/welcomefinish.bmp diff --git a/packaging/nsis/welcomefinish.svg b/packaging/nsis/welcomefinish.svg new file mode 100644 index 0000000..11a0252 --- /dev/null +++ b/packaging/nsis/welcomefinish.svg @@ -0,0 +1,3928 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="164" + height="314" + version="1.1" + inkscape:version="1.4-dev (6fe04ba, 2023-06-30, custom)" + sodipodi:docname="welcomefinish.svg" + inkscape:export-filename="welcomefinish.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + id="svg11484" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata + id="metadata11490"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs11488" /> + <sodipodi:namedview + inkscape:document-rotation="0" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1641" + inkscape:window-height="1002" + id="namedview11486" + showgrid="false" + borderlayer="true" + inkscape:snap-page="true" + inkscape:snap-bbox="false" + inkscape:bbox-nodes="true" + inkscape:current-layer="layer1" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + inkscape:zoom="2" + inkscape:cx="94.25" + inkscape:cy="124.75" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="0" /> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + style="fill:#ffffff;stroke-width:13.4079;stroke-linejoin:round" + id="rect20902" + width="164.42293" + height="313.12219" + x="-164.45248" + y="0.40213928" + transform="scale(-1,1)" + sodipodi:insensitive="true" /> + <g + id="g523" + style="display:inline" + transform="matrix(0.65962778,0,0,0.65962778,-574.4762,-4.8686956)" + inkscape:transform-center-x="-149.75129" + inkscape:transform-center-y="-158.43993"> + <rect + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.351227;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2" + width="1141.7297" + height="485.31293" + x="722.34253" + y="-1.2339408" /> + <path + id="path2" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1505.5166,50.532301 1493.4206,57.516301 1542.5967,85.66958 1550.1286,85.48621 1501.0538,57.152341 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path3" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1444.6072,86.208894 1432.5112,93.192894 1552.2208,162.0695 1559.7527,161.88613 1440.1444,92.828934 Z" + sodipodi:nodetypes="cccccc" /> + <path + inkscape:connector-curvature="0" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:1.62142;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1692.2624,269.79299 1661.7367,285.93113 1682.3791,298.49455 1709.2846,299.08796 V 286.96579 Z" + id="path4" + sodipodi:nodetypes="cccccc" /> + <path + id="path5" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 800.36216,113.8321 V 122.5531 L 820.11829,134.64235 800.36216,148.2841 V 212.2606 L 838.23416,245.19721 817.82441,261.26447 860.74204,287.51635 824.64529,289.3141 C 824.63199,289.31352 824.61909,289.3131 824.60589,289.3151 L 824.59789,289.3161 C 824.50909,289.3335 824.4285,289.4134 824.37064,289.54223 824.23775,289.83852 824.25848,290.30832 824.41674,290.59186 824.48564,290.71486 824.57216,290.78669 824.66199,290.7954 V 290.7964 H 824.66999 C 824.68499,290.7974 824.69909,290.79651 824.71389,290.7944 L 862.98864,288.89089 867.49876,291.6494 882.82801,292.57752 892.58288,287.00428 911.62801,303.72629 922.77676,304.65552 958.07926,293.50678 972.01576,304.65552 1008.5254,294.23353 1079.1158,254.01253 1028.781,225.78066 981.85613,228.66177 967.45501,218.90577 978.51825,212.68115 989.13601,190.65818 946.00239,157.40433 880.73777,145.32633 841.95114,123.02995 Z M 946.11829,283.7521 955.58966,291.18835 923.56429,301.86346 Z" /> + <path + id="path6" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 817.33527,38.128041 805.23927,45.112033 832.89515,60.792304 840.42701,60.608998 812.87247,44.748168 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path7" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 993.20967,38.420546 981.11367,45.404546 1008.7696,61.084795 1016.3014,60.901426 988.74687,45.040585 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path8" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 948.91645,12.821795 936.82045,19.805795 964.47633,35.486044 972.00818,35.302675 944.45364,19.441834 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path9" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 899.43978,-1.2340232 920.95428,10.964351 928.48615,10.780976 907.61403,-1.2340232 Z" /> + <path + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1293.8423,291.71045 H 1249.1553 L 1213.7034,271.24227 1253.4146,248.31499 Z" + id="path10" /> + <path + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1361.5466,48.757272 H 1336.678 L 1316.9488,37.366592 1339.0483,24.607409 Z" + id="path11" /> + <path + id="path12" + style="color:#000000;display:inline;fill:#393d46;fill-opacity:1;stroke-width:0.783277;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 565.50004,-1.234375 614.25345,26.911874 560.65784,57.855775 V 58.75739 L 615.03309,27.362681 673.97473,61.393283 615.04104,95.41593 560.65784,64.018568 V 64.928138 L 614.25345,95.872039 560.65784,126.81594 V 127.71755 L 615.03574,96.322848 673.97738,130.35345 615.03839,164.3814 560.65784,132.98403 V 133.89096 L 614.25345,164.83486 560.65784,195.77876 V 196.67507 L 615.03043,165.28302 673.97473,199.31361 615.03574,233.34157 560.65784,201.94686 V 202.85112 L 614.25081,233.79237 560.65784,264.73628 V 265.64584 L 615.03839,234.24848 673.97473,268.27377 615.03574,302.30439 560.65784,270.90967 V 271.81128 L 614.25345,302.7552 560.65784,333.69909 V 334.606 L 615.03839,303.20864 673.97209,337.23394 615.03574,371.2619 560.65784,339.86718 V 340.77145 L 614.25081,371.7127 560.65784,402.65661 V 403.56617 L 615.04104,372.16881 673.97738,406.19412 615.03574,440.22471 560.65784,408.83 V 409.73161 L 614.25345,440.67552 560.65784,471.61943 V 472.52633 L 615.03839,441.12897 673.98269,475.15958 652.5296,487.54615 H 654.0862 L 674.76232,475.61038 695.43578,487.54615 H 696.99769 L 675.54196,475.15958 734.4836,441.12897 793.42526,475.15958 771.9695,487.54615 H 773.53141 L 794.2049,475.61038 814.881,487.54615 H 816.44291 L 794.98717,475.15958 853.9261,441.12897 912.86517,475.15693 891.40675,487.54615 H 892.97139 L 913.64748,475.61038 934.32087,487.54615 H 935.88279 L 914.42709,475.15958 973.36876,441.12897 1032.3103,475.15958 1010.8546,487.54615 H 1012.4166 L 1033.0899,475.61038 1053.7661,487.54615 H 1055.3227 L 1033.8696,475.15958 1038.4493,472.51573 V 472.5266 L 1092.8219,441.13454 1147.1944,472.5266 V 472.51573 L 1151.7742,475.15958 1130.3211,487.54615 H 1131.8776 L 1152.5538,475.61038 1173.2273,487.54615 H 1174.7892 L 1153.3334,475.15958 1212.2751,441.12897 1271.2166,475.15958 1249.7609,487.54615 H 1251.3229 L 1271.9963,475.61038 1292.6725,487.54615 H 1294.2344 L 1272.7785,475.15958 1331.7176,441.12897 1390.6566,475.15693 1369.1982,487.54615 H 1370.7628 L 1391.4389,475.61038 1412.1124,487.54615 H 1413.6743 L 1392.2185,475.15958 1451.1603,441.12897 1510.1019,475.15958 1488.646,487.54615 H 1490.2079 L 1510.8815,475.61038 1531.5576,487.54615 H 1533.1143 L 1511.661,475.15958 1516.2407,472.51573 V 472.5266 L 1570.6133,441.13454 1624.986,472.5266 V 472.51573 L 1629.5656,475.15958 1608.1126,487.54615 H 1609.6691 L 1630.3453,475.61038 1651.0187,487.54615 H 1652.5806 L 1631.1249,475.15958 1690.0666,441.12897 1749.0082,475.15958 1727.5524,487.54615 H 1729.1143 L 1749.7877,475.61038 1770.4639,487.54615 H 1772.0258 L 1750.5701,475.15958 1809.509,441.12897 1864.0725,472.62977 V 471.7308 L 1810.2887,440.67817 1864.0725,409.62819 V 408.72658 L 1809.509,440.22736 1750.5673,406.19941 1809.509,372.16881 1864.0725,403.67224 V 402.77063 L 1810.2887,371.71801 1864.0725,340.66804 V 339.76643 L 1809.509,371.2672 1750.5673,337.23926 1809.509,303.20864 1864.0725,334.71209 V 333.80516 L 1810.2941,302.7552 1864.0725,271.70522 V 270.7983 L 1809.509,302.30173 1750.5727,268.27377 1809.509,234.24583 1864.0725,265.74926 V 264.8397 L 1810.2966,233.79237 1864.0725,202.74505 V 201.83548 L 1809.509,233.33891 1750.5754,199.31361 1809.509,165.28831 1864.0725,196.79176 V 195.88483 L 1810.2941,164.83486 1864.0725,133.78489 V 132.87797 L 1809.509,164.3814 1750.5727,130.35345 1809.509,96.325499 1864.0725,127.82893 V 126.91937 L 1810.2966,95.872039 1864.0725,64.822066 V 63.915148 L 1809.509,95.418582 1750.5673,61.38798 1809.509,27.357377 1864.0725,58.86081 V 57.961848 L 1810.2887,26.909222 1859.0342,-1.234375 H 1857.475 L 1809.509,26.458415 1761.5432,-1.234375 H 1759.984 L 1808.7294,26.909222 1749.7905,60.937174 1690.8489,26.909222 1739.5915,-1.234375 H 1738.0297 L 1690.0666,26.458415 1642.1033,-1.234375 H 1640.5308 L 1689.2789,26.911874 1630.3426,60.939825 1571.401,26.909222 1620.1463,-1.234375 H 1618.5712 L 1570.6133,26.453112 1522.6555,-1.234375 H 1521.0831 L 1569.8258,26.909222 1510.8841,60.939825 1451.9477,26.911874 1500.6958,-1.234375 H 1499.1233 L 1451.1603,26.458415 1403.197,-1.234375 H 1401.6351 L 1450.378,26.909222 1391.4363,60.937174 1332.4972,26.909222 1381.2428,-1.234375 H 1379.6835 L 1331.7176,26.458415 1283.7519,-1.234375 H 1282.1925 L 1330.938,26.909222 1271.9989,60.937174 1213.0574,26.909222 1261.8002,-1.234375 H 1260.2382 L 1212.2751,26.458415 1164.3119,-1.234375 H 1162.7394 L 1211.4875,26.911874 1152.5512,60.939825 1093.6095,26.909222 1142.3549,-1.234375 H 1140.7797 L 1092.8219,26.453112 1044.864,-1.234375 H 1043.2915 L 1092.0344,26.909222 1033.0927,60.939825 974.15632,26.911874 1022.9045,-1.234375 H 1021.3319 L 973.36876,26.458415 925.4055,-1.234375 H 923.84358 L 972.58644,26.909222 913.64477,60.937174 854.70585,26.909222 903.45125,-1.234375 H 901.89204 L 853.9261,26.458415 805.96034,-1.234375 H 804.40107 L 853.14651,26.909222 794.20754,60.937174 735.26589,26.909222 784.0087,-1.234375 H 782.44679 L 734.4836,26.458415 686.52043,-1.234375 H 684.9479 L 733.69602,26.911874 674.75968,60.939825 615.81802,26.909222 664.56349,-1.234375 H 663.00422 L 615.03839,26.458415 567.07255,-1.234375 Z M 853.9261,27.357377 912.86788,61.38798 853.9261,95.418582 794.98451,61.38798 Z M 1331.7176,27.357377 1390.6593,61.38798 1331.7176,95.418582 1272.776,61.38798 Z M 734.4783,27.362672 793.41994,61.393275 734.4836,95.421225 675.54196,61.390622 Z M 973.37399,27.362672 1032.3103,61.390622 973.36876,95.421225 914.43238,61.393275 Z M 1212.2697,27.362672 1271.2114,61.393275 1212.2751,95.421225 1153.3334,61.390622 Z M 1451.1655,27.362672 1510.1019,61.390622 1451.1603,95.421225 1392.2237,61.393275 Z M 1690.0612,27.362672 1749.0029,61.393275 1690.0666,95.421225 1631.1249,61.390622 Z M 1092.8219,27.365387 1147.1944,58.757446 V 58.754729 L 1151.7661,61.393275 1147.1944,64.031821 V 64.018515 L 1092.8219,95.410572 1038.4493,64.018515 V 64.031821 L 1033.8776,61.393275 1038.4493,58.754729 V 58.757446 Z M 1570.6133,27.365387 1624.986,58.757446 V 58.754729 L 1629.5576,61.393275 1624.986,64.031821 V 64.018515 L 1570.6133,95.410572 1516.2407,64.018515 V 64.031821 L 1511.6691,61.393275 1516.2407,58.754729 V 58.757446 Z M 794.19958,61.841493 853.13862,95.872095 794.20223,129.90004 735.26057,95.869443 Z M 913.65278,61.841493 972.59167,95.869443 913.65006,129.90004 854.71372,95.872095 Z M 1271.9911,61.841493 1330.9301,95.872095 1271.9937,129.90004 1213.052,95.869443 Z M 1391.4441,61.841493 1450.3832,95.869443 1391.4416,129.90004 1332.5053,95.872095 Z M 1749.7825,61.841493 1808.7216,95.872095 1749.7853,129.90004 1690.8436,95.869443 Z M 674.75437,61.844208 733.69602,95.87481 674.76497,129.89746 615.82332,95.869507 Z M 1033.0953,61.844208 1092.029,95.869507 1033.0874,129.89746 974.15358,95.872159 Z M 1152.5458,61.844208 1211.4875,95.87481 1152.5565,129.89746 1093.6148,95.869507 Z M 1510.8868,61.844208 1569.8204,95.869507 1510.8787,129.89746 1451.9451,95.872159 Z M 1630.3373,61.844208 1689.2789,95.87481 1630.3479,129.89746 1571.4062,95.869507 Z M 734.47565,96.322848 793.4173,130.35345 734.4836,164.37874 675.54196,130.34815 Z M 973.37673,96.322848 1032.3103,130.34815 973.36876,164.37874 914.43496,130.35345 Z M 1212.2671,96.322848 1271.2088,130.35345 1212.2751,164.37874 1153.3334,130.34815 Z M 1451.1681,96.322848 1510.1019,130.34815 1451.1603,164.37874 1392.2265,130.35345 Z M 1690.0585,96.322848 1749.0002,130.35345 1690.0666,164.37874 1631.1249,130.34815 Z M 853.9261,96.325563 912.86245,130.35351 853.9261,164.38147 794.98982,130.35351 Z M 1092.8219,96.325563 1147.1944,127.71763 V 127.71232 L 1151.7688,130.35352 1147.1944,132.99471 V 132.98413 L 1092.8219,164.3762 1038.4493,132.98413 V 132.99471 L 1033.875,130.35352 1038.4493,127.71232 V 127.71763 Z M 1331.7176,96.325563 1390.654,130.35351 1331.7176,164.38147 1272.7813,130.35351 Z M 1570.6133,96.325563 1624.986,127.71763 V 127.71232 L 1629.5602,130.35352 1624.986,132.99471 V 132.98413 L 1570.6133,164.3762 1516.2407,132.98413 V 132.99471 L 1511.6664,130.35352 1516.2407,127.71232 V 127.71763 Z M 674.75437,130.80166 733.69602,164.83227 674.75968,198.86021 615.81536,164.82962 Z M 1033.098,130.80166 1038.4493,133.89102 1092.0368,164.82962 1033.0927,198.86021 974.15632,164.83227 Z M 1152.5458,130.80166 1211.4875,164.83227 1152.5512,198.86021 1093.6068,164.82962 1135.3701,140.71677 1147.1944,133.89102 Z M 1510.8894,130.80166 1516.2407,133.89102 1569.8284,164.82962 1510.8841,198.86021 1451.9477,164.83227 Z M 1630.3373,130.80166 1689.2789,164.83227 1630.3426,198.86021 1571.3983,164.82962 1613.1616,140.71677 1624.986,133.89102 Z M 794.20223,130.80696 853.1412,164.83491 794.20754,198.8602 735.27119,164.83225 Z M 913.64748,130.80696 972.58109,164.83225 913.64477,198.8602 854.71114,164.83491 Z M 1271.9937,130.80696 1330.9327,164.83491 1271.9989,198.8602 1213.0626,164.83225 Z M 1391.4389,130.80696 1450.3726,164.83225 1391.4363,198.8602 1332.5026,164.83491 Z M 1749.7853,130.80696 1808.7241,164.83491 1749.7905,198.8602 1690.8541,164.83225 Z M 1092.8219,165.28308 1147.1944,196.67512 1151.7661,199.31367 1147.1944,201.95222 V 201.94679 L 1092.8219,233.33886 1038.4493,201.94679 V 201.95222 L 1033.8776,199.31367 1038.4493,196.67512 Z M 1570.6133,165.28308 1624.986,196.67512 1629.5576,199.31367 1624.986,201.95222 V 201.94679 L 1570.6133,233.33886 1516.2407,201.94679 V 201.95222 L 1511.6691,199.31367 1516.2407,196.67512 Z M 734.4836,165.28579 793.41994,199.31374 734.4836,233.34169 675.54725,199.31374 Z M 973.36876,165.28579 1032.3051,199.31374 973.36876,233.34169 914.43238,199.31374 Z M 1212.2751,165.28579 1271.2114,199.31374 1212.2751,233.34169 1153.3387,199.31374 Z M 1451.1603,165.28579 1510.0966,199.31374 1451.1603,233.34169 1392.2237,199.31374 Z M 1690.0666,165.28579 1749.0029,199.31374 1690.0666,233.34169 1631.1302,199.31374 Z M 853.9261,165.2885 912.85986,199.3138 853.9261,233.33911 794.99246,199.3138 Z M 1331.7176,165.2885 1390.6512,199.3138 1331.7176,233.33911 1272.7839,199.3138 Z M 674.75968,199.76726 733.69602,233.79521 674.75702,267.82316 615.82332,233.79787 Z M 794.2049,199.76726 853.13862,233.79256 794.20223,267.82052 735.26853,233.79521 Z M 913.64748,199.76726 972.58382,233.79521 913.65006,267.82052 854.71372,233.79256 Z M 1033.0927,199.76726 1092.029,233.79787 1033.0953,267.82316 974.15632,233.79521 Z M 1152.5512,199.76726 1211.4875,233.79521 1152.5484,267.82316 1093.6148,233.79787 Z M 1271.9963,199.76726 1330.9301,233.79256 1271.9937,267.82052 1213.06,233.79521 Z M 1391.4389,199.76726 1450.3752,233.79521 1391.4416,267.82052 1332.5053,233.79256 Z M 1510.8841,199.76726 1569.8204,233.79787 1510.8868,267.82316 1451.9477,233.79521 Z M 1630.3426,199.76726 1689.2789,233.79521 1630.34,267.82316 1571.4062,233.79787 Z M 1749.7877,199.76726 1808.7216,233.79256 1749.7853,267.82052 1690.8514,233.79521 Z M 853.9261,234.24602 912.86245,268.27396 853.9261,302.30192 794.98982,268.27396 Z M 1331.7176,234.24602 1390.654,268.27396 1331.7176,302.30192 1272.7813,268.27396 Z M 734.4836,234.24873 793.4173,268.27402 734.47565,302.30196 675.54196,268.27667 Z M 973.36876,234.24873 1032.3078,268.27667 973.37673,302.30196 914.43496,268.27402 Z M 1212.2751,234.24873 1271.2088,268.27402 1212.2671,302.30196 1153.3334,268.27667 Z M 1451.1603,234.24873 1510.0991,268.27667 1451.1681,302.30196 1392.2265,268.27402 Z M 1690.0666,234.24873 1749.0002,268.27402 1690.0585,302.30196 1631.1249,268.27667 Z M 1092.8219,234.25415 1147.1944,265.64622 V 265.63536 L 1151.7661,268.27389 1147.1944,270.91244 V 270.90973 L 1092.8219,302.30177 1038.4493,270.90973 V 270.91244 L 1033.8776,268.27389 1038.4493,265.63536 V 265.64622 Z M 1570.6133,234.25415 1624.986,265.64622 V 265.63536 L 1629.5576,268.27389 1624.986,270.91244 V 270.90973 L 1570.6133,302.30177 1516.2407,270.90973 V 270.91244 L 1511.6691,268.27389 1516.2407,265.63536 V 265.64622 Z M 674.76232,268.72762 733.69337,302.75292 674.75437,336.78352 615.82068,302.75822 Z M 794.2049,268.72762 853.1412,302.75558 794.19958,336.78617 735.26324,302.75822 Z M 913.64748,268.72762 972.58917,302.75822 913.65278,336.78617 854.71114,302.75558 Z M 1033.0899,268.72762 1092.0316,302.75822 1033.098,336.78352 974.15893,302.75292 Z M 1152.5538,268.72762 1211.4848,302.75292 1152.5458,336.78352 1093.6121,302.75822 Z M 1271.9963,268.72762 1330.9327,302.75558 1271.9911,336.78617 1213.0548,302.75822 Z M 1391.4389,268.72762 1450.3805,302.75822 1391.4441,336.78617 1332.5026,302.75558 Z M 1510.8815,268.72762 1569.8231,302.75822 1510.8894,336.78352 1451.9505,302.75292 Z M 1630.3453,268.72762 1689.2763,302.75292 1630.3373,336.78352 1571.4035,302.75822 Z M 1749.7877,268.72762 1808.7241,302.75558 1749.7825,336.78617 1690.8462,302.75822 Z M 734.4836,303.20902 793.41994,337.23698 734.4783,371.26492 675.54196,337.23698 Z M 853.9261,303.20902 912.86788,337.23964 853.9261,371.26758 794.98451,337.23964 Z M 973.36876,303.20902 1032.3103,337.23698 973.37399,371.26492 914.43238,337.23698 Z M 1212.2751,303.20902 1271.2114,337.23698 1212.2697,371.26492 1153.3334,337.23698 Z M 1331.7176,303.20902 1390.6593,337.23964 1331.7176,371.26758 1272.776,337.23964 Z M 1451.1603,303.20902 1510.1019,337.23698 1451.1655,371.26492 1392.2237,337.23698 Z M 1690.0666,303.20902 1749.0029,337.23698 1690.0612,371.26492 1631.1249,337.23698 Z M 1092.8219,303.21396 1147.1944,334.606 V 334.59514 L 1151.7636,337.23368 1147.1944,339.87223 V 339.86681 L 1092.8219,371.25887 1038.4493,339.86681 V 339.87249 L 1033.8803,337.23394 1038.4493,334.59541 V 334.60626 Z M 1570.6133,303.21396 1624.986,334.606 V 334.59514 L 1629.555,337.23368 1624.986,339.87223 V 339.86681 L 1570.6133,371.25887 1516.2407,339.86681 V 339.87249 L 1511.6717,337.23394 1516.2407,334.59541 V 334.60626 Z M 674.75968,337.6874 733.69602,371.71534 674.75968,405.7433 615.82332,371.71801 Z M 1033.0927,337.6874 1092.029,371.71534 1033.0927,405.7433 974.15632,371.71534 Z M 1152.5512,337.6874 1211.4875,371.71534 1152.5512,405.7433 1093.6148,371.71801 Z M 1510.8841,337.6874 1569.8204,371.71534 1510.8841,405.7433 1451.9477,371.71534 Z M 1630.3426,337.6874 1689.2789,371.71534 1630.3426,405.7433 1571.4062,371.71801 Z M 794.2049,337.69011 853.14651,371.71807 794.2049,405.74866 735.26324,371.71807 Z M 913.64748,337.69011 972.58917,371.71807 913.64748,405.74866 854.70585,371.71807 Z M 1271.9963,337.69011 1330.938,371.71807 1271.9963,405.74866 1213.0548,371.71807 Z M 1391.4389,337.69011 1450.3805,371.71807 1391.4389,405.74866 1332.4972,371.71807 Z M 1749.7877,337.69011 1808.7294,371.71807 1749.7877,405.74866 1690.8462,371.71807 Z M 734.4836,372.16887 793.42526,406.19947 734.48625,440.22742 675.54461,406.19682 Z M 853.9261,372.16887 912.86788,406.19947 853.9261,440.22742 794.98451,406.19947 Z M 973.36876,372.16887 1032.3078,406.19682 973.36603,440.22742 914.42709,406.19947 Z M 1212.2751,372.16887 1271.2166,406.19947 1212.2777,440.22742 1153.3361,406.19682 Z M 1331.7176,372.16887 1390.6593,406.19947 1331.7176,440.22742 1272.776,406.19947 Z M 1451.1603,372.16887 1510.0991,406.19682 1451.1576,440.22742 1392.2185,406.19947 Z M 1690.0666,372.16887 1749.0082,406.19947 1690.0691,440.22742 1631.1275,406.19682 Z M 1092.8219,372.1743 1147.1944,403.56635 V 403.55277 L 1151.7688,406.19398 1147.1944,408.83517 V 408.82974 L 1092.8219,440.22181 1038.4493,408.82974 V 408.83517 L 1033.875,406.19398 1038.4493,403.55277 V 403.56635 Z M 1570.6133,372.1743 1624.986,403.56635 V 403.55277 L 1629.5602,406.19398 1624.986,408.83517 V 408.82974 L 1570.6133,440.22181 1516.2407,408.82974 V 408.83517 L 1511.6664,406.19398 1516.2407,403.55277 V 403.56635 Z M 674.76232,406.64775 733.70398,440.67835 674.76232,474.70895 615.82068,440.67835 Z M 1033.0899,406.64775 1092.0316,440.67835 1033.0899,474.70895 974.14835,440.67835 Z M 1152.5538,406.64775 1211.4955,440.67835 1152.5538,474.70895 1093.6121,440.67835 Z M 1510.8815,406.64775 1569.8231,440.67835 1510.8815,474.70895 1451.9399,440.67835 Z M 1630.3453,406.64775 1689.2869,440.67835 1630.3453,474.70895 1571.4035,440.67835 Z M 794.2049,406.65046 853.14651,440.67842 794.20754,474.70902 735.26589,440.67842 Z M 913.64748,406.65046 972.58644,440.67842 913.64477,474.70636 854.70585,440.67842 Z M 1271.9963,406.65046 1330.938,440.67842 1271.9989,474.70902 1213.0574,440.67842 Z M 1391.4389,406.65046 1450.378,440.67842 1391.4363,474.70636 1332.4972,440.67842 Z M 1749.7877,406.65046 1808.7294,440.67842 1749.7905,474.70902 1690.8489,440.67842 Z M 1864.0725,477.68434 1846.9896,487.5464 H 1848.5543 L 1864.0725,478.58861 Z" /> + <path + inkscape:connector-curvature="0" + id="path13" + d="M 983.80531,224.36466 916.80778,185.68363 903.66159,162.91379 985.86929,210.37643 Z" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.360787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1108.9918,215.24766 1103.8004,212.25041 1102.0313,213.27167 1107.2228,216.26901 Z" + id="path14" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <g + id="g31" + transform="matrix(0.35200969,0,0,0.35200969,1192.7655,-324.99074)" + style="display:inline;fill:#9d968e;fill-opacity:1"> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1092.7207,6115.248 -1104.9551,6122.2031 -1105.082,6122.2751 -1117.1875,6129.1579 C -1117.1775,6129.1719 -1117.1715,6129.1839 -1117.1645,6129.1969 L -1227.9281,6192.6558 -1227.6254,6220.9293 -1094.5551,6144.1285 C -1084.0617,6140.3214 -1086.0136,6129.508 -1092.7211,6115.2476 Z" + transform="scale(0.26458333)" + id="path15" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1435.9785,5583.666 C -1437.3169,5583.625 -1438.6075,5583.9352 -1439.8496,5584.6191 L -1439.8596,5584.6091 -1440.0432,5584.7145 C -1440.0532,5584.7245 -1440.0612,5584.7245 -1440.0702,5584.7305 L -1575.3514,5662.4316 -1560.2948,5683.2402 -1424.8631,5602.6426 -1429.1209,5597.5215 -1421.6463,5593.2305 C -1424.7871,5589.7556 -1427.8149,5587.0016 -1430.6873,5585.3613 -1432.5183,5584.3155 -1434.2855,5583.7193 -1435.9803,5583.666 Z" + transform="scale(0.26458333)" + id="path16" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1334.6758,5562.0703 C -1335.6389,5562.0603 -1336.5998,5562.0603 -1337.5566,5562.0703 -1359.8866,5562.3184 -1379.6833,5568.1243 -1396.418,5578.7597 L -1396.428,5578.7497 -1530.7483,5655.859 -1460.3519,5701.8141 -1456.0198,5699.4684 C -1456.4193,5705.4449 -1456.6292,5711.5767 -1456.6292,5717.8649 -1456.629,5857.0125 -1359.0664,6026.1414 -1238.7171,6095.6247 -1227.6565,6101.947 -1216.6161,6107.284 -1205.6917,6111.5895 L -1209.6019,6181.693 -1087.9261,6112.5172 C -1087.1079,6112.0667 -1086.296,6111.6051 -1085.4905,6111.1325 L -1081.1546,6108.2536 C -1042.5103,6083.7967 -1020.9029,6034.1112 -1020.8069,5969.486 -1020.8066,5830.3391 -1118.3682,5661.2105 -1238.7171,5591.7262 -1271.9996,5572.5109 -1304.8243,5562.373 -1334.68,5562.068 Z" + transform="scale(0.26458333)" + id="path17" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1378.5293,5542.5684 C -1379.9222,5542.5684 -1381.3691,5542.7687 -1382.873,5543.2344 -1383.7991,5543.5213 -1384.622,5543.8704 -1385.3613,5544.2715 H -1385.3713 L -1385.5198,5544.3575 C -1385.5648,5544.3825 -1385.6088,5544.4085 -1385.6526,5544.4335 L -1517.9924,5620.8417 -1492.4143,5641.4433 -1357.3147,5563.8476 C -1361.6948,5554.8644 -1366.3959,5547.6828 -1371.9788,5544.4472 -1374.0352,5543.26 -1376.21,5542.5975 -1378.5315,5542.5722 Z" + transform="scale(0.26458333)" + id="path18" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1305.1074,5543.0977 C -1306.2644,5543.1197 -1307.2659,5543.3132 -1308.1348,5543.6523 L -1308.1448,5543.6423 -1308.1978,5543.6713 C -1308.7714,5543.9015 -1309.2847,5544.198 -1309.7408,5544.558 L -1444.9048,5622.1869 -1413.4205,5650.6654 -1281.4498,5571.976 C -1280.4017,5572.3391 -1279.3545,5572.703 -1278.3033,5573.0853 -1278.4915,5572.1964 -1278.6946,5571.3237 -1278.9029,5570.4584 H -1278.8929 L -1278.9029,5570.4484 C -1281.4316,5559.9506 -1285.5272,5551.2814 -1293.4381,5546.5597 -1295.385,5545.3945 -1297.5627,5544.4808 -1300.0045,5543.8273 -1301.9607,5543.3038 -1303.6536,5543.0692 -1305.108,5543.0968 Z" + transform="scale(0.26458333)" + id="path19" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1218.8809,5585.2227 C -1223.6933,5585.2997 -1225.9979,5589.9429 -1227.1465,5596.791 L -1227.1645,5596.777 -1357.2035,5663.7224 -1327.641,5701.7263 -1195.0805,5622.0017 C -1194.4825,5622.4875 -1193.8817,5622.9663 -1193.2856,5623.4567 -1193.1866,5622.5614 -1193.1152,5621.6713 -1193.059,5620.7849 H -1193.049 L -1193.059,5620.7749 C -1192.3543,5609.625 -1195.2887,5599.1999 -1207.8031,5590.0698 -1209.0562,5589.1544 -1210.2312,5588.3803 -1211.3344,5587.7378 -1214.3632,5585.9705 -1216.845,5585.1904 -1218.8813,5585.2222 Z" + transform="scale(0.26458333)" + id="path20" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1135.4414,5664.1113 C -1137.9198,5664.0683 -1140.096,5665.1561 -1142.084,5666.9805 L -1142.094,5666.9685 -1273.8557,5742.3474 -1250.301,5785.0485 -1116.133,5706.1462 C -1115.8176,5706.5769 -1115.498,5707.0034 -1115.1838,5707.4352 -1114.5568,5706.5104 -1113.9944,5705.5631 -1113.4924,5704.5954 L -1113.4764,5704.5854 -1113.4864,5704.5754 C -1109.5625,5696.9975 -1109.8449,5687.9502 -1120.3126,5674.9192 -1124.1438,5670.1498 -1127.4856,5667.1594 -1130.4454,5665.5618 -1132.2437,5664.5912 -1133.9021,5664.1351 -1135.4454,5664.1086 Z" + transform="scale(0.26458333)" + id="path21" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -344.70543,1645.8209 -334.753,1640.0748 -348.23556,1639.7661 Z" + id="path22" + inkscape:connector-curvature="0" /> + <path + style="fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -368.12622,1634.9368 -364.41393,1632.7936 -367.43073,1630.9047 Z" + id="path23" + inkscape:connector-curvature="0" /> + <path + style="fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -424.84521,1519.13 -416.75994,1514.462 -419.21332,1523.6181 Z" + id="path24" + inkscape:connector-curvature="0" /> + <ellipse + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse24" + cx="-419.72574" + cy="1776.5353" + rx="66.575096" + ry="66.661377" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" /> + <ellipse + cy="1776.5353" + cx="-419.72574" + id="ellipse25" + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="28.036783" + ry="28.073118" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1408.8262,5803.0859 A 129.86525,74.977594 60.06427 0 0 -1415.9531,5839.918 129.86525,74.977594 60.06427 0 0 -1324.1836,5999.0039 129.86525,74.977594 60.06427 0 0 -1289.1895,6011.0957 129.86525,74.977594 60.06427 0 0 -1282.0625,5974.2637 129.86525,74.977594 60.06427 0 0 -1373.832,5815.1777 129.86525,74.977594 60.06427 0 0 -1408.8262,5803.0859 Z" + transform="scale(0.26458333)" + id="path25" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1366.3965,5874.7891 C -1368.9207,5874.8251 -1371.2246,5875.4409 -1373.2227,5876.6133 L -1373.2367,5876.5923 -1393.1254,5888.02 -1354.7772,5953.7172 -1335.893,5942.811 C -1335.5242,5942.6216 -1335.1653,5942.4145 -1334.8168,5942.19 L -1334.2289,5941.8501 -1334.2509,5941.8131 C -1329.8043,5938.6832 -1327.338,5932.7092 -1327.3271,5925.0416 -1327.3279,5907.8783 -1339.3618,5887.018 -1354.206,5878.4479 -1358.4435,5876.0014 -1362.6209,5874.7479 -1366.3974,5874.7897 Z" + transform="scale(0.26458333)" + id="path26" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccc" /> + <ellipse + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse26" + cx="-419.72589" + cy="1776.4075" + rx="8.2117853" + ry="8.2224283" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" /> + <path + style="fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.87024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1070.8691,5767.5332 C -1071.9631,5767.5222 -1073.0619,5767.6292 -1074.166,5767.8184 V 5767.8084 L -1074.19,5767.8224 C -1075.0758,5767.9752 -1075.9651,5768.176 -1076.8579,5768.4357 -1076.734,5768.6661 -1076.9738,5768.2029 -1076.8479,5768.4357 L -1211.9689,5846.0395 -1184.2209,5885.7445 -1052.3048,5810.602 -1052.3148,5810.586 C -1045.9846,5807.0795 -1043.7473,5800.2452 -1050.8382,5785.4669 -1054.6853,5777.4486 -1058.6136,5772.6426 -1062.6194,5770.0528 -1065.3325,5768.2989 -1068.0822,5767.5622 -1070.8655,5767.5333 Z" + transform="scale(0.26458333)" + id="path27" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1033.2949,5878.0469 C -1033.1665,5878.5398 -1033.4055,5877.5585 -1033.2789,5878.0469 L -1168.459,5955.6185 -1148.3027,5999.3002 -1014.1144,5922.1205 V 5922.1205 C -1010.0771,5919.6347 -1007.6617,5915.7844 -1009.8917,5904.8744 -1012.5088,5892.0705 -1018.1627,5885.1745 -1025.3223,5881.2162 -1027.2236,5880.1649 -1029.2418,5879.3285 -1031.3438,5878.6381 V 5878.6381 5878.6381 C -1031.9856,5878.4273 -1032.6343,5878.2275 -1033.291,5878.0424 Z" + transform="scale(0.26458333)" + id="path28" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccsccccc" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1021.123,5982.3418 C -1021.1232,5982.3418 -1021.1229,5982.3518 -1021.123,5982.3538 L -1156.1074,6057.4319 -1144.1641,6102.6819 -1009.3672,6025.2093 V 6025.1993 C -1006.5838,6024.1475 -1004.6678,6021.001 -1003.9317,6014.961 -1002.1499,6000.3423 -1009.9255,5990.6396 -1021.1114,5982.3458 -1021.1117,5982.3456 -1021.1111,5982.3458 -1021.1114,5982.3458 V 5982.3458 C -1021.1114,5982.3458 -1021.1214,5982.3458 -1021.1214,5982.3358 Z" + transform="scale(0.26458333)" + id="path29" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1042.127,6065.4141 C -1043.0091,6067.0382 -1043.927,6068.6221 -1044.8613,6070.1875 L -1176.8164,6142.6855 -1171.5215,6179.5801 -1039.9065,6103.5814 V 6103.5814 C -1036.4007,6101.6298 -1035.6037,6101.7866 -1033.6335,6098.9786 -1027.2043,6089.8155 -1031.6752,6079.1603 -1040.3464,6067.7071 -1040.9224,6066.9463 -1041.5165,6066.1818 -1042.1277,6065.4142 Z" + transform="scale(0.26458333)" + id="path30" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccscc" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -356.24889,1498.9551 C -361.94761,1495.6298 -360.33553,1505.5091 -360.94105,1511.9889 A 69.066595,39.875541 60.064274 0 1 -353.38099,1517.4541 C -352.37792,1510.9175 -348.52516,1504.5253 -355.31444,1499.5721 -355.64598,1499.3299 -355.957,1499.1253 -356.24889,1498.9553 Z M -377.97219,1488.0603 C -378.4873,1487.752 -379.06345,1487.51 -379.70951,1487.3371 -386.33455,1485.5645 -381.51799,1496.3284 -379.72671,1504.2737 A 69.066595,39.875541 60.064274 0 1 -372.37143,1506.2146 C -373.66246,1499.1358 -373.21108,1490.9021 -377.97198,1488.0605 Z M -334.84584,1519.5466 C -338.65225,1517.4918 -340.08764,1524.1545 -342.54357,1528.0041 A 69.066595,39.875541 60.064274 0 1 -335.90934,1536.1732 C -332.62194,1531.9517 -326.24578,1529.3916 -332.16529,1522.0225 -333.17897,1520.7606 -334.06272,1519.9693 -334.84584,1519.5466 Z M -398.75227,1487.4998 C -399.62281,1486.9972 -400.57384,1486.851 -401.63504,1487.1799 -407.07167,1488.8643 -399.99628,1498.1885 -396.0519,1506.0528 A 69.066595,39.875541 60.064274 0 1 -390.02946,1504.1306 C -392.95322,1497.7345 -395.17249,1489.5745 -398.75227,1487.4998 Z M -316.90254,1547.1927 C -320.18409,1545.0713 -323.66264,1548.5697 -327.31309,1549.9102 A 69.066595,39.875541 60.064274 0 1 -322.63093,1559.568 C -317.56771,1558.2973 -309.62743,1559.9364 -313.78523,1551.271 -314.8031,1549.1495 -315.84266,1547.8779 -316.90254,1547.1927 Z M -414.28557,1498.3263 C -415.57736,1497.5885 -416.75084,1497.6946 -417.7541,1499.1245 -421.17486,1504 -412.93614,1510.4713 -407.44286,1517.0484 A 69.066595,39.875541 60.064274 0 1 -403.66406,1511.5739 C -407.39711,1506.7321 -411.18199,1500.0986 -414.28557,1498.3263 Z M -307.03305,1576.6055 C -309.97708,1574.9777 -313.9362,1575.2215 -317.56396,1574.398 A 69.066595,39.875541 60.064274 0 1 -315.55611,1584.0628 C -309.4925,1585.9384 -301.2074,1591.5014 -302.9726,1582.8654 -303.66504,1579.4777 -305.13874,1577.6528 -307.03305,1576.6055 Z M -421.29959,1519.2999 C -423.55988,1518.0148 -425.21911,1518.1294 -425.61197,1521.3527 -426.5029,1528.6631 -418.36318,1531.3289 -412.16601,1535.6083 A 69.066595,39.875541 60.064274 0 1 -411.1881,1527.4292 C -414.6178,1524.7887 -418.43873,1520.9268 -421.29959,1519.2999 Z M -314.81029,1597.7439 A 69.066595,39.875541 60.064274 0 1 -315.74475,1605.9567 C -309.61588,1610.6923 -302.26175,1619.2742 -301.37425,1611.9922 -300.48376,1604.686 -308.61433,1602.0193 -314.81029,1597.7439 Z M -411.47598,1549.2687 C -417.53541,1547.3792 -425.77431,1541.867 -424.01354,1550.4811 -422.25138,1559.1025 -415.43371,1557.6035 -409.48675,1558.9313 A 69.066595,39.875541 60.064274 0 1 -411.47598,1549.2687 Z M -319.4602,1616.3979 A 69.066595,39.875541 60.064274 0 1 -323.21045,1621.9146 C -317.95937,1628.773 -312.62172,1639.0517 -309.23211,1634.2206 -305.8287,1629.37 -313.96733,1622.9403 -319.4602,1616.3979 Z M -404.45708,1573.8044 C -409.52403,1575.0278 -417.33056,1573.4674 -413.20097,1582.074 -409.06319,1590.6978 -404.57164,1585.2921 -399.78356,1583.4759 A 69.066595,39.875541 60.064274 0 1 -404.45708,1573.8044 Z M -330.83125,1627.4981 A 69.066595,39.875541 60.064274 0 1 -336.85497,1629.4382 C -333.2743,1637.3646 -330.72558,1647.8319 -325.35111,1646.1667 -319.96194,1644.497 -326.86827,1635.3184 -330.83125,1627.4981 Z M -391.16743,1597.2903 C -394.47993,1601.4425 -400.6854,1604.0219 -394.82086,1611.3225 -388.94188,1618.6413 -387.43603,1610.1607 -384.53565,1605.4852 A 69.066595,39.875541 60.064274 0 1 -391.16743,1597.2903 Z M -347.20096,1629.3333 A 69.066595,39.875541 60.064274 0 1 -354.56616,1627.3954 C -353.198,1635.1824 -353.81934,1644.259 -347.27665,1646.0095 -340.72442,1647.7625 -345.36536,1637.2508 -347.20095,1629.3333 Z M -373.63865,1616.1112 C -374.69224,1622.5711 -378.38474,1628.8754 -371.67171,1633.773 -364.94526,1638.6805 -366.64231,1628.408 -366.06747,1621.5916 A 69.066595,39.875541 60.064274 0 1 -373.63865,1616.1112 Z" + id="path31" /> + </g> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path32" + d="M 947.63346,224.45337 946.494,225.10114 946.4822,225.10814 945.35474,225.74918 C 945.35574,225.75018 945.35674,225.75118 945.35674,225.75418 L 935.04067,231.66449 935.06887,234.29776 947.46249,227.14485 C 948.4398,226.79028 948.25801,225.78315 947.6333,224.45501 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path33" + d="M 915.66384,174.94401 C 915.53919,174.94101 915.41899,174.96911 915.3033,175.03281 L 915.3023,175.03181 915.2851,175.04181 C 915.2841,175.04281 915.2831,175.04281 915.2821,175.04381 L 902.68256,182.28057 904.08487,184.2186 916.69842,176.71206 916.30187,176.23511 916.99802,175.83547 C 916.7055,175.51182 916.4235,175.25533 916.15598,175.10256 915.98546,175.00516 915.82086,174.94963 915.66301,174.94467 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path34" + d="M 925.09876,172.93267 C 925.00906,172.93167 924.91957,172.93167 924.83045,172.93267 922.75073,172.95577 920.90694,173.49652 919.34834,174.48706 L 919.34734,174.48606 906.8373,181.66771 913.39373,185.94778 913.79721,185.7293 C 913.76001,186.28593 913.74051,186.85703 913.74051,187.44268 913.74053,200.40232 922.82711,216.15429 934.03594,222.62568 935.06609,223.2145 936.09434,223.71158 937.1118,224.11258 L 936.74762,230.64171 948.08,224.19896 C 948.1562,224.15696 948.23183,224.11406 948.30685,224.07009 L 948.71067,223.80194 C 952.30984,221.52412 954.32227,216.89663 954.33121,210.8777 954.33123,197.91813 945.24475,182.16618 934.03594,175.6947 930.93615,173.90508 927.87899,172.96087 925.09835,172.93246 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path35" + d="M 921.01442,171.11635 C 920.8847,171.11635 920.74993,171.13505 920.60987,171.17845 920.52357,171.20515 920.44696,171.23775 920.37812,171.27505 H 920.37712 L 920.36322,171.28305 C 920.35922,171.28605 920.35522,171.28805 920.35082,171.29005 L 908.02523,178.40639 910.40747,180.32514 922.99009,173.0982 C 922.58215,172.26153 922.14431,171.59267 921.62434,171.29133 921.43281,171.18076 921.23026,171.11906 921.01405,171.11669 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path36" + d="M 927.85264,171.16565 C 927.74487,171.16765 927.65161,171.18565 927.57068,171.21725 L 927.56968,171.21625 927.56468,171.21925 C 927.51128,171.24055 927.46345,171.26835 927.42098,171.30185 L 914.83236,178.53189 917.76468,181.18425 930.05588,173.85545 C 930.15348,173.88925 930.25103,173.92315 930.34893,173.95878 930.33133,173.87598 930.31243,173.79472 930.29313,173.71412 H 930.29413 L 930.29313,173.71312 C 930.05761,172.7354 929.67617,171.92798 928.93938,171.48823 928.75806,171.37971 928.55523,171.29461 928.32781,171.23375 928.14562,171.18505 927.98795,171.16315 927.85249,171.16575 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path37" + d="M 935.88342,175.08899 C 935.43521,175.09599 935.22057,175.52861 935.11359,176.16641 L 935.11159,176.16541 923.00029,182.40043 925.75362,185.93996 938.09976,178.51474 C 938.15546,178.55994 938.21142,178.60454 938.26693,178.65025 938.27593,178.56685 938.28283,178.48397 938.28803,178.40141 H 938.28903 L 938.28803,178.40041 C 938.35363,177.36195 938.08037,176.391 936.91482,175.54066 936.79811,175.45546 936.68868,175.38331 936.58593,175.32346 936.30384,175.15886 936.0727,175.0862 935.88305,175.08917 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path38" + d="M 943.65463,182.43635 C 943.4238,182.43135 943.22112,182.53365 943.03597,182.70358 L 943.03497,182.70258 930.76322,189.72306 932.95701,193.70006 945.45287,186.35143 C 945.48227,186.39153 945.51197,186.43123 945.54127,186.47147 945.59967,186.38537 945.65204,186.29712 945.6988,186.20698 L 945.7008,186.20598 945.6998,186.20498 C 946.06525,185.49921 946.03895,184.65657 945.06404,183.44292 944.70721,182.99872 944.39597,182.7202 944.12031,182.57141 943.95283,182.48101 943.79837,182.43853 943.65463,182.43607 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path39" + d="M 928.06533,234.24919 931.56868,232.22651 926.82269,232.11788 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path40" + d="M 919.82098,230.41788 921.12774,229.66345 920.0658,228.99855 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path41" + d="M 899.85535,189.65277 902.70144,188.00958 901.83783,191.23261 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="23.465452" + rx="23.435081" + cy="-325.61258" + cx="1064.0011" + id="ellipse41" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + cy="-325.10037" + cx="1063.7451" + id="ellipse42" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.387164;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="12.192419" + ry="12.199402" + transform="matrix(0.86623374,0.49963897,0,1,0,0)" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="9.8820095" + rx="9.8692188" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse43" + cx="1064.0011" + cy="-325.61258" /> + <path + inkscape:connector-curvature="0" + id="path43" + d="M 918.19269,195.37987 A 12.095116,6.9831052 60.06427 0 0 917.52893,198.81026 12.095116,6.9831052 60.06427 0 0 926.07596,213.62688 12.095116,6.9831052 60.06427 0 0 929.33516,214.75306 12.095116,6.9831052 60.06427 0 0 929.99894,211.32267 12.095116,6.9831052 60.06427 0 0 921.45191,196.50605 12.095116,6.9831052 60.06427 0 0 918.19269,195.37987 Z" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccccc" + inkscape:connector-curvature="0" + id="path44" + d="M 922.14442,202.05802 C 921.90933,202.06102 921.69475,202.11872 921.50866,202.22791 L 921.50766,202.22591 919.6553,203.29025 923.2269,209.40901 924.98569,208.39326 C 925.01999,208.37566 925.05349,208.35626 925.08592,208.33536 L 925.14072,208.30366 925.13872,208.30066 C 925.55286,208.00916 925.78256,207.45277 925.78357,206.73864 925.7835,205.14012 924.66271,203.19727 923.28019,202.39909 922.88552,202.17123 922.49645,202.05449 922.14473,202.05838 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="2.8943744" + rx="2.8906281" + cy="-325.65756" + cx="1064.0011" + id="ellipse44" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccc" + inkscape:connector-curvature="0" + id="path45" + d="M 949.66863,192.06864 C 949.56675,192.06764 949.4644,192.07764 949.36157,192.09524 V 192.09424 L 949.35957,192.09524 C 949.27707,192.10944 949.19424,192.12814 949.11109,192.15234 949.12259,192.17384 949.10019,192.13054 949.11209,192.15234 L 936.52747,199.38004 939.11181,203.07801 951.39793,196.07954 951.39693,196.07754 C 951.9865,195.75096 952.19487,195.11444 951.53445,193.73806 951.17615,192.99126 950.81029,192.54365 950.4372,192.30244 950.18451,192.1391 949.92842,192.07048 949.66919,192.06779 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccsccccc" + inkscape:connector-curvature="0" + id="path46" + d="M 953.16814,202.36143 C 953.18014,202.40733 953.15784,202.31593 953.17014,202.36143 L 940.58002,209.58613 942.4573,213.65447 954.95505,206.46626 V 206.46626 C 955.33106,206.23475 955.55603,205.87615 955.34833,204.86004 955.10459,203.66753 954.578,203.02527 953.91119,202.65661 953.73411,202.55871 953.54614,202.48079 953.35037,202.4165 V 202.4165 202.4165 C 953.29057,202.3969 953.23018,202.3782 953.16901,202.361 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path47" + d="M 954.30178,212.07503 C 954.30176,212.07503 954.30178,212.07603 954.30178,212.07603 L 941.72989,219.0685 942.84224,223.2829 955.39666,216.06742 V 216.06642 C 955.6559,215.96842 955.83435,215.6754 955.9029,215.11287 956.06885,213.75134 955.34467,212.84767 954.30286,212.07522 954.30283,212.0752 954.30288,212.07522 954.30286,212.07522 V 212.07522 C 954.30286,212.07522 954.30186,212.07522 954.30186,212.07422 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccscc" + inkscape:connector-curvature="0" + id="path48" + d="M 952.34555,219.81203 C 952.26335,219.96334 952.1779,220.11083 952.09089,220.25663 L 939.80113,227.00879 940.29428,230.445 952.55236,223.36678 V 223.36678 C 952.87887,223.185 952.9531,223.19959 953.1366,222.93811 953.73539,222.0847 953.31899,221.09232 952.51139,220.0256 952.45779,219.9548 952.40241,219.88366 952.34548,219.81203 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path49" + d="M 924.00192,182.55101 C 921.99591,181.38047 922.56338,184.85807 922.35023,187.13903 A 24.312111,14.036577 60.064274 0 1 925.01145,189.06283 C 925.36454,186.76189 926.72074,184.51177 924.33085,182.7682 924.21414,182.683 924.10467,182.61091 924.00192,182.55109 Z M 916.35511,178.71593 C 916.17378,178.6074 915.97097,178.52222 915.74355,178.46136 913.41148,177.83738 915.10695,181.62639 915.73755,184.42321 A 24.312111,14.036577 60.064274 0 1 918.32669,185.10642 C 917.87227,182.61462 918.03116,179.71627 916.35527,178.716 Z M 931.536,189.79942 C 930.1961,189.07611 929.69084,191.42144 928.82632,192.77654 A 24.312111,14.036577 60.064274 0 1 931.16164,195.65214 C 932.31883,194.16613 934.5633,193.26495 932.47958,190.67096 932.12275,190.22675 931.81166,189.94821 931.536,189.79942 Z M 909.04032,178.51863 C 908.73388,178.3417 908.39911,178.29025 908.02555,178.40601 906.11181,178.99894 908.60241,182.28115 909.99087,185.04946 A 24.312111,14.036577 60.064274 0 1 912.11083,184.37282 C 911.08164,182.12134 910.30044,179.24894 909.04032,178.51862 Z M 937.85222,199.53111 C 936.69708,198.78436 935.47259,200.01583 934.1876,200.4877 A 24.312111,14.036577 60.064274 0 1 935.83577,203.88734 C 937.61807,203.44004 940.41312,204.01702 938.94954,200.96671 938.59124,200.21992 938.2253,199.77231 937.85222,199.53111 Z M 903.57245,182.32967 C 903.11772,182.06995 902.70464,182.10731 902.35149,182.61064 901.14735,184.32686 904.04746,186.60482 905.98115,188.92002 A 24.312111,14.036577 60.064274 0 1 907.31132,186.99295 C 905.99725,185.28859 904.66493,182.95353 903.57245,182.32967 Z M 941.32637,209.8847 C 940.29004,209.3117 938.89639,209.39752 937.61939,209.10763 A 24.312111,14.036577 60.064274 0 1 938.32617,212.50974 C 940.46062,213.16998 943.37706,215.1282 942.75569,212.08825 942.51195,210.89574 941.99319,210.25337 941.32637,209.8847 Z M 901.10345,189.71257 C 900.3078,189.26021 899.72374,189.30055 899.58544,190.43518 899.27183,193.00851 902.13709,193.9469 904.31855,195.45329 A 24.312111,14.036577 60.064274 0 1 904.66279,192.57416 C 903.45549,191.64468 902.11049,190.28526 901.10345,189.71257 Z M 938.58871,217.32561 A 24.312111,14.036577 60.064274 0 1 938.25977,220.21661 C 940.41719,221.88359 943.00592,224.90449 943.31832,222.34118 943.63179,219.7693 940.76975,218.8306 938.58871,217.32561 Z M 904.56145,200.26188 C 902.42847,199.59676 899.5283,197.65641 900.1481,200.68866 900.7684,203.72347 903.16829,203.19581 905.26168,203.66321 A 24.312111,14.036577 60.064274 0 1 904.56145,200.26188 Z M 936.95189,223.89201 A 24.312111,14.036577 60.064274 0 1 935.63177,225.83395 C 937.4802,228.24816 939.35911,231.86637 940.55228,230.16578 941.75031,228.45831 938.88544,226.195 936.95189,223.89201 Z M 907.03217,208.89868 C 905.24855,209.32934 902.50058,208.78006 903.95424,211.80966 905.41077,214.84532 906.99184,212.94247 908.67729,212.30315 A 24.312111,14.036577 60.064274 0 1 907.03217,208.89868 Z M 932.94917,227.79939 A 24.312111,14.036577 60.064274 0 1 930.82877,228.48232 C 932.0892,231.27248 932.98637,234.95709 934.87824,234.37091 936.77528,233.78316 934.34418,230.55222 932.94917,227.79939 Z M 911.71025,217.16595 C 910.54422,218.62757 908.35984,219.53554 910.42421,222.10542 912.49367,224.68172 913.02374,221.69645 914.04471,220.05064 A 24.312111,14.036577 60.064274 0 1 911.71025,217.16595 Z M 927.18688,228.4454 A 24.312111,14.036577 60.064274 0 1 924.59426,227.76323 C 925.07586,230.50435 924.85714,233.69939 927.16023,234.31559 929.46668,234.93266 927.83302,231.23244 927.18693,228.4454 Z M 917.88056,223.79108 C 917.50968,226.06503 916.20989,228.28421 918.57294,230.00821 920.94071,231.73571 920.34334,228.11967 920.54569,225.72024 A 24.312111,14.036577 60.064274 0 1 917.88056,223.79108 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1036.6763,275.75223 1035.5368,276.4 1035.5258,276.407 1034.3983,277.04802 C 1034.3983,277.04902 1034.3983,277.05002 1034.3983,277.05302 L 1024.0823,282.96333 1024.1103,285.5966 1036.5039,278.44369 C 1037.4812,278.08912 1037.2994,277.08202 1036.6748,275.75384 Z" + id="path50" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1004.7067,226.24287 C 1004.582,226.23787 1004.4618,226.26797 1004.3461,226.33167 V 226.33067 L 1004.3291,226.34157 C 1004.3291,226.34257 1004.3291,226.34257 1004.3291,226.34357 L 991.72955,233.58034 993.13186,235.51837 1005.7454,228.01183 1005.3489,227.53487 1006.045,227.13524 C 1005.7525,226.81158 1005.4705,226.55509 1005.203,226.40233 1005.0325,226.30503 1004.8678,226.24928 1004.71,226.24449 Z" + id="path51" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1014.1416,224.23154 C 1014.0516,224.23054 1013.9624,224.23054 1013.8733,224.23154 1011.7936,224.25464 1009.9498,224.79538 1008.3912,225.78592 V 225.78492 L 995.88119,232.96656 1002.4376,237.24662 1002.8411,237.02814 C 1002.8041,237.58478 1002.7841,238.15587 1002.7841,238.74153 1002.7841,251.70117 1011.8707,267.45313 1023.0795,273.92453 1024.1097,274.51336 1025.1379,275.01042 1026.1554,275.41142 L 1025.7912,281.94057 1037.1236,275.49783 C 1037.1996,275.45573 1037.2753,275.41293 1037.3504,275.36895 L 1037.7543,275.1008 C 1041.3535,272.823 1043.3659,268.19549 1043.3748,262.17656 1043.3748,249.21699 1034.2883,233.46505 1023.0795,226.99357 1019.9797,225.20394 1016.9226,224.25973 1014.1419,224.23132 Z" + id="path52" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1010.0573,222.41521 C 1009.9275,222.41521 1009.7928,222.43481 1009.6527,222.47721 1009.5667,222.50401 1009.4898,222.53641 1009.421,222.57391 V 222.57391 L 1009.407,222.58291 C 1009.407,222.58491 1009.397,222.58791 1009.395,222.58991 L 997.0694,229.70624 999.45164,231.62498 1012.0343,224.39806 C 1011.6263,223.56139 1011.1885,222.89253 1010.6685,222.59119 1010.477,222.4806 1010.2744,222.41898 1010.0582,222.41659 Z" + id="path53" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1016.8955,222.4645 C 1016.7877,222.4665 1016.6944,222.4841 1016.6135,222.5161 V 222.5151 L 1016.6035,222.5171 C 1016.5505,222.5389 1016.5022,222.5661 1016.4598,222.5996 L 1003.8712,229.82963 1006.8035,232.48201 1019.0947,225.1532 C 1019.1927,225.1869 1019.2897,225.2209 1019.3877,225.25661 1019.3707,225.17391 1019.3517,225.09247 1019.3317,225.01194 V 225.01194 225.01094 C 1019.0962,224.03323 1018.7147,223.2258 1017.9779,222.78604 1017.7966,222.67741 1017.5938,222.5925 1017.3664,222.53157 1017.1842,222.48277 1017.0265,222.46107 1016.8911,222.46367 Z" + id="path54" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1024.9263,226.38786 C 1024.4781,226.39486 1024.2634,226.82749 1024.1564,227.46528 V 227.46428 L 1012.0451,233.69931 1014.7984,237.23883 1027.1446,229.81362 C 1027.2006,229.85892 1027.2563,229.90352 1027.3118,229.94903 1027.3218,229.86563 1027.3268,229.7827 1027.3338,229.70017 V 229.70017 229.69917 C 1027.3998,228.66071 1027.1262,227.68977 1025.9606,226.83943 1025.8439,226.75413 1025.7345,226.68203 1025.6318,226.62217 1025.3497,226.45758 1025.1185,226.38491 1024.9289,226.38788 Z" + id="path55" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1032.6975,233.73522 C 1032.4666,233.73022 1032.264,233.83252 1032.0788,234.00245 V 234.00145 L 1019.8071,241.02193 1022.0009,244.99893 1034.4967,237.6503 C 1034.5257,237.6903 1034.5557,237.73 1034.5847,237.77026 1034.6427,237.68406 1034.6955,237.59588 1034.7423,237.50577 V 237.50477 237.50377 C 1035.1078,236.79801 1035.0814,235.95537 1034.1065,234.74171 1033.7497,234.29752 1033.4385,234.01901 1033.1628,233.87021 1032.9954,233.77991 1032.8409,233.73742 1032.6971,233.73481 Z" + id="path56" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1017.1082,285.54805 1020.6115,283.52537 1015.8655,283.41674 Z" + id="path57" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1008.8638,281.71676 1010.1706,280.96231 1009.1086,280.29741 Z" + id="path58" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 988.89819,240.95163 991.74428,239.30845 990.88067,242.53148 Z" + id="path59" + inkscape:connector-curvature="0" /> + <ellipse + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse59" + cx="1166.819" + cy="-325.72266" + rx="23.435081" + ry="23.465452" + transform="matrix(0.86602531,0.50000016,0,1,0,0)" /> + <ellipse + transform="matrix(0.86623374,0.49963897,0,1,0,0)" + ry="12.199402" + rx="12.192419" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.387164;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse60" + cx="1166.5382" + cy="-325.16092" /> + <ellipse + cy="-325.72266" + cx="1166.819" + id="ellipse61" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="9.8692188" + ry="9.8820095" + transform="matrix(0.86602531,0.50000016,0,1,0,0)" /> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1007.2355,246.67873 A 12.095116,6.9831052 60.06427 0 0 1006.5718,250.10913 12.095116,6.9831052 60.06427 0 0 1015.1188,264.92574 12.095116,6.9831052 60.06427 0 0 1018.378,266.05192 12.095116,6.9831052 60.06427 0 0 1019.0418,262.62155 12.095116,6.9831052 60.06427 0 0 1010.4947,247.80492 12.095116,6.9831052 60.06427 0 0 1007.2355,246.67873 Z" + id="path61" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1011.1873,253.35687 C 1010.9522,253.36187 1010.7376,253.41757 1010.5515,253.52668 V 253.52468 L 1008.6992,254.589 1012.2708,260.70778 1014.0296,259.69201 C 1014.0636,259.67461 1014.0976,259.65501 1014.1298,259.63411 L 1014.1848,259.60231 V 259.59731 C 1014.5989,259.30581 1014.8286,258.74941 1014.8296,258.03528 1014.8295,256.43677 1013.7088,254.49392 1012.3262,253.69574 1011.9316,253.46788 1011.5425,253.35115 1011.1908,253.35502 Z" + id="path62" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccc" /> + <ellipse + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse62" + cx="1166.8188" + cy="-325.76761" + rx="2.8906281" + ry="2.8943744" + transform="matrix(0.86602531,0.50000016,0,1,0,0)" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1038.7115,243.3675 C 1038.6096,243.3665 1038.5073,243.3765 1038.4044,243.3941 V 243.3931 243.3941 C 1038.3224,243.4094 1038.2392,243.427 1038.1559,243.4511 1038.1669,243.4729 1038.1449,243.4293 1038.1559,243.4511 L 1025.5713,250.67881 1028.1556,254.37676 1040.4417,247.37829 V 247.37629 C 1041.0313,247.04972 1041.2396,246.41319 1040.5793,245.03679 1040.221,244.29002 1039.8551,243.8424 1039.482,243.60119 1039.2293,243.43791 1038.9732,243.36923 1038.714,243.36653 Z" + id="path63" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1042.211,253.66029 C 1042.222,253.70619 1042.2,253.61479 1042.211,253.66029 L 1029.6209,260.88499 1031.4982,264.95334 1043.9959,257.76514 V 257.76514 C 1044.372,257.53362 1044.5969,257.17502 1044.3892,256.1589 1044.1455,254.9664 1043.6189,254.32414 1042.9521,253.95546 1042.7751,253.85746 1042.587,253.77957 1042.3912,253.71536 V 253.71536 253.71536 C 1042.3312,253.69576 1042.2711,253.67706 1042.2099,253.65986 Z" + id="path64" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccsccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1043.3446,263.3739 C 1043.3446,263.3739 1043.3446,263.3749 1043.3446,263.3749 L 1030.7727,270.36736 1031.8851,274.58176 1044.4395,267.36629 V 267.36529 C 1044.6987,267.26729 1044.8772,266.97428 1044.9457,266.41174 1045.1116,265.05021 1044.3875,264.14654 1043.3457,263.37409 1043.3457,263.37407 1043.3457,263.37409 1043.3457,263.37409 V 263.37409 C 1043.3457,263.37409 1043.3457,263.37409 1043.3457,263.37309 Z" + id="path65" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1041.3884,271.11092 C 1041.3064,271.26222 1041.2207,271.40969 1041.1337,271.55548 L 1028.844,278.30765 1029.3371,281.74386 1041.5952,274.66565 V 274.66565 C 1041.9217,274.48387 1041.9959,274.49845 1042.1794,274.23697 1042.7782,273.38356 1042.3619,272.39117 1041.5542,271.32446 1041.5012,271.25376 1041.4452,271.1823 1041.3883,271.1109 Z" + id="path66" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccscc" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1013.0448,233.84989 C 1011.0387,232.67933 1011.6062,236.15694 1011.3931,238.4379 A 24.312111,14.036577 60.064274 0 1 1014.0543,240.3617 C 1014.4074,238.06076 1015.7636,235.81065 1013.3737,234.06706 1013.257,233.98176 1013.1475,233.90988 1013.0448,233.85001 Z M 1005.3979,230.0148 C 1005.2166,229.90617 1005.0138,229.82105 1004.7864,229.76022 1002.4543,229.13625 1004.1498,232.92524 1004.7764,235.72206 A 24.312111,14.036577 60.064274 0 1 1007.3655,236.40527 C 1006.9111,233.91348 1007.0699,231.01514 1005.3941,230.01487 Z M 1020.5788,241.09827 C 1019.2389,240.37496 1018.7337,242.7203 1017.8692,244.0754 A 24.312111,14.036577 60.064274 0 1 1020.2045,246.951 C 1021.3617,245.46498 1023.6061,244.56381 1021.5224,241.96982 1021.1656,241.52562 1020.8545,241.24707 1020.5788,241.09827 Z M 998.08315,229.8175 C 997.77672,229.64051 997.44194,229.58911 997.06839,229.70495 995.15465,230.29788 997.64525,233.58009 999.03371,236.34839 A 24.312111,14.036577 60.064274 0 1 1001.1537,235.67176 C 1000.1245,233.42027 999.34327,230.54788 998.08315,229.81756 Z M 1026.8951,250.82998 C 1025.7399,250.08322 1024.5154,251.31469 1023.2304,251.78655 A 24.312111,14.036577 60.064274 0 1 1024.8786,255.18619 C 1026.6609,254.7389 1029.456,255.31594 1027.9924,252.26558 1027.6341,251.51878 1027.2681,251.07117 1026.8951,250.82998 Z M 992.61527,233.62852 C 992.16055,233.36881 991.74748,233.40616 991.39433,233.90951 990.19019,235.62573 993.0903,237.90369 995.02398,240.2189 A 24.312111,14.036577 60.064274 0 1 996.35416,238.29181 C 995.04009,236.58745 993.70777,234.25239 992.61527,233.62852 Z M 1030.3692,261.18357 C 1029.3329,260.61058 1027.9392,260.69637 1026.6622,260.4065 A 24.312111,14.036577 60.064274 0 1 1027.369,263.8086 C 1029.5035,264.46885 1032.4199,266.42706 1031.7985,263.38711 1031.5548,262.19461 1031.036,261.55222 1030.3692,261.18357 Z M 990.14628,241.01143 C 989.35063,240.55908 988.76656,240.59941 988.62828,241.73405 988.31466,244.30738 991.17992,245.24576 993.36138,246.75216 A 24.312111,14.036577 60.064274 0 1 993.70561,243.87302 C 992.49834,242.94355 991.15333,241.58412 990.14628,241.01143 Z M 1027.6315,268.62449 A 24.312111,14.036577 60.064274 0 1 1027.3026,271.51547 C 1029.46,273.18245 1032.0488,276.20335 1032.3612,273.64003 1032.6746,271.06818 1029.8126,270.12946 1027.6315,268.62449 Z M 993.60428,251.56076 C 991.4713,250.89564 988.57113,248.95527 989.19094,251.98754 989.81124,255.02233 992.21112,254.49466 994.30452,254.96207 A 24.312111,14.036577 60.064274 0 1 993.60428,251.56076 Z M 1025.9947,275.19087 A 24.312111,14.036577 60.064274 0 1 1024.6746,277.1328 C 1026.523,279.54704 1028.4019,283.16523 1029.5951,281.46464 1030.7931,279.75719 1027.9283,277.49386 1025.9947,275.19087 Z M 996.07501,260.19756 C 994.29139,260.62821 991.54341,260.07891 992.99707,263.10852 994.45361,266.14418 996.03468,264.24133 997.72012,263.60201 A 24.312111,14.036577 60.064274 0 1 996.07501,260.19756 Z M 1021.992,279.09825 A 24.312111,14.036577 60.064274 0 1 1019.8716,279.78118 C 1021.132,282.57136 1022.0292,286.25595 1023.9211,285.66979 1025.8181,285.08204 1023.387,281.85108 1021.992,279.09825 Z M 1000.7531,268.46481 C 999.58706,269.92643 997.40268,270.83439 999.46705,273.40429 1001.5365,275.98058 1002.0666,272.99532 1003.0875,271.34949 A 24.312111,14.036577 60.064274 0 1 1000.7531,268.46481 Z M 1016.2297,279.74426 A 24.312111,14.036577 60.064274 0 1 1013.6371,279.06211 C 1014.1187,281.8032 1013.9,284.99825 1016.2031,285.61445 1018.5095,286.23152 1016.8759,282.53131 1016.2301,279.74426 Z M 1006.9234,275.08995 C 1006.5525,277.3639 1005.2527,279.58307 1007.6158,281.30707 1009.9835,283.03456 1009.3862,279.41855 1009.5885,277.0191 A 24.312111,14.036577 60.064274 0 1 1006.9234,275.08995 Z" + id="path67" /> + <path + id="path68" + d="M 925.85712,81.842523 859.04794,120.41483 858.0511,127.34509 892.07935,156.22678 982.82118,208.61665 1047.8953,169.0426 958.88853,117.6545 924.86028,88.772782 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path69" + d="M 976.01094,150.49853 957.68326,161.08001 970.42706,165.27927 987.34288,159.03846 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path70" + d="M 925.85712,81.842523 912.96241,89.367272 911.90782,90.035564 913.45986,95.354659 944.3268,126.0804 1011.7652,190.81092 1013.2043,189.93581 1038.2299,163.46208 958.88853,117.65433 924.86028,88.772569 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.348874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path71" + d="M 858.05113,127.34509 924.86028,88.772817 925.85706,81.842592 859.048,120.41483 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#172935;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 928.13531,63.131377 930.09782,61.998321 V 64.871743 L 928.13531,66.004787 Z" + id="path72" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path73" + d="M 924.86028,88.772817 858.05113,127.34509 892.07935,156.22678 958.88851,117.6545 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke-width:0.627;stroke-linecap:round;stroke-linejoin:round" + d="M 941.83161,130.32982 914.24718,133.71596 900.22414,126.16046 936.24383,121.36525 Z" + id="path74" /> + <path + inkscape:connector-curvature="0" + id="path75" + d="M 958.88851,117.6545 892.07935,156.22678 982.82122,208.61665 1047.8953,169.0426 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + y="178.11374" + x="979.43103" + height="25.211174" + width="12.091898" + id="rect75" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76" + d="M 984.85825,194.09214 991.52292,190.24429 V 200.12869 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path77" + d="M 1054.5286,125.75569 1054.2496,142.52679 V 157.01072 L 1100.5928,183.7671 1104.685,158.02548 1107.3963,159.59095 1106.6288,155.83535 Z M 1093.1283,152.88586 C 1093.3985,152.87256 1093.7083,152.95526 1094.0383,153.14579 L 1099.7327,156.4337 C 1100.7888,157.04344 1101.8046,158.62766 1101.6388,159.73794 L 1098.9552,177.71615 C 1098.7895,178.82635 1098.1047,179.42957 1097.0486,178.81984 L 1094.0383,177.08154 C 1092.9822,176.47188 1092.1321,174.99791 1092.1321,173.77685 V 154.24948 C 1092.1321,153.41 1092.534,152.91509 1093.1283,152.88586 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.348874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 924.86028,88.772817 958.88851,117.6545 1049.6304,170.04446 V 145.20085 L 1067.8826,134.63569 1092.4452,143.32177 V 140.92048 L 1090.5282,137.59712 1049.7901,114.07701 1034.5733,122.88529 928.13531,66.004787 Z" + id="path78" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cscccccscccscccccscccscccccscccscccccscccscccccscccscccccscccscccc" + inkscape:connector-curvature="0" + id="path79" + d="M 933.46642,73.89851 C 932.5154,73.94534 931.87237,74.737379 931.87237,76.080484 V 86.969833 L 930.19848,87.250633 931.87237,92.195195 933.38205,91.73068 V 86.716716 75.615969 C 933.38205,74.876454 933.57791,74.305056 933.9119,73.932096 933.75789,73.905426 933.60791,73.891546 933.46642,73.898516 Z M 950.16134,83.537219 C 949.21043,83.584109 948.56728,84.376485 948.56728,85.719637 V 103.38667 104.58835 106.33119 L 950.07696,105.86668 V 102.74796 85.255116 C 950.07696,84.515606 950.27246,83.943834 950.60635,83.570805 950.45241,83.544135 950.30274,83.530255 950.16134,83.537225 Z M 966.76733,92.210154 C 965.81642,92.256924 965.17327,93.048954 965.17327,94.392128 V 115.69635 117.64787 118.9965 L 966.68295,118.53198 V 115.34795 93.927613 C 966.68295,93.188404 966.87825,92.617144 967.2119,92.244178 967.05805,92.217568 966.90868,92.203228 966.76733,92.210138 Z M 983.37288,101.0142 C 982.42196,101.061 981.77928,101.85304 981.77928,103.19614 V 124.56298 127.37458 128.72321 L 983.28896,128.25869 V 124.23273 102.73163 C 983.28896,101.99244 983.48424,101.42116 983.81788,101.04823 983.66395,101.02153 983.5143,101.00723 983.37288,101.01423 Z M 999.18821,109.75335 C 998.23728,109.80015 997.59415,110.59215 997.59415,111.93532 V 135.10987 L 997.15776,135.3843 997.59415,137.98722 999.10383,137.5227 V 134.16086 111.4708 C 999.10383,110.73143 999.29943,110.15986 999.63322,109.78693 999.47928,109.76023 999.32942,109.74643 999.18821,109.75333 Z M 1015.4835,118.3773 C 1014.5324,118.424 1013.889,119.21602 1013.889,120.55925 V 143.21893 146.18249 147.53158 L 1015.3986,147.06707 V 142.46408 120.09473 C 1015.3986,119.3555 1015.5943,118.78421 1015.928,118.41132 1015.7742,118.38472 1015.6248,118.37042 1015.4835,118.37732 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1049.7903,114.07719 1034.5732,122.88511 928.13523,66.004931 925.18266,86.530829 931.87237,92.195195 V 76.080507 C 931.87237,74.126854 933.23304,73.339231 934.92277,74.314791 L 940.11895,77.314795 C 941.80867,78.290354 943.16893,80.648924 943.16893,82.602578 V 101.76033 L 948.56734,106.33116 V 85.719343 C 948.56734,83.765689 949.92758,82.977825 951.6173,83.953379 L 956.81345,86.953382 C 958.50321,87.928977 959.86346,90.287512 959.86346,92.241166 V 115.88647 L 965.17318,118.99643 V 94.392088 C 965.17318,92.438394 966.53343,91.651019 968.22316,92.626619 L 973.41931,95.626617 C 975.10906,96.602177 976.46974,98.960499 976.46974,100.91419 V 125.61349 L 981.77903,128.72327 V 103.1961 C 981.77903,101.24241 983.13929,100.45506 984.82902,101.43062 L 990.02516,104.43059 C 991.71491,105.4062 993.07559,107.76448 993.07559,109.71817 V 135.34032 L 997.59421,137.98696 V 111.93503 C 997.59421,109.98143 998.95446,109.19402 1000.6442,110.16955 L 1005.8404,113.1696 C 1007.5301,114.14513 1008.8903,116.50324 1008.8903,118.45684 V 144.60323 L 1013.889,147.53157 V 120.55897 C 1013.889,118.60528 1015.2497,117.81822 1016.9395,118.79375 L 1022.1356,121.7938 C 1023.8253,122.76933 1025.1856,125.12734 1025.1856,127.08103 V 154.14817 L 1029.865,156.88919 V 129.3913 C 1029.865,127.43761 1031.2252,126.64976 1032.915,127.62529 L 1038.1116,130.62552 C 1039.8013,131.60113 1041.1615,133.95968 1041.1615,135.91336 V 163.50615 L 1046.2402,166.48084 V 137.64444 C 1046.2402,135.69075 1047.6004,134.90343 1049.2902,135.87896 L 1054.4863,138.87901 C 1055.3278,139.3648 1056.0874,140.19373 1056.6382,141.14468 L 1067.8827,134.63578 1092.4451,143.32169 V 140.92066 L 1090.5283,137.59721 Z" + id="path80" /> + <rect + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect80" + width="20.145742" + height="22.181101" + x="1236.6628" + y="-476.74298" + rx="2.0054591" + ry="2.0081656" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1110.8171,198.91878 1051.6674,164.76864 V 193.10854 L 1055.4867,195.31364 C 1059.3463,187.53777 1067.931,186.04713 1077.4054,191.50765 1086.8753,196.9902 1095.454,208.38929 1099.3117,220.616 L 1107.2228,225.1835 V 216.26901 Z" + id="path81" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1093.2107,152.88463 C 1092.5715,152.87043 1092.1322,153.37182 1092.1322,154.24948 V 173.77706 C 1092.1322,174.99812 1092.9825,176.47207 1094.0385,177.08172 L 1097.0487,178.81973 C 1098.1048,179.42947 1098.7894,178.82873 1098.9551,177.71622 L 1098.9701,177.60983 C 1098.9021,177.57913 1098.8319,177.54403 1098.7602,177.50257 L 1095.7501,175.76465 C 1094.694,175.15491 1093.8437,173.68095 1093.8437,172.4599 V 153.04527 C 1093.6183,152.94126 1093.4049,152.88894 1093.2099,152.88463 Z" + id="path82" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1110.8171,196.77812 1051.6674,162.62797 V 164.76864 L 1110.8171,198.91878 Z" + id="path83" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1051.6674,155.51987 V 162.62797 L 1110.8171,196.77812 1108.9212,188.57536 1054.2496,157.01059 Z" + id="path84" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path85" + d="M 1093.3043,179.55921 1076.3608,169.7769 1037.8758,196.59781 1025.8583,210.83585 1030.2573,216.48163 1037.7047,211.65981 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:nodetypes="ccccccc" /> + <path + inkscape:connector-curvature="0" + id="path86" + d="M 1089.9246,181.43135 1076.0414,173.41592 1079.1964,171.59435 1093.0793,179.61004 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + cy="-402.75723" + cx="1244.0807" + id="ellipse86" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="2.8906281" + ry="2.8943744" /> + <path + inkscape:connector-curvature="0" + id="path87" + d="M 1091.0056,185.33987 1073.4001,185.64395 1025.4775,213.31205 996.27317,196.45093 998.92907,190.61026 1041.1615,151.08694 1046.2402,158.10428 1071.7577,183.62188 H 1093.9814 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccccccc" /> + <path + inkscape:connector-curvature="0" + id="path88" + d="M 1013.2383,205.26206 1035.8244,192.22195 1019.4493,185.20893 1011.0069,190.0831 1005.301,202.86783 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + cy="-402.75723" + cx="1141.1456" + id="ellipse88" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="9.8692188" + ry="9.8820095" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse89" + cx="1141.1456" + cy="-402.80212" + rx="2.8906281" + ry="2.8943744" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 928.13531,63.131377 1054.2497,130.48305 V 133.35652 L 928.13531,66.004787 Z" + id="path89" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1107.2228,216.26901 1102.0313,213.27176 V 222.18617 L 1107.2228,225.1835 Z" + id="path90" + inkscape:connector-curvature="0" /> + <path + id="path91" + d="M 1103.7731,198.8353 1094.9007,203.95777 V 223.38326 L 1103.7731,218.26079 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.35200969,0,0,0.35200969,1049.405,-353.262)" + id="g96" + style="display:inline"> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path92" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + id="path93" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path94" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse94" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path95" + transform="scale(0.26458333)" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse95" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + id="path96" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + ry="7.2247276" + rx="7.2083259" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse96" + cx="-168.4836" + cy="1675.6819" /> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path97" + d="M 1052.7358,230.31142 1094.9007,205.96746 1091.64,221.50085 1049.4751,245.8448 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path98" + d="M 1094.9007,223.38318 1091.64,221.50085 1051.1801,244.86041 1052.7358,247.72722 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path99" + d="M 1053.7139,229.7467 1092.6498,207.26708 1090.0255,219.7107 1051.0896,242.19032 Z" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path100" + d="M 1090.0255,219.7107 1089.3019,219.29286 1052.9317,240.29124 1053.1022,240.92775 1053.2123,240.96455 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" + y="836.09918" + x="1205.3497" + height="19.425489" + width="10.244936" + id="rect100" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g112" + style="display:inline;fill:#c0b2a5;fill-opacity:1" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)"> + <g + id="g111" + style="fill:#c0b2a5;fill-opacity:1"> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 116.09432,111.28872 115.7508,111.09041 116.65665,106.92743 117.0721,106.68755 Z" + id="path101" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 129.6594,103.45691 129.31588,103.25856 130.22174,99.095575 130.63719,98.855736 Z" + id="path102" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 128.00932,104.40957 127.6658,104.21126 128.57166,100.04828 128.9871,99.808398 Z" + id="path103" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path104" + d="M 124.59308,106.38203 124.24957,106.18372 125.15542,102.02074 125.57086,101.78086 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 122.83643,107.39622 122.49291,107.19791 123.39877,103.03493 123.81421,102.79505 Z" + id="path105" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 121.19603,108.34328 120.85251,108.14493 121.75836,103.98195 122.17381,103.74211 Z" + id="path106" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path107" + d="M 119.43937,109.35747 119.09586,109.15912 120.00171,104.99614 120.41715,104.7563 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path108" + d="M 117.85097,110.27453 117.50745,110.07622 118.41331,105.91324 118.82875,105.67336 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g110" + style="fill:#c0b2a5;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + id="path109" + d="M 131.41605,102.44271 131.07254,102.24437 131.97839,98.081381 132.39384,97.841543 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165726;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 133.06605,101.49009 132.72254,101.29174 133.62839,97.12876 134.04384,96.888922 Z" + id="path110" + inkscape:connector-curvature="0" /> + </g> + </g> + <path + inkscape:connector-curvature="0" + id="path111" + d="M 126.25267,105.42376 125.90915,105.22545 126.81501,101.06247 127.23045,100.82259 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccscccsccccc" + inkscape:connector-curvature="0" + id="path112" + d="M 1090.9628,208.24103 1089.1089,209.31154 1086.3174,221.85163 1088.1713,220.78111 Z M 1087.2547,210.38187 1085.4007,211.45238 1082.6092,223.99248 1084.4632,222.92213 Z M 1083.5465,212.52289 1081.6926,213.59322 1078.9011,226.13348 1080.755,225.06298 Z M 1079.8384,214.66373 1077.9842,215.73424 1075.1927,228.27433 1077.0469,227.20382 Z M 1076.1302,216.80457 1074.2761,217.87508 1071.4846,230.41517 1073.3387,229.34483 Z M 1072.4221,218.94567 1070.5679,220.01592 1067.7764,232.5562 1069.6306,231.48568 Z M 1068.7139,221.08652 1066.8598,222.15702 1064.0683,234.69702 1065.9224,233.6267 Z M 1065.0056,223.22752 1063.1516,224.29787 1060.3601,236.83813 1062.2141,235.76763 Z M 1061.2974,225.36837 1059.4435,226.43889 1056.6519,238.97898 1058.5059,237.90846 Z M 1057.5893,227.50922 1055.7353,228.57972 1052.9438,241.11983 1054.7978,240.04948 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(0.35200969,0,0,0.35200969,1046.1443,-346.97807)" + id="g113" + style="display:inline;fill:#c0b2a5;fill-opacity:1"> + <ellipse + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse112" + cx="110.45281" + cy="1685.7919" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + rx="2.1047468" + ry="2.1047475" /> + <ellipse + cy="1685.7919" + cx="49.777477" + id="ellipse113" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + rx="2.1047468" + ry="2.1047475" /> + </g> + <g + transform="matrix(0.35200969,0,0,0.35200969,1036.7757,-332.13384)" + id="g123" + style="display:inline"> + <g + transform="translate(-105.30417,20.721772)" + id="g117"> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path113" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + id="path114" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path115" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse115" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path116" + transform="scale(0.26458333)" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse116" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + id="path117" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + ry="7.2247276" + rx="7.2083259" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse117" + cx="-168.4836" + cy="1675.6819" /> + </g> + <g + id="g122" + transform="translate(-105.30417,43.920833)"> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path118" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path119" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path120" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse120" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + transform="scale(0.26458333)" + id="path121" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse121" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path122" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + cy="1675.6819" + cx="-168.4836" + id="ellipse122" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + rx="7.2083259" + ry="7.2247276" /> + </g> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path123" + d="M 1042.1121,227.14764 1040.2422,237.52459 1110.8171,196.77812 1108.9212,188.57536 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361384;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(0.32145342,0,0,0.32130127,1052.0457,-294.97934)" + id="g124" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke-width:1.09532"> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.12124;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 41.036782,1590.8594 94.551621,1560.2266 97.916265,1571.7751 40.791662,1604.756 Z" + id="path124" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path125" + d="M 1104.685,158.02548 1037.8758,196.59802 1033.7837,222.33965 1100.5928,183.7671 Z M 1102.2848,160.67875 1098.717,183.12115 1036.5345,219.02226 1040.1022,196.57988 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path126" + d="M 987.71942,164.32776 987.44046,181.09932 V 195.58323 L 1033.7837,222.33965 1037.8758,196.59802 1040.5872,198.16304 1039.8196,194.4079 Z M 1026.3192,191.45794 C 1026.5893,191.44464 1026.8991,191.52784 1027.2292,191.71832 L 1032.9236,195.00578 C 1033.9796,195.61553 1034.9954,197.20029 1034.8297,198.31046 L 1032.146,216.28869 C 1031.9804,217.39895 1031.2955,218.00175 1030.2394,217.39192 L 1027.2292,215.65407 C 1026.1731,215.04433 1025.323,213.57044 1025.323,212.34937 V 192.82155 C 1025.323,191.98208 1025.7248,191.48715 1026.3192,191.45794 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path127" + d="M 1001.0735,173.20797 1067.8826,134.63561 1075.1177,137.64268 1106.6286,155.83545 1039.8194,194.40781 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path128" + d="M 1023.4434,181.11862 1019.4911,183.28519 1001.0735,173.20797 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1001.0735,173.20797 1067.8826,134.63561 1075.1177,137.64268 1106.6286,155.83545 1039.8194,194.40781 Z" + id="path129" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <rect + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="2.0081656" + rx="2.0054591" + y="-399.59836" + x="1159.5182" + height="22.181101" + width="20.145742" + id="rect129" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path130" + d="M 858.0512,127.34509 892.07943,156.22687 982.82131,208.61665 V 183.77313 L 1001.0736,173.20797 1025.6362,181.89405 V 179.49285 L 1023.7191,176.16949 982.98107,152.64938 967.76423,161.45757 861.32622,104.57709 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.348874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cscccccscccscccccscccscccccscccscccccscccscccccscccscccccscccscccccscccccccccsccc" + inkscape:connector-curvature="0" + id="path131" + d="M 866.65718,112.47069 C 865.70616,112.51749 865.06313,113.30956 865.06313,114.65266 V 125.54201 L 863.38924,125.82281 865.06313,130.76737 866.57281,130.30286 V 125.28889 114.18815 C 866.57281,113.44863 866.76867,112.87723 867.10266,112.50427 866.94865,112.47757 866.79867,112.46367 866.65718,112.47067 Z M 883.3521,122.1094 C 882.40119,122.1563 881.75804,122.94866 881.75804,124.29182 V 141.95885 143.16053 144.90336 L 883.26772,144.43885 V 141.32014 123.82729 C 883.26772,123.08778 883.46322,122.51601 883.79711,122.14298 883.64317,122.11628 883.4935,122.10248 883.3521,122.10938 Z M 899.95809,130.78233 C 899.00717,130.82913 898.36403,131.62113 898.36403,132.96431 V 154.26852 156.22005 157.56868 L 899.87371,157.10415 V 153.92013 132.49979 C 899.87371,131.76058 900.06901,131.18932 900.40265,130.81636 900.24881,130.78976 900.09944,130.77536 899.95809,130.78236 Z M 916.56364,139.58638 C 915.61272,139.63318 914.97004,140.42522 914.97004,141.76832 V 163.13516 165.94676 167.29539 L 916.47972,166.83087 V 162.80491 141.30381 C 916.47972,140.56462 916.67499,139.99334 917.00864,139.62041 916.85471,139.59371 916.70506,139.57941 916.56364,139.58641 Z M 932.37897,148.32552 C 931.42804,148.37232 930.78491,149.16433 930.78491,150.5075 V 173.68204 L 930.34852,173.95648 930.78491,176.5594 932.29459,176.09488 V 172.73304 150.04298 C 932.29459,149.30361 932.49019,148.73204 932.82398,148.35911 932.67004,148.33241 932.52018,148.31861 932.37897,148.32551 Z M 948.67422,156.94948 C 947.72317,156.99618 947.07972,157.7882 947.07972,159.13143 V 181.7911 184.75467 186.10376 L 948.5894,185.63925 V 181.03626 158.66691 C 948.5894,157.92768 948.78504,157.35639 949.11878,156.9835 948.96498,156.9569 948.81552,156.9426 948.67422,156.9495 Z M 964.64967,165.78119 C 963.69876,165.82809 963.05561,166.62049 963.05561,167.9636 V 194.11258 194.11258 195.46121 L 964.56482,194.99625 V 191.89387 167.49862 C 964.56482,166.75912 964.76078,166.18777 965.09468,165.81474 964.94057,165.78804 964.79077,165.77374 964.64921,165.78074 Z M 981.02477,174.03496 C 980.07386,174.08176 979.43118,174.87377 979.43118,176.21691 V 202.35456 203.70456 205.05321 L 980.94086,204.58869 V 201.90275 175.75239 C 980.94086,175.01305 981.13602,174.44148 981.46978,174.06852 981.31584,174.04192 981.16619,174.02802 981.02477,174.03502 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path132" + d="M 1040.2422,239.66526 981.09248,205.51512 984.85825,231.68082 988.67754,233.88591 C 992.53712,226.11014 1001.1218,224.61942 1010.5962,230.08002 1020.0662,235.56256 1028.6448,246.96157 1032.5026,259.18827 L 1040.4137,263.75579 V 254.84129 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path133" + d="M 1040.2422,237.52459 981.09248,203.37445 V 205.51512 L 1040.2422,239.66526 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path134" + d="M 984.85825,194.09214 981.09248,203.37445 1040.2422,237.52459 1042.1121,227.14764 987.44042,195.58296 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path135" + d="M 930.09782,61.998321 1056.2122,129.35004 1054.2497,130.48305 928.13531,63.131377 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + id="path136" + d="M 925.36132,80.684452 904.76065,92.578155 906.97278,92.719816 925.85714,81.842575 925.94054,81.263297 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.360787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path137" + d="M 907.26242,92.578155 H 904.76065 L 875.6785,109.36879 876.97815,110.06285 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.360787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.360787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 925.94038,81.263263 925.36145,80.684337 875.67869,109.36871 876.97824,110.06271 925.85712,81.842523 Z" + id="path138" + inkscape:connector-curvature="0" /> + <path + id="path139" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1002.4695,128.96886 994.38476,133.63655 994.38076,133.63455 C 993.44944,134.21244 992.34771,134.48431 991.06846,134.43688 993.31148,136.68559 994.9804,139.07972 996.07456,141.61886 996.17406,141.84702 996.2635,142.07577 996.35412,142.30434 996.46356,142.58035 996.56566,142.85689 996.66224,143.1335 996.67024,143.1572 996.67914,143.1808 996.68734,143.2045 996.77524,143.45927 996.85616,143.71433 996.93315,143.96961 996.94935,144.02361 996.96585,144.07748 996.98165,144.13146 997.04825,144.35924 997.10986,144.58702 997.16773,144.81521 997.19083,144.90661 997.21273,144.99806 997.23433,145.08958 997.28233,145.29107 997.32823,145.49275 997.36935,145.69456 997.39235,145.80789 997.41255,145.92129 997.43345,146.03471 997.46885,146.22617 997.50285,146.41766 997.53215,146.60941 997.54965,146.72519 997.56365,146.84146 997.57885,146.95734 997.60355,147.14285 997.62915,147.32809 997.64805,147.51386 997.66455,147.6774 997.67495,147.84087 997.68705,148.0046 997.69725,148.14187 997.71025,148.27918 997.71735,148.41659 997.73315,148.72569 997.74245,149.03545 997.74245,149.34528 997.74245,149.77069 997.72565,150.17521 997.69915,150.56824 997.70004,150.56858 997.70115,150.56868 997.70215,150.56913 997.52865,153.1407 996.78751,155.01796 995.47953,156.20358 L 994.58113,156.8631 1005.342,150.67905 V 150.67305 C 1007.4284,149.44783 1008.4752,146.95215 1008.4752,143.17775 1008.4752,140.57672 1007.9189,138.00189 1006.8065,135.45223 1005.8247,133.17388 1004.3762,131.01324 1002.4694,128.96871 Z" + sodipodi:nodetypes="cccccsscsccccccccccsccccccscc" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 952.5633,76.759005 V 124.16287 L 941.83161,130.32982 V 82.925957 Z" + id="path140" /> + <path + id="path141" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 968.55106,124.283 C 968.17067,124.282 967.82001,124.3631 967.4986,124.52707 L 956.76717,130.69468 963.1953,141.65634 973.92673,135.4896 C 974.76559,135.04187 975.18519,134.0805 975.18519,132.60659 975.18519,131.11099 974.75613,129.64967 973.89904,128.22279 973.06018,126.80644 971.99401,125.72466 970.69926,124.97714 969.90143,124.51651 969.18505,124.28496 968.55106,124.283 Z" /> + <path + d="M 941.83161,130.32982 933.92629,125.76569 V 89.546277 L 924.48914,87.576635 V 79.936092 L 940.98363,82.436376 941.83161,82.925957 Z" + id="path142" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#393d46;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + d="M 955.50863,133.6094 Q 955.50863,131.36601 956.76692,130.69443 958.05256,130.03863 959.96734,131.14413 961.90948,132.26542 963.16776,134.38995 964.4534,136.53027 964.4534,138.77366 964.4534,140.98454 963.19511,141.65613 961.93683,142.2952 959.96734,141.15812 958.0252,140.03683 956.76692,137.94481 955.50863,135.82028 955.50863,133.6094 Z" + id="path143" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#393d46;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + d="M 979.08782,124.00859 983.30034,126.44069 Q 986.30929,128.1779 987.75905,127.22671 989.20882,126.27552 989.20882,123.31684 989.20882,120.4557 987.75905,118.02555 986.33664,115.61119 983.82007,114.15824 981.54968,112.84744 980.01786,113.45864 978.48603,114.03732 978.48603,116.41077 L 970.58071,111.84663 Q 970.58071,108.14016 972.24931,106.17736 973.94526,104.19783 976.9542,104.27689 979.9905,104.37169 983.62859,106.47218 989.94738,110.12032 993.53075,115.79812 997.11413,121.44341 997.11413,127.75092 997.11413,131.00221 995.44554,132.76994 993.77694,134.53766 991.06889,134.43725 994.43344,137.81034 996.07468,141.61905 997.74328,145.44355 997.74328,149.34511 997.74328,155.65262 993.859,157.21405 990.00208,158.79127 983.62859,155.11154 977.66541,151.6687 973.8632,145.73451 970.08834,139.81611 970.08834,133.67116 L 977.99365,138.23529 Q 977.99365,140.90135 979.66225,143.55539 981.3582,146.22522 983.82007,147.64657 986.63753,149.27323 988.22407,148.43352 989.83796,147.57709 989.83796,144.65093 989.83796,137.5631 983.27299,133.77282 L 979.08782,131.35651 Z" + id="path144" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#393d46;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 924.48914,79.936092 935.22084,73.769144 951.71533,76.269428 940.98363,82.436376 Z" + id="path145" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 940.98363,82.436376 951.71533,76.269428 952.5633,76.759005 941.83161,82.925957 Z" + id="path146" /> + <path + id="path147" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 979.08776,128.47552 970.0882,133.67116 977.99376,138.23499 C 977.99376,138.24499 977.99465,138.25399 977.99465,138.26349 L 984.46086,134.53056 C 984.08268,134.26909 983.69151,134.01378 983.27338,133.77238 L 979.08779,131.35674 Z" /> + <path + id="path148" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 983.58235,133.95592 C 983.88648,134.14182 984.1772,134.33451 984.46084,134.53061 L 977.99462,138.26355 C 978.00062,140.03135 978.55602,141.79539 979.66246,143.55526 980.79309,145.33514 982.17912,146.69895 983.82036,147.64652 985.69867,148.73095 987.16638,148.99307 988.22407,148.43326 989.29999,147.86231 989.83824,146.60177 989.83824,144.65099 989.83824,140.0387 987.75231,136.47368 983.58235,133.95592 Z" /> + <path + id="path149" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 988.16002,118.77058 979.08776,124.00863 983.30019,126.44071 C 985.30615,127.59885 986.79278,127.86072 987.75929,127.22659 988.7258,126.59247 989.20902,125.28954 989.20902,123.3171 989.20902,121.69776 988.85663,120.18283 988.16002,118.77058 Z" /> + <path + id="path150" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 981.27057,113.27028 C 980.81838,113.24288 980.40114,113.30618 980.01818,113.45896 978.99697,113.84475 978.48624,114.82805 978.48624,116.41034 L 983.05958,113.76968 C 982.41371,113.47472 981.81579,113.3033 981.27057,113.27028 Z" /> + <path + id="path151" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 987.68572,98.110049 C 986.58114,98.081019 985.61418,98.26735 984.77502,98.654455 L 984.76372,98.650055 984.66073,98.708915 C 984.45712,98.808895 984.26143,98.921264 984.07391,99.04646 L 973.88342,104.89729 C 974.75822,104.45706 975.77895,104.24584 976.95424,104.27672 978.97844,104.33992 981.20279,105.07221 983.62817,106.47251 987.84069,108.9046 991.14154,112.01316 993.53045,115.79836 995.91937,119.56187 997.11366,123.54602 997.11366,127.75102 997.11366,129.91854 996.55822,131.59162 995.44582,132.7701 995.1223,133.11284 994.76598,133.39647 994.38385,133.63388 L 994.38473,133.63688 1002.4695,128.96919 1003.502,128.37286 1004.5346,127.77652 C 1004.8426,127.63705 1005.1346,127.4689 1005.4096,127.2702 L 1005.4666,127.2373 V 127.2243 C 1005.7146,127.03949 1005.953,126.83673 1006.1737,126.60287 1007.2861,125.42439 1007.8424,123.75218 1007.8424,121.58466 1007.8424,120.77974 1007.7844,119.98546 1007.697,119.19672 L 1007.707,119.15862 1007.69,119.13522 C 1007.313,115.82571 1006.1789,112.65548 1004.2592,109.63108 1001.8703,105.8459 998.56936,102.73732 994.35685,100.30524 991.93147,98.904947 989.70625,98.173544 987.68205,98.110313 Z" + sodipodi:nodetypes="cccccccscssccccccccssccccsc" /> + <path + sodipodi:nodetypes="cccccsccsccsccsccsccsccsccsccsccsccsccsccsccsccscccccccc" + id="path152" + d="M 982.98119,152.64946 967.76403,161.45739 861.32608,104.57727 857.63446,124.65148 865.06321,130.76747 V 114.65278 C 865.06321,112.69918 866.42388,111.9115 868.11361,112.88712 L 873.30978,115.88709 C 874.99951,116.86262 876.35976,119.22125 876.35976,121.17485 V 140.3326 L 881.75816,144.90344 V 124.29165 C 881.75816,122.33797 883.11843,121.55012 884.80814,122.52564 L 890.00429,125.5257 C 891.69405,126.50132 893.0543,128.85986 893.0543,130.81346 V 154.45875 L 898.36402,157.56871 V 132.9644 C 898.36402,131.01071 899.72427,130.2233 901.414,131.19892 L 906.61015,134.19889 C 908.2999,135.1745 909.66058,137.53278 909.66058,139.48647 V 164.18576 L 914.96988,167.29555 V 141.76837 C 914.96988,139.81477 916.33013,139.02736 918.01986,140.00289 L 923.216,143.00295 C 924.90575,143.97847 926.26643,146.33684 926.26643,148.29045 V 173.9126 L 930.78505,176.55925 V 150.50739 C 930.78505,148.55371 932.1453,147.7663 933.83503,148.74191 L 939.0312,151.74188 C 940.72093,152.71741 942.08117,155.07551 942.08117,157.0292 V 183.1755 L 947.07988,186.10393 V 159.13133 C 947.07988,157.17755 948.44056,156.39049 950.13031,157.36611 L 955.32646,160.36608 C 957.01618,161.3416 958.37644,163.69963 958.37644,165.6534 V 192.72045 L 963.05583,195.46147 V 167.96357 C 963.05583,166.00997 964.41607,165.22203 966.1058,166.19756 L 971.30239,169.19779 C 972.99212,170.17341 974.35238,172.53204 974.35238,174.48565 V 202.07852 L 979.43101,205.05312 V 176.2168 C 979.43101,174.26311 980.79127,173.4757 982.481,174.45132 L 987.67716,177.45129 C 988.51867,177.93716 989.27823,178.76601 989.82901,179.71696 L 1001.0736,173.20805 1025.636,181.89405 V 179.49293 L 1023.7191,176.16949 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path153" + d="M 861.32615,101.70371 987.44055,169.05541 V 171.9288 L 861.32615,104.57709 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path154" + d="M 1040.4137,254.84138 1035.2222,251.84403 V 260.75844 L 1040.4137,263.75579 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path155" + d="M 1085.3302,178.59755 H 1073.9496 L 1074.5302,177.32014 H 1085.6786 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + id="path156" + d="M 1102.2849,160.67859 1100.3379,161.80282 1097.161,181.7859 1079.9903,191.69937 1091.0853,187.52715 H 1091.0859 L 1098.7166,183.12143 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path157" + d="M 1102.2849,160.67859 1100.3379,161.80282 1097.161,181.7859 1036.9253,216.56281 1036.5342,219.02239 1098.7168,183.12126 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + id="path158" + d="M 1091.2059,185.29795 1036.9253,216.56281 1036.5342,219.02239 1098.3525,183.21606 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path159" + d="M 1033.7837,222.33952 1100.5928,183.76725 1108.9212,188.57536 1042.1121,227.14764 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1102.2849,160.67859 1100.3379,161.80282 1097.161,181.7859 1036.9253,216.56281 1036.5342,219.02239 1098.7168,183.12126 Z" + id="path160" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path161" + d="M 1039.8194,194.40781 1106.6286,155.83545 1107.3962,159.59078 1040.587,198.16306 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path162" + d="M 1040.2422,237.52459 V 239.66526 L 1110.8171,198.91878 V 196.77812 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path163" + d="M 1025.6361,179.49285 1092.4452,140.92048 V 143.32169 L 1025.636,181.89405 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path164" + d="M 1025.6361,179.49276 1023.7191,176.16949 1090.5283,137.59721 1092.4451,140.92066 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path165" + d="M 982.98119,152.64946 1023.719,176.16949 1090.5282,137.59712 1049.7901,114.07701 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361384;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path166" + d="M 1023.309,170.25361 1014.5018,170.63919 1016.8863,172.02867 1023.3463,171.73742 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 863.28866,100.57061 989.40306,167.92232 987.44055,169.05541 861.32615,101.70371 Z" + id="path167" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path168" + d="M 987.44055,169.05541 989.40306,167.92232 V 170.79579 L 987.44055,171.9288 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1038.6446,255.86263 1033.4532,252.8654 V 261.77981 L 1038.6446,264.77713 Z" + id="path169" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path170" + d="M 1040.4137,254.84138 1035.2222,251.84403 1033.4532,252.8654 1038.6446,255.86263 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path171" + d="M 1108.9918,215.24766 1107.2229,216.26909 1040.4137,254.84138 1038.6447,255.86255 V 264.77705 L 1040.4137,263.75587 1107.2229,225.18341 1108.9918,224.16215 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1111.4794,216.68404 1109.7106,217.70539 1042.9014,256.27768 1041.1323,257.29894 V 266.21344 L 1042.9014,265.19218 1109.7106,226.61971 1111.4794,225.59855 Z" + id="path172" + inkscape:connector-curvature="0" /> + <rect + style="display:inline;fill:#ed658b;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect172" + width="9.6433525" + height="5.9057713" + x="1267.3273" + y="860.37103" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" /> + <rect + y="860.37103" + x="1208.6517" + height="5.9057713" + width="9.6433525" + id="rect173" + style="display:inline;fill:#ed658b;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" /> + <ellipse + cy="863.82855" + cx="1242.8112" + id="ellipse173" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" + rx="2.1288199" + ry="2.1288207" /> + <ellipse + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse174" + cx="1233.5201" + cy="863.82855" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" + rx="2.1288199" + ry="2.1288207" /> + <g + transform="matrix(0.35200969,0,0,0.35200969,1051.8926,-343.65937)" + id="g176" + style="display:inline"> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1704.5676" + cx="133.18871" + id="ellipse175" + style="opacity:1;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path175" + d="M 114.64843,1634.0823 V 1637.571 L 111.62671,1639.3156 V 1640.9243 L 114.64843,1639.1797 V 1642.6684 L 116.04116,1641.8643 V 1638.3756 L 119.06244,1636.6313 V 1635.0226 L 116.04116,1636.7669 V 1633.2782 Z" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse176" + cx="133.18871" + cy="1704.5676" /> + </g> + <g + transform="matrix(0.35200969,0,0,0.35200969,1051.8926,-343.65937)" + id="g178" + style="display:inline"> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + style="opacity:1;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse177" + cx="26.977436" + cy="1704.5676" /> + <path + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 22.66679,1687.188 V 1690.6767 L 19.645055,1692.4213 V 1694.03 L 22.66679,1692.2854 V 1695.774 L 24.059522,1694.97 V 1691.4813 L 27.080789,1689.737 V 1688.1283 L 24.059522,1689.8726 V 1686.3839 Z" + id="path177" + inkscape:connector-curvature="0" /> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1704.5676" + cx="26.977436" + id="ellipse178" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1041.1323,257.29894 V 266.21344 L 1038.6446,264.77713 V 255.86263 Z" + id="path178" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path179" + d="M 1041.1323,257.29894 1111.4794,216.68404 1108.9917,215.24775 1038.6446,255.86263 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(0.35200969,0,0,0.35200969,1049.405,-345.0957)" + id="g181" + style="display:inline"> + <rect + y="1709.6759" + x="-2.4622216" + height="16.777298" + width="27.395132" + id="rect179" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" /> + <path + style="fill:#cc2e2d;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -2.1323462,1710.907 V 1727.6844 L -7.6192306,1724.5165 V 1707.7392 Z" + id="path180" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path181" + d="M -2.1323462,1710.907 21.592532,1697.2094 16.105647,1694.0415 -7.6192306,1707.7392 Z" + style="fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.35200969,0,0,0.35200969,1100.2195,-374.43351)" + id="g183" + style="display:inline"> + <rect + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect181" + width="27.395132" + height="16.777298" + x="-2.4622216" + y="1709.6759" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path182" + d="M -2.1323462,1710.907 V 1727.6844 L -7.6192306,1724.5165 V 1707.7392 Z" + style="fill:#cc2e2d;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -2.1323462,1710.907 21.592532,1697.2094 16.105647,1694.0415 -7.6192306,1707.7392 Z" + id="path183" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + transform="matrix(0.35200969,0,0,0.35200969,1049.405,-345.0957)" + id="g184" + style="display:inline"> + <ellipse + ry="6.0476193" + rx="6.0476174" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1713.1624" + cx="114.63751" + id="ellipse183" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 384.71875,6232.7676 A 16.162436,27.994167 29.999978 0 0 375.22852,6235.4492 16.162436,27.994167 29.999978 0 0 355.43359,6269.7344 16.162436,27.994167 29.999978 0 0 356.67188,6276.9355 16.162436,27.994167 29.999979 0 0 366.72852,6274.3281 16.162436,27.994167 29.999979 0 0 386.52344,6240.043 16.162436,27.994167 29.999979 0 0 385.2832,6232.8418 16.162436,27.994167 29.999978 0 0 384.71875,6232.7678 Z" + id="path184" + transform="scale(0.26458333)" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0.35200969,0,0,0.35200969,1041.365,-340.4502)" + id="g185" + style="display:inline"> + <ellipse + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse184" + cx="114.63751" + cy="1713.1624" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + rx="6.0476174" + ry="6.0476193" /> + <path + inkscape:connector-curvature="0" + transform="scale(0.26458333)" + id="path185" + d="M 384.71875,6232.7676 A 16.162436,27.994167 29.999978 0 0 375.22852,6235.4492 16.162436,27.994167 29.999978 0 0 355.43359,6269.7344 16.162436,27.994167 29.999978 0 0 356.67188,6276.9355 16.162436,27.994167 29.999979 0 0 366.72852,6274.3281 16.162436,27.994167 29.999979 0 0 386.52344,6240.043 16.162436,27.994167 29.999979 0 0 385.2832,6232.8418 16.162436,27.994167 29.999978 0 0 384.71875,6232.7678 Z" + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + id="g186" + transform="matrix(0.35200969,0,0,0.35200969,1033.3124,-335.80464)" + style="display:inline"> + <ellipse + ry="6.0476193" + rx="6.0476174" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1713.1624" + cx="114.63751" + id="ellipse185" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 384.71875,6232.7676 A 16.162436,27.994167 29.999978 0 0 375.22852,6235.4492 16.162436,27.994167 29.999978 0 0 355.43359,6269.7344 16.162436,27.994167 29.999978 0 0 356.67188,6276.9355 16.162436,27.994167 29.999979 0 0 366.72852,6274.3281 16.162436,27.994167 29.999979 0 0 386.52344,6240.043 16.162436,27.994167 29.999979 0 0 385.2832,6232.8418 16.162436,27.994167 29.999978 0 0 384.71875,6232.7678 Z" + id="path186" + transform="scale(0.26458333)" + inkscape:connector-curvature="0" /> + </g> + <path + id="path187" + d="M 1011.0069,203.97356 1009.0028,205.13079 1019.8822,211.41218 C 1020.8443,211.96767 1021.6187,211.51949 1021.6187,210.40695 V 210.10074 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path188" + d="M 1016.1821,187.09503 1011.0071,190.08309 1005.3013,202.86636 C 1005.3019,202.86693 1005.3013,202.86736 1005.3013,202.86836 L 1013.2362,205.2617 1021.6166,200.4233 V 192.24165 C 1021.6166,191.12912 1020.8418,189.78642 1019.8796,189.23091 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path189" + d="M 1011.0069,203.97356 V 190.08309 L 1006.072,187.23393 1005.301,202.86783 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cssccccsccc" + id="path190" + d="M 1005.1547,180.92559 C 1004.5723,180.91339 1004.1721,181.36937 1004.1721,182.16899 V 200.33366 C 1004.1721,201.44613 1004.9469,202.7889 1005.909,203.3444 L 1016.6636,209.55406 1018.6677,208.39683 1007.8088,202.1273 C 1006.8467,201.5718 1006.0719,200.22903 1006.0719,199.11656 V 181.25765 L 1005.909,181.16375 C 1005.6384,181.00759 1005.3825,180.93059 1005.1547,180.92559 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path191" + d="M 1026.4015,191.45691 C 1025.7623,191.44271 1025.323,191.94411 1025.323,192.82175 V 212.34934 C 1025.323,213.57039 1026.1733,215.04435 1027.2294,215.65401 L 1030.2395,217.39201 C 1031.2956,218.00175 1031.9802,217.40101 1032.1459,216.28849 L 1032.1609,216.18211 C 1032.0929,216.15141 1032.0226,216.11631 1031.951,216.07484 L 1028.9408,214.33692 C 1027.8847,213.72719 1027.0345,212.25323 1027.0345,211.03218 V 191.61757 C 1026.8091,191.51355 1026.5957,191.46123 1026.4007,191.45692 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path192" + d="M 1094.9007,223.38318 1091.64,221.50085 1094.3894,208.40334 1094.9007,208.10812 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path193" + d="M 1107.2228,216.26901 1103.7731,218.26079 1105.974,201.71503 1110.8171,198.91878 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path194" + d="M 1103.7731,218.26079 V 202.98566 L 1105.974,201.71503 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1043.8634,252.84959 1040.4137,254.84138 1040.2421,239.66526 1046.6165,235.98507 Z" + id="path195" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.35200969,0,0,0.35200969,1049.405,-345.0957)" + id="g200" + style="display:inline"> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path196" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path197" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path198" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse198" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + transform="scale(0.26458333)" + id="path199" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse199" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path200" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + cy="1675.6819" + cx="-168.4836" + id="ellipse200" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + rx="7.2083259" + ry="7.2247276" /> + </g> + <path + inkscape:connector-curvature="0" + id="path201" + d="M 991.44704,216.62633 C 990.62964,216.14618 989.97157,216.53143 989.97157,217.49028 V 219.0331 L 992.92249,220.7665 V 219.22366 C 992.92249,218.26488 992.26444,217.10647 991.44704,216.62633 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path202" + d="M 991.44695,216.62625 C 990.62955,216.14611 989.97148,216.53155 989.97148,217.4903 V 218.07655 C 989.97148,217.11777 990.62955,216.73233 991.44695,217.21249 992.26436,217.69263 992.92244,218.85119 992.92244,219.80994 V 219.22372 C 992.92244,218.26494 992.26436,217.10641 991.44695,216.62625 Z" + style="display:inline;fill:#162834;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <ellipse + ry="0.77717239" + rx="0.76721501" + transform="matrix(0.86224624,0.5064893,0,1,0,0)" + cy="-364.11966" + cx="1149.842" + id="ellipse202" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360695;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 991.44704,216.62633 C 990.62964,216.14618 989.97157,216.53143 989.97157,217.49028 V 219.0331 L 992.92249,220.7665 V 219.22366 C 992.92249,218.26488 992.26444,217.10647 991.44704,216.62633 Z" + id="path203" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path204" + d="M 1014.2624,226.14051 V 231.04431 C 1018.6737,233.92673 1022.746,238.57798 1025.6949,243.94835 L 1027.3287,244.89737 V 233.73054 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path205" + d="M 1032.3778,214.73501 1031.0047,215.52796 1032.1601,216.19524 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path206" + d="M 1037.7048,211.65986 1036.9255,216.5627 1097.1611,181.78611 1093.3043,179.55927 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path207" + d="M 1039.7185,197.85319 1037.6774,199.03167 1038.0082,196.87836 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + id="path208" + d="M 863.28853,100.57064 861.32614,101.70381 967.16549,158.2278 969.12835,157.09464 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path209" + d="M 863.28866,100.57061 989.40306,167.92232 987.44055,169.05541 861.32615,101.70371 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path210" + d="M 1026.4013,191.45704 C 1025.7621,191.44314 1025.323,191.94389 1025.323,192.82155 V 204.0906 L 1027.0355,203.10168 V 191.61761 C 1026.8101,191.51362 1026.5962,191.46133 1026.4013,191.45704 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1026.4015,191.45691 C 1025.7623,191.44271 1025.323,191.94411 1025.323,192.82175 V 212.34934 C 1025.323,213.57039 1026.1733,215.04435 1027.2294,215.65401 L 1030.2395,217.39201 C 1031.2956,218.00175 1031.9802,217.40101 1032.1459,216.28849 L 1032.1609,216.18211 C 1032.0929,216.15141 1032.0226,216.11631 1031.951,216.07484 L 1028.9408,214.33692 C 1027.8847,213.72719 1027.0345,212.25323 1027.0345,211.03218 V 191.61757 C 1026.8091,191.51355 1026.5957,191.46123 1026.4007,191.45692 Z" + id="path211" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1005.1547,180.92564 C 1004.5723,180.91344 1004.172,181.36955 1004.172,182.16916 V 200.33375 C 1004.172,201.44622 1004.9467,202.78912 1005.9089,203.3446 L 1019.882,211.41217 C 1020.8442,211.96766 1021.6188,211.51935 1021.6188,210.4068 V 210.1007 L 1007.8089,202.12732 C 1006.8467,201.57184 1006.072,200.22894 1006.072,199.11647 V 181.2578 L 1005.9089,181.1635 C 1005.6383,181.00734 1005.3826,180.93061 1005.1547,180.92561 Z" + id="path212" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path213" + d="M 1029.6195,122.84921 1031.582,121.71612 V 124.58959 L 1029.6195,125.7226 Z" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path214" + d="M 1035.5133,129.12541 H 1031.7636 L 1027.9044,126.9067 1029.7792,125.82425 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.87782576,0,0,0.87782576,1382.6475,-777.32309)" + id="g217" + style="display:inline"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path215" + d="M -395.44777,1029.3331 -393.21213,1028.0423 V 1031.3157 L -395.44777,1032.6064 Z" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.410626;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -395.44775,1032.6064 -402.16182,1028.73 -402.16179,1025.4567 -395.44777,1029.3331 Z" + id="path216" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path217" + d="M -393.21213,1028.0423 -399.92615,1024.1659 -402.16179,1025.4567 -395.44777,1029.3331 Z" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1021.4188,137.26785 H 1017.6692 L 1013.8099,135.04915 1015.6847,133.9667 Z" + id="path218" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <g + transform="matrix(0.87782576,0,0,0.87782576,1368.5302,-769.21192)" + id="g221" + style="display:inline"> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.410626;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -395.44777,1029.3331 -393.21213,1028.0423 V 1031.3157 L -395.44777,1032.6064 Z" + id="path219" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path220" + d="M -395.44775,1032.6064 -402.16182,1028.73 -402.16179,1025.4567 -395.44777,1029.3331 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -393.21213,1028.0423 -399.92615,1024.1659 -402.16179,1025.4567 -395.44777,1029.3331 Z" + id="path221" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path222" + d="M 1007.0174,145.5813 H 1003.2678 L 999.40851,143.36259 1001.2834,142.28014 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="g225" + transform="matrix(0.87782576,0,0,0.87782576,1354.3406,-760.89759)" + style="display:inline"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path223" + d="M -395.44777,1029.3331 -393.21213,1028.0423 V 1031.3157 L -395.44777,1032.6064 Z" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.410626;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -395.44775,1032.6064 -402.16182,1028.73 -402.16179,1025.4567 -395.44777,1029.3331 Z" + id="path224" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path225" + d="M -393.21213,1028.0423 -399.92615,1024.1659 -402.16179,1025.4567 -395.44777,1029.3331 Z" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + inkscape:connector-curvature="0" + id="path226" + d="M 1023.9545,169.86314 A 1.976077,1.1442208 0 0 0 1022.5286,170.19787 1.976077,1.1442208 0 0 0 1022.2805,170.37555 H 1021.9499 V 170.99047 171.02487 171.02487 A 1.976077,1.1442208 0 0 0 1022.5267,171.81659 1.976077,1.1442208 0 0 0 1025.3212,171.81659 1.976077,1.1442208 0 0 0 1025.8996,171.02487 V 170.37674 H 1025.5717 A 1.976077,1.1442208 0 0 0 1025.3212,170.19905 1.976077,1.1442208 0 0 0 1023.9525,169.86433 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <circle + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.359746;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="circle226" + cx="761.58154" + cy="-421.28323" + r="1.5789555" + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1022.15,170.19355 1023.4945,170.071 1024.3142,170.82782 1022.6832,171.29216 1022.0404,170.69155 Z" + id="path227" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <circle + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" + r="1.5789555" + cy="-421.28323" + cx="761.58154" + id="circle227" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.359746;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path228" + d="M 1023.1846,152.35519 V 170.32378 A 0.74313185,0.3733066 0 0 0 1023.1846,170.36368 V 170.37168 H 1023.1851 A 0.74313185,0.3733066 0 0 0 1023.4004,170.6086 0.74313185,0.3733066 0 0 0 1024.4511,170.6086 0.74313185,0.3733066 0 0 0 1024.666,170.37168 V 170.37168 170.36468 A 0.74313185,0.3733066 0 0 0 1024.666,170.32008 V 152.38354 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1023.1841,152.35519 V 170.32378 A 0.41503222,0.3733066 0 0 0 1023.1841,170.36368 V 170.37168 H 1023.1844 A 0.41503222,0.3733066 0 0 0 1023.3046,170.6086 0.41503222,0.3733066 0 0 0 1023.8914,170.6086 0.41503222,0.3733066 0 0 0 1024.0113,170.37168 H 1024.0118 V 170.36468 A 0.41503222,0.3733066 0 0 0 1024.0118,170.32008 V 152.38354 Z" + id="path229" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1023.1846,152.35519 V 170.32378 A 0.74313185,0.3733066 0 0 0 1023.1846,170.36368 V 170.37168 H 1023.1851 A 0.74313185,0.3733066 0 0 0 1023.4004,170.6086 0.74313185,0.3733066 0 0 0 1024.4511,170.6086 0.74313185,0.3733066 0 0 0 1024.666,170.37168 V 170.37168 170.36468 A 0.74313185,0.3733066 0 0 0 1024.666,170.32008 V 152.38354 Z" + id="path230" + inkscape:connector-curvature="0" /> + <circle + transform="matrix(0.89093626,0.45412837,-0.89093626,0.45412837,0,0)" + r="0.54311258" + cy="-407.00223" + cx="742.26721" + id="circle230" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.372332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path231" + d="M 1082.8424,136.78246 1064.891,137.56853 A 0.74313185,0.3733066 87.492665 0 0 1064.851,137.57053 L 1064.841,137.57084 V 137.57135 A 0.74313185,0.3733066 87.492665 0 0 1064.6137,137.79679 0.74313185,0.3733066 87.492665 0 0 1064.6597,138.84654 0.74313185,0.3733066 87.492665 0 0 1064.9058,139.05077 V 139.05177 L 1064.9158,139.05144 A 0.74313185,0.3733066 87.492665 0 0 1064.9608,139.04944 L 1082.8802,138.26651 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1083.4877,136.55603 A 1.976077,1.1442208 0 0 0 1082.0618,136.89075 1.976077,1.1442208 0 0 0 1081.8137,137.06844 H 1081.483 V 137.68336 137.71776 137.71776 A 1.976077,1.1442208 0 0 0 1082.0599,138.50948 1.976077,1.1442208 0 0 0 1084.8544,138.50948 1.976077,1.1442208 0 0 0 1085.4328,137.71776 V 137.06963 H 1085.1054 A 1.976077,1.1442208 0 0 0 1084.8548,136.89194 1.976077,1.1442208 0 0 0 1083.4862,136.55721 Z" + id="path232" + inkscape:connector-curvature="0" /> + <circle + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" + r="1.5789555" + cy="-488.93219" + cx="762.70679" + id="circle232" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.359746;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path233" + d="M 1081.7082,136.83767 1083.0933,136.75567 1083.9129,137.51248 1082.2819,137.97683 1081.6392,137.37622 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <circle + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.359746;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="circle233" + cx="762.70679" + cy="-488.93219" + r="1.5789555" + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" /> + <path + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1082.7178,119.04808 V 137.01666 A 0.74313185,0.3733066 0 0 0 1082.7178,137.05656 V 137.06456 H 1082.7183 A 0.74313185,0.3733066 0 0 0 1082.9336,137.30148 0.74313185,0.3733066 0 0 0 1083.9843,137.30148 0.74313185,0.3733066 0 0 0 1084.1992,137.06456 V 137.06456 137.05756 A 0.74313185,0.3733066 0 0 0 1084.1992,137.01296 V 119.07643 Z" + id="path234" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path235" + d="M 1082.7173,119.04808 V 137.01666 A 0.41503222,0.3733066 0 0 0 1082.7173,137.05656 V 137.06456 H 1082.7176 A 0.41503222,0.3733066 0 0 0 1082.8378,137.30148 0.41503222,0.3733066 0 0 0 1083.4246,137.30148 0.41503222,0.3733066 0 0 0 1083.5445,137.06456 H 1083.545 V 137.05756 A 0.41503222,0.3733066 0 0 0 1083.545,137.01296 V 119.07643 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path236" + d="M 1082.7178,119.04808 V 137.01666 A 0.74313185,0.3733066 0 0 0 1082.7178,137.05656 V 137.06456 H 1082.7183 A 0.74313185,0.3733066 0 0 0 1082.9336,137.30148 0.74313185,0.3733066 0 0 0 1083.9843,137.30148 0.74313185,0.3733066 0 0 0 1084.1992,137.06456 V 137.06456 137.05756 A 0.74313185,0.3733066 0 0 0 1084.1992,137.01296 V 119.07643 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <circle + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.372332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="circle236" + cx="739.00623" + cy="-477.08417" + r="0.54311258" + transform="matrix(0.89093626,0.45412837,-0.89093626,0.45412837,0,0)" /> + <path + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1012.7372,227.02109 V 231.92489 C 1017.1485,234.80731 1021.2208,239.45858 1024.1697,244.82892 L 1025.8035,245.77795 V 234.61112 Z" + id="path237" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path238" + d="M 1025.8035,245.77795 1027.3287,244.89737 V 233.73054 L 1025.8035,234.61112 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1012.7372,227.02109 1014.2624,226.14051 1027.3287,233.73054 1025.8035,234.61112 Z" + id="path239" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path240" + d="M 1094.5406,223.38237 1091.6416,221.70721 1089.8275,222.75509 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path241" + d="M 1006.072,183.93782 1008.393,182.59784 1006.072,181.25785 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g247" + transform="translate(439.73068,-1.0194354)"> + <path + id="path242" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g245" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path243" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path244" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path245" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <g + aria-label="A" + transform="matrix(-0.93060465,0.53728509,0.93060465,0.53728509,0,0)" + id="g246" + style="font-size:27.1725px;display:inline;fill:#393d46;stroke-width:20.2722;stroke-linecap:round;stroke-linejoin:round"> + <path + d="M -504.96973,779.72791 -507.30657,773.72278 H -514.99639 L -517.30605,779.72791 H -519.77875 L -512.19762,760.24522 H -509.99665 L -502.44269,779.72791 Z M -510.21403,765.67972 Q -510.29553,765.46234 -510.48575,764.89172 -510.67596,764.3211 -510.86617,763.7233 -511.0292,763.09833 -511.13789,762.77226 -511.3281,763.61461 -511.57265,764.42979 -511.8172,765.21779 -511.98024,765.67972 L -514.18121,771.54898 H -508.04023 Z" + style="-inkscape-font-specification:sans-serif" + id="path246" /> + </g> + </g> + <g + id="g251" + transform="translate(-0.21972784,-0.93770723)"> + <path + id="path247" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1125.491,114.79323 1113.395,121.77723 1141.0509,137.45748 1148.5828,137.27411 1121.0282,121.41327 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g250" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,628.61706,-152.20289)"> + <path + id="path248" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path249" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path250" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + sodipodi:type="star" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.365874" + id="path251" + inkscape:flatsided="false" + sodipodi:sides="5" + sodipodi:cx="160.2216" + sodipodi:cy="25.069553" + sodipodi:r1="19.20122" + sodipodi:r2="9.6006098" + sodipodi:arg1="1.5707963" + sodipodi:arg2="2.1991149" + inkscape:rounded="0" + inkscape:randomized="0" + d="M 160.2216,44.270773 154.57851,32.83661 141.96016,31.003057 151.09088,22.102801 148.93541,9.5354407 160.2216,15.468944 171.5078,9.5354401 169.35233,22.102802 178.48305,31.003056 165.8647,32.83661 Z" + inkscape:transform-center-y="-0.57706645" + transform="matrix(0.59336436,-0.34257927,-0.59336436,-0.34257927,1068.6884,177.71405)" /> + </g> + <g + id="g254" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,496.3357,-228.57558)"> + <path + id="path252" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path253" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path254" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="g259" + transform="translate(571.81864,-26.101494)"> + <path + id="path255" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1081.4198,89.317081 1069.3238,96.301081 1096.9797,111.98133 1104.5115,111.79796 1076.957,95.937121 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g258" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,584.46179,-177.69595)"> + <path + id="path256" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path257" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path258" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + style="color:#000000;display:inline;fill:#393d46;fill-opacity:1;fill-rule:evenodd;stroke-width:1.14333;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1112.0352,82.073781 C 1105.2629,80.084704 1096.5851,81.54203 1093.1151,85.527448 1089.9765,89.132327 1092.3167,93.742539 1098.6962,95.567485 1104.4115,97.202409 1111.7035,95.957431 1114.5544,92.575828 1117.0788,89.581371 1115.1052,85.770601 1109.7691,84.304445 1105.1114,83.024648 1099.2005,84.058913 1096.9744,86.839997 1095.0663,89.223732 1096.6775,92.238453 1100.9784,93.341055 1104.5779,94.26387 1109.1153,93.437605 1110.7039,91.249778 1111.991,89.477201 1110.7349,87.249066 1107.4489,86.522419 1104.9078,85.96052 1101.7117,86.589229 1100.8014,88.204898 1100.4737,88.786491 1100.5422,89.41205 1100.9712,89.961721 1101.4001,90.511403 1102.2635,90.996873 1103.4362,91.145044 1104.1932,91.240684 1104.9535,91.174474 1105.6409,90.949941 1106.3282,90.725468 1106.9578,90.24312 1106.9151,89.673715 1106.8821,89.234049 1106.6077,89.04337 1106.1353,88.818113 1105.8991,88.705476 1105.5488,88.578347 1105.0308,88.594285 1104.5128,88.610185 1104.0193,88.834881 1103.8063,89.047845 A 1.1466641,0.66202713 0 0 0 1104.1691,89.82829 C 1104.0781,89.83439 1103.9811,89.85882 1103.9263,89.85191 1103.509,89.79921 1103.245,89.654521 1103.0602,89.417779 1102.8756,89.181043 1102.8428,88.863011 1102.9832,88.614547 1103.4456,87.79392 1105.2216,87.447439 1106.6303,87.758934 1108.6086,88.196389 1109.405,89.614299 1108.5892,90.737914 1107.5315,92.194646 1104.3893,92.767306 1101.9095,92.131551 1098.8474,91.346538 1097.665,89.133656 1099.0567,87.394902 1100.7194,85.317806 1105.2414,84.527107 1108.7838,85.500409 1112.915,86.635532 1114.4745,89.645224 1112.4923,91.99641 1110.2224,94.688893 1104.317,95.698086 1099.7151,94.381632 1094.5202,92.895563 1092.586,89.085462 1095.1654,86.122904 1098.0435,82.817228 1105.3354,81.591236 1110.9957,83.253715 A 1.1466641,0.66202713 0 0 0 1112.5376,82.964863 1.1466641,0.66202713 0 0 0 1112.0359,82.07378 Z" + id="path259" /> + </g> + <g + id="g264" + transform="translate(351.9554,-0.92586975)"> + <path + id="path260" + style="fill:#aeaaa3;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1037.3127,63.883432 1025.2167,70.867432 1052.8725,86.547682 1060.4044,86.364312 1032.8499,70.503471 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g263" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,540.4387,-203.11269)"> + <path + id="path261" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path262" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path263" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path264" + style="color:#000000;display:inline;fill:#393d46;stroke-width:1.07457;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1070.0966,57.351845 A 1.2250855,0.55302384 20.446701 0 0 1069.214,57.038777 L 1064.895,56.370767 1057.8525,55.281017 A 0.48342044,1.4014741 83.467841 0 0 1055.9061,55.582154 L 1050.0281,58.976309 1050.0277,58.976055 1047.5887,60.384191 A 0.70924761,0.9552394 53.596003 0 0 1047.0667,61.508209 L 1048.2242,64.002041 1048.2247,64.001782 1050.1113,68.067253 V 68.067766 A 1.2250855,0.55302362 20.446717 0 0 1051.5361,68.890409 L 1059.5663,70.132495 1062.898,70.647917 A 0.48342044,1.4014741 83.467836 0 0 1064.8444,70.346785 L 1068.0068,68.52098 1073.1618,65.544736 A 0.70924761,0.9552394 53.596003 0 0 1073.6838,64.421219 0.70924761,0.9552394 53.596003 0 0 1073.6834,64.420977 L 1073.683,64.420718 1070.6388,57.861421 A 1.2250855,0.55302384 20.446701 0 0 1070.0966,57.351845 Z M 1068.6924,58.162548 1071.4357,64.073379 1061.1979,62.48954 1058.4546,56.578715 Z M 1056.5082,56.879842 1059.2514,62.790679 1051.7569,67.117671 1049.0136,61.206834 Z M 1070.9142,65.197149 1063.4214,69.523133 1053.1835,67.939289 1060.6763,63.61331 Z" /> + </g> + <circle + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.536791" + id="circle264" + cx="624.65979" + cy="-549.17584" + r="9.7096739" + transform="matrix(0.8660253,0.50000017,-0.8660253,0.50000017,0,0)" /> + <g + id="g271" + transform="matrix(2.1770078,0,0,2.1770078,800.12196,-1.2340232)" + style="display:inline"> + <path + id="path265" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.412846,0 66.375277,6.378422 78.955387,13.648779 91.534981,6.378422 80.497929,0 Z" /> + <path + id="path266" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.247998,0 66.333936,6.3065918 A 0.0830083,0.0830083 0 0 0 66.333936,6.4512858 L 78.914046,13.72061 A 0.0830083,0.0830083 0 0 0 78.996216,13.72061 L 91.576326,6.4512858 A 0.0830083,0.0830083 0 0 0 91.576326,6.3065918 L 80.66226,0 H 80.333598 L 91.3691,6.3789388 78.954871,13.552661 66.541158,6.3789388 77.576143,0 Z" /> + <g + id="g268"> + <path + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.375395,6.3784537 78.955264,13.648536 V 16.867219 L 66.375395,9.5971364 Z" + id="path267" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.333984,6.3066406 A 0.0830093,0.0830093 0 0 0 66.292964,6.3789066 V 9.5976567 A 0.0830093,0.0830093 0 0 0 66.333984,9.6699227 L 78.914062,16.939454 A 0.0830093,0.0830093 0 0 0 79.039062,16.867184 V 13.648435 A 0.0830093,0.0830093 0 0 0 78.996092,13.576165 L 66.416016,6.3066406 A 0.0830093,0.0830093 0 0 0 66.333986,6.3066406 Z M 66.458984,6.5234375 78.873047,13.697266 V 16.724609 L 66.458984,9.5488281 Z" + id="path268" /> + </g> + <g + id="g270"> + <path + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.542269,6.3784529 78.9624,13.648536 V 16.867218 L 91.542269,9.5971356 Z" + id="path269" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.5,6.3066406 78.919922,13.576172 A 0.0830083,0.0830083 0 0 0 78.878902,13.648442 V 16.867191 A 0.0830083,0.0830083 0 0 0 79.003902,16.939461 L 91.583984,9.6699219 A 0.0830083,0.0830083 0 0 0 91.625,9.5976563 V 6.3789062 A 0.0830083,0.0830083 0 0 0 91.5,6.3066406 Z M 91.45898,6.5234375 V 9.5488281 L 79.044922,16.722656 V 13.697266 Z" + id="path270" /> + </g> + </g> + <g + id="g272" + transform="matrix(1.6090126,0.9289643,-1.6090126,0.9289643,792.05734,-108.72376)" + style="display:inline;fill:#393d46;fill-opacity:1;stroke-width:1.17174"> + <path + id="path271" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.19451;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 125.16225,4.4356472 C 124.89974,4.173147 124.47744,4.1731317 124.21495,4.4356424 L 123.50546,5.1451377 125.17637,6.8160619 125.88588,6.1065668 C 126.14837,5.8440588 126.14839,5.4217786 125.88586,5.1592691 Z M 122.74381,5.9067728 117.90697,10.743619 C 117.78668,10.863892 117.72163,11.018155 117.71157,11.174874 117.71134,11.178474 117.71077,11.181974 117.71059,11.185544 L 117.49814,12.823818 119.14712,12.610382 C 119.30375,12.600242 119.45769,12.534692 119.5779,12.414491 L 124.41474,7.5776448 Z" /> + <rect + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.194509;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + id="rect271" + width="0.90115213" + height="8.5846138" + x="12.823818" + y="-126.08275" + transform="rotate(90)" /> + </g> + <path + id="path272" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1125.2395,13.005084 1113.1435,19.989077 1140.7994,35.669346 1148.3313,35.486042 1120.7767,19.625212 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g279" + transform="matrix(2.1770078,0,0,2.1770078,976.42948,-1.2340232)" + style="display:inline"> + <path + id="path273" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.412846,0 66.375277,6.378422 78.955387,13.648779 91.534981,6.378422 80.497929,0 Z" /> + <path + id="path274" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.247998,0 66.333936,6.3065918 A 0.0830083,0.0830083 0 0 0 66.333936,6.4512858 L 78.914046,13.72061 A 0.0830083,0.0830083 0 0 0 78.996216,13.72061 L 91.576326,6.4512858 A 0.0830083,0.0830083 0 0 0 91.576326,6.3065918 L 80.66226,0 H 80.333598 L 91.3691,6.3789388 78.954871,13.552661 66.541158,6.3789388 77.576143,0 Z" /> + <g + id="g276"> + <path + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.375395,6.3784537 78.955264,13.648536 V 16.867219 L 66.375395,9.5971364 Z" + id="path275" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.333984,6.3066406 A 0.0830093,0.0830093 0 0 0 66.292964,6.3789066 V 9.5976567 A 0.0830093,0.0830093 0 0 0 66.333984,9.6699227 L 78.914062,16.939454 A 0.0830093,0.0830093 0 0 0 79.039062,16.867184 V 13.648435 A 0.0830093,0.0830093 0 0 0 78.996092,13.576165 L 66.416016,6.3066406 A 0.0830093,0.0830093 0 0 0 66.333986,6.3066406 Z M 66.458984,6.5234375 78.873047,13.697266 V 16.724609 L 66.458984,9.5488281 Z" + id="path276" /> + </g> + <g + id="g278"> + <path + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.542269,6.3784529 78.9624,13.648536 V 16.867218 L 91.542269,9.5971356 Z" + id="path277" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.5,6.3066406 78.919922,13.576172 A 0.0830083,0.0830083 0 0 0 78.878902,13.648442 V 16.867191 A 0.0830083,0.0830083 0 0 0 79.003902,16.939461 L 91.583984,9.6699219 A 0.0830083,0.0830083 0 0 0 91.625,9.5976563 V 6.3789062 A 0.0830083,0.0830083 0 0 0 91.5,6.3066406 Z M 91.45898,6.5234375 V 9.5488281 L 79.044922,16.722656 V 13.697266 Z" + id="path278" /> + </g> + </g> + <g + id="g286"> + <path + id="path279" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1075.1389,-1.2340232 1096.6534,10.964352 1104.1853,10.780976 1083.3131,-1.2340232 Z" /> + <g + id="g285" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path280" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path281" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path282" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path283" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path284" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path285" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + </g> + <g + id="g291" + transform="matrix(2.1770078,0,0,2.1770078,624.64001,-1.2340232)" + style="display:inline"> + <path + id="path286" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path287" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path288" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path289" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path290" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path291" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + <path + id="path292" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.7731,38.326642 1157.6771,45.310635 1185.333,60.990903 1192.8648,60.807597 1165.3103,44.946769 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g295" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.81506,-228.6863)"> + <path + id="path293" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path294" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path295" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path296" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1192.6812,27.047492 1175.4494,36.996383 1192.6812,46.945274 1209.913,36.996383 Z" /> + <path + id="path297" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.988364;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" + d="M 1181.4593,34.711977 1177.3901,36.995726 1181.4593,39.278351 1184.1998,37.73935 H 1185.2123 1186.2203 1199.1488 1200.1545 1201.1681 L 1203.912,39.278351 1207.9767,36.995726 1203.912,34.711977 1201.1681,36.252101 V 36.250901 H 1200.1601 1199.1499 1186.2192 1185.2067 1184.1998 Z" /> + <path + id="path298" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1055.1873,332.35816 1043.0913,339.34216 1070.7472,355.02242 1078.279,354.83912 1050.7245,338.97829 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g302" + transform="matrix(2.1770078,0,0,2.1770078,686.01547,89.125615)" + style="display:inline"> + <g + id="g301" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(1.3379224,0,0,1.339215,-58.698092,-10.923431)"> + <path + id="path299" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path300" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path301" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path302" + style="fill:#393d46;fill-opacity:1;stroke-width:0.15448;stroke-linecap:round;stroke-linejoin:round" + d="M 178.15156,113.32062 C 179.6369,114.17818 182.08848,114.15315 183.62728,113.26472 185.16609,112.37629 185.20943,110.96087 183.72408,110.10331 182.23873,109.24575 176.17272,108.96083 176.17272,108.96083 176.17272,108.96083 176.66621,112.46304 178.15156,113.32061 Z" + sodipodi:nodetypes="ssscs" /> + </g> + <path + id="path303" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1098.8562,306.97713 1086.7602,313.96112 1114.4161,329.64139 1121.9479,329.45808 1094.3934,313.59725 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g307" + transform="matrix(2.1770078,0,0,2.1770078,773.97272,38.340133)" + style="display:inline"> + <g + id="g306" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(1.3379224,0,0,1.339215,-78.888748,0.76269957)"> + <path + id="path304" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path305" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path306" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path307" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.154481;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 165.73445,122.58447 C 165.73444,122.36044 165.42233,122.18023 165.03431,122.18024 H 163.98554 L 163.98553,123.60626 H 165.03431 C 165.42233,123.60626 165.73445,123.42607 165.73444,123.20203 Z M 162.85969,122.18024 H 155.70993 C 155.53213,122.18023 155.37004,122.21834 155.24678,122.28088 155.24378,122.28188 155.24078,122.28388 155.23778,122.28488 L 153.86992,122.8933 155.24642,123.50587 C 155.36968,123.56837 155.5319,123.6061 155.70959,123.6061 H 162.85935 Z" /> + </g> + <path + id="path308" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 861.33951,13.005085 849.24351,19.989077 876.8994,35.669346 884.43125,35.486042 856.87671,19.625212 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g315" + transform="matrix(2.1770078,0,0,2.1770078,712.52949,-1.2340232)" + style="display:inline"> + <path + id="path309" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.412846,0 66.375277,6.378422 78.955387,13.648779 91.534981,6.378422 80.497929,0 Z" /> + <path + id="path310" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.247998,0 66.333936,6.3065918 A 0.0830083,0.0830083 0 0 0 66.333936,6.4512858 L 78.914046,13.72061 A 0.0830083,0.0830083 0 0 0 78.996216,13.72061 L 91.576326,6.4512858 A 0.0830083,0.0830083 0 0 0 91.576326,6.3065918 L 80.66226,0 H 80.333598 L 91.3691,6.3789388 78.954871,13.552661 66.541158,6.3789388 77.576143,0 Z" /> + <g + id="g312"> + <path + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.375395,6.3784537 78.955264,13.648536 V 16.867219 L 66.375395,9.5971364 Z" + id="path311" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.333984,6.3066406 A 0.0830093,0.0830093 0 0 0 66.292964,6.3789066 V 9.5976567 A 0.0830093,0.0830093 0 0 0 66.333984,9.6699227 L 78.914062,16.939454 A 0.0830093,0.0830093 0 0 0 79.039062,16.867184 V 13.648435 A 0.0830093,0.0830093 0 0 0 78.996092,13.576165 L 66.416016,6.3066406 A 0.0830093,0.0830093 0 0 0 66.333986,6.3066406 Z M 66.458984,6.5234375 78.873047,13.697266 V 16.724609 L 66.458984,9.5488281 Z" + id="path312" /> + </g> + <g + id="g314"> + <path + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.542269,6.3784529 78.9624,13.648536 V 16.867218 L 91.542269,9.5971356 Z" + id="path313" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.5,6.3066406 78.919922,13.576172 A 0.0830083,0.0830083 0 0 0 78.878902,13.648442 V 16.867191 A 0.0830083,0.0830083 0 0 0 79.003902,16.939461 L 91.583984,9.6699219 A 0.0830083,0.0830083 0 0 0 91.625,9.5976563 V 6.3789062 A 0.0830083,0.0830083 0 0 0 91.5,6.3066406 Z M 91.45898,6.5234375 V 9.5488281 L 79.044922,16.722656 V 13.697266 Z" + id="path314" /> + </g> + </g> + <g + id="g316" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path315" + style="color:#000000;fill:#ffeedc;stroke-width:0.554001;-inkscape-stroke:none" + d="M 37.117631,2.8871623 36.190556,3.4220133 37.117631,3.9573812 38.045223,3.4220133 Z M 42.921928,4.5743978 41.994853,5.1087321 42.921928,5.6446167 43.849003,5.1087321 Z M 34.195846,6.2373454 33.26877,6.7721965 34.195846,7.3075643 35.122921,6.7721965 Z M 40.000142,7.9245809 39.073067,8.459432 40.000142,8.9953166 40.927734,8.459432 Z" /> + <path + id="path316" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:3.0541;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 37.117631,2.5905396 37.053551,2.6272296 35.676891,3.4220131 37.11763,4.2540037 34.195845,5.9407225 34.131245,5.9774125 32.754585,6.7721961 34.195841,7.6041866 35.636579,6.7727128 38.558882,8.4599483 38.559398,8.4594316 40.000137,9.2914221 41.441393,8.4594316 40.000137,7.6284745 39.944847,7.6594805 42.921926,5.9407224 44.363182,5.1087318 42.921926,4.2777748 42.857846,4.3139478 41.481186,5.1087313 38.558884,3.4220125 Z M 37.117631,2.8871623 38.045223,3.4220133 37.117631,3.9573812 36.190556,3.4220133 Z M 42.921928,4.5743978 43.849003,5.1087321 42.921928,5.6446167 41.994853,5.1087321 Z M 34.195846,6.2373454 35.122921,6.7721965 34.195846,7.3075643 33.26877,6.7721965 Z M 40.000142,7.9245809 40.927734,8.459432 40.000142,8.9953166 39.073067,8.459432 Z" /> + </g> + <path + id="path317" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:1.12236;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" + d="M 1146.3373,4.948851 1156.6329,10.893055 1157.2988,14.249753 1157.8229,16.888419 1152.2873,13.692405 C 1151.9821,13.516215 1151.4911,13.515856 1151.1859,13.692045 1150.8807,13.868234 1150.8807,14.152103 1151.1859,14.328293 L 1156.7209,17.523947 1152.1512,17.221673 1146.3373,16.83726 1136.0416,10.893056 Z" /> + <g + id="g323" + transform="translate(571.91923,-127.43815)"> + <path + id="path318" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1125.354,317.66016 1113.258,324.64415 1140.9138,340.32442 1148.4457,340.14111 1120.8912,324.28029 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g322" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <g + id="g321" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(1.3379224,0,0,1.339215,-78.98167,23.831445)"> + <path + id="path319" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path320" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path321" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path322" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.515556;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" + d="M 160.51898,142.89954 157.18109,144.8267 154.62152,146.30453 157.89047,148.27108 160.51898,146.75386 162.40383,146.87822 163.88531,146.97632 162.0909,145.94016 C 161.992,145.88306 161.992,145.79119 162.0909,145.7341 162.1898,145.677 162.34903,145.677 162.44796,145.7341 L 164.24236,146.77025 164.07241,145.915 163.85686,144.82668 Z" /> + </g> + </g> + <g + id="g325" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,320.54532,-228.8511)"> + <path + id="path323" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path324" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path325" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="g329" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path326" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.321057 V 36.379175 L 11.296985,29.849858 Z" /> + <path + id="path327" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.225456 V 23.417175 L 11.131104,29.849858 0,36.282023 V 36.473743 L 11.337809,29.921688 A 0.0830083,0.0830083 0 0 0 11.337809,29.777511 Z" /> + <path + id="path328" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.30422,29.849858 0,36.382792 V 39.6012 L 11.30422,33.068783 Z" /> + <path + id="path329" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.309904,29.766142 A 0.0830083,0.0830083 0 0 0 11.261844,29.777512 L 0,36.288224 V 36.478394 L 11.220504,29.994035 V 33.02124 L 0,39.507149 V 39.696802 L 11.345561,33.140613 A 0.0830083,0.0830083 0 0 0 11.386901,33.068263 V 29.849855 A 0.0830083,0.0830083 0 0 0 11.309901,29.766135 Z" /> + </g> + <g + id="g334" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <g + id="g333" + transform="translate(0,69.923174)"> + <path + id="path330" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.321057 V 36.379175 L 11.296985,29.849858 Z" /> + <path + id="path331" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.225456 V 23.417175 L 11.131104,29.849858 0,36.282023 V 36.473743 L 11.337809,29.921688 A 0.0830083,0.0830083 0 0 0 11.337809,29.777511 Z" /> + <path + id="path332" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.30422,29.849858 0,36.382792 V 39.6012 L 11.30422,33.068783 Z" /> + <path + id="path333" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.309904,29.766142 A 0.0830083,0.0830083 0 0 0 11.261844,29.777512 L 0,36.288224 V 36.478394 L 11.220504,29.994035 V 33.02124 L 0,39.507149 V 39.696802 L 11.345561,33.140613 A 0.0830083,0.0830083 0 0 0 11.386901,33.068263 V 29.849855 A 0.0830083,0.0830083 0 0 0 11.309901,29.766135 Z" /> + </g> + </g> + <g + id="g340" + transform="matrix(0.57599998,0,0,0.57599998,800.30271,-0.43376218)" + style="display:inline"> + <g + id="g339" + transform="matrix(3.7795276,0,0,3.7795276,-2.349e-4,0)"> + <path + id="path334" + style="fill:#aeaaa3;fill-opacity:1;stroke:none;stroke-width:3.0541;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 7.8068644,111.20506 2.2506144,114.41313 14.954234,121.6158 18.413964,121.5316 5.7568944,114.24599 Z" + sodipodi:nodetypes="cccccc" /> + <path + style="color:#000000;fill:#c0b2a5;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 18.413959,103.77277 5.8341031,111.04284 18.413959,118.31292 30.993814,111.04284 Z" + id="path335" /> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 10.692116,108.23533 12.690513,112.41794 12.124031,114.67788 5.8341031,111.04284 Z" + id="path336" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 18.373047,103.70117 5.7929687,110.9707 A 0.0830083,0.0830083 0 0 0 5.7929687,111.11523 L 18.373047,118.38477 A 0.0830083,0.0830083 0 0 0 18.455077,118.38477 L 31.035155,111.11523 A 0.0830083,0.0830083 0 0 0 31.035155,110.9707 L 18.455077,103.70117 A 0.0830083,0.0830083 0 0 0 18.373047,103.70117 Z M 18.414067,103.86719 30.82813,111.04297 18.414062,118.2168 6,111.04297 Z" + id="path337" /> + <path + id="path338" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 5.8340851,111.04284 18.413954,118.31292 V 121.5316 L 5.8340851,114.26152 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path339" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 31.000959,111.04284 18.42109,118.31292 V 121.5316 L 31.000959,114.26152 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path340" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.583861;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 54.650661,410.55549 A 11.260325,6.5011545 0 0 1 70.575046,410.55549 11.260325,6.5011545 0 0 1 71.797225,418.90772 L 83.867792,425.87668 C 84.610417,426.30543 84.610953,426.99557 83.868329,427.42432 83.125709,427.85307 81.929802,427.85307 81.187178,427.42432 L 69.11661,420.45536 A 11.260325,6.5011545 0 0 1 54.65012,419.74976 11.260325,6.5011545 0 0 1 54.650661,410.55549 Z M 56.898047,411.85301 A 8.0824117,4.6663847 0 0 0 56.897511,418.45221 8.0824117,4.6663847 0 0 0 68.328197,418.45221 8.0824117,4.6663847 0 0 0 68.327656,411.85301 8.0824117,4.6663847 0 0 0 56.898047,411.85301 Z" /> + </g> + <path + id="path341" + style="display:inline;fill:#393d46;fill-opacity:1;stroke-width:0.336304;stroke-linecap:round;stroke-linejoin:round" + d="M 833.80739,32.792742 834.65366,33.281336 C 838.4076,35.448676 849.80874,30.396527 849.80874,36.655805 848.70164,34.270336 839.9967,36.366146 843.35779,38.306672 L 847.85783,40.904771 843.03257,43.690636 828.98213,35.578607 Z" + sodipodi:nodetypes="cccccccc" /> + <g + id="g347" + transform="translate(-310.53367,-163.32808)"> + <g + id="g346" + transform="translate(618.30848,289.40305)"> + <path + id="path342" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g345" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path343" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path344" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path345" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + id="path346" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0673168px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1805.4894,420.74866 1803.4539,421.92265 1807.2315,423.03386 1797.584,428.60303 1799.9713,429.98145 1812.5976,422.69217 1812.3421,422.54469 Z M 1816.4526,427.29908 C 1816.1229,427.29863 1815.7949,427.31768 1815.4698,427.35748 1814.6143,427.46347 1813.8574,427.70762 1813.1992,428.08758 L 1815.5867,429.466 C 1816.0082,429.22269 1816.5019,429.11521 1817.0702,429.1433 1817.6442,429.1681 1818.1609,429.31161 1818.618,429.57551 1819.1248,429.86808 1819.3797,430.1799 1819.3832,430.50858 1819.3932,430.84043 1819.1435,431.15272 1818.6356,431.44603 1818.1102,431.74931 1817.5424,431.90728 1816.9329,431.92204 1816.3235,431.93674 1815.7164,431.76951 1815.1106,431.41974 L 1813.8373,430.68526 1811.8807,431.81545 1813.1452,432.54555 C 1814.4671,433.30874 1814.4987,434.05304 1813.2402,434.77964 1812.7207,435.07961 1812.1392,435.22785 1811.4968,435.22354 1810.8656,435.21954 1810.2666,435.05315 1809.6993,434.72561 1809.2035,434.43945 1808.9345,434.11046 1808.8932,433.73998 1808.8572,433.37269 1809.0768,433.05394 1809.5503,432.78064 L 1807.1614,431.40076 C 1806.0703,432.03069 1805.5744,432.75722 1805.6706,433.57936 1805.7722,434.40463 1806.4237,435.16404 1807.6244,435.85727 1808.9076,436.59816 1810.2739,436.99769 1811.726,437.05608 1813.1835,437.11758 1814.4726,436.82512 1815.5926,436.1785 1816.2854,435.77856 1816.7187,435.33556 1816.8907,434.84827 1817.0683,434.36418 1816.9437,433.85286 1816.5213,433.31507 1817.3264,433.47988 1818.1389,433.51934 1818.9598,433.43335 1819.7808,433.34735 1820.4793,433.1373 1821.0567,432.804 1822.1766,432.15739 1822.6939,431.44218 1822.6074,430.65898 1822.5264,429.87242 1821.8514,429.11269 1820.5792,428.37816 1819.8466,427.95524 1819.026,427.65143 1818.1202,427.46846 1817.5576,427.35609 1817.0021,427.29982 1816.4527,427.29908 Z M 1803.4232,429.97707 C 1802.9591,429.98797 1802.5409,430.10169 1802.1675,430.3173 1801.7749,430.54395 1801.5798,430.80308 1801.5848,431.09266 1801.5948,431.37892 1801.7984,431.63496 1802.1894,431.86072 1802.5861,432.08968 1803.0312,432.20634 1803.5269,432.21263 1804.0286,432.21563 1804.4763,432.10343 1804.8688,431.87679 1805.2672,431.64681 1805.4606,431.38691 1805.45,431.09412 1805.44,430.80452 1805.2467,430.54598 1804.8557,430.32022 1804.4702,430.09763 1804.0238,429.9832 1803.5167,429.97707 1803.4857,429.97689 1803.4537,429.97635 1803.4237,429.97707 Z" /> + </g> + <g + id="g352" + transform="translate(-286.68503,282.96239)"> + <g + id="g351" + transform="translate(242.47602,-360.27361)"> + <path + id="path347" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g350" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path348" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path349" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path350" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1440.638,-226.33356 1426.0562,-217.91481 1428.9233,-216.25954 1443.505,-224.6783 Z" + id="path351" /> + </g> + <g + id="g357" + transform="translate(-278.42384,278.12229)"> + <g + id="g356" + transform="translate(278.33637,-329.78533)"> + <path + id="path352" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g355" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path353" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path354" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path355" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1472.0955,-198.06368 1457.5138,-189.64493 1460.3797,-187.99024 1469.9737,-193.52931 1465.96,-184.76857 1468.826,-183.11385 1483.4077,-191.53261 1480.5516,-193.18153 1470.9377,-187.63093 1474.9615,-196.40901 Z" + id="path356" /> + </g> + <g + id="g362" + transform="translate(-282.39186,269.93574)"> + <g + id="g361" + transform="translate(326.10713,-296.10122)"> + <path + id="path357" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g360" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path358" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path359" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path360" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1520.5138,-163.31502 1505.9322,-154.89627 1508.7992,-153.24099 1512.9658,-155.6466 1516.1384,-155.75736 1513.8628,-150.31749 1517.2743,-148.34788 1520.2931,-155.96094 1531.7122,-156.84971 1528.1868,-158.88506 1519.8446,-158.16238 1516.7708,-157.84342 1523.3809,-161.65975 Z" + id="path361" /> + </g> + <g + id="g367" + transform="translate(-277.6724,270.61661)"> + <g + id="g366" + transform="translate(365.49617,-271.43897)"> + <path + id="path362" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g365" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path363" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path364" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path365" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1565.7008,-135.88305 C 1564.7135,-136.45309 1563.6466,-136.86786 1562.5032,-137.12709 1561.3662,-137.38266 1560.2754,-137.45427 1559.2277,-137.34222 1558.193,-137.23028 1557.2803,-136.94696 1556.4924,-136.4921 1554.9769,-135.61708 1554.5617,-134.46539 1555.2468,-133.03682 1555.4992,-132.51328 1555.9531,-131.86637 1556.6064,-131.09605 1557.2663,-130.32961 1557.6332,-129.74705 1557.7082,-129.3491 1557.7902,-128.955 1557.5475,-128.59419 1556.98,-128.26655 1556.4592,-127.96588 1555.8607,-127.8412 1555.1848,-127.89225 1554.5155,-127.94715 1553.8396,-128.17179 1553.1579,-128.5653 1551.3235,-129.62446 1551.2113,-130.6181 1552.8203,-131.54708 L 1549.9444,-133.20753 C 1549.0029,-132.66401 1548.404,-132.05298 1548.1482,-131.37578 1547.8988,-130.69484 1548.0069,-129.98138 1548.472,-129.2349 1548.9436,-128.49224 1549.7143,-127.81278 1550.7844,-127.19495 1552.3259,-126.30501 1553.9091,-125.80253 1555.5345,-125.68906 1557.1664,-125.57951 1558.614,-125.88909 1559.8759,-126.61762 1561.011,-127.27292 1561.5862,-128.0353 1561.6022,-128.90501 1561.6182,-129.77471 1561.0675,-130.82902 1559.9508,-132.06729 1559.3459,-132.74037 1558.9742,-133.30157 1558.836,-133.75139 1558.7042,-134.19751 1558.875,-134.55738 1559.3495,-134.83107 1559.857,-135.12402 1560.4579,-135.24722 1561.1536,-135.20017 1561.8559,-135.15707 1562.5577,-134.93281 1563.2584,-134.52826 1563.9846,-134.10901 1564.3618,-133.67585 1564.3892,-133.22829 1564.4232,-132.7846 1564.1059,-132.37029 1563.4382,-131.98482 L 1566.3052,-130.32955 C 1567.1798,-130.83452 1567.7439,-131.41098 1567.9984,-132.05806 1568.2593,-132.70149 1568.1878,-133.35564 1567.7846,-134.02017 1567.3882,-134.68853 1566.6946,-135.30933 1565.7008,-135.88305 Z" + id="path366" /> + </g> + <g + id="g372" + transform="translate(-272.02171,271.52096)"> + <g + id="g371" + transform="translate(403.83978,-247.25394)"> + <path + id="path367" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g370" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path368" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path369" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path370" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1603.5957,-112.15054 C 1602.4364,-112.81981 1601.129,-113.2422 1599.6757,-113.41822 1598.2356,-113.5944 1596.7461,-113.51022 1595.2064,-113.1656 1593.6668,-112.821 1592.1962,-112.24428 1590.7941,-111.43478 L 1589.903,-110.92033 C 1587.7064,-109.65214 1586.4865,-108.35867 1586.2438,-107.04172 1586.0141,-105.72494 1586.7919,-104.5521 1588.5754,-103.52241 1590.2061,-102.58093 1591.9678,-102.08369 1593.8628,-102.03038 1595.7642,-101.97338 1597.554,-102.36589 1599.2312,-103.20924 L 1596.3642,-104.8645 C 1595.4126,-104.38859 1594.5039,-104.15382 1593.6371,-104.16087 1592.7833,-104.16787 1591.9143,-104.42769 1591.0289,-104.9389 1590.0479,-105.50522 1589.6917,-106.13126 1589.9609,-106.8162 1590.2365,-107.49745 1591.1613,-108.29249 1592.737,-109.20219 L 1593.8389,-109.83834 C 1595.3605,-110.70216 1596.7149,-111.20451 1597.9006,-111.34482 1599.0994,-111.48532 1600.1758,-111.27932 1601.1313,-110.72771 1602.0103,-110.22016 1602.4503,-109.7201 1602.4498,-109.22701 1602.4618,-108.73408 1602.0325,-108.19609 1601.1612,-107.61212 L 1604.0282,-105.95685 C 1605.5045,-106.98566 1606.2017,-108.04338 1606.122,-109.13011 1606.042,-110.21685 1605.2008,-111.22376 1603.5957,-112.15054 Z" + id="path371" /> + </g> + <g + id="g377" + transform="translate(-283.28646,267.515)"> + <g + id="g376" + transform="translate(459.10702,-217.74054)"> + <path + id="path372" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g375" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path373" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path374" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path375" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + id="path376" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1659.0582,-83.521494 1639.2981,-78.092384 1642.3463,-76.332314 1646.3064,-77.515624 1651.3319,-74.614144 1649.2917,-72.321424 1652.3399,-70.562454 1661.7137,-81.987494 Z M 1656.7015,-80.626634 1652.9917,-76.465754 1649.5134,-78.472854 Z" /> + </g> + <g + id="g382" + transform="translate(-288.83691,271.75621)"> + <g + id="g381" + transform="translate(552.68526,-170.52754)"> + <path + id="path377" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g380" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path378" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path379" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path380" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1746.0866,-38.048107 1731.5048,-29.629345 1740.83,-24.245429 1743.2435,-25.638845 1736.7843,-29.36808 1740.6902,-31.623162 1746.1943,-28.445302 1748.5479,-29.804112 1743.0437,-32.981972 1746.5191,-34.988471 1752.9593,-31.270194 1755.3928,-32.67515 Z" + id="path381" /> + </g> + <g + id="g387" + transform="translate(-282.72983,270.09471)"> + <g + id="g386" + transform="translate(502.44573,-194.76314)"> + <path + id="path382" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g385" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path383" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path384" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path385" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + id="path386" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1697.0177,-62.691389 1682.4364,-54.272589 1685.3015,-52.618386 1690.4394,-55.584919 1692.9527,-54.133629 C 1694.6025,-53.181142 1696.3032,-52.67344 1698.0543,-52.610663 1699.8187,-52.548053 1701.4161,-52.929353 1702.8449,-53.754269 1703.7863,-54.297779 1704.4098,-54.904559 1704.7175,-55.574999 1705.0317,-56.249269 1704.9918,-56.931949 1704.5962,-57.622899 1704.2069,-58.310219 1703.4893,-58.955189 1702.4446,-59.558329 Z M 1697.45,-59.632219 1700.078,-58.114759 C 1700.7717,-57.698829 1701.0987,-57.247739 1701.0594,-56.761609 1701.0204,-56.275519 1700.6436,-55.826449 1699.9291,-55.413989 1699.2348,-55.013099 1698.4998,-54.820299 1697.7246,-54.836119 1696.9558,-54.848219 1696.1921,-55.073379 1695.4341,-55.511039 L 1692.8733,-56.989889 Z" /> + </g> + <g + id="g391" + transform="translate(-521.99939,65.912718)"> + <path + id="path387" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1911.2838,200.2433 1899.1878,207.22729 1926.8437,222.90756 1934.3755,222.72425 1906.821,206.86343 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g390" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1414.3258,-66.769716)"> + <path + id="path388" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path389" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path390" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path391" + style="fill:#f06060;fill-opacity:1;stroke-width:0.161858;stroke-linecap:round;stroke-linejoin:round" + d="M 1936.2119,193.15801 C 1935.0639,192.49521 1933.4765,192.08633 1931.7171,192.08633 1928.1986,192.08633 1925.3655,193.72196 1925.3655,195.75345 V 203.91164 H 1939.4959 C 1943.0146,203.91163 1945.8475,202.276 1945.8475,200.24451 1945.8475,199.22875 1945.1393,198.31225 1943.9914,197.64947 1942.8433,196.98667 1941.2556,196.57758 1939.4961,196.57758 H 1938.0685 V 195.75327 C 1938.0685,194.7375 1937.3599,193.82081 1936.2119,193.15801 Z" /> + </g> + <g + id="g400" + transform="translate(1620.9726,-1699.9947)" + style="stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect391" + width="49.608288" + height="28.616287" + x="-377.58615" + y="1774.5229" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + y="1769.9749" + x="-377.44922" + height="10.99284" + width="51.378963" + id="rect392" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.386807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect393" + width="4.0359759" + height="22.193449" + x="-352.90894" + y="1784.7853" + transform="matrix(0.87101483,-0.49125672,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.388047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect394" + width="51.573917" + height="51.573917" + x="1719.9558" + y="2097.7068" + transform="matrix(0.8663092,0.49950813,-0.8663092,0.49950813,0,0)" /> + <rect + y="1769.3447" + x="-354.10547" + height="11.032285" + width="4.0612364" + id="rect395" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.388016;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86559719,-0.50074095,0,1,0,0)" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + y="2151.6548" + x="377.58615" + height="28.616287" + width="49.608288" + id="rect396" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect397" + width="51.378963" + height="10.99284" + x="377.72311" + y="2147.1067" /> + <rect + transform="matrix(-0.87101492,-0.49125657,0,1,0,0)" + y="2153.7698" + x="398.22769" + height="22.193438" + width="4.0359755" + id="rect398" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.386807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86714785,-0.49805081,0,1,0,0)" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.387669;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect399" + width="4.0539742" + height="10.953394" + x="401.02496" + y="2146.4229" /> + <path + inkscape:connector-curvature="0" + id="path399" + d="M -306.54749,1946.692 -351.26334,1920.9168 -347.75477,1918.8938 -303.03211,1944.673 Z" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -347.74796,1946.692 -303.03211,1920.9168 -306.54068,1918.8938 -351.26334,1944.673 Z" + id="path400" + inkscape:connector-curvature="0" /> + </g> + <g + id="g407" + transform="matrix(0.22218604,0,0,0.22285113,1804.7337,-133.10118)" + style="stroke:#393d46;stroke-width:1.62233;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <g + id="g406" + style="stroke:#393d46;stroke-width:1.62233;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:1.74322;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect400" + width="126.21308" + height="126.17226" + x="-497.19119" + y="1563.3389" + transform="matrix(0.86611877,-0.49983825,0,1,0,0)" /> + <rect + style="fill:#f06060;fill-opacity:1;stroke:#393d46;stroke-width:1.74322;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect401" + width="26.635878" + height="126.17226" + x="-447.40262" + y="1563.3389" + transform="matrix(0.86611877,-0.49983825,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:1.7435;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect402" + width="126.21308" + height="126.21308" + x="1437.6316" + y="1934.8229" + transform="matrix(0.86611877,0.49983825,-0.86611877,0.49983825,0,0)" /> + <rect + style="fill:#f06060;fill-opacity:1;stroke:#393d46;stroke-width:1.7435;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect403" + width="26.635878" + height="126.21308" + x="1487.4203" + y="1934.8229" + transform="matrix(0.86611877,0.49983825,-0.86611877,0.49983825,0,0)" /> + <rect + y="2060.3691" + x="497.19119" + height="126.17226" + width="126.21308" + id="rect404" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:1.74322;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86611877,-0.49983825,0,1,0,0)" /> + <rect + y="2060.3691" + x="546.9798" + height="126.17226" + width="26.635878" + id="rect405" + style="fill:#e05a5a;fill-opacity:1;stroke:#393d46;stroke-width:1.74322;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86611877,-0.49983825,0,1,0,0)" /> + <rect + transform="matrix(-0.86611877,0.49983825,0.86611877,0.49983825,0,0)" + y="1437.6316" + x="1984.6115" + height="126.21308" + width="26.635878" + id="rect406" + style="fill:#f06060;fill-opacity:1;stroke:#393d46;stroke-width:1.7435;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + </g> + <path + id="path407" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1600.2527,131.49622 1559.7527,154.87903 V 161.88613 L 1600.2527,138.50331 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path408" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1480.6444,62.439033 1440.1444,85.821846 1559.7527,154.87903 1600.2527,131.49622 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path409" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1440.1444,85.821846 1559.7527,154.87903 V 161.88613 L 1440.1444,92.828934 Z" + sodipodi:nodetypes="ccccc" /> + <path + d="M 1480.3776,81.901331 1496.3856,78.499349 1501.8607,81.660396 1478.3912,85.9972 1469.5777,91.085714 1464.4865,88.146324 1473.3001,83.05781 1480.8116,69.507711 1486.3034,72.678391 Z" + id="path410" + style="font-weight:bold;font-size:36.7352px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f3b562;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 1504.9321,99.335281 1495.3173,93.784175 1488.8073,97.542736 1500.0913,104.05758 1496.0685,106.38017 1479.7767,96.974128 1504.0808,82.942159 1520.3391,92.328933 1516.2829,94.670808 1505.0323,88.175241 1499.24,91.5194 1508.8548,97.070506 Z" + id="path411" + style="font-weight:bold;font-size:36.7352px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f3b562;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 1517.7351,113.10704 1508.955,108.0378 1502.278,109.96527 1496.9532,106.89095 1530.3045,98.082423 1534.945,100.76161 1519.7382,120.04592 1514.4134,116.97162 Z M 1514.3633,106.47655 1520.4393,109.98454 1526.4819,102.96856 Z" + id="path412" + style="font-weight:bold;font-size:36.7352px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f3b562;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 1539.9026,121.41443 1535.9131,119.11111 1527.0161,124.2478 1522.0084,121.3566 1546.3124,107.32463 1555.343,112.53844 Q 1559.6496,115.02487 1560.0669,117.48239 1560.4843,119.93992 1556.9789,121.96376 1554.4917,123.39972 1551.7375,123.73703 1549.0166,124.07434 1545.8451,123.38045 L 1541.1712,132.15043 1540.9375,132.28535 1535.5626,129.18212 Z M 1539.9696,116.76923 1544.0092,119.10147 Q 1545.8954,120.19049 1547.8818,120.23867 1549.8849,120.27727 1551.5708,119.30385 1553.2902,118.31121 1553.2902,117.174 1553.3072,116.04643 1551.2871,114.88031 L 1547.2642,112.55771 Z" + id="path413" + style="font-weight:bold;font-size:36.7352px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f3b562;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 1562.8045,137.54734 Q 1564.2233,136.72816 1563.973,135.71625 1563.7393,134.69469 1561.9699,132.70939 1560.2172,130.71447 1559.5161,129.36524 1557.6132,125.68377 1561.4023,123.4961 1563.372,122.35889 1566.0094,122.10832 1568.6802,121.85775 1571.6181,122.55163 1574.5726,123.25516 1577.1599,124.74895 1579.7639,126.25237 1580.8489,127.97746 1581.9506,129.69291 1581.3497,131.33125 1580.7655,132.97924 1578.5788,134.24173 L 1573.5711,131.35053 Q 1575.2403,130.3868 1575.1068,129.24959 1574.9899,128.10274 1573.087,127.00409 1571.2508,125.94398 1569.448,125.80906 1567.662,125.6645 1566.3934,126.39693 1565.2082,127.08119 1565.5921,128.22803 1565.9927,129.38451 1567.6119,131.12887 1570.5998,134.3381 1570.6499,136.56433 1570.6999,138.79056 1567.8623,140.42891 1564.7074,142.25036 1560.5176,141.91306 1556.3445,141.56611 1552.305,139.23387 1549.5007,137.6148 1548.2154,135.69697 1546.9468,133.7695 1547.5143,132.03478 1548.0985,130.3097 1550.4521,128.95083 L 1555.4765,131.85167 Q 1551.4537,134.17427 1556.2611,136.94982 1558.0472,137.98102 1559.7665,138.14485 1561.5025,138.29905 1562.8045,137.54734 Z" + id="path414" + style="font-weight:bold;font-size:36.7352px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f3b562;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <g + id="g427" + transform="translate(7.306324,0.95512386)"> + <g + id="g418" + transform="translate(-53.241315,25.981782)"> + <path + id="path415" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1424.2128,98.71322 1412.1168,105.69722 1597.1587,212.2942 1604.6906,212.11083 1419.75,105.33326 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path416" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1460.25,74.943359 1419.75,98.326172 1604.6906,205.10373 1645.1906,181.72092 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path417" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1645.1906,181.72092 1604.6906,205.10373 V 212.11083 L 1645.1906,188.72801 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path418" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1419.75,98.326172 1604.6906,205.10373 V 212.11083 L 1419.75,105.33326 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <g + aria-label="TOGETHER" + transform="matrix(0.93060465,0.53728509,-0.93060465,0.53728509,0,0)" + id="g426" + style="font-weight:bold;font-size:36.3577px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f06060;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round"> + <path + d="M 877.15078,-648.97089 H 869.23304 V -627.43677 H 863.9072 V -648.97089 H 856.09598 V -653.28482 H 877.15078 Z" + id="path419" /> + <path + d="M 900.92175,-639.77495 Q 900.92175,-635.9581 899.57254,-633.08215 898.22333,-630.2062 895.70244,-628.64396 893.19929,-627.08171 889.95053,-627.08171 886.73728,-627.08171 884.21638,-628.6262 881.69549,-630.1707 880.31077,-633.02889 878.92606,-635.90485 878.9083,-639.63293 V -640.91113 Q 878.9083,-644.72798 880.27527,-647.62168 881.65998,-650.53314 884.16313,-652.07763 886.68402,-653.63988 889.91503,-653.63988 893.14603,-653.63988 895.64918,-652.07763 898.17007,-650.53314 899.53704,-647.62168 900.92175,-644.72798 900.92175,-640.92888 Z M 895.52491,-640.94664 Q 895.52491,-645.01202 894.06918,-647.1246 892.61345,-649.23719 889.91503,-649.23719 887.23436,-649.23719 885.77863,-647.14236 884.3229,-645.06528 884.30515,-641.0354 V -639.77495 Q 884.30515,-635.81608 885.76088,-633.63249 887.21661,-631.4489 889.95053,-631.4489 892.6312,-631.4489 894.06918,-633.54373 895.50716,-635.65631 895.52491,-639.68619 Z" + id="path420" /> + <path + d="M 925.24307,-630.70328 Q 923.80509,-628.98126 921.17768,-628.02261 918.55027,-627.08171 915.35477,-627.08171 911.99949,-627.08171 909.46085,-628.53744 906.93995,-630.01092 905.55523,-632.79811 904.18827,-635.5853 904.15276,-639.34889 V -641.10641 Q 904.15276,-644.97652 905.44872,-647.79921 906.76242,-650.63966 909.21231,-652.13089 911.67994,-653.63988 914.98196,-653.63988 919.57993,-653.63988 922.17184,-651.43853 924.76374,-649.25494 925.24307,-645.06528 H 920.05926 Q 919.7042,-647.28438 918.47926,-648.31404 917.27207,-649.3437 915.14174,-649.3437 912.42556,-649.3437 911.00534,-647.30213 909.58511,-645.26056 909.56736,-641.23068 V -639.57967 Q 909.56736,-635.51428 911.11185,-633.43721 912.65635,-631.36013 915.63881,-631.36013 918.63903,-631.36013 919.91723,-632.63833 V -637.09428 H 915.07072 V -641.01765 H 925.24307 Z" + id="path421" /> + <path + d="M 945.10843,-638.63877 H 934.88283 V -631.71519 H 946.88371 V -627.43677 H 929.55699 V -653.28482 H 946.8482 V -648.97089 H 934.88283 V -642.81068 H 945.10843 Z" + id="path422" /> + <path + d="M 969.82031,-648.97089 H 961.90257 V -627.43677 H 956.57673 V -648.97089 H 948.76551 V -653.28482 H 969.82031 Z" + id="path423" /> + <path + d="M 993.89308,-627.43677 H 988.56725 V -638.5145 H 978.18187 V -627.43677 H 972.85603 V -653.28482 H 978.18187 V -642.81068 H 988.56725 V -653.28482 H 993.89308 Z" + id="path424" /> + <path + d="M 1014.0958,-638.63877 H 1003.8701 V -631.71519 H 1015.871 V -627.43677 H 998.54431 V -653.28482 H 1015.8355 V -648.97089 H 1003.8701 V -642.81068 H 1014.0958 Z" + id="path425" /> + <path + d="M 1028.5643,-636.899 H 1024.3213 V -627.43677 H 1018.9955 V -653.28482 H 1028.5998 Q 1033.18,-653.28482 1035.6654,-651.24325 1038.1508,-649.20168 1038.1508,-645.4736 1038.1508,-642.82843 1036.9968,-641.05315 1035.8607,-639.29563 1033.535,-638.24821 L 1039.1272,-627.68531 V -627.43677 H 1033.4108 Z M 1024.3213,-641.21293 H 1028.6175 Q 1030.6236,-641.21293 1031.7243,-642.22484 1032.8249,-643.2545 1032.8249,-645.04753 1032.8249,-646.87607 1031.7775,-647.92348 1030.7479,-648.97089 1028.5998,-648.97089 H 1024.3213 Z" + id="path426" /> + </g> + </g> + <path + id="path427" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1590.6286,55.0963 1550.1286,78.47911 V 85.48621 L 1590.6286,62.10339 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path428" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1541.5538,26.76244 1501.0538,50.145253 1550.1286,78.47911 1590.6286,55.096302 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path429" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1501.0538,50.145253 1550.1286,78.47911 V 85.48621 L 1501.0538,57.152341 Z" + sodipodi:nodetypes="ccccc" /> + <path + d="M 1533.8228,58.071104 1517.6399,48.727899 1520.8505,46.874238 1536.628,46.584013 Q 1539.9198,46.499743 1541.9467,46.190817 1543.9898,45.891254 1545.1411,45.226525 1546.714,44.318406 1546.8113,43.344791 1546.9248,42.361774 1545.4492,41.509839 1543.8601,40.592366 1541.8332,40.695369 1539.8387,40.798323 1538.055,41.828138 L 1533.3526,39.113182 Q 1535.5092,37.868078 1538.3144,37.428063 1541.1359,36.997413 1544.0222,37.502963 1546.9248,37.999119 1549.3084,39.375321 1552.9569,41.481752 1553.2163,43.653749 1553.492,45.835056 1550.2976,47.679341 1548.5463,48.690458 1545.8222,49.214698 1543.098,49.73898 1538.4766,49.860686 L 1527.4502,50.0292 1537.601,55.889772 Z" + id="path430" + style="font-weight:bold;font-size:35.6854px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#8cbeb2;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 1562.3456,63.266973 Q 1557.4485,66.09428 1552.8272,66.421943 1548.2058,66.749612 1544.2979,64.493385 1540.4386,62.265248 1540.9413,59.61582 1541.444,56.966392 1546.1464,54.195264 L 1550.4922,51.68625 Q 1555.4378,48.830902 1560.043,48.531306 1564.6644,48.24107 1568.5236,50.469208 1572.3829,52.69735 1571.8801,55.346805 1571.3937,57.986852 1566.6912,60.757997 Z M 1562.4266,57.808952 Q 1565.3615,56.114462 1565.8804,54.878696 1566.4318,53.642886 1564.7292,52.65988 1563.0752,51.704963 1560.9996,51.985856 1558.9565,52.266711 1556.1998,53.802068 L 1550.4596,57.116182 Q 1547.5733,58.782609 1546.9409,60.04647 1546.3409,61.310331 1548.076,62.312056 1549.7948,63.304422 1551.9028,62.967388 1554.0108,62.630366 1556.816,61.048195 Z" + id="path431" + style="font-weight:bold;font-size:35.6854px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#8cbeb2;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <g + id="g436" + transform="translate(-630.19056,-162.53648)"> + <path + id="path432" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1887.4588,200.45773 1875.3628,207.44172 1903.0187,223.12199 1910.5505,222.93868 1882.996,207.07786 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g435" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1390.5008,-66.555286)"> + <path + id="path433" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path434" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path435" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path436" + style="fill:#8cbeb2;fill-opacity:1;stroke:none;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1907.7747,193.42039 C 1908.9319,192.75233 1910.5319,192.34019 1912.3052,192.34019 1915.8516,192.34019 1918.7073,193.98882 1918.7073,196.03645 V 204.25943 H 1904.4646 C 1900.9181,204.25941 1898.0625,202.6108 1898.0625,200.56317 1898.0625,199.53934 1898.7764,198.61556 1899.9334,197.94752 1901.0906,197.27945 1902.6909,196.86711 1904.4643,196.86711 H 1905.9033 V 196.03625 C 1905.9033,195.01242 1906.6176,194.08846 1907.7747,193.42039 Z" /> + </g> + <g + id="g441" + transform="translate(-213.8895,-162.70877)"> + <path + id="path437" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1911.2838,200.2433 1899.1878,207.22729 1926.8437,222.90756 1934.3755,222.72425 1906.821,206.86343 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g440" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1414.3258,-66.769716)"> + <path + id="path438" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path439" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path440" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path441" + style="fill:#f06060;fill-opacity:1;stroke-width:0.161858;stroke-linecap:round;stroke-linejoin:round" + d="M 1936.2119,193.15801 C 1935.0639,192.49521 1933.4765,192.08633 1931.7171,192.08633 1928.1986,192.08633 1925.3655,193.72196 1925.3655,195.75345 V 203.91164 H 1939.4959 C 1943.0146,203.91163 1945.8475,202.276 1945.8475,200.24451 1945.8475,199.22875 1945.1393,198.31225 1943.9914,197.64947 1942.8433,196.98667 1941.2556,196.57758 1939.4961,196.57758 H 1938.0685 V 195.75327 C 1938.0685,194.7375 1937.3599,193.82081 1936.2119,193.15801 Z" /> + </g> + <g + id="g446" + transform="translate(-278.31083,40.979197)"> + <path + id="path442" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1887.4588,200.45773 1875.3628,207.44172 1903.0187,223.12199 1910.5505,222.93868 1882.996,207.07786 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g445" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1390.5008,-66.555286)"> + <path + id="path443" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path444" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path445" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path446" + style="fill:#8cbeb2;fill-opacity:1;stroke:none;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1907.7747,193.42039 C 1908.9319,192.75233 1910.5319,192.34019 1912.3052,192.34019 1915.8516,192.34019 1918.7073,193.98882 1918.7073,196.03645 V 204.25943 H 1904.4646 C 1900.9181,204.25941 1898.0625,202.6108 1898.0625,200.56317 1898.0625,199.53934 1898.7764,198.61556 1899.9334,197.94752 1901.0906,197.27945 1902.6909,196.86711 1904.4643,196.86711 H 1905.9033 V 196.03625 C 1905.9033,195.01242 1906.6176,194.08846 1907.7747,193.42039 Z" /> + </g> + <g + id="g455"> + <path + inkscape:connector-curvature="0" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:1.62142;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1147.3735,162.85599 1125.1134,174.62135 1140.1664,183.7806 1159.7865,184.21322 V 175.37566 Z" + id="path447" + sodipodi:nodetypes="cccccc" /> + <g + id="g454" + transform="matrix(0.16202342,0,0,0.1624676,1229.3903,-130.87037)" + style="stroke:#393d46;stroke-width:2.22502;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <g + id="g453" + style="stroke:#393d46;stroke-width:2.22502;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:2.39081;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect447" + width="126.21308" + height="126.17226" + x="-497.19119" + y="1563.3389" + transform="matrix(0.86611877,-0.49983825,0,1,0,0)" /> + <rect + style="fill:#f3b562;fill-opacity:1;stroke:#393d46;stroke-width:2.39081;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect448" + width="26.635878" + height="126.17226" + x="-447.40262" + y="1563.3389" + transform="matrix(0.86611877,-0.49983825,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:2.3912;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect449" + width="126.21308" + height="126.21308" + x="1437.6316" + y="1934.8229" + transform="matrix(0.86611877,0.49983825,-0.86611877,0.49983825,0,0)" /> + <rect + style="fill:#f3b562;fill-opacity:1;stroke:#393d46;stroke-width:2.3912;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect450" + width="26.635878" + height="126.21308" + x="1487.4203" + y="1934.8229" + transform="matrix(0.86611877,0.49983825,-0.86611877,0.49983825,0,0)" /> + <rect + y="2060.3691" + x="497.19119" + height="126.17226" + width="126.21308" + id="rect451" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:2.39081;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86611877,-0.49983825,0,1,0,0)" /> + <rect + y="2060.3691" + x="546.9798" + height="126.17226" + width="26.635878" + id="rect452" + style="fill:#d69f57;fill-opacity:1;stroke:#393d46;stroke-width:2.39081;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86611877,-0.49983825,0,1,0,0)" /> + <rect + transform="matrix(-0.86611877,0.49983825,0.86611877,0.49983825,0,0)" + y="1437.6316" + x="1984.6115" + height="126.21308" + width="26.635878" + id="rect453" + style="fill:#f3b562;fill-opacity:1;stroke:#393d46;stroke-width:2.3912;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + </g> + </g> + <g + id="g464" + transform="matrix(0.55650655,0,0,0.55650655,1543.5968,-1059.6397)" + style="stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect455" + width="49.608288" + height="28.616287" + x="-377.58615" + y="1774.5229" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + y="1769.9749" + x="-377.44922" + height="10.99284" + width="51.378963" + id="rect456" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.695063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect457" + width="4.0359759" + height="22.193449" + x="-352.90894" + y="1784.7853" + transform="matrix(0.87101483,-0.49125672,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.697291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect458" + width="51.573917" + height="51.573917" + x="1719.9558" + y="2097.7068" + transform="matrix(0.8663092,0.49950813,-0.8663092,0.49950813,0,0)" /> + <rect + y="1769.3447" + x="-354.10547" + height="11.032285" + width="4.0612364" + id="rect459" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.697235;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86559719,-0.50074095,0,1,0,0)" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + y="2151.6548" + x="377.58615" + height="28.616287" + width="49.608288" + id="rect460" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect461" + width="51.378963" + height="10.99284" + x="377.72311" + y="2147.1067" /> + <rect + transform="matrix(-0.87101492,-0.49125657,0,1,0,0)" + y="2153.7698" + x="398.22769" + height="22.193438" + width="4.0359755" + id="rect462" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.695063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86714785,-0.49805081,0,1,0,0)" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.696612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect463" + width="4.0539742" + height="10.953394" + x="401.02496" + y="2146.4229" /> + <path + inkscape:connector-curvature="0" + id="path463" + d="M -306.54749,1946.692 -351.26334,1920.9168 -347.75477,1918.8938 -303.03211,1944.673 Z" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -347.74796,1946.692 -303.03211,1920.9168 -306.54068,1918.8938 -351.26334,1944.673 Z" + id="path464" + inkscape:connector-curvature="0" /> + </g> + <g + id="g475" + transform="translate(342.53928,111.30998)"> + <path + style="opacity:1;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1361.5466,48.757272 H 1336.678 L 1316.9488,37.366592 1339.0483,24.607409 Z" + id="path465" /> + <g + id="g474" + transform="matrix(0.55650655,0,0,0.55650655,1543.5968,-1059.6397)" + style="stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect465" + width="49.608288" + height="28.616287" + x="-377.58615" + y="1774.5229" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + y="1769.9749" + x="-377.44922" + height="10.99284" + width="51.378963" + id="rect466" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.695063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect467" + width="4.0359759" + height="22.193449" + x="-352.90894" + y="1784.7853" + transform="matrix(0.87101483,-0.49125672,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.697291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect468" + width="51.573917" + height="51.573917" + x="1719.9558" + y="2097.7068" + transform="matrix(0.8663092,0.49950813,-0.8663092,0.49950813,0,0)" /> + <rect + y="1769.3447" + x="-354.10547" + height="11.032285" + width="4.0612364" + id="rect469" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.697235;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86559719,-0.50074095,0,1,0,0)" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + y="2151.6548" + x="377.58615" + height="28.616287" + width="49.608288" + id="rect470" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect471" + width="51.378963" + height="10.99284" + x="377.72311" + y="2147.1067" /> + <rect + transform="matrix(-0.87101492,-0.49125657,0,1,0,0)" + y="2153.7698" + x="398.22769" + height="22.193438" + width="4.0359755" + id="rect472" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.695063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86714785,-0.49805081,0,1,0,0)" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.696612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect473" + width="4.0539742" + height="10.953394" + x="401.02496" + y="2146.4229" /> + <path + inkscape:connector-curvature="0" + id="path473" + d="M -306.54749,1946.692 -351.26334,1920.9168 -347.75477,1918.8938 -303.03211,1944.673 Z" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -347.74796,1946.692 -303.03211,1920.9168 -306.54068,1918.8938 -351.26334,1944.673 Z" + id="path474" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="g482" + transform="translate(177.09943)"> + <path + id="path475" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1075.1389,-1.2340232 1096.6534,10.964352 1104.1853,10.780976 1083.3131,-1.2340232 Z" /> + <g + id="g481" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path476" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path477" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path478" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path479" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path480" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path481" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + </g> + <g + id="g489" + transform="translate(616.4346)"> + <path + id="path482" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1075.1389,-1.2340232 1096.6534,10.964352 1104.1853,10.780976 1083.3131,-1.2340232 Z" /> + <g + id="g488" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path483" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path484" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path485" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path486" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path487" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path488" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + </g> + <g + id="g496" + transform="translate(440.77597)"> + <path + id="path489" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1075.1389,-1.2340232 1096.6534,10.964352 1104.1853,10.780976 1083.3131,-1.2340232 Z" /> + <g + id="g495" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path490" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path491" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path492" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path493" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path494" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path495" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + </g> + <g + id="g503" + transform="translate(352.85523)"> + <path + id="path496" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1075.1389,-1.2340232 1096.6534,10.964352 1104.1853,10.780976 1083.3131,-1.2340232 Z" /> + <g + id="g502" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path497" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path498" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path499" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path500" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path501" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path502" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + </g> + <g + id="g507" + transform="translate(-1069.9399,-111.97362)"> + <path + id="path503" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1887.4588,200.45773 1875.3628,207.44172 1903.0187,223.12199 1910.5505,222.93868 1882.996,207.07786 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g506" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1390.5008,-66.555286)"> + <path + id="path504" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path505" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path506" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path507" + style="fill:#f06060;fill-opacity:1;stroke:none;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1907.7747,193.42039 C 1908.9319,192.75233 1910.5319,192.34019 1912.3052,192.34019 1915.8516,192.34019 1918.7073,193.98882 1918.7073,196.03645 V 204.25943 H 1904.4646 C 1900.9181,204.25941 1898.0625,202.6108 1898.0625,200.56317 1898.0625,199.53934 1898.7764,198.61556 1899.9334,197.94752 1901.0906,197.27945 1902.6909,196.86711 1904.4643,196.86711 H 1905.9033 V 196.03625 C 1905.9033,195.01242 1906.6176,194.08846 1907.7747,193.42039 Z" /> + </g> + <g + id="g513"> + <path + id="path508" + style="display:inline;fill:#aeaaa3;fill-opacity:1;stroke:none;stroke-width:11.5431;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1742.582,110.8418 1726.4492,120.1582 1760.3398,139.37305 V 133.32227 L 1736.6309,119.67383 Z" /> + <g + id="g512" + transform="matrix(-2.0821427,0,0,2.0821427,1760.3395,50.821923)" + style="display:inline;stroke-width:1.04556"> + <path + id="path509" + style="color:#000000;fill:#ffeedc;stroke-width:0.173563;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.321057 V 36.379175 L 11.296985,29.849858 Z" /> + <path + id="path510" + style="color:#000000;fill:#393d46;stroke-width:1.04556;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.225456 V 23.417175 L 11.131104,29.849858 0,36.282023 V 36.473743 L 11.337809,29.921688 A 0.0830083,0.0830083 0 0 0 11.337809,29.777511 Z" /> + <path + id="path511" + style="color:#000000;fill:#c0b2a5;fill-opacity:1;stroke-width:0.173563;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.30422,29.849858 0,36.382792 V 39.6012 L 11.30422,33.068783 Z" /> + <path + id="path512" + style="color:#000000;fill:#393d46;stroke-width:1.04556;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.309904,29.766142 A 0.0830083,0.0830083 0 0 0 11.261844,29.777512 L 0,36.288224 V 36.478394 L 11.220504,29.994035 V 33.02124 L 0,39.507149 V 39.696802 L 11.345561,33.140613 A 0.0830083,0.0830083 0 0 0 11.386901,33.068263 V 29.849855 A 0.0830083,0.0830083 0 0 0 11.309901,29.766135 Z" /> + </g> + </g> + <g + id="g518" + transform="translate(0,101.86604)"> + <path + id="path513" + style="display:inline;fill:#aeaaa3;fill-opacity:1;stroke:none;stroke-width:11.5431;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1742.582,110.8418 1726.4492,120.1582 1760.3398,139.37305 V 133.32227 L 1736.6309,119.67383 Z" /> + <g + id="g517" + transform="matrix(-2.0821427,0,0,2.0821427,1760.3395,50.821923)" + style="display:inline;stroke-width:1.04556"> + <path + id="path514" + style="color:#000000;fill:#ffeedc;stroke-width:0.173563;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.321057 V 36.379175 L 11.296985,29.849858 Z" /> + <path + id="path515" + style="color:#000000;fill:#393d46;stroke-width:1.04556;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.225456 V 23.417175 L 11.131104,29.849858 0,36.282023 V 36.473743 L 11.337809,29.921688 A 0.0830083,0.0830083 0 0 0 11.337809,29.777511 Z" /> + <path + id="path516" + style="color:#000000;fill:#c0b2a5;fill-opacity:1;stroke-width:0.173563;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.30422,29.849858 0,36.382792 V 39.6012 L 11.30422,33.068783 Z" /> + <path + id="path517" + style="color:#000000;fill:#393d46;stroke-width:1.04556;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.309904,29.766142 A 0.0830083,0.0830083 0 0 0 11.261844,29.777512 L 0,36.288224 V 36.478394 L 11.220504,29.994035 V 33.02124 L 0,39.507149 V 39.696802 L 11.345561,33.140613 A 0.0830083,0.0830083 0 0 0 11.386901,33.068263 V 29.849855 A 0.0830083,0.0830083 0 0 0 11.309901,29.766135 Z" /> + </g> + </g> + <g + id="g522"> + <path + id="path518" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1609.1838,88.8731 1597.0878,95.8571 1624.7437,111.53735 1632.2755,111.35398 1604.721,95.49314 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g521" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,1112.2258,-178.13993)"> + <path + id="path519" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path520" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path521" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path522" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.120965px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1639.0283,82.50996 1626.7562,82.59231 C 1622.1696,82.874328 1625.9081,84.690648 1626.6536,85.964971 1626.6416,86.583203 1623.6834,85.338099 1623.6712,85.956571 1623.6592,86.57484 1625.8313,88.407318 1625.8205,89.026099 1625.8085,89.644348 1623.6209,89.042769 1623.6091,89.661008 1623.5971,90.279258 1625.3345,90.691572 1624.3144,91.545451 1623.585,92.155353 1626.1377,93.04114 1627.8685,93.195978 1628.9399,93.188978 1627.3478,92.326794 1628.4187,92.319993 1631.0822,92.302823 1631.4497,93.506082 1633.2497,92.987126 1634.1391,92.730636 1632.3403,91.274811 1633.412,91.268572 1635.8255,91.634536 1641.6682,94.340144 1641.6682,91.454749 L 1641.8103,84.115093 C 1641.7943,83.680079 1641.4676,83.276432 1640.9605,82.982519 1640.4535,82.688648 1639.7659,82.504954 1639.0283,82.509916 Z M 1636.9243,83.013592 C 1637.7541,83.013525 1638.4978,83.016892 1639.0319,83.013592 1639.5688,83.010292 1640.064,83.144387 1640.4247,83.354916 1640.7857,83.56527 1641.0116,83.853236 1641.0083,84.155714 L 1640.9713,86.94717 C 1640.9613,87.21274 1640.5121,87.470976 1640.2552,87.472284 L 1640.0165,86.234686 1638.3708,86.913754 1637.9006,86.035382 1635.2988,85.697638 1636.8945,84.166455 1634.5566,84.526874 1633.2474,83.771426 C 1632.7136,83.463337 1633.3284,83.037524 1634.2975,83.03746 1635.1782,83.01805 1636.0945,83.01366 1636.9244,83.01359 Z M 1627.9246,87.110671 C 1627.9556,87.112171 1628.0016,87.129941 1628.063,87.165571 1628.124,87.317267 1630.0767,89.020352 1630.5764,89.423559 1630.7404,89.568718 1630.3782,89.606887 1629.9475,89.525001 1629.1941,89.272698 1627.557,87.092373 1627.9246,87.110673 Z M 1622.7928,88.046328 C 1622.4153,88.048528 1622.1384,88.173398 1622.177,88.483127 1622.25,89.061495 1623.6572,89.205511 1624.5543,88.974824 1624.6013,88.77802 1624.4278,88.580821 1624.1521,88.418681 1623.778,88.198537 1623.2206,88.043813 1622.7928,88.046328 Z M 1634.6282,93.346395 C 1634.4238,93.348695 1634.2209,93.377255 1634.0314,93.438285 1633.7236,93.616055 1635.7906,95.04191 1636.3729,94.70572 1636.6599,94.365093 1636.4309,93.980286 1635.9803,93.706809 1635.9643,93.697609 1635.9493,93.688279 1635.9323,93.679359 1635.9173,93.670659 1635.9033,93.661579 1635.8873,93.653099 V 93.653099 C 1635.5366,93.464374 1635.0784,93.341289 1634.6294,93.346386 Z M 1632.9955,93.638788 C 1631.8104,93.648948 1631.974,94.412292 1633.0245,94.569672 1633.3311,94.567572 1633.7139,94.164657 1633.1135,93.639981 1633.0725,93.638681 1633.0335,93.638481 1632.9955,93.638681 Z" /> + </g> + <g + id="g259-9" + transform="translate(-229.55806,239.94684)" + style="display:inline"> + <path + id="path255-9" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1081.4198,89.317081 1069.3238,96.301081 1096.9797,111.98133 1104.5115,111.79796 1076.957,95.937121 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g258-2" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,584.46179,-177.69595)"> + <path + id="path256-5" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path257-7" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path258-0" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + style="color:#000000;display:inline;fill:#393d46;fill-opacity:1;fill-rule:evenodd;stroke-width:1.14333;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1112.0352,82.073781 C 1105.2629,80.084704 1096.5851,81.54203 1093.1151,85.527448 1089.9765,89.132327 1092.3167,93.742539 1098.6962,95.567485 1104.4115,97.202409 1111.7035,95.957431 1114.5544,92.575828 1117.0788,89.581371 1115.1052,85.770601 1109.7691,84.304445 1105.1114,83.024648 1099.2005,84.058913 1096.9744,86.839997 1095.0663,89.223732 1096.6775,92.238453 1100.9784,93.341055 1104.5779,94.26387 1109.1153,93.437605 1110.7039,91.249778 1111.991,89.477201 1110.7349,87.249066 1107.4489,86.522419 1104.9078,85.96052 1101.7117,86.589229 1100.8014,88.204898 1100.4737,88.786491 1100.5422,89.41205 1100.9712,89.961721 1101.4001,90.511403 1102.2635,90.996873 1103.4362,91.145044 1104.1932,91.240684 1104.9535,91.174474 1105.6409,90.949941 1106.3282,90.725468 1106.9578,90.24312 1106.9151,89.673715 1106.8821,89.234049 1106.6077,89.04337 1106.1353,88.818113 1105.8991,88.705476 1105.5488,88.578347 1105.0308,88.594285 1104.5128,88.610185 1104.0193,88.834881 1103.8063,89.047845 A 1.1466641,0.66202713 0 0 0 1104.1691,89.82829 C 1104.0781,89.83439 1103.9811,89.85882 1103.9263,89.85191 1103.509,89.79921 1103.245,89.654521 1103.0602,89.417779 1102.8756,89.181043 1102.8428,88.863011 1102.9832,88.614547 1103.4456,87.79392 1105.2216,87.447439 1106.6303,87.758934 1108.6086,88.196389 1109.405,89.614299 1108.5892,90.737914 1107.5315,92.194646 1104.3893,92.767306 1101.9095,92.131551 1098.8474,91.346538 1097.665,89.133656 1099.0567,87.394902 1100.7194,85.317806 1105.2414,84.527107 1108.7838,85.500409 1112.915,86.635532 1114.4745,89.645224 1112.4923,91.99641 1110.2224,94.688893 1104.317,95.698086 1099.7151,94.381632 1094.5202,92.895563 1092.586,89.085462 1095.1654,86.122904 1098.0435,82.817228 1105.3354,81.591236 1110.9957,83.253715 A 1.1466641,0.66202713 0 0 0 1112.5376,82.964863 1.1466641,0.66202713 0 0 0 1112.0359,82.07378 Z" + id="path259-4" /> + </g> + <g + id="g441-1" + transform="translate(-1015.2662,103.33956)" + style="display:inline"> + <path + id="path437-1" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1911.2838,200.2433 1899.1878,207.22729 1926.8437,222.90756 1934.3755,222.72425 1906.821,206.86343 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g440-9" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1414.3258,-66.769716)"> + <path + id="path438-3" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path439-8" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path440-9" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path441-0" + style="fill:#f06060;fill-opacity:1;stroke-width:0.161858;stroke-linecap:round;stroke-linejoin:round" + d="M 1936.2119,193.15801 C 1935.0639,192.49521 1933.4765,192.08633 1931.7171,192.08633 1928.1986,192.08633 1925.3655,193.72196 1925.3655,195.75345 V 203.91164 H 1939.4959 C 1943.0146,203.91163 1945.8475,202.276 1945.8475,200.24451 1945.8475,199.22875 1945.1393,198.31225 1943.9914,197.64947 1942.8433,196.98667 1941.2556,196.57758 1939.4961,196.57758 H 1938.0685 V 195.75327 C 1938.0685,194.7375 1937.3599,193.82081 1936.2119,193.15801 Z" /> + </g> + <g + id="g522-1" + style="display:inline" + transform="translate(-801.3767,266.04833)"> + <path + id="path518-2" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1609.1838,88.8731 1597.0878,95.8571 1624.7437,111.53735 1632.2755,111.35398 1604.721,95.49314 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g521-2" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,1112.2258,-178.13993)"> + <path + id="path519-9" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path520-6" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path521-7" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path522-3" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.120965px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1639.0283,82.50996 1626.7562,82.59231 C 1622.1696,82.874328 1625.9081,84.690648 1626.6536,85.964971 1626.6416,86.583203 1623.6834,85.338099 1623.6712,85.956571 1623.6592,86.57484 1625.8313,88.407318 1625.8205,89.026099 1625.8085,89.644348 1623.6209,89.042769 1623.6091,89.661008 1623.5971,90.279258 1625.3345,90.691572 1624.3144,91.545451 1623.585,92.155353 1626.1377,93.04114 1627.8685,93.195978 1628.9399,93.188978 1627.3478,92.326794 1628.4187,92.319993 1631.0822,92.302823 1631.4497,93.506082 1633.2497,92.987126 1634.1391,92.730636 1632.3403,91.274811 1633.412,91.268572 1635.8255,91.634536 1641.6682,94.340144 1641.6682,91.454749 L 1641.8103,84.115093 C 1641.7943,83.680079 1641.4676,83.276432 1640.9605,82.982519 1640.4535,82.688648 1639.7659,82.504954 1639.0283,82.509916 Z M 1636.9243,83.013592 C 1637.7541,83.013525 1638.4978,83.016892 1639.0319,83.013592 1639.5688,83.010292 1640.064,83.144387 1640.4247,83.354916 1640.7857,83.56527 1641.0116,83.853236 1641.0083,84.155714 L 1640.9713,86.94717 C 1640.9613,87.21274 1640.5121,87.470976 1640.2552,87.472284 L 1640.0165,86.234686 1638.3708,86.913754 1637.9006,86.035382 1635.2988,85.697638 1636.8945,84.166455 1634.5566,84.526874 1633.2474,83.771426 C 1632.7136,83.463337 1633.3284,83.037524 1634.2975,83.03746 1635.1782,83.01805 1636.0945,83.01366 1636.9244,83.01359 Z M 1627.9246,87.110671 C 1627.9556,87.112171 1628.0016,87.129941 1628.063,87.165571 1628.124,87.317267 1630.0767,89.020352 1630.5764,89.423559 1630.7404,89.568718 1630.3782,89.606887 1629.9475,89.525001 1629.1941,89.272698 1627.557,87.092373 1627.9246,87.110673 Z M 1622.7928,88.046328 C 1622.4153,88.048528 1622.1384,88.173398 1622.177,88.483127 1622.25,89.061495 1623.6572,89.205511 1624.5543,88.974824 1624.6013,88.77802 1624.4278,88.580821 1624.1521,88.418681 1623.778,88.198537 1623.2206,88.043813 1622.7928,88.046328 Z M 1634.6282,93.346395 C 1634.4238,93.348695 1634.2209,93.377255 1634.0314,93.438285 1633.7236,93.616055 1635.7906,95.04191 1636.3729,94.70572 1636.6599,94.365093 1636.4309,93.980286 1635.9803,93.706809 1635.9643,93.697609 1635.9493,93.688279 1635.9323,93.679359 1635.9173,93.670659 1635.9033,93.661579 1635.8873,93.653099 V 93.653099 C 1635.5366,93.464374 1635.0784,93.341289 1634.6294,93.346386 Z M 1632.9955,93.638788 C 1631.8104,93.648948 1631.974,94.412292 1633.0245,94.569672 1633.3311,94.567572 1633.7139,94.164657 1633.1135,93.639981 1633.0725,93.638681 1633.0335,93.638481 1632.9955,93.638681 Z" /> + </g> + <path + id="path523" + style="fill:#c0b2a5;fill-opacity:1;stroke-width:0.627;stroke-linecap:round;stroke-linejoin:round" + d="M 952.38822,89.267193 945.66943,127.93711 952.38822,124.06709 Z" + sodipodi:nodetypes="cccc" /> + </g> + <g + id="g24505" + transform="matrix(0.65553207,0,0,0.65553207,46.762689,177.96081)" + inkscape:label="Logo"> + <path + style="fill:#000000;stroke:#ffeedc;stroke-width:17.4117;stroke-opacity:1;paint-order:markers stroke fill" + d="M 52.141958,130.59785 51.824303,130.55305 51.53324,130.47215 51.242177,130.39115 50.972632,130.26101 50.703087,130.13087 50.456956,129.88994 50.210826,129.649 50.110127,129.4435 50.009428,129.238 49.913498,128.81802 49.817568,128.39804 49.732878,128.15408 49.648188,127.91012 49.539479,127.68261 49.43077,127.45509 49.265107,127.21067 49.099444,126.96625 48.870146,126.74216 48.640849,126.51807 48.419721,126.37224 48.198593,126.22642 47.974328,126.11552 47.750064,126.00462 47.465475,125.90552 47.180887,125.80642 46.808699,125.71412 46.436513,125.62182 45.715661,125.49095 44.994811,125.36009 44.658413,125.28289 44.322016,125.20569 44.065714,125.12219 43.809411,125.03869 43.601726,124.94689 43.39404,124.85509 43.132627,124.68344 42.871213,124.51179 42.702492,124.32974 42.53377,124.14768 42.44539,123.96342 42.35701,123.77917 42.33561,123.62566 42.31421,123.47214 42.35164,123.28825 42.38907,123.10435 42.498443,122.88304 42.607815,122.66173 42.81503,122.38937 43.022246,122.117 43.592029,121.5256 44.161813,120.93421 44.43783,120.61679 44.713847,120.29936 44.841127,120.08944 44.968407,119.87952 45.036207,119.7004 45.104007,119.52128 45.124837,119.3663 45.145667,119.21132 45.093147,119.009 45.040627,118.80667 44.942857,118.65632 44.845087,118.50597 44.647623,118.32544 44.450159,118.1449 44.182479,117.97263 43.914798,117.80035 43.493665,117.58901 43.072532,117.37767 42.596546,117.17997 42.12056,116.98226 41.523279,116.75949 40.925998,116.53672 38.010556,115.58027 35.095113,114.62382 34.390281,114.36261 33.685449,114.10142 33.172844,113.88243 32.660239,113.66344 32.291804,113.47293 31.923369,113.28243 31.651205,113.10395 31.37904,112.92547 31.182797,112.73181 30.986553,112.53815 30.931143,112.37351 30.875723,112.20887 30.897643,112.09219 30.919563,111.97551 31.003443,111.82282 31.087323,111.67014 31.281082,111.49298 31.474841,111.31584 31.731143,111.15123 31.987446,110.98662 32.342612,110.794 32.697778,110.60138 33.885889,110.05013 35.073999,109.49889 35.436973,109.30166 35.799948,109.10443 36.06779,108.92931 36.335632,108.75419 36.526861,108.56839 36.718089,108.38258 36.795339,108.21885 36.872589,108.05512 36.872909,107.93555 36.873229,107.81597 36.824179,107.70012 36.775129,107.58429 36.697509,107.48386 36.619889,107.38344 36.273997,107.23379 35.928105,107.08414 35.548719,106.94469 35.169334,106.80524 34.587584,106.63112 34.005835,106.45702 32.980625,106.20735 31.955414,105.9577 30.763867,105.68531 29.57232,105.41292 28.982315,105.25713 28.39231,105.10134 27.915195,104.95552 27.438081,104.8097 26.973532,104.63448 26.508984,104.45926 26.119383,104.27106 25.729782,104.08287 25.391992,103.86588 25.054203,103.64889 24.776463,103.38596 24.498723,103.12302 24.359375,102.93052 24.220027,102.73802 24.108033,102.5037 23.996039,102.26939 23.943959,102.07969 23.891879,101.88999 23.875339,101.49479 23.858799,101.09959 23.911739,100.79942 23.964679,100.49924 24.097621,100.10386 24.230564,99.70849 24.496396,99.18334 24.762228,98.658184 25.176872,98.045158 25.591516,97.432136 25.866654,97.08436 26.141793,96.736583 37.312523,85.455298 48.483254,74.174018 48.774065,73.943198 49.064876,73.712378 49.337925,73.536735 49.610975,73.361098 49.924328,73.202224 50.237681,73.04335 50.563795,72.917524 50.889909,72.791698 51.178182,72.709258 51.466455,72.626808 51.898966,72.544958 52.331477,72.463118 53.03919,72.447708 53.746901,72.432298 54.176532,72.485958 54.606163,72.539618 55.09273,72.661803 55.579298,72.783994 55.951805,72.927729 56.324316,73.071464 56.671164,73.246547 57.018009,73.421625 57.349901,73.639671 57.681794,73.857722 57.935722,74.057648 58.189651,74.257579 69.687993,85.854189 81.186337,97.450805 81.556624,97.836668 81.926905,98.222536 82.197965,98.554504 82.469025,98.886472 82.710251,99.24526 82.951476,99.604055 83.137577,99.967413 83.323689,100.33077 83.438387,100.68357 83.553095,101.03636 83.600585,101.35252 83.648075,101.66868 83.648392,101.84818 83.648714,102.02769 83.614364,102.27146 83.580014,102.51523 83.501124,102.78389 83.422234,103.05255 83.276515,103.33935 83.130801,103.62615 82.971373,103.85372 82.811951,104.0813 82.565554,104.34715 82.319162,104.61299 82.078881,104.82746 81.838594,105.04193 81.48618,105.30287 81.133765,105.56381 80.781345,105.78381 80.42893,106.0038 80.132474,106.16829 79.836013,106.33278 79.288727,106.6031 78.741442,106.87343 78.271633,107.07954 77.80183,107.28566 77.048941,107.58105 76.296052,107.87645 75.527144,108.15129 74.758235,108.42613 71.842794,109.38218 68.927352,110.33823 68.227203,110.59727 67.527065,110.85631 67.073845,111.04753 66.620626,111.23875 66.157429,111.46486 65.694232,111.69096 65.569899,111.81232 65.445571,111.93368 65.385041,112.06525 65.324501,112.19682 65.323974,112.3724 65.323446,112.54799 65.405706,112.7109 65.487976,112.87381 65.670025,113.05809 65.852073,113.24237 66.076335,113.40667 66.300602,113.57097 66.781169,113.85171 67.261737,114.13245 68.0787,114.5739 68.895663,115.01535 69.198746,115.20082 69.50183,115.38628 69.811947,115.61681 70.122064,115.84734 70.334221,116.07347 70.546373,116.2996 70.661588,116.52965 70.776798,116.7597 70.793158,116.96073 70.809518,117.16177 70.694767,117.50019 70.580016,117.8386 70.418795,118.15689 70.257584,118.47518 70.141224,118.65569 70.024869,118.83618 69.809356,119.08965 69.593854,119.34312 69.372922,119.52053 69.151985,119.69793 68.961457,119.81739 68.770923,119.93685 68.480889,120.07186 68.190849,120.20687 67.804442,120.33383 67.41803,120.46078 66.747193,120.62124 66.07635,120.7817 65.467635,120.92746 64.858914,121.07323 64.314272,121.24671 63.76963,121.42019 63.29494,121.62093 62.820253,121.82166 62.461954,122.01515 62.103659,122.20863 61.65513,122.50384 61.2066,122.79904 60.982492,122.97709 60.758381,123.15514 60.450844,123.42143 60.143309,123.68772 59.902061,123.93691 59.660817,124.18609 59.573067,124.33386 59.485317,124.48162 59.454967,124.61492 59.424617,124.74823 59.462857,124.88299 59.501087,125.01775 59.626198,125.15802 59.751305,125.29828 59.950331,125.42793 60.149356,125.55758 60.750213,125.85536 61.351069,126.15314 61.539628,126.2795 61.728184,126.40586 61.84005,126.53483 61.951917,126.6638 61.990997,126.80155 62.030077,126.9393 62.006857,127.04525 61.983637,127.1512 61.910337,127.29348 61.837037,127.43575 61.722447,127.56679 61.607857,127.69783 61.279082,127.9176 60.950303,128.13738 60.593319,128.3455 60.236331,128.55362 59.808392,128.77515 59.38045,128.99668 58.931921,129.19244 58.483391,129.3882 58.038629,129.55957 57.593864,129.73095 57.161299,129.87357 56.72873,130.01618 56.212415,130.15737 55.6961,130.29856 55.151457,130.40609 54.606813,130.51364 54.206341,130.56604 53.805868,130.61854 53.133073,130.63054 52.46028,130.64254 52.142624,130.59774 Z" + id="path24070" /> + <path + style="fill:#ffffff;stroke-width:0.0318262" + d="M 54.485501,89.169564 57.280292,87.425779 H 57.298062 57.315832 L 59.111218,88.361244 60.906602,89.296715 60.917012,89.286005 60.927412,89.275295 61.347012,86.775645 61.766611,84.276001 V 84.254051 84.232051 L 63.934793,85.94425 66.102981,87.656454 66.177131,87.564824 66.251281,87.473184 66.319011,87.28349 66.386741,87.093795 66.403101,86.682784 66.419461,86.271778 66.365341,85.988012 66.311221,85.704246 66.217811,85.466344 66.124391,85.228448 65.998422,85.042083 65.872448,84.855724 61.586011,80.558067 57.299571,76.260411 56.961594,75.93879 56.623621,75.61717 56.335748,75.423576 56.047872,75.229982 55.748136,75.08171 55.448396,74.933437 55.11743,74.824142 54.78646,74.714853 54.47205,74.645363 54.15764,74.575883 53.42077,74.575877 52.6839,74.575872 52.358788,74.645932 52.033676,74.715992 51.704717,74.82899 51.375758,74.941984 51.116751,75.070147 50.857744,75.198311 50.63348,75.34106 50.409215,75.483808 50.18495,75.665994 49.960685,75.848179 46.835915,78.941701 43.711144,82.035229 42.988733,82.778203 42.266321,83.521182 41.707649,84.108343 41.148978,84.695509 41.001442,84.867131 40.853906,85.038747 40.703539,85.260059 40.553171,85.481376 40.430671,85.7343 40.308171,85.98723 40.227711,86.240159 40.147251,86.493088 40.111031,86.793439 40.074811,87.093794 40.108561,87.33091 40.142311,87.56803 40.178141,87.678686 40.213971,87.789342 40.305061,87.969016 40.396151,88.148685 40.556751,88.307173 40.717353,88.465662 40.917801,88.558902 41.11825,88.652142 41.288026,88.687072 41.457801,88.722002 43.963184,88.720902 46.468567,88.719802 48.00316,86.095482 49.537754,83.471162 49.560084,83.457552 49.582414,83.443942 50.471654,86.975898 51.360893,90.507854 51.425813,90.769411 51.490733,91.030973 51.590738,90.971913 51.690742,90.912853 54.485537,89.169068 Z" + id="path24494" /> + <path + style="fill:#ffffff;stroke-width:0.0318262" + d="M 53.917336,112.5003 54.061506,112.4252 54.253733,112.29732 54.44596,112.16945 54.649541,111.97771 54.853119,111.78597 54.932619,111.6315 55.012119,111.47702 54.992729,111.375 54.973339,111.27299 54.917839,111.22339 54.862339,111.17389 54.779239,111.14269 54.696139,111.11149 54.042426,110.99603 53.388717,110.88058 51.690712,110.54877 49.992707,110.21696 48.695175,109.94893 47.397643,109.68091 46.164187,109.41123 44.93073,109.14156 44.189819,108.95619 43.448908,108.77082 43.196647,108.68682 42.944385,108.60282 42.755862,108.61592 42.56734,108.62902 42.52698,108.68352 42.48662,108.73802 42.50325,108.80082 42.51988,108.86362 42.67944,109.00136 42.839001,109.1391 43.170097,109.33373 43.501193,109.52836 44.08781,109.80855 44.674428,110.08873 45.403261,110.39143 46.132094,110.69414 46.828944,110.95209 47.525795,111.21004 48.178002,111.42769 48.830209,111.64534 49.283307,111.78411 49.736405,111.92289 50.329104,112.08188 50.921805,112.24087 51.434409,112.35227 51.947015,112.46368 52.363507,112.52648 52.779998,112.58928 53.276584,112.58228 53.773171,112.57528 Z" + id="path24492" /> + </g> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke-width:1.02393;stroke-linecap:round;paint-order:markers fill stroke" + id="rect1" + width="112.78353" + height="27.059397" + x="26.516504" + y="272.23611" /> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Liberation Serif';-inkscape-font-specification:'Liberation Serif';letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-linecap:round;paint-order:markers fill stroke" + x="33.958904" + y="289.46402" + id="text1"><tspan + sodipodi:role="line" + id="tspan1" + x="33.958904" + y="289.46402" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Linux Libertine G';-inkscape-font-specification:'Linux Libertine G'">INKSCAPE 1.3</tspan></text> + </g> + <style + id="style1182" /> +</svg> diff --git a/packaging/release-sign-tarballs b/packaging/release-sign-tarballs new file mode 100755 index 0000000..ac35fad --- /dev/null +++ b/packaging/release-sign-tarballs @@ -0,0 +1,261 @@ +#!/bin/bash + +SIGNER="bryce@bryceharrington.org" +VERSION="0.92" +PKG_NAME="inkscape" +LIST_TO="inkscape-announce@lists.sf.net" +LIST_CC="inkscape-devel@lists.sf.net" +VCS_SYSTEM="git" + +# Locate Dependencies +#------------------------------------------------------------------------------ + +MD5SUM=`which md5sum || which gmd5sum` +SHA1SUM=`which sha1sum || which gsha1sum` +SHA256SUM=`which sha256sum || which gsha256sum` + +# Choose which make program to use (could be gmake) +MAKE=${MAKE:="make"} + +# Set the default make tarball creation command +MAKE_DIST_CMD=distcheck + +# Choose which grep program to use (on Solaris, must be gnu grep) +if [ "x$GREP" = "x" ] ; then + if [ -x /usr/gnu/bin/grep ] ; then + GREP=/usr/gnu/bin/grep + else + GREP=grep + fi +fi + +# Find path for GnuPG v2 +if [ "x$GPG" = "x" ] ; then + if [ -x /usr/bin/gpg2 ] ; then + GPG=/usr/bin/gpg2 + else + GPG=gpg + fi +fi + +#------------------------------------------------------------------------------ + +usage() { + basename="`expr "//$0" : '.*/\([^/]*\)'`" + cat <<HELP + +Usage: $basename [options] path... + +Where "path" is a relative path to a ${VCS_SYSTEM} module, including '.'. + +Options: + (none) + +Environment variables: + MAKE: The name of the make command [make] + MAKEFLAGS: Options to pass to all \$(MAKE) invocations [] + +HELP +} + +#------------------------------------------------------------------------------ + +check_local_changes() { + lines=$(git diff | wc -l) + if [ $lines -gt 0 ]; then + echo "" + echo "Uncommitted changes found. Did you forget to commit? Aborting." + echo "" + echo "You can clone the module in another directory" + echo "and run ./configure. No need to build if testing was finished." + echo "" + return 1 + fi + + return 0 +} + +#------------------------------------------------------------------------------ +# Function: make_dist +# +# Create the package distribution +# Return 0 on success, 1 on fail +make_dist() { + if [ $VCS_SYSTEM = "git" ] && [ ! -d .git ]; then + echo "Error: There is no git repository here: $(pwd)" + return 1 + else + echo "Error: Unrecognized version control '$VCS_SYSTEM'." + return 1 + fi + + # Change to an out-of-source build directory + config_indicator=CMakeCache.txt + status_file=$(find . -name ${config_indicator} -type f) + if [ $? -ne 0 ]; then + echo "Error: Failed to locate ${config_indicator}." + echo "Has the module been configured?" + return 1 + fi + configNum=$(echo "$status_file" | wc -l | sed 's:^ *::') + if [ x"$configNum" = x0 ]; then + echo "Error: Failed to locate ${config_indicator}, has the module been configured?" + return 1 + elif [ x"$configNum" != x1 ]; then + echo "Error: More than one ${config_indicator} file was found." + echo "Please cleanup previously failed attempts at distcheck." + fi + + build_dir=$(dirname ${status_file}) + cd ${build_dir} + if [ $? -ne 0 ]; then + echo "Error: Failed to cd to build directory ${build_dir}." + return 1 + fi + + check_local_changes + if [ $? -ne 0 ]; then + cd ${top_src} + return 1 + fi + + echo "Info: running 'make $MAKE_DIST_CMD' to create tarballs:" + ${MAKE} ${MAKEFLAGS} ${MAKE_DIST_CMD} > /dev/null + if [ $? -ne 0 ]; then + echo "Error: '${MAKE} ${MAKEFLAGS} ${MAKE_DIST_CMD}' failed." + cd $top_src + return 1 + fi + + return 0 +} + +# Function: sign_or_fail +#------------------------------------------------------------------------------ +# +# Sign the given file, if any +# Output the name of the signature generated to stdout (all other output to +# stderr) +# Return 0 on success, 1 on fail +# +sign_or_fail() { + if [ -n "$1" ]; then + sig=$1.sig + rm -f $sig + + [ -n ${SIGNER} ] && signer="-u $SIGNER" + + echo "$GPG $signer --detach-sign $1" 1>&2 + $GPG $signer --detach-sign $1 1>&2 + if [ $? -ne 0 ]; then + echo "Error: failed to sign $1." >&2 + return 1 + fi + echo $sig + fi + return 0 +} + + +sign_packages() { + tar_name="$1" + targz="${tar_name}.tar.gz" + tarbz2="${tar_name}.tar.bz2" + tarxz="${tar_name}.tar.xz" + zip="${tar_name}.zip" + + for tarball in $targz $tarxz $tarbz2 $zip; do + if [ -e "${tarball}" ]; then + sig="$(sign_or_fail ${tarball})" + gpgsignerr=$((${gpgsignerr} + $?)) + sig_url="http://inkscape.org/.../$sig" + cat <<EOF +https://inkscape.org/en/download/source/ +MD5: `$MD5SUM $tarball` +SHA1: `$SHA1SUM $tarball` +SHA256: `$SHA256SUM $tarball` +$sig_url + +EOF + fi + done + + if [ ${gpgsignerr} -ne 0 ]; then + echo "Error: unable to sign at least one of the tarballs." + return 1 + elif [ -z "$siggz" ]; then + # The tar.gz is always required + echo "Error: Unable to sign the tar.gz file." + return 2 + fi + + return 0; +} + +generate_announce() { + cat <<RELEASE +Subject: [ANNOUNCE] $PKG_NAME $VERSION +To: $LIST_TO +Cc: $LIST_CC + +The Inkscape community proudly announces the release of Inkscape $VERSION. + + https://inkscape.org/release/ + +Inkscape is a Free and open source vector graphics editor. It offers a rich set +of features and is widely used for both artistic and technical illustrations +such as cartoons, clip art, logos, typography, diagramming and flowcharting. + +It emphasizes the W3C standard Scalable Vector Graphics +(SVG) file format, but reads and writes a wealth of other formats +including PDF, so it is an easy complement to your other graphics and +desktop tools. Best of all, Inkscape is created *by* the community *for* +the community: Inkscape is 100% Open Source and freely available to +everyone in the world. + +<INSERT DETAILS ABOUT THE RELEASE HERE> + +The above barely scratches the surface of what's included in this +release. For the full scoop, please see our detailed Release Notes: + + http://wiki.inkscape.org/wiki/index.php/Release_notes/$VERSION + +RELEASE +} + +process() { + top_src=$(pwd) + + tar_name=$(make_dist) + generate_announce > "${tar_name}.announce" + + # TODO: Once converted to git, enable display of shortlog + #tag_previous=`git describe --abbrev=0 HEAD^ 2>/dev/null` + #tag_range="FIXME..FIXME" + #`git log --no-merges "$tag_range" | git shortlog` + echo "${VCS_SYSTEM} tag: $tar_name" >> ${tar_name}.announce + + sign_packages ${tar_name} >> "${tar_name}.announce" + if [ $? -ne 0 ]; then + rm "${tar_name}.announce" + echo "Error: Failed signatures" + return 1 + fi + + # TODO: Verify the top commit SHA has a version bump + # local_top_commit_sha=`git rev-list --max-count=1 HEAD` + # git diff --unified=0 HEAD^ | $GREP -F $pkg_version >/dev/null 2>&1 + # TODO: Check that the top commit is pushed to remote + # git rev-list --max-count=1 $remote_name/$remote_branch + + echo "TODO: Tag the top commit as $tar_name" + echo "TODO: Upload the tarballs to the remote" + echo "TODO: Push all local changes and tags to remote" + + echo "Info: [ANNOUNCE] template generated in \"$tar_name.announce\" file." + echo " Please pgp sign and send it." + + return 0 +} + +process diff --git a/packaging/scripts/lp-mark-bugs-released b/packaging/scripts/lp-mark-bugs-released new file mode 100755 index 0000000..7e93621 --- /dev/null +++ b/packaging/scripts/lp-mark-bugs-released @@ -0,0 +1,77 @@ +#!/usr/bin/python + +# Copyright (c) 2010 Canonical Ltd. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 3 as published +# by the # Free Software Foundation +# +# lp-mark-bugs-released is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. + +'''Mark bugs that are Fix Committed on a release to be Fix Released''' + +import datetime +import os +import sys +import tempfile + +from launchpadlib.launchpad import Launchpad +from launchpadlib.errors import HTTPError + +opt_dry_run = False + +def mark_released (bug): + if bug.status == 'Fix Committed': + print "Marking bug " + str(bug.bug.id) + " as 'Fix Released'" + bug.status = "Fix Released" + if not opt_dry_run: + bug.lp_save() + +def main(): + if len(sys.argv) != 3: + print >> sys.stderr, '''Mark bugs 'Fix Committed' on a release as released + + Usage: %s <project name> <version>''' % sys.argv[0] + sys.exit(1) + + (project, version) = sys.argv[1:] + + try: + launchpad = Launchpad.login_with('ubuntu-dev-tools', 'production') + except Exception, error: + print >> sys.stderr, 'Could not connect to Launchpad:', str(error) + sys.exit(2) + + try: + # Look up the project using the Launchpad instance. + proj = launchpad.projects[project] + # Find the release in the project's releases collection. + release = None + for rel in proj.releases: + if rel.version == version: + release = rel + break + if not release: + print >> sys.stderr, '''Unable to find release: %s''' % version + sys.exit(1) + + # Mark any fix committed bugs released + for task in release.milestone.searchTasks(status="Fix Committed"): + if task.milestone is None: + for othertask in task.related_tasks: + if othertask.milestone.name == release.milestone.name: + mark_released(othertask) + else: + mark_released(task) + + except HTTPError, error: + print 'An error happened in the upload: %s\n%s' %( + error.content, + error.__dict__) + sys.exit(1) + +if __name__ == '__main__': + main() diff --git a/packaging/snappy/lib/share/README.txt b/packaging/snappy/lib/share/README.txt new file mode 100644 index 0000000..a797ce4 --- /dev/null +++ b/packaging/snappy/lib/share/README.txt @@ -0,0 +1 @@ +Here so the directory is created diff --git a/packaging/win32/Run Inkscape !.bat b/packaging/win32/Run Inkscape !.bat new file mode 100644 index 0000000..7e251b7 --- /dev/null +++ b/packaging/win32/Run Inkscape !.bat @@ -0,0 +1,2 @@ +cd bin +start inkscape.exe diff --git a/packaging/win32/Run Inkscape and create debug trace.bat b/packaging/win32/Run Inkscape and create debug trace.bat new file mode 100644 index 0000000..3a01902 --- /dev/null +++ b/packaging/win32/Run Inkscape and create debug trace.bat @@ -0,0 +1,2 @@ +cd bin +start gdb_create_backtrace.bat diff --git a/packaging/win32/Run Inkscape with GTK Inspector.bat b/packaging/win32/Run Inkscape with GTK Inspector.bat new file mode 100644 index 0000000..85337e4 --- /dev/null +++ b/packaging/win32/Run Inkscape with GTK Inspector.bat @@ -0,0 +1,3 @@ +cd bin +set GTK_DEBUG=interactive +start inkscape.exe diff --git a/packaging/win32/gdb_create_backtrace.bat b/packaging/win32/gdb_create_backtrace.bat new file mode 100644 index 0000000..220c990 --- /dev/null +++ b/packaging/win32/gdb_create_backtrace.bat @@ -0,0 +1,32 @@ +@echo off +rem Execute this to create a debug backtrace of an Inkscape crash. + +set TRACEFILE="%USERPROFILE%\inkscape_backtrace.txt" + +echo Thanks for creating a debug backtrace! +echo. +echo After Inkscape starts, try to force the crash. +echo The backtrace will be recorded automatically. +echo. +echo Gathering system info... + +echo --- INKSCAPE VERSION --- > %TRACEFILE% +inkscape.com --debug-info >> %TRACEFILE% +echo. >> %TRACEFILE% +echo --- SYSTEM INFO --- >> %TRACEFILE% +systeminfo >> %TRACEFILE% + +echo. +echo Launching Inkscape, please wait... + +echo. >> %TRACEFILE% +echo --- BACKTRACE --- >> %TRACEFILE% +gdb.exe -batch -ex "run --app-id-tag gdbbt" -ex "bt" inkscape.exe >> %TRACEFILE% + +echo. +echo Backtrace written to %TRACEFILE% +echo Please attach this file when reporting the issue at https://inkscape.org/report +echo (remove personal information you do not want to share, e.g. your user name) +echo. + +pause diff --git a/packaging/wix/Bitmaps/banner.bmp b/packaging/wix/Bitmaps/banner.bmp Binary files differnew file mode 100644 index 0000000..e06f5ea --- /dev/null +++ b/packaging/wix/Bitmaps/banner.bmp diff --git a/packaging/wix/Bitmaps/banner.svg b/packaging/wix/Bitmaps/banner.svg new file mode 100644 index 0000000..a2aebe7 --- /dev/null +++ b/packaging/wix/Bitmaps/banner.svg @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="493" + height="58" + id="svg2" + version="1.1" + inkscape:version="1.4-dev (6fe04ba, 2023-06-30, custom)" + sodipodi:docname="banner.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="banner.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <defs + id="defs4" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="161" + inkscape:cy="-95" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1858" + inkscape:window-height="1177" + inkscape:window-x="1912" + inkscape:window-y="-8" + inkscape:window-maximized="1" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:document-rotation="0" + inkscape:snap-center="true" + inkscape:snap-bbox="true" + inkscape:snap-bbox-midpoints="true" + inkscape:snap-nodes="true" + inkscape:bbox-paths="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-994.36218)"> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="rect2830" + width="493" + height="58" + x="-0.36694327" + y="994.3913" /> + <path + style="fill:#000000;stroke-width:0.0200902" + d="M 38.33588,1041.7367 38.13537,1041.7077 37.95163,1041.6567 37.7679,1041.6057 37.59775,1041.5237 37.4276,1041.4417 37.27223,1041.2897 37.11685,1041.1376 37.05335,1041.0079 36.98985,1040.8781 36.92925,1040.613 36.86865,1040.3479 36.81515,1040.1939 36.76165,1040.0399 36.69305,1039.8963 36.62445,1039.7527 36.51987,1039.5983 36.4153,1039.4441 36.27055,1039.3026 36.12581,1039.1612 35.98622,1039.0692 35.84663,1038.9772 35.70507,1038.9072 35.5635,1038.8372 35.38385,1038.7742 35.2042,1038.7112 34.96927,1038.6532 34.73432,1038.5952 34.27929,1038.5122 33.82425,1038.4302 33.6119,1038.3812 33.39955,1038.3322 33.23776,1038.2792 33.07597,1038.2262 32.94486,1038.1682 32.81377,1038.1102 32.64875,1038.0018 32.48373,1037.8935 32.37723,1037.7785 32.27072,1037.6637 32.21492,1037.5473 32.15912,1037.431 32.14562,1037.334 32.13212,1037.237 32.15572,1037.1209 32.17932,1037.0048 32.24842,1036.8651 32.31752,1036.7254 32.44832,1036.5535 32.57913,1036.3815 32.9388,1036.0082 33.29847,1035.6349 33.47271,1035.4345 33.64694,1035.2342 33.72724,1035.1017 33.80754,1034.9691 33.85024,1034.8561 33.89304,1034.743 33.90624,1034.645 33.91944,1034.547 33.88634,1034.4194 33.85314,1034.2916 33.79144,1034.1966 33.72964,1034.1016 33.60499,1033.9877 33.48035,1033.8738 33.31137,1033.765 33.1424,1033.6563 32.87656,1033.5229 32.61072,1033.3894 32.31026,1033.2647 32.00979,1033.1399 31.63276,1032.9993 31.25573,1032.8586 29.41536,1032.2548 27.57499,1031.6511 27.13006,1031.4862 26.68514,1031.3213 26.36155,1031.1831 26.03797,1031.0449 25.8054,1030.9246 25.57282,1030.8043 25.40102,1030.6916 25.22922,1030.579 25.10534,1030.4568 24.98146,1030.3345 24.94646,1030.2306 24.91146,1030.1267 24.92526,1030.0527 24.93906,1029.9787 24.99196,1029.8827 25.04486,1029.7867 25.16718,1029.6749 25.28948,1029.5631 25.45127,1029.4591 25.61307,1029.3553 25.83727,1029.2337 26.06146,1029.1121 26.81145,1028.7641 27.56145,1028.4161 27.79058,1028.2916 28.01971,1028.1671 28.18878,1028.0566 28.35785,1027.946 28.47856,1027.8287 28.59928,1027.7115 28.64798,1027.6081 28.69668,1027.5047 28.69688,1027.4287 28.69708,1027.3527 28.66618,1027.2797 28.63528,1027.2067 28.58628,1027.1427 28.53728,1027.0787 28.31895,1026.9847 28.1006,1026.8907 27.86111,1026.8027 27.62163,1026.7147 27.2544,1026.6049 26.88717,1026.4949 26.24001,1026.3374 25.59285,1026.1797 24.84068,1026.0078 24.08852,1025.8359 23.71608,1025.7379 23.34364,1025.6399 23.04246,1025.5479 22.74129,1025.4559 22.44804,1025.3452 22.15479,1025.2346 21.90886,1025.1158 21.66292,1024.997 21.44969,1024.8601 21.23646,1024.7231 21.06114,1024.5571 20.88581,1024.3911 20.79781,1024.2696 20.70981,1024.148 20.63911,1024.0001 20.56841,1023.8522 20.53551,1023.7325 20.50261,1023.6127 20.49221,1023.3633 20.48181,1023.1138 20.51521,1022.9243 20.54861,1022.7348 20.63251,1022.4852 20.71641,1022.2357 20.88421,1021.9042 21.05201,1021.5727 21.31376,1021.1857 21.5755,1020.7987 21.74918,1020.5791 21.92286,1020.3597 28.97437,1013.2383 36.02588,1006.1171 36.20945,1005.9714 36.39303,1005.8257 36.56539,1005.7148 36.73775,1005.6039 36.93556,1005.5036 37.13336,1005.4034 37.33922,1005.3244 37.54508,1005.2454 37.72705,1005.1934 37.90902,1005.1414 38.18205,1005.0894 38.45507,1005.0374 38.90181,1005.0274 39.34855,1005.0174 39.61975,1005.0514 39.89096,1005.0854 40.1981,1005.1624 40.50525,1005.2394 40.7404,1005.3304 40.97554,1005.4204 41.19449,1005.531 41.41343,1005.6415 41.62294,1005.779 41.83245,1005.9167 41.99274,1006.0429 42.15303,1006.1691 49.41135,1013.4895 56.66966,1020.8099 56.90341,1021.0534 57.13714,1021.297 57.30825,1021.5066 57.47935,1021.7161 57.63162,1021.9426 57.7839,1022.1691 57.90138,1022.3985 58.01886,1022.6279 58.09126,1022.8506 58.16366,1023.0733 58.19366,1023.2729 58.22366,1023.4724 58.22387,1023.5857 58.22407,1023.699 58.20237,1023.853 58.18067,1024.0068 58.13087,1024.1764 58.08107,1024.346 57.98907,1024.527 57.89707,1024.7081 57.79643,1024.8517 57.69579,1024.9954 57.54026,1025.1632 57.38472,1025.331 57.23305,1025.4664 57.08136,1025.6018 56.8589,1025.7665 56.63644,1025.9312 56.41398,1026.0701 56.19152,1026.2089 56.00438,1026.3128 55.81723,1026.4166 55.47177,1026.5872 55.12629,1026.7579 54.82972,1026.888 54.53316,1027.0181 54.0579,1027.2046 53.58264,1027.391 53.09727,1027.5646 52.61189,1027.7381 50.77152,1028.3415 48.93116,1028.9451 48.48919,1029.1086 48.04723,1029.2721 47.76113,1029.3927 47.47504,1029.5135 47.18265,1029.6562 46.89026,1029.799 46.81176,1029.876 46.73326,1029.953 46.69506,1030.036 46.65686,1030.119 46.65652,1030.2299 46.65618,1030.3407 46.70818,1030.4436 46.76008,1030.5464 46.87499,1030.6628 46.98991,1030.7791 47.13148,1030.8828 47.27305,1030.9864 47.57641,1031.1637 47.87977,1031.3409 48.39547,1031.6196 48.91118,1031.8983 49.1025,1032.0153 49.29382,1032.1324 49.48958,1032.2779 49.68534,1032.4234 49.81927,1032.5662 49.95319,1032.7089 50.02589,1032.8541 50.09869,1032.9994 50.10899,1033.1263 50.11929,1033.2532 50.04679,1033.4668 49.97429,1033.6805 49.87253,1033.8814 49.77076,1034.0823 49.69726,1034.1962 49.62376,1034.3101 49.48773,1034.4701 49.35169,1034.6301 49.21223,1034.7421 49.07276,1034.8541 48.95249,1034.9301 48.83222,1035.0061 48.64913,1035.0911 48.46605,1035.1761 48.22213,1035.2561 47.9782,1035.3361 47.55474,1035.4373 47.13127,1035.5386 46.74702,1035.6306 46.36277,1035.7226 46.01896,1035.8321 45.67516,1035.9417 45.37551,1036.0683 45.07586,1036.195 44.84969,1036.3172 44.62352,1036.4393 44.34039,1036.6257 44.05725,1036.812 43.91577,1036.9244 43.77431,1037.0369 43.58018,1037.2049 43.38604,1037.373 43.23376,1037.5302 43.08147,1037.6876 43.02607,1037.7806 42.97067,1037.8736 42.95157,1037.9576 42.93237,1038.0416 42.95657,1038.1266 42.98067,1038.2116 43.05957,1038.3006 43.13847,1038.3896 43.2641,1038.4716 43.38974,1038.5536 43.76903,1038.7416 44.14832,1038.9295 44.26735,1039.0085 44.38637,1039.0875 44.45697,1039.1685 44.52757,1039.2495 44.55227,1039.3365 44.57697,1039.4235 44.56227,1039.4895 44.54757,1039.5565 44.50137,1039.6455 44.45507,1039.7355 44.38267,1039.8185 44.31027,1039.9015 44.10274,1040.0402 43.8952,1040.179 43.66985,1040.3103 43.4445,1040.4417 43.17437,1040.5815 42.90423,1040.7214 42.6211,1040.845 42.33796,1040.9686 42.05721,1041.0767 41.77644,1041.1849 41.50339,1041.2759 41.23033,1041.3649 40.90441,1041.4549 40.57848,1041.5439 40.23468,1041.6119 39.89088,1041.6789 39.63808,1041.7119 39.38528,1041.7449 38.96058,1041.7549 38.53588,1041.7649 38.33536,1041.7359 Z M 39.45658,1030.3126 39.54758,1030.2656 39.66892,1030.1856 39.79027,1030.1056 39.91878,1029.9847 40.04729,1029.8637 40.09739,1029.7657 40.14759,1029.6677 40.13539,1029.6027 40.12309,1029.5377 40.08809,1029.5067 40.05309,1029.4757 40.00059,1029.4567 39.94819,1029.4377 39.53554,1029.3647 39.12288,1029.2917 38.05102,1029.0822 36.97915,1028.8727 36.16009,1028.7036 35.34103,1028.5343 34.56241,1028.3642 33.78379,1028.1939 33.31609,1028.0768 32.84839,1027.9599 32.68915,1027.9069 32.52991,1027.8539 32.4109,1027.8639 32.2919,1027.8739 32.2664,1027.9079 32.2409,1027.9419 32.2514,1027.9819 32.2619,1028.0219 32.36262,1028.1089 32.46335,1028.1959 32.67235,1028.3187 32.88135,1028.4416 33.25165,1028.6185 33.62196,1028.7953 34.08203,1028.9864 34.54211,1029.1774 34.98199,1029.3403 35.42188,1029.5031 35.83358,1029.6405 36.24529,1029.7779 36.53131,1029.8659 36.81732,1029.9539 37.19146,1030.0543 37.5656,1030.1546 37.88919,1030.2246 38.21276,1030.2946 38.47567,1030.3346 38.73858,1030.3746 H 39.05205 39.36552 Z M 39.81525,1015.5851 41.57945,1014.4843 H 41.59075 41.60205 L 42.73538,1015.0748 43.86872,1015.6653 43.87472,1015.6553 43.88072,1015.6453 44.1456,1014.0675 44.41046,1012.4896 V 1012.4756 1012.4616 L 45.77913,1013.5424 47.14779,1014.6232 47.19459,1014.5652 47.24139,1014.5072 47.28419,1014.3875 47.32689,1014.2677 47.33719,1014.0083 47.34749,1013.7488 47.31329,1013.5696 47.27909,1013.3905 47.22009,1013.2403 47.16109,1013.0902 47.08159,1012.9726 47.00209,1012.8549 44.29629,1010.142 41.59047,1007.4292 41.37712,1007.2261 41.16378,1007.0231 40.98207,1006.9009 40.80034,1006.7786 40.61113,1006.6856 40.42193,1006.5916 40.213,1006.5226 40.00408,1006.4536 39.80561,1006.4096 39.60713,1006.3656 H 39.14199 38.67684 L 38.47162,1006.4096 38.26638,1006.4536 38.05873,1006.5246 37.85108,1006.5956 37.68758,1006.6766 37.52408,1006.7576 37.38251,1006.8476 37.24094,1006.9386 37.09938,1007.0536 36.95781,1007.1686 34.98531,1009.1214 33.0128,1011.0741 32.55678,1011.5432 32.10076,1012.0122 31.7481,1012.3829 31.39543,1012.7535 31.30233,1012.8618 31.20923,1012.9702 31.11433,1013.1099 31.01943,1013.2495 30.94213,1013.4092 30.86473,1013.5689 30.81393,1013.7285 30.76313,1013.8883 30.74023,1014.0778 30.71733,1014.2674 30.73863,1014.4171 30.75993,1014.5668 30.78253,1014.6368 30.80513,1014.7068 30.86263,1014.8202 30.92013,1014.9337 31.02151,1015.0337 31.12288,1015.1338 31.24942,1015.1928 31.37595,1015.2518 31.48313,1015.2738 31.59029,1015.2958 H 33.17181 34.75333 L 35.72204,1013.6392 36.69075,1011.9826 36.70485,1011.9726 36.71895,1011.9626 37.28029,1014.1921 37.84162,1016.4217 37.88262,1016.5868 37.92362,1016.7519 37.98682,1016.7149 38.05002,1016.6779 39.81424,1015.5772 Z M 29.04923,1037.4376 28.90548,1037.4026 28.75599,1037.3326 28.6065,1037.2626 28.48081,1037.1686 28.35512,1037.0746 28.23141,1036.9414 28.1077,1036.8082 28.0396,1036.688 27.9715,1036.5678 27.9401,1036.449 27.9087,1036.3302 27.90894,1036.2392 27.90918,1036.1492 27.93628,1036.0492 27.96338,1035.9492 28.01648,1035.8461 28.06958,1035.7429 28.17016,1035.6236 28.27074,1035.5044 28.44576,1035.3748 28.62078,1035.2451 28.81587,1035.1451 29.01097,1035.0451 29.20801,1034.9731 29.40505,1034.9011 29.61248,1034.8511 29.81992,1034.8011 30.04848,1034.7711 30.27703,1034.7421 H 30.4934 30.70977 L 30.89178,1034.7641 31.07381,1034.7861 31.2457,1034.8341 31.4176,1034.8821 31.60571,1034.9751 31.79381,1035.0671 31.94625,1035.2076 32.09869,1035.3481 32.08729,1035.4051 32.07579,1035.4611 31.98289,1035.6441 31.88999,1035.827 31.79789,1035.9679 31.70589,1036.1087 31.57918,1036.2684 31.45247,1036.428 31.25313,1036.6187 31.05378,1036.8093 30.96278,1036.8803 30.87178,1036.9513 30.72011,1037.0513 30.56843,1037.1513 30.41675,1037.2273 30.26507,1037.3023 30.13361,1037.3513 30.00216,1037.4003 29.83025,1037.4383 29.65835,1037.4763 H 29.42578 29.19321 L 29.04946,1037.4413 Z M 51.61111,1037.0091 51.49988,1036.9831 51.41898,1036.9571 51.33808,1036.9311 51.19662,1036.8591 51.05518,1036.7871 50.92159,1036.6628 50.788,1036.5384 50.7262,1036.4233 50.6644,1036.3081 50.6321,1036.1997 50.5998,1036.0913 V 1035.9594 1035.8275 L 50.6309,1035.7086 50.662,1035.5897 50.7224,1035.4616 50.7828,1035.3336 50.8563,1035.2321 50.9298,1035.1306 51.03683,1035.0098 51.14387,1034.8889 51.19387,1034.8619 51.24377,1034.8349 51.39199,1034.8699 51.54019,1034.9049 51.71209,1034.9639 51.884,1035.0229 52.04579,1035.1029 52.20758,1035.1829 52.29858,1035.2439 52.38958,1035.3039 52.51833,1035.4054 52.64708,1035.5069 52.75713,1035.6367 52.86718,1035.7664 52.95698,1035.9459 53.04678,1036.1255 53.07118,1036.2704 53.09558,1036.4152 53.07128,1036.5298 53.04698,1036.6445 53.01108,1036.6945 52.97518,1036.7445 52.78354,1036.8385 52.59191,1036.9325 52.43011,1036.9755 52.26832,1037.0185 51.9953,1037.0285 51.72228,1037.0385 Z M 53.94696,1034.0421 53.74473,1034.0251 53.49193,1033.9931 53.23913,1033.9611 52.98179,1033.9121 52.72443,1033.8631 52.51663,1033.8021 52.30883,1033.7411 52.16727,1033.6741 52.0257,1033.6071 51.9609,1033.5441 51.8961,1033.4811 51.8836,1033.4421 51.8711,1033.4031 51.9057,1033.2988 51.9403,1033.1944 52.011,1033.0547 52.0817,1032.915 52.1607,1032.7999 52.2397,1032.685 52.36368,1032.5543 52.48765,1032.4234 52.66106,1032.2948 52.83448,1032.1662 53.04856,1032.0586 53.26265,1031.9511 53.48989,1031.8791 53.71714,1031.8061 53.95331,1031.7641 54.18947,1031.7221 H 54.53328 54.87708 L 55.03888,1031.7471 55.20066,1031.7721 55.42898,1031.8311 55.65729,1031.8901 55.83908,1031.9671 56.02087,1032.0451 56.19564,1032.1519 56.37042,1032.2587 56.56704,1032.4483 56.76368,1032.6379 56.86118,1032.7876 56.95858,1032.9372 57.02478,1033.0869 57.09098,1033.2366 57.07838,1033.3066 57.06578,1033.3766 57.02998,1033.4466 56.99418,1033.5166 56.89008,1033.6126 56.78597,1033.7086 56.62019,1033.7856 56.45442,1033.8626 56.25897,1033.9156 56.06352,1033.9686 55.79382,1034.0106 55.52413,1034.0526 54.83651,1034.0626 54.14891,1034.0726 53.94667,1034.0556 Z" + id="path24070" /> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Liberation Serif';-inkscape-font-specification:'Liberation Serif';letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-linecap:round;paint-order:markers fill stroke" + x="70.819458" + y="1028.5789" + id="text1"><tspan + sodipodi:role="line" + id="tspan1" + x="70.819458" + y="1028.5789" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Linux Libertine G';-inkscape-font-specification:'Linux Libertine G'">INKSCAPE 1.3</tspan></text> + </g> +</svg> diff --git a/packaging/wix/Bitmaps/dialog.bmp b/packaging/wix/Bitmaps/dialog.bmp Binary files differnew file mode 100644 index 0000000..04b0c4e --- /dev/null +++ b/packaging/wix/Bitmaps/dialog.bmp diff --git a/packaging/wix/Bitmaps/dialog.svg b/packaging/wix/Bitmaps/dialog.svg new file mode 100644 index 0000000..f1b9df7 --- /dev/null +++ b/packaging/wix/Bitmaps/dialog.svg @@ -0,0 +1,3972 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="493" + height="312" + id="svg5029" + version="1.1" + inkscape:version="1.4-dev (6fe04ba, 2023-06-30, custom)" + sodipodi:docname="dialog.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + inkscape:export-filename="dialog.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <defs + id="defs5031"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath1"> + <rect + style="fill:#ffffff;stroke-width:13.5594;stroke-linejoin:round" + id="rect3" + width="168.60876" + height="312.2905" + x="-168.60876" + y="2.7014924e-09" + transform="scale(-1,1)" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.4142136" + inkscape:cx="299.81328" + inkscape:cy="179.60512" + inkscape:document-units="px" + inkscape:current-layer="g1" + showgrid="false" + inkscape:window-width="1858" + inkscape:window-height="1177" + inkscape:window-x="1912" + inkscape:window-y="-8" + inkscape:window-maximized="1" + showborder="true" + inkscape:document-rotation="0" + borderlayer="true" + inkscape:snap-bbox="true" + inkscape:snap-page="true" + inkscape:showpageshadow="2" + inkscape:pagecheckerboard="0" + inkscape:deskcolor="#d1d1d1" + showguides="true"> + <sodipodi:guide + position="50.25,244.75" + orientation="0,-1" + id="guide16589" + inkscape:locked="false" /> + <sodipodi:guide + position="65.75,212.625" + orientation="0,-1" + id="guide16591" + inkscape:locked="false" /> + </sodipodi:namedview> + <metadata + id="metadata5034"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <rect + style="fill:#ffffff;stroke-width:13.5594;stroke-linejoin:round;font-variation-settings:normal;opacity:1;vector-effect:none;fill-opacity:1;stroke-linecap:butt;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1" + id="rect20902" + width="168.60876" + height="312.2905" + x="-168.39461" + y="-0.29050872" + transform="scale(-1,1)" /> + <style + id="style1182" /> + <rect + style="fill:#ffffff;stroke-width:18.8976;stroke-linejoin:round" + id="rect10912" + width="327.49841" + height="312.2905" + x="165.5016" + y="-0.29050872" + sodipodi:insensitive="true" /> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <g + id="g1" + clip-path="url(#clipPath1)"> + <rect + style="fill:#ffffff;stroke-width:13.4079;stroke-linejoin:round" + id="rect20902-6" + width="164.42293" + height="313.12219" + x="-165.5016" + y="-1.1221997" + transform="scale(-1,1)" + sodipodi:insensitive="true" /> + <g + id="g523" + style="display:inline" + transform="matrix(0.65962778,0,0,0.65962778,-573.42708,-6.3930321)" + inkscape:transform-center-x="-149.75129" + inkscape:transform-center-y="-158.43993"> + <rect + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.351227;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect2" + width="1141.7297" + height="485.31293" + x="722.34253" + y="-1.2339408" /> + <path + id="path2" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1505.5166,50.532301 1493.4206,57.516301 1542.5967,85.66958 1550.1286,85.48621 1501.0538,57.152341 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path3" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1444.6072,86.208894 1432.5112,93.192894 1552.2208,162.0695 1559.7527,161.88613 1440.1444,92.828934 Z" + sodipodi:nodetypes="cccccc" /> + <path + inkscape:connector-curvature="0" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:1.62142;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1692.2624,269.79299 1661.7367,285.93113 1682.3791,298.49455 1709.2846,299.08796 V 286.96579 Z" + id="path4" + sodipodi:nodetypes="cccccc" /> + <path + id="path5" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 800.36216,113.8321 V 122.5531 L 820.11829,134.64235 800.36216,148.2841 V 212.2606 L 838.23416,245.19721 817.82441,261.26447 860.74204,287.51635 824.64529,289.3141 C 824.63199,289.31352 824.61909,289.3131 824.60589,289.3151 L 824.59789,289.3161 C 824.50909,289.3335 824.4285,289.4134 824.37064,289.54223 824.23775,289.83852 824.25848,290.30832 824.41674,290.59186 824.48564,290.71486 824.57216,290.78669 824.66199,290.7954 V 290.7964 H 824.66999 C 824.68499,290.7974 824.69909,290.79651 824.71389,290.7944 L 862.98864,288.89089 867.49876,291.6494 882.82801,292.57752 892.58288,287.00428 911.62801,303.72629 922.77676,304.65552 958.07926,293.50678 972.01576,304.65552 1008.5254,294.23353 1079.1158,254.01253 1028.781,225.78066 981.85613,228.66177 967.45501,218.90577 978.51825,212.68115 989.13601,190.65818 946.00239,157.40433 880.73777,145.32633 841.95114,123.02995 Z M 946.11829,283.7521 955.58966,291.18835 923.56429,301.86346 Z" /> + <path + id="path6" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 817.33527,38.128041 805.23927,45.112033 832.89515,60.792304 840.42701,60.608998 812.87247,44.748168 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path7" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 993.20967,38.420546 981.11367,45.404546 1008.7696,61.084795 1016.3014,60.901426 988.74687,45.040585 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path8" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 948.91645,12.821795 936.82045,19.805795 964.47633,35.486044 972.00818,35.302675 944.45364,19.441834 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path9" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 899.43978,-1.2340232 920.95428,10.964351 928.48615,10.780976 907.61403,-1.2340232 Z" /> + <path + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1293.8423,291.71045 H 1249.1553 L 1213.7034,271.24227 1253.4146,248.31499 Z" + id="path10" /> + <path + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1361.5466,48.757272 H 1336.678 L 1316.9488,37.366592 1339.0483,24.607409 Z" + id="path11" /> + <path + id="path12" + style="color:#000000;display:inline;fill:#393d46;fill-opacity:1;stroke-width:0.783277;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 565.50004,-1.234375 614.25345,26.911874 560.65784,57.855775 V 58.75739 L 615.03309,27.362681 673.97473,61.393283 615.04104,95.41593 560.65784,64.018568 V 64.928138 L 614.25345,95.872039 560.65784,126.81594 V 127.71755 L 615.03574,96.322848 673.97738,130.35345 615.03839,164.3814 560.65784,132.98403 V 133.89096 L 614.25345,164.83486 560.65784,195.77876 V 196.67507 L 615.03043,165.28302 673.97473,199.31361 615.03574,233.34157 560.65784,201.94686 V 202.85112 L 614.25081,233.79237 560.65784,264.73628 V 265.64584 L 615.03839,234.24848 673.97473,268.27377 615.03574,302.30439 560.65784,270.90967 V 271.81128 L 614.25345,302.7552 560.65784,333.69909 V 334.606 L 615.03839,303.20864 673.97209,337.23394 615.03574,371.2619 560.65784,339.86718 V 340.77145 L 614.25081,371.7127 560.65784,402.65661 V 403.56617 L 615.04104,372.16881 673.97738,406.19412 615.03574,440.22471 560.65784,408.83 V 409.73161 L 614.25345,440.67552 560.65784,471.61943 V 472.52633 L 615.03839,441.12897 673.98269,475.15958 652.5296,487.54615 H 654.0862 L 674.76232,475.61038 695.43578,487.54615 H 696.99769 L 675.54196,475.15958 734.4836,441.12897 793.42526,475.15958 771.9695,487.54615 H 773.53141 L 794.2049,475.61038 814.881,487.54615 H 816.44291 L 794.98717,475.15958 853.9261,441.12897 912.86517,475.15693 891.40675,487.54615 H 892.97139 L 913.64748,475.61038 934.32087,487.54615 H 935.88279 L 914.42709,475.15958 973.36876,441.12897 1032.3103,475.15958 1010.8546,487.54615 H 1012.4166 L 1033.0899,475.61038 1053.7661,487.54615 H 1055.3227 L 1033.8696,475.15958 1038.4493,472.51573 V 472.5266 L 1092.8219,441.13454 1147.1944,472.5266 V 472.51573 L 1151.7742,475.15958 1130.3211,487.54615 H 1131.8776 L 1152.5538,475.61038 1173.2273,487.54615 H 1174.7892 L 1153.3334,475.15958 1212.2751,441.12897 1271.2166,475.15958 1249.7609,487.54615 H 1251.3229 L 1271.9963,475.61038 1292.6725,487.54615 H 1294.2344 L 1272.7785,475.15958 1331.7176,441.12897 1390.6566,475.15693 1369.1982,487.54615 H 1370.7628 L 1391.4389,475.61038 1412.1124,487.54615 H 1413.6743 L 1392.2185,475.15958 1451.1603,441.12897 1510.1019,475.15958 1488.646,487.54615 H 1490.2079 L 1510.8815,475.61038 1531.5576,487.54615 H 1533.1143 L 1511.661,475.15958 1516.2407,472.51573 V 472.5266 L 1570.6133,441.13454 1624.986,472.5266 V 472.51573 L 1629.5656,475.15958 1608.1126,487.54615 H 1609.6691 L 1630.3453,475.61038 1651.0187,487.54615 H 1652.5806 L 1631.1249,475.15958 1690.0666,441.12897 1749.0082,475.15958 1727.5524,487.54615 H 1729.1143 L 1749.7877,475.61038 1770.4639,487.54615 H 1772.0258 L 1750.5701,475.15958 1809.509,441.12897 1864.0725,472.62977 V 471.7308 L 1810.2887,440.67817 1864.0725,409.62819 V 408.72658 L 1809.509,440.22736 1750.5673,406.19941 1809.509,372.16881 1864.0725,403.67224 V 402.77063 L 1810.2887,371.71801 1864.0725,340.66804 V 339.76643 L 1809.509,371.2672 1750.5673,337.23926 1809.509,303.20864 1864.0725,334.71209 V 333.80516 L 1810.2941,302.7552 1864.0725,271.70522 V 270.7983 L 1809.509,302.30173 1750.5727,268.27377 1809.509,234.24583 1864.0725,265.74926 V 264.8397 L 1810.2966,233.79237 1864.0725,202.74505 V 201.83548 L 1809.509,233.33891 1750.5754,199.31361 1809.509,165.28831 1864.0725,196.79176 V 195.88483 L 1810.2941,164.83486 1864.0725,133.78489 V 132.87797 L 1809.509,164.3814 1750.5727,130.35345 1809.509,96.325499 1864.0725,127.82893 V 126.91937 L 1810.2966,95.872039 1864.0725,64.822066 V 63.915148 L 1809.509,95.418582 1750.5673,61.38798 1809.509,27.357377 1864.0725,58.86081 V 57.961848 L 1810.2887,26.909222 1859.0342,-1.234375 H 1857.475 L 1809.509,26.458415 1761.5432,-1.234375 H 1759.984 L 1808.7294,26.909222 1749.7905,60.937174 1690.8489,26.909222 1739.5915,-1.234375 H 1738.0297 L 1690.0666,26.458415 1642.1033,-1.234375 H 1640.5308 L 1689.2789,26.911874 1630.3426,60.939825 1571.401,26.909222 1620.1463,-1.234375 H 1618.5712 L 1570.6133,26.453112 1522.6555,-1.234375 H 1521.0831 L 1569.8258,26.909222 1510.8841,60.939825 1451.9477,26.911874 1500.6958,-1.234375 H 1499.1233 L 1451.1603,26.458415 1403.197,-1.234375 H 1401.6351 L 1450.378,26.909222 1391.4363,60.937174 1332.4972,26.909222 1381.2428,-1.234375 H 1379.6835 L 1331.7176,26.458415 1283.7519,-1.234375 H 1282.1925 L 1330.938,26.909222 1271.9989,60.937174 1213.0574,26.909222 1261.8002,-1.234375 H 1260.2382 L 1212.2751,26.458415 1164.3119,-1.234375 H 1162.7394 L 1211.4875,26.911874 1152.5512,60.939825 1093.6095,26.909222 1142.3549,-1.234375 H 1140.7797 L 1092.8219,26.453112 1044.864,-1.234375 H 1043.2915 L 1092.0344,26.909222 1033.0927,60.939825 974.15632,26.911874 1022.9045,-1.234375 H 1021.3319 L 973.36876,26.458415 925.4055,-1.234375 H 923.84358 L 972.58644,26.909222 913.64477,60.937174 854.70585,26.909222 903.45125,-1.234375 H 901.89204 L 853.9261,26.458415 805.96034,-1.234375 H 804.40107 L 853.14651,26.909222 794.20754,60.937174 735.26589,26.909222 784.0087,-1.234375 H 782.44679 L 734.4836,26.458415 686.52043,-1.234375 H 684.9479 L 733.69602,26.911874 674.75968,60.939825 615.81802,26.909222 664.56349,-1.234375 H 663.00422 L 615.03839,26.458415 567.07255,-1.234375 Z M 853.9261,27.357377 912.86788,61.38798 853.9261,95.418582 794.98451,61.38798 Z M 1331.7176,27.357377 1390.6593,61.38798 1331.7176,95.418582 1272.776,61.38798 Z M 734.4783,27.362672 793.41994,61.393275 734.4836,95.421225 675.54196,61.390622 Z M 973.37399,27.362672 1032.3103,61.390622 973.36876,95.421225 914.43238,61.393275 Z M 1212.2697,27.362672 1271.2114,61.393275 1212.2751,95.421225 1153.3334,61.390622 Z M 1451.1655,27.362672 1510.1019,61.390622 1451.1603,95.421225 1392.2237,61.393275 Z M 1690.0612,27.362672 1749.0029,61.393275 1690.0666,95.421225 1631.1249,61.390622 Z M 1092.8219,27.365387 1147.1944,58.757446 V 58.754729 L 1151.7661,61.393275 1147.1944,64.031821 V 64.018515 L 1092.8219,95.410572 1038.4493,64.018515 V 64.031821 L 1033.8776,61.393275 1038.4493,58.754729 V 58.757446 Z M 1570.6133,27.365387 1624.986,58.757446 V 58.754729 L 1629.5576,61.393275 1624.986,64.031821 V 64.018515 L 1570.6133,95.410572 1516.2407,64.018515 V 64.031821 L 1511.6691,61.393275 1516.2407,58.754729 V 58.757446 Z M 794.19958,61.841493 853.13862,95.872095 794.20223,129.90004 735.26057,95.869443 Z M 913.65278,61.841493 972.59167,95.869443 913.65006,129.90004 854.71372,95.872095 Z M 1271.9911,61.841493 1330.9301,95.872095 1271.9937,129.90004 1213.052,95.869443 Z M 1391.4441,61.841493 1450.3832,95.869443 1391.4416,129.90004 1332.5053,95.872095 Z M 1749.7825,61.841493 1808.7216,95.872095 1749.7853,129.90004 1690.8436,95.869443 Z M 674.75437,61.844208 733.69602,95.87481 674.76497,129.89746 615.82332,95.869507 Z M 1033.0953,61.844208 1092.029,95.869507 1033.0874,129.89746 974.15358,95.872159 Z M 1152.5458,61.844208 1211.4875,95.87481 1152.5565,129.89746 1093.6148,95.869507 Z M 1510.8868,61.844208 1569.8204,95.869507 1510.8787,129.89746 1451.9451,95.872159 Z M 1630.3373,61.844208 1689.2789,95.87481 1630.3479,129.89746 1571.4062,95.869507 Z M 734.47565,96.322848 793.4173,130.35345 734.4836,164.37874 675.54196,130.34815 Z M 973.37673,96.322848 1032.3103,130.34815 973.36876,164.37874 914.43496,130.35345 Z M 1212.2671,96.322848 1271.2088,130.35345 1212.2751,164.37874 1153.3334,130.34815 Z M 1451.1681,96.322848 1510.1019,130.34815 1451.1603,164.37874 1392.2265,130.35345 Z M 1690.0585,96.322848 1749.0002,130.35345 1690.0666,164.37874 1631.1249,130.34815 Z M 853.9261,96.325563 912.86245,130.35351 853.9261,164.38147 794.98982,130.35351 Z M 1092.8219,96.325563 1147.1944,127.71763 V 127.71232 L 1151.7688,130.35352 1147.1944,132.99471 V 132.98413 L 1092.8219,164.3762 1038.4493,132.98413 V 132.99471 L 1033.875,130.35352 1038.4493,127.71232 V 127.71763 Z M 1331.7176,96.325563 1390.654,130.35351 1331.7176,164.38147 1272.7813,130.35351 Z M 1570.6133,96.325563 1624.986,127.71763 V 127.71232 L 1629.5602,130.35352 1624.986,132.99471 V 132.98413 L 1570.6133,164.3762 1516.2407,132.98413 V 132.99471 L 1511.6664,130.35352 1516.2407,127.71232 V 127.71763 Z M 674.75437,130.80166 733.69602,164.83227 674.75968,198.86021 615.81536,164.82962 Z M 1033.098,130.80166 1038.4493,133.89102 1092.0368,164.82962 1033.0927,198.86021 974.15632,164.83227 Z M 1152.5458,130.80166 1211.4875,164.83227 1152.5512,198.86021 1093.6068,164.82962 1135.3701,140.71677 1147.1944,133.89102 Z M 1510.8894,130.80166 1516.2407,133.89102 1569.8284,164.82962 1510.8841,198.86021 1451.9477,164.83227 Z M 1630.3373,130.80166 1689.2789,164.83227 1630.3426,198.86021 1571.3983,164.82962 1613.1616,140.71677 1624.986,133.89102 Z M 794.20223,130.80696 853.1412,164.83491 794.20754,198.8602 735.27119,164.83225 Z M 913.64748,130.80696 972.58109,164.83225 913.64477,198.8602 854.71114,164.83491 Z M 1271.9937,130.80696 1330.9327,164.83491 1271.9989,198.8602 1213.0626,164.83225 Z M 1391.4389,130.80696 1450.3726,164.83225 1391.4363,198.8602 1332.5026,164.83491 Z M 1749.7853,130.80696 1808.7241,164.83491 1749.7905,198.8602 1690.8541,164.83225 Z M 1092.8219,165.28308 1147.1944,196.67512 1151.7661,199.31367 1147.1944,201.95222 V 201.94679 L 1092.8219,233.33886 1038.4493,201.94679 V 201.95222 L 1033.8776,199.31367 1038.4493,196.67512 Z M 1570.6133,165.28308 1624.986,196.67512 1629.5576,199.31367 1624.986,201.95222 V 201.94679 L 1570.6133,233.33886 1516.2407,201.94679 V 201.95222 L 1511.6691,199.31367 1516.2407,196.67512 Z M 734.4836,165.28579 793.41994,199.31374 734.4836,233.34169 675.54725,199.31374 Z M 973.36876,165.28579 1032.3051,199.31374 973.36876,233.34169 914.43238,199.31374 Z M 1212.2751,165.28579 1271.2114,199.31374 1212.2751,233.34169 1153.3387,199.31374 Z M 1451.1603,165.28579 1510.0966,199.31374 1451.1603,233.34169 1392.2237,199.31374 Z M 1690.0666,165.28579 1749.0029,199.31374 1690.0666,233.34169 1631.1302,199.31374 Z M 853.9261,165.2885 912.85986,199.3138 853.9261,233.33911 794.99246,199.3138 Z M 1331.7176,165.2885 1390.6512,199.3138 1331.7176,233.33911 1272.7839,199.3138 Z M 674.75968,199.76726 733.69602,233.79521 674.75702,267.82316 615.82332,233.79787 Z M 794.2049,199.76726 853.13862,233.79256 794.20223,267.82052 735.26853,233.79521 Z M 913.64748,199.76726 972.58382,233.79521 913.65006,267.82052 854.71372,233.79256 Z M 1033.0927,199.76726 1092.029,233.79787 1033.0953,267.82316 974.15632,233.79521 Z M 1152.5512,199.76726 1211.4875,233.79521 1152.5484,267.82316 1093.6148,233.79787 Z M 1271.9963,199.76726 1330.9301,233.79256 1271.9937,267.82052 1213.06,233.79521 Z M 1391.4389,199.76726 1450.3752,233.79521 1391.4416,267.82052 1332.5053,233.79256 Z M 1510.8841,199.76726 1569.8204,233.79787 1510.8868,267.82316 1451.9477,233.79521 Z M 1630.3426,199.76726 1689.2789,233.79521 1630.34,267.82316 1571.4062,233.79787 Z M 1749.7877,199.76726 1808.7216,233.79256 1749.7853,267.82052 1690.8514,233.79521 Z M 853.9261,234.24602 912.86245,268.27396 853.9261,302.30192 794.98982,268.27396 Z M 1331.7176,234.24602 1390.654,268.27396 1331.7176,302.30192 1272.7813,268.27396 Z M 734.4836,234.24873 793.4173,268.27402 734.47565,302.30196 675.54196,268.27667 Z M 973.36876,234.24873 1032.3078,268.27667 973.37673,302.30196 914.43496,268.27402 Z M 1212.2751,234.24873 1271.2088,268.27402 1212.2671,302.30196 1153.3334,268.27667 Z M 1451.1603,234.24873 1510.0991,268.27667 1451.1681,302.30196 1392.2265,268.27402 Z M 1690.0666,234.24873 1749.0002,268.27402 1690.0585,302.30196 1631.1249,268.27667 Z M 1092.8219,234.25415 1147.1944,265.64622 V 265.63536 L 1151.7661,268.27389 1147.1944,270.91244 V 270.90973 L 1092.8219,302.30177 1038.4493,270.90973 V 270.91244 L 1033.8776,268.27389 1038.4493,265.63536 V 265.64622 Z M 1570.6133,234.25415 1624.986,265.64622 V 265.63536 L 1629.5576,268.27389 1624.986,270.91244 V 270.90973 L 1570.6133,302.30177 1516.2407,270.90973 V 270.91244 L 1511.6691,268.27389 1516.2407,265.63536 V 265.64622 Z M 674.76232,268.72762 733.69337,302.75292 674.75437,336.78352 615.82068,302.75822 Z M 794.2049,268.72762 853.1412,302.75558 794.19958,336.78617 735.26324,302.75822 Z M 913.64748,268.72762 972.58917,302.75822 913.65278,336.78617 854.71114,302.75558 Z M 1033.0899,268.72762 1092.0316,302.75822 1033.098,336.78352 974.15893,302.75292 Z M 1152.5538,268.72762 1211.4848,302.75292 1152.5458,336.78352 1093.6121,302.75822 Z M 1271.9963,268.72762 1330.9327,302.75558 1271.9911,336.78617 1213.0548,302.75822 Z M 1391.4389,268.72762 1450.3805,302.75822 1391.4441,336.78617 1332.5026,302.75558 Z M 1510.8815,268.72762 1569.8231,302.75822 1510.8894,336.78352 1451.9505,302.75292 Z M 1630.3453,268.72762 1689.2763,302.75292 1630.3373,336.78352 1571.4035,302.75822 Z M 1749.7877,268.72762 1808.7241,302.75558 1749.7825,336.78617 1690.8462,302.75822 Z M 734.4836,303.20902 793.41994,337.23698 734.4783,371.26492 675.54196,337.23698 Z M 853.9261,303.20902 912.86788,337.23964 853.9261,371.26758 794.98451,337.23964 Z M 973.36876,303.20902 1032.3103,337.23698 973.37399,371.26492 914.43238,337.23698 Z M 1212.2751,303.20902 1271.2114,337.23698 1212.2697,371.26492 1153.3334,337.23698 Z M 1331.7176,303.20902 1390.6593,337.23964 1331.7176,371.26758 1272.776,337.23964 Z M 1451.1603,303.20902 1510.1019,337.23698 1451.1655,371.26492 1392.2237,337.23698 Z M 1690.0666,303.20902 1749.0029,337.23698 1690.0612,371.26492 1631.1249,337.23698 Z M 1092.8219,303.21396 1147.1944,334.606 V 334.59514 L 1151.7636,337.23368 1147.1944,339.87223 V 339.86681 L 1092.8219,371.25887 1038.4493,339.86681 V 339.87249 L 1033.8803,337.23394 1038.4493,334.59541 V 334.60626 Z M 1570.6133,303.21396 1624.986,334.606 V 334.59514 L 1629.555,337.23368 1624.986,339.87223 V 339.86681 L 1570.6133,371.25887 1516.2407,339.86681 V 339.87249 L 1511.6717,337.23394 1516.2407,334.59541 V 334.60626 Z M 674.75968,337.6874 733.69602,371.71534 674.75968,405.7433 615.82332,371.71801 Z M 1033.0927,337.6874 1092.029,371.71534 1033.0927,405.7433 974.15632,371.71534 Z M 1152.5512,337.6874 1211.4875,371.71534 1152.5512,405.7433 1093.6148,371.71801 Z M 1510.8841,337.6874 1569.8204,371.71534 1510.8841,405.7433 1451.9477,371.71534 Z M 1630.3426,337.6874 1689.2789,371.71534 1630.3426,405.7433 1571.4062,371.71801 Z M 794.2049,337.69011 853.14651,371.71807 794.2049,405.74866 735.26324,371.71807 Z M 913.64748,337.69011 972.58917,371.71807 913.64748,405.74866 854.70585,371.71807 Z M 1271.9963,337.69011 1330.938,371.71807 1271.9963,405.74866 1213.0548,371.71807 Z M 1391.4389,337.69011 1450.3805,371.71807 1391.4389,405.74866 1332.4972,371.71807 Z M 1749.7877,337.69011 1808.7294,371.71807 1749.7877,405.74866 1690.8462,371.71807 Z M 734.4836,372.16887 793.42526,406.19947 734.48625,440.22742 675.54461,406.19682 Z M 853.9261,372.16887 912.86788,406.19947 853.9261,440.22742 794.98451,406.19947 Z M 973.36876,372.16887 1032.3078,406.19682 973.36603,440.22742 914.42709,406.19947 Z M 1212.2751,372.16887 1271.2166,406.19947 1212.2777,440.22742 1153.3361,406.19682 Z M 1331.7176,372.16887 1390.6593,406.19947 1331.7176,440.22742 1272.776,406.19947 Z M 1451.1603,372.16887 1510.0991,406.19682 1451.1576,440.22742 1392.2185,406.19947 Z M 1690.0666,372.16887 1749.0082,406.19947 1690.0691,440.22742 1631.1275,406.19682 Z M 1092.8219,372.1743 1147.1944,403.56635 V 403.55277 L 1151.7688,406.19398 1147.1944,408.83517 V 408.82974 L 1092.8219,440.22181 1038.4493,408.82974 V 408.83517 L 1033.875,406.19398 1038.4493,403.55277 V 403.56635 Z M 1570.6133,372.1743 1624.986,403.56635 V 403.55277 L 1629.5602,406.19398 1624.986,408.83517 V 408.82974 L 1570.6133,440.22181 1516.2407,408.82974 V 408.83517 L 1511.6664,406.19398 1516.2407,403.55277 V 403.56635 Z M 674.76232,406.64775 733.70398,440.67835 674.76232,474.70895 615.82068,440.67835 Z M 1033.0899,406.64775 1092.0316,440.67835 1033.0899,474.70895 974.14835,440.67835 Z M 1152.5538,406.64775 1211.4955,440.67835 1152.5538,474.70895 1093.6121,440.67835 Z M 1510.8815,406.64775 1569.8231,440.67835 1510.8815,474.70895 1451.9399,440.67835 Z M 1630.3453,406.64775 1689.2869,440.67835 1630.3453,474.70895 1571.4035,440.67835 Z M 794.2049,406.65046 853.14651,440.67842 794.20754,474.70902 735.26589,440.67842 Z M 913.64748,406.65046 972.58644,440.67842 913.64477,474.70636 854.70585,440.67842 Z M 1271.9963,406.65046 1330.938,440.67842 1271.9989,474.70902 1213.0574,440.67842 Z M 1391.4389,406.65046 1450.378,440.67842 1391.4363,474.70636 1332.4972,440.67842 Z M 1749.7877,406.65046 1808.7294,440.67842 1749.7905,474.70902 1690.8489,440.67842 Z M 1864.0725,477.68434 1846.9896,487.5464 H 1848.5543 L 1864.0725,478.58861 Z" /> + <path + inkscape:connector-curvature="0" + id="path13" + d="M 983.80531,224.36466 916.80778,185.68363 903.66159,162.91379 985.86929,210.37643 Z" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.360787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1108.9918,215.24766 1103.8004,212.25041 1102.0313,213.27167 1107.2228,216.26901 Z" + id="path14" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <g + id="g31" + transform="matrix(0.35200969,0,0,0.35200969,1192.7655,-324.99074)" + style="display:inline;fill:#9d968e;fill-opacity:1"> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1092.7207,6115.248 -1104.9551,6122.2031 -1105.082,6122.2751 -1117.1875,6129.1579 C -1117.1775,6129.1719 -1117.1715,6129.1839 -1117.1645,6129.1969 L -1227.9281,6192.6558 -1227.6254,6220.9293 -1094.5551,6144.1285 C -1084.0617,6140.3214 -1086.0136,6129.508 -1092.7211,6115.2476 Z" + transform="scale(0.26458333)" + id="path15" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1435.9785,5583.666 C -1437.3169,5583.625 -1438.6075,5583.9352 -1439.8496,5584.6191 L -1439.8596,5584.6091 -1440.0432,5584.7145 C -1440.0532,5584.7245 -1440.0612,5584.7245 -1440.0702,5584.7305 L -1575.3514,5662.4316 -1560.2948,5683.2402 -1424.8631,5602.6426 -1429.1209,5597.5215 -1421.6463,5593.2305 C -1424.7871,5589.7556 -1427.8149,5587.0016 -1430.6873,5585.3613 -1432.5183,5584.3155 -1434.2855,5583.7193 -1435.9803,5583.666 Z" + transform="scale(0.26458333)" + id="path16" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1334.6758,5562.0703 C -1335.6389,5562.0603 -1336.5998,5562.0603 -1337.5566,5562.0703 -1359.8866,5562.3184 -1379.6833,5568.1243 -1396.418,5578.7597 L -1396.428,5578.7497 -1530.7483,5655.859 -1460.3519,5701.8141 -1456.0198,5699.4684 C -1456.4193,5705.4449 -1456.6292,5711.5767 -1456.6292,5717.8649 -1456.629,5857.0125 -1359.0664,6026.1414 -1238.7171,6095.6247 -1227.6565,6101.947 -1216.6161,6107.284 -1205.6917,6111.5895 L -1209.6019,6181.693 -1087.9261,6112.5172 C -1087.1079,6112.0667 -1086.296,6111.6051 -1085.4905,6111.1325 L -1081.1546,6108.2536 C -1042.5103,6083.7967 -1020.9029,6034.1112 -1020.8069,5969.486 -1020.8066,5830.3391 -1118.3682,5661.2105 -1238.7171,5591.7262 -1271.9996,5572.5109 -1304.8243,5562.373 -1334.68,5562.068 Z" + transform="scale(0.26458333)" + id="path17" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1378.5293,5542.5684 C -1379.9222,5542.5684 -1381.3691,5542.7687 -1382.873,5543.2344 -1383.7991,5543.5213 -1384.622,5543.8704 -1385.3613,5544.2715 H -1385.3713 L -1385.5198,5544.3575 C -1385.5648,5544.3825 -1385.6088,5544.4085 -1385.6526,5544.4335 L -1517.9924,5620.8417 -1492.4143,5641.4433 -1357.3147,5563.8476 C -1361.6948,5554.8644 -1366.3959,5547.6828 -1371.9788,5544.4472 -1374.0352,5543.26 -1376.21,5542.5975 -1378.5315,5542.5722 Z" + transform="scale(0.26458333)" + id="path18" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1305.1074,5543.0977 C -1306.2644,5543.1197 -1307.2659,5543.3132 -1308.1348,5543.6523 L -1308.1448,5543.6423 -1308.1978,5543.6713 C -1308.7714,5543.9015 -1309.2847,5544.198 -1309.7408,5544.558 L -1444.9048,5622.1869 -1413.4205,5650.6654 -1281.4498,5571.976 C -1280.4017,5572.3391 -1279.3545,5572.703 -1278.3033,5573.0853 -1278.4915,5572.1964 -1278.6946,5571.3237 -1278.9029,5570.4584 H -1278.8929 L -1278.9029,5570.4484 C -1281.4316,5559.9506 -1285.5272,5551.2814 -1293.4381,5546.5597 -1295.385,5545.3945 -1297.5627,5544.4808 -1300.0045,5543.8273 -1301.9607,5543.3038 -1303.6536,5543.0692 -1305.108,5543.0968 Z" + transform="scale(0.26458333)" + id="path19" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1218.8809,5585.2227 C -1223.6933,5585.2997 -1225.9979,5589.9429 -1227.1465,5596.791 L -1227.1645,5596.777 -1357.2035,5663.7224 -1327.641,5701.7263 -1195.0805,5622.0017 C -1194.4825,5622.4875 -1193.8817,5622.9663 -1193.2856,5623.4567 -1193.1866,5622.5614 -1193.1152,5621.6713 -1193.059,5620.7849 H -1193.049 L -1193.059,5620.7749 C -1192.3543,5609.625 -1195.2887,5599.1999 -1207.8031,5590.0698 -1209.0562,5589.1544 -1210.2312,5588.3803 -1211.3344,5587.7378 -1214.3632,5585.9705 -1216.845,5585.1904 -1218.8813,5585.2222 Z" + transform="scale(0.26458333)" + id="path20" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1135.4414,5664.1113 C -1137.9198,5664.0683 -1140.096,5665.1561 -1142.084,5666.9805 L -1142.094,5666.9685 -1273.8557,5742.3474 -1250.301,5785.0485 -1116.133,5706.1462 C -1115.8176,5706.5769 -1115.498,5707.0034 -1115.1838,5707.4352 -1114.5568,5706.5104 -1113.9944,5705.5631 -1113.4924,5704.5954 L -1113.4764,5704.5854 -1113.4864,5704.5754 C -1109.5625,5696.9975 -1109.8449,5687.9502 -1120.3126,5674.9192 -1124.1438,5670.1498 -1127.4856,5667.1594 -1130.4454,5665.5618 -1132.2437,5664.5912 -1133.9021,5664.1351 -1135.4454,5664.1086 Z" + transform="scale(0.26458333)" + id="path21" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -344.70543,1645.8209 -334.753,1640.0748 -348.23556,1639.7661 Z" + id="path22" + inkscape:connector-curvature="0" /> + <path + style="fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -368.12622,1634.9368 -364.41393,1632.7936 -367.43073,1630.9047 Z" + id="path23" + inkscape:connector-curvature="0" /> + <path + style="fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -424.84521,1519.13 -416.75994,1514.462 -419.21332,1523.6181 Z" + id="path24" + inkscape:connector-curvature="0" /> + <ellipse + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse24" + cx="-419.72574" + cy="1776.5353" + rx="66.575096" + ry="66.661377" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" /> + <ellipse + cy="1776.5353" + cx="-419.72574" + id="ellipse25" + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="28.036783" + ry="28.073118" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1408.8262,5803.0859 A 129.86525,74.977594 60.06427 0 0 -1415.9531,5839.918 129.86525,74.977594 60.06427 0 0 -1324.1836,5999.0039 129.86525,74.977594 60.06427 0 0 -1289.1895,6011.0957 129.86525,74.977594 60.06427 0 0 -1282.0625,5974.2637 129.86525,74.977594 60.06427 0 0 -1373.832,5815.1777 129.86525,74.977594 60.06427 0 0 -1408.8262,5803.0859 Z" + transform="scale(0.26458333)" + id="path25" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1366.3965,5874.7891 C -1368.9207,5874.8251 -1371.2246,5875.4409 -1373.2227,5876.6133 L -1373.2367,5876.5923 -1393.1254,5888.02 -1354.7772,5953.7172 -1335.893,5942.811 C -1335.5242,5942.6216 -1335.1653,5942.4145 -1334.8168,5942.19 L -1334.2289,5941.8501 -1334.2509,5941.8131 C -1329.8043,5938.6832 -1327.338,5932.7092 -1327.3271,5925.0416 -1327.3279,5907.8783 -1339.3618,5887.018 -1354.206,5878.4479 -1358.4435,5876.0014 -1362.6209,5874.7479 -1366.3974,5874.7897 Z" + transform="scale(0.26458333)" + id="path26" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccc" /> + <ellipse + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse26" + cx="-419.72589" + cy="1776.4075" + rx="8.2117853" + ry="8.2224283" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" /> + <path + style="fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.87024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1070.8691,5767.5332 C -1071.9631,5767.5222 -1073.0619,5767.6292 -1074.166,5767.8184 V 5767.8084 L -1074.19,5767.8224 C -1075.0758,5767.9752 -1075.9651,5768.176 -1076.8579,5768.4357 -1076.734,5768.6661 -1076.9738,5768.2029 -1076.8479,5768.4357 L -1211.9689,5846.0395 -1184.2209,5885.7445 -1052.3048,5810.602 -1052.3148,5810.586 C -1045.9846,5807.0795 -1043.7473,5800.2452 -1050.8382,5785.4669 -1054.6853,5777.4486 -1058.6136,5772.6426 -1062.6194,5770.0528 -1065.3325,5768.2989 -1068.0822,5767.5622 -1070.8655,5767.5333 Z" + transform="scale(0.26458333)" + id="path27" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1033.2949,5878.0469 C -1033.1665,5878.5398 -1033.4055,5877.5585 -1033.2789,5878.0469 L -1168.459,5955.6185 -1148.3027,5999.3002 -1014.1144,5922.1205 V 5922.1205 C -1010.0771,5919.6347 -1007.6617,5915.7844 -1009.8917,5904.8744 -1012.5088,5892.0705 -1018.1627,5885.1745 -1025.3223,5881.2162 -1027.2236,5880.1649 -1029.2418,5879.3285 -1031.3438,5878.6381 V 5878.6381 5878.6381 C -1031.9856,5878.4273 -1032.6343,5878.2275 -1033.291,5878.0424 Z" + transform="scale(0.26458333)" + id="path28" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccsccccc" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1021.123,5982.3418 C -1021.1232,5982.3418 -1021.1229,5982.3518 -1021.123,5982.3538 L -1156.1074,6057.4319 -1144.1641,6102.6819 -1009.3672,6025.2093 V 6025.1993 C -1006.5838,6024.1475 -1004.6678,6021.001 -1003.9317,6014.961 -1002.1499,6000.3423 -1009.9255,5990.6396 -1021.1114,5982.3458 -1021.1117,5982.3456 -1021.1111,5982.3458 -1021.1114,5982.3458 V 5982.3458 C -1021.1114,5982.3458 -1021.1214,5982.3458 -1021.1214,5982.3358 Z" + transform="scale(0.26458333)" + id="path29" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -1042.127,6065.4141 C -1043.0091,6067.0382 -1043.927,6068.6221 -1044.8613,6070.1875 L -1176.8164,6142.6855 -1171.5215,6179.5801 -1039.9065,6103.5814 V 6103.5814 C -1036.4007,6101.6298 -1035.6037,6101.7866 -1033.6335,6098.9786 -1027.2043,6089.8155 -1031.6752,6079.1603 -1040.3464,6067.7071 -1040.9224,6066.9463 -1041.5165,6066.1818 -1042.1277,6065.4142 Z" + transform="scale(0.26458333)" + id="path30" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccscc" /> + <path + inkscape:connector-curvature="0" + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -356.24889,1498.9551 C -361.94761,1495.6298 -360.33553,1505.5091 -360.94105,1511.9889 A 69.066595,39.875541 60.064274 0 1 -353.38099,1517.4541 C -352.37792,1510.9175 -348.52516,1504.5253 -355.31444,1499.5721 -355.64598,1499.3299 -355.957,1499.1253 -356.24889,1498.9553 Z M -377.97219,1488.0603 C -378.4873,1487.752 -379.06345,1487.51 -379.70951,1487.3371 -386.33455,1485.5645 -381.51799,1496.3284 -379.72671,1504.2737 A 69.066595,39.875541 60.064274 0 1 -372.37143,1506.2146 C -373.66246,1499.1358 -373.21108,1490.9021 -377.97198,1488.0605 Z M -334.84584,1519.5466 C -338.65225,1517.4918 -340.08764,1524.1545 -342.54357,1528.0041 A 69.066595,39.875541 60.064274 0 1 -335.90934,1536.1732 C -332.62194,1531.9517 -326.24578,1529.3916 -332.16529,1522.0225 -333.17897,1520.7606 -334.06272,1519.9693 -334.84584,1519.5466 Z M -398.75227,1487.4998 C -399.62281,1486.9972 -400.57384,1486.851 -401.63504,1487.1799 -407.07167,1488.8643 -399.99628,1498.1885 -396.0519,1506.0528 A 69.066595,39.875541 60.064274 0 1 -390.02946,1504.1306 C -392.95322,1497.7345 -395.17249,1489.5745 -398.75227,1487.4998 Z M -316.90254,1547.1927 C -320.18409,1545.0713 -323.66264,1548.5697 -327.31309,1549.9102 A 69.066595,39.875541 60.064274 0 1 -322.63093,1559.568 C -317.56771,1558.2973 -309.62743,1559.9364 -313.78523,1551.271 -314.8031,1549.1495 -315.84266,1547.8779 -316.90254,1547.1927 Z M -414.28557,1498.3263 C -415.57736,1497.5885 -416.75084,1497.6946 -417.7541,1499.1245 -421.17486,1504 -412.93614,1510.4713 -407.44286,1517.0484 A 69.066595,39.875541 60.064274 0 1 -403.66406,1511.5739 C -407.39711,1506.7321 -411.18199,1500.0986 -414.28557,1498.3263 Z M -307.03305,1576.6055 C -309.97708,1574.9777 -313.9362,1575.2215 -317.56396,1574.398 A 69.066595,39.875541 60.064274 0 1 -315.55611,1584.0628 C -309.4925,1585.9384 -301.2074,1591.5014 -302.9726,1582.8654 -303.66504,1579.4777 -305.13874,1577.6528 -307.03305,1576.6055 Z M -421.29959,1519.2999 C -423.55988,1518.0148 -425.21911,1518.1294 -425.61197,1521.3527 -426.5029,1528.6631 -418.36318,1531.3289 -412.16601,1535.6083 A 69.066595,39.875541 60.064274 0 1 -411.1881,1527.4292 C -414.6178,1524.7887 -418.43873,1520.9268 -421.29959,1519.2999 Z M -314.81029,1597.7439 A 69.066595,39.875541 60.064274 0 1 -315.74475,1605.9567 C -309.61588,1610.6923 -302.26175,1619.2742 -301.37425,1611.9922 -300.48376,1604.686 -308.61433,1602.0193 -314.81029,1597.7439 Z M -411.47598,1549.2687 C -417.53541,1547.3792 -425.77431,1541.867 -424.01354,1550.4811 -422.25138,1559.1025 -415.43371,1557.6035 -409.48675,1558.9313 A 69.066595,39.875541 60.064274 0 1 -411.47598,1549.2687 Z M -319.4602,1616.3979 A 69.066595,39.875541 60.064274 0 1 -323.21045,1621.9146 C -317.95937,1628.773 -312.62172,1639.0517 -309.23211,1634.2206 -305.8287,1629.37 -313.96733,1622.9403 -319.4602,1616.3979 Z M -404.45708,1573.8044 C -409.52403,1575.0278 -417.33056,1573.4674 -413.20097,1582.074 -409.06319,1590.6978 -404.57164,1585.2921 -399.78356,1583.4759 A 69.066595,39.875541 60.064274 0 1 -404.45708,1573.8044 Z M -330.83125,1627.4981 A 69.066595,39.875541 60.064274 0 1 -336.85497,1629.4382 C -333.2743,1637.3646 -330.72558,1647.8319 -325.35111,1646.1667 -319.96194,1644.497 -326.86827,1635.3184 -330.83125,1627.4981 Z M -391.16743,1597.2903 C -394.47993,1601.4425 -400.6854,1604.0219 -394.82086,1611.3225 -388.94188,1618.6413 -387.43603,1610.1607 -384.53565,1605.4852 A 69.066595,39.875541 60.064274 0 1 -391.16743,1597.2903 Z M -347.20096,1629.3333 A 69.066595,39.875541 60.064274 0 1 -354.56616,1627.3954 C -353.198,1635.1824 -353.81934,1644.259 -347.27665,1646.0095 -340.72442,1647.7625 -345.36536,1637.2508 -347.20095,1629.3333 Z M -373.63865,1616.1112 C -374.69224,1622.5711 -378.38474,1628.8754 -371.67171,1633.773 -364.94526,1638.6805 -366.64231,1628.408 -366.06747,1621.5916 A 69.066595,39.875541 60.064274 0 1 -373.63865,1616.1112 Z" + id="path31" /> + </g> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path32" + d="M 947.63346,224.45337 946.494,225.10114 946.4822,225.10814 945.35474,225.74918 C 945.35574,225.75018 945.35674,225.75118 945.35674,225.75418 L 935.04067,231.66449 935.06887,234.29776 947.46249,227.14485 C 948.4398,226.79028 948.25801,225.78315 947.6333,224.45501 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path33" + d="M 915.66384,174.94401 C 915.53919,174.94101 915.41899,174.96911 915.3033,175.03281 L 915.3023,175.03181 915.2851,175.04181 C 915.2841,175.04281 915.2831,175.04281 915.2821,175.04381 L 902.68256,182.28057 904.08487,184.2186 916.69842,176.71206 916.30187,176.23511 916.99802,175.83547 C 916.7055,175.51182 916.4235,175.25533 916.15598,175.10256 915.98546,175.00516 915.82086,174.94963 915.66301,174.94467 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path34" + d="M 925.09876,172.93267 C 925.00906,172.93167 924.91957,172.93167 924.83045,172.93267 922.75073,172.95577 920.90694,173.49652 919.34834,174.48706 L 919.34734,174.48606 906.8373,181.66771 913.39373,185.94778 913.79721,185.7293 C 913.76001,186.28593 913.74051,186.85703 913.74051,187.44268 913.74053,200.40232 922.82711,216.15429 934.03594,222.62568 935.06609,223.2145 936.09434,223.71158 937.1118,224.11258 L 936.74762,230.64171 948.08,224.19896 C 948.1562,224.15696 948.23183,224.11406 948.30685,224.07009 L 948.71067,223.80194 C 952.30984,221.52412 954.32227,216.89663 954.33121,210.8777 954.33123,197.91813 945.24475,182.16618 934.03594,175.6947 930.93615,173.90508 927.87899,172.96087 925.09835,172.93246 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path35" + d="M 921.01442,171.11635 C 920.8847,171.11635 920.74993,171.13505 920.60987,171.17845 920.52357,171.20515 920.44696,171.23775 920.37812,171.27505 H 920.37712 L 920.36322,171.28305 C 920.35922,171.28605 920.35522,171.28805 920.35082,171.29005 L 908.02523,178.40639 910.40747,180.32514 922.99009,173.0982 C 922.58215,172.26153 922.14431,171.59267 921.62434,171.29133 921.43281,171.18076 921.23026,171.11906 921.01405,171.11669 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path36" + d="M 927.85264,171.16565 C 927.74487,171.16765 927.65161,171.18565 927.57068,171.21725 L 927.56968,171.21625 927.56468,171.21925 C 927.51128,171.24055 927.46345,171.26835 927.42098,171.30185 L 914.83236,178.53189 917.76468,181.18425 930.05588,173.85545 C 930.15348,173.88925 930.25103,173.92315 930.34893,173.95878 930.33133,173.87598 930.31243,173.79472 930.29313,173.71412 H 930.29413 L 930.29313,173.71312 C 930.05761,172.7354 929.67617,171.92798 928.93938,171.48823 928.75806,171.37971 928.55523,171.29461 928.32781,171.23375 928.14562,171.18505 927.98795,171.16315 927.85249,171.16575 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path37" + d="M 935.88342,175.08899 C 935.43521,175.09599 935.22057,175.52861 935.11359,176.16641 L 935.11159,176.16541 923.00029,182.40043 925.75362,185.93996 938.09976,178.51474 C 938.15546,178.55994 938.21142,178.60454 938.26693,178.65025 938.27593,178.56685 938.28283,178.48397 938.28803,178.40141 H 938.28903 L 938.28803,178.40041 C 938.35363,177.36195 938.08037,176.391 936.91482,175.54066 936.79811,175.45546 936.68868,175.38331 936.58593,175.32346 936.30384,175.15886 936.0727,175.0862 935.88305,175.08917 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path38" + d="M 943.65463,182.43635 C 943.4238,182.43135 943.22112,182.53365 943.03597,182.70358 L 943.03497,182.70258 930.76322,189.72306 932.95701,193.70006 945.45287,186.35143 C 945.48227,186.39153 945.51197,186.43123 945.54127,186.47147 945.59967,186.38537 945.65204,186.29712 945.6988,186.20698 L 945.7008,186.20598 945.6998,186.20498 C 946.06525,185.49921 946.03895,184.65657 945.06404,183.44292 944.70721,182.99872 944.39597,182.7202 944.12031,182.57141 943.95283,182.48101 943.79837,182.43853 943.65463,182.43607 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path39" + d="M 928.06533,234.24919 931.56868,232.22651 926.82269,232.11788 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path40" + d="M 919.82098,230.41788 921.12774,229.66345 920.0658,228.99855 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path41" + d="M 899.85535,189.65277 902.70144,188.00958 901.83783,191.23261 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="23.465452" + rx="23.435081" + cy="-325.61258" + cx="1064.0011" + id="ellipse41" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + cy="-325.10037" + cx="1063.7451" + id="ellipse42" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.387164;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="12.192419" + ry="12.199402" + transform="matrix(0.86623374,0.49963897,0,1,0,0)" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="9.8820095" + rx="9.8692188" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse43" + cx="1064.0011" + cy="-325.61258" /> + <path + inkscape:connector-curvature="0" + id="path43" + d="M 918.19269,195.37987 A 12.095116,6.9831052 60.06427 0 0 917.52893,198.81026 12.095116,6.9831052 60.06427 0 0 926.07596,213.62688 12.095116,6.9831052 60.06427 0 0 929.33516,214.75306 12.095116,6.9831052 60.06427 0 0 929.99894,211.32267 12.095116,6.9831052 60.06427 0 0 921.45191,196.50605 12.095116,6.9831052 60.06427 0 0 918.19269,195.37987 Z" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccccc" + inkscape:connector-curvature="0" + id="path44" + d="M 922.14442,202.05802 C 921.90933,202.06102 921.69475,202.11872 921.50866,202.22791 L 921.50766,202.22591 919.6553,203.29025 923.2269,209.40901 924.98569,208.39326 C 925.01999,208.37566 925.05349,208.35626 925.08592,208.33536 L 925.14072,208.30366 925.13872,208.30066 C 925.55286,208.00916 925.78256,207.45277 925.78357,206.73864 925.7835,205.14012 924.66271,203.19727 923.28019,202.39909 922.88552,202.17123 922.49645,202.05449 922.14473,202.05838 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="2.8943744" + rx="2.8906281" + cy="-325.65756" + cx="1064.0011" + id="ellipse44" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccccc" + inkscape:connector-curvature="0" + id="path45" + d="M 949.66863,192.06864 C 949.56675,192.06764 949.4644,192.07764 949.36157,192.09524 V 192.09424 L 949.35957,192.09524 C 949.27707,192.10944 949.19424,192.12814 949.11109,192.15234 949.12259,192.17384 949.10019,192.13054 949.11209,192.15234 L 936.52747,199.38004 939.11181,203.07801 951.39793,196.07954 951.39693,196.07754 C 951.9865,195.75096 952.19487,195.11444 951.53445,193.73806 951.17615,192.99126 950.81029,192.54365 950.4372,192.30244 950.18451,192.1391 949.92842,192.07048 949.66919,192.06779 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccsccccc" + inkscape:connector-curvature="0" + id="path46" + d="M 953.16814,202.36143 C 953.18014,202.40733 953.15784,202.31593 953.17014,202.36143 L 940.58002,209.58613 942.4573,213.65447 954.95505,206.46626 V 206.46626 C 955.33106,206.23475 955.55603,205.87615 955.34833,204.86004 955.10459,203.66753 954.578,203.02527 953.91119,202.65661 953.73411,202.55871 953.54614,202.48079 953.35037,202.4165 V 202.4165 202.4165 C 953.29057,202.3969 953.23018,202.3782 953.16901,202.361 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path47" + d="M 954.30178,212.07503 C 954.30176,212.07503 954.30178,212.07603 954.30178,212.07603 L 941.72989,219.0685 942.84224,223.2829 955.39666,216.06742 V 216.06642 C 955.6559,215.96842 955.83435,215.6754 955.9029,215.11287 956.06885,213.75134 955.34467,212.84767 954.30286,212.07522 954.30283,212.0752 954.30288,212.07522 954.30286,212.07522 V 212.07522 C 954.30286,212.07522 954.30186,212.07522 954.30186,212.07422 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccscc" + inkscape:connector-curvature="0" + id="path48" + d="M 952.34555,219.81203 C 952.26335,219.96334 952.1779,220.11083 952.09089,220.25663 L 939.80113,227.00879 940.29428,230.445 952.55236,223.36678 V 223.36678 C 952.87887,223.185 952.9531,223.19959 953.1366,222.93811 953.73539,222.0847 953.31899,221.09232 952.51139,220.0256 952.45779,219.9548 952.40241,219.88366 952.34548,219.81203 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path49" + d="M 924.00192,182.55101 C 921.99591,181.38047 922.56338,184.85807 922.35023,187.13903 A 24.312111,14.036577 60.064274 0 1 925.01145,189.06283 C 925.36454,186.76189 926.72074,184.51177 924.33085,182.7682 924.21414,182.683 924.10467,182.61091 924.00192,182.55109 Z M 916.35511,178.71593 C 916.17378,178.6074 915.97097,178.52222 915.74355,178.46136 913.41148,177.83738 915.10695,181.62639 915.73755,184.42321 A 24.312111,14.036577 60.064274 0 1 918.32669,185.10642 C 917.87227,182.61462 918.03116,179.71627 916.35527,178.716 Z M 931.536,189.79942 C 930.1961,189.07611 929.69084,191.42144 928.82632,192.77654 A 24.312111,14.036577 60.064274 0 1 931.16164,195.65214 C 932.31883,194.16613 934.5633,193.26495 932.47958,190.67096 932.12275,190.22675 931.81166,189.94821 931.536,189.79942 Z M 909.04032,178.51863 C 908.73388,178.3417 908.39911,178.29025 908.02555,178.40601 906.11181,178.99894 908.60241,182.28115 909.99087,185.04946 A 24.312111,14.036577 60.064274 0 1 912.11083,184.37282 C 911.08164,182.12134 910.30044,179.24894 909.04032,178.51862 Z M 937.85222,199.53111 C 936.69708,198.78436 935.47259,200.01583 934.1876,200.4877 A 24.312111,14.036577 60.064274 0 1 935.83577,203.88734 C 937.61807,203.44004 940.41312,204.01702 938.94954,200.96671 938.59124,200.21992 938.2253,199.77231 937.85222,199.53111 Z M 903.57245,182.32967 C 903.11772,182.06995 902.70464,182.10731 902.35149,182.61064 901.14735,184.32686 904.04746,186.60482 905.98115,188.92002 A 24.312111,14.036577 60.064274 0 1 907.31132,186.99295 C 905.99725,185.28859 904.66493,182.95353 903.57245,182.32967 Z M 941.32637,209.8847 C 940.29004,209.3117 938.89639,209.39752 937.61939,209.10763 A 24.312111,14.036577 60.064274 0 1 938.32617,212.50974 C 940.46062,213.16998 943.37706,215.1282 942.75569,212.08825 942.51195,210.89574 941.99319,210.25337 941.32637,209.8847 Z M 901.10345,189.71257 C 900.3078,189.26021 899.72374,189.30055 899.58544,190.43518 899.27183,193.00851 902.13709,193.9469 904.31855,195.45329 A 24.312111,14.036577 60.064274 0 1 904.66279,192.57416 C 903.45549,191.64468 902.11049,190.28526 901.10345,189.71257 Z M 938.58871,217.32561 A 24.312111,14.036577 60.064274 0 1 938.25977,220.21661 C 940.41719,221.88359 943.00592,224.90449 943.31832,222.34118 943.63179,219.7693 940.76975,218.8306 938.58871,217.32561 Z M 904.56145,200.26188 C 902.42847,199.59676 899.5283,197.65641 900.1481,200.68866 900.7684,203.72347 903.16829,203.19581 905.26168,203.66321 A 24.312111,14.036577 60.064274 0 1 904.56145,200.26188 Z M 936.95189,223.89201 A 24.312111,14.036577 60.064274 0 1 935.63177,225.83395 C 937.4802,228.24816 939.35911,231.86637 940.55228,230.16578 941.75031,228.45831 938.88544,226.195 936.95189,223.89201 Z M 907.03217,208.89868 C 905.24855,209.32934 902.50058,208.78006 903.95424,211.80966 905.41077,214.84532 906.99184,212.94247 908.67729,212.30315 A 24.312111,14.036577 60.064274 0 1 907.03217,208.89868 Z M 932.94917,227.79939 A 24.312111,14.036577 60.064274 0 1 930.82877,228.48232 C 932.0892,231.27248 932.98637,234.95709 934.87824,234.37091 936.77528,233.78316 934.34418,230.55222 932.94917,227.79939 Z M 911.71025,217.16595 C 910.54422,218.62757 908.35984,219.53554 910.42421,222.10542 912.49367,224.68172 913.02374,221.69645 914.04471,220.05064 A 24.312111,14.036577 60.064274 0 1 911.71025,217.16595 Z M 927.18688,228.4454 A 24.312111,14.036577 60.064274 0 1 924.59426,227.76323 C 925.07586,230.50435 924.85714,233.69939 927.16023,234.31559 929.46668,234.93266 927.83302,231.23244 927.18693,228.4454 Z M 917.88056,223.79108 C 917.50968,226.06503 916.20989,228.28421 918.57294,230.00821 920.94071,231.73571 920.34334,228.11967 920.54569,225.72024 A 24.312111,14.036577 60.064274 0 1 917.88056,223.79108 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1036.6763,275.75223 1035.5368,276.4 1035.5258,276.407 1034.3983,277.04802 C 1034.3983,277.04902 1034.3983,277.05002 1034.3983,277.05302 L 1024.0823,282.96333 1024.1103,285.5966 1036.5039,278.44369 C 1037.4812,278.08912 1037.2994,277.08202 1036.6748,275.75384 Z" + id="path50" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1004.7067,226.24287 C 1004.582,226.23787 1004.4618,226.26797 1004.3461,226.33167 V 226.33067 L 1004.3291,226.34157 C 1004.3291,226.34257 1004.3291,226.34257 1004.3291,226.34357 L 991.72955,233.58034 993.13186,235.51837 1005.7454,228.01183 1005.3489,227.53487 1006.045,227.13524 C 1005.7525,226.81158 1005.4705,226.55509 1005.203,226.40233 1005.0325,226.30503 1004.8678,226.24928 1004.71,226.24449 Z" + id="path51" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1014.1416,224.23154 C 1014.0516,224.23054 1013.9624,224.23054 1013.8733,224.23154 1011.7936,224.25464 1009.9498,224.79538 1008.3912,225.78592 V 225.78492 L 995.88119,232.96656 1002.4376,237.24662 1002.8411,237.02814 C 1002.8041,237.58478 1002.7841,238.15587 1002.7841,238.74153 1002.7841,251.70117 1011.8707,267.45313 1023.0795,273.92453 1024.1097,274.51336 1025.1379,275.01042 1026.1554,275.41142 L 1025.7912,281.94057 1037.1236,275.49783 C 1037.1996,275.45573 1037.2753,275.41293 1037.3504,275.36895 L 1037.7543,275.1008 C 1041.3535,272.823 1043.3659,268.19549 1043.3748,262.17656 1043.3748,249.21699 1034.2883,233.46505 1023.0795,226.99357 1019.9797,225.20394 1016.9226,224.25973 1014.1419,224.23132 Z" + id="path52" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1010.0573,222.41521 C 1009.9275,222.41521 1009.7928,222.43481 1009.6527,222.47721 1009.5667,222.50401 1009.4898,222.53641 1009.421,222.57391 V 222.57391 L 1009.407,222.58291 C 1009.407,222.58491 1009.397,222.58791 1009.395,222.58991 L 997.0694,229.70624 999.45164,231.62498 1012.0343,224.39806 C 1011.6263,223.56139 1011.1885,222.89253 1010.6685,222.59119 1010.477,222.4806 1010.2744,222.41898 1010.0582,222.41659 Z" + id="path53" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1016.8955,222.4645 C 1016.7877,222.4665 1016.6944,222.4841 1016.6135,222.5161 V 222.5151 L 1016.6035,222.5171 C 1016.5505,222.5389 1016.5022,222.5661 1016.4598,222.5996 L 1003.8712,229.82963 1006.8035,232.48201 1019.0947,225.1532 C 1019.1927,225.1869 1019.2897,225.2209 1019.3877,225.25661 1019.3707,225.17391 1019.3517,225.09247 1019.3317,225.01194 V 225.01194 225.01094 C 1019.0962,224.03323 1018.7147,223.2258 1017.9779,222.78604 1017.7966,222.67741 1017.5938,222.5925 1017.3664,222.53157 1017.1842,222.48277 1017.0265,222.46107 1016.8911,222.46367 Z" + id="path54" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1024.9263,226.38786 C 1024.4781,226.39486 1024.2634,226.82749 1024.1564,227.46528 V 227.46428 L 1012.0451,233.69931 1014.7984,237.23883 1027.1446,229.81362 C 1027.2006,229.85892 1027.2563,229.90352 1027.3118,229.94903 1027.3218,229.86563 1027.3268,229.7827 1027.3338,229.70017 V 229.70017 229.69917 C 1027.3998,228.66071 1027.1262,227.68977 1025.9606,226.83943 1025.8439,226.75413 1025.7345,226.68203 1025.6318,226.62217 1025.3497,226.45758 1025.1185,226.38491 1024.9289,226.38788 Z" + id="path55" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1032.6975,233.73522 C 1032.4666,233.73022 1032.264,233.83252 1032.0788,234.00245 V 234.00145 L 1019.8071,241.02193 1022.0009,244.99893 1034.4967,237.6503 C 1034.5257,237.6903 1034.5557,237.73 1034.5847,237.77026 1034.6427,237.68406 1034.6955,237.59588 1034.7423,237.50577 V 237.50477 237.50377 C 1035.1078,236.79801 1035.0814,235.95537 1034.1065,234.74171 1033.7497,234.29752 1033.4385,234.01901 1033.1628,233.87021 1032.9954,233.77991 1032.8409,233.73742 1032.6971,233.73481 Z" + id="path56" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1017.1082,285.54805 1020.6115,283.52537 1015.8655,283.41674 Z" + id="path57" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1008.8638,281.71676 1010.1706,280.96231 1009.1086,280.29741 Z" + id="path58" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 988.89819,240.95163 991.74428,239.30845 990.88067,242.53148 Z" + id="path59" + inkscape:connector-curvature="0" /> + <ellipse + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse59" + cx="1166.819" + cy="-325.72266" + rx="23.435081" + ry="23.465452" + transform="matrix(0.86602531,0.50000016,0,1,0,0)" /> + <ellipse + transform="matrix(0.86623374,0.49963897,0,1,0,0)" + ry="12.199402" + rx="12.192419" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.387164;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse60" + cx="1166.5382" + cy="-325.16092" /> + <ellipse + cy="-325.72266" + cx="1166.819" + id="ellipse61" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="9.8692188" + ry="9.8820095" + transform="matrix(0.86602531,0.50000016,0,1,0,0)" /> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1007.2355,246.67873 A 12.095116,6.9831052 60.06427 0 0 1006.5718,250.10913 12.095116,6.9831052 60.06427 0 0 1015.1188,264.92574 12.095116,6.9831052 60.06427 0 0 1018.378,266.05192 12.095116,6.9831052 60.06427 0 0 1019.0418,262.62155 12.095116,6.9831052 60.06427 0 0 1010.4947,247.80492 12.095116,6.9831052 60.06427 0 0 1007.2355,246.67873 Z" + id="path61" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1011.1873,253.35687 C 1010.9522,253.36187 1010.7376,253.41757 1010.5515,253.52668 V 253.52468 L 1008.6992,254.589 1012.2708,260.70778 1014.0296,259.69201 C 1014.0636,259.67461 1014.0976,259.65501 1014.1298,259.63411 L 1014.1848,259.60231 V 259.59731 C 1014.5989,259.30581 1014.8286,258.74941 1014.8296,258.03528 1014.8295,256.43677 1013.7088,254.49392 1012.3262,253.69574 1011.9316,253.46788 1011.5425,253.35115 1011.1908,253.35502 Z" + id="path62" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccc" /> + <ellipse + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse62" + cx="1166.8188" + cy="-325.76761" + rx="2.8906281" + ry="2.8943744" + transform="matrix(0.86602531,0.50000016,0,1,0,0)" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1038.7115,243.3675 C 1038.6096,243.3665 1038.5073,243.3765 1038.4044,243.3941 V 243.3931 243.3941 C 1038.3224,243.4094 1038.2392,243.427 1038.1559,243.4511 1038.1669,243.4729 1038.1449,243.4293 1038.1559,243.4511 L 1025.5713,250.67881 1028.1556,254.37676 1040.4417,247.37829 V 247.37629 C 1041.0313,247.04972 1041.2396,246.41319 1040.5793,245.03679 1040.221,244.29002 1039.8551,243.8424 1039.482,243.60119 1039.2293,243.43791 1038.9732,243.36923 1038.714,243.36653 Z" + id="path63" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1042.211,253.66029 C 1042.222,253.70619 1042.2,253.61479 1042.211,253.66029 L 1029.6209,260.88499 1031.4982,264.95334 1043.9959,257.76514 V 257.76514 C 1044.372,257.53362 1044.5969,257.17502 1044.3892,256.1589 1044.1455,254.9664 1043.6189,254.32414 1042.9521,253.95546 1042.7751,253.85746 1042.587,253.77957 1042.3912,253.71536 V 253.71536 253.71536 C 1042.3312,253.69576 1042.2711,253.67706 1042.2099,253.65986 Z" + id="path64" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccsccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1043.3446,263.3739 C 1043.3446,263.3739 1043.3446,263.3749 1043.3446,263.3749 L 1030.7727,270.36736 1031.8851,274.58176 1044.4395,267.36629 V 267.36529 C 1044.6987,267.26729 1044.8772,266.97428 1044.9457,266.41174 1045.1116,265.05021 1044.3875,264.14654 1043.3457,263.37409 1043.3457,263.37407 1043.3457,263.37409 1043.3457,263.37409 V 263.37409 C 1043.3457,263.37409 1043.3457,263.37409 1043.3457,263.37309 Z" + id="path65" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1041.3884,271.11092 C 1041.3064,271.26222 1041.2207,271.40969 1041.1337,271.55548 L 1028.844,278.30765 1029.3371,281.74386 1041.5952,274.66565 V 274.66565 C 1041.9217,274.48387 1041.9959,274.49845 1042.1794,274.23697 1042.7782,273.38356 1042.3619,272.39117 1041.5542,271.32446 1041.5012,271.25376 1041.4452,271.1823 1041.3883,271.1109 Z" + id="path66" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccscc" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1013.0448,233.84989 C 1011.0387,232.67933 1011.6062,236.15694 1011.3931,238.4379 A 24.312111,14.036577 60.064274 0 1 1014.0543,240.3617 C 1014.4074,238.06076 1015.7636,235.81065 1013.3737,234.06706 1013.257,233.98176 1013.1475,233.90988 1013.0448,233.85001 Z M 1005.3979,230.0148 C 1005.2166,229.90617 1005.0138,229.82105 1004.7864,229.76022 1002.4543,229.13625 1004.1498,232.92524 1004.7764,235.72206 A 24.312111,14.036577 60.064274 0 1 1007.3655,236.40527 C 1006.9111,233.91348 1007.0699,231.01514 1005.3941,230.01487 Z M 1020.5788,241.09827 C 1019.2389,240.37496 1018.7337,242.7203 1017.8692,244.0754 A 24.312111,14.036577 60.064274 0 1 1020.2045,246.951 C 1021.3617,245.46498 1023.6061,244.56381 1021.5224,241.96982 1021.1656,241.52562 1020.8545,241.24707 1020.5788,241.09827 Z M 998.08315,229.8175 C 997.77672,229.64051 997.44194,229.58911 997.06839,229.70495 995.15465,230.29788 997.64525,233.58009 999.03371,236.34839 A 24.312111,14.036577 60.064274 0 1 1001.1537,235.67176 C 1000.1245,233.42027 999.34327,230.54788 998.08315,229.81756 Z M 1026.8951,250.82998 C 1025.7399,250.08322 1024.5154,251.31469 1023.2304,251.78655 A 24.312111,14.036577 60.064274 0 1 1024.8786,255.18619 C 1026.6609,254.7389 1029.456,255.31594 1027.9924,252.26558 1027.6341,251.51878 1027.2681,251.07117 1026.8951,250.82998 Z M 992.61527,233.62852 C 992.16055,233.36881 991.74748,233.40616 991.39433,233.90951 990.19019,235.62573 993.0903,237.90369 995.02398,240.2189 A 24.312111,14.036577 60.064274 0 1 996.35416,238.29181 C 995.04009,236.58745 993.70777,234.25239 992.61527,233.62852 Z M 1030.3692,261.18357 C 1029.3329,260.61058 1027.9392,260.69637 1026.6622,260.4065 A 24.312111,14.036577 60.064274 0 1 1027.369,263.8086 C 1029.5035,264.46885 1032.4199,266.42706 1031.7985,263.38711 1031.5548,262.19461 1031.036,261.55222 1030.3692,261.18357 Z M 990.14628,241.01143 C 989.35063,240.55908 988.76656,240.59941 988.62828,241.73405 988.31466,244.30738 991.17992,245.24576 993.36138,246.75216 A 24.312111,14.036577 60.064274 0 1 993.70561,243.87302 C 992.49834,242.94355 991.15333,241.58412 990.14628,241.01143 Z M 1027.6315,268.62449 A 24.312111,14.036577 60.064274 0 1 1027.3026,271.51547 C 1029.46,273.18245 1032.0488,276.20335 1032.3612,273.64003 1032.6746,271.06818 1029.8126,270.12946 1027.6315,268.62449 Z M 993.60428,251.56076 C 991.4713,250.89564 988.57113,248.95527 989.19094,251.98754 989.81124,255.02233 992.21112,254.49466 994.30452,254.96207 A 24.312111,14.036577 60.064274 0 1 993.60428,251.56076 Z M 1025.9947,275.19087 A 24.312111,14.036577 60.064274 0 1 1024.6746,277.1328 C 1026.523,279.54704 1028.4019,283.16523 1029.5951,281.46464 1030.7931,279.75719 1027.9283,277.49386 1025.9947,275.19087 Z M 996.07501,260.19756 C 994.29139,260.62821 991.54341,260.07891 992.99707,263.10852 994.45361,266.14418 996.03468,264.24133 997.72012,263.60201 A 24.312111,14.036577 60.064274 0 1 996.07501,260.19756 Z M 1021.992,279.09825 A 24.312111,14.036577 60.064274 0 1 1019.8716,279.78118 C 1021.132,282.57136 1022.0292,286.25595 1023.9211,285.66979 1025.8181,285.08204 1023.387,281.85108 1021.992,279.09825 Z M 1000.7531,268.46481 C 999.58706,269.92643 997.40268,270.83439 999.46705,273.40429 1001.5365,275.98058 1002.0666,272.99532 1003.0875,271.34949 A 24.312111,14.036577 60.064274 0 1 1000.7531,268.46481 Z M 1016.2297,279.74426 A 24.312111,14.036577 60.064274 0 1 1013.6371,279.06211 C 1014.1187,281.8032 1013.9,284.99825 1016.2031,285.61445 1018.5095,286.23152 1016.8759,282.53131 1016.2301,279.74426 Z M 1006.9234,275.08995 C 1006.5525,277.3639 1005.2527,279.58307 1007.6158,281.30707 1009.9835,283.03456 1009.3862,279.41855 1009.5885,277.0191 A 24.312111,14.036577 60.064274 0 1 1006.9234,275.08995 Z" + id="path67" /> + <path + id="path68" + d="M 925.85712,81.842523 859.04794,120.41483 858.0511,127.34509 892.07935,156.22678 982.82118,208.61665 1047.8953,169.0426 958.88853,117.6545 924.86028,88.772782 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path69" + d="M 976.01094,150.49853 957.68326,161.08001 970.42706,165.27927 987.34288,159.03846 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path70" + d="M 925.85712,81.842523 912.96241,89.367272 911.90782,90.035564 913.45986,95.354659 944.3268,126.0804 1011.7652,190.81092 1013.2043,189.93581 1038.2299,163.46208 958.88853,117.65433 924.86028,88.772569 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.348874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path71" + d="M 858.05113,127.34509 924.86028,88.772817 925.85706,81.842592 859.048,120.41483 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#172935;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 928.13531,63.131377 930.09782,61.998321 V 64.871743 L 928.13531,66.004787 Z" + id="path72" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + id="path73" + d="M 924.86028,88.772817 858.05113,127.34509 892.07935,156.22678 958.88851,117.6545 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke-width:0.627;stroke-linecap:round;stroke-linejoin:round" + d="M 941.83161,130.32982 914.24718,133.71596 900.22414,126.16046 936.24383,121.36525 Z" + id="path74" /> + <path + inkscape:connector-curvature="0" + id="path75" + d="M 958.88851,117.6545 892.07935,156.22678 982.82122,208.61665 1047.8953,169.0426 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + y="178.11374" + x="979.43103" + height="25.211174" + width="12.091898" + id="rect75" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path76" + d="M 984.85825,194.09214 991.52292,190.24429 V 200.12869 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path77" + d="M 1054.5286,125.75569 1054.2496,142.52679 V 157.01072 L 1100.5928,183.7671 1104.685,158.02548 1107.3963,159.59095 1106.6288,155.83535 Z M 1093.1283,152.88586 C 1093.3985,152.87256 1093.7083,152.95526 1094.0383,153.14579 L 1099.7327,156.4337 C 1100.7888,157.04344 1101.8046,158.62766 1101.6388,159.73794 L 1098.9552,177.71615 C 1098.7895,178.82635 1098.1047,179.42957 1097.0486,178.81984 L 1094.0383,177.08154 C 1092.9822,176.47188 1092.1321,174.99791 1092.1321,173.77685 V 154.24948 C 1092.1321,153.41 1092.534,152.91509 1093.1283,152.88586 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.348874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 924.86028,88.772817 958.88851,117.6545 1049.6304,170.04446 V 145.20085 L 1067.8826,134.63569 1092.4452,143.32177 V 140.92048 L 1090.5282,137.59712 1049.7901,114.07701 1034.5733,122.88529 928.13531,66.004787 Z" + id="path78" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cscccccscccscccccscccscccccscccscccccscccscccccscccscccccscccscccc" + inkscape:connector-curvature="0" + id="path79" + d="M 933.46642,73.89851 C 932.5154,73.94534 931.87237,74.737379 931.87237,76.080484 V 86.969833 L 930.19848,87.250633 931.87237,92.195195 933.38205,91.73068 V 86.716716 75.615969 C 933.38205,74.876454 933.57791,74.305056 933.9119,73.932096 933.75789,73.905426 933.60791,73.891546 933.46642,73.898516 Z M 950.16134,83.537219 C 949.21043,83.584109 948.56728,84.376485 948.56728,85.719637 V 103.38667 104.58835 106.33119 L 950.07696,105.86668 V 102.74796 85.255116 C 950.07696,84.515606 950.27246,83.943834 950.60635,83.570805 950.45241,83.544135 950.30274,83.530255 950.16134,83.537225 Z M 966.76733,92.210154 C 965.81642,92.256924 965.17327,93.048954 965.17327,94.392128 V 115.69635 117.64787 118.9965 L 966.68295,118.53198 V 115.34795 93.927613 C 966.68295,93.188404 966.87825,92.617144 967.2119,92.244178 967.05805,92.217568 966.90868,92.203228 966.76733,92.210138 Z M 983.37288,101.0142 C 982.42196,101.061 981.77928,101.85304 981.77928,103.19614 V 124.56298 127.37458 128.72321 L 983.28896,128.25869 V 124.23273 102.73163 C 983.28896,101.99244 983.48424,101.42116 983.81788,101.04823 983.66395,101.02153 983.5143,101.00723 983.37288,101.01423 Z M 999.18821,109.75335 C 998.23728,109.80015 997.59415,110.59215 997.59415,111.93532 V 135.10987 L 997.15776,135.3843 997.59415,137.98722 999.10383,137.5227 V 134.16086 111.4708 C 999.10383,110.73143 999.29943,110.15986 999.63322,109.78693 999.47928,109.76023 999.32942,109.74643 999.18821,109.75333 Z M 1015.4835,118.3773 C 1014.5324,118.424 1013.889,119.21602 1013.889,120.55925 V 143.21893 146.18249 147.53158 L 1015.3986,147.06707 V 142.46408 120.09473 C 1015.3986,119.3555 1015.5943,118.78421 1015.928,118.41132 1015.7742,118.38472 1015.6248,118.37042 1015.4835,118.37732 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1049.7903,114.07719 1034.5732,122.88511 928.13523,66.004931 925.18266,86.530829 931.87237,92.195195 V 76.080507 C 931.87237,74.126854 933.23304,73.339231 934.92277,74.314791 L 940.11895,77.314795 C 941.80867,78.290354 943.16893,80.648924 943.16893,82.602578 V 101.76033 L 948.56734,106.33116 V 85.719343 C 948.56734,83.765689 949.92758,82.977825 951.6173,83.953379 L 956.81345,86.953382 C 958.50321,87.928977 959.86346,90.287512 959.86346,92.241166 V 115.88647 L 965.17318,118.99643 V 94.392088 C 965.17318,92.438394 966.53343,91.651019 968.22316,92.626619 L 973.41931,95.626617 C 975.10906,96.602177 976.46974,98.960499 976.46974,100.91419 V 125.61349 L 981.77903,128.72327 V 103.1961 C 981.77903,101.24241 983.13929,100.45506 984.82902,101.43062 L 990.02516,104.43059 C 991.71491,105.4062 993.07559,107.76448 993.07559,109.71817 V 135.34032 L 997.59421,137.98696 V 111.93503 C 997.59421,109.98143 998.95446,109.19402 1000.6442,110.16955 L 1005.8404,113.1696 C 1007.5301,114.14513 1008.8903,116.50324 1008.8903,118.45684 V 144.60323 L 1013.889,147.53157 V 120.55897 C 1013.889,118.60528 1015.2497,117.81822 1016.9395,118.79375 L 1022.1356,121.7938 C 1023.8253,122.76933 1025.1856,125.12734 1025.1856,127.08103 V 154.14817 L 1029.865,156.88919 V 129.3913 C 1029.865,127.43761 1031.2252,126.64976 1032.915,127.62529 L 1038.1116,130.62552 C 1039.8013,131.60113 1041.1615,133.95968 1041.1615,135.91336 V 163.50615 L 1046.2402,166.48084 V 137.64444 C 1046.2402,135.69075 1047.6004,134.90343 1049.2902,135.87896 L 1054.4863,138.87901 C 1055.3278,139.3648 1056.0874,140.19373 1056.6382,141.14468 L 1067.8827,134.63578 1092.4451,143.32169 V 140.92066 L 1090.5283,137.59721 Z" + id="path80" /> + <rect + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect80" + width="20.145742" + height="22.181101" + x="1236.6628" + y="-476.74298" + rx="2.0054591" + ry="2.0081656" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1110.8171,198.91878 1051.6674,164.76864 V 193.10854 L 1055.4867,195.31364 C 1059.3463,187.53777 1067.931,186.04713 1077.4054,191.50765 1086.8753,196.9902 1095.454,208.38929 1099.3117,220.616 L 1107.2228,225.1835 V 216.26901 Z" + id="path81" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1093.2107,152.88463 C 1092.5715,152.87043 1092.1322,153.37182 1092.1322,154.24948 V 173.77706 C 1092.1322,174.99812 1092.9825,176.47207 1094.0385,177.08172 L 1097.0487,178.81973 C 1098.1048,179.42947 1098.7894,178.82873 1098.9551,177.71622 L 1098.9701,177.60983 C 1098.9021,177.57913 1098.8319,177.54403 1098.7602,177.50257 L 1095.7501,175.76465 C 1094.694,175.15491 1093.8437,173.68095 1093.8437,172.4599 V 153.04527 C 1093.6183,152.94126 1093.4049,152.88894 1093.2099,152.88463 Z" + id="path82" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1110.8171,196.77812 1051.6674,162.62797 V 164.76864 L 1110.8171,198.91878 Z" + id="path83" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1051.6674,155.51987 V 162.62797 L 1110.8171,196.77812 1108.9212,188.57536 1054.2496,157.01059 Z" + id="path84" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path85" + d="M 1093.3043,179.55921 1076.3608,169.7769 1037.8758,196.59781 1025.8583,210.83585 1030.2573,216.48163 1037.7047,211.65981 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:nodetypes="ccccccc" /> + <path + inkscape:connector-curvature="0" + id="path86" + d="M 1089.9246,181.43135 1076.0414,173.41592 1079.1964,171.59435 1093.0793,179.61004 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + cy="-402.75723" + cx="1244.0807" + id="ellipse86" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="2.8906281" + ry="2.8943744" /> + <path + inkscape:connector-curvature="0" + id="path87" + d="M 1091.0056,185.33987 1073.4001,185.64395 1025.4775,213.31205 996.27317,196.45093 998.92907,190.61026 1041.1615,151.08694 1046.2402,158.10428 1071.7577,183.62188 H 1093.9814 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cccccccccc" /> + <path + inkscape:connector-curvature="0" + id="path88" + d="M 1013.2383,205.26206 1035.8244,192.22195 1019.4493,185.20893 1011.0069,190.0831 1005.301,202.86783 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + cy="-402.75723" + cx="1141.1456" + id="ellipse88" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + rx="9.8692188" + ry="9.8820095" /> + <ellipse + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse89" + cx="1141.1456" + cy="-402.80212" + rx="2.8906281" + ry="2.8943744" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 928.13531,63.131377 1054.2497,130.48305 V 133.35652 L 928.13531,66.004787 Z" + id="path89" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1107.2228,216.26901 1102.0313,213.27176 V 222.18617 L 1107.2228,225.1835 Z" + id="path90" + inkscape:connector-curvature="0" /> + <path + id="path91" + d="M 1103.7731,198.8353 1094.9007,203.95777 V 223.38326 L 1103.7731,218.26079 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.35200969,0,0,0.35200969,1049.405,-353.262)" + id="g96" + style="display:inline"> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path92" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + id="path93" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path94" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse94" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path95" + transform="scale(0.26458333)" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse95" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + id="path96" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + ry="7.2247276" + rx="7.2083259" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse96" + cx="-168.4836" + cy="1675.6819" /> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path97" + d="M 1052.7358,230.31142 1094.9007,205.96746 1091.64,221.50085 1049.4751,245.8448 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path98" + d="M 1094.9007,223.38318 1091.64,221.50085 1051.1801,244.86041 1052.7358,247.72722 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path99" + d="M 1053.7139,229.7467 1092.6498,207.26708 1090.0255,219.7107 1051.0896,242.19032 Z" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path100" + d="M 1090.0255,219.7107 1089.3019,219.29286 1052.9317,240.29124 1053.1022,240.92775 1053.2123,240.96455 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" + y="836.09918" + x="1205.3497" + height="19.425489" + width="10.244936" + id="rect100" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g112" + style="display:inline;fill:#c0b2a5;fill-opacity:1" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)"> + <g + id="g111" + style="fill:#c0b2a5;fill-opacity:1"> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 116.09432,111.28872 115.7508,111.09041 116.65665,106.92743 117.0721,106.68755 Z" + id="path101" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 129.6594,103.45691 129.31588,103.25856 130.22174,99.095575 130.63719,98.855736 Z" + id="path102" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 128.00932,104.40957 127.6658,104.21126 128.57166,100.04828 128.9871,99.808398 Z" + id="path103" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path104" + d="M 124.59308,106.38203 124.24957,106.18372 125.15542,102.02074 125.57086,101.78086 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 122.83643,107.39622 122.49291,107.19791 123.39877,103.03493 123.81421,102.79505 Z" + id="path105" + inkscape:connector-curvature="0" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 121.19603,108.34328 120.85251,108.14493 121.75836,103.98195 122.17381,103.74211 Z" + id="path106" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path107" + d="M 119.43937,109.35747 119.09586,109.15912 120.00171,104.99614 120.41715,104.7563 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path108" + d="M 117.85097,110.27453 117.50745,110.07622 118.41331,105.91324 118.82875,105.67336 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g110" + style="fill:#c0b2a5;fill-opacity:1"> + <path + inkscape:connector-curvature="0" + id="path109" + d="M 131.41605,102.44271 131.07254,102.24437 131.97839,98.081381 132.39384,97.841543 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165726;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 133.06605,101.49009 132.72254,101.29174 133.62839,97.12876 134.04384,96.888922 Z" + id="path110" + inkscape:connector-curvature="0" /> + </g> + </g> + <path + inkscape:connector-curvature="0" + id="path111" + d="M 126.25267,105.42376 125.90915,105.22545 126.81501,101.06247 127.23045,100.82259 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.165575;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccscccsccccc" + inkscape:connector-curvature="0" + id="path112" + d="M 1090.9628,208.24103 1089.1089,209.31154 1086.3174,221.85163 1088.1713,220.78111 Z M 1087.2547,210.38187 1085.4007,211.45238 1082.6092,223.99248 1084.4632,222.92213 Z M 1083.5465,212.52289 1081.6926,213.59322 1078.9011,226.13348 1080.755,225.06298 Z M 1079.8384,214.66373 1077.9842,215.73424 1075.1927,228.27433 1077.0469,227.20382 Z M 1076.1302,216.80457 1074.2761,217.87508 1071.4846,230.41517 1073.3387,229.34483 Z M 1072.4221,218.94567 1070.5679,220.01592 1067.7764,232.5562 1069.6306,231.48568 Z M 1068.7139,221.08652 1066.8598,222.15702 1064.0683,234.69702 1065.9224,233.6267 Z M 1065.0056,223.22752 1063.1516,224.29787 1060.3601,236.83813 1062.2141,235.76763 Z M 1061.2974,225.36837 1059.4435,226.43889 1056.6519,238.97898 1058.5059,237.90846 Z M 1057.5893,227.50922 1055.7353,228.57972 1052.9438,241.11983 1054.7978,240.04948 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(0.35200969,0,0,0.35200969,1046.1443,-346.97807)" + id="g113" + style="display:inline;fill:#c0b2a5;fill-opacity:1"> + <ellipse + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse112" + cx="110.45281" + cy="1685.7919" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + rx="2.1047468" + ry="2.1047475" /> + <ellipse + cy="1685.7919" + cx="49.777477" + id="ellipse113" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + rx="2.1047468" + ry="2.1047475" /> + </g> + <g + transform="matrix(0.35200969,0,0,0.35200969,1036.7757,-332.13384)" + id="g123" + style="display:inline"> + <g + transform="translate(-105.30417,20.721772)" + id="g117"> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path113" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + id="path114" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path115" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse115" + style="opacity:1;fill:#cefffb;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path116" + transform="scale(0.26458333)" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse116" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + id="path117" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <ellipse + ry="7.2247276" + rx="7.2083259" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse117" + cx="-168.4836" + cy="1675.6819" /> + </g> + <g + id="g122" + transform="translate(-105.30417,43.920833)"> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path118" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path119" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path120" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse120" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + transform="scale(0.26458333)" + id="path121" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse121" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path122" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + cy="1675.6819" + cx="-168.4836" + id="ellipse122" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + rx="7.2083259" + ry="7.2247276" /> + </g> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path123" + d="M 1042.1121,227.14764 1040.2422,237.52459 1110.8171,196.77812 1108.9212,188.57536 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361384;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(0.32145342,0,0,0.32130127,1052.0457,-294.97934)" + id="g124" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke-width:1.09532"> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.12124;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 41.036782,1590.8594 94.551621,1560.2266 97.916265,1571.7751 40.791662,1604.756 Z" + id="path124" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path125" + d="M 1104.685,158.02548 1037.8758,196.59802 1033.7837,222.33965 1100.5928,183.7671 Z M 1102.2848,160.67875 1098.717,183.12115 1036.5345,219.02226 1040.1022,196.57988 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path126" + d="M 987.71942,164.32776 987.44046,181.09932 V 195.58323 L 1033.7837,222.33965 1037.8758,196.59802 1040.5872,198.16304 1039.8196,194.4079 Z M 1026.3192,191.45794 C 1026.5893,191.44464 1026.8991,191.52784 1027.2292,191.71832 L 1032.9236,195.00578 C 1033.9796,195.61553 1034.9954,197.20029 1034.8297,198.31046 L 1032.146,216.28869 C 1031.9804,217.39895 1031.2955,218.00175 1030.2394,217.39192 L 1027.2292,215.65407 C 1026.1731,215.04433 1025.323,213.57044 1025.323,212.34937 V 192.82155 C 1025.323,191.98208 1025.7248,191.48715 1026.3192,191.45794 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path127" + d="M 1001.0735,173.20797 1067.8826,134.63561 1075.1177,137.64268 1106.6286,155.83545 1039.8194,194.40781 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path128" + d="M 1023.4434,181.11862 1019.4911,183.28519 1001.0735,173.20797 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1001.0735,173.20797 1067.8826,134.63561 1075.1177,137.64268 1106.6286,155.83545 1039.8194,194.40781 Z" + id="path129" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <rect + transform="matrix(0.86602531,0.50000016,0,1,0,0)" + ry="2.0081656" + rx="2.0054591" + y="-399.59836" + x="1159.5182" + height="22.181101" + width="20.145742" + id="rect129" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path130" + d="M 858.0512,127.34509 892.07943,156.22687 982.82131,208.61665 V 183.77313 L 1001.0736,173.20797 1025.6362,181.89405 V 179.49285 L 1023.7191,176.16949 982.98107,152.64938 967.76423,161.45757 861.32622,104.57709 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.348874;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cscccccscccscccccscccscccccscccscccccscccscccccscccscccccscccscccccscccccccccsccc" + inkscape:connector-curvature="0" + id="path131" + d="M 866.65718,112.47069 C 865.70616,112.51749 865.06313,113.30956 865.06313,114.65266 V 125.54201 L 863.38924,125.82281 865.06313,130.76737 866.57281,130.30286 V 125.28889 114.18815 C 866.57281,113.44863 866.76867,112.87723 867.10266,112.50427 866.94865,112.47757 866.79867,112.46367 866.65718,112.47067 Z M 883.3521,122.1094 C 882.40119,122.1563 881.75804,122.94866 881.75804,124.29182 V 141.95885 143.16053 144.90336 L 883.26772,144.43885 V 141.32014 123.82729 C 883.26772,123.08778 883.46322,122.51601 883.79711,122.14298 883.64317,122.11628 883.4935,122.10248 883.3521,122.10938 Z M 899.95809,130.78233 C 899.00717,130.82913 898.36403,131.62113 898.36403,132.96431 V 154.26852 156.22005 157.56868 L 899.87371,157.10415 V 153.92013 132.49979 C 899.87371,131.76058 900.06901,131.18932 900.40265,130.81636 900.24881,130.78976 900.09944,130.77536 899.95809,130.78236 Z M 916.56364,139.58638 C 915.61272,139.63318 914.97004,140.42522 914.97004,141.76832 V 163.13516 165.94676 167.29539 L 916.47972,166.83087 V 162.80491 141.30381 C 916.47972,140.56462 916.67499,139.99334 917.00864,139.62041 916.85471,139.59371 916.70506,139.57941 916.56364,139.58641 Z M 932.37897,148.32552 C 931.42804,148.37232 930.78491,149.16433 930.78491,150.5075 V 173.68204 L 930.34852,173.95648 930.78491,176.5594 932.29459,176.09488 V 172.73304 150.04298 C 932.29459,149.30361 932.49019,148.73204 932.82398,148.35911 932.67004,148.33241 932.52018,148.31861 932.37897,148.32551 Z M 948.67422,156.94948 C 947.72317,156.99618 947.07972,157.7882 947.07972,159.13143 V 181.7911 184.75467 186.10376 L 948.5894,185.63925 V 181.03626 158.66691 C 948.5894,157.92768 948.78504,157.35639 949.11878,156.9835 948.96498,156.9569 948.81552,156.9426 948.67422,156.9495 Z M 964.64967,165.78119 C 963.69876,165.82809 963.05561,166.62049 963.05561,167.9636 V 194.11258 194.11258 195.46121 L 964.56482,194.99625 V 191.89387 167.49862 C 964.56482,166.75912 964.76078,166.18777 965.09468,165.81474 964.94057,165.78804 964.79077,165.77374 964.64921,165.78074 Z M 981.02477,174.03496 C 980.07386,174.08176 979.43118,174.87377 979.43118,176.21691 V 202.35456 203.70456 205.05321 L 980.94086,204.58869 V 201.90275 175.75239 C 980.94086,175.01305 981.13602,174.44148 981.46978,174.06852 981.31584,174.04192 981.16619,174.02802 981.02477,174.03502 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" + id="path132" + d="M 1040.2422,239.66526 981.09248,205.51512 984.85825,231.68082 988.67754,233.88591 C 992.53712,226.11014 1001.1218,224.61942 1010.5962,230.08002 1020.0662,235.56256 1028.6448,246.96157 1032.5026,259.18827 L 1040.4137,263.75579 V 254.84129 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path133" + d="M 1040.2422,237.52459 981.09248,203.37445 V 205.51512 L 1040.2422,239.66526 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path134" + d="M 984.85825,194.09214 981.09248,203.37445 1040.2422,237.52459 1042.1121,227.14764 987.44042,195.58296 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path135" + d="M 930.09782,61.998321 1056.2122,129.35004 1054.2497,130.48305 928.13531,63.131377 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + id="path136" + d="M 925.36132,80.684452 904.76065,92.578155 906.97278,92.719816 925.85714,81.842575 925.94054,81.263297 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.360787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path137" + d="M 907.26242,92.578155 H 904.76065 L 875.6785,109.36879 876.97815,110.06285 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.360787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.360787;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 925.94038,81.263263 925.36145,80.684337 875.67869,109.36871 876.97824,110.06271 925.85712,81.842523 Z" + id="path138" + inkscape:connector-curvature="0" /> + <path + id="path139" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 1002.4695,128.96886 994.38476,133.63655 994.38076,133.63455 C 993.44944,134.21244 992.34771,134.48431 991.06846,134.43688 993.31148,136.68559 994.9804,139.07972 996.07456,141.61886 996.17406,141.84702 996.2635,142.07577 996.35412,142.30434 996.46356,142.58035 996.56566,142.85689 996.66224,143.1335 996.67024,143.1572 996.67914,143.1808 996.68734,143.2045 996.77524,143.45927 996.85616,143.71433 996.93315,143.96961 996.94935,144.02361 996.96585,144.07748 996.98165,144.13146 997.04825,144.35924 997.10986,144.58702 997.16773,144.81521 997.19083,144.90661 997.21273,144.99806 997.23433,145.08958 997.28233,145.29107 997.32823,145.49275 997.36935,145.69456 997.39235,145.80789 997.41255,145.92129 997.43345,146.03471 997.46885,146.22617 997.50285,146.41766 997.53215,146.60941 997.54965,146.72519 997.56365,146.84146 997.57885,146.95734 997.60355,147.14285 997.62915,147.32809 997.64805,147.51386 997.66455,147.6774 997.67495,147.84087 997.68705,148.0046 997.69725,148.14187 997.71025,148.27918 997.71735,148.41659 997.73315,148.72569 997.74245,149.03545 997.74245,149.34528 997.74245,149.77069 997.72565,150.17521 997.69915,150.56824 997.70004,150.56858 997.70115,150.56868 997.70215,150.56913 997.52865,153.1407 996.78751,155.01796 995.47953,156.20358 L 994.58113,156.8631 1005.342,150.67905 V 150.67305 C 1007.4284,149.44783 1008.4752,146.95215 1008.4752,143.17775 1008.4752,140.57672 1007.9189,138.00189 1006.8065,135.45223 1005.8247,133.17388 1004.3762,131.01324 1002.4694,128.96871 Z" + sodipodi:nodetypes="cccccsscsccccccccccsccccccscc" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 952.5633,76.759005 V 124.16287 L 941.83161,130.32982 V 82.925957 Z" + id="path140" /> + <path + id="path141" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 968.55106,124.283 C 968.17067,124.282 967.82001,124.3631 967.4986,124.52707 L 956.76717,130.69468 963.1953,141.65634 973.92673,135.4896 C 974.76559,135.04187 975.18519,134.0805 975.18519,132.60659 975.18519,131.11099 974.75613,129.64967 973.89904,128.22279 973.06018,126.80644 971.99401,125.72466 970.69926,124.97714 969.90143,124.51651 969.18505,124.28496 968.55106,124.283 Z" /> + <path + d="M 941.83161,130.32982 933.92629,125.76569 V 89.546277 L 924.48914,87.576635 V 79.936092 L 940.98363,82.436376 941.83161,82.925957 Z" + id="path142" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#393d46;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + d="M 955.50863,133.6094 Q 955.50863,131.36601 956.76692,130.69443 958.05256,130.03863 959.96734,131.14413 961.90948,132.26542 963.16776,134.38995 964.4534,136.53027 964.4534,138.77366 964.4534,140.98454 963.19511,141.65613 961.93683,142.2952 959.96734,141.15812 958.0252,140.03683 956.76692,137.94481 955.50863,135.82028 955.50863,133.6094 Z" + id="path143" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#393d46;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + d="M 979.08782,124.00859 983.30034,126.44069 Q 986.30929,128.1779 987.75905,127.22671 989.20882,126.27552 989.20882,123.31684 989.20882,120.4557 987.75905,118.02555 986.33664,115.61119 983.82007,114.15824 981.54968,112.84744 980.01786,113.45864 978.48603,114.03732 978.48603,116.41077 L 970.58071,111.84663 Q 970.58071,108.14016 972.24931,106.17736 973.94526,104.19783 976.9542,104.27689 979.9905,104.37169 983.62859,106.47218 989.94738,110.12032 993.53075,115.79812 997.11413,121.44341 997.11413,127.75092 997.11413,131.00221 995.44554,132.76994 993.77694,134.53766 991.06889,134.43725 994.43344,137.81034 996.07468,141.61905 997.74328,145.44355 997.74328,149.34511 997.74328,155.65262 993.859,157.21405 990.00208,158.79127 983.62859,155.11154 977.66541,151.6687 973.8632,145.73451 970.08834,139.81611 970.08834,133.67116 L 977.99365,138.23529 Q 977.99365,140.90135 979.66225,143.55539 981.3582,146.22522 983.82007,147.64657 986.63753,149.27323 988.22407,148.43352 989.83796,147.57709 989.83796,144.65093 989.83796,137.5631 983.27299,133.77282 L 979.08782,131.35651 Z" + id="path144" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#393d46;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 924.48914,79.936092 935.22084,73.769144 951.71533,76.269428 940.98363,82.436376 Z" + id="path145" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 940.98363,82.436376 951.71533,76.269428 952.5633,76.759005 941.83161,82.925957 Z" + id="path146" /> + <path + id="path147" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 979.08776,128.47552 970.0882,133.67116 977.99376,138.23499 C 977.99376,138.24499 977.99465,138.25399 977.99465,138.26349 L 984.46086,134.53056 C 984.08268,134.26909 983.69151,134.01378 983.27338,133.77238 L 979.08779,131.35674 Z" /> + <path + id="path148" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 983.58235,133.95592 C 983.88648,134.14182 984.1772,134.33451 984.46084,134.53061 L 977.99462,138.26355 C 978.00062,140.03135 978.55602,141.79539 979.66246,143.55526 980.79309,145.33514 982.17912,146.69895 983.82036,147.64652 985.69867,148.73095 987.16638,148.99307 988.22407,148.43326 989.29999,147.86231 989.83824,146.60177 989.83824,144.65099 989.83824,140.0387 987.75231,136.47368 983.58235,133.95592 Z" /> + <path + id="path149" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 988.16002,118.77058 979.08776,124.00863 983.30019,126.44071 C 985.30615,127.59885 986.79278,127.86072 987.75929,127.22659 988.7258,126.59247 989.20902,125.28954 989.20902,123.3171 989.20902,121.69776 988.85663,120.18283 988.16002,118.77058 Z" /> + <path + id="path150" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 981.27057,113.27028 C 980.81838,113.24288 980.40114,113.30618 980.01818,113.45896 978.99697,113.84475 978.48624,114.82805 978.48624,116.41034 L 983.05958,113.76968 C 982.41371,113.47472 981.81579,113.3033 981.27057,113.27028 Z" /> + <path + id="path151" + style="font-weight:bold;font-size:362.698px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.336305;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 987.68572,98.110049 C 986.58114,98.081019 985.61418,98.26735 984.77502,98.654455 L 984.76372,98.650055 984.66073,98.708915 C 984.45712,98.808895 984.26143,98.921264 984.07391,99.04646 L 973.88342,104.89729 C 974.75822,104.45706 975.77895,104.24584 976.95424,104.27672 978.97844,104.33992 981.20279,105.07221 983.62817,106.47251 987.84069,108.9046 991.14154,112.01316 993.53045,115.79836 995.91937,119.56187 997.11366,123.54602 997.11366,127.75102 997.11366,129.91854 996.55822,131.59162 995.44582,132.7701 995.1223,133.11284 994.76598,133.39647 994.38385,133.63388 L 994.38473,133.63688 1002.4695,128.96919 1003.502,128.37286 1004.5346,127.77652 C 1004.8426,127.63705 1005.1346,127.4689 1005.4096,127.2702 L 1005.4666,127.2373 V 127.2243 C 1005.7146,127.03949 1005.953,126.83673 1006.1737,126.60287 1007.2861,125.42439 1007.8424,123.75218 1007.8424,121.58466 1007.8424,120.77974 1007.7844,119.98546 1007.697,119.19672 L 1007.707,119.15862 1007.69,119.13522 C 1007.313,115.82571 1006.1789,112.65548 1004.2592,109.63108 1001.8703,105.8459 998.56936,102.73732 994.35685,100.30524 991.93147,98.904947 989.70625,98.173544 987.68205,98.110313 Z" + sodipodi:nodetypes="cccccccscssccccccccssccccsc" /> + <path + sodipodi:nodetypes="cccccsccsccsccsccsccsccsccsccsccsccsccsccsccsccscccccccc" + id="path152" + d="M 982.98119,152.64946 967.76403,161.45739 861.32608,104.57727 857.63446,124.65148 865.06321,130.76747 V 114.65278 C 865.06321,112.69918 866.42388,111.9115 868.11361,112.88712 L 873.30978,115.88709 C 874.99951,116.86262 876.35976,119.22125 876.35976,121.17485 V 140.3326 L 881.75816,144.90344 V 124.29165 C 881.75816,122.33797 883.11843,121.55012 884.80814,122.52564 L 890.00429,125.5257 C 891.69405,126.50132 893.0543,128.85986 893.0543,130.81346 V 154.45875 L 898.36402,157.56871 V 132.9644 C 898.36402,131.01071 899.72427,130.2233 901.414,131.19892 L 906.61015,134.19889 C 908.2999,135.1745 909.66058,137.53278 909.66058,139.48647 V 164.18576 L 914.96988,167.29555 V 141.76837 C 914.96988,139.81477 916.33013,139.02736 918.01986,140.00289 L 923.216,143.00295 C 924.90575,143.97847 926.26643,146.33684 926.26643,148.29045 V 173.9126 L 930.78505,176.55925 V 150.50739 C 930.78505,148.55371 932.1453,147.7663 933.83503,148.74191 L 939.0312,151.74188 C 940.72093,152.71741 942.08117,155.07551 942.08117,157.0292 V 183.1755 L 947.07988,186.10393 V 159.13133 C 947.07988,157.17755 948.44056,156.39049 950.13031,157.36611 L 955.32646,160.36608 C 957.01618,161.3416 958.37644,163.69963 958.37644,165.6534 V 192.72045 L 963.05583,195.46147 V 167.96357 C 963.05583,166.00997 964.41607,165.22203 966.1058,166.19756 L 971.30239,169.19779 C 972.99212,170.17341 974.35238,172.53204 974.35238,174.48565 V 202.07852 L 979.43101,205.05312 V 176.2168 C 979.43101,174.26311 980.79127,173.4757 982.481,174.45132 L 987.67716,177.45129 C 988.51867,177.93716 989.27823,178.76601 989.82901,179.71696 L 1001.0736,173.20805 1025.636,181.89405 V 179.49293 L 1023.7191,176.16949 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path153" + d="M 861.32615,101.70371 987.44055,169.05541 V 171.9288 L 861.32615,104.57709 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path154" + d="M 1040.4137,254.84138 1035.2222,251.84403 V 260.75844 L 1040.4137,263.75579 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path155" + d="M 1085.3302,178.59755 H 1073.9496 L 1074.5302,177.32014 H 1085.6786 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + id="path156" + d="M 1102.2849,160.67859 1100.3379,161.80282 1097.161,181.7859 1079.9903,191.69937 1091.0853,187.52715 H 1091.0859 L 1098.7166,183.12143 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path157" + d="M 1102.2849,160.67859 1100.3379,161.80282 1097.161,181.7859 1036.9253,216.56281 1036.5342,219.02239 1098.7168,183.12126 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + id="path158" + d="M 1091.2059,185.29795 1036.9253,216.56281 1036.5342,219.02239 1098.3525,183.21606 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path159" + d="M 1033.7837,222.33952 1100.5928,183.76725 1108.9212,188.57536 1042.1121,227.14764 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1102.2849,160.67859 1100.3379,161.80282 1097.161,181.7859 1036.9253,216.56281 1036.5342,219.02239 1098.7168,183.12126 Z" + id="path160" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path161" + d="M 1039.8194,194.40781 1106.6286,155.83545 1107.3962,159.59078 1040.587,198.16306 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path162" + d="M 1040.2422,237.52459 V 239.66526 L 1110.8171,198.91878 V 196.77812 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path163" + d="M 1025.6361,179.49285 1092.4452,140.92048 V 143.32169 L 1025.636,181.89405 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path164" + d="M 1025.6361,179.49276 1023.7191,176.16949 1090.5283,137.59721 1092.4451,140.92066 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path165" + d="M 982.98119,152.64946 1023.719,176.16949 1090.5282,137.59712 1049.7901,114.07701 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.361384;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path166" + d="M 1023.309,170.25361 1014.5018,170.63919 1016.8863,172.02867 1023.3463,171.73742 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 863.28866,100.57061 989.40306,167.92232 987.44055,169.05541 861.32615,101.70371 Z" + id="path167" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path168" + d="M 987.44055,169.05541 989.40306,167.92232 V 170.79579 L 987.44055,171.9288 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1038.6446,255.86263 1033.4532,252.8654 V 261.77981 L 1038.6446,264.77713 Z" + id="path169" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path170" + d="M 1040.4137,254.84138 1035.2222,251.84403 1033.4532,252.8654 1038.6446,255.86263 Z" + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path171" + d="M 1108.9918,215.24766 1107.2229,216.26909 1040.4137,254.84138 1038.6447,255.86255 V 264.77705 L 1040.4137,263.75587 1107.2229,225.18341 1108.9918,224.16215 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1111.4794,216.68404 1109.7106,217.70539 1042.9014,256.27768 1041.1323,257.29894 V 266.21344 L 1042.9014,265.19218 1109.7106,226.61971 1111.4794,225.59855 Z" + id="path172" + inkscape:connector-curvature="0" /> + <rect + style="display:inline;fill:#ed658b;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect172" + width="9.6433525" + height="5.9057713" + x="1267.3273" + y="860.37103" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" /> + <rect + y="860.37103" + x="1208.6517" + height="5.9057713" + width="9.6433525" + id="rect173" + style="display:inline;fill:#ed658b;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" /> + <ellipse + cy="863.82855" + cx="1242.8112" + id="ellipse173" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" + rx="2.1288199" + ry="2.1288207" /> + <ellipse + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.387211;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse174" + cx="1233.5201" + cy="863.82855" + transform="matrix(0.86602531,-0.50000016,0,1,0,0)" + rx="2.1288199" + ry="2.1288207" /> + <g + transform="matrix(0.35200969,0,0,0.35200969,1051.8926,-343.65937)" + id="g176" + style="display:inline"> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1704.5676" + cx="133.18871" + id="ellipse175" + style="opacity:1;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path175" + d="M 114.64843,1634.0823 V 1637.571 L 111.62671,1639.3156 V 1640.9243 L 114.64843,1639.1797 V 1642.6684 L 116.04116,1641.8643 V 1638.3756 L 119.06244,1636.6313 V 1635.0226 L 116.04116,1636.7669 V 1633.2782 Z" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse176" + cx="133.18871" + cy="1704.5676" /> + </g> + <g + transform="matrix(0.35200969,0,0,0.35200969,1051.8926,-343.65937)" + id="g178" + style="display:inline"> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + style="opacity:1;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse177" + cx="26.977436" + cy="1704.5676" /> + <path + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 22.66679,1687.188 V 1690.6767 L 19.645055,1692.4213 V 1694.03 L 22.66679,1692.2854 V 1695.774 L 24.059522,1694.97 V 1691.4813 L 27.080789,1689.737 V 1688.1283 L 24.059522,1689.8726 V 1686.3839 Z" + id="path177" + inkscape:connector-curvature="0" /> + <ellipse + ry="4.6438084" + rx="4.6438069" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1704.5676" + cx="26.977436" + id="ellipse178" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + style="display:inline;fill:#393d46;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1041.1323,257.29894 V 266.21344 L 1038.6446,264.77713 V 255.86263 Z" + id="path178" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path179" + d="M 1041.1323,257.29894 1111.4794,216.68404 1108.9917,215.24775 1038.6446,255.86263 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="matrix(0.35200969,0,0,0.35200969,1049.405,-345.0957)" + id="g181" + style="display:inline"> + <rect + y="1709.6759" + x="-2.4622216" + height="16.777298" + width="27.395132" + id="rect179" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" /> + <path + style="fill:#cc2e2d;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -2.1323462,1710.907 V 1727.6844 L -7.6192306,1724.5165 V 1707.7392 Z" + id="path180" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path181" + d="M -2.1323462,1710.907 21.592532,1697.2094 16.105647,1694.0415 -7.6192306,1707.7392 Z" + style="fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + transform="matrix(0.35200969,0,0,0.35200969,1100.2195,-374.43351)" + id="g183" + style="display:inline"> + <rect + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect181" + width="27.395132" + height="16.777298" + x="-2.4622216" + y="1709.6759" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path182" + d="M -2.1323462,1710.907 V 1727.6844 L -7.6192306,1724.5165 V 1707.7392 Z" + style="fill:#cc2e2d;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -2.1323462,1710.907 21.592532,1697.2094 16.105647,1694.0415 -7.6192306,1707.7392 Z" + id="path183" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <g + transform="matrix(0.35200969,0,0,0.35200969,1049.405,-345.0957)" + id="g184" + style="display:inline"> + <ellipse + ry="6.0476193" + rx="6.0476174" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1713.1624" + cx="114.63751" + id="ellipse183" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 384.71875,6232.7676 A 16.162436,27.994167 29.999978 0 0 375.22852,6235.4492 16.162436,27.994167 29.999978 0 0 355.43359,6269.7344 16.162436,27.994167 29.999978 0 0 356.67188,6276.9355 16.162436,27.994167 29.999979 0 0 366.72852,6274.3281 16.162436,27.994167 29.999979 0 0 386.52344,6240.043 16.162436,27.994167 29.999979 0 0 385.2832,6232.8418 16.162436,27.994167 29.999978 0 0 384.71875,6232.7678 Z" + id="path184" + transform="scale(0.26458333)" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(0.35200969,0,0,0.35200969,1041.365,-340.4502)" + id="g185" + style="display:inline"> + <ellipse + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse184" + cx="114.63751" + cy="1713.1624" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + rx="6.0476174" + ry="6.0476193" /> + <path + inkscape:connector-curvature="0" + transform="scale(0.26458333)" + id="path185" + d="M 384.71875,6232.7676 A 16.162436,27.994167 29.999978 0 0 375.22852,6235.4492 16.162436,27.994167 29.999978 0 0 355.43359,6269.7344 16.162436,27.994167 29.999978 0 0 356.67188,6276.9355 16.162436,27.994167 29.999979 0 0 366.72852,6274.3281 16.162436,27.994167 29.999979 0 0 386.52344,6240.043 16.162436,27.994167 29.999979 0 0 385.2832,6232.8418 16.162436,27.994167 29.999978 0 0 384.71875,6232.7678 Z" + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <g + id="g186" + transform="matrix(0.35200969,0,0,0.35200969,1033.3124,-335.80464)" + style="display:inline"> + <ellipse + ry="6.0476193" + rx="6.0476174" + transform="matrix(0.8660253,-0.50000017,0,1,0,0)" + cy="1713.1624" + cx="114.63751" + id="ellipse185" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="opacity:1;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 384.71875,6232.7676 A 16.162436,27.994167 29.999978 0 0 375.22852,6235.4492 16.162436,27.994167 29.999978 0 0 355.43359,6269.7344 16.162436,27.994167 29.999978 0 0 356.67188,6276.9355 16.162436,27.994167 29.999979 0 0 366.72852,6274.3281 16.162436,27.994167 29.999979 0 0 386.52344,6240.043 16.162436,27.994167 29.999979 0 0 385.2832,6232.8418 16.162436,27.994167 29.999978 0 0 384.71875,6232.7678 Z" + id="path186" + transform="scale(0.26458333)" + inkscape:connector-curvature="0" /> + </g> + <path + id="path187" + d="M 1011.0069,203.97356 1009.0028,205.13079 1019.8822,211.41218 C 1020.8443,211.96767 1021.6187,211.51949 1021.6187,210.40695 V 210.10074 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path188" + d="M 1016.1821,187.09503 1011.0071,190.08309 1005.3013,202.86636 C 1005.3019,202.86693 1005.3013,202.86736 1005.3013,202.86836 L 1013.2362,205.2617 1021.6166,200.4233 V 192.24165 C 1021.6166,191.12912 1020.8418,189.78642 1019.8796,189.23091 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path189" + d="M 1011.0069,203.97356 V 190.08309 L 1006.072,187.23393 1005.301,202.86783 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cssccccsccc" + id="path190" + d="M 1005.1547,180.92559 C 1004.5723,180.91339 1004.1721,181.36937 1004.1721,182.16899 V 200.33366 C 1004.1721,201.44613 1004.9469,202.7889 1005.909,203.3444 L 1016.6636,209.55406 1018.6677,208.39683 1007.8088,202.1273 C 1006.8467,201.5718 1006.0719,200.22903 1006.0719,199.11656 V 181.25765 L 1005.909,181.16375 C 1005.6384,181.00759 1005.3825,180.93059 1005.1547,180.92559 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path191" + d="M 1026.4015,191.45691 C 1025.7623,191.44271 1025.323,191.94411 1025.323,192.82175 V 212.34934 C 1025.323,213.57039 1026.1733,215.04435 1027.2294,215.65401 L 1030.2395,217.39201 C 1031.2956,218.00175 1031.9802,217.40101 1032.1459,216.28849 L 1032.1609,216.18211 C 1032.0929,216.15141 1032.0226,216.11631 1031.951,216.07484 L 1028.9408,214.33692 C 1027.8847,213.72719 1027.0345,212.25323 1027.0345,211.03218 V 191.61757 C 1026.8091,191.51355 1026.5957,191.46123 1026.4007,191.45692 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path192" + d="M 1094.9007,223.38318 1091.64,221.50085 1094.3894,208.40334 1094.9007,208.10812 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path193" + d="M 1107.2228,216.26901 1103.7731,218.26079 1105.974,201.71503 1110.8171,198.91878 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path194" + d="M 1103.7731,218.26079 V 202.98566 L 1105.974,201.71503 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1043.8634,252.84959 1040.4137,254.84138 1040.2421,239.66526 1046.6165,235.98507 Z" + id="path195" + inkscape:connector-curvature="0" /> + <g + transform="matrix(0.35200969,0,0,0.35200969,1049.405,-345.0957)" + id="g200" + style="display:inline"> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + transform="scale(0.26458333)" + id="path196" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccc" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path197" + d="M 132.07821,1592.917 C 132.07843,1598.3939 135.9236,1600.6138 140.66683,1597.8754 142.18623,1596.9949 143.6777,1595.6652 144.98904,1594.0219 144.67406,1594.2454 144.35731,1594.4499 144.04026,1594.6342 139.29704,1597.3726 135.45187,1595.1528 135.45164,1589.6759 134.90978,1584.1673 132.07821,1588.6249 132.07821,1592.917 Z" + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path198" + transform="scale(0.26458333)" + d="M 545.77344,5960.4004 C 541.21237,5960.3524 536.16691,5961.8678 531.04883,5964.8223 513.12108,5975.1733 498.58792,6000.3457 498.58789,6021.0469 498.60259,6030.4809 501.70307,6037.7791 507.26953,6041.4824 L 507.24223,6041.5334 507.92582,6041.9182 C 508.2258,6042.0998 508.84379,6042.4318 508.84379,6042.4318 L 520.47985,6048.8984 522.10746,6043.4865 C 525.01425,6042.7753 528.02384,6041.5309 531.04887,6039.7893 548.97662,6029.4383 563.50978,6004.2659 563.50981,5983.5647 563.49681,5979.0362 562.77082,5974.9597 561.36723,5971.5334 L 563.37113,5967.8596 555.76957,5963.7522 C 554.39823,5962.679 552.87207,5961.8548 551.21293,5961.2912 L 551.20123,5961.2812 H 551.19923 C 549.51068,5960.7111 547.69313,5960.4134 545.77345,5960.3925 Z" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + ry="9.9174643" + rx="9.9174604" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="ellipse198" + cx="-165.61476" + cy="1672.5428" /> + <path + style="opacity:1;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:3.86897;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 509.62305,6027.1914 C 509.62391,6047.8914 524.15682,6056.2815 542.08398,6045.9316 547.82662,6042.6038 553.46366,6037.578 558.41992,6031.3672 557.22942,6032.2122 556.03228,6032.9849 554.83398,6033.6816 536.90682,6044.0315 522.37391,6035.6414 522.37305,6014.9414 520.32508,5994.1216 509.62305,6010.9692 509.62305,6027.1914 Z" + transform="scale(0.26458333)" + id="path199" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <ellipse + cy="1672.5428" + cx="-165.61476" + id="ellipse199" + style="opacity:1;fill:none;fill-opacity:1;stroke:#162834;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.8660253,0.50000017,0,1,0,0)" + rx="9.9174604" + ry="9.9174643" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + inkscape:connector-curvature="0" + id="path200" + d="M 146.50907,1581.9872 C 145.63261,1581.9772 144.66307,1582.2701 143.67957,1582.8395 140.23454,1584.8346 137.44183,1589.6865 137.44182,1593.6765 137.44482,1595.4949 138.04044,1596.9016 139.1101,1597.6154 L 139.1051,1597.6254 139.23645,1597.6994 C 139.29405,1597.7344 139.41285,1597.7984 139.41285,1597.7984 L 141.64886,1599.0448 141.96162,1598.0017 C 142.52019,1597.8646 143.09852,1597.6247 143.67982,1597.2891 147.12484,1595.2939 149.91755,1590.4421 149.91756,1586.452 149.91556,1585.5792 149.77555,1584.7935 149.50584,1584.1331 L 149.89091,1583.425 148.43018,1582.6333 C 148.16666,1582.4264 147.8734,1582.2676 147.55457,1582.1589 H 147.55257 147.55219 C 147.22772,1582.049 146.87845,1581.9916 146.50956,1581.9876 Z" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.02367;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <ellipse + cy="1675.6819" + cx="-168.4836" + id="ellipse200" + style="opacity:1;fill:#f93e3c;fill-opacity:1;stroke:#162834;stroke-width:1.10042;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86536757,0.50113767,0,1,0,0)" + rx="7.2083259" + ry="7.2247276" /> + </g> + <path + inkscape:connector-curvature="0" + id="path201" + d="M 991.44704,216.62633 C 990.62964,216.14618 989.97157,216.53143 989.97157,217.49028 V 219.0331 L 992.92249,220.7665 V 219.22366 C 992.92249,218.26488 992.26444,217.10647 991.44704,216.62633 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path202" + d="M 991.44695,216.62625 C 990.62955,216.14611 989.97148,216.53155 989.97148,217.4903 V 218.07655 C 989.97148,217.11777 990.62955,216.73233 991.44695,217.21249 992.26436,217.69263 992.92244,218.85119 992.92244,219.80994 V 219.22372 C 992.92244,218.26494 992.26436,217.10641 991.44695,216.62625 Z" + style="display:inline;fill:#162834;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <ellipse + ry="0.77717239" + rx="0.76721501" + transform="matrix(0.86224624,0.5064893,0,1,0,0)" + cy="-364.11966" + cx="1149.842" + id="ellipse202" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.360695;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 991.44704,216.62633 C 990.62964,216.14618 989.97157,216.53143 989.97157,217.49028 V 219.0331 L 992.92249,220.7665 V 219.22366 C 992.92249,218.26488 992.26444,217.10647 991.44704,216.62633 Z" + id="path203" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path204" + d="M 1014.2624,226.14051 V 231.04431 C 1018.6737,233.92673 1022.746,238.57798 1025.6949,243.94835 L 1027.3287,244.89737 V 233.73054 Z" + style="display:inline;fill:#619c8a;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path205" + d="M 1032.3778,214.73501 1031.0047,215.52796 1032.1601,216.19524 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + id="path206" + d="M 1037.7048,211.65986 1036.9255,216.5627 1097.1611,181.78611 1093.3043,179.55927 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path207" + d="M 1039.7185,197.85319 1037.6774,199.03167 1038.0082,196.87836 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + id="path208" + d="M 863.28853,100.57064 861.32614,101.70381 967.16549,158.2278 969.12835,157.09464 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path209" + d="M 863.28866,100.57061 989.40306,167.92232 987.44055,169.05541 861.32615,101.70371 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path210" + d="M 1026.4013,191.45704 C 1025.7621,191.44314 1025.323,191.94389 1025.323,192.82155 V 204.0906 L 1027.0355,203.10168 V 191.61761 C 1026.8101,191.51362 1026.5962,191.46133 1026.4013,191.45704 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1026.4015,191.45691 C 1025.7623,191.44271 1025.323,191.94411 1025.323,192.82175 V 212.34934 C 1025.323,213.57039 1026.1733,215.04435 1027.2294,215.65401 L 1030.2395,217.39201 C 1031.2956,218.00175 1031.9802,217.40101 1032.1459,216.28849 L 1032.1609,216.18211 C 1032.0929,216.15141 1032.0226,216.11631 1031.951,216.07484 L 1028.9408,214.33692 C 1027.8847,213.72719 1027.0345,212.25323 1027.0345,211.03218 V 191.61757 C 1026.8091,191.51355 1026.5957,191.46123 1026.4007,191.45692 Z" + id="path211" /> + <path + inkscape:connector-curvature="0" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.36034;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1005.1547,180.92564 C 1004.5723,180.91344 1004.172,181.36955 1004.172,182.16916 V 200.33375 C 1004.172,201.44622 1004.9467,202.78912 1005.9089,203.3446 L 1019.882,211.41217 C 1020.8442,211.96766 1021.6188,211.51935 1021.6188,210.4068 V 210.1007 L 1007.8089,202.12732 C 1006.8467,201.57184 1006.072,200.22894 1006.072,199.11647 V 181.2578 L 1005.9089,181.1635 C 1005.6383,181.00734 1005.3826,180.93061 1005.1547,180.92561 Z" + id="path212" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path213" + d="M 1029.6195,122.84921 1031.582,121.71612 V 124.58959 L 1029.6195,125.7226 Z" + style="display:inline;fill:#cefffb;fill-opacity:1;stroke:#162834;stroke-width:0.360458;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path214" + d="M 1035.5133,129.12541 H 1031.7636 L 1027.9044,126.9067 1029.7792,125.82425 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="matrix(0.87782576,0,0,0.87782576,1382.6475,-777.32309)" + id="g217" + style="display:inline"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path215" + d="M -395.44777,1029.3331 -393.21213,1028.0423 V 1031.3157 L -395.44777,1032.6064 Z" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.410626;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -395.44775,1032.6064 -402.16182,1028.73 -402.16179,1025.4567 -395.44777,1029.3331 Z" + id="path216" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path217" + d="M -393.21213,1028.0423 -399.92615,1024.1659 -402.16179,1025.4567 -395.44777,1029.3331 Z" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1021.4188,137.26785 H 1017.6692 L 1013.8099,135.04915 1015.6847,133.9667 Z" + id="path218" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <g + transform="matrix(0.87782576,0,0,0.87782576,1368.5302,-769.21192)" + id="g221" + style="display:inline"> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.410626;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -395.44777,1029.3331 -393.21213,1028.0423 V 1031.3157 L -395.44777,1032.6064 Z" + id="path219" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path220" + d="M -395.44775,1032.6064 -402.16182,1028.73 -402.16179,1025.4567 -395.44777,1029.3331 Z" + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -393.21213,1028.0423 -399.92615,1024.1659 -402.16179,1025.4567 -395.44777,1029.3331 Z" + id="path221" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + </g> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path222" + d="M 1007.0174,145.5813 H 1003.2678 L 999.40851,143.36259 1001.2834,142.28014 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="g225" + transform="matrix(0.87782576,0,0,0.87782576,1354.3406,-760.89759)" + style="display:inline"> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path223" + d="M -395.44777,1029.3331 -393.21213,1028.0423 V 1031.3157 L -395.44777,1032.6064 Z" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.410626;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -395.44775,1032.6064 -402.16182,1028.73 -402.16179,1025.4567 -395.44777,1029.3331 Z" + id="path224" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="path225" + d="M -393.21213,1028.0423 -399.92615,1024.1659 -402.16179,1025.4567 -395.44777,1029.3331 Z" + style="fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.411;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + inkscape:connector-curvature="0" + id="path226" + d="M 1023.9545,169.86314 A 1.976077,1.1442208 0 0 0 1022.5286,170.19787 1.976077,1.1442208 0 0 0 1022.2805,170.37555 H 1021.9499 V 170.99047 171.02487 171.02487 A 1.976077,1.1442208 0 0 0 1022.5267,171.81659 1.976077,1.1442208 0 0 0 1025.3212,171.81659 1.976077,1.1442208 0 0 0 1025.8996,171.02487 V 170.37674 H 1025.5717 A 1.976077,1.1442208 0 0 0 1025.3212,170.19905 1.976077,1.1442208 0 0 0 1023.9525,169.86433 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <circle + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.359746;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="circle226" + cx="761.58154" + cy="-421.28323" + r="1.5789555" + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1022.15,170.19355 1023.4945,170.071 1024.3142,170.82782 1022.6832,171.29216 1022.0404,170.69155 Z" + id="path227" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <circle + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" + r="1.5789555" + cy="-421.28323" + cx="761.58154" + id="circle227" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.359746;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path228" + d="M 1023.1846,152.35519 V 170.32378 A 0.74313185,0.3733066 0 0 0 1023.1846,170.36368 V 170.37168 H 1023.1851 A 0.74313185,0.3733066 0 0 0 1023.4004,170.6086 0.74313185,0.3733066 0 0 0 1024.4511,170.6086 0.74313185,0.3733066 0 0 0 1024.666,170.37168 V 170.37168 170.36468 A 0.74313185,0.3733066 0 0 0 1024.666,170.32008 V 152.38354 Z" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1023.1841,152.35519 V 170.32378 A 0.41503222,0.3733066 0 0 0 1023.1841,170.36368 V 170.37168 H 1023.1844 A 0.41503222,0.3733066 0 0 0 1023.3046,170.6086 0.41503222,0.3733066 0 0 0 1023.8914,170.6086 0.41503222,0.3733066 0 0 0 1024.0113,170.37168 H 1024.0118 V 170.36468 A 0.41503222,0.3733066 0 0 0 1024.0118,170.32008 V 152.38354 Z" + id="path229" + inkscape:connector-curvature="0" /> + <path + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1023.1846,152.35519 V 170.32378 A 0.74313185,0.3733066 0 0 0 1023.1846,170.36368 V 170.37168 H 1023.1851 A 0.74313185,0.3733066 0 0 0 1023.4004,170.6086 0.74313185,0.3733066 0 0 0 1024.4511,170.6086 0.74313185,0.3733066 0 0 0 1024.666,170.37168 V 170.37168 170.36468 A 0.74313185,0.3733066 0 0 0 1024.666,170.32008 V 152.38354 Z" + id="path230" + inkscape:connector-curvature="0" /> + <circle + transform="matrix(0.89093626,0.45412837,-0.89093626,0.45412837,0,0)" + r="0.54311258" + cy="-407.00223" + cx="742.26721" + id="circle230" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.372332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path231" + d="M 1082.8424,136.78246 1064.891,137.56853 A 0.74313185,0.3733066 87.492665 0 0 1064.851,137.57053 L 1064.841,137.57084 V 137.57135 A 0.74313185,0.3733066 87.492665 0 0 1064.6137,137.79679 0.74313185,0.3733066 87.492665 0 0 1064.6597,138.84654 0.74313185,0.3733066 87.492665 0 0 1064.9058,139.05077 V 139.05177 L 1064.9158,139.05144 A 0.74313185,0.3733066 87.492665 0 0 1064.9608,139.04944 L 1082.8802,138.26651 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1083.4877,136.55603 A 1.976077,1.1442208 0 0 0 1082.0618,136.89075 1.976077,1.1442208 0 0 0 1081.8137,137.06844 H 1081.483 V 137.68336 137.71776 137.71776 A 1.976077,1.1442208 0 0 0 1082.0599,138.50948 1.976077,1.1442208 0 0 0 1084.8544,138.50948 1.976077,1.1442208 0 0 0 1085.4328,137.71776 V 137.06963 H 1085.1054 A 1.976077,1.1442208 0 0 0 1084.8548,136.89194 1.976077,1.1442208 0 0 0 1083.4862,136.55721 Z" + id="path232" + inkscape:connector-curvature="0" /> + <circle + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" + r="1.5789555" + cy="-488.93219" + cx="762.70679" + id="circle232" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.359746;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path233" + d="M 1081.7082,136.83767 1083.0933,136.75567 1083.9129,137.51248 1082.2819,137.97683 1081.6392,137.37622 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <circle + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.359746;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="circle233" + cx="762.70679" + cy="-488.93219" + r="1.5789555" + transform="matrix(0.86563217,0.50068049,-0.86563217,0.50068049,0,0)" /> + <path + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1082.7178,119.04808 V 137.01666 A 0.74313185,0.3733066 0 0 0 1082.7178,137.05656 V 137.06456 H 1082.7183 A 0.74313185,0.3733066 0 0 0 1082.9336,137.30148 0.74313185,0.3733066 0 0 0 1083.9843,137.30148 0.74313185,0.3733066 0 0 0 1084.1992,137.06456 V 137.06456 137.05756 A 0.74313185,0.3733066 0 0 0 1084.1992,137.01296 V 119.07643 Z" + id="path234" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path235" + d="M 1082.7173,119.04808 V 137.01666 A 0.41503222,0.3733066 0 0 0 1082.7173,137.05656 V 137.06456 H 1082.7176 A 0.41503222,0.3733066 0 0 0 1082.8378,137.30148 0.41503222,0.3733066 0 0 0 1083.4246,137.30148 0.41503222,0.3733066 0 0 0 1083.5445,137.06456 H 1083.545 V 137.05756 A 0.41503222,0.3733066 0 0 0 1083.545,137.01296 V 119.07643 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path236" + d="M 1082.7178,119.04808 V 137.01666 A 0.74313185,0.3733066 0 0 0 1082.7178,137.05656 V 137.06456 H 1082.7183 A 0.74313185,0.3733066 0 0 0 1082.9336,137.30148 0.74313185,0.3733066 0 0 0 1083.9843,137.30148 0.74313185,0.3733066 0 0 0 1084.1992,137.06456 V 137.06456 137.05756 A 0.74313185,0.3733066 0 0 0 1084.1992,137.01296 V 119.07643 Z" + style="display:inline;fill:none;fill-opacity:1;stroke:#162834;stroke-width:0.334932;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <circle + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:#162834;stroke-width:0.372332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="circle236" + cx="739.00623" + cy="-477.08417" + r="0.54311258" + transform="matrix(0.89093626,0.45412837,-0.89093626,0.45412837,0,0)" /> + <path + style="display:inline;fill:#9d968e;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1012.7372,227.02109 V 231.92489 C 1017.1485,234.80731 1021.2208,239.45858 1024.1697,244.82892 L 1025.8035,245.77795 V 234.61112 Z" + id="path237" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path238" + d="M 1025.8035,245.77795 1027.3287,244.89737 V 233.73054 L 1025.8035,234.61112 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1012.7372,227.02109 1014.2624,226.14051 1027.3287,233.73054 1025.8035,234.61112 Z" + id="path239" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path240" + d="M 1094.5406,223.38237 1091.6416,221.70721 1089.8275,222.75509 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:none;stroke-width:0.232258px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path241" + d="M 1006.072,183.93782 1008.393,182.59784 1006.072,181.25785 Z" + style="display:inline;fill:#c0b2a5;fill-opacity:1;stroke:#162834;stroke-width:0.35991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g247" + transform="translate(439.73068,-1.0194354)"> + <path + id="path242" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g245" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path243" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path244" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path245" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <g + aria-label="A" + transform="matrix(-0.93060465,0.53728509,0.93060465,0.53728509,0,0)" + id="g246" + style="font-size:27.1725px;display:inline;fill:#393d46;stroke-width:20.2722;stroke-linecap:round;stroke-linejoin:round"> + <path + d="M -504.96973,779.72791 -507.30657,773.72278 H -514.99639 L -517.30605,779.72791 H -519.77875 L -512.19762,760.24522 H -509.99665 L -502.44269,779.72791 Z M -510.21403,765.67972 Q -510.29553,765.46234 -510.48575,764.89172 -510.67596,764.3211 -510.86617,763.7233 -511.0292,763.09833 -511.13789,762.77226 -511.3281,763.61461 -511.57265,764.42979 -511.8172,765.21779 -511.98024,765.67972 L -514.18121,771.54898 H -508.04023 Z" + style="-inkscape-font-specification:sans-serif" + id="path246" /> + </g> + </g> + <g + id="g251" + transform="translate(-0.21972784,-0.93770723)"> + <path + id="path247" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1125.491,114.79323 1113.395,121.77723 1141.0509,137.45748 1148.5828,137.27411 1121.0282,121.41327 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g250" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,628.61706,-152.20289)"> + <path + id="path248" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path249" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path250" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + sodipodi:type="star" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.365874" + id="path251" + inkscape:flatsided="false" + sodipodi:sides="5" + sodipodi:cx="160.2216" + sodipodi:cy="25.069553" + sodipodi:r1="19.20122" + sodipodi:r2="9.6006098" + sodipodi:arg1="1.5707963" + sodipodi:arg2="2.1991149" + inkscape:rounded="0" + inkscape:randomized="0" + d="M 160.2216,44.270773 154.57851,32.83661 141.96016,31.003057 151.09088,22.102801 148.93541,9.5354407 160.2216,15.468944 171.5078,9.5354401 169.35233,22.102802 178.48305,31.003056 165.8647,32.83661 Z" + inkscape:transform-center-y="-0.57706645" + transform="matrix(0.59336436,-0.34257927,-0.59336436,-0.34257927,1068.6884,177.71405)" /> + </g> + <g + id="g254" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,496.3357,-228.57558)"> + <path + id="path252" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path253" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path254" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="g259" + transform="translate(571.81864,-26.101494)"> + <path + id="path255" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1081.4198,89.317081 1069.3238,96.301081 1096.9797,111.98133 1104.5115,111.79796 1076.957,95.937121 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g258" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,584.46179,-177.69595)"> + <path + id="path256" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path257" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path258" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + style="color:#000000;display:inline;fill:#393d46;fill-opacity:1;fill-rule:evenodd;stroke-width:1.14333;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1112.0352,82.073781 C 1105.2629,80.084704 1096.5851,81.54203 1093.1151,85.527448 1089.9765,89.132327 1092.3167,93.742539 1098.6962,95.567485 1104.4115,97.202409 1111.7035,95.957431 1114.5544,92.575828 1117.0788,89.581371 1115.1052,85.770601 1109.7691,84.304445 1105.1114,83.024648 1099.2005,84.058913 1096.9744,86.839997 1095.0663,89.223732 1096.6775,92.238453 1100.9784,93.341055 1104.5779,94.26387 1109.1153,93.437605 1110.7039,91.249778 1111.991,89.477201 1110.7349,87.249066 1107.4489,86.522419 1104.9078,85.96052 1101.7117,86.589229 1100.8014,88.204898 1100.4737,88.786491 1100.5422,89.41205 1100.9712,89.961721 1101.4001,90.511403 1102.2635,90.996873 1103.4362,91.145044 1104.1932,91.240684 1104.9535,91.174474 1105.6409,90.949941 1106.3282,90.725468 1106.9578,90.24312 1106.9151,89.673715 1106.8821,89.234049 1106.6077,89.04337 1106.1353,88.818113 1105.8991,88.705476 1105.5488,88.578347 1105.0308,88.594285 1104.5128,88.610185 1104.0193,88.834881 1103.8063,89.047845 A 1.1466641,0.66202713 0 0 0 1104.1691,89.82829 C 1104.0781,89.83439 1103.9811,89.85882 1103.9263,89.85191 1103.509,89.79921 1103.245,89.654521 1103.0602,89.417779 1102.8756,89.181043 1102.8428,88.863011 1102.9832,88.614547 1103.4456,87.79392 1105.2216,87.447439 1106.6303,87.758934 1108.6086,88.196389 1109.405,89.614299 1108.5892,90.737914 1107.5315,92.194646 1104.3893,92.767306 1101.9095,92.131551 1098.8474,91.346538 1097.665,89.133656 1099.0567,87.394902 1100.7194,85.317806 1105.2414,84.527107 1108.7838,85.500409 1112.915,86.635532 1114.4745,89.645224 1112.4923,91.99641 1110.2224,94.688893 1104.317,95.698086 1099.7151,94.381632 1094.5202,92.895563 1092.586,89.085462 1095.1654,86.122904 1098.0435,82.817228 1105.3354,81.591236 1110.9957,83.253715 A 1.1466641,0.66202713 0 0 0 1112.5376,82.964863 1.1466641,0.66202713 0 0 0 1112.0359,82.07378 Z" + id="path259" /> + </g> + <g + id="g264" + transform="translate(351.9554,-0.92586975)"> + <path + id="path260" + style="fill:#aeaaa3;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1037.3127,63.883432 1025.2167,70.867432 1052.8725,86.547682 1060.4044,86.364312 1032.8499,70.503471 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g263" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,540.4387,-203.11269)"> + <path + id="path261" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path262" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path263" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path264" + style="color:#000000;display:inline;fill:#393d46;stroke-width:1.07457;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1070.0966,57.351845 A 1.2250855,0.55302384 20.446701 0 0 1069.214,57.038777 L 1064.895,56.370767 1057.8525,55.281017 A 0.48342044,1.4014741 83.467841 0 0 1055.9061,55.582154 L 1050.0281,58.976309 1050.0277,58.976055 1047.5887,60.384191 A 0.70924761,0.9552394 53.596003 0 0 1047.0667,61.508209 L 1048.2242,64.002041 1048.2247,64.001782 1050.1113,68.067253 V 68.067766 A 1.2250855,0.55302362 20.446717 0 0 1051.5361,68.890409 L 1059.5663,70.132495 1062.898,70.647917 A 0.48342044,1.4014741 83.467836 0 0 1064.8444,70.346785 L 1068.0068,68.52098 1073.1618,65.544736 A 0.70924761,0.9552394 53.596003 0 0 1073.6838,64.421219 0.70924761,0.9552394 53.596003 0 0 1073.6834,64.420977 L 1073.683,64.420718 1070.6388,57.861421 A 1.2250855,0.55302384 20.446701 0 0 1070.0966,57.351845 Z M 1068.6924,58.162548 1071.4357,64.073379 1061.1979,62.48954 1058.4546,56.578715 Z M 1056.5082,56.879842 1059.2514,62.790679 1051.7569,67.117671 1049.0136,61.206834 Z M 1070.9142,65.197149 1063.4214,69.523133 1053.1835,67.939289 1060.6763,63.61331 Z" /> + </g> + <circle + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.536791" + id="circle264" + cx="624.65979" + cy="-549.17584" + r="9.7096739" + transform="matrix(0.8660253,0.50000017,-0.8660253,0.50000017,0,0)" /> + <g + id="g271" + transform="matrix(2.1770078,0,0,2.1770078,800.12196,-1.2340232)" + style="display:inline"> + <path + id="path265" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.412846,0 66.375277,6.378422 78.955387,13.648779 91.534981,6.378422 80.497929,0 Z" /> + <path + id="path266" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.247998,0 66.333936,6.3065918 A 0.0830083,0.0830083 0 0 0 66.333936,6.4512858 L 78.914046,13.72061 A 0.0830083,0.0830083 0 0 0 78.996216,13.72061 L 91.576326,6.4512858 A 0.0830083,0.0830083 0 0 0 91.576326,6.3065918 L 80.66226,0 H 80.333598 L 91.3691,6.3789388 78.954871,13.552661 66.541158,6.3789388 77.576143,0 Z" /> + <g + id="g268"> + <path + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.375395,6.3784537 78.955264,13.648536 V 16.867219 L 66.375395,9.5971364 Z" + id="path267" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.333984,6.3066406 A 0.0830093,0.0830093 0 0 0 66.292964,6.3789066 V 9.5976567 A 0.0830093,0.0830093 0 0 0 66.333984,9.6699227 L 78.914062,16.939454 A 0.0830093,0.0830093 0 0 0 79.039062,16.867184 V 13.648435 A 0.0830093,0.0830093 0 0 0 78.996092,13.576165 L 66.416016,6.3066406 A 0.0830093,0.0830093 0 0 0 66.333986,6.3066406 Z M 66.458984,6.5234375 78.873047,13.697266 V 16.724609 L 66.458984,9.5488281 Z" + id="path268" /> + </g> + <g + id="g270"> + <path + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.542269,6.3784529 78.9624,13.648536 V 16.867218 L 91.542269,9.5971356 Z" + id="path269" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.5,6.3066406 78.919922,13.576172 A 0.0830083,0.0830083 0 0 0 78.878902,13.648442 V 16.867191 A 0.0830083,0.0830083 0 0 0 79.003902,16.939461 L 91.583984,9.6699219 A 0.0830083,0.0830083 0 0 0 91.625,9.5976563 V 6.3789062 A 0.0830083,0.0830083 0 0 0 91.5,6.3066406 Z M 91.45898,6.5234375 V 9.5488281 L 79.044922,16.722656 V 13.697266 Z" + id="path270" /> + </g> + </g> + <g + id="g272" + transform="matrix(1.6090126,0.9289643,-1.6090126,0.9289643,792.05734,-108.72376)" + style="display:inline;fill:#393d46;fill-opacity:1;stroke-width:1.17174"> + <path + id="path271" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.19451;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 125.16225,4.4356472 C 124.89974,4.173147 124.47744,4.1731317 124.21495,4.4356424 L 123.50546,5.1451377 125.17637,6.8160619 125.88588,6.1065668 C 126.14837,5.8440588 126.14839,5.4217786 125.88586,5.1592691 Z M 122.74381,5.9067728 117.90697,10.743619 C 117.78668,10.863892 117.72163,11.018155 117.71157,11.174874 117.71134,11.178474 117.71077,11.181974 117.71059,11.185544 L 117.49814,12.823818 119.14712,12.610382 C 119.30375,12.600242 119.45769,12.534692 119.5779,12.414491 L 124.41474,7.5776448 Z" /> + <rect + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.194509;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + id="rect271" + width="0.90115213" + height="8.5846138" + x="12.823818" + y="-126.08275" + transform="rotate(90)" /> + </g> + <path + id="path272" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1125.2395,13.005084 1113.1435,19.989077 1140.7994,35.669346 1148.3313,35.486042 1120.7767,19.625212 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g279" + transform="matrix(2.1770078,0,0,2.1770078,976.42948,-1.2340232)" + style="display:inline"> + <path + id="path273" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.412846,0 66.375277,6.378422 78.955387,13.648779 91.534981,6.378422 80.497929,0 Z" /> + <path + id="path274" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.247998,0 66.333936,6.3065918 A 0.0830083,0.0830083 0 0 0 66.333936,6.4512858 L 78.914046,13.72061 A 0.0830083,0.0830083 0 0 0 78.996216,13.72061 L 91.576326,6.4512858 A 0.0830083,0.0830083 0 0 0 91.576326,6.3065918 L 80.66226,0 H 80.333598 L 91.3691,6.3789388 78.954871,13.552661 66.541158,6.3789388 77.576143,0 Z" /> + <g + id="g276"> + <path + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.375395,6.3784537 78.955264,13.648536 V 16.867219 L 66.375395,9.5971364 Z" + id="path275" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.333984,6.3066406 A 0.0830093,0.0830093 0 0 0 66.292964,6.3789066 V 9.5976567 A 0.0830093,0.0830093 0 0 0 66.333984,9.6699227 L 78.914062,16.939454 A 0.0830093,0.0830093 0 0 0 79.039062,16.867184 V 13.648435 A 0.0830093,0.0830093 0 0 0 78.996092,13.576165 L 66.416016,6.3066406 A 0.0830093,0.0830093 0 0 0 66.333986,6.3066406 Z M 66.458984,6.5234375 78.873047,13.697266 V 16.724609 L 66.458984,9.5488281 Z" + id="path276" /> + </g> + <g + id="g278"> + <path + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.542269,6.3784529 78.9624,13.648536 V 16.867218 L 91.542269,9.5971356 Z" + id="path277" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.5,6.3066406 78.919922,13.576172 A 0.0830083,0.0830083 0 0 0 78.878902,13.648442 V 16.867191 A 0.0830083,0.0830083 0 0 0 79.003902,16.939461 L 91.583984,9.6699219 A 0.0830083,0.0830083 0 0 0 91.625,9.5976563 V 6.3789062 A 0.0830083,0.0830083 0 0 0 91.5,6.3066406 Z M 91.45898,6.5234375 V 9.5488281 L 79.044922,16.722656 V 13.697266 Z" + id="path278" /> + </g> + </g> + <g + id="g286"> + <path + id="path279" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1075.1389,-1.2340232 1096.6534,10.964352 1104.1853,10.780976 1083.3131,-1.2340232 Z" /> + <g + id="g285" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path280" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path281" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path282" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path283" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path284" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path285" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + </g> + <g + id="g291" + transform="matrix(2.1770078,0,0,2.1770078,624.64001,-1.2340232)" + style="display:inline"> + <path + id="path286" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path287" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path288" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path289" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path290" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path291" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + <path + id="path292" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.7731,38.326642 1157.6771,45.310635 1185.333,60.990903 1192.8648,60.807597 1165.3103,44.946769 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g295" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.81506,-228.6863)"> + <path + id="path293" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path294" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path295" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path296" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1192.6812,27.047492 1175.4494,36.996383 1192.6812,46.945274 1209.913,36.996383 Z" /> + <path + id="path297" + style="display:inline;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.988364;stroke-linecap:round;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" + d="M 1181.4593,34.711977 1177.3901,36.995726 1181.4593,39.278351 1184.1998,37.73935 H 1185.2123 1186.2203 1199.1488 1200.1545 1201.1681 L 1203.912,39.278351 1207.9767,36.995726 1203.912,34.711977 1201.1681,36.252101 V 36.250901 H 1200.1601 1199.1499 1186.2192 1185.2067 1184.1998 Z" /> + <path + id="path298" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1055.1873,332.35816 1043.0913,339.34216 1070.7472,355.02242 1078.279,354.83912 1050.7245,338.97829 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g302" + transform="matrix(2.1770078,0,0,2.1770078,686.01547,89.125615)" + style="display:inline"> + <g + id="g301" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(1.3379224,0,0,1.339215,-58.698092,-10.923431)"> + <path + id="path299" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path300" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path301" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path302" + style="fill:#393d46;fill-opacity:1;stroke-width:0.15448;stroke-linecap:round;stroke-linejoin:round" + d="M 178.15156,113.32062 C 179.6369,114.17818 182.08848,114.15315 183.62728,113.26472 185.16609,112.37629 185.20943,110.96087 183.72408,110.10331 182.23873,109.24575 176.17272,108.96083 176.17272,108.96083 176.17272,108.96083 176.66621,112.46304 178.15156,113.32061 Z" + sodipodi:nodetypes="ssscs" /> + </g> + <path + id="path303" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1098.8562,306.97713 1086.7602,313.96112 1114.4161,329.64139 1121.9479,329.45808 1094.3934,313.59725 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g307" + transform="matrix(2.1770078,0,0,2.1770078,773.97272,38.340133)" + style="display:inline"> + <g + id="g306" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(1.3379224,0,0,1.339215,-78.888748,0.76269957)"> + <path + id="path304" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path305" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path306" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path307" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.154481;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 165.73445,122.58447 C 165.73444,122.36044 165.42233,122.18023 165.03431,122.18024 H 163.98554 L 163.98553,123.60626 H 165.03431 C 165.42233,123.60626 165.73445,123.42607 165.73444,123.20203 Z M 162.85969,122.18024 H 155.70993 C 155.53213,122.18023 155.37004,122.21834 155.24678,122.28088 155.24378,122.28188 155.24078,122.28388 155.23778,122.28488 L 153.86992,122.8933 155.24642,123.50587 C 155.36968,123.56837 155.5319,123.6061 155.70959,123.6061 H 162.85935 Z" /> + </g> + <path + id="path308" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 861.33951,13.005085 849.24351,19.989077 876.8994,35.669346 884.43125,35.486042 856.87671,19.625212 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g315" + transform="matrix(2.1770078,0,0,2.1770078,712.52949,-1.2340232)" + style="display:inline"> + <path + id="path309" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.412846,0 66.375277,6.378422 78.955387,13.648779 91.534981,6.378422 80.497929,0 Z" /> + <path + id="path310" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 77.247998,0 66.333936,6.3065918 A 0.0830083,0.0830083 0 0 0 66.333936,6.4512858 L 78.914046,13.72061 A 0.0830083,0.0830083 0 0 0 78.996216,13.72061 L 91.576326,6.4512858 A 0.0830083,0.0830083 0 0 0 91.576326,6.3065918 L 80.66226,0 H 80.333598 L 91.3691,6.3789388 78.954871,13.552661 66.541158,6.3789388 77.576143,0 Z" /> + <g + id="g312"> + <path + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.375395,6.3784537 78.955264,13.648536 V 16.867219 L 66.375395,9.5971364 Z" + id="path311" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 66.333984,6.3066406 A 0.0830093,0.0830093 0 0 0 66.292964,6.3789066 V 9.5976567 A 0.0830093,0.0830093 0 0 0 66.333984,9.6699227 L 78.914062,16.939454 A 0.0830093,0.0830093 0 0 0 79.039062,16.867184 V 13.648435 A 0.0830093,0.0830093 0 0 0 78.996092,13.576165 L 66.416016,6.3066406 A 0.0830093,0.0830093 0 0 0 66.333986,6.3066406 Z M 66.458984,6.5234375 78.873047,13.697266 V 16.724609 L 66.458984,9.5488281 Z" + id="path312" /> + </g> + <g + id="g314"> + <path + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.542269,6.3784529 78.9624,13.648536 V 16.867218 L 91.542269,9.5971356 Z" + id="path313" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 91.5,6.3066406 78.919922,13.576172 A 0.0830083,0.0830083 0 0 0 78.878902,13.648442 V 16.867191 A 0.0830083,0.0830083 0 0 0 79.003902,16.939461 L 91.583984,9.6699219 A 0.0830083,0.0830083 0 0 0 91.625,9.5976563 V 6.3789062 A 0.0830083,0.0830083 0 0 0 91.5,6.3066406 Z M 91.45898,6.5234375 V 9.5488281 L 79.044922,16.722656 V 13.697266 Z" + id="path314" /> + </g> + </g> + <g + id="g316" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path315" + style="color:#000000;fill:#ffeedc;stroke-width:0.554001;-inkscape-stroke:none" + d="M 37.117631,2.8871623 36.190556,3.4220133 37.117631,3.9573812 38.045223,3.4220133 Z M 42.921928,4.5743978 41.994853,5.1087321 42.921928,5.6446167 43.849003,5.1087321 Z M 34.195846,6.2373454 33.26877,6.7721965 34.195846,7.3075643 35.122921,6.7721965 Z M 40.000142,7.9245809 39.073067,8.459432 40.000142,8.9953166 40.927734,8.459432 Z" /> + <path + id="path316" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:3.0541;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 37.117631,2.5905396 37.053551,2.6272296 35.676891,3.4220131 37.11763,4.2540037 34.195845,5.9407225 34.131245,5.9774125 32.754585,6.7721961 34.195841,7.6041866 35.636579,6.7727128 38.558882,8.4599483 38.559398,8.4594316 40.000137,9.2914221 41.441393,8.4594316 40.000137,7.6284745 39.944847,7.6594805 42.921926,5.9407224 44.363182,5.1087318 42.921926,4.2777748 42.857846,4.3139478 41.481186,5.1087313 38.558884,3.4220125 Z M 37.117631,2.8871623 38.045223,3.4220133 37.117631,3.9573812 36.190556,3.4220133 Z M 42.921928,4.5743978 43.849003,5.1087321 42.921928,5.6446167 41.994853,5.1087321 Z M 34.195846,6.2373454 35.122921,6.7721965 34.195846,7.3075643 33.26877,6.7721965 Z M 40.000142,7.9245809 40.927734,8.459432 40.000142,8.9953166 39.073067,8.459432 Z" /> + </g> + <path + id="path317" + style="display:inline;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:1.12236;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" + d="M 1146.3373,4.948851 1156.6329,10.893055 1157.2988,14.249753 1157.8229,16.888419 1152.2873,13.692405 C 1151.9821,13.516215 1151.4911,13.515856 1151.1859,13.692045 1150.8807,13.868234 1150.8807,14.152103 1151.1859,14.328293 L 1156.7209,17.523947 1152.1512,17.221673 1146.3373,16.83726 1136.0416,10.893056 Z" /> + <g + id="g323" + transform="translate(571.91923,-127.43815)"> + <path + id="path318" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1125.354,317.66016 1113.258,324.64415 1140.9138,340.32442 1148.4457,340.14111 1120.8912,324.28029 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g322" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <g + id="g321" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(1.3379224,0,0,1.339215,-78.98167,23.831445)"> + <path + id="path319" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path320" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path321" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path322" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.515556;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" + d="M 160.51898,142.89954 157.18109,144.8267 154.62152,146.30453 157.89047,148.27108 160.51898,146.75386 162.40383,146.87822 163.88531,146.97632 162.0909,145.94016 C 161.992,145.88306 161.992,145.79119 162.0909,145.7341 162.1898,145.677 162.34903,145.677 162.44796,145.7341 L 164.24236,146.77025 164.07241,145.915 163.85686,144.82668 Z" /> + </g> + </g> + <g + id="g325" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,320.54532,-228.8511)"> + <path + id="path323" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path324" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path325" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="g329" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path326" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.321057 V 36.379175 L 11.296985,29.849858 Z" /> + <path + id="path327" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.225456 V 23.417175 L 11.131104,29.849858 0,36.282023 V 36.473743 L 11.337809,29.921688 A 0.0830083,0.0830083 0 0 0 11.337809,29.777511 Z" /> + <path + id="path328" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.30422,29.849858 0,36.382792 V 39.6012 L 11.30422,33.068783 Z" /> + <path + id="path329" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.309904,29.766142 A 0.0830083,0.0830083 0 0 0 11.261844,29.777512 L 0,36.288224 V 36.478394 L 11.220504,29.994035 V 33.02124 L 0,39.507149 V 39.696802 L 11.345561,33.140613 A 0.0830083,0.0830083 0 0 0 11.386901,33.068263 V 29.849855 A 0.0830083,0.0830083 0 0 0 11.309901,29.766135 Z" /> + </g> + <g + id="g334" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <g + id="g333" + transform="translate(0,69.923174)"> + <path + id="path330" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.321057 V 36.379175 L 11.296985,29.849858 Z" /> + <path + id="path331" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.225456 V 23.417175 L 11.131104,29.849858 0,36.282023 V 36.473743 L 11.337809,29.921688 A 0.0830083,0.0830083 0 0 0 11.337809,29.777511 Z" /> + <path + id="path332" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.30422,29.849858 0,36.382792 V 39.6012 L 11.30422,33.068783 Z" /> + <path + id="path333" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.309904,29.766142 A 0.0830083,0.0830083 0 0 0 11.261844,29.777512 L 0,36.288224 V 36.478394 L 11.220504,29.994035 V 33.02124 L 0,39.507149 V 39.696802 L 11.345561,33.140613 A 0.0830083,0.0830083 0 0 0 11.386901,33.068263 V 29.849855 A 0.0830083,0.0830083 0 0 0 11.309901,29.766135 Z" /> + </g> + </g> + <g + id="g340" + transform="matrix(0.57599998,0,0,0.57599998,800.30271,-0.43376218)" + style="display:inline"> + <g + id="g339" + transform="matrix(3.7795276,0,0,3.7795276,-2.349e-4,0)"> + <path + id="path334" + style="fill:#aeaaa3;fill-opacity:1;stroke:none;stroke-width:3.0541;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 7.8068644,111.20506 2.2506144,114.41313 14.954234,121.6158 18.413964,121.5316 5.7568944,114.24599 Z" + sodipodi:nodetypes="cccccc" /> + <path + style="color:#000000;fill:#c0b2a5;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 18.413959,103.77277 5.8341031,111.04284 18.413959,118.31292 30.993814,111.04284 Z" + id="path335" /> + <path + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:none;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 10.692116,108.23533 12.690513,112.41794 12.124031,114.67788 5.8341031,111.04284 Z" + id="path336" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 18.373047,103.70117 5.7929687,110.9707 A 0.0830083,0.0830083 0 0 0 5.7929687,111.11523 L 18.373047,118.38477 A 0.0830083,0.0830083 0 0 0 18.455077,118.38477 L 31.035155,111.11523 A 0.0830083,0.0830083 0 0 0 31.035155,110.9707 L 18.455077,103.70117 A 0.0830083,0.0830083 0 0 0 18.373047,103.70117 Z M 18.414067,103.86719 30.82813,111.04297 18.414062,118.2168 6,111.04297 Z" + id="path337" /> + <path + id="path338" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 5.8340851,111.04284 18.413954,118.31292 V 121.5316 L 5.8340851,114.26152 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path339" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 31.000959,111.04284 18.42109,118.31292 V 121.5316 L 31.000959,114.26152 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path340" + style="fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.583861;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 54.650661,410.55549 A 11.260325,6.5011545 0 0 1 70.575046,410.55549 11.260325,6.5011545 0 0 1 71.797225,418.90772 L 83.867792,425.87668 C 84.610417,426.30543 84.610953,426.99557 83.868329,427.42432 83.125709,427.85307 81.929802,427.85307 81.187178,427.42432 L 69.11661,420.45536 A 11.260325,6.5011545 0 0 1 54.65012,419.74976 11.260325,6.5011545 0 0 1 54.650661,410.55549 Z M 56.898047,411.85301 A 8.0824117,4.6663847 0 0 0 56.897511,418.45221 8.0824117,4.6663847 0 0 0 68.328197,418.45221 8.0824117,4.6663847 0 0 0 68.327656,411.85301 8.0824117,4.6663847 0 0 0 56.898047,411.85301 Z" /> + </g> + <path + id="path341" + style="display:inline;fill:#393d46;fill-opacity:1;stroke-width:0.336304;stroke-linecap:round;stroke-linejoin:round" + d="M 833.80739,32.792742 834.65366,33.281336 C 838.4076,35.448676 849.80874,30.396527 849.80874,36.655805 848.70164,34.270336 839.9967,36.366146 843.35779,38.306672 L 847.85783,40.904771 843.03257,43.690636 828.98213,35.578607 Z" + sodipodi:nodetypes="cccccccc" /> + <g + id="g347" + transform="translate(-310.53367,-163.32808)"> + <g + id="g346" + transform="translate(618.30848,289.40305)"> + <path + id="path342" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g345" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path343" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path344" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path345" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + id="path346" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0673168px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1805.4894,420.74866 1803.4539,421.92265 1807.2315,423.03386 1797.584,428.60303 1799.9713,429.98145 1812.5976,422.69217 1812.3421,422.54469 Z M 1816.4526,427.29908 C 1816.1229,427.29863 1815.7949,427.31768 1815.4698,427.35748 1814.6143,427.46347 1813.8574,427.70762 1813.1992,428.08758 L 1815.5867,429.466 C 1816.0082,429.22269 1816.5019,429.11521 1817.0702,429.1433 1817.6442,429.1681 1818.1609,429.31161 1818.618,429.57551 1819.1248,429.86808 1819.3797,430.1799 1819.3832,430.50858 1819.3932,430.84043 1819.1435,431.15272 1818.6356,431.44603 1818.1102,431.74931 1817.5424,431.90728 1816.9329,431.92204 1816.3235,431.93674 1815.7164,431.76951 1815.1106,431.41974 L 1813.8373,430.68526 1811.8807,431.81545 1813.1452,432.54555 C 1814.4671,433.30874 1814.4987,434.05304 1813.2402,434.77964 1812.7207,435.07961 1812.1392,435.22785 1811.4968,435.22354 1810.8656,435.21954 1810.2666,435.05315 1809.6993,434.72561 1809.2035,434.43945 1808.9345,434.11046 1808.8932,433.73998 1808.8572,433.37269 1809.0768,433.05394 1809.5503,432.78064 L 1807.1614,431.40076 C 1806.0703,432.03069 1805.5744,432.75722 1805.6706,433.57936 1805.7722,434.40463 1806.4237,435.16404 1807.6244,435.85727 1808.9076,436.59816 1810.2739,436.99769 1811.726,437.05608 1813.1835,437.11758 1814.4726,436.82512 1815.5926,436.1785 1816.2854,435.77856 1816.7187,435.33556 1816.8907,434.84827 1817.0683,434.36418 1816.9437,433.85286 1816.5213,433.31507 1817.3264,433.47988 1818.1389,433.51934 1818.9598,433.43335 1819.7808,433.34735 1820.4793,433.1373 1821.0567,432.804 1822.1766,432.15739 1822.6939,431.44218 1822.6074,430.65898 1822.5264,429.87242 1821.8514,429.11269 1820.5792,428.37816 1819.8466,427.95524 1819.026,427.65143 1818.1202,427.46846 1817.5576,427.35609 1817.0021,427.29982 1816.4527,427.29908 Z M 1803.4232,429.97707 C 1802.9591,429.98797 1802.5409,430.10169 1802.1675,430.3173 1801.7749,430.54395 1801.5798,430.80308 1801.5848,431.09266 1801.5948,431.37892 1801.7984,431.63496 1802.1894,431.86072 1802.5861,432.08968 1803.0312,432.20634 1803.5269,432.21263 1804.0286,432.21563 1804.4763,432.10343 1804.8688,431.87679 1805.2672,431.64681 1805.4606,431.38691 1805.45,431.09412 1805.44,430.80452 1805.2467,430.54598 1804.8557,430.32022 1804.4702,430.09763 1804.0238,429.9832 1803.5167,429.97707 1803.4857,429.97689 1803.4537,429.97635 1803.4237,429.97707 Z" /> + </g> + <g + id="g352" + transform="translate(-286.68503,282.96239)"> + <g + id="g351" + transform="translate(242.47602,-360.27361)"> + <path + id="path347" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g350" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path348" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path349" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path350" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1440.638,-226.33356 1426.0562,-217.91481 1428.9233,-216.25954 1443.505,-224.6783 Z" + id="path351" /> + </g> + <g + id="g357" + transform="translate(-278.42384,278.12229)"> + <g + id="g356" + transform="translate(278.33637,-329.78533)"> + <path + id="path352" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g355" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path353" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path354" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path355" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1472.0955,-198.06368 1457.5138,-189.64493 1460.3797,-187.99024 1469.9737,-193.52931 1465.96,-184.76857 1468.826,-183.11385 1483.4077,-191.53261 1480.5516,-193.18153 1470.9377,-187.63093 1474.9615,-196.40901 Z" + id="path356" /> + </g> + <g + id="g362" + transform="translate(-282.39186,269.93574)"> + <g + id="g361" + transform="translate(326.10713,-296.10122)"> + <path + id="path357" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g360" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path358" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path359" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path360" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1520.5138,-163.31502 1505.9322,-154.89627 1508.7992,-153.24099 1512.9658,-155.6466 1516.1384,-155.75736 1513.8628,-150.31749 1517.2743,-148.34788 1520.2931,-155.96094 1531.7122,-156.84971 1528.1868,-158.88506 1519.8446,-158.16238 1516.7708,-157.84342 1523.3809,-161.65975 Z" + id="path361" /> + </g> + <g + id="g367" + transform="translate(-277.6724,270.61661)"> + <g + id="g366" + transform="translate(365.49617,-271.43897)"> + <path + id="path362" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g365" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path363" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path364" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path365" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1565.7008,-135.88305 C 1564.7135,-136.45309 1563.6466,-136.86786 1562.5032,-137.12709 1561.3662,-137.38266 1560.2754,-137.45427 1559.2277,-137.34222 1558.193,-137.23028 1557.2803,-136.94696 1556.4924,-136.4921 1554.9769,-135.61708 1554.5617,-134.46539 1555.2468,-133.03682 1555.4992,-132.51328 1555.9531,-131.86637 1556.6064,-131.09605 1557.2663,-130.32961 1557.6332,-129.74705 1557.7082,-129.3491 1557.7902,-128.955 1557.5475,-128.59419 1556.98,-128.26655 1556.4592,-127.96588 1555.8607,-127.8412 1555.1848,-127.89225 1554.5155,-127.94715 1553.8396,-128.17179 1553.1579,-128.5653 1551.3235,-129.62446 1551.2113,-130.6181 1552.8203,-131.54708 L 1549.9444,-133.20753 C 1549.0029,-132.66401 1548.404,-132.05298 1548.1482,-131.37578 1547.8988,-130.69484 1548.0069,-129.98138 1548.472,-129.2349 1548.9436,-128.49224 1549.7143,-127.81278 1550.7844,-127.19495 1552.3259,-126.30501 1553.9091,-125.80253 1555.5345,-125.68906 1557.1664,-125.57951 1558.614,-125.88909 1559.8759,-126.61762 1561.011,-127.27292 1561.5862,-128.0353 1561.6022,-128.90501 1561.6182,-129.77471 1561.0675,-130.82902 1559.9508,-132.06729 1559.3459,-132.74037 1558.9742,-133.30157 1558.836,-133.75139 1558.7042,-134.19751 1558.875,-134.55738 1559.3495,-134.83107 1559.857,-135.12402 1560.4579,-135.24722 1561.1536,-135.20017 1561.8559,-135.15707 1562.5577,-134.93281 1563.2584,-134.52826 1563.9846,-134.10901 1564.3618,-133.67585 1564.3892,-133.22829 1564.4232,-132.7846 1564.1059,-132.37029 1563.4382,-131.98482 L 1566.3052,-130.32955 C 1567.1798,-130.83452 1567.7439,-131.41098 1567.9984,-132.05806 1568.2593,-132.70149 1568.1878,-133.35564 1567.7846,-134.02017 1567.3882,-134.68853 1566.6946,-135.30933 1565.7008,-135.88305 Z" + id="path366" /> + </g> + <g + id="g372" + transform="translate(-272.02171,271.52096)"> + <g + id="g371" + transform="translate(403.83978,-247.25394)"> + <path + id="path367" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g370" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path368" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path369" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path370" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1603.5957,-112.15054 C 1602.4364,-112.81981 1601.129,-113.2422 1599.6757,-113.41822 1598.2356,-113.5944 1596.7461,-113.51022 1595.2064,-113.1656 1593.6668,-112.821 1592.1962,-112.24428 1590.7941,-111.43478 L 1589.903,-110.92033 C 1587.7064,-109.65214 1586.4865,-108.35867 1586.2438,-107.04172 1586.0141,-105.72494 1586.7919,-104.5521 1588.5754,-103.52241 1590.2061,-102.58093 1591.9678,-102.08369 1593.8628,-102.03038 1595.7642,-101.97338 1597.554,-102.36589 1599.2312,-103.20924 L 1596.3642,-104.8645 C 1595.4126,-104.38859 1594.5039,-104.15382 1593.6371,-104.16087 1592.7833,-104.16787 1591.9143,-104.42769 1591.0289,-104.9389 1590.0479,-105.50522 1589.6917,-106.13126 1589.9609,-106.8162 1590.2365,-107.49745 1591.1613,-108.29249 1592.737,-109.20219 L 1593.8389,-109.83834 C 1595.3605,-110.70216 1596.7149,-111.20451 1597.9006,-111.34482 1599.0994,-111.48532 1600.1758,-111.27932 1601.1313,-110.72771 1602.0103,-110.22016 1602.4503,-109.7201 1602.4498,-109.22701 1602.4618,-108.73408 1602.0325,-108.19609 1601.1612,-107.61212 L 1604.0282,-105.95685 C 1605.5045,-106.98566 1606.2017,-108.04338 1606.122,-109.13011 1606.042,-110.21685 1605.2008,-111.22376 1603.5957,-112.15054 Z" + id="path371" /> + </g> + <g + id="g377" + transform="translate(-283.28646,267.515)"> + <g + id="g376" + transform="translate(459.10702,-217.74054)"> + <path + id="path372" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g375" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path373" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path374" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path375" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + id="path376" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1659.0582,-83.521494 1639.2981,-78.092384 1642.3463,-76.332314 1646.3064,-77.515624 1651.3319,-74.614144 1649.2917,-72.321424 1652.3399,-70.562454 1661.7137,-81.987494 Z M 1656.7015,-80.626634 1652.9917,-76.465754 1649.5134,-78.472854 Z" /> + </g> + <g + id="g382" + transform="translate(-288.83691,271.75621)"> + <g + id="g381" + transform="translate(552.68526,-170.52754)"> + <path + id="path377" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g380" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path378" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path379" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path380" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1746.0866,-38.048107 1731.5048,-29.629345 1740.83,-24.245429 1743.2435,-25.638845 1736.7843,-29.36808 1740.6902,-31.623162 1746.1943,-28.445302 1748.5479,-29.804112 1743.0437,-32.981972 1746.5191,-34.988471 1752.9593,-31.270194 1755.3928,-32.67515 Z" + id="path381" /> + </g> + <g + id="g387" + transform="translate(-282.72983,270.09471)"> + <g + id="g386" + transform="translate(502.44573,-194.76314)"> + <path + id="path382" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1169.1783,140.14937 1157.0823,147.13337 1184.7382,162.81362 1192.2701,162.63025 1164.7155,146.76941 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g385" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,672.55346,-126.82724)"> + <path + id="path383" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path384" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path385" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + id="path386" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.0778529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1697.0177,-62.691389 1682.4364,-54.272589 1685.3015,-52.618386 1690.4394,-55.584919 1692.9527,-54.133629 C 1694.6025,-53.181142 1696.3032,-52.67344 1698.0543,-52.610663 1699.8187,-52.548053 1701.4161,-52.929353 1702.8449,-53.754269 1703.7863,-54.297779 1704.4098,-54.904559 1704.7175,-55.574999 1705.0317,-56.249269 1704.9918,-56.931949 1704.5962,-57.622899 1704.2069,-58.310219 1703.4893,-58.955189 1702.4446,-59.558329 Z M 1697.45,-59.632219 1700.078,-58.114759 C 1700.7717,-57.698829 1701.0987,-57.247739 1701.0594,-56.761609 1701.0204,-56.275519 1700.6436,-55.826449 1699.9291,-55.413989 1699.2348,-55.013099 1698.4998,-54.820299 1697.7246,-54.836119 1696.9558,-54.848219 1696.1921,-55.073379 1695.4341,-55.511039 L 1692.8733,-56.989889 Z" /> + </g> + <g + id="g391" + transform="translate(-521.99939,65.912718)"> + <path + id="path387" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1911.2838,200.2433 1899.1878,207.22729 1926.8437,222.90756 1934.3755,222.72425 1906.821,206.86343 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g390" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1414.3258,-66.769716)"> + <path + id="path388" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path389" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path390" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path391" + style="fill:#f06060;fill-opacity:1;stroke-width:0.161858;stroke-linecap:round;stroke-linejoin:round" + d="M 1936.2119,193.15801 C 1935.0639,192.49521 1933.4765,192.08633 1931.7171,192.08633 1928.1986,192.08633 1925.3655,193.72196 1925.3655,195.75345 V 203.91164 H 1939.4959 C 1943.0146,203.91163 1945.8475,202.276 1945.8475,200.24451 1945.8475,199.22875 1945.1393,198.31225 1943.9914,197.64947 1942.8433,196.98667 1941.2556,196.57758 1939.4961,196.57758 H 1938.0685 V 195.75327 C 1938.0685,194.7375 1937.3599,193.82081 1936.2119,193.15801 Z" /> + </g> + <g + id="g400" + transform="translate(1620.9726,-1699.9947)" + style="stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect391" + width="49.608288" + height="28.616287" + x="-377.58615" + y="1774.5229" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + y="1769.9749" + x="-377.44922" + height="10.99284" + width="51.378963" + id="rect392" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.386807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect393" + width="4.0359759" + height="22.193449" + x="-352.90894" + y="1784.7853" + transform="matrix(0.87101483,-0.49125672,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.388047;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect394" + width="51.573917" + height="51.573917" + x="1719.9558" + y="2097.7068" + transform="matrix(0.8663092,0.49950813,-0.8663092,0.49950813,0,0)" /> + <rect + y="1769.3447" + x="-354.10547" + height="11.032285" + width="4.0612364" + id="rect395" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.388016;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86559719,-0.50074095,0,1,0,0)" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + y="2151.6548" + x="377.58615" + height="28.616287" + width="49.608288" + id="rect396" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.387842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect397" + width="51.378963" + height="10.99284" + x="377.72311" + y="2147.1067" /> + <rect + transform="matrix(-0.87101492,-0.49125657,0,1,0,0)" + y="2153.7698" + x="398.22769" + height="22.193438" + width="4.0359755" + id="rect398" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.386807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86714785,-0.49805081,0,1,0,0)" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.387669;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect399" + width="4.0539742" + height="10.953394" + x="401.02496" + y="2146.4229" /> + <path + inkscape:connector-curvature="0" + id="path399" + d="M -306.54749,1946.692 -351.26334,1920.9168 -347.75477,1918.8938 -303.03211,1944.673 Z" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -347.74796,1946.692 -303.03211,1920.9168 -306.54068,1918.8938 -351.26334,1944.673 Z" + id="path400" + inkscape:connector-curvature="0" /> + </g> + <g + id="g407" + transform="matrix(0.22218604,0,0,0.22285113,1804.7337,-133.10118)" + style="stroke:#393d46;stroke-width:1.62233;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <g + id="g406" + style="stroke:#393d46;stroke-width:1.62233;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:1.74322;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect400" + width="126.21308" + height="126.17226" + x="-497.19119" + y="1563.3389" + transform="matrix(0.86611877,-0.49983825,0,1,0,0)" /> + <rect + style="fill:#f06060;fill-opacity:1;stroke:#393d46;stroke-width:1.74322;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect401" + width="26.635878" + height="126.17226" + x="-447.40262" + y="1563.3389" + transform="matrix(0.86611877,-0.49983825,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:1.7435;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect402" + width="126.21308" + height="126.21308" + x="1437.6316" + y="1934.8229" + transform="matrix(0.86611877,0.49983825,-0.86611877,0.49983825,0,0)" /> + <rect + style="fill:#f06060;fill-opacity:1;stroke:#393d46;stroke-width:1.7435;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect403" + width="26.635878" + height="126.21308" + x="1487.4203" + y="1934.8229" + transform="matrix(0.86611877,0.49983825,-0.86611877,0.49983825,0,0)" /> + <rect + y="2060.3691" + x="497.19119" + height="126.17226" + width="126.21308" + id="rect404" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:1.74322;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86611877,-0.49983825,0,1,0,0)" /> + <rect + y="2060.3691" + x="546.9798" + height="126.17226" + width="26.635878" + id="rect405" + style="fill:#e05a5a;fill-opacity:1;stroke:#393d46;stroke-width:1.74322;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86611877,-0.49983825,0,1,0,0)" /> + <rect + transform="matrix(-0.86611877,0.49983825,0.86611877,0.49983825,0,0)" + y="1437.6316" + x="1984.6115" + height="126.21308" + width="26.635878" + id="rect406" + style="fill:#f06060;fill-opacity:1;stroke:#393d46;stroke-width:1.7435;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + </g> + <path + id="path407" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1600.2527,131.49622 1559.7527,154.87903 V 161.88613 L 1600.2527,138.50331 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path408" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1480.6444,62.439033 1440.1444,85.821846 1559.7527,154.87903 1600.2527,131.49622 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path409" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1440.1444,85.821846 1559.7527,154.87903 V 161.88613 L 1440.1444,92.828934 Z" + sodipodi:nodetypes="ccccc" /> + <path + d="M 1480.3776,81.901331 1496.3856,78.499349 1501.8607,81.660396 1478.3912,85.9972 1469.5777,91.085714 1464.4865,88.146324 1473.3001,83.05781 1480.8116,69.507711 1486.3034,72.678391 Z" + id="path410" + style="font-weight:bold;font-size:36.7352px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f3b562;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 1504.9321,99.335281 1495.3173,93.784175 1488.8073,97.542736 1500.0913,104.05758 1496.0685,106.38017 1479.7767,96.974128 1504.0808,82.942159 1520.3391,92.328933 1516.2829,94.670808 1505.0323,88.175241 1499.24,91.5194 1508.8548,97.070506 Z" + id="path411" + style="font-weight:bold;font-size:36.7352px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f3b562;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 1517.7351,113.10704 1508.955,108.0378 1502.278,109.96527 1496.9532,106.89095 1530.3045,98.082423 1534.945,100.76161 1519.7382,120.04592 1514.4134,116.97162 Z M 1514.3633,106.47655 1520.4393,109.98454 1526.4819,102.96856 Z" + id="path412" + style="font-weight:bold;font-size:36.7352px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f3b562;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 1539.9026,121.41443 1535.9131,119.11111 1527.0161,124.2478 1522.0084,121.3566 1546.3124,107.32463 1555.343,112.53844 Q 1559.6496,115.02487 1560.0669,117.48239 1560.4843,119.93992 1556.9789,121.96376 1554.4917,123.39972 1551.7375,123.73703 1549.0166,124.07434 1545.8451,123.38045 L 1541.1712,132.15043 1540.9375,132.28535 1535.5626,129.18212 Z M 1539.9696,116.76923 1544.0092,119.10147 Q 1545.8954,120.19049 1547.8818,120.23867 1549.8849,120.27727 1551.5708,119.30385 1553.2902,118.31121 1553.2902,117.174 1553.3072,116.04643 1551.2871,114.88031 L 1547.2642,112.55771 Z" + id="path413" + style="font-weight:bold;font-size:36.7352px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f3b562;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 1562.8045,137.54734 Q 1564.2233,136.72816 1563.973,135.71625 1563.7393,134.69469 1561.9699,132.70939 1560.2172,130.71447 1559.5161,129.36524 1557.6132,125.68377 1561.4023,123.4961 1563.372,122.35889 1566.0094,122.10832 1568.6802,121.85775 1571.6181,122.55163 1574.5726,123.25516 1577.1599,124.74895 1579.7639,126.25237 1580.8489,127.97746 1581.9506,129.69291 1581.3497,131.33125 1580.7655,132.97924 1578.5788,134.24173 L 1573.5711,131.35053 Q 1575.2403,130.3868 1575.1068,129.24959 1574.9899,128.10274 1573.087,127.00409 1571.2508,125.94398 1569.448,125.80906 1567.662,125.6645 1566.3934,126.39693 1565.2082,127.08119 1565.5921,128.22803 1565.9927,129.38451 1567.6119,131.12887 1570.5998,134.3381 1570.6499,136.56433 1570.6999,138.79056 1567.8623,140.42891 1564.7074,142.25036 1560.5176,141.91306 1556.3445,141.56611 1552.305,139.23387 1549.5007,137.6148 1548.2154,135.69697 1546.9468,133.7695 1547.5143,132.03478 1548.0985,130.3097 1550.4521,128.95083 L 1555.4765,131.85167 Q 1551.4537,134.17427 1556.2611,136.94982 1558.0472,137.98102 1559.7665,138.14485 1561.5025,138.29905 1562.8045,137.54734 Z" + id="path414" + style="font-weight:bold;font-size:36.7352px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f3b562;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <g + id="g427" + transform="translate(7.306324,0.95512386)"> + <g + id="g418" + transform="translate(-53.241315,25.981782)"> + <path + id="path415" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1424.2128,98.71322 1412.1168,105.69722 1597.1587,212.2942 1604.6906,212.11083 1419.75,105.33326 Z" + sodipodi:nodetypes="cccccc" /> + <path + id="path416" + style="opacity:1;fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1460.25,74.943359 1419.75,98.326172 1604.6906,205.10373 1645.1906,181.72092 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path417" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1645.1906,181.72092 1604.6906,205.10373 V 212.11083 L 1645.1906,188.72801 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path418" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1419.75,98.326172 1604.6906,205.10373 V 212.11083 L 1419.75,105.33326 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <g + aria-label="TOGETHER" + transform="matrix(0.93060465,0.53728509,-0.93060465,0.53728509,0,0)" + id="g426" + style="font-weight:bold;font-size:36.3577px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#f06060;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round"> + <path + d="M 877.15078,-648.97089 H 869.23304 V -627.43677 H 863.9072 V -648.97089 H 856.09598 V -653.28482 H 877.15078 Z" + id="path419" /> + <path + d="M 900.92175,-639.77495 Q 900.92175,-635.9581 899.57254,-633.08215 898.22333,-630.2062 895.70244,-628.64396 893.19929,-627.08171 889.95053,-627.08171 886.73728,-627.08171 884.21638,-628.6262 881.69549,-630.1707 880.31077,-633.02889 878.92606,-635.90485 878.9083,-639.63293 V -640.91113 Q 878.9083,-644.72798 880.27527,-647.62168 881.65998,-650.53314 884.16313,-652.07763 886.68402,-653.63988 889.91503,-653.63988 893.14603,-653.63988 895.64918,-652.07763 898.17007,-650.53314 899.53704,-647.62168 900.92175,-644.72798 900.92175,-640.92888 Z M 895.52491,-640.94664 Q 895.52491,-645.01202 894.06918,-647.1246 892.61345,-649.23719 889.91503,-649.23719 887.23436,-649.23719 885.77863,-647.14236 884.3229,-645.06528 884.30515,-641.0354 V -639.77495 Q 884.30515,-635.81608 885.76088,-633.63249 887.21661,-631.4489 889.95053,-631.4489 892.6312,-631.4489 894.06918,-633.54373 895.50716,-635.65631 895.52491,-639.68619 Z" + id="path420" /> + <path + d="M 925.24307,-630.70328 Q 923.80509,-628.98126 921.17768,-628.02261 918.55027,-627.08171 915.35477,-627.08171 911.99949,-627.08171 909.46085,-628.53744 906.93995,-630.01092 905.55523,-632.79811 904.18827,-635.5853 904.15276,-639.34889 V -641.10641 Q 904.15276,-644.97652 905.44872,-647.79921 906.76242,-650.63966 909.21231,-652.13089 911.67994,-653.63988 914.98196,-653.63988 919.57993,-653.63988 922.17184,-651.43853 924.76374,-649.25494 925.24307,-645.06528 H 920.05926 Q 919.7042,-647.28438 918.47926,-648.31404 917.27207,-649.3437 915.14174,-649.3437 912.42556,-649.3437 911.00534,-647.30213 909.58511,-645.26056 909.56736,-641.23068 V -639.57967 Q 909.56736,-635.51428 911.11185,-633.43721 912.65635,-631.36013 915.63881,-631.36013 918.63903,-631.36013 919.91723,-632.63833 V -637.09428 H 915.07072 V -641.01765 H 925.24307 Z" + id="path421" /> + <path + d="M 945.10843,-638.63877 H 934.88283 V -631.71519 H 946.88371 V -627.43677 H 929.55699 V -653.28482 H 946.8482 V -648.97089 H 934.88283 V -642.81068 H 945.10843 Z" + id="path422" /> + <path + d="M 969.82031,-648.97089 H 961.90257 V -627.43677 H 956.57673 V -648.97089 H 948.76551 V -653.28482 H 969.82031 Z" + id="path423" /> + <path + d="M 993.89308,-627.43677 H 988.56725 V -638.5145 H 978.18187 V -627.43677 H 972.85603 V -653.28482 H 978.18187 V -642.81068 H 988.56725 V -653.28482 H 993.89308 Z" + id="path424" /> + <path + d="M 1014.0958,-638.63877 H 1003.8701 V -631.71519 H 1015.871 V -627.43677 H 998.54431 V -653.28482 H 1015.8355 V -648.97089 H 1003.8701 V -642.81068 H 1014.0958 Z" + id="path425" /> + <path + d="M 1028.5643,-636.899 H 1024.3213 V -627.43677 H 1018.9955 V -653.28482 H 1028.5998 Q 1033.18,-653.28482 1035.6654,-651.24325 1038.1508,-649.20168 1038.1508,-645.4736 1038.1508,-642.82843 1036.9968,-641.05315 1035.8607,-639.29563 1033.535,-638.24821 L 1039.1272,-627.68531 V -627.43677 H 1033.4108 Z M 1024.3213,-641.21293 H 1028.6175 Q 1030.6236,-641.21293 1031.7243,-642.22484 1032.8249,-643.2545 1032.8249,-645.04753 1032.8249,-646.87607 1031.7775,-647.92348 1030.7479,-648.97089 1028.5998,-648.97089 H 1024.3213 Z" + id="path426" /> + </g> + </g> + <path + id="path427" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1590.6286,55.0963 1550.1286,78.47911 V 85.48621 L 1590.6286,62.10339 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path428" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1541.5538,26.76244 1501.0538,50.145253 1550.1286,78.47911 1590.6286,55.096302 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path429" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.361383;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1501.0538,50.145253 1550.1286,78.47911 V 85.48621 L 1501.0538,57.152341 Z" + sodipodi:nodetypes="ccccc" /> + <path + d="M 1533.8228,58.071104 1517.6399,48.727899 1520.8505,46.874238 1536.628,46.584013 Q 1539.9198,46.499743 1541.9467,46.190817 1543.9898,45.891254 1545.1411,45.226525 1546.714,44.318406 1546.8113,43.344791 1546.9248,42.361774 1545.4492,41.509839 1543.8601,40.592366 1541.8332,40.695369 1539.8387,40.798323 1538.055,41.828138 L 1533.3526,39.113182 Q 1535.5092,37.868078 1538.3144,37.428063 1541.1359,36.997413 1544.0222,37.502963 1546.9248,37.999119 1549.3084,39.375321 1552.9569,41.481752 1553.2163,43.653749 1553.492,45.835056 1550.2976,47.679341 1548.5463,48.690458 1545.8222,49.214698 1543.098,49.73898 1538.4766,49.860686 L 1527.4502,50.0292 1537.601,55.889772 Z" + id="path430" + style="font-weight:bold;font-size:35.6854px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#8cbeb2;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 1562.3456,63.266973 Q 1557.4485,66.09428 1552.8272,66.421943 1548.2058,66.749612 1544.2979,64.493385 1540.4386,62.265248 1540.9413,59.61582 1541.444,56.966392 1546.1464,54.195264 L 1550.4922,51.68625 Q 1555.4378,48.830902 1560.043,48.531306 1564.6644,48.24107 1568.5236,50.469208 1572.3829,52.69735 1571.8801,55.346805 1571.3937,57.986852 1566.6912,60.757997 Z M 1562.4266,57.808952 Q 1565.3615,56.114462 1565.8804,54.878696 1566.4318,53.642886 1564.7292,52.65988 1563.0752,51.704963 1560.9996,51.985856 1558.9565,52.266711 1556.1998,53.802068 L 1550.4596,57.116182 Q 1547.5733,58.782609 1546.9409,60.04647 1546.3409,61.310331 1548.076,62.312056 1549.7948,63.304422 1551.9028,62.967388 1554.0108,62.630366 1556.816,61.048195 Z" + id="path431" + style="font-weight:bold;font-size:35.6854px;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#8cbeb2;stroke:#393d46;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round" /> + <g + id="g436" + transform="translate(-630.19056,-162.53648)"> + <path + id="path432" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1887.4588,200.45773 1875.3628,207.44172 1903.0187,223.12199 1910.5505,222.93868 1882.996,207.07786 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g435" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1390.5008,-66.555286)"> + <path + id="path433" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path434" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path435" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path436" + style="fill:#8cbeb2;fill-opacity:1;stroke:none;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1907.7747,193.42039 C 1908.9319,192.75233 1910.5319,192.34019 1912.3052,192.34019 1915.8516,192.34019 1918.7073,193.98882 1918.7073,196.03645 V 204.25943 H 1904.4646 C 1900.9181,204.25941 1898.0625,202.6108 1898.0625,200.56317 1898.0625,199.53934 1898.7764,198.61556 1899.9334,197.94752 1901.0906,197.27945 1902.6909,196.86711 1904.4643,196.86711 H 1905.9033 V 196.03625 C 1905.9033,195.01242 1906.6176,194.08846 1907.7747,193.42039 Z" /> + </g> + <g + id="g441" + transform="translate(-213.8895,-162.70877)"> + <path + id="path437" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1911.2838,200.2433 1899.1878,207.22729 1926.8437,222.90756 1934.3755,222.72425 1906.821,206.86343 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g440" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1414.3258,-66.769716)"> + <path + id="path438" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path439" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path440" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path441" + style="fill:#f06060;fill-opacity:1;stroke-width:0.161858;stroke-linecap:round;stroke-linejoin:round" + d="M 1936.2119,193.15801 C 1935.0639,192.49521 1933.4765,192.08633 1931.7171,192.08633 1928.1986,192.08633 1925.3655,193.72196 1925.3655,195.75345 V 203.91164 H 1939.4959 C 1943.0146,203.91163 1945.8475,202.276 1945.8475,200.24451 1945.8475,199.22875 1945.1393,198.31225 1943.9914,197.64947 1942.8433,196.98667 1941.2556,196.57758 1939.4961,196.57758 H 1938.0685 V 195.75327 C 1938.0685,194.7375 1937.3599,193.82081 1936.2119,193.15801 Z" /> + </g> + <g + id="g446" + transform="translate(-278.31083,40.979197)"> + <path + id="path442" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1887.4588,200.45773 1875.3628,207.44172 1903.0187,223.12199 1910.5505,222.93868 1882.996,207.07786 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g445" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1390.5008,-66.555286)"> + <path + id="path443" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path444" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path445" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path446" + style="fill:#8cbeb2;fill-opacity:1;stroke:none;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1907.7747,193.42039 C 1908.9319,192.75233 1910.5319,192.34019 1912.3052,192.34019 1915.8516,192.34019 1918.7073,193.98882 1918.7073,196.03645 V 204.25943 H 1904.4646 C 1900.9181,204.25941 1898.0625,202.6108 1898.0625,200.56317 1898.0625,199.53934 1898.7764,198.61556 1899.9334,197.94752 1901.0906,197.27945 1902.6909,196.86711 1904.4643,196.86711 H 1905.9033 V 196.03625 C 1905.9033,195.01242 1906.6176,194.08846 1907.7747,193.42039 Z" /> + </g> + <g + id="g455"> + <path + inkscape:connector-curvature="0" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:1.62142;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 1147.3735,162.85599 1125.1134,174.62135 1140.1664,183.7806 1159.7865,184.21322 V 175.37566 Z" + id="path447" + sodipodi:nodetypes="cccccc" /> + <g + id="g454" + transform="matrix(0.16202342,0,0,0.1624676,1229.3903,-130.87037)" + style="stroke:#393d46;stroke-width:2.22502;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <g + id="g453" + style="stroke:#393d46;stroke-width:2.22502;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:2.39081;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect447" + width="126.21308" + height="126.17226" + x="-497.19119" + y="1563.3389" + transform="matrix(0.86611877,-0.49983825,0,1,0,0)" /> + <rect + style="fill:#f3b562;fill-opacity:1;stroke:#393d46;stroke-width:2.39081;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect448" + width="26.635878" + height="126.17226" + x="-447.40262" + y="1563.3389" + transform="matrix(0.86611877,-0.49983825,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:2.3912;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect449" + width="126.21308" + height="126.21308" + x="1437.6316" + y="1934.8229" + transform="matrix(0.86611877,0.49983825,-0.86611877,0.49983825,0,0)" /> + <rect + style="fill:#f3b562;fill-opacity:1;stroke:#393d46;stroke-width:2.3912;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect450" + width="26.635878" + height="126.21308" + x="1487.4203" + y="1934.8229" + transform="matrix(0.86611877,0.49983825,-0.86611877,0.49983825,0,0)" /> + <rect + y="2060.3691" + x="497.19119" + height="126.17226" + width="126.21308" + id="rect451" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:2.39081;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86611877,-0.49983825,0,1,0,0)" /> + <rect + y="2060.3691" + x="546.9798" + height="126.17226" + width="26.635878" + id="rect452" + style="fill:#d69f57;fill-opacity:1;stroke:#393d46;stroke-width:2.39081;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(-0.86611877,-0.49983825,0,1,0,0)" /> + <rect + transform="matrix(-0.86611877,0.49983825,0.86611877,0.49983825,0,0)" + y="1437.6316" + x="1984.6115" + height="126.21308" + width="26.635878" + id="rect453" + style="fill:#f3b562;fill-opacity:1;stroke:#393d46;stroke-width:2.3912;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + </g> + </g> + <g + id="g464" + transform="matrix(0.55650655,0,0,0.55650655,1543.5968,-1059.6397)" + style="stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect455" + width="49.608288" + height="28.616287" + x="-377.58615" + y="1774.5229" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + y="1769.9749" + x="-377.44922" + height="10.99284" + width="51.378963" + id="rect456" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.695063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect457" + width="4.0359759" + height="22.193449" + x="-352.90894" + y="1784.7853" + transform="matrix(0.87101483,-0.49125672,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.697291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect458" + width="51.573917" + height="51.573917" + x="1719.9558" + y="2097.7068" + transform="matrix(0.8663092,0.49950813,-0.8663092,0.49950813,0,0)" /> + <rect + y="1769.3447" + x="-354.10547" + height="11.032285" + width="4.0612364" + id="rect459" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.697235;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86559719,-0.50074095,0,1,0,0)" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + y="2151.6548" + x="377.58615" + height="28.616287" + width="49.608288" + id="rect460" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect461" + width="51.378963" + height="10.99284" + x="377.72311" + y="2147.1067" /> + <rect + transform="matrix(-0.87101492,-0.49125657,0,1,0,0)" + y="2153.7698" + x="398.22769" + height="22.193438" + width="4.0359755" + id="rect462" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.695063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86714785,-0.49805081,0,1,0,0)" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.696612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect463" + width="4.0539742" + height="10.953394" + x="401.02496" + y="2146.4229" /> + <path + inkscape:connector-curvature="0" + id="path463" + d="M -306.54749,1946.692 -351.26334,1920.9168 -347.75477,1918.8938 -303.03211,1944.673 Z" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -347.74796,1946.692 -303.03211,1920.9168 -306.54068,1918.8938 -351.26334,1944.673 Z" + id="path464" + inkscape:connector-curvature="0" /> + </g> + <g + id="g475" + transform="translate(342.53928,111.30998)"> + <path + style="opacity:1;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:0.361;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1361.5466,48.757272 H 1336.678 L 1316.9488,37.366592 1339.0483,24.607409 Z" + id="path465" /> + <g + id="g474" + transform="matrix(0.55650655,0,0,0.55650655,1543.5968,-1059.6397)" + style="stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect465" + width="49.608288" + height="28.616287" + x="-377.58615" + y="1774.5229" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + y="1769.9749" + x="-377.44922" + height="10.99284" + width="51.378963" + id="rect466" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86637263,-0.49939811,0,1,0,0)" /> + <rect + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.695063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect467" + width="4.0359759" + height="22.193449" + x="-352.90894" + y="1784.7853" + transform="matrix(0.87101483,-0.49125672,0,1,0,0)" /> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.697291;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect468" + width="51.573917" + height="51.573917" + x="1719.9558" + y="2097.7068" + transform="matrix(0.8663092,0.49950813,-0.8663092,0.49950813,0,0)" /> + <rect + y="1769.3447" + x="-354.10547" + height="11.032285" + width="4.0612364" + id="rect469" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.697235;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0.86559719,-0.50074095,0,1,0,0)" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + y="2151.6548" + x="377.58615" + height="28.616287" + width="49.608288" + id="rect470" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86637263,-0.49939811,0,1,0,0)" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.696923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect471" + width="51.378963" + height="10.99284" + x="377.72311" + y="2147.1067" /> + <rect + transform="matrix(-0.87101492,-0.49125657,0,1,0,0)" + y="2153.7698" + x="398.22769" + height="22.193438" + width="4.0359755" + id="rect472" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.695063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + transform="matrix(-0.86714785,-0.49805081,0,1,0,0)" + style="fill:#79a69b;fill-opacity:1;stroke:#393d46;stroke-width:0.696612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect473" + width="4.0539742" + height="10.953394" + x="401.02496" + y="2146.4229" /> + <path + inkscape:connector-curvature="0" + id="path473" + d="M -306.54749,1946.692 -351.26334,1920.9168 -347.75477,1918.8938 -303.03211,1944.673 Z" + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:#8cbeb2;fill-opacity:1;stroke:#393d46;stroke-width:0.64869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M -347.74796,1946.692 -303.03211,1920.9168 -306.54068,1918.8938 -351.26334,1944.673 Z" + id="path474" + inkscape:connector-curvature="0" /> + </g> + </g> + <g + id="g482" + transform="translate(177.09943)"> + <path + id="path475" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1075.1389,-1.2340232 1096.6534,10.964352 1104.1853,10.780976 1083.3131,-1.2340232 Z" /> + <g + id="g481" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path476" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path477" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path478" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path479" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path480" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path481" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + </g> + <g + id="g489" + transform="translate(616.4346)"> + <path + id="path482" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1075.1389,-1.2340232 1096.6534,10.964352 1104.1853,10.780976 1083.3131,-1.2340232 Z" /> + <g + id="g488" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path483" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path484" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path485" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path486" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path487" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path488" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + </g> + <g + id="g496" + transform="translate(440.77597)"> + <path + id="path489" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1075.1389,-1.2340232 1096.6534,10.964352 1104.1853,10.780976 1083.3131,-1.2340232 Z" /> + <g + id="g495" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path490" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path491" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path492" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path493" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path494" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path495" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + </g> + <g + id="g503" + transform="translate(352.85523)"> + <path + id="path496" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1075.1389,-1.2340232 1096.6534,10.964352 1104.1853,10.780976 1083.3131,-1.2340232 Z" /> + <g + id="g502" + transform="matrix(2.1770078,0,0,2.1770078,800.33966,-1.2340232)" + style="display:inline"> + <path + id="path497" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.58242,0 139.56306,2.3006348 143.54369,0 Z" /> + <path + id="path498" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 135.41602,0 139.52172,2.372465 A 0.0830083,0.0830083 0 0 0 139.60392,2.372465 L 143.70957,0 H 143.37729 L 139.56254,2.2045166 135.74779,0 Z" /> + <path + id="path499" + style="color:#000000;fill:#c0b2a5;stroke-width:0.166002;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 130.01325,0 139.56306,5.519043 V 2.300118 L 135.58294,0 Z" /> + <path + id="path500" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 129.84634,0 139.52172,5.5908732 A 0.0830093,0.0830093 0 0 0 139.64677,5.5190432 V 2.300118 A 0.0830093,0.0830093 0 0 0 139.60387,2.227771 L 135.7483,0 H 135.41654 L 139.48089,2.3486938 V 5.376416 L 130.17965,0 Z" /> + <path + id="path501" + style="color:#000000;fill:#ffeedc;stroke-width:0.166;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.55041,0 139.57029,2.300118 V 5.519043 L 149.11958,0 Z" /> + <path + id="path502" + style="color:#000000;fill:#393d46;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 143.38298,0 139.5274,2.227771 A 0.0830083,0.0830083 0 0 0 139.4866,2.300118 V 5.519043 A 0.0830083,0.0830083 0 0 0 139.61165,5.590873 L 149.28701,0 H 148.95267 L 139.65246,5.374349 V 2.3486938 L 143.71681,0 Z" /> + </g> + </g> + <g + id="g507" + transform="translate(-1069.9399,-111.97362)"> + <path + id="path503" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1887.4588,200.45773 1875.3628,207.44172 1903.0187,223.12199 1910.5505,222.93868 1882.996,207.07786 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g506" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1390.5008,-66.555286)"> + <path + id="path504" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path505" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path506" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path507" + style="fill:#f06060;fill-opacity:1;stroke:none;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 1907.7747,193.42039 C 1908.9319,192.75233 1910.5319,192.34019 1912.3052,192.34019 1915.8516,192.34019 1918.7073,193.98882 1918.7073,196.03645 V 204.25943 H 1904.4646 C 1900.9181,204.25941 1898.0625,202.6108 1898.0625,200.56317 1898.0625,199.53934 1898.7764,198.61556 1899.9334,197.94752 1901.0906,197.27945 1902.6909,196.86711 1904.4643,196.86711 H 1905.9033 V 196.03625 C 1905.9033,195.01242 1906.6176,194.08846 1907.7747,193.42039 Z" /> + </g> + <g + id="g513"> + <path + id="path508" + style="display:inline;fill:#aeaaa3;fill-opacity:1;stroke:none;stroke-width:11.5431;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1742.582,110.8418 1726.4492,120.1582 1760.3398,139.37305 V 133.32227 L 1736.6309,119.67383 Z" /> + <g + id="g512" + transform="matrix(-2.0821427,0,0,2.0821427,1760.3395,50.821923)" + style="display:inline;stroke-width:1.04556"> + <path + id="path509" + style="color:#000000;fill:#ffeedc;stroke-width:0.173563;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.321057 V 36.379175 L 11.296985,29.849858 Z" /> + <path + id="path510" + style="color:#000000;fill:#393d46;stroke-width:1.04556;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.225456 V 23.417175 L 11.131104,29.849858 0,36.282023 V 36.473743 L 11.337809,29.921688 A 0.0830083,0.0830083 0 0 0 11.337809,29.777511 Z" /> + <path + id="path511" + style="color:#000000;fill:#c0b2a5;fill-opacity:1;stroke-width:0.173563;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.30422,29.849858 0,36.382792 V 39.6012 L 11.30422,33.068783 Z" /> + <path + id="path512" + style="color:#000000;fill:#393d46;stroke-width:1.04556;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.309904,29.766142 A 0.0830083,0.0830083 0 0 0 11.261844,29.777512 L 0,36.288224 V 36.478394 L 11.220504,29.994035 V 33.02124 L 0,39.507149 V 39.696802 L 11.345561,33.140613 A 0.0830083,0.0830083 0 0 0 11.386901,33.068263 V 29.849855 A 0.0830083,0.0830083 0 0 0 11.309901,29.766135 Z" /> + </g> + </g> + <g + id="g518" + transform="translate(0,101.86604)"> + <path + id="path513" + style="display:inline;fill:#aeaaa3;fill-opacity:1;stroke:none;stroke-width:11.5431;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1742.582,110.8418 1726.4492,120.1582 1760.3398,139.37305 V 133.32227 L 1736.6309,119.67383 Z" /> + <g + id="g517" + transform="matrix(-2.0821427,0,0,2.0821427,1760.3395,50.821923)" + style="display:inline;stroke-width:1.04556"> + <path + id="path514" + style="color:#000000;fill:#ffeedc;stroke-width:0.173563;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.321057 V 36.379175 L 11.296985,29.849858 Z" /> + <path + id="path515" + style="color:#000000;fill:#393d46;stroke-width:1.04556;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 0,23.225456 V 23.417175 L 11.131104,29.849858 0,36.282023 V 36.473743 L 11.337809,29.921688 A 0.0830083,0.0830083 0 0 0 11.337809,29.777511 Z" /> + <path + id="path516" + style="color:#000000;fill:#c0b2a5;fill-opacity:1;stroke-width:0.173563;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.30422,29.849858 0,36.382792 V 39.6012 L 11.30422,33.068783 Z" /> + <path + id="path517" + style="color:#000000;fill:#393d46;stroke-width:1.04556;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 11.309904,29.766142 A 0.0830083,0.0830083 0 0 0 11.261844,29.777512 L 0,36.288224 V 36.478394 L 11.220504,29.994035 V 33.02124 L 0,39.507149 V 39.696802 L 11.345561,33.140613 A 0.0830083,0.0830083 0 0 0 11.386901,33.068263 V 29.849855 A 0.0830083,0.0830083 0 0 0 11.309901,29.766135 Z" /> + </g> + </g> + <g + id="g522"> + <path + id="path518" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1609.1838,88.8731 1597.0878,95.8571 1624.7437,111.53735 1632.2755,111.35398 1604.721,95.49314 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g521" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,1112.2258,-178.13993)"> + <path + id="path519" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path520" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path521" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path522" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.120965px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1639.0283,82.50996 1626.7562,82.59231 C 1622.1696,82.874328 1625.9081,84.690648 1626.6536,85.964971 1626.6416,86.583203 1623.6834,85.338099 1623.6712,85.956571 1623.6592,86.57484 1625.8313,88.407318 1625.8205,89.026099 1625.8085,89.644348 1623.6209,89.042769 1623.6091,89.661008 1623.5971,90.279258 1625.3345,90.691572 1624.3144,91.545451 1623.585,92.155353 1626.1377,93.04114 1627.8685,93.195978 1628.9399,93.188978 1627.3478,92.326794 1628.4187,92.319993 1631.0822,92.302823 1631.4497,93.506082 1633.2497,92.987126 1634.1391,92.730636 1632.3403,91.274811 1633.412,91.268572 1635.8255,91.634536 1641.6682,94.340144 1641.6682,91.454749 L 1641.8103,84.115093 C 1641.7943,83.680079 1641.4676,83.276432 1640.9605,82.982519 1640.4535,82.688648 1639.7659,82.504954 1639.0283,82.509916 Z M 1636.9243,83.013592 C 1637.7541,83.013525 1638.4978,83.016892 1639.0319,83.013592 1639.5688,83.010292 1640.064,83.144387 1640.4247,83.354916 1640.7857,83.56527 1641.0116,83.853236 1641.0083,84.155714 L 1640.9713,86.94717 C 1640.9613,87.21274 1640.5121,87.470976 1640.2552,87.472284 L 1640.0165,86.234686 1638.3708,86.913754 1637.9006,86.035382 1635.2988,85.697638 1636.8945,84.166455 1634.5566,84.526874 1633.2474,83.771426 C 1632.7136,83.463337 1633.3284,83.037524 1634.2975,83.03746 1635.1782,83.01805 1636.0945,83.01366 1636.9244,83.01359 Z M 1627.9246,87.110671 C 1627.9556,87.112171 1628.0016,87.129941 1628.063,87.165571 1628.124,87.317267 1630.0767,89.020352 1630.5764,89.423559 1630.7404,89.568718 1630.3782,89.606887 1629.9475,89.525001 1629.1941,89.272698 1627.557,87.092373 1627.9246,87.110673 Z M 1622.7928,88.046328 C 1622.4153,88.048528 1622.1384,88.173398 1622.177,88.483127 1622.25,89.061495 1623.6572,89.205511 1624.5543,88.974824 1624.6013,88.77802 1624.4278,88.580821 1624.1521,88.418681 1623.778,88.198537 1623.2206,88.043813 1622.7928,88.046328 Z M 1634.6282,93.346395 C 1634.4238,93.348695 1634.2209,93.377255 1634.0314,93.438285 1633.7236,93.616055 1635.7906,95.04191 1636.3729,94.70572 1636.6599,94.365093 1636.4309,93.980286 1635.9803,93.706809 1635.9643,93.697609 1635.9493,93.688279 1635.9323,93.679359 1635.9173,93.670659 1635.9033,93.661579 1635.8873,93.653099 V 93.653099 C 1635.5366,93.464374 1635.0784,93.341289 1634.6294,93.346386 Z M 1632.9955,93.638788 C 1631.8104,93.648948 1631.974,94.412292 1633.0245,94.569672 1633.3311,94.567572 1633.7139,94.164657 1633.1135,93.639981 1633.0725,93.638681 1633.0335,93.638481 1632.9955,93.638681 Z" /> + </g> + <g + id="g259-9" + transform="translate(-229.55806,239.94684)" + style="display:inline"> + <path + id="path255-9" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1081.4198,89.317081 1069.3238,96.301081 1096.9797,111.98133 1104.5115,111.79796 1076.957,95.937121 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g258-2" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,584.46179,-177.69595)"> + <path + id="path256-5" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path257-7" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path258-0" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + style="color:#000000;display:inline;fill:#393d46;fill-opacity:1;fill-rule:evenodd;stroke-width:1.14333;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none" + d="M 1112.0352,82.073781 C 1105.2629,80.084704 1096.5851,81.54203 1093.1151,85.527448 1089.9765,89.132327 1092.3167,93.742539 1098.6962,95.567485 1104.4115,97.202409 1111.7035,95.957431 1114.5544,92.575828 1117.0788,89.581371 1115.1052,85.770601 1109.7691,84.304445 1105.1114,83.024648 1099.2005,84.058913 1096.9744,86.839997 1095.0663,89.223732 1096.6775,92.238453 1100.9784,93.341055 1104.5779,94.26387 1109.1153,93.437605 1110.7039,91.249778 1111.991,89.477201 1110.7349,87.249066 1107.4489,86.522419 1104.9078,85.96052 1101.7117,86.589229 1100.8014,88.204898 1100.4737,88.786491 1100.5422,89.41205 1100.9712,89.961721 1101.4001,90.511403 1102.2635,90.996873 1103.4362,91.145044 1104.1932,91.240684 1104.9535,91.174474 1105.6409,90.949941 1106.3282,90.725468 1106.9578,90.24312 1106.9151,89.673715 1106.8821,89.234049 1106.6077,89.04337 1106.1353,88.818113 1105.8991,88.705476 1105.5488,88.578347 1105.0308,88.594285 1104.5128,88.610185 1104.0193,88.834881 1103.8063,89.047845 A 1.1466641,0.66202713 0 0 0 1104.1691,89.82829 C 1104.0781,89.83439 1103.9811,89.85882 1103.9263,89.85191 1103.509,89.79921 1103.245,89.654521 1103.0602,89.417779 1102.8756,89.181043 1102.8428,88.863011 1102.9832,88.614547 1103.4456,87.79392 1105.2216,87.447439 1106.6303,87.758934 1108.6086,88.196389 1109.405,89.614299 1108.5892,90.737914 1107.5315,92.194646 1104.3893,92.767306 1101.9095,92.131551 1098.8474,91.346538 1097.665,89.133656 1099.0567,87.394902 1100.7194,85.317806 1105.2414,84.527107 1108.7838,85.500409 1112.915,86.635532 1114.4745,89.645224 1112.4923,91.99641 1110.2224,94.688893 1104.317,95.698086 1099.7151,94.381632 1094.5202,92.895563 1092.586,89.085462 1095.1654,86.122904 1098.0435,82.817228 1105.3354,81.591236 1110.9957,83.253715 A 1.1466641,0.66202713 0 0 0 1112.5376,82.964863 1.1466641,0.66202713 0 0 0 1112.0359,82.07378 Z" + id="path259-4" /> + </g> + <g + id="g441-1" + transform="translate(-1015.2662,103.33956)" + style="display:inline"> + <path + id="path437-1" + style="display:inline;fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.64883;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1911.2838,200.2433 1899.1878,207.22729 1926.8437,222.90756 1934.3755,222.72425 1906.821,206.86343 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g440-9" + style="stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154815,1414.3258,-66.769716)"> + <path + id="path438-3" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path439-8" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path440-9" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path441-0" + style="fill:#f06060;fill-opacity:1;stroke-width:0.161858;stroke-linecap:round;stroke-linejoin:round" + d="M 1936.2119,193.15801 C 1935.0639,192.49521 1933.4765,192.08633 1931.7171,192.08633 1928.1986,192.08633 1925.3655,193.72196 1925.3655,195.75345 V 203.91164 H 1939.4959 C 1943.0146,203.91163 1945.8475,202.276 1945.8475,200.24451 1945.8475,199.22875 1945.1393,198.31225 1943.9914,197.64947 1942.8433,196.98667 1941.2556,196.57758 1939.4961,196.57758 H 1938.0685 V 195.75327 C 1938.0685,194.7375 1937.3599,193.82081 1936.2119,193.15801 Z" /> + </g> + <g + id="g522-1" + style="display:inline" + transform="translate(-801.3767,266.04833)"> + <path + id="path518-2" + style="fill:#a39f98;fill-opacity:1;stroke:none;stroke-width:6.6488;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 1609.1838,88.8731 1597.0878,95.8571 1624.7437,111.53735 1632.2755,111.35398 1604.721,95.49314 Z" + sodipodi:nodetypes="cccccc" /> + <g + id="g521-2" + style="display:inline;stroke-width:0.124013;stroke-dasharray:none" + transform="matrix(2.9126675,0,0,2.9154816,1112.2258,-178.13993)"> + <path + id="path519-9" + style="fill:#ffeedc;fill-opacity:1;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1" + d="M 178.48988,86.023173 169.08735,91.451782 178.48988,96.880391 187.89241,91.451782 Z" /> + <path + id="path520-6" + style="fill:#c0b2a5;fill-opacity:1;stroke:#393d46;stroke-width:0.133262;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + transform="matrix(0.8660253,0.50000017,0,1,0,0)" + d="M 195.24527,-6.1708899 206.10239,-6.1708367 V -3.7674266 L 195.24527,-3.7674799 Z" + sodipodi:nodetypes="ccccc" /> + <path + id="path521-7" + style="fill:#ffeedc;stroke:#393d46;stroke-width:0.124013;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" + d="M 187.89775,91.451778 178.49521,96.880393 V 99.283803 L 187.89775,93.855188 Z" + sodipodi:nodetypes="ccccc" /> + </g> + <path + id="path522-3" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:100%;font-family:'Euphoria Script';-inkscape-font-specification:'Euphoria Script';letter-spacing:0px;word-spacing:0px;fill:#393d46;fill-opacity:1;stroke:none;stroke-width:0.120965px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1639.0283,82.50996 1626.7562,82.59231 C 1622.1696,82.874328 1625.9081,84.690648 1626.6536,85.964971 1626.6416,86.583203 1623.6834,85.338099 1623.6712,85.956571 1623.6592,86.57484 1625.8313,88.407318 1625.8205,89.026099 1625.8085,89.644348 1623.6209,89.042769 1623.6091,89.661008 1623.5971,90.279258 1625.3345,90.691572 1624.3144,91.545451 1623.585,92.155353 1626.1377,93.04114 1627.8685,93.195978 1628.9399,93.188978 1627.3478,92.326794 1628.4187,92.319993 1631.0822,92.302823 1631.4497,93.506082 1633.2497,92.987126 1634.1391,92.730636 1632.3403,91.274811 1633.412,91.268572 1635.8255,91.634536 1641.6682,94.340144 1641.6682,91.454749 L 1641.8103,84.115093 C 1641.7943,83.680079 1641.4676,83.276432 1640.9605,82.982519 1640.4535,82.688648 1639.7659,82.504954 1639.0283,82.509916 Z M 1636.9243,83.013592 C 1637.7541,83.013525 1638.4978,83.016892 1639.0319,83.013592 1639.5688,83.010292 1640.064,83.144387 1640.4247,83.354916 1640.7857,83.56527 1641.0116,83.853236 1641.0083,84.155714 L 1640.9713,86.94717 C 1640.9613,87.21274 1640.5121,87.470976 1640.2552,87.472284 L 1640.0165,86.234686 1638.3708,86.913754 1637.9006,86.035382 1635.2988,85.697638 1636.8945,84.166455 1634.5566,84.526874 1633.2474,83.771426 C 1632.7136,83.463337 1633.3284,83.037524 1634.2975,83.03746 1635.1782,83.01805 1636.0945,83.01366 1636.9244,83.01359 Z M 1627.9246,87.110671 C 1627.9556,87.112171 1628.0016,87.129941 1628.063,87.165571 1628.124,87.317267 1630.0767,89.020352 1630.5764,89.423559 1630.7404,89.568718 1630.3782,89.606887 1629.9475,89.525001 1629.1941,89.272698 1627.557,87.092373 1627.9246,87.110673 Z M 1622.7928,88.046328 C 1622.4153,88.048528 1622.1384,88.173398 1622.177,88.483127 1622.25,89.061495 1623.6572,89.205511 1624.5543,88.974824 1624.6013,88.77802 1624.4278,88.580821 1624.1521,88.418681 1623.778,88.198537 1623.2206,88.043813 1622.7928,88.046328 Z M 1634.6282,93.346395 C 1634.4238,93.348695 1634.2209,93.377255 1634.0314,93.438285 1633.7236,93.616055 1635.7906,95.04191 1636.3729,94.70572 1636.6599,94.365093 1636.4309,93.980286 1635.9803,93.706809 1635.9643,93.697609 1635.9493,93.688279 1635.9323,93.679359 1635.9173,93.670659 1635.9033,93.661579 1635.8873,93.653099 V 93.653099 C 1635.5366,93.464374 1635.0784,93.341289 1634.6294,93.346386 Z M 1632.9955,93.638788 C 1631.8104,93.648948 1631.974,94.412292 1633.0245,94.569672 1633.3311,94.567572 1633.7139,94.164657 1633.1135,93.639981 1633.0725,93.638681 1633.0335,93.638481 1632.9955,93.638681 Z" /> + </g> + <path + id="path523" + style="fill:#c0b2a5;fill-opacity:1;stroke-width:0.627;stroke-linecap:round;stroke-linejoin:round" + d="M 952.38822,89.267193 945.66943,127.93711 952.38822,124.06709 Z" + sodipodi:nodetypes="cccc" /> + </g> + <g + id="g24505" + transform="matrix(0.65553207,0,0,0.65553207,47.811812,176.43648)" + inkscape:label="Logo"> + <path + style="fill:#000000;stroke:#ffeedc;stroke-width:17.4117;stroke-opacity:1;paint-order:markers stroke fill" + d="M 52.141958,130.59785 51.824303,130.55305 51.53324,130.47215 51.242177,130.39115 50.972632,130.26101 50.703087,130.13087 50.456956,129.88994 50.210826,129.649 50.110127,129.4435 50.009428,129.238 49.913498,128.81802 49.817568,128.39804 49.732878,128.15408 49.648188,127.91012 49.539479,127.68261 49.43077,127.45509 49.265107,127.21067 49.099444,126.96625 48.870146,126.74216 48.640849,126.51807 48.419721,126.37224 48.198593,126.22642 47.974328,126.11552 47.750064,126.00462 47.465475,125.90552 47.180887,125.80642 46.808699,125.71412 46.436513,125.62182 45.715661,125.49095 44.994811,125.36009 44.658413,125.28289 44.322016,125.20569 44.065714,125.12219 43.809411,125.03869 43.601726,124.94689 43.39404,124.85509 43.132627,124.68344 42.871213,124.51179 42.702492,124.32974 42.53377,124.14768 42.44539,123.96342 42.35701,123.77917 42.33561,123.62566 42.31421,123.47214 42.35164,123.28825 42.38907,123.10435 42.498443,122.88304 42.607815,122.66173 42.81503,122.38937 43.022246,122.117 43.592029,121.5256 44.161813,120.93421 44.43783,120.61679 44.713847,120.29936 44.841127,120.08944 44.968407,119.87952 45.036207,119.7004 45.104007,119.52128 45.124837,119.3663 45.145667,119.21132 45.093147,119.009 45.040627,118.80667 44.942857,118.65632 44.845087,118.50597 44.647623,118.32544 44.450159,118.1449 44.182479,117.97263 43.914798,117.80035 43.493665,117.58901 43.072532,117.37767 42.596546,117.17997 42.12056,116.98226 41.523279,116.75949 40.925998,116.53672 38.010556,115.58027 35.095113,114.62382 34.390281,114.36261 33.685449,114.10142 33.172844,113.88243 32.660239,113.66344 32.291804,113.47293 31.923369,113.28243 31.651205,113.10395 31.37904,112.92547 31.182797,112.73181 30.986553,112.53815 30.931143,112.37351 30.875723,112.20887 30.897643,112.09219 30.919563,111.97551 31.003443,111.82282 31.087323,111.67014 31.281082,111.49298 31.474841,111.31584 31.731143,111.15123 31.987446,110.98662 32.342612,110.794 32.697778,110.60138 33.885889,110.05013 35.073999,109.49889 35.436973,109.30166 35.799948,109.10443 36.06779,108.92931 36.335632,108.75419 36.526861,108.56839 36.718089,108.38258 36.795339,108.21885 36.872589,108.05512 36.872909,107.93555 36.873229,107.81597 36.824179,107.70012 36.775129,107.58429 36.697509,107.48386 36.619889,107.38344 36.273997,107.23379 35.928105,107.08414 35.548719,106.94469 35.169334,106.80524 34.587584,106.63112 34.005835,106.45702 32.980625,106.20735 31.955414,105.9577 30.763867,105.68531 29.57232,105.41292 28.982315,105.25713 28.39231,105.10134 27.915195,104.95552 27.438081,104.8097 26.973532,104.63448 26.508984,104.45926 26.119383,104.27106 25.729782,104.08287 25.391992,103.86588 25.054203,103.64889 24.776463,103.38596 24.498723,103.12302 24.359375,102.93052 24.220027,102.73802 24.108033,102.5037 23.996039,102.26939 23.943959,102.07969 23.891879,101.88999 23.875339,101.49479 23.858799,101.09959 23.911739,100.79942 23.964679,100.49924 24.097621,100.10386 24.230564,99.70849 24.496396,99.18334 24.762228,98.658184 25.176872,98.045158 25.591516,97.432136 25.866654,97.08436 26.141793,96.736583 37.312523,85.455298 48.483254,74.174018 48.774065,73.943198 49.064876,73.712378 49.337925,73.536735 49.610975,73.361098 49.924328,73.202224 50.237681,73.04335 50.563795,72.917524 50.889909,72.791698 51.178182,72.709258 51.466455,72.626808 51.898966,72.544958 52.331477,72.463118 53.03919,72.447708 53.746901,72.432298 54.176532,72.485958 54.606163,72.539618 55.09273,72.661803 55.579298,72.783994 55.951805,72.927729 56.324316,73.071464 56.671164,73.246547 57.018009,73.421625 57.349901,73.639671 57.681794,73.857722 57.935722,74.057648 58.189651,74.257579 69.687993,85.854189 81.186337,97.450805 81.556624,97.836668 81.926905,98.222536 82.197965,98.554504 82.469025,98.886472 82.710251,99.24526 82.951476,99.604055 83.137577,99.967413 83.323689,100.33077 83.438387,100.68357 83.553095,101.03636 83.600585,101.35252 83.648075,101.66868 83.648392,101.84818 83.648714,102.02769 83.614364,102.27146 83.580014,102.51523 83.501124,102.78389 83.422234,103.05255 83.276515,103.33935 83.130801,103.62615 82.971373,103.85372 82.811951,104.0813 82.565554,104.34715 82.319162,104.61299 82.078881,104.82746 81.838594,105.04193 81.48618,105.30287 81.133765,105.56381 80.781345,105.78381 80.42893,106.0038 80.132474,106.16829 79.836013,106.33278 79.288727,106.6031 78.741442,106.87343 78.271633,107.07954 77.80183,107.28566 77.048941,107.58105 76.296052,107.87645 75.527144,108.15129 74.758235,108.42613 71.842794,109.38218 68.927352,110.33823 68.227203,110.59727 67.527065,110.85631 67.073845,111.04753 66.620626,111.23875 66.157429,111.46486 65.694232,111.69096 65.569899,111.81232 65.445571,111.93368 65.385041,112.06525 65.324501,112.19682 65.323974,112.3724 65.323446,112.54799 65.405706,112.7109 65.487976,112.87381 65.670025,113.05809 65.852073,113.24237 66.076335,113.40667 66.300602,113.57097 66.781169,113.85171 67.261737,114.13245 68.0787,114.5739 68.895663,115.01535 69.198746,115.20082 69.50183,115.38628 69.811947,115.61681 70.122064,115.84734 70.334221,116.07347 70.546373,116.2996 70.661588,116.52965 70.776798,116.7597 70.793158,116.96073 70.809518,117.16177 70.694767,117.50019 70.580016,117.8386 70.418795,118.15689 70.257584,118.47518 70.141224,118.65569 70.024869,118.83618 69.809356,119.08965 69.593854,119.34312 69.372922,119.52053 69.151985,119.69793 68.961457,119.81739 68.770923,119.93685 68.480889,120.07186 68.190849,120.20687 67.804442,120.33383 67.41803,120.46078 66.747193,120.62124 66.07635,120.7817 65.467635,120.92746 64.858914,121.07323 64.314272,121.24671 63.76963,121.42019 63.29494,121.62093 62.820253,121.82166 62.461954,122.01515 62.103659,122.20863 61.65513,122.50384 61.2066,122.79904 60.982492,122.97709 60.758381,123.15514 60.450844,123.42143 60.143309,123.68772 59.902061,123.93691 59.660817,124.18609 59.573067,124.33386 59.485317,124.48162 59.454967,124.61492 59.424617,124.74823 59.462857,124.88299 59.501087,125.01775 59.626198,125.15802 59.751305,125.29828 59.950331,125.42793 60.149356,125.55758 60.750213,125.85536 61.351069,126.15314 61.539628,126.2795 61.728184,126.40586 61.84005,126.53483 61.951917,126.6638 61.990997,126.80155 62.030077,126.9393 62.006857,127.04525 61.983637,127.1512 61.910337,127.29348 61.837037,127.43575 61.722447,127.56679 61.607857,127.69783 61.279082,127.9176 60.950303,128.13738 60.593319,128.3455 60.236331,128.55362 59.808392,128.77515 59.38045,128.99668 58.931921,129.19244 58.483391,129.3882 58.038629,129.55957 57.593864,129.73095 57.161299,129.87357 56.72873,130.01618 56.212415,130.15737 55.6961,130.29856 55.151457,130.40609 54.606813,130.51364 54.206341,130.56604 53.805868,130.61854 53.133073,130.63054 52.46028,130.64254 52.142624,130.59774 Z" + id="path24070" /> + <path + style="fill:#ffffff;stroke-width:0.0318262" + d="M 54.485501,89.169564 57.280292,87.425779 H 57.298062 57.315832 L 59.111218,88.361244 60.906602,89.296715 60.917012,89.286005 60.927412,89.275295 61.347012,86.775645 61.766611,84.276001 V 84.254051 84.232051 L 63.934793,85.94425 66.102981,87.656454 66.177131,87.564824 66.251281,87.473184 66.319011,87.28349 66.386741,87.093795 66.403101,86.682784 66.419461,86.271778 66.365341,85.988012 66.311221,85.704246 66.217811,85.466344 66.124391,85.228448 65.998422,85.042083 65.872448,84.855724 61.586011,80.558067 57.299571,76.260411 56.961594,75.93879 56.623621,75.61717 56.335748,75.423576 56.047872,75.229982 55.748136,75.08171 55.448396,74.933437 55.11743,74.824142 54.78646,74.714853 54.47205,74.645363 54.15764,74.575883 53.42077,74.575877 52.6839,74.575872 52.358788,74.645932 52.033676,74.715992 51.704717,74.82899 51.375758,74.941984 51.116751,75.070147 50.857744,75.198311 50.63348,75.34106 50.409215,75.483808 50.18495,75.665994 49.960685,75.848179 46.835915,78.941701 43.711144,82.035229 42.988733,82.778203 42.266321,83.521182 41.707649,84.108343 41.148978,84.695509 41.001442,84.867131 40.853906,85.038747 40.703539,85.260059 40.553171,85.481376 40.430671,85.7343 40.308171,85.98723 40.227711,86.240159 40.147251,86.493088 40.111031,86.793439 40.074811,87.093794 40.108561,87.33091 40.142311,87.56803 40.178141,87.678686 40.213971,87.789342 40.305061,87.969016 40.396151,88.148685 40.556751,88.307173 40.717353,88.465662 40.917801,88.558902 41.11825,88.652142 41.288026,88.687072 41.457801,88.722002 43.963184,88.720902 46.468567,88.719802 48.00316,86.095482 49.537754,83.471162 49.560084,83.457552 49.582414,83.443942 50.471654,86.975898 51.360893,90.507854 51.425813,90.769411 51.490733,91.030973 51.590738,90.971913 51.690742,90.912853 54.485537,89.169068 Z" + id="path24494" /> + <path + style="fill:#ffffff;stroke-width:0.0318262" + d="M 53.917336,112.5003 54.061506,112.4252 54.253733,112.29732 54.44596,112.16945 54.649541,111.97771 54.853119,111.78597 54.932619,111.6315 55.012119,111.47702 54.992729,111.375 54.973339,111.27299 54.917839,111.22339 54.862339,111.17389 54.779239,111.14269 54.696139,111.11149 54.042426,110.99603 53.388717,110.88058 51.690712,110.54877 49.992707,110.21696 48.695175,109.94893 47.397643,109.68091 46.164187,109.41123 44.93073,109.14156 44.189819,108.95619 43.448908,108.77082 43.196647,108.68682 42.944385,108.60282 42.755862,108.61592 42.56734,108.62902 42.52698,108.68352 42.48662,108.73802 42.50325,108.80082 42.51988,108.86362 42.67944,109.00136 42.839001,109.1391 43.170097,109.33373 43.501193,109.52836 44.08781,109.80855 44.674428,110.08873 45.403261,110.39143 46.132094,110.69414 46.828944,110.95209 47.525795,111.21004 48.178002,111.42769 48.830209,111.64534 49.283307,111.78411 49.736405,111.92289 50.329104,112.08188 50.921805,112.24087 51.434409,112.35227 51.947015,112.46368 52.363507,112.52648 52.779998,112.58928 53.276584,112.58228 53.773171,112.57528 Z" + id="path24492" /> + </g> + <rect + style="fill:#ffeedc;fill-opacity:1;stroke-width:1.02393;stroke-linecap:round;paint-order:markers fill stroke" + id="rect1" + width="112.78353" + height="27.059397" + x="27.565626" + y="270.71179" /> + <text + xml:space="preserve" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;font-family:'Liberation Serif';-inkscape-font-specification:'Liberation Serif';letter-spacing:0px;word-spacing:0px;fill:#000000;stroke-linecap:round;paint-order:markers fill stroke" + x="35.008026" + y="287.9397" + id="text1"><tspan + sodipodi:role="line" + id="tspan1" + x="35.008026" + y="287.9397" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Linux Libertine G';-inkscape-font-specification:'Linux Libertine G'">INKSCAPE 1.3</tspan></text> + </g> + </g> +</svg> diff --git a/packaging/wix/app_registration.xml b/packaging/wix/app_registration.xml new file mode 100644 index 0000000..0ab87ae --- /dev/null +++ b/packaging/wix/app_registration.xml @@ -0,0 +1,18 @@ +<CPackWiXPatch> + <CPackWiXFragment Id="CM_CP_inkscape.bin.inkscape.exe"> + <ProgId Id="Inkscape.SVG" Description="Scalable Vector Graphics" Icon="CM_FP_inkscape.bin.inkscape.exe"> + <Extension Id="svg"> + <Verb Id="open" TargetFile='CM_FP_inkscape.bin.inkscape.exe' Argument=""%1"" /> + </Extension> + </ProgId> + <ProgId Id="Inkscape.SVGZ" Description="Compressed Scalable Vector Graphics" Icon="CM_FP_inkscape.bin.inkscape.exe"> + <Extension Id="svgz"> + <Verb Id="open" TargetFile='CM_FP_inkscape.bin.inkscape.exe' Argument=""%1"" /> + </Extension> + </ProgId> + <RegistryKey Key="SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\inkscape.exe" Root="HKLM"> + <RegistryValue Type="string" Value="[#CM_FP_inkscape.bin.inkscape.exe]"/> + <RegistryValue Name="Path" Type="string" Value="[$CM_CP_inkscape.bin.inkscape.exe]"/> + </RegistryKey> + </CPackWiXFragment> +</CPackWiXPatch> diff --git a/packaging/wix/feature_attributes.xml b/packaging/wix/feature_attributes.xml new file mode 100644 index 0000000..3698314 --- /dev/null +++ b/packaging/wix/feature_attributes.xml @@ -0,0 +1,35 @@ +<!-- + set attributes for all features: + - AllowAdvertise="no" (to hide "This feature will be installed when required") + - InstallDefault="local" (to hide "This feature will be installed to run from network") + + this is ugly - investigate making this auto-updating + see also https://gitlab.kitware.com/cmake/cmake/merge_requests/742 + + + Empty features (i.e. features that only contain other features but no components) + need dummy components to ensure InstallDefault="local" works. + see http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Removing-Install-to-Run-From-Network-Feature-Option-td688625.html +--> + +<CPackWiXPatch> + <CPackWiXFragment Id="#PRODUCTFEATURE" AllowAdvertise="no" InstallDefault="local" /> + + <CPackWiXFragment Id="CM_G_group_1_program_files" AllowAdvertise="no" InstallDefault="local" Absent="disallow"> + <Component Id="dummy1" Directory="INSTALL_ROOT" Guid="7D08CAE1-A5A8-4C4B-A2B4-E97E2EA10FE4" KeyPath="yes" /> + </CPackWiXFragment> + <CPackWiXFragment Id="CM_G_group_2_inkscape_data" AllowAdvertise="no" InstallDefault="local"> + <Component Id="dummy2" Directory="INSTALL_ROOT" Guid="7405B66E-65E5-403B-B407-E39025587E46" KeyPath="yes" /> + </CPackWiXFragment> + <CPackWiXFragment Id="CM_G_group_3_translations" AllowAdvertise="no" InstallDefault="local"> + <Component Id="dummy3" Directory="INSTALL_ROOT" Guid="C2A35C47-B012-4DDF-B486-DD6A8DF42F5D" KeyPath="yes" /> + </CPackWiXFragment> + + <CPackWiXFragment Id="CM_C_inkscape" AllowAdvertise="no" InstallDefault="local" /> + <CPackWiXFragment Id="CM_C_python" AllowAdvertise="no" InstallDefault="local" /> + <CPackWiXFragment Id="CM_C_examples" AllowAdvertise="no" InstallDefault="local" /> + <CPackWiXFragment Id="CM_C_extensions" AllowAdvertise="no" InstallDefault="local" /> + <CPackWiXFragment Id="CM_C_tutorials" AllowAdvertise="no" InstallDefault="local" /> + <CPackWiXFragment Id="CM_C_dictionaries" AllowAdvertise="no" InstallDefault="local" /> + <!-- should also include every single CM_C_translations.* but adding them manually does not seem reasonable --> +</CPackWiXPatch> diff --git a/packaging/wix/featuretree_nolicense.wxs b/packaging/wix/featuretree_nolicense.wxs new file mode 100644 index 0000000..769b5fe --- /dev/null +++ b/packaging/wix/featuretree_nolicense.wxs @@ -0,0 +1,42 @@ +<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> + <Fragment> + <UI Id="WixUI_FeatureTree_NoLicense"> + <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" /> + <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" /> + <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" /> + + <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" /> + <Property Id="WixUI_Mode" Value="FeatureTree" /> + + <DialogRef Id="ErrorDlg" /> + <DialogRef Id="FatalError" /> + <DialogRef Id="FilesInUse" /> + <DialogRef Id="MsiRMFilesInUse" /> + <DialogRef Id="PrepareDlg" /> + <DialogRef Id="ProgressDlg" /> + <DialogRef Id="ResumeDlg" /> + <DialogRef Id="UserExit" /> + + <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish> + + <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="CustomizeDlg">NOT Installed</Publish> + <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">Installed AND PATCH</Publish> + <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="1">Installed</Publish> + <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2">NOT Installed</Publish> + <Publish Dialog="CustomizeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> + + <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="CustomizeDlg" Order="1">NOT Installed OR WixUI_InstallMode = "Change"</Publish> + <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2">Installed AND NOT PATCH</Publish> + <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="3">Installed AND PATCH</Publish> + + <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish> + + <Publish Dialog="MaintenanceTypeDlg" Control="ChangeButton" Event="NewDialog" Value="CustomizeDlg">1</Publish> + <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> + <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish> + <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish> + </UI> + + <UIRef Id="WixUI_Common" /> + </Fragment> +</Wix> |