Merge remote-tracking branch 'remotes/origin/2.1' into 2.2

# Conflicts:
#	gns3/ui/main_window_ui.py
#	gns3/ui/resources_rc.py
This commit is contained in:
grossmj
2017-11-27 14:19:29 +07:00
62 changed files with 79129 additions and 137334 deletions

View File

@@ -1,2 +1,2 @@
branch:
2.0
2.2

View File

@@ -7,7 +7,8 @@ script:
- docker build -t gns3-gui-test .
- docker run gns3-gui-test
before_deploy:
pip install twine
- sudo pip install twine
- sudo pip install urllib3[secure]
deploy:
provider: pypi
user: noplay

View File

@@ -1,5 +1,32 @@
# Change Log
## 2.1.0 09/11/2017
* Update dynamips binary on OSX
## 2.1.0rc4 07/11/2017
* Accurate upload progress dialogs for large files
* Disable direct file upload on default
* Add registry version 5
* Direct file upload enabled on default
* Progress Dialog: don't count finished queries done in background
* Add debug messages to file upload
* Image Upload Manager for uploading
* Fix race condition on NodesDockWidget, fixes: #2304
* Do not write an error message when importing non existing config from a directory. Fixes #2296.
* Fix bug when replacing Telnet path on OSX. Ref #2274.
* Back to development on 2.1.0rc3
## 2.1.0rc3 19/10/2017
* Add debug when using Telnet path on OSX. Ref #2274.
* Force to use the telnet client embedded in DMG. Ref #2274.
* Upload directly to compute - experimental feature
* Filter additional QXcbConnection log messages
* Do not add missing file extension for screenshot file names on Mac. Fixes #2287.
* Log Qt messages as info instead of error. Ref #2281.
## 2.1.0rc2 04/10/2017
* Only show "can't get settings from controller" message in debug mode.

View File

@@ -390,7 +390,7 @@ class BaseNode(QtCore.QObject):
file=file), self._importConfigCallback,
pathlib.Path(os.path.join(directory, filename)))
else:
self.error_signal.emit(self.id(), "no script file could be found, expected file name: {}".format(filename))
log.warning("{}: config file '{}' not found".format(self.name(), filename))
def _importConfigCallback(self, result, error=False, **kwargs):
if error:

View File

@@ -19,10 +19,10 @@
Compute summary view that list all the compute, their status.
"""
import sip
from .qt import QtGui, QtCore, QtWidgets
from .compute_manager import ComputeManager
from .topology import Topology
from .node import Node
import logging
log = logging.getLogger(__name__)
@@ -78,6 +78,21 @@ class ComputeItem(QtWidgets.QTreeWidgetItem):
self.setIcon(0, QtGui.QIcon(':/icons/led_red.svg'))
self._parent.sortItems(0, QtCore.Qt.AscendingOrder)
# add nodes belonging to this compute
self.takeChildren()
nodes = Topology.instance().nodes()
for node in nodes:
if node.compute().id() == self._compute.id():
item = QtWidgets.QTreeWidgetItem()
item.setText(0, node.name())
if node.status() == Node.started:
item.setIcon(0, QtGui.QIcon(':/icons/led_green.svg'))
elif node.status() == Node.suspended:
item.setIcon(0, QtGui.QIcon(':/icons/led_yellow.svg'))
else:
item.setIcon(0, QtGui.QIcon(':/icons/led_red.svg'))
self.addChild(item)
self.sortChildren(0, QtCore.Qt.AscendingOrder)
class ComputeSummaryView(QtWidgets.QTreeWidget):

View File

@@ -92,6 +92,12 @@ class Controller(QtCore.QObject):
self._http_client.connection_disconnected_signal.connect(self._httpClientDisconnectedSlot)
self._connectingToServer()
def getHttpClient(self):
"""
:return: Instance of HTTP client to communicate with the server
"""
return self._http_client
def setDisplayError(self, val):
"""
Allow error to be visible or not
@@ -181,6 +187,14 @@ class Controller(QtCore.QObject):
return compute_id
return compute_id
def getEndpoint(self, path, compute_id, *args, **kwargs):
"""
API post on a specific compute
"""
compute_id = self.__fix_compute_id(compute_id)
path = "/computes/endpoint/{}{}".format(compute_id, path)
return self.get(path, *args, **kwargs)
def put(self, *args, **kwargs):
return self.createHTTPQuery("PUT", *args, **kwargs)

View File

@@ -51,7 +51,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "sync+https://8b9c164183434bd7a7a76a64e92f3721:f6e37f470bfe4e1cb60e0e63a87cf72c@sentry.io/38506"
DSN = "sync+https://0e7b82c1729b4b08969aabc0153247bf:526f31cf89814a99a39cf4e086711feb@sentry.io/38506"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):

View File

@@ -32,6 +32,7 @@ from ..utils.progress_dialog import ProgressDialog
from ..compute_manager import ComputeManager
from ..controller import Controller
from ..local_config import LocalConfig
from ..image_upload_manager import ImageUploadManager
class ApplianceWizard(QtWidgets.QWizard, Ui_ApplianceWizard):
@@ -75,8 +76,8 @@ class ApplianceWizard(QtWidgets.QWizard, Ui_ApplianceWizard):
self.uiLocalRadioButton.setText("Install the appliance on the main server")
else:
if not path.endswith('.builtin.gns3a'):
destination = Config().appliances_dir
try:
destination = Config().appliances_dir
os.makedirs(destination, exist_ok=True)
destination = os.path.join(destination, os.path.basename(path))
shutil.copy(path, destination)
@@ -419,7 +420,11 @@ class ApplianceWizard(QtWidgets.QWizard, Ui_ApplianceWizard):
except OSError as e:
QtWidgets.QMessageBox.warning(self.parent(), "Add appliance", "Can't access to the image file {}: {}.".format(path, str(e)))
return
image.upload(self._compute_id, callback=self._imageUploadedCallback)
image_upload_manger = ImageUploadManager(
image, Controller.instance(), self._compute_id,
self._imageUploadedCallback, LocalConfig.instance().directFileUpload())
image_upload_manger.upload()
def _getQemuBinariesFromServerCallback(self, result, error=False, **kwargs):
"""
@@ -499,7 +504,12 @@ class ApplianceWizard(QtWidgets.QWizard, Ui_ApplianceWizard):
for image in appliance_configuration["images"]:
if image["location"] == "local":
image = Image(self._appliance.emulator(), image["path"], filename=image["filename"])
image.upload(self._compute_id, self._applianceImageUploadedCallback)
image_upload_manger = ImageUploadManager(
image, Controller.instance(), self._compute_id,
self._applianceImageUploadedCallback, LocalConfig.instance().directFileUpload())
image_upload_manger.upload()
self._image_uploading_count += 1
def _applianceImageUploadedCallback(self, result, error=False, **kwargs):

View File

@@ -40,7 +40,8 @@ class IdlePCDialog(QtWidgets.QDialog, Ui_IdlePCDialog):
self._idlepcs = idlepcs
for value in self._idlepcs:
match = re.search(r"^(0x[0-9a-f]+)\s+\[(\d+)\]$", value)
# validate idle-pc format, e.g. 0x60c09aa0
match = re.search(r"^(0x[0-9a-f]{8})\s+\[(\d+)\]$", value)
if match:
idlepc = match.group(1)
count = int(match.group(2))

View File

@@ -31,6 +31,7 @@ from .link import Link
from .node import Node
from .modules import MODULES
from .modules.module_error import ModuleError
from .modules.builtin import Builtin
from .settings import GRAPHICS_VIEW_SETTINGS
from .topology import Topology
from .appliance_manager import ApplianceManager
@@ -1078,6 +1079,15 @@ class GraphicsView(QtWidgets.QGraphicsView):
self._main_window.run_later(counter, callback)
counter += delay
def consoleFromAllItems(self):
"""
Console from all scene items, except builtin devices.
"""
items = [item for item in self.scene().items()
if not (isinstance(item, NodeItem) and isinstance(item.node().module(), Builtin))]
self.consoleFromItems(items)
def consoleActionSlot(self):
"""
Slot to receive events from the console action in the

View File

@@ -25,6 +25,8 @@ import base64
import datetime
import ipaddress
import urllib.request
import urllib.parse
from .version import __version__, __version_info__
from .qt import QtCore, QtNetwork, qpartial, sip_is_deleted, QtWebSockets
@@ -49,17 +51,13 @@ class HTTPClient(QtCore.QObject):
:param network_manager: A QT network manager
"""
# How many times we need to retry a connection
MAX_RETRY_CONNECTION = 5
# Callback class used for displaying progress
_progress_callback = None
connection_connected_signal = QtCore.Signal()
connection_disconnected_signal = QtCore.Signal()
def __init__(self, settings, network_manager=None):
def __init__(self, settings, network_manager=None, max_retry_connection=5):
super().__init__()
self._protocol = settings.get("protocol", "http")
@@ -74,8 +72,9 @@ class HTTPClient(QtCore.QObject):
self._port = int(settings["port"])
self._user = settings.get("user", None)
self._password = settings.get("password", None)
# How many time we have retry connection
# How many time we have already retried connection
self._retry = 0
self._max_retry_connection = max_retry_connection
self._connected = False
self._shutdown = False # Shutdown in progress
self._accept_insecure_certificate = settings.get("accept_insecure_certificate", None)
@@ -84,7 +83,6 @@ class HTTPClient(QtCore.QObject):
# query and disconnect if time is too long between two query
self._last_query_timestamp = None
self._max_time_difference_between_queries = None
if network_manager:
self._network_manager = network_manager
else:
@@ -169,6 +167,25 @@ class HTTPClient(QtCore.QObject):
self.createHTTPQuery("POST", "/shutdown", None, showProgress=False)
self._shutdown = True
def getNetworkManager(self):
"""
:return: instance of NetworkManager
"""
return self._network_manager
def setMaxRetryConnection(self, retries):
"""
Sets how many times we need to retry a connection
:param retries: integer
"""
self._max_retry_connection = retries
def getMaxRetryConnection(self):
"""
Returns how many times we need to retry a connection
"""
return self._max_retry_connection
def _notify_progress_start_query(self, query_id, progress_text, response):
"""
Called when a query start
@@ -192,7 +209,7 @@ class HTTPClient(QtCore.QObject):
Called when a query upload progress
"""
if not sip_is_deleted(HTTPClient._progress_callback):
HTTPClient._progress_callback.progress_signal.emit(query_id, sent, total)
HTTPClient._progress_callback.progress_signal.emit(query_id, str(sent), str(total))
def _notify_progress_download(self, query_id, sent, total):
"""
@@ -201,7 +218,7 @@ class HTTPClient(QtCore.QObject):
if not sip_is_deleted(HTTPClient._progress_callback):
# abs() for maxium because sometimes the system send negative
# values
HTTPClient._progress_callback.progress_signal.emit(query_id, sent, abs(total))
HTTPClient._progress_callback.progress_signal.emit(query_id, str(sent), str(abs(total)))
@classmethod
def setProgressCallback(cls, progress_callback):
@@ -329,7 +346,7 @@ class HTTPClient(QtCore.QObject):
msg = "Cannot connect to {}. Please check if GNS3 is allowed in your antivirus and firewall. And that server version is {}.".format(self.url(), __version__)
for request, callback in self._query_waiting_connections:
if callback is not None:
callback({"message": msg}, error=True, server=server)
callback({"message": msg}, error=True, server=server, connection_error=True)
self._query_waiting_connections = []
def _retryConnection(self, server=None):
@@ -349,7 +366,7 @@ class HTTPClient(QtCore.QObject):
"""
if error is not False:
if self._retry < self.MAX_RETRY_CONNECTION:
if self._retry < self.getMaxRetryConnection():
self._retryConnection(server=server)
return
for request, callback in self._query_waiting_connections:
@@ -358,7 +375,7 @@ class HTTPClient(QtCore.QObject):
return
if "version" not in params or "local" not in params:
if self._retry < self.MAX_RETRY_CONNECTION:
if self._retry < self.getMaxRetryConnection():
self._retryConnection(server=server)
return
msg = "The remote server {} is not a GNS3 server".format(self.url())
@@ -737,3 +754,23 @@ class HTTPClient(QtCore.QObject):
except (OSError, http.client.BadStatusLine, ValueError) as e:
log.debug("Error during get on {}:{}: {}".format(self.host(), self.port(), e))
return 0, None
@classmethod
def fromUrl(cls, url, network_manager=None, base_settings=None):
"""
Returns HttpClient instance based on the url
:param url: Url to parse
:param network_manager: Optional network_manager
:param base_settings: Source of the settings, if necessary
:return: HttpClient
"""
settings = {}
if base_settings is not None:
settings.update(**base_settings)
parse_results = urllib.parse.urlparse(url)
settings['protocol'] = parse_results.scheme
settings['host'] = parse_results.hostname
settings['port'] = parse_results.port
settings['user'] = parse_results.username
settings['password'] = parse_results.password
return cls(settings, network_manager)

View File

@@ -25,6 +25,7 @@ from gns3.settings import LOCAL_SERVER_SETTINGS
from gns3.controller import Controller
from gns3.utils.file_copy_worker import FileCopyWorker
from gns3.utils.progress_dialog import ProgressDialog
from gns3.registry.image import Image
class ImageManager:
@@ -33,7 +34,29 @@ class ImageManager:
# Remember if we already ask the user about this image for this server
self._asked_for_this_image = {}
def askCopyUploadImage(self, parent, path, server, node_type):
def _getUniqueDestinationPath(self, source_image, node_type, path):
"""
Get a unique destination path (with counter).
"""
if not os.path.exists(path):
return path
path, extension = os.path.splitext(path)
counter = 1
new_path = "{}-{}{}".format(path, counter, extension)
while os.path.exists(new_path):
destination_image = Image(node_type, new_path, filename=os.path.basename(new_path))
try:
if source_image.md5sum == destination_image.md5sum:
# the source and destination images are identical
return new_path
except OSError:
continue
counter += 1
new_path = "{}-{}{}".format(path, counter, extension)
return new_path
def askCopyUploadImage(self, parent, source_path, server, node_type):
"""
Ask user for copying the image to the default directory or upload
it to remote server.
@@ -46,34 +69,51 @@ class ImageManager:
"""
if (server and server != "local") or Controller.instance().isRemote():
return self._uploadImageToRemoteServer(path, server, node_type)
return self._uploadImageToRemoteServer(source_path, server, node_type)
else:
destination_directory = self.getDirectoryForType(node_type)
if os.path.normpath(os.path.dirname(path)) != destination_directory:
# the IOS image is not in the default images directory
destination_path = os.path.join(destination_directory, os.path.basename(source_path))
source_filename = os.path.basename(source_path)
destination_filename = os.path.basename(destination_path)
if os.path.normpath(os.path.dirname(source_path)) != destination_directory:
# the image is not in the default images directory
if source_filename == destination_filename:
# the filename already exists in the default images directory
source_image = Image(node_type, source_path, filename=source_filename)
destination_image = Image(node_type, destination_path, filename=destination_filename)
try:
if source_image.md5sum == destination_image.md5sum:
# the source and destination images are identical
return source_path
except OSError as e:
QtWidgets.QMessageBox.critical(parent, 'Image', 'Cannot compare image file {} with {}: {}.'.format(source_path, destination_path, str(e)))
return source_path
# find a new unique path to avoid overwriting existing destination file
destination_path = self._getUniqueDestinationPath(source_image, node_type, destination_path)
reply = QtWidgets.QMessageBox.question(parent,
'Image',
'Would you like to copy {} to the default images directory'.format(os.path.basename(path)),
'Would you like to copy {} to the default images directory'.format(source_filename),
QtWidgets.QMessageBox.Yes,
QtWidgets.QMessageBox.No)
if reply == QtWidgets.QMessageBox.Yes:
destination_path = os.path.join(destination_directory, os.path.basename(path))
try:
os.makedirs(destination_directory, exist_ok=True)
except OSError as e:
QtWidgets.QMessageBox.critical(parent, 'Image', 'Could not create destination directory {}: {}'.format(destination_directory, str(e)))
return path
worker = FileCopyWorker(path, destination_path)
progress_dialog = ProgressDialog(worker, 'Image', 'Copying {}'.format(os.path.basename(path)), 'Cancel', busy=True, parent=parent)
return source_path
worker = FileCopyWorker(source_path, destination_path)
progress_dialog = ProgressDialog(worker, 'Image', 'Copying {}'.format(source_filename), 'Cancel', busy=True, parent=parent)
progress_dialog.show()
progress_dialog.exec_()
errors = progress_dialog.errors()
if errors:
QtWidgets.QMessageBox.critical(parent, 'Image', '{}'.format(''.join(errors)))
return path
return source_path
else:
path = destination_path
return path
source_path = destination_path
return source_path
def _uploadImageToRemoteServer(self, path, server, node_type):
"""
@@ -95,22 +135,9 @@ class ImageManager:
raise Exception('Invalid node type')
filename = self._getRelativeImagePath(path, node_type).replace("\\", "/")
Controller.instance().postCompute('{}/{}'.format(upload_endpoint, filename), server, None, body=pathlib.Path(path), progressText="Uploading {}".format(filename), timeout=None)
return filename
def _askForUploadMissingImage(self, filename, server):
from gns3.main_window import MainWindow
parent = MainWindow.instance()
reply = QtWidgets.QMessageBox.warning(parent,
'Image',
'{} is missing on server {} but exist on your computer. Do you want to upload it?'.format(filename, server.url()),
QtWidgets.QMessageBox.Yes,
QtWidgets.QMessageBox.No)
if reply == QtWidgets.QMessageBox.Yes:
return True
return False
def _getRelativeImagePath(self, path, node_type):
"""
Get a path relative to images directory path

View File

@@ -0,0 +1,91 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2017 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import pathlib
import urllib.parse
from gns3.http_client import HTTPClient
import logging
log = logging.getLogger(__name__)
class ImageUploadManager(object):
"""
Manager over the image upload. Encapsulates file uploads to computes or via controller.
"""
def __init__(self, image, controller, compute_id, callback=None, directFileUpload=False):
self._image = image
self._compute_id = compute_id
self._callback = callback
self._directFileUpload = directFileUpload
self._controller = controller
def upload(self):
if self._directFileUpload:
# first obtain endpoint and know when target request
self._controller.getEndpoint(
self._getComputePath(), self._compute_id, self._onLoadEndpointCallback, showProgress=False)
else:
self._fileUploadToController()
def _getComputePath(self):
return '/{emulator}/images/{filename}'.format(
emulator=self._image.emulator, filename=self._image.filename)
def _onLoadEndpointCallback(self, result, error=False, **kwargs):
if error:
if "message" in result:
log.error("Error while getting endpoint: {}".format(result["message"]))
return
# we know where is the endpoint and we trying to post there a file
endpoint = result['endpoint']
self._fileUploadToCompute(endpoint)
def _checkIfSuccessfulCallback(self, result, error=False, **kwargs):
if error:
connection_error = kwargs.get('connection_error', False)
if connection_error:
log.debug("During direct file upload compute is not visible. Fallback to upload via controller.")
# there was an issue with connection, probably we don't have a direct access to compute
# we need to fallback to uploading files via controller
self._fileUploadToController()
else:
if "message" in result:
log.error("Error while direct file upload: {}".format(result["message"]))
return
self._callback(result, error, **kwargs)
def _fileUploadToCompute(self, endpoint):
log.info("Uploading file to compute: {}".format(endpoint))
parse_results = urllib.parse.urlparse(endpoint)
network_manager = self._controller.getHttpClient().getNetworkManager()
client = HTTPClient.fromUrl(endpoint, network_manager=network_manager)
# We don't retry connection as in case of fail we try direct file upload
client.setMaxRetryConnection(0)
client.createHTTPQuery(
'POST', parse_results.path, self._checkIfSuccessfulCallback, body=pathlib.Path(self._image.path),
progressText="Uploading {}".format(self._image.filename), timeout=None, prefix="")
def _fileUploadToController(self):
log.info("Uploading file to controller: {}".format(self._getComputePath()))
self._controller.postCompute(
self._getComputePath(), self._compute_id, self._callback, body=pathlib.Path(self._image.path),
progressText="Uploading {}".format(self._image.filename), timeout=None)

View File

@@ -362,7 +362,7 @@ class Link(QtCore.QObject):
try:
os.remove(self._capture_file_path)
except OSError as e:
log.error("Can't remove file {}".format(self._capture_file_path))
log.error("Can't remove file {}: {}".format(self._capture_file_path, e))
self._capture_file_path = None
Controller.instance().post(
"/projects/{project_id}/links/{link_id}/stop_capture".format(

View File

@@ -461,6 +461,20 @@ class LocalConfig(QtCore.QObject):
settings["multi_profiles"] = value
self.saveSectionSettings("MainWindow", settings)
def directFileUpload(self):
"""
:returns: Boolean. True if direct_file_upload is enabled
"""
from gns3.settings import GENERAL_SETTINGS
return self.loadSectionSettings("MainWindow", GENERAL_SETTINGS)["direct_file_upload"]
def setDirectFileUpload(self, value):
from gns3.settings import GENERAL_SETTINGS
settings = self.loadSectionSettings("MainWindow", GENERAL_SETTINGS)
settings["direct_file_upload"] = value
self.saveSectionSettings("MainWindow", settings)
@staticmethod
def instance():
"""

View File

@@ -18,6 +18,7 @@
import sys
import os
import faulthandler
# Try to install updates & restart application if an update is installed
try:
@@ -110,6 +111,9 @@ def main():
Entry point for GNS3 GUI.
"""
# Get Python tracebacks explicitly, on a fault like segfault
faulthandler.enable()
# Sometimes (for example at first launch) the OSX app service launcher add
# an extra argument starting with -psn_. We filter it
if sys.platform.startswith("darwin"):

View File

@@ -827,7 +827,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow):
Slot called when connecting to all the nodes using the console.
"""
self.uiGraphicsView.consoleFromItems(self.uiGraphicsView.scene().items())
self.uiGraphicsView.consoleFromAllItems()
def _addNoteActionSlot(self):
"""

View File

@@ -82,12 +82,11 @@ class FrameRelaySwitch(Node):
Local node ID is {id}
Server's Node ID is {node_id}
Hardware is Dynamips emulated simple Frame relay switch
Switch's server runs on {host}:{port}
Switch's server runs on {host}
""".format(name=self.name(),
id=self.id(),
node_id=self._node_id,
host=self._compute.host(),
port=self._compute.port())
host=self._compute.name())
port_info = ""
for port in self._ports:

View File

@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file '/home/grossmj/PycharmProjects/gns3-gui/gns3/modules/builtin/ui/frame_relay_switch_configuration_page.ui'
# Form implementation generated from reading ui file '/home/dominik/projects/gns3-gui/gns3/modules/builtin/ui/frame_relay_switch_configuration_page.ui'
#
# Created by: PyQt5 UI code generator 5.5.1
# Created by: PyQt5 UI code generator 5.8.2
#
# WARNING! All changes made in this file will be lost!
@@ -134,7 +134,7 @@ class Ui_frameRelaySwitchConfigPageWidget(object):
def retranslateUi(self, frameRelaySwitchConfigPageWidget):
_translate = QtCore.QCoreApplication.translate
frameRelaySwitchConfigPageWidget.setWindowTitle(_translate("frameRelaySwitchConfigPageWidget", "Frame Relay Switch"))
frameRelaySwitchConfigPageWidget.setWhatsThis(_translate("frameRelaySwitchConfigPageWidget", "<html><head/><body><p>This is a simple Frame Relay switch. Only serial links can be connected to it. <span style=\" font-weight:600;\">Note that only the Frame-Relay LMI AINSI type is supported.</span></p></body></html>"))
frameRelaySwitchConfigPageWidget.setWhatsThis(_translate("frameRelaySwitchConfigPageWidget", "<html><head/><body><p>This is a simple Frame Relay switch. Only serial links can be connected to it. <span style=\" font-weight:600;\">Note that only the Frame-Relay LMI ANSI type is supported.</span></p></body></html>"))
self.uiGeneralGroupBox.setTitle(_translate("frameRelaySwitchConfigPageWidget", "General"))
self.uiNameLabel.setText(_translate("frameRelaySwitchConfigPageWidget", "Name:"))
self.uiFrameRelayMappingGroupBox.setTitle(_translate("frameRelaySwitchConfigPageWidget", "Mapping"))

View File

@@ -217,13 +217,15 @@ class IOSRouterWizard(VMWithImagesWizard, Ui_IOSRouterWizard):
"""
image = self.uiIOSImageLineEdit.text()
platform = self.uiPlatformComboBox.currentText()
Controller.instance().postCompute("/autoidlepc",
ram = self.uiRamSpinBox.value()
Controller.instance().postCompute("/auto_idlepc",
self._compute_id,
self._computeAutoIdlepcCallback,
timeout=None,
body={
"image": image,
"platform": platform
"platform": platform,
"ram": ram
})
self.uiIdlePCFinderPushButton.setEnabled(False)

View File

@@ -302,7 +302,7 @@ class Router(Node):
specific_info=router_specific_info,
ram=self._settings["ram"],
nvram=self._settings["nvram"],
host=self.compute().id(),
host=self.compute().name(),
console=self._settings["console"],
aux=self._settings["aux"],
image_name=os.path.basename(self._settings["image"]),

View File

@@ -75,6 +75,7 @@ class Qemu(Module):
if sys.platform.startswith("linux"):
server_settings = {
"enable_kvm": self._settings["enable_kvm"],
"require_kvm": self._settings["require_kvm"]
}
LocalServerConfig.instance().saveSettings(self.__class__.__name__, server_settings)

View File

@@ -40,11 +40,24 @@ class QemuPreferencesPage(QtWidgets.QWidget, Ui_QemuPreferencesPageWidget):
# connect signals
self.uiRestoreDefaultsPushButton.clicked.connect(self._restoreDefaultsSlot)
self.uiKVMAccelerationCheckBox.stateChanged.connect(self._kvmAccelerationSlot)
if not sys.platform.startswith("linux"):
# KVM can only run on Linux
self.uiKVMAccelerationCheckBox.hide()
def _kvmAccelerationSlot(self, state):
"""
Slot to enable or not the require KVM acceleration check box.
"""
if state:
self.uiRequireKVMAccelerationCheckBox.setEnabled(True)
self.uiRequireKVMAccelerationCheckBox.setChecked(True)
else:
self.uiRequireKVMAccelerationCheckBox.setEnabled(False)
self.uiRequireKVMAccelerationCheckBox.setChecked(False)
def _restoreDefaultsSlot(self):
"""
Slot to populate the page widgets with the default settings.
@@ -60,6 +73,7 @@ class QemuPreferencesPage(QtWidgets.QWidget, Ui_QemuPreferencesPageWidget):
"""
self.uiKVMAccelerationCheckBox.setChecked(settings["enable_kvm"])
self.uiRequireKVMAccelerationCheckBox.setChecked(settings["require_kvm"])
def loadPreferences(self):
"""
@@ -74,5 +88,6 @@ class QemuPreferencesPage(QtWidgets.QWidget, Ui_QemuPreferencesPageWidget):
Saves QEMU preferences.
"""
new_settings = {"enable_kvm": self.uiKVMAccelerationCheckBox.isChecked()}
new_settings = {"enable_kvm": self.uiKVMAccelerationCheckBox.isChecked(),
"require_kvm": self.uiRequireKVMAccelerationCheckBox.isChecked()}
Qemu.instance().setSettings(new_settings)

View File

@@ -20,7 +20,6 @@ QEMU VM implementation.
"""
from gns3.node import Node
from gns3.image_manager import ImageManager
from .settings import QEMU_VM_SETTINGS

View File

@@ -23,6 +23,7 @@ from gns3.node import Node
QEMU_SETTINGS = {
"enable_kvm": True,
"require_kvm": True,
}
QEMU_VM_SETTINGS = {

View File

@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>366</width>
<height>183</height>
<width>414</width>
<height>223</height>
</rect>
</property>
<property name="windowTitle">
@@ -37,6 +37,13 @@
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="uiRequireKVMAccelerationCheckBox">
<property name="text">
<string>Require KVM acceleration</string>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">

View File

@@ -2,8 +2,7 @@
# Form implementation generated from reading ui file '/home/grossmj/PycharmProjects/gns3-gui/gns3/modules/qemu/ui/qemu_preferences_page.ui'
#
# Created: Wed Dec 7 21:25:31 2016
# by: PyQt5 UI code generator 5.2.1
# Created by: PyQt5 UI code generator 5.5.1
#
# WARNING! All changes made in this file will be lost!
@@ -12,7 +11,7 @@ from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_QemuPreferencesPageWidget(object):
def setupUi(self, QemuPreferencesPageWidget):
QemuPreferencesPageWidget.setObjectName("QemuPreferencesPageWidget")
QemuPreferencesPageWidget.resize(366, 183)
QemuPreferencesPageWidget.resize(414, 223)
self.verticalLayout = QtWidgets.QVBoxLayout(QemuPreferencesPageWidget)
self.verticalLayout.setObjectName("verticalLayout")
self.uiTabWidget = QtWidgets.QTabWidget(QemuPreferencesPageWidget)
@@ -26,6 +25,9 @@ class Ui_QemuPreferencesPageWidget(object):
self.uiKVMAccelerationCheckBox = QtWidgets.QCheckBox(self.uiServerSettingsTabWidget)
self.uiKVMAccelerationCheckBox.setObjectName("uiKVMAccelerationCheckBox")
self.verticalLayout_2.addWidget(self.uiKVMAccelerationCheckBox)
self.uiRequireKVMAccelerationCheckBox = QtWidgets.QCheckBox(self.uiServerSettingsTabWidget)
self.uiRequireKVMAccelerationCheckBox.setObjectName("uiRequireKVMAccelerationCheckBox")
self.verticalLayout_2.addWidget(self.uiRequireKVMAccelerationCheckBox)
spacerItem = QtWidgets.QSpacerItem(20, 5, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_2.addItem(spacerItem)
self.uiTabWidget.addTab(self.uiServerSettingsTabWidget, "")
@@ -47,6 +49,7 @@ class Ui_QemuPreferencesPageWidget(object):
_translate = QtCore.QCoreApplication.translate
QemuPreferencesPageWidget.setWindowTitle(_translate("QemuPreferencesPageWidget", "QEMU"))
self.uiKVMAccelerationCheckBox.setText(_translate("QemuPreferencesPageWidget", "Enable KVM acceleration"))
self.uiRequireKVMAccelerationCheckBox.setText(_translate("QemuPreferencesPageWidget", "Require KVM acceleration"))
self.uiTabWidget.setTabText(self.uiTabWidget.indexOf(self.uiServerSettingsTabWidget), _translate("QemuPreferencesPageWidget", "Local settings"))
self.uiRestoreDefaultsPushButton.setText(_translate("QemuPreferencesPageWidget", "Restore defaults"))

View File

@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>594</width>
<height>645</height>
<width>655</width>
<height>696</height>
</rect>
</property>
<property name="windowTitle">
@@ -24,16 +24,7 @@
<string>General settings</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_4">
<property name="leftMargin">
<number>10</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<property name="rightMargin">
<number>10</number>
</property>
<property name="bottomMargin">
<property name="margin">
<number>10</number>
</property>
<item row="4" column="0">
@@ -203,16 +194,7 @@
<string>HDD</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_3">
<property name="leftMargin">
<number>10</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<property name="rightMargin">
<number>10</number>
</property>
<property name="bottomMargin">
<property name="margin">
<number>10</number>
</property>
<item>
@@ -435,16 +417,7 @@
<string>CD/DVD</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_4">
<property name="leftMargin">
<number>10</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<property name="rightMargin">
<number>10</number>
</property>
<property name="bottomMargin">
<property name="margin">
<number>10</number>
</property>
<item>
@@ -500,16 +473,7 @@
<string>Network</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_5">
<property name="leftMargin">
<number>10</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<property name="rightMargin">
<number>10</number>
</property>
<property name="bottomMargin">
<property name="margin">
<number>10</number>
</property>
<item row="6" column="1">
@@ -633,16 +597,7 @@
<string>Advanced settings</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_2">
<property name="leftMargin">
<number>10</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<property name="rightMargin">
<number>10</number>
</property>
<property name="bottomMargin">
<property name="margin">
<number>10</number>
</property>
<item>
@@ -836,7 +791,18 @@
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="uiQemuOptionsLineEdit"/>
<widget class="QLineEdit" name="uiQemuOptionsLineEdit">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Variable replacements:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;%vm-name% =VM name&lt;/li&gt;
&lt;li&gt;%vm-id% =VM ID&lt;/li&gt;
&lt;li&gt;%project-id% = project ID&lt;/li&gt;
&lt;li&gt;%project-path% = project path&lt;/li&gt;
&lt;/ul&gt;
&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
<item row="1" column="0" colspan="2">
<widget class="QCheckBox" name="uiBaseVMCheckBox">

View File

@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file '/Users/noplay/code/gns3/gns3-gui/gns3/modules/qemu/ui/qemu_vm_configuration_page.ui'
# Form implementation generated from reading ui file '/home/grossmj/PycharmProjects/gns3-gui/gns3/modules/qemu/ui/qemu_vm_configuration_page.ui'
#
# Created by: PyQt5 UI code generator 5.8
# Created by: PyQt5 UI code generator 5.5.1
#
# WARNING! All changes made in this file will be lost!
@@ -11,7 +11,7 @@ from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_QemuVMConfigPageWidget(object):
def setupUi(self, QemuVMConfigPageWidget):
QemuVMConfigPageWidget.setObjectName("QemuVMConfigPageWidget")
QemuVMConfigPageWidget.resize(594, 645)
QemuVMConfigPageWidget.resize(655, 696)
self.verticalLayout = QtWidgets.QVBoxLayout(QemuVMConfigPageWidget)
self.verticalLayout.setObjectName("verticalLayout")
self.uiQemutabWidget = QtWidgets.QTabWidget(QemuVMConfigPageWidget)
@@ -493,6 +493,14 @@ class Ui_QemuVMConfigPageWidget(object):
self.uiProcessPriorityComboBox.setItemText(5, _translate("QemuVMConfigPageWidget", "Very low"))
self.groupBox.setTitle(_translate("QemuVMConfigPageWidget", "Additional settings"))
self.uiQemuOptionsLabel.setText(_translate("QemuVMConfigPageWidget", "Options:"))
self.uiQemuOptionsLineEdit.setToolTip(_translate("QemuVMConfigPageWidget", "<html><head/><body><p>Variable replacements:</p>\n"
"<ul>\n"
"<li>%vm-name% =VM name</li>\n"
"<li>%vm-id% =VM ID</li>\n"
"<li>%project-id% = project ID</li>\n"
"<li>%project-path% = project path</li>\n"
"</ul>\n"
"</body></html>"))
self.uiBaseVMCheckBox.setText(_translate("QemuVMConfigPageWidget", "Use as a linked base VM"))
self.uiACPIShutdownCheckBox.setText(_translate("QemuVMConfigPageWidget", "Enable ACPI shutdown (experimental)"))
self.uiQemutabWidget.setTabText(self.uiQemutabWidget.indexOf(self.uiAdvancedSettingsTab), _translate("QemuVMConfigPageWidget", "Advanced settings"))

View File

@@ -39,7 +39,7 @@ class VPCSNodeWizard(VMWizard, Ui_VPCSNodeWizard):
super().__init__(vpcs_nodes, parent)
self.setPixmap(QtWidgets.QWizard.LogoPixmap, QtGui.QPixmap(":/symbols/computer.svg"))
self.setPixmap(QtWidgets.QWizard.LogoPixmap, QtGui.QPixmap(":/symbols/vpcs_guest.svg"))
self.uiNameWizardPage.registerField("name*", self.uiNameLineEdit)
def getSettings(self):

View File

@@ -53,11 +53,14 @@ class NodesDockWidget(QtWidgets.QDockWidget):
self.window().uiNodesView.refresh()
def populateNodesView(self, category):
if self.window().uiNodesFilterComboBox.currentIndex() != self._settings["nodes_view_filter"]:
self.window().uiNodesFilterComboBox.setCurrentIndex(self._settings["nodes_view_filter"])
self._filterIndexChangedSlot(self._settings["nodes_view_filter"])
self.window().uiNodesFilterComboBox.activated.connect(self._filterIndexChangedSlot)
self.window().uiNodesFilterLineEdit.textChanged.connect(self._filterTextChangedSlot)
self.window().uiNodesView.clear()
text = self.window().uiNodesFilterLineEdit.text().strip().lower()
self.window().uiNodesView.populateNodesView(category, text)
# it's common race condition that uiNodesFilterComboBox that doesn't exist
# ref. https://github.com/GNS3/gns3-gui/issues/2304
if hasattr(self.window(), 'uiNodesFilterComboBox'):
if self.window().uiNodesFilterComboBox.currentIndex() != self._settings["nodes_view_filter"]:
self.window().uiNodesFilterComboBox.setCurrentIndex(self._settings["nodes_view_filter"])
self._filterIndexChangedSlot(self._settings["nodes_view_filter"])
self.window().uiNodesFilterComboBox.activated.connect(self._filterIndexChangedSlot)
self.window().uiNodesFilterLineEdit.textChanged.connect(self._filterTextChangedSlot)
self.window().uiNodesView.clear()
text = self.window().uiNodesFilterLineEdit.text().strip().lower()
self.window().uiNodesView.populateNodesView(category, text)

View File

@@ -305,6 +305,8 @@ class GeneralPreferencesPage(QtWidgets.QWidget, Ui_GeneralPreferencesPageWidget)
if len(path) > 0:
self.uiImageDirectoriesListWidget.addItem(path)
self.uiDirectFileUpload.setChecked(settings["direct_file_upload"])
def _populateGraphicsViewSettingWidgets(self, settings):
"""
Populates the widgets with the settings.
@@ -367,7 +369,8 @@ class GeneralPreferencesPage(QtWidgets.QWidget, Ui_GeneralPreferencesPageWidget)
"spice_console_command": self.uiSPICEConsoleCommandLineEdit.text(),
"delay_console_all": self.uiDelayConsoleAllSpinBox.value(),
"send_stats": self.uiStatsCheckBox.isChecked(),
"multi_profiles": self.uiMultiProfilesCheckBox.isChecked()
"multi_profiles": self.uiMultiProfilesCheckBox.isChecked(),
"direct_file_upload": self.uiDirectFileUpload.isChecked()
}
from ..main_window import MainWindow

View File

@@ -34,7 +34,7 @@ class Progress(QtCore.QObject):
add_query_signal = QtCore.Signal(str, str, QtNetwork.QNetworkReply)
remove_query_signal = QtCore.Signal(str)
progress_signal = QtCore.Signal(str, int, int)
progress_signal = QtCore.Signal(str, str, str)
show_signal = QtCore.Signal()
hide_signal = QtCore.Signal()
@@ -48,6 +48,11 @@ class Progress(QtCore.QObject):
self._progress_dialog = None
self._show_lock = False
# Timer called for refreshing the progress dialog status
self._rtimer = QtCore.QTimer()
self._rtimer.timeout.connect(self.update)
self._rtimer.start(delay)
# When in millisecond we started to show the progress dialog
self._display_start_time = 0
@@ -73,8 +78,8 @@ class Progress(QtCore.QObject):
self._queries[query_id] = {"explanation": explanation, "current": 0, "maximum": 0, "response": response}
def _removeQuerySlot(self, query_id):
self._finished_query_during_display += 1
if query_id in self._queries:
self._finished_query_during_display += 1
del self._queries[query_id]
def reset(self):
@@ -86,6 +91,9 @@ class Progress(QtCore.QObject):
return self._progress_dialog
def _progressSlot(self, query_id, current, maximum):
current = int(current)
maximum = int(maximum)
if query_id in self._queries:
self._queries[query_id]["current"] = current
self._queries[query_id]["maximum"] = maximum
@@ -121,6 +129,7 @@ class Progress(QtCore.QObject):
@qslot
def _showSlot(self, *args):
if self._show_lock:
return
self._show_lock = True
@@ -165,7 +174,6 @@ class Progress(QtCore.QObject):
elif len(self._queries) == 1:
query = list(self._queries.values())[0]
if query["maximum"] == query["current"]:
# We animate the bar. In theory Qt should be able to do it but
# due to all the manipulation of the dialog he is getting lost
bar_speed = 8
@@ -178,8 +186,10 @@ class Progress(QtCore.QObject):
progress_dialog.setValue(progress_dialog.value() + 1)
else:
progress_dialog.setMaximum(query["maximum"])
progress_dialog.setValue(query["current"])
# Due to Qt limitations for large numbers (above 32bit int) we calculate "progress" ourselves
current, maximum = self._normalize(query['current'], query['maximum'])
progress_dialog.setMaximum(maximum)
progress_dialog.setValue(current)
if text and query["maximum"] > 1000:
text += "\n{} / {}".format(human_filesize(query["current"]), human_filesize(query["maximum"]))
@@ -188,6 +198,18 @@ class Progress(QtCore.QObject):
progress_dialog.setLabelText(text)
self._show_lock = False
def _normalize(self, large_current, large_maximum):
"""
Transforms progress values into set between 0 and 100
:param large_current:
:param large_maximum:
:return: current, maximum
"""
try:
return int(large_current*100/large_maximum), 100
except ZeroDivisionError:
return -1, -1
@qslot
def _hideSlot(self):
"""

View File

@@ -293,6 +293,8 @@ def myQtMsgHandler(msg_type, msg_log_context, msg_string):
if "_COMPIZ_TOOLKIT_ACTION" in msg_string:
# Qt < 5.6 issue: https://github.com/GNS3/gns3-gui/issues/2020
return
if msg_string.startswith("QXcbConnection"): # Qt noise not relevant
return
log.info(msg_string)

View File

@@ -59,7 +59,7 @@ class Appliance(collections.Mapping):
"""
if "registry_version" not in self._appliance:
raise ApplianceError("Invalid appliance configuration please report the issue on https://github.com/GNS3/gns3-registry")
if self._appliance["registry_version"] > 4:
if self._appliance["registry_version"] > 5:
raise ApplianceError("Please update GNS3 in order to install this appliance")
with open(get_resource(os.path.join("schemas", "appliance.json"))) as f:

View File

@@ -15,15 +15,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import re
import os
import hashlib
import tarfile
import pathlib
from gns3.controller import Controller
import logging
log = logging.getLogger(__name__)
@@ -141,9 +134,6 @@ class Image:
def filesize(self, val):
self._filesize = val
def upload(self, compute_id, callback=None):
"""
Upload image to the controller
"""
upload_endpoint = "/{}/images".format(self._emulator)
Controller.instance().postCompute('{}/{}'.format(upload_endpoint, self.filename), compute_id, callback, body=pathlib.Path(self.path), progressText="Uploading {}".format(self.filename), timeout=None)
@property
def emulator(self):
return self._emulator

View File

@@ -55,7 +55,7 @@
"title": "An optional product url on vendor website"
},
"registry_version": {
"enum": [1, 2, 3, 4],
"enum": [1, 2, 3, 4, 5],
"title": "Version of the registry compatible with this appliance"
},
"status": {

View File

@@ -71,54 +71,55 @@ if sys.platform.startswith("win"):
elif sys.platform.startswith("darwin"):
# Mac OS X
PRECONFIGURED_TELNET_CONSOLE_COMMANDS = {
'Terminal': "osascript -e 'tell application \"Terminal\"'"
" -e 'activate'"
" -e 'do script \"echo -n -e \\\"\\\\033]0;%d\\\\007\\\"; clear; telnet %h %p ; exit\"'"
" -e 'end tell'",
'Terminal tabbed (experimental)': "osascript -e 'tell application \"Terminal\"'"
" -e 'activate'"
" -e 'tell application \"System Events\" to tell process \"Terminal\" to keystroke \"t\" using command down'"
" -e 'if (the (count of the window) = 0) then'"
" -e 'repeat while contents of selected tab of window 1 starts with linefeed'"
" -e 'delay 0.01'"
" -e 'end repeat'"
" -e 'tell application \"System Events\" to keystroke \"n\" using command down'"
" -e 'end if'"
" -e 'repeat while the busy of window 1 = true'"
" -e 'delay 0.01'"
" -e 'end repeat'"
" -e 'do script \"echo -n -e \\\"\\\\033]0;%d\\\\007\\\" ; telnet %h %p ; exit\" in window 1'"
" -e 'end tell'",
'iTerm2 2.x': "osascript -e 'tell application \"iTerm\"'"
" -e 'activate'"
" -e 'if (count of terminals) = 0 then'"
" -e ' set t to (make new terminal)'"
" -e 'else'"
" -e ' set t to current terminal'"
" -e 'end if'"
" -e 'tell t'"
" -e ' set s to (make new session at the end of sessions)'"
" -e ' tell s'"
" -e ' exec command (\"telnet %h %p\")'"
" -e ' end tell'"
" -e 'end tell'"
" -e 'end tell'",
'iTerm2 3.x': "osascript -e 'tell application \"iTerm\"'"
" -e 'activate'"
" -e 'if (count of windows) = 0 then'"
" -e ' set t to (create window with default profile)'"
" -e 'else'"
" -e ' set t to current window'"
" -e 'end if'"
" -e 'tell t'"
" -e ' create tab with default profile command \"sh\"'"
" -e ' set s to current session'"
" -e ' tell s'"
" -e ' set name to \"%d\"'"
" -e ' write text \"exec telnet %h %p\"'"
" -e ' end tell'"
" -e 'end tell'"
" -e 'end tell'",
'Terminal': r"""osascript -e 'tell application "Terminal"'"""
r""" -e 'activate'"""
r""" -e 'do script "echo -n -e \"\\033]0;%d\\007\"; clear; PATH=\"" & (system attribute "PATH") & "\" telnet %h %p ; exit"'"""
r""" -e 'end tell'""",
'Terminal tabbed (experimental)': r"""osascript -e 'tell application "Terminal"'"""
r""" -e 'activate'"""
r""" -e 'tell application "System Events" to tell process "Terminal" to keystroke "t" using command down'"""
r""" -e 'if (the (count of the window) = 0) then'"""
r""" -e 'repeat while contents of selected tab of window 1 starts with linefeed'"""
r""" -e 'delay 0.01'"""
r""" -e 'end repeat'"""
r""" -e 'tell application "System Events" to keystroke "n" using command down'"""
r""" -e 'end if'"""
r""" -e 'repeat while the busy of window 1 = true'"""
r""" -e 'delay 0.01'"""
r""" -e 'end repeat'"""
r""" -e 'do script "echo -n -e \"\\033]0;%d\\007\"; clear; PATH=\"" & (system attribute "PATH") & "\" telnet %h %p ; exit" in window 1'"""
r""" -e 'end tell'""",
'iTerm2 2.x': r"""osascript -e 'tell application "iTerm"'"""
r""" -e 'activate'"""
r""" -e 'if (count of terminals) = 0 then'"""
r""" -e ' set t to (make new terminal)'"""
r""" -e 'else'"""
r""" -e ' set t to current terminal'"""
r""" -e 'end if'"""
r""" -e 'tell t'"""
r""" -e ' set s to (make new session at the end of sessions)'"""
r""" -e ' tell s'"""
r""" -e ' exec command "sh -c \"PATH=\\\"" & (system attribute "PATH") & "\\\" telnet %h %p"'"""
r""" -e ' end tell'"""
r""" -e 'end tell'"""
r""" -e 'end tell'""",
'iTerm2 3.x': r"""osascript -e 'tell application "iTerm"'"""
r""" -e 'activate'"""
r""" -e 'if (count of windows) = 0 then'"""
r""" -e ' set t to (create window with default profile)'"""
r""" -e 'else'"""
r""" -e ' set t to current window'"""
r""" -e 'end if'"""
r""" -e 'tell t'"""
r""" -e ' create tab with default profile command "sh"'"""
r""" -e ' set s to current session'"""
r""" -e ' tell s'"""
r""" -e ' set name to "%d"'"""
r""" -e ' write text "PATH=\"" & (system attribute "PATH") & "\" exec telnet %h %p"'"""
r""" -e ' end tell'"""
r""" -e 'end tell'"""
r""" -e 'end tell'""",
'Royal TSX': "open 'rtsx://telnet%3A%2F%2F%h:%p'",
'SecureCRT': '/Applications/SecureCRT.app/Contents/MacOS/SecureCRT /N "%d" /T /TELNET %h %p',
'ZOC 6': '/Applications/zoc6.app/Contents/MacOS/zoc6 "/TELNET:%h:%p" /TABBED "/TITLE:%d"',
@@ -269,7 +270,8 @@ GENERAL_SETTINGS = {
"preferences_dialog_geometry": "",
"debug_level": 0,
"multi_profiles": False,
"hdpi": not sys.platform.startswith("linux")
"hdpi": not sys.platform.startswith("linux"),
"direct_file_upload": False
}
NODES_VIEW_SETTINGS = {

View File

@@ -60,16 +60,6 @@ class ConsoleThread(QtCore.QThread):
except ValueError:
self.consoleError.emit("Syntax error in command: {}".format(command))
return
if sys.platform.startswith("darwin") and hasattr(sys, "frozen"):
# Add to the path where the OS search executables, this is to force using the embedded telnet
# in the DMG on Mac OS
frozen_dir = os.path.dirname(os.path.abspath(sys.executable))
if sys.platform.startswith("darwin"):
frozen_dirs = [
frozen_dir,
os.path.normpath(os.path.join(frozen_dir, '..', 'Resources'))
]
os.environ["PATH"] = os.pathsep.join(frozen_dirs) + os.pathsep + os.environ.get("PATH", "")
subprocess.call(args, env=os.environ)
def run(self):

View File

@@ -96,6 +96,10 @@ class TopologyNodeItem(QtWidgets.QTreeWidgetItem):
# refresh all the other item if the node name has changed
self._parent.refreshAllLinks(source_child=self)
self.setText(0, self._node.name())
if self._node.consoleType() and self._node.console():
self.setText(1, "{} {}:{}".format(self._node.consoleType(), self._node.consoleHost(), self._node.console()))
else:
self.setText(1, "not supported")
self.refreshLinks()
self._parent.invisibleRootItem().sortChildren(0, QtCore.Qt.AscendingOrder)
@@ -213,6 +217,7 @@ class TopologySummaryView(QtWidgets.QTreeWidget):
return
self.nodes_id.add(node.id())
TopologyNodeItem(self, node)
self.resizeColumnToContents(0)
@qslot
def _itemSelectionChangedSlot(self, *args):

View File

@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>544</width>
<height>405</height>
<width>965</width>
<height>547</height>
</rect>
</property>
<property name="sizePolicy">
@@ -70,7 +70,7 @@
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Or customize the command in the next input field. &lt;br/&gt;The following variables are replaced by GNS3: &lt;/p&gt;&lt;ul style=&quot;margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;&quot;&gt;&lt;li style=&quot; margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%h: console IP or hostname&lt;/li&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%p: console port&lt;/li&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%P: VNC display&lt;/li&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%s: path of the serial connection&lt;/li&gt;&lt;/ul&gt;&lt;ul style=&quot;margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;&quot;&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%d: title of the console&lt;/li&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%i: Project UUID&lt;/li&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%c: GNS3 server connection string (&lt;span style=&quot; font-style:italic;&quot;&gt;http://user:password@server:port&lt;/span&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Or customize the command in the next input field. &lt;br/&gt;The following variables are replaced by GNS3: &lt;/p&gt;&lt;ul style=&quot;margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;&quot;&gt;&lt;li style=&quot; margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%h: console IP or hostname&lt;/li&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%p: console port&lt;/li&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%P: VNC display&lt;/li&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%s: path of the serial connection&lt;/li&gt;&lt;/ul&gt;&lt;ul style=&quot;margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;&quot;&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%d: title of the console&lt;/li&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%i: Project UUID&lt;/li&gt;&lt;li style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%c: server URL (&lt;span style=&quot; font-style:italic;&quot;&gt;http://user:password@server:port&lt;/span&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="textFormat">
<enum>Qt::RichText</enum>

View File

@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file '/Users/noplay/code/gns3/gns3-gui/gns3/ui/console_command_dialog.ui'
# Form implementation generated from reading ui file '/home/grossmj/PycharmProjects/gns3-gui/gns3/ui/console_command_dialog.ui'
#
# Created by: PyQt5 UI code generator 5.7
# Created by: PyQt5 UI code generator 5.5.1
#
# WARNING! All changes made in this file will be lost!
@@ -11,7 +11,7 @@ from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_uiConsoleCommandDialog(object):
def setupUi(self, uiConsoleCommandDialog):
uiConsoleCommandDialog.setObjectName("uiConsoleCommandDialog")
uiConsoleCommandDialog.resize(544, 405)
uiConsoleCommandDialog.resize(965, 547)
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
@@ -67,5 +67,5 @@ class Ui_uiConsoleCommandDialog(object):
self.label_2.setText(_translate("uiConsoleCommandDialog", "Choose a predefined command:"))
self.uiRemovePushButton.setText(_translate("uiConsoleCommandDialog", "Remove"))
self.uiSavePushButton.setText(_translate("uiConsoleCommandDialog", "Save"))
self.label.setText(_translate("uiConsoleCommandDialog", "<html><head/><body><p>Or customize the command in the next input field. <br/>The following variables are replaced by GNS3: </p><ul style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;\"><li style=\" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%h: console IP or hostname</li><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%p: console port</li><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%P: VNC display</li><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%s: path of the serial connection</li></ul><ul style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;\"><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%d: title of the console</li><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%i: Project UUID</li><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%c: GNS3 server connection string (<span style=\" font-style:italic;\">http://user:password@server:port</span>)</li></ul></body></html>"))
self.label.setText(_translate("uiConsoleCommandDialog", "<html><head/><body><p>Or customize the command in the next input field. <br/>The following variables are replaced by GNS3: </p><ul style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;\"><li style=\" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%h: console IP or hostname</li><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%p: console port</li><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%P: VNC display</li><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%s: path of the serial connection</li></ul><ul style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;\"><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%d: title of the console</li><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%i: Project UUID</li><li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">%c: server URL (<span style=\" font-style:italic;\">http://user:password@server:port</span>)</li></ul></body></html>"))

View File

@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>715</width>
<height>644</height>
<width>1324</width>
<height>738</height>
</rect>
</property>
<property name="windowTitle">
@@ -30,16 +30,7 @@
<string>General</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_4">
<property name="leftMargin">
<number>10</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<property name="rightMargin">
<number>10</number>
</property>
<property name="bottomMargin">
<property name="margin">
<number>10</number>
</property>
<item>
@@ -247,16 +238,7 @@
<string>Binary images</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_7">
<property name="leftMargin">
<number>10</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<property name="rightMargin">
<number>10</number>
</property>
<property name="bottomMargin">
<property name="margin">
<number>10</number>
</property>
<item>
@@ -390,16 +372,7 @@
<string>Console applications</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_3">
<property name="leftMargin">
<number>10</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<property name="rightMargin">
<number>10</number>
</property>
<property name="bottomMargin">
<property name="margin">
<number>10</number>
</property>
<item>
@@ -426,7 +399,17 @@
</sizepolicy>
</property>
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Command line replacements:&lt;/p&gt;&lt;p&gt;%h = device server &lt;/p&gt;&lt;p&gt;%p = device port&lt;/p&gt;&lt;p&gt;%d = device hostname&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Command line replacements:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;%h = console IP or hostname&lt;/li&gt;
&lt;li&gt;%p = console port&lt;/li&gt;
&lt;li&gt;%P = VNC display&lt;/li&gt;
&lt;li&gt;%s = path of the serial connection&lt;/li&gt;
&lt;li&gt;%d = title of the console&lt;/li&gt;
&lt;li&gt;%i = project UUID&lt;/li&gt;
&lt;li&gt;%c = server URL&lt;/li&gt;
&lt;/ul&gt;
&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="readOnly">
<bool>true</bool>
@@ -457,13 +440,6 @@
<string>Miscellaneous</string>
</property>
<layout class="QGridLayout" name="gridLayout_7">
<item row="0" column="0">
<widget class="QLabel" name="uiSlowConsoleAllLabel">
<property name="text">
<string>Delay between each console launch when consoling to all devices:</string>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QSpinBox" name="uiDelayConsoleAllSpinBox">
<property name="suffix">
@@ -477,6 +453,13 @@
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="uiSlowConsoleAllLabel">
<property name="text">
<string>Delay between each console launch when consoling to all devices:</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
@@ -500,16 +483,7 @@
<string>VNC</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_6">
<property name="leftMargin">
<number>10</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<property name="rightMargin">
<number>10</number>
</property>
<property name="bottomMargin">
<property name="margin">
<number>10</number>
</property>
<item>
@@ -536,7 +510,17 @@
</sizepolicy>
</property>
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Command line replacements:&lt;/p&gt;&lt;p&gt;%h = device server &lt;/p&gt;&lt;p&gt;%p = device port&lt;/p&gt;&lt;p&gt;%d = device hostname&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Command line replacements:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;%h = console IP or hostname&lt;/li&gt;
&lt;li&gt;%p = console port&lt;/li&gt;
&lt;li&gt;%P = VNC display&lt;/li&gt;
&lt;li&gt;%s = path of the serial connection&lt;/li&gt;
&lt;li&gt;%d = title of the console&lt;/li&gt;
&lt;li&gt;%i = project UUID&lt;/li&gt;
&lt;li&gt;%c = server URL&lt;/li&gt;
&lt;/ul&gt;
&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="readOnly">
<bool>true</bool>
@@ -580,90 +564,87 @@
<attribute name="title">
<string>SPICE</string>
</attribute>
<widget class="QGroupBox" name="uiSPICEConsoleSettingsGroupBox">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>673</width>
<height>538</height>
</rect>
</property>
<property name="title">
<string>Settings for SPICE connections</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_11">
<item>
<widget class="QLabel" name="uiSPICEConsoleCommandLabel">
<property name="text">
<string>Console application command for SPICE:</string>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_10">
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<widget class="QGroupBox" name="uiSPICEConsoleSettingsGroupBox">
<property name="title">
<string>Settings for SPICE connections</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_11">
<item>
<widget class="QLineEdit" name="uiSPICEConsoleCommandLineEdit">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Command line replacements:&lt;/p&gt;&lt;p&gt;%h = device server &lt;/p&gt;&lt;p&gt;%p = device port&lt;/p&gt;&lt;p&gt;%d = device hostname&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="readOnly">
<bool>true</bool>
<widget class="QLabel" name="uiSPICEConsoleCommandLabel">
<property name="text">
<string>Console application command for SPICE:</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="uiSPICEConsolePreconfiguredCommandPushButton">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
<layout class="QHBoxLayout" name="horizontalLayout_10">
<item>
<widget class="QLineEdit" name="uiSPICEConsoleCommandLineEdit">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Command line replacements:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;%h = console IP or hostname&lt;/li&gt;
&lt;li&gt;%p = console port&lt;/li&gt;
&lt;li&gt;%P = VNC display&lt;/li&gt;
&lt;li&gt;%s = path of the serial connection&lt;/li&gt;
&lt;li&gt;%d = title of the console&lt;/li&gt;
&lt;li&gt;%i = project UUID&lt;/li&gt;
&lt;li&gt;%c = server URL&lt;/li&gt;
&lt;/ul&gt;
&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="uiSPICEConsolePreconfiguredCommandPushButton">
<property name="sizePolicy">
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>&amp;Edit</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<spacer name="verticalSpacer_6">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="text">
<string>&amp;Edit</string>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>5</height>
</size>
</property>
</widget>
</spacer>
</item>
</layout>
</item>
<item>
<spacer name="verticalSpacer_6">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>5</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="uiSceneTab">
<attribute name="title">
<string>Topology view</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_8">
<property name="leftMargin">
<number>10</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<property name="rightMargin">
<number>10</number>
</property>
<property name="bottomMargin">
<property name="margin">
<number>10</number>
</property>
<item row="9" column="0" colspan="2">
@@ -825,16 +806,7 @@
<string>Miscellaneous</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_2">
<property name="leftMargin">
<number>10</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<property name="rightMargin">
<number>10</number>
</property>
<property name="bottomMargin">
<property name="margin">
<number>10</number>
</property>
<item>
@@ -895,6 +867,13 @@
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="uiDirectFileUpload">
<property name="text">
<string>Upload files directly to computes (experimental, requires computes visibility from GUI network)</string>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">

View File

@@ -2,7 +2,7 @@
# Form implementation generated from reading ui file '/home/grossmj/PycharmProjects/gns3-gui/gns3/ui/general_preferences_page.ui'
#
# Created by: PyQt5 UI code generator 5.8.2
# Created by: PyQt5 UI code generator 5.5.1
#
# WARNING! All changes made in this file will be lost!
@@ -11,7 +11,7 @@ from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_GeneralPreferencesPageWidget(object):
def setupUi(self, GeneralPreferencesPageWidget):
GeneralPreferencesPageWidget.setObjectName("GeneralPreferencesPageWidget")
GeneralPreferencesPageWidget.resize(715, 644)
GeneralPreferencesPageWidget.resize(1324, 738)
self.verticalLayout = QtWidgets.QVBoxLayout(GeneralPreferencesPageWidget)
self.verticalLayout.setObjectName("verticalLayout")
self.uiMiscTabWidget = QtWidgets.QTabWidget(GeneralPreferencesPageWidget)
@@ -219,14 +219,14 @@ class Ui_GeneralPreferencesPageWidget(object):
self.uiConsoleMiscGroupBox.setObjectName("uiConsoleMiscGroupBox")
self.gridLayout_7 = QtWidgets.QGridLayout(self.uiConsoleMiscGroupBox)
self.gridLayout_7.setObjectName("gridLayout_7")
self.uiSlowConsoleAllLabel = QtWidgets.QLabel(self.uiConsoleMiscGroupBox)
self.uiSlowConsoleAllLabel.setObjectName("uiSlowConsoleAllLabel")
self.gridLayout_7.addWidget(self.uiSlowConsoleAllLabel, 0, 0, 1, 1)
self.uiDelayConsoleAllSpinBox = QtWidgets.QSpinBox(self.uiConsoleMiscGroupBox)
self.uiDelayConsoleAllSpinBox.setMaximum(10000)
self.uiDelayConsoleAllSpinBox.setProperty("value", 500)
self.uiDelayConsoleAllSpinBox.setObjectName("uiDelayConsoleAllSpinBox")
self.gridLayout_7.addWidget(self.uiDelayConsoleAllSpinBox, 1, 0, 1, 1)
self.uiSlowConsoleAllLabel = QtWidgets.QLabel(self.uiConsoleMiscGroupBox)
self.uiSlowConsoleAllLabel.setObjectName("uiSlowConsoleAllLabel")
self.gridLayout_7.addWidget(self.uiSlowConsoleAllLabel, 0, 0, 1, 1)
self.verticalLayout_3.addWidget(self.uiConsoleMiscGroupBox)
spacerItem3 = QtWidgets.QSpacerItem(20, 5, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_3.addItem(spacerItem3)
@@ -269,8 +269,9 @@ class Ui_GeneralPreferencesPageWidget(object):
self.uiMiscTabWidget.addTab(self.uiVNCTab, "")
self.uiSPICETab = QtWidgets.QWidget()
self.uiSPICETab.setObjectName("uiSPICETab")
self.gridLayout_2 = QtWidgets.QGridLayout(self.uiSPICETab)
self.gridLayout_2.setObjectName("gridLayout_2")
self.uiSPICEConsoleSettingsGroupBox = QtWidgets.QGroupBox(self.uiSPICETab)
self.uiSPICEConsoleSettingsGroupBox.setGeometry(QtCore.QRect(10, 10, 673, 538))
self.uiSPICEConsoleSettingsGroupBox.setObjectName("uiSPICEConsoleSettingsGroupBox")
self.verticalLayout_11 = QtWidgets.QVBoxLayout(self.uiSPICEConsoleSettingsGroupBox)
self.verticalLayout_11.setObjectName("verticalLayout_11")
@@ -299,6 +300,7 @@ class Ui_GeneralPreferencesPageWidget(object):
self.verticalLayout_11.addLayout(self.horizontalLayout_10)
spacerItem5 = QtWidgets.QSpacerItem(20, 5, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_11.addItem(spacerItem5)
self.gridLayout_2.addWidget(self.uiSPICEConsoleSettingsGroupBox, 0, 0, 1, 1)
self.uiMiscTabWidget.addTab(self.uiSPICETab, "")
self.uiSceneTab = QtWidgets.QWidget()
self.uiSceneTab.setObjectName("uiSceneTab")
@@ -392,6 +394,9 @@ class Ui_GeneralPreferencesPageWidget(object):
self.uiMultiProfilesCheckBox = QtWidgets.QCheckBox(self.uiMiscTab)
self.uiMultiProfilesCheckBox.setObjectName("uiMultiProfilesCheckBox")
self.verticalLayout_2.addWidget(self.uiMultiProfilesCheckBox)
self.uiDirectFileUpload = QtWidgets.QCheckBox(self.uiMiscTab)
self.uiDirectFileUpload.setObjectName("uiDirectFileUpload")
self.verticalLayout_2.addWidget(self.uiDirectFileUpload)
spacerItem8 = QtWidgets.QSpacerItem(20, 5, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_2.addItem(spacerItem8)
self.uiMiscTabWidget.addTab(self.uiMiscTab, "")
@@ -440,20 +445,50 @@ class Ui_GeneralPreferencesPageWidget(object):
self.uiMiscTabWidget.setTabText(self.uiMiscTabWidget.indexOf(self.uiImagesTab), _translate("GeneralPreferencesPageWidget", "Binary images"))
self.uiTelnetConsoleSettingsGroupBox.setTitle(_translate("GeneralPreferencesPageWidget", "Console settings"))
self.uiTelnetConsoleCommandLabel.setText(_translate("GeneralPreferencesPageWidget", "Console application command for Telnet:"))
self.uiTelnetConsoleCommandLineEdit.setToolTip(_translate("GeneralPreferencesPageWidget", "<html><head/><body><p>Command line replacements:</p><p>%h = device server </p><p>%p = device port</p><p>%d = device hostname</p></body></html>"))
self.uiTelnetConsoleCommandLineEdit.setToolTip(_translate("GeneralPreferencesPageWidget", "<html><head/><body><p>Command line replacements:</p>\n"
"<ul>\n"
"<li>%h = console IP or hostname</li>\n"
"<li>%p = console port</li>\n"
"<li>%P = VNC display</li>\n"
"<li>%s = path of the serial connection</li>\n"
"<li>%d = title of the console</li>\n"
"<li>%i = project UUID</li>\n"
"<li>%c = server URL</li>\n"
"</ul>\n"
"</body></html>"))
self.uiTelnetConsolePreconfiguredCommandPushButton.setText(_translate("GeneralPreferencesPageWidget", "&Edit"))
self.uiConsoleMiscGroupBox.setTitle(_translate("GeneralPreferencesPageWidget", "Miscellaneous"))
self.uiSlowConsoleAllLabel.setText(_translate("GeneralPreferencesPageWidget", "Delay between each console launch when consoling to all devices:"))
self.uiDelayConsoleAllSpinBox.setSuffix(_translate("GeneralPreferencesPageWidget", " ms"))
self.uiSlowConsoleAllLabel.setText(_translate("GeneralPreferencesPageWidget", "Delay between each console launch when consoling to all devices:"))
self.uiMiscTabWidget.setTabText(self.uiMiscTabWidget.indexOf(self.uiConsoleTab), _translate("GeneralPreferencesPageWidget", "Console applications"))
self.uiVNCConsoleSettingsGroupBox.setTitle(_translate("GeneralPreferencesPageWidget", "Settings for VNC connections"))
self.uiVNCConsoleCommandLabel.setText(_translate("GeneralPreferencesPageWidget", "Console application command for VNC:"))
self.uiVNCConsoleCommandLineEdit.setToolTip(_translate("GeneralPreferencesPageWidget", "<html><head/><body><p>Command line replacements:</p><p>%h = device server </p><p>%p = device port</p><p>%d = device hostname</p></body></html>"))
self.uiVNCConsoleCommandLineEdit.setToolTip(_translate("GeneralPreferencesPageWidget", "<html><head/><body><p>Command line replacements:</p>\n"
"<ul>\n"
"<li>%h = console IP or hostname</li>\n"
"<li>%p = console port</li>\n"
"<li>%P = VNC display</li>\n"
"<li>%s = path of the serial connection</li>\n"
"<li>%d = title of the console</li>\n"
"<li>%i = project UUID</li>\n"
"<li>%c = server URL</li>\n"
"</ul>\n"
"</body></html>"))
self.uiVNCConsolePreconfiguredCommandPushButton.setText(_translate("GeneralPreferencesPageWidget", "&Edit"))
self.uiMiscTabWidget.setTabText(self.uiMiscTabWidget.indexOf(self.uiVNCTab), _translate("GeneralPreferencesPageWidget", "VNC"))
self.uiSPICEConsoleSettingsGroupBox.setTitle(_translate("GeneralPreferencesPageWidget", "Settings for SPICE connections"))
self.uiSPICEConsoleCommandLabel.setText(_translate("GeneralPreferencesPageWidget", "Console application command for SPICE:"))
self.uiSPICEConsoleCommandLineEdit.setToolTip(_translate("GeneralPreferencesPageWidget", "<html><head/><body><p>Command line replacements:</p><p>%h = device server </p><p>%p = device port</p><p>%d = device hostname</p></body></html>"))
self.uiSPICEConsoleCommandLineEdit.setToolTip(_translate("GeneralPreferencesPageWidget", "<html><head/><body><p>Command line replacements:</p>\n"
"<ul>\n"
"<li>%h = console IP or hostname</li>\n"
"<li>%p = console port</li>\n"
"<li>%P = VNC display</li>\n"
"<li>%s = path of the serial connection</li>\n"
"<li>%d = title of the console</li>\n"
"<li>%i = project UUID</li>\n"
"<li>%c = server URL</li>\n"
"</ul>\n"
"</body></html>"))
self.uiSPICEConsolePreconfiguredCommandPushButton.setText(_translate("GeneralPreferencesPageWidget", "&Edit"))
self.uiMiscTabWidget.setTabText(self.uiMiscTabWidget.indexOf(self.uiSPICETab), _translate("GeneralPreferencesPageWidget", "SPICE"))
self.uiDefaultLabelFontPushButton.setText(_translate("GeneralPreferencesPageWidget", "&Select default font"))
@@ -475,6 +510,7 @@ class Ui_GeneralPreferencesPageWidget(object):
self.uiExperimentalFeaturesCheckBox.setText(_translate("GeneralPreferencesPageWidget", "Enable experimental features (dangerous, restart required)"))
self.uiHdpiCheckBox.setText(_translate("GeneralPreferencesPageWidget", "Enable HDPI mode (this may crash the application on Linux, restart required)"))
self.uiMultiProfilesCheckBox.setText(_translate("GeneralPreferencesPageWidget", "Request for profile settings at application startup (work profile / home profile)"))
self.uiDirectFileUpload.setText(_translate("GeneralPreferencesPageWidget", "Upload files directly to computes (experimental, requires computes visibility from GUI network)"))
self.uiMiscTabWidget.setTabText(self.uiMiscTabWidget.indexOf(self.uiMiscTab), _translate("GeneralPreferencesPageWidget", "Miscellaneous"))
self.uiRestoreDefaultsPushButton.setText(_translate("GeneralPreferencesPageWidget", "Restore defaults"))

View File

@@ -492,11 +492,16 @@ background-none;
</sizepolicy>
</property>
<attribute name="headerVisible">
<bool>false</bool>
<bool>true</bool>
</attribute>
<column>
<property name="text">
<string>1</string>
<string>Node</string>
</property>
</column>
<column>
<property name="text">
<string>Console</string>
</property>
</column>
</widget>

View File

@@ -2,7 +2,7 @@
# Form implementation generated from reading ui file '/home/grossmj/PycharmProjects/gns3-gui/gns3/ui/main_window.ui'
#
# Created by: PyQt5 UI code generator 5.9
# Created by: PyQt5 UI code generator 5.5.1
#
# WARNING! All changes made in this file will be lost!
@@ -186,7 +186,7 @@ class Ui_MainWindow(object):
sizePolicy.setHeightForWidth(self.uiTopologySummaryTreeWidget.sizePolicy().hasHeightForWidth())
self.uiTopologySummaryTreeWidget.setSizePolicy(sizePolicy)
self.uiTopologySummaryTreeWidget.setObjectName("uiTopologySummaryTreeWidget")
self.uiTopologySummaryTreeWidget.header().setVisible(False)
self.uiTopologySummaryTreeWidget.header().setVisible(True)
self.gridlayout1.addWidget(self.uiTopologySummaryTreeWidget, 0, 0, 1, 1)
self.uiTopologySummaryDockWidget.setWidget(self.uiTopologySummaryDockWidgetContents)
MainWindow.addDockWidget(QtCore.Qt.DockWidgetArea(2), self.uiTopologySummaryDockWidget)
@@ -226,22 +226,22 @@ class Ui_MainWindow(object):
self.uiOnlineHelpAction.setObjectName("uiOnlineHelpAction")
self.uiScreenshotAction = QtWidgets.QAction(MainWindow)
icon4 = QtGui.QIcon()
icon4.addPixmap(QtGui.QPixmap(":/icons/camera-photo-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon4.addPixmap(QtGui.QPixmap(":/icons/camera-photo.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon4.addPixmap(QtGui.QPixmap(":/icons/camera-photo-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiScreenshotAction.setIcon(icon4)
self.uiScreenshotAction.setObjectName("uiScreenshotAction")
self.uiStartAllAction = QtWidgets.QAction(MainWindow)
self.uiStartAllAction.setEnabled(True)
icon5 = QtGui.QIcon()
icon5.addPixmap(QtGui.QPixmap(":/icons/start-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon5.addPixmap(QtGui.QPixmap(":/icons/start.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon5.addPixmap(QtGui.QPixmap(":/icons/start-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiStartAllAction.setIcon(icon5)
self.uiStartAllAction.setObjectName("uiStartAllAction")
self.uiStopAllAction = QtWidgets.QAction(MainWindow)
self.uiStopAllAction.setEnabled(True)
icon6 = QtGui.QIcon()
icon6.addPixmap(QtGui.QPixmap(":/icons/stop-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon6.addPixmap(QtGui.QPixmap(":/icons/stop.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon6.addPixmap(QtGui.QPixmap(":/icons/stop-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiStopAllAction.setIcon(icon6)
self.uiStopAllAction.setObjectName("uiStopAllAction")
self.uiConsoleAllAction = QtWidgets.QAction(MainWindow)
@@ -255,14 +255,14 @@ class Ui_MainWindow(object):
self.uiAboutQtAction.setObjectName("uiAboutQtAction")
self.uiZoomInAction = QtWidgets.QAction(MainWindow)
icon8 = QtGui.QIcon()
icon8.addPixmap(QtGui.QPixmap(":/icons/zoom-in-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon8.addPixmap(QtGui.QPixmap(":/icons/zoom-in.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon8.addPixmap(QtGui.QPixmap(":/icons/zoom-in-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiZoomInAction.setIcon(icon8)
self.uiZoomInAction.setObjectName("uiZoomInAction")
self.uiZoomOutAction = QtWidgets.QAction(MainWindow)
icon9 = QtGui.QIcon()
icon9.addPixmap(QtGui.QPixmap(":/icons/zoom-out-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon9.addPixmap(QtGui.QPixmap(":/icons/zoom-out.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon9.addPixmap(QtGui.QPixmap(":/icons/zoom-out-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiZoomOutAction.setIcon(icon9)
self.uiZoomOutAction.setObjectName("uiZoomOutAction")
self.uiZoomResetAction = QtWidgets.QAction(MainWindow)
@@ -279,8 +279,8 @@ class Ui_MainWindow(object):
self.uiPreferencesAction.setObjectName("uiPreferencesAction")
self.uiSuspendAllAction = QtWidgets.QAction(MainWindow)
icon11 = QtGui.QIcon()
icon11.addPixmap(QtGui.QPixmap(":/icons/pause-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon11.addPixmap(QtGui.QPixmap(":/icons/pause.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon11.addPixmap(QtGui.QPixmap(":/icons/pause-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiSuspendAllAction.setIcon(icon11)
self.uiSuspendAllAction.setObjectName("uiSuspendAllAction")
self.uiAddNoteAction = QtWidgets.QAction(MainWindow)
@@ -308,15 +308,15 @@ class Ui_MainWindow(object):
self.uiDrawRectangleAction = QtWidgets.QAction(MainWindow)
self.uiDrawRectangleAction.setCheckable(True)
icon16 = QtGui.QIcon()
icon16.addPixmap(QtGui.QPixmap(":/icons/rectangle-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon16.addPixmap(QtGui.QPixmap(":/icons/rectangle.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon16.addPixmap(QtGui.QPixmap(":/icons/rectangle-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiDrawRectangleAction.setIcon(icon16)
self.uiDrawRectangleAction.setObjectName("uiDrawRectangleAction")
self.uiDrawEllipseAction = QtWidgets.QAction(MainWindow)
self.uiDrawEllipseAction.setCheckable(True)
icon17 = QtGui.QIcon()
icon17.addPixmap(QtGui.QPixmap(":/icons/ellipse-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon17.addPixmap(QtGui.QPixmap(":/icons/ellipse.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon17.addPixmap(QtGui.QPixmap(":/icons/ellipse-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiDrawEllipseAction.setIcon(icon17)
self.uiDrawEllipseAction.setObjectName("uiDrawEllipseAction")
self.uiShowPortNamesAction = QtWidgets.QAction(MainWindow)
@@ -358,40 +358,40 @@ class Ui_MainWindow(object):
self.uiCheckForUpdateAction.setObjectName("uiCheckForUpdateAction")
self.uiBrowseRoutersAction = QtWidgets.QAction(MainWindow)
icon23 = QtGui.QIcon()
icon23.addPixmap(QtGui.QPixmap(":/icons/router-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon23.addPixmap(QtGui.QPixmap(":/icons/router.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon23.addPixmap(QtGui.QPixmap(":/icons/router-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiBrowseRoutersAction.setIcon(icon23)
self.uiBrowseRoutersAction.setObjectName("uiBrowseRoutersAction")
self.uiBrowseSwitchesAction = QtWidgets.QAction(MainWindow)
icon24 = QtGui.QIcon()
icon24.addPixmap(QtGui.QPixmap(":/icons/switch-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon24.addPixmap(QtGui.QPixmap(":/icons/switch.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon24.addPixmap(QtGui.QPixmap(":/icons/switch-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiBrowseSwitchesAction.setIcon(icon24)
self.uiBrowseSwitchesAction.setObjectName("uiBrowseSwitchesAction")
self.uiBrowseEndDevicesAction = QtWidgets.QAction(MainWindow)
icon25 = QtGui.QIcon()
icon25.addPixmap(QtGui.QPixmap(":/icons/PC-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon25.addPixmap(QtGui.QPixmap(":/icons/PC.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon25.addPixmap(QtGui.QPixmap(":/icons/PC-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiBrowseEndDevicesAction.setIcon(icon25)
self.uiBrowseEndDevicesAction.setObjectName("uiBrowseEndDevicesAction")
self.uiBrowseSecurityDevicesAction = QtWidgets.QAction(MainWindow)
icon26 = QtGui.QIcon()
icon26.addPixmap(QtGui.QPixmap(":/icons/firewall-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon26.addPixmap(QtGui.QPixmap(":/icons/firewall.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon26.addPixmap(QtGui.QPixmap(":/icons/firewall-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiBrowseSecurityDevicesAction.setIcon(icon26)
self.uiBrowseSecurityDevicesAction.setObjectName("uiBrowseSecurityDevicesAction")
self.uiBrowseAllDevicesAction = QtWidgets.QAction(MainWindow)
icon27 = QtGui.QIcon()
icon27.addPixmap(QtGui.QPixmap(":/icons/browse-all-icons-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon27.addPixmap(QtGui.QPixmap(":/icons/browse-all-icons.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon27.addPixmap(QtGui.QPixmap(":/icons/browse-all-icons-hover.png"), QtGui.QIcon.Active, QtGui.QIcon.Off)
self.uiBrowseAllDevicesAction.setIcon(icon27)
self.uiBrowseAllDevicesAction.setObjectName("uiBrowseAllDevicesAction")
self.uiAddLinkAction = QtWidgets.QAction(MainWindow)
self.uiAddLinkAction.setCheckable(True)
icon28 = QtGui.QIcon()
icon28.addPixmap(QtGui.QPixmap(":/icons/cancel-connection.svg"), QtGui.QIcon.Normal, QtGui.QIcon.On)
icon28.addPixmap(QtGui.QPixmap(":/icons/connection-new-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon28.addPixmap(QtGui.QPixmap(":/icons/connection-new.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon28.addPixmap(QtGui.QPixmap(":/icons/connection-new-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon28.addPixmap(QtGui.QPixmap(":/icons/cancel-connection.svg"), QtGui.QIcon.Normal, QtGui.QIcon.On)
icon28.addPixmap(QtGui.QPixmap(":/icons/cancel-connection.svg"), QtGui.QIcon.Active, QtGui.QIcon.On)
self.uiAddLinkAction.setIcon(icon28)
self.uiAddLinkAction.setObjectName("uiAddLinkAction")
@@ -445,18 +445,6 @@ class Ui_MainWindow(object):
icon33.addPixmap(QtGui.QPixmap(":/icons/vertically.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.uiDrawLineAction.setIcon(icon33)
self.uiDrawLineAction.setObjectName("uiDrawLineAction")
self.uiLockAllAction = QtWidgets.QAction(MainWindow)
self.uiLockAllAction.setCheckable(True)
self.uiLockAllAction.setChecked(False)
icon34 = QtGui.QIcon()
icon34.addPixmap(QtGui.QPixmap(":/classic_icons/lock-hover.svg"), QtGui.QIcon.Disabled, QtGui.QIcon.Off)
icon34.addPixmap(QtGui.QPixmap(":/classic_icons/lock-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.On)
icon34.addPixmap(QtGui.QPixmap(":/classic_icons/lock.svg"), QtGui.QIcon.Normal, QtGui.QIcon.On)
icon34.addPixmap(QtGui.QPixmap(":/classic_icons/unlock-hover.svg"), QtGui.QIcon.Active, QtGui.QIcon.Off)
icon34.addPixmap(QtGui.QPixmap(":/classic_icons/unlock.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
icon34.addPixmap(QtGui.QPixmap(":/classic_icons/lock-hover.svg"), QtGui.QIcon.Disabled, QtGui.QIcon.On)
self.uiLockAllAction.setIcon(icon34)
self.uiLockAllAction.setObjectName("uiLockAllAction")
self.uiEditMenu.addAction(self.uiSelectAllAction)
self.uiEditMenu.addAction(self.uiSelectNoneAction)
self.uiEditMenu.addSeparator()
@@ -494,7 +482,6 @@ class Ui_MainWindow(object):
self.uiViewMenu.addAction(self.uiShowGridAction)
self.uiViewMenu.addAction(self.uiResetPortLabelsAction)
self.uiViewMenu.addAction(self.uiShowPortNamesAction)
self.uiViewMenu.addAction(self.uiLockAllAction)
self.uiViewMenu.addSeparator()
self.uiViewMenu.addAction(self.uiDocksMenu.menuAction())
self.uiControlMenu.addAction(self.uiStartAllAction)
@@ -536,8 +523,8 @@ class Ui_MainWindow(object):
self.uiBrowsersToolBar.addSeparator()
self.uiControlToolBar.addAction(self.uiSnapshotAction)
self.uiControlToolBar.addAction(self.uiShowPortNamesAction)
self.uiControlToolBar.addSeparator()
self.uiControlToolBar.addAction(self.uiConsoleAllAction)
self.uiControlToolBar.addSeparator()
self.uiControlToolBar.addAction(self.uiStartAllAction)
self.uiControlToolBar.addAction(self.uiSuspendAllAction)
self.uiControlToolBar.addAction(self.uiStopAllAction)
@@ -547,7 +534,6 @@ class Ui_MainWindow(object):
self.uiAnnotationToolBar.addAction(self.uiDrawRectangleAction)
self.uiAnnotationToolBar.addAction(self.uiDrawEllipseAction)
self.uiAnnotationToolBar.addAction(self.uiDrawLineAction)
self.uiAnnotationToolBar.addAction(self.uiLockAllAction)
self.uiAnnotationToolBar.addAction(self.uiZoomInAction)
self.uiAnnotationToolBar.addAction(self.uiZoomOutAction)
self.uiAnnotationToolBar.addAction(self.uiScreenshotAction)
@@ -585,7 +571,8 @@ class Ui_MainWindow(object):
self.uiConsoleDockWidget.setWindowTitle(_translate("MainWindow", "Console"))
self.uiAnnotationToolBar.setWindowTitle(_translate("MainWindow", "Drawing"))
self.uiTopologySummaryDockWidget.setWindowTitle(_translate("MainWindow", "Topology Summary"))
self.uiTopologySummaryTreeWidget.headerItem().setText(0, _translate("MainWindow", "1"))
self.uiTopologySummaryTreeWidget.headerItem().setText(0, _translate("MainWindow", "Node"))
self.uiTopologySummaryTreeWidget.headerItem().setText(1, _translate("MainWindow", "Console"))
self.uiComputeSummaryDockWidget.setWindowTitle(_translate("MainWindow", "Servers Summary"))
self.uiAboutAction.setText(_translate("MainWindow", "&About"))
self.uiAboutAction.setStatusTip(_translate("MainWindow", "About"))
@@ -719,8 +706,6 @@ class Ui_MainWindow(object):
self.uiEditProjectAction.setText(_translate("MainWindow", "Edit project"))
self.uiWebInterfaceAction.setText(_translate("MainWindow", "Web interface"))
self.uiDrawLineAction.setText(_translate("MainWindow", "Drawn line"))
self.uiLockAllAction.setText(_translate("MainWindow", "Lock or unlock all items"))
self.uiLockAllAction.setToolTip(_translate("MainWindow", "Lock or unlock all items"))
from ..compute_summary_view import ComputeSummaryView
from ..console_view import ConsoleView

File diff suppressed because it is too large Load Diff

View File

@@ -20,6 +20,7 @@ Progress dialog that blocking tasks (file operations, network connections etc.)
"""
import sip
from gns3.version import __version__
from ..qt import QtWidgets, QtCore, qslot
import logging
@@ -44,7 +45,8 @@ class ProgressDialog(QtWidgets.QProgressDialog):
def __init__(self, worker, title, label_text, cancel_button_text, busy=False, parent=None, delay=0, create_thread=True):
assert QtCore.QThread.currentThread() == QtWidgets.QApplication.instance().thread()
if "dev" in __version__:
assert QtCore.QThread.currentThread() == QtWidgets.QApplication.instance().thread()
minimum = 0
maximum = 100
@@ -64,8 +66,12 @@ class ProgressDialog(QtWidgets.QProgressDialog):
self._worker.setObjectName(worker.__class__.__name__)
if create_thread:
self._thread = QtCore.QThread()
if "dev" in __version__:
assert not self._worker.parent()
log.debug("Set worker inside a thread {}".format(self._worker.__class__))
self._worker.moveToThread(self._thread)
else:
log.debug("Set worker outside of a thread {}".format(self._worker.__class__))
self._thread = None
self._worker.finished.connect(self.accept)
self._worker.updated.connect(self._updateProgressSlot)

View File

@@ -16,8 +16,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
__version__ = "2.1.0dev8"
__version_info__ = (2, 1, 0, -99)
__version__ = "2.1.1dev1"
__version_info__ = (2, 1, 0, 0)
# If it's a git checkout try to add the commit
if "dev" in __version__:

View File

@@ -1,10 +1,6 @@
<RCC>
<qresource prefix="/">
<file>symbols/router.svg</file>
<file>symbols/iosv_virl.svg</file>
<file>symbols/label_switch_router.svg</file>
<file>symbols/optical_router.svg</file>
<file>symbols/PIX_firewall.svg</file>
<file>symbols/firewall.svg</file>
<file>symbols/computer.svg</file>
<file>symbols/qemu_guest.svg</file>
@@ -12,17 +8,11 @@
<file>symbols/vpcs_guest.svg</file>
<file>symbols/vmware_guest.svg</file>
<file>symbols/docker_guest.svg</file>
<file>symbols/voice_router.svg</file>
<file>symbols/ids.svg</file>
<file>symbols/asa.svg</file>
<file>symbols/multilayer_switch.svg</file>
<file>symbols/iosv_l2_virl.svg</file>
<file>symbols/lightweight_ap.svg</file>
<file>symbols/wlan_controller.svg</file>
<file>symbols/atm_switch.svg</file>
<file>symbols/frame_relay_switch.svg</file>
<file>symbols/ethernet_switch.svg</file>
<file>symbols/access_point.svg</file>
<file>symbols/cloud.svg</file>
<file>symbols/hub.svg</file>
<file alias="icons/default.svg">icons/cancel.svg</file>

View File

@@ -1,187 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="66.000435"
height="44.5159"
version="1.0"
sodipodi:docname="PIX_firewall.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>PIX firewall</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958335"
inkscape:cx="27.334225"
inkscape:cy="24.784192"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="g4160" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215687;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="41.53862"
x="1.4479325"
y="2.9772801"
ry="11.631706"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="42.154343"
x="0.0625"
y="0.18084908"
ry="11.557454"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g4160">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 20.944567,2.9798116 L 20.944567,19.692911 L 37.445412,11.129174 L 20.944567,2.9798116"
id="path2363"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 38.706882,3.4139175 L 38.706882,18.055146 L 43.366183,18.055146 L 43.366183,3.4139175 L 38.706882,3.4139175"
id="path2365"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 21.371839,3.4139175 L 21.371839,20.067821 L 37.872683,11.543548 L 21.371839,3.4139175"
id="path2367"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 39.113807,3.80856 L 39.113807,18.449788 L 43.773109,18.449788 L 43.773109,3.80856 L 39.113807,3.80856"
id="path2369"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -1,516 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="71.851372"
height="32.285366"
version="1.0"
sodipodi:docname="access_point.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Access Point</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
id="linearGradient6587">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#edeff3;stop-opacity:1;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119123,0,0,1.09281,-7.833718e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119124,0,0,1.09281,-7.8336875e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient11856"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.191597,0,0,15.33747,-2.6428869,0.1648577)"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="29.134315"
inkscape:cy="14.842697"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="svg1998" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 2.1663193,16.589602 L 2.1663193,32.285367 L 54.763443,32.285367 L 54.763443,16.589602 L 2.1663193,16.589602"
id="path13703" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 54.724715,18.919483 L 71.109211,3.1102265 L 71.109211,16.523256 L 54.724715,32.33251 L 54.724715,18.919483"
id="path14592" />
<path
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001"
d="M 54.781867,16.528044 L 71.793065,0.13423853 L 71.793065,14.043216 L 54.781867,30.437021 L 54.781867,16.528044"
id="path2009" />
<path
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.00110589"
d="M 0.21478248,16.474061 L 0.21478248,30.310372 L 55.069651,30.310372 L 55.069651,16.474061 L 0.21478248,16.474061"
id="path2007" />
<path
style="fill:url(#linearGradient11856);fill-opacity:1;stroke:none;stroke-width:0.01505287;stroke-opacity:1"
d="M 55.06494,16.770099 L 72.155489,0.17496232 L 16.934026,0.17496232 L -0.11094903,16.770099 L 55.06494,16.770099"
id="path2013" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2481"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2483"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2485"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2487"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2489"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2491"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2495"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2497"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2499"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2501"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2503"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2505"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2507"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2509"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2511"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2513"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2515"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2517"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2519"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2521"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2523"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2525"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2527"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2529"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2531"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2533"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2535"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2537"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2539"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2541"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2543"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2545"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2547"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2549"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2551"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2553"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2555"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2557"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2559"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2561"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2563"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2565"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2567"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2569"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2571"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2573"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2575"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2577"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2579"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2581"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2583"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2585"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2587"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2589"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2591"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2593"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2595"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2597"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2599"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2601"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2603"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2605"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2607"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2609"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2611"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2613"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2615"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2617"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2619"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2621"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2623"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2625"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2627"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2629"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2631"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2633"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2635"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2637"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2639"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</svg>

Before

Width:  |  Height:  |  Size: 254 KiB

View File

@@ -1,310 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.47 r22583"
width="51.358818"
height="47.630692"
version="1.0"
sodipodi:docname="ids.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<title
id="title2849">IDS</title>
<metadata
id="metadata2003">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
<dc:title>IDS</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 23.815346 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="51.358818 : 23.815346 : 1"
inkscape:persp3d-origin="25.679409 : 15.876897 : 1"
id="perspective43" />
<linearGradient
inkscape:collect="always"
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0;"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop8333" />
<stop
style="stop-color:#dde3ef;stop-opacity:1;"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient10129"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient6875"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.897735,0,0,25.405463,-9.0988193,-4.8632254)"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999" />
<inkscape:perspective
id="perspective418"
inkscape:persp3d-origin="283.46457 : 188.97638 : 1"
inkscape:vp_z="566.92914 : 283.46457 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 283.46457 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3145"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
inkscape:window-height="676"
inkscape:window-width="960"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958336"
inkscape:cx="-14.193457"
inkscape:cy="31.087025"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:current-layer="svg1998"
showgrid="false"
inkscape:window-maximized="0" />
<path
id="path11907"
d="M 1.8402723,44.565612 L 1.8402723,47.615693 L 44.293781,47.615693 L 44.293781,44.565612 L 1.8402723,44.565612"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001" />
<path
id="path11020"
d="M 44.370594,6.1851672 L 51.194316,1.0980117 L 51.358819,41.344844 L 44.266438,47.63069 L 44.370594,6.1851672"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2037"
d="M 0.062500355,5.1558922 L 0.062500355,46.326915 L 44.407694,46.326915 L 44.407694,5.1558922 L 0.062500355,5.1558922"
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2041"
d="M -0.38461268,5.6292351 L 5.2920708,0.21786924 L 50.13289,0.21786924 L 44.406412,5.6292351 L -0.38461268,5.6292351"
style="fill:url(#linearGradient6875);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2045"
d="M 44.273363,5.1335036 L 49.931392,0.17309204 L 49.931392,41.393412 L 44.273363,46.353824 L 44.273363,5.1335036"
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path3151"
d="M 6.4284393,19.605415 L 25.596065,19.605415 L 25.596065,18.327628 L 29.718118,20.883894 L 25.596065,23.65251 L 25.596065,22.374758 L 6.4284393,22.374758 L 6.4284393,19.605415 z "
style="fill:#000000;fill-opacity:1" />
<path
style="fill:#ffffff"
d="M 6.5550771,19.225466 L 25.201535,19.225466 L 25.201535,17.947679 L 29.211514,20.503945 L 25.201535,23.272561 L 25.201535,21.994809 L 6.5550771,21.994809 L 6.5550771,19.225466 z "
id="path134" />
<path
id="path3943"
d="M 34.935195,26.761584 L 19.065272,26.761584 L 19.065272,25.483088 L 14.737122,28.039372 L 19.065272,30.808696 L 19.065272,29.530218 L 34.935195,29.530218 L 34.935195,26.761584 z "
style="fill:#000000;fill-opacity:1" />
<path
style="fill:#ffffff"
d="M 35.188506,26.254998 L 19.318583,26.254998 L 19.318583,24.976502 L 14.990433,27.532785 L 19.318583,30.30211 L 19.318583,29.023632 L 35.188506,29.023632 L 35.188506,26.254998 L 35.188506,26.254998 z "
id="path136" />
<path
style="fill:#ffffff"
d="M 42.402076,39.674104 L 39.722752,43.082694 L 30.035935,34.987744 L 32.715242,31.366803 L 42.402076,39.674104 L 42.402076,39.674104 z "
id="path142" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 42.402076,39.674104 L 39.722752,43.082694 L 30.035935,34.987744 L 32.715242,31.366803 L 42.402076,39.674104"
id="path144" />
<path
style="fill:#ffffff"
d="M 7.364581,21.781714 C 6.5401598,30.089015 12.311038,37.544009 20.143004,38.396334 C 28.180978,39.461027 35.394602,33.496897 36.425155,25.189596 C 37.249488,16.882277 31.478663,9.4273013 23.4406,8.5749765 C 15.608758,7.5103013 8.18902,13.474396 7.364581,21.781714 L 9.4256341,21.994809 C 10.250073,14.965278 16.433091,9.8534548 23.234504,10.705071 C 30.242049,11.344301 35.188506,17.947679 34.364067,24.976502 C 33.539663,32.006051 27.356557,37.117856 20.3491,36.479316 C 13.547687,35.626992 8.6012129,29.023632 9.4256341,21.994809 L 7.364581,21.781714 L 7.364581,21.781714 z "
id="path146" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 7.364581,21.781714 C 6.5401598,30.089015 12.311038,37.544009 20.143004,38.396334 C 28.180978,39.461027 35.394602,33.496897 36.425155,25.189596 C 37.249488,16.882277 31.478663,9.4273013 23.4406,8.5749765 C 15.608758,7.5103013 8.18902,13.474396 7.364581,21.781714"
id="path148" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 9.4256341,21.994809 C 10.250073,14.965278 16.433091,9.8534548 23.234504,10.705071 C 30.242049,11.344301 35.188506,17.947679 34.364067,24.976502 C 33.539663,32.006051 27.356557,37.117856 20.3491,36.479316 C 13.547687,35.626992 8.6012129,29.023632 9.4256341,21.994809"
id="path150" />
<path
style="fill:#ffffff"
d="M 5.5096953,22.420962 C 4.6852917,30.728263 10.45617,38.18324 18.494144,39.24795 C 26.326092,40.100275 33.74576,34.136145 34.570198,25.828844 C 35.394602,17.521525 29.829821,10.066549 21.791776,9.2142245 C 13.753801,8.1495316 6.5401598,14.113661 5.5096953,22.420962 L 7.5706952,22.63333 C 8.3951165,15.604526 14.578223,10.492012 21.585679,11.344301 C 28.387092,11.983549 33.333549,18.586218 32.509145,25.61575 C 31.684777,32.645299 25.501689,37.757086 18.700258,37.117856 C 11.692731,36.26624 6.7462563,29.875939 7.5706952,22.63333 L 5.5096953,22.420962 L 5.5096953,22.420962 z "
id="path152" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 5.5096953,22.420962 C 4.6852917,30.728263 10.45617,38.18324 18.494144,39.24795 C 26.326092,40.100275 33.74576,34.136145 34.570198,25.828844 C 35.394602,17.521525 29.829821,10.066549 21.791776,9.2142245 C 13.753801,8.1495316 6.5401598,14.113661 5.5096953,22.420962"
id="path154" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 7.5706952,22.63333 C 8.3951165,15.604526 14.578223,10.492012 21.585679,11.344301 C 28.387092,11.983549 33.333549,18.586218 32.509145,25.61575 C 31.684777,32.645299 25.501689,37.757086 18.700258,37.117856 C 11.692731,36.26624 6.7462563,29.875939 7.5706952,22.63333"
id="path156" />
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -1,286 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.48.4 r9939"
width="51.358818"
height="47.630692"
version="1.0"
sodipodi:docname="vios_l2.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Multilayer switch</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop8333" />
<stop
style="stop-color:#cfd8e9;stop-opacity:1;"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient8337"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient9199"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.666332,1.3331909e-2,-1.2883406e-2,23.708747,-8.6563136,-4.6316275)"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999" />
<path
transform="scale(10,-10) translate(26,-26)"
id="p"
d="M 2.8117,-1.046 A 3 3 0 0 1 .5,2.958 V 4.5119 A 10.5 10.5 0 0 1 2,25.3078 V 25.8661 A 15 15 0 0 0 14.7975,8.5433 15 15 0 0 0 23.4007,-11.201 L 22.9172,-10.9218 A 10.5 10.5 0 0 1 4.1574,-1.8229 z M 6.2265,7.825 A 10 10 0 0 1 -6.2265,7.825 9.5 9.5 0 0 0 -8.4021,10.5667 13.5 13.5 0 0 0 8.4021,10.5667 10 10 0 0 0 6.2265,7.825 z" />
</defs>
<sodipodi:namedview
inkscape:window-height="631"
inkscape:window-width="710"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="5.6568542"
inkscape:cx="45.594763"
inkscape:cy="27.091102"
inkscape:window-x="1129"
inkscape:window-y="285"
inkscape:current-layer="svg1998"
showgrid="false"
inkscape:window-maximized="0" />
<path
id="path11907"
d="M 1.8402723,44.565612 L 1.8402723,47.615693 L 44.293781,47.615693 L 44.293781,44.565612 L 1.8402723,44.565612"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001" />
<path
id="path11020"
d="M 44.370594,6.1851672 L 51.194316,1.0980117 L 51.358819,41.344844 L 44.266438,47.63069 L 44.370594,6.1851672"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2037"
d="m -0.02588799,5.0439492 0,41.2829658 44.25563999,0 0,-41.2829658 -44.25563999,0"
style="fill:#6e8caa;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path2041"
d="M -0.028418806,5.1647552 L 5.5982489,0.11782966 L 50.022311,0.14184042 L 44.346312,5.1887393 L -0.028418806,5.1647552"
style="fill:url(#linearGradient9199);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2045"
d="m 44.228586,5.2655031 5.747583,-4.96041157 0,41.22032047 -5.747583,4.960412 0,-41.2203209"
style="fill:#6e8296;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<g
transform="matrix(0.11988204,0,0,0.11988204,-17.597288,73.349552)"
id="biohazard-5">
<use
style="fill:#000000"
transform="matrix(0.59107234,0,0,0.59107234,184.79656,-531.9575)"
xlink:href="#p"
id="use3175"
x="0"
y="0"
width="1"
height="1" />
<use
height="1"
width="1"
y="0"
x="0"
id="use3341-4"
xlink:href="#p"
transform="matrix(0.59107234,0,0,0.59107234,178.54041,-531.9575)"
style="fill:#ffffff" />
<use
style="fill:#000000"
xlink:href="#p"
transform="matrix(-0.29553617,0.51188366,-0.51188366,-0.29553617,548.40456,-434.52903)"
id="use3177"
x="0"
y="0"
width="1"
height="1" />
<use
height="1"
width="1"
y="0"
x="0"
id="use3343-1"
transform="matrix(-0.29553617,0.51188366,-0.51188366,-0.29553617,542.14838,-434.52903)"
xlink:href="#p"
style="fill:#ffffff" />
<use
style="fill:#000000"
xlink:href="#p"
transform="matrix(-0.29400183,-0.50773227,0.5092261,-0.29313937,279.18389,-169.44999)"
id="use3179"
x="0"
y="0"
width="1"
height="1" />
<use
height="1"
width="1"
y="0"
x="0"
id="use3345-1"
transform="matrix(-0.28939879,-0.51188366,0.5012534,-0.29553617,274.12647,-168.34953)"
xlink:href="#p"
style="fill:#ffffff" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.3 KiB

View File

@@ -1,394 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.48.4 r9939"
width="65.937935"
height="55.615818"
version="1.0"
sodipodi:docname="vios.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata2003">
<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>Router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
<path
d="M 2.8117,-1.046 A 3 3 0 0 1 .5,2.958 V 4.5119 A 10.5 10.5 0 0 1 2,25.3078 V 25.8661 A 15 15 0 0 0 14.7975,8.5433 15 15 0 0 0 23.4007,-11.201 L 22.9172,-10.9218 A 10.5 10.5 0 0 1 4.1574,-1.8229 z M 6.2265,7.825 A 10 10 0 0 1 -6.2265,7.825 9.5 9.5 0 0 0 -8.4021,10.5667 13.5 13.5 0 0 0 8.4021,10.5667 10 10 0 0 0 6.2265,7.825 z"
id="p"
transform="scale(10,-10) translate(26,-26)" />
<linearGradient
y2="0.30649999"
x2="-0.4954865"
y1="0.30649999"
x1="2.1178279"
gradientTransform="matrix(24.666332,1.3331909e-2,-1.2883406e-2,23.708747,-8.6563136,-4.6316275)"
gradientUnits="userSpaceOnUse"
id="linearGradient9199"
xlink:href="#linearGradient8331"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)"
gradientUnits="userSpaceOnUse"
y2="0.30649999"
x2="-0.4954865"
y1="0.30649999"
x1="2.1178279"
id="linearGradient8337"
xlink:href="#linearGradient8331"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)"
gradientUnits="userSpaceOnUse"
y2="1.4649135"
x2="-0.41311559"
y1="1.4519272"
x1="2.2801981"
id="linearGradient6609"
xlink:href="#linearGradient6603"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)"
gradientUnits="userSpaceOnUse"
y2="0.62730032"
x2="-1.2664427"
y1="0.64267641"
x1="3.95626"
id="linearGradient6593"
xlink:href="#linearGradient6587"
inkscape:collect="always" />
<marker
style="overflow:visible"
id="Arrow1Lstart-0"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
id="path11936-1" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send-4"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
id="path11921-5" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lstart-1"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lstart">
<path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
id="path11918-3" />
</marker>
<linearGradient
id="linearGradient6587"
inkscape:collect="always">
<stop
id="stop6589"
offset="0"
style="stop-color:#506eaa;stop-opacity:1;" />
<stop
id="stop6591"
offset="1"
style="stop-color:#506eaa;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient6603"
inkscape:collect="always">
<stop
id="stop6605"
offset="0"
style="stop-color:#506eaa;stop-opacity:1;" />
<stop
id="stop6607"
offset="1"
style="stop-color:#506eaa;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
id="stop8333"
offset="0"
style="stop-color:#6e8caa;stop-opacity:1;" />
<stop
id="stop8335"
offset="1"
style="stop-color:#cfd8e9;stop-opacity:1;" />
</linearGradient>
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="11.166395"
inkscape:cx="27.334225"
inkscape:cy="20.948248"
inkscape:window-x="124"
inkscape:window-y="51"
inkscape:current-layer="svg1998"
showgrid="false"
inkscape:window-maximized="0" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.553001"
height="54.450546"
x="1.3854325"
y="1.1652724"
ry="15.247324"
rx="32.213169"
inkscape:transform-center-x="8.4568758" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="52.040936"
x="0"
y="0.91024613"
ry="11.802391"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g3579"
transform="matrix(1.0000067,0,0,0.9900067,40.759311,2.327137)">
<path
id="path3581"
d="M 23.677527,9.7502028 L 23.620489,9.1645488 L 23.506407,8.5788958 L 23.316272,8.0127658 L 23.03107,7.4271138 L 22.650803,6.8609828 L 22.213492,6.2948508 L 21.681115,5.7482428 L 21.072684,5.2211558 L 20.3882,4.6940668 L 19.627661,4.1865018 L 18.810084,3.6789348 L 17.916451,3.1908918 L 16.946765,2.7028468 L 15.920038,2.2733688 L 14.817258,1.8438898 L 13.657439,1.4144108 L 12.45959,1.0239748 L 11.18569,0.6725838 L 9.8737612,0.3211921 L 8.5047922,0.0088434012 L 7.0977972,-0.2839824 L 5.6527742,-0.5572882 L 4.1697252,-0.7915484 L 2.6676622,-1.0258099 L 1.1275722,-1.2015057 L -0.45054482,-1.3576797 L -2.0476748,-1.4943326 L -3.6448038,-1.5919412 L -5.2609448,-1.6700286 L -6.8961048,-1.7285939 L -8.5122458,-1.7285939 L -8.5122458,-1.7285939 L -10.147406,-1.7285939 L -11.78256,-1.6700286 L -13.379691,-1.5919412 L -14.995836,-1.4943326 L -16.592965,-1.3576797 L -18.152069,-1.2015057 L -19.711169,-1.0258099 L -21.213234,-0.7915484 L -22.696283,-0.5572882 L -24.141307,-0.2839824 L -25.548301,0.0088434012 L -26.917268,0.3211921 L -28.229199,0.6725838 L -29.503099,1.0239748 L -30.700949,1.4144108 L -31.860772,1.8438898 L -32.963548,2.2733688 L -33.990275,2.7028468 L -34.959963,3.1908918 L -35.853593,3.6789348 L -36.671173,4.1865018 L -37.431708,4.6940668 L -38.116197,5.2211558 L -38.705611,5.7482428 L -39.257001,6.2948508 L -39.694309,6.8609828 L -40.074582,7.4271138 L -40.359781,8.0127658 L -40.568933,8.5788958 L -40.683011,9.1645488 L -40.721038,9.7502028 L -40.721038,9.7502028 L -40.683011,10.335856 L -40.568933,10.901987 L -40.359781,11.48764 L -40.074582,12.03425 L -39.694309,12.619902 L -39.257001,13.166511 L -38.705611,13.732642 L -38.116197,14.279254 L -37.431708,14.806341 L -36.671173,15.294385 L -35.853593,15.801949 L -34.959963,16.309514 L -33.990275,16.758515 L -32.963548,17.207517 L -31.860772,17.656519 L -30.700949,18.066477 L -29.503099,18.456913 L -28.229199,18.808302 L -26.917268,19.159693 L -25.548301,19.472041 L -24.141307,19.784392 L -22.696283,20.038171 L -21.213234,20.291955 L -19.711169,20.506693 L -18.152069,20.682391 L -16.592965,20.838567 L -14.995836,20.975218 L -13.379691,21.072827 L -11.78256,21.150915 L -10.147406,21.20948 L -8.5122458,21.20948 L -8.5122458,21.20948 L -6.8961048,21.20948 L -5.2609448,21.150915 L -3.6448038,21.072827 L -2.0476748,20.975218 L -0.45054482,20.838567 L 1.1275722,20.682391 L 2.6676622,20.506693 L 4.1697252,20.291955 L 5.6527742,20.038171 L 7.0977972,19.784392 L 8.5047922,19.472041 L 9.8737612,19.159693 L 11.18569,18.808302 L 12.45959,18.456913 L 13.657439,18.066477 L 14.817258,17.656519 L 15.920038,17.207517 L 16.946765,16.758515 L 17.916451,16.309514 L 18.810084,15.801949 L 19.627661,15.294385 L 20.3882,14.806341 L 21.072684,14.279254 L 21.681115,13.732642 L 22.213492,13.166511 L 22.650803,12.619902 L 23.03107,12.03425 L 23.316272,11.48764 L 23.506407,10.901987 L 23.620489,10.335856 L 23.677527,9.7502028"
style="fill:#3c8c8c;fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g4160"
transform="matrix(1.0000067,0,0,0.9900067,-7.7865845e-2,0.5539581)">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path4819"
d="M 33.023738,8.6936939 L 37.664889,10.327433 L 48.909313,5.4458969 L 53.946665,7.0599533 L 51.229891,3.0248142 L 38.061087,3.0248142 L 43.475766,4.225514 L 33.023738,8.6936939"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4821"
d="M 31.08049,13.161874 L 26.439334,11.528132 L 15.591104,16.429352 L 10.176425,14.775929 L 12.874332,19.244109 L 26.439334,19.244109 L 20.628458,17.630052 L 31.08049,13.161874"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4823"
d="M 11.327278,4.225514 L 15.968435,2.611458 L 27.212859,7.0599533 L 32.25021,5.8592533 L 29.552303,9.8943939 L 16.364632,9.8943939 L 21.779313,8.6936939 L 11.327278,4.225514"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4825"
d="M 53.154272,18.023723 L 48.513117,19.657467 L 37.664889,14.775929 L 32.25021,16.429352 L 34.966985,12.33516 L 48.513117,12.33516 L 42.70224,13.555544 L 53.154272,18.023723"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4827"
d="M 33.419936,9.1070493 L 38.061087,10.721105 L 49.286643,5.8592533 L 54.323994,7.4929926 L 51.60722,3.4184854 L 38.438415,3.4184854 L 43.871962,4.6191872 L 33.419936,9.1070493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4829"
d="M 31.476681,13.555544 L 26.816665,11.941487 L 15.968435,16.803341 L 10.553753,15.189284 L 13.25166,19.657467 L 26.816665,19.657467 L 21.005786,18.023723 L 31.476681,13.555544"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4831"
d="M 11.723476,4.6191872 L 16.364632,3.0248142 L 27.609055,7.4929926 L 32.627541,6.2529266 L 29.929634,10.327433 L 16.741963,10.327433 L 22.175509,9.1070493 L 11.723476,4.6191872"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4833"
d="M 53.531602,18.43708 L 48.909313,20.070823 L 38.061087,15.189284 L 32.627541,16.803341 L 35.344315,12.7682 L 48.909313,12.7682 L 43.098437,13.9689 L 53.531602,18.43708"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
<g
id="g3377"
transform="translate(27.261461,25.114531)">
<g
id="biohazard-5"
transform="matrix(0.08208805,0,0,0.08208805,-22.699733,44.974166)">
<use
height="1"
width="1"
y="0"
x="0"
id="use3175"
xlink:href="#p"
transform="matrix(0.59107234,0,0,0.59107234,184.79656,-531.9575)"
style="fill:#000000" />
<use
style="fill:#ffffff"
transform="matrix(0.59107234,0,0,0.59107234,178.54041,-531.9575)"
xlink:href="#p"
id="use3341-4"
x="0"
y="0"
width="1"
height="1" />
<use
height="1"
width="1"
y="0"
x="0"
id="use3177"
transform="matrix(-0.29553617,0.51188366,-0.51188366,-0.29553617,548.40456,-434.52903)"
xlink:href="#p"
style="fill:#000000" />
<use
style="fill:#ffffff"
xlink:href="#p"
transform="matrix(-0.29553617,0.51188366,-0.51188366,-0.29553617,542.14838,-434.52903)"
id="use3343-1"
x="0"
y="0"
width="1"
height="1" />
<use
height="1"
width="1"
y="0"
x="0"
id="use3179"
transform="matrix(-0.29400183,-0.50773227,0.5092261,-0.29313937,279.18389,-169.44999)"
xlink:href="#p"
style="fill:#000000" />
<use
style="fill:#ffffff"
xlink:href="#p"
transform="matrix(-0.28939879,-0.51188366,0.5012534,-0.29553617,274.12647,-168.34953)"
id="use3345-1"
x="0"
y="0"
width="1"
height="1" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -1,223 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45.1"
width="65.937935"
height="55.615818"
version="1.0"
sodipodi:docname="label_switch_router.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata2003">
<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>Router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958336"
inkscape:cx="22.434518"
inkscape:cy="33.547491"
inkscape:window-x="124"
inkscape:window-y="71"
inkscape:current-layer="svg1998" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="54.450546"
x="1.3854325"
y="1.1652727"
ry="15.247324"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="52.040936"
x="0"
y="0.91024631"
ry="11.802391"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g3579"
transform="matrix(1.0000067,0,0,0.9900067,40.759311,2.3271372)">
<path
id="path3581"
d="M 23.677527,9.7502028 L 23.620489,9.1645488 L 23.506407,8.5788958 L 23.316272,8.0127658 L 23.03107,7.4271138 L 22.650803,6.8609828 L 22.213492,6.2948508 L 21.681115,5.7482428 L 21.072684,5.2211558 L 20.3882,4.6940668 L 19.627661,4.1865018 L 18.810084,3.6789348 L 17.916451,3.1908918 L 16.946765,2.7028468 L 15.920038,2.2733688 L 14.817258,1.8438898 L 13.657439,1.4144108 L 12.45959,1.0239748 L 11.18569,0.6725838 L 9.8737612,0.3211921 L 8.5047922,0.0088434012 L 7.0977972,-0.2839824 L 5.6527742,-0.5572882 L 4.1697252,-0.7915484 L 2.6676622,-1.0258099 L 1.1275722,-1.2015057 L -0.45054482,-1.3576797 L -2.0476748,-1.4943326 L -3.6448038,-1.5919412 L -5.2609448,-1.6700286 L -6.8961048,-1.7285939 L -8.5122458,-1.7285939 L -8.5122458,-1.7285939 L -10.147406,-1.7285939 L -11.78256,-1.6700286 L -13.379691,-1.5919412 L -14.995836,-1.4943326 L -16.592965,-1.3576797 L -18.152069,-1.2015057 L -19.711169,-1.0258099 L -21.213234,-0.7915484 L -22.696283,-0.5572882 L -24.141307,-0.2839824 L -25.548301,0.0088434012 L -26.917268,0.3211921 L -28.229199,0.6725838 L -29.503099,1.0239748 L -30.700949,1.4144108 L -31.860772,1.8438898 L -32.963548,2.2733688 L -33.990275,2.7028468 L -34.959963,3.1908918 L -35.853593,3.6789348 L -36.671173,4.1865018 L -37.431708,4.6940668 L -38.116197,5.2211558 L -38.705611,5.7482428 L -39.257001,6.2948508 L -39.694309,6.8609828 L -40.074582,7.4271138 L -40.359781,8.0127658 L -40.568933,8.5788958 L -40.683011,9.1645488 L -40.721038,9.7502028 L -40.721038,9.7502028 L -40.683011,10.335856 L -40.568933,10.901987 L -40.359781,11.48764 L -40.074582,12.03425 L -39.694309,12.619902 L -39.257001,13.166511 L -38.705611,13.732642 L -38.116197,14.279254 L -37.431708,14.806341 L -36.671173,15.294385 L -35.853593,15.801949 L -34.959963,16.309514 L -33.990275,16.758515 L -32.963548,17.207517 L -31.860772,17.656519 L -30.700949,18.066477 L -29.503099,18.456913 L -28.229199,18.808302 L -26.917268,19.159693 L -25.548301,19.472041 L -24.141307,19.784392 L -22.696283,20.038171 L -21.213234,20.291955 L -19.711169,20.506693 L -18.152069,20.682391 L -16.592965,20.838567 L -14.995836,20.975218 L -13.379691,21.072827 L -11.78256,21.150915 L -10.147406,21.20948 L -8.5122458,21.20948 L -8.5122458,21.20948 L -6.8961048,21.20948 L -5.2609448,21.150915 L -3.6448038,21.072827 L -2.0476748,20.975218 L -0.45054482,20.838567 L 1.1275722,20.682391 L 2.6676622,20.506693 L 4.1697252,20.291955 L 5.6527742,20.038171 L 7.0977972,19.784392 L 8.5047922,19.472041 L 9.8737612,19.159693 L 11.18569,18.808302 L 12.45959,18.456913 L 13.657439,18.066477 L 14.817258,17.656519 L 15.920038,17.207517 L 16.946765,16.758515 L 17.916451,16.309514 L 18.810084,15.801949 L 19.627661,15.294385 L 20.3882,14.806341 L 21.072684,14.279254 L 21.681115,13.732642 L 22.213492,13.166511 L 22.650803,12.619902 L 23.03107,12.03425 L 23.316272,11.48764 L 23.506407,10.901987 L 23.620489,10.335856 L 23.677527,9.7502028"
style="fill:#3c8c8c;fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g4160"
transform="matrix(1.0000067,0,0,0.9900067,-7.7865845e-2,0.5539583)">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path4819"
d="M 33.023738,8.6936939 L 37.664889,10.327433 L 48.909313,5.4458969 L 53.946665,7.0599533 L 51.229891,3.0248142 L 38.061087,3.0248142 L 43.475766,4.225514 L 33.023738,8.6936939"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4821"
d="M 31.08049,13.161874 L 26.439334,11.528132 L 15.591104,16.429352 L 10.176425,14.775929 L 12.874332,19.244109 L 26.439334,19.244109 L 20.628458,17.630052 L 31.08049,13.161874"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4823"
d="M 11.327278,4.225514 L 15.968435,2.611458 L 27.212859,7.0599533 L 32.25021,5.8592533 L 29.552303,9.8943939 L 16.364632,9.8943939 L 21.779313,8.6936939 L 11.327278,4.225514"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4825"
d="M 53.154272,18.023723 L 48.513117,19.657467 L 37.664889,14.775929 L 32.25021,16.429352 L 34.966985,12.33516 L 48.513117,12.33516 L 42.70224,13.555544 L 53.154272,18.023723"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4827"
d="M 33.419936,9.1070493 L 38.061087,10.721105 L 49.286643,5.8592533 L 54.323994,7.4929926 L 51.60722,3.4184854 L 38.438415,3.4184854 L 43.871962,4.6191872 L 33.419936,9.1070493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4829"
d="M 31.476681,13.555544 L 26.816665,11.941487 L 15.968435,16.803341 L 10.553753,15.189284 L 13.25166,19.657467 L 26.816665,19.657467 L 21.005786,18.023723 L 31.476681,13.555544"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4831"
d="M 11.723476,4.6191872 L 16.364632,3.0248142 L 27.609055,7.4929926 L 32.627541,6.2529266 L 29.929634,10.327433 L 16.741963,10.327433 L 22.175509,9.1070493 L 11.723476,4.6191872"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4833"
d="M 53.531602,18.43708 L 48.909313,20.070823 L 38.061087,15.189284 L 32.627541,16.803341 L 35.344315,12.7682 L 48.909313,12.7682 L 43.098437,13.9689 L 53.531602,18.43708"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
<g
id="g2348"
transform="matrix(17.401911,0,0,14.71664,42.176668,19.193922)">
<path
id="path2339"
d="M -1.142098,0.44241813 L -1.142098,0.62241813 L -0.780098,0.62241813 L -0.582098,1.0334181 L -0.385098,0.62241813 L -0.023097999,0.62241813 L -0.023097999,0.44241813 L 0.205902,0.67341813 L -0.023097999,0.90241813 L -0.023097999,0.73841813 L -0.286098,0.73841813 L -0.501098,1.1974181 L -0.286098,1.6564181 L -0.023097999,1.6564181 L -0.023097999,1.4924181 L 0.205902,1.7224181 L -0.023097999,1.9514181 L -0.023097999,1.7884181 L -0.385098,1.7884181 L -0.582098,1.3614181 L -0.780098,1.7884181 L -1.142098,1.7884181 L -1.142098,1.9514181 L -1.373098,1.7224181 L -1.142098,1.4924181 L -1.142098,1.6564181 L -0.895098,1.6564181 L -0.665098,1.1974181 L -0.895098,0.73841813 L -1.142098,0.73841813 L -1.142098,0.90241813 L -1.373098,0.67341813 L -1.142098,0.44241813"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2341"
d="M -1.126098,0.45941813 L -1.126098,0.64041813 L -0.764098,0.64041813 L -0.566098,1.0494181 L -0.369098,0.64041813 L -0.0080979988,0.64041813 L -0.0080979988,0.45941813 L 0.222902,0.68941813 L -0.0080979988,0.91941813 L -0.0080979988,0.75541813 L -0.270098,0.75541813 L -0.484098,1.2144181 L -0.270098,1.6734181 L -0.0080979988,1.6734181 L -0.0080979988,1.5094181 L 0.222902,1.7384181 L -0.0080979988,1.9684181 L -0.0080979988,1.8044181 L -0.369098,1.8044181 L -0.566098,1.3774181 L -0.764098,1.8044181 L -1.126098,1.8044181 L -1.126098,1.9684181 L -1.356098,1.7384181 L -1.126098,1.5094181 L -1.126098,1.6734181 L -0.879098,1.6734181 L -0.649098,1.2144181 L -0.879098,0.75541813 L -1.126098,0.75541813 L -1.126098,0.91941813 L -1.356098,0.68941813 L -1.126098,0.45941813"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -1,536 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="71.851372"
height="32.285366"
version="1.0"
sodipodi:docname="lightweight_ap.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Lightweight Access Point</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
id="linearGradient6587">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#edeff3;stop-opacity:1;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119123,0,0,1.09281,-7.833718e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119124,0,0,1.09281,-7.8336875e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient11856"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.191597,0,0,15.33747,-2.6428869,0.1648577)"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="29.134315"
inkscape:cy="14.842697"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="svg1998" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 2.1663193,16.589602 L 2.1663193,32.285367 L 54.763443,32.285367 L 54.763443,16.589602 L 2.1663193,16.589602"
id="path13703" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 54.724715,18.919483 L 71.109211,3.1102265 L 71.109211,16.523256 L 54.724715,32.33251 L 54.724715,18.919483"
id="path14592" />
<path
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001"
d="M 54.781867,16.528044 L 71.793065,0.13423853 L 71.793065,14.043216 L 54.781867,30.437021 L 54.781867,16.528044"
id="path2009" />
<path
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.00110589"
d="M 0.21478248,16.474061 L 0.21478248,30.310372 L 55.069651,30.310372 L 55.069651,16.474061 L 0.21478248,16.474061"
id="path2007" />
<path
style="fill:url(#linearGradient11856);fill-opacity:1;stroke:none;stroke-width:0.01505287;stroke-opacity:1"
d="M 55.06494,16.770099 L 72.155489,0.17496232 L 16.934026,0.17496232 L -0.11094903,16.770099 L 55.06494,16.770099"
id="path2013" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2481"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2483"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2485"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2487"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2489"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2491"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2495"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2497"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2499"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2501"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2503"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2505"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2507"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2509"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2511"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2513"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2515"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2517"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2519"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2521"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2523"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2525"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2527"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2529"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2531"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2533"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2535"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2537"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2539"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2541"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2543"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2545"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2547"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2549"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2551"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2553"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2555"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2557"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2559"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2561"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2563"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2565"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2567"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2569"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2571"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2573"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2575"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2577"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2579"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2581"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2583"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2585"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2587"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2589"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2591"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2593"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2595"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2597"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2599"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2601"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2603"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2605"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2607"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2609"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2611"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2613"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2615"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2617"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2619"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2621"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2623"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2625"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2627"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2629"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2631"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2633"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2635"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2637"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2639"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.127442,3.9896238 L 18.111228,3.9896238 L 9.2645717,12.137837 L 16.095014,12.137837 L 17.494019,10.114274 L 12.823808,10.114274 L 20.127442,3.9896238"
id="path2479"
style="fill:#ffffff;stroke:none;stroke-width:0.085" />
<path
d="M 25.250271,12.137837 L 36.730348,3.9896238 L 34.570119,3.9896238 L 26.484688,10.707853 L 31.463503,3.9896238 L 29.447288,3.9896238 L 21.361858,10.707853 L 26.484688,3.9896238 L 24.324458,3.9896238 L 18.255243,12.137837 L 20.127442,12.137837 L 28.665493,5.4196081 L 23.378072,12.137837 L 25.250271,12.137837"
id="path2496"
style="fill:#ffffff;stroke:none;stroke-width:0.085" />
<path
d="M 35.804536,10.114274 L 34.714135,12.137837 L 36.730348,12.137837 L 42.182358,3.9896238 L 39.836965,3.9896238 L 27.57509,12.137837 L 28.665493,12.137837 L 32.553904,10.114274 L 34.261514,8.0637305 L 38.911151,5.6354549 L 36.730348,8.0637305 L 34.261514,8.0637305 L 32.553904,10.114274 L 35.804536,10.114274"
id="path2498"
style="fill:#ffffff;stroke:none;stroke-width:0.085" />
<path
d="M 43.10817,10.114274 L 45.741592,10.114274 C 47.449202,10.114274 49.774021,8.6842902 51.481631,6.2290334 C 53.353828,4.3943364 53.18924,3.9896238 51.173025,3.9896238 L 46.831994,3.9896238 L 37.98534,12.137837 L 40.001554,12.137837 L 44.65119,8.0637305 L 47.305186,6.0401675 L 49.156813,6.0401675 C 50.247213,6.0401675 50.411802,6.2290334 49.465415,6.4448802 C 48.539603,7.470152 47.613791,8.0637305 46.523388,8.0637305 L 44.65119,8.0637305 L 40.001554,12.137837 L 43.10817,10.114274"
id="path2500"
style="fill:#ffffff;stroke:none;stroke-width:0.085" />
<path
d="M 52.119413,10.114274 L 54.588246,10.114274 C 56.460445,10.114274 58.785264,8.6842902 60.492875,6.2290334 C 62.365073,4.3943364 62.200483,3.9896238 60.019681,3.9896238 L 55.678648,3.9896238 L 46.996583,12.137837 L 49.012797,12.137837 L 53.662434,8.0637305 L 56.295856,6.0401675 L 58.168056,6.0401675 C 59.258457,6.0401675 59.258457,6.2290334 58.476661,6.4448802 C 57.550846,7.470152 56.60446,8.0637305 55.534633,8.0637305 L 53.662434,8.0637305 L 49.012797,12.137837 L 52.119413,10.114274"
id="path2502"
style="fill:#ffffff;stroke:none;stroke-width:0.085" />
</svg>

Before

Width:  |  Height:  |  Size: 256 KiB

View File

@@ -1,207 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45.1"
width="65.937935"
height="55.615818"
version="1.0"
sodipodi:docname="optical_router.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata2003">
<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>Router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958336"
inkscape:cx="1.710508"
inkscape:cy="33.547491"
inkscape:window-x="124"
inkscape:window-y="71"
inkscape:current-layer="svg1998" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="54.450546"
x="1.3854325"
y="1.1652732"
ry="15.247323"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="52.040936"
x="0"
y="0.91024679"
ry="11.802391"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g3579"
transform="matrix(1.0000067,0,0,0.9900067,40.759311,2.3271376)">
<path
id="path3581"
d="M 23.677527,9.7502028 L 23.620489,9.1645488 L 23.506407,8.5788958 L 23.316272,8.0127658 L 23.03107,7.4271138 L 22.650803,6.8609828 L 22.213492,6.2948508 L 21.681115,5.7482428 L 21.072684,5.2211558 L 20.3882,4.6940668 L 19.627661,4.1865018 L 18.810084,3.6789348 L 17.916451,3.1908918 L 16.946765,2.7028468 L 15.920038,2.2733688 L 14.817258,1.8438898 L 13.657439,1.4144108 L 12.45959,1.0239748 L 11.18569,0.6725838 L 9.8737612,0.3211921 L 8.5047922,0.0088434012 L 7.0977972,-0.2839824 L 5.6527742,-0.5572882 L 4.1697252,-0.7915484 L 2.6676622,-1.0258099 L 1.1275722,-1.2015057 L -0.45054482,-1.3576797 L -2.0476748,-1.4943326 L -3.6448038,-1.5919412 L -5.2609448,-1.6700286 L -6.8961048,-1.7285939 L -8.5122458,-1.7285939 L -8.5122458,-1.7285939 L -10.147406,-1.7285939 L -11.78256,-1.6700286 L -13.379691,-1.5919412 L -14.995836,-1.4943326 L -16.592965,-1.3576797 L -18.152069,-1.2015057 L -19.711169,-1.0258099 L -21.213234,-0.7915484 L -22.696283,-0.5572882 L -24.141307,-0.2839824 L -25.548301,0.0088434012 L -26.917268,0.3211921 L -28.229199,0.6725838 L -29.503099,1.0239748 L -30.700949,1.4144108 L -31.860772,1.8438898 L -32.963548,2.2733688 L -33.990275,2.7028468 L -34.959963,3.1908918 L -35.853593,3.6789348 L -36.671173,4.1865018 L -37.431708,4.6940668 L -38.116197,5.2211558 L -38.705611,5.7482428 L -39.257001,6.2948508 L -39.694309,6.8609828 L -40.074582,7.4271138 L -40.359781,8.0127658 L -40.568933,8.5788958 L -40.683011,9.1645488 L -40.721038,9.7502028 L -40.721038,9.7502028 L -40.683011,10.335856 L -40.568933,10.901987 L -40.359781,11.48764 L -40.074582,12.03425 L -39.694309,12.619902 L -39.257001,13.166511 L -38.705611,13.732642 L -38.116197,14.279254 L -37.431708,14.806341 L -36.671173,15.294385 L -35.853593,15.801949 L -34.959963,16.309514 L -33.990275,16.758515 L -32.963548,17.207517 L -31.860772,17.656519 L -30.700949,18.066477 L -29.503099,18.456913 L -28.229199,18.808302 L -26.917268,19.159693 L -25.548301,19.472041 L -24.141307,19.784392 L -22.696283,20.038171 L -21.213234,20.291955 L -19.711169,20.506693 L -18.152069,20.682391 L -16.592965,20.838567 L -14.995836,20.975218 L -13.379691,21.072827 L -11.78256,21.150915 L -10.147406,21.20948 L -8.5122458,21.20948 L -8.5122458,21.20948 L -6.8961048,21.20948 L -5.2609448,21.150915 L -3.6448038,21.072827 L -2.0476748,20.975218 L -0.45054482,20.838567 L 1.1275722,20.682391 L 2.6676622,20.506693 L 4.1697252,20.291955 L 5.6527742,20.038171 L 7.0977972,19.784392 L 8.5047922,19.472041 L 9.8737612,19.159693 L 11.18569,18.808302 L 12.45959,18.456913 L 13.657439,18.066477 L 14.817258,17.656519 L 15.920038,17.207517 L 16.946765,16.758515 L 17.916451,16.309514 L 18.810084,15.801949 L 19.627661,15.294385 L 20.3882,14.806341 L 21.072684,14.279254 L 21.681115,13.732642 L 22.213492,13.166511 L 22.650803,12.619902 L 23.03107,12.03425 L 23.316272,11.48764 L 23.506407,10.901987 L 23.620489,10.335856 L 23.677527,9.7502028"
style="fill:#3c8c8c;fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g4160"
transform="matrix(1.0000067,0,0,0.9900067,-7.7865845e-2,0.5539587)">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g2348"
transform="matrix(17.401911,0,0,14.71664,42.176668,19.193921)">
<path
id="path2339"
d="M -1.142098,0.44241813 L -1.142098,0.62241813 L -0.780098,0.62241813 L -0.582098,1.0334181 L -0.385098,0.62241813 L -0.023097999,0.62241813 L -0.023097999,0.44241813 L 0.205902,0.67341813 L -0.023097999,0.90241813 L -0.023097999,0.73841813 L -0.286098,0.73841813 L -0.501098,1.1974181 L -0.286098,1.6564181 L -0.023097999,1.6564181 L -0.023097999,1.4924181 L 0.205902,1.7224181 L -0.023097999,1.9514181 L -0.023097999,1.7884181 L -0.385098,1.7884181 L -0.582098,1.3614181 L -0.780098,1.7884181 L -1.142098,1.7884181 L -1.142098,1.9514181 L -1.373098,1.7224181 L -1.142098,1.4924181 L -1.142098,1.6564181 L -0.895098,1.6564181 L -0.665098,1.1974181 L -0.895098,0.73841813 L -1.142098,0.73841813 L -1.142098,0.90241813 L -1.373098,0.67341813 L -1.142098,0.44241813"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2341"
d="M -1.126098,0.45941813 L -1.126098,0.64041813 L -0.764098,0.64041813 L -0.566098,1.0494181 L -0.369098,0.64041813 L -0.0080979988,0.64041813 L -0.0080979988,0.45941813 L 0.222902,0.68941813 L -0.0080979988,0.91941813 L -0.0080979988,0.75541813 L -0.270098,0.75541813 L -0.484098,1.2144181 L -0.270098,1.6734181 L -0.0080979988,1.6734181 L -0.0080979988,1.5094181 L 0.222902,1.7384181 L -0.0080979988,1.9684181 L -0.0080979988,1.8044181 L -0.369098,1.8044181 L -0.566098,1.3774181 L -0.764098,1.8044181 L -1.126098,1.8044181 L -1.126098,1.9684181 L -1.356098,1.7384181 L -1.126098,1.5094181 L -1.126098,1.6734181 L -0.879098,1.6734181 L -0.649098,1.2144181 L -0.879098,0.75541813 L -1.126098,0.75541813 L -1.126098,0.91941813 L -1.356098,0.68941813 L -1.126098,0.45941813"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
<path
d="M 7.447082,13.971201 L 12.519423,15.52448 L 33.42696,6.1703937 L 38.9551,7.3338214 L 36.053482,3.5658555 L 21.628559,3.3715594 L 27.525178,4.935936 L 7.447082,13.971201 L 7.447082,13.971201 L 7.447082,13.971201"
id="path7562"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 27.764824,18.369743 L 32.799692,19.922511 L 53.290455,10.859807 L 59.229705,12.094769 L 56.328593,8.2938103 L 41.491534,8.0939631 L 47.843439,9.3014841 L 27.764824,18.369743 L 27.764824,18.369743 L 27.764824,18.369743"
id="path7564"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 7.8910148,14.340171 L 12.925372,15.925932 L 33.871408,6.5063705 L 39.361566,7.7022854 L 36.459948,3.9343184 L 22.035027,3.7400222 L 27.969119,5.304905 L 7.8910148,14.340171 L 7.8910148,14.340171 L 7.8910148,14.340171"
id="path7566"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 28.17129,18.738207 L 33.206157,20.290975 L 54.146012,11.267318 L 59.636686,12.430244 L 56.734542,8.6952661 L 42.309624,8.50097 L 48.243714,10.065851 L 28.17129,18.738207 L 28.17129,18.738207 L 28.17129,18.738207"
id="path7568"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -1,223 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.47 r22583"
width="66.000435"
height="44.5159"
version="1.0"
sodipodi:docname="voice_router.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<title
id="title13913">Voice router</title>
<metadata
id="metadata2003">
<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>Voice router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 22.25795 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="66.000435 : 22.25795 : 1"
inkscape:persp3d-origin="33.000217 : 14.838633 : 1"
id="perspective13354" />
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="878"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958335"
inkscape:cx="3.8408218"
inkscape:cy="19.718229"
inkscape:window-x="65"
inkscape:window-y="14"
inkscape:current-layer="g4160"
showgrid="false"
inkscape:window-maximized="0" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215687;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="41.53862"
x="1.4479325"
y="2.9772801"
ry="11.631706"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="42.154343"
x="0.0625"
y="0.18084908"
ry="11.557454"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g4160">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path4819"
d="M 33.023738,8.6936939 L 37.664889,10.327433 L 48.909313,5.4458969 L 53.946665,7.0599533 L 51.229891,3.0248142 L 38.061087,3.0248142 L 43.475766,4.225514 L 33.023738,8.6936939"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4821"
d="M 31.08049,13.161874 L 26.439334,11.528132 L 15.591104,16.429352 L 10.176425,14.775929 L 12.874332,19.244109 L 26.439334,19.244109 L 20.628458,17.630052 L 31.08049,13.161874"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4823"
d="M 11.327278,4.225514 L 15.968435,2.611458 L 27.212859,7.0599533 L 32.25021,5.8592533 L 29.552303,9.8943939 L 16.364632,9.8943939 L 21.779313,8.6936939 L 11.327278,4.225514"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4825"
d="M 53.154272,18.023723 L 48.513117,19.657467 L 37.664889,14.775929 L 32.25021,16.429352 L 34.966985,12.33516 L 48.513117,12.33516 L 42.70224,13.555544 L 53.154272,18.023723"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4827"
d="M 33.419936,9.1070493 L 38.061087,10.721105 L 49.286643,5.8592533 L 54.323994,7.4929926 L 51.60722,3.4184854 L 38.438415,3.4184854 L 43.871962,4.6191872 L 33.419936,9.1070493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4829"
d="M 31.476681,13.555544 L 26.816665,11.941487 L 15.968435,16.803341 L 10.553753,15.189284 L 13.25166,19.657467 L 26.816665,19.657467 L 21.005786,18.023723 L 31.476681,13.555544"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4831"
d="M 11.723476,4.6191872 L 16.364632,3.0248142 L 27.609055,7.4929926 L 32.627541,6.2529266 L 29.929634,10.327433 L 16.741963,10.327433 L 22.175509,9.1070493 L 11.723476,4.6191872"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4833"
d="M 53.531602,18.43708 L 48.909313,20.070823 L 38.061087,15.189284 L 32.627541,16.803341 L 35.344315,12.7682 L 48.909313,12.7682 L 43.098437,13.9689 L 53.531602,18.43708"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<text
sodipodi:linespacing="125%"
id="text13888"
y="37.997669"
x="27.68791"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Black;-inkscape-font-specification:'Arial Black, Heavy'"
xml:space="preserve"
transform="scale(0.97890011,1.0215547)"><tspan
y="37.997669"
x="27.68791"
id="tspan13890"
sodipodi:role="line">V</tspan></text>
<text
xml:space="preserve"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#fffdff;fill-opacity:1;stroke:none;font-family:Arial Black;-inkscape-font-specification:'Arial Black, Heavy'"
x="26.089708"
y="38.183449"
id="text13356"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan13358"
x="26.089708"
y="38.183449">V</tspan></text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -1,528 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="71.851372"
height="32.285366"
version="1.0"
sodipodi:docname="wlan_controller.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>WLAN controller</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
id="linearGradient6587">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#edeff3;stop-opacity:1;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119123,0,0,1.09281,-7.833718e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119124,0,0,1.09281,-7.8336875e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient11856"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.191597,0,0,15.33747,-2.6428869,0.1648577)"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="35.839719"
inkscape:cy="19.90866"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="svg1998" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 2.1663193,16.589602 L 2.1663193,32.285367 L 54.763443,32.285367 L 54.763443,16.589602 L 2.1663193,16.589602"
id="path13703" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 54.724715,18.919483 L 71.109211,3.1102265 L 71.109211,16.523256 L 54.724715,32.33251 L 54.724715,18.919483"
id="path14592" />
<path
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001"
d="M 54.781867,16.528044 L 71.793065,0.13423853 L 71.793065,14.043216 L 54.781867,30.437021 L 54.781867,16.528044"
id="path2009" />
<path
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.00110589"
d="M 0.21478248,16.474061 L 0.21478248,30.310372 L 55.069651,30.310372 L 55.069651,16.474061 L 0.21478248,16.474061"
id="path2007" />
<path
style="fill:url(#linearGradient11856);fill-opacity:1;stroke:none;stroke-width:0.01505287;stroke-opacity:1"
d="M 55.06494,16.770099 L 72.155489,0.17496232 L 16.934026,0.17496232 L -0.11094903,16.770099 L 55.06494,16.770099"
id="path2013" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2481"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2483"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2485"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2487"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2489"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2491"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2495"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2497"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2499"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2501"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2503"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2505"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2507"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2509"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2511"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2513"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2515"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2517"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2519"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2521"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2523"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2525"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2527"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2529"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2531"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2533"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2535"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2537"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2539"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2541"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2543"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2545"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2547"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2549"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2551"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2553"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2555"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2557"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2559"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2561"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2563"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2565"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2567"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2569"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2571"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2573"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2575"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2577"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2579"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2581"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2583"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2585"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2587"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2589"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2591"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2593"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2595"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2597"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2599"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2601"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2603"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2605"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2607"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2609"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2611"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2613"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2615"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2617"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2619"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2621"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2623"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2625"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2627"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2629"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2631"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2633"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2635"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2637"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2639"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 16.237734,10.792259 L 22.717008,10.042354 L 21.707004,12.940637 L 19.839448,11.866449 L 12.788474,15.089016 L 11.054316,14.622859 L 17.971893,11.420559 L 16.237734,10.792259"
id="path2457"
style="fill:#ffffff;stroke:none;stroke-width:0.1" />
<path
d="M 46.693731,11.108882 L 41.072008,10.196835 L 41.357858,13.25726 L 43.225413,12.345213 L 48.275435,15.101623 L 49.990536,14.635465 L 45.112025,11.879056 L 46.693731,11.108882"
id="path2459"
style="fill:#ffffff;stroke:none;stroke-width:0.1" />
<path
d="M 32.782498,4.4281003 L 30.057391,4.1240848 L 39.109318,1.6716906 L 43.149336,5.0361314 L 40.119323,4.8942574 L 39.547621,4.7321159 L 34.66911,8.5627149 L 28.037383,8.5627149 L 33.220801,4.4281003 L 32.782498,4.4281003"
id="path2492"
style="fill:#ffffff;stroke:none;stroke-width:0.1" />
</svg>

Before

Width:  |  Height:  |  Size: 255 KiB

View File

@@ -143,7 +143,7 @@ def test_post_not_connected(http_client, http_request, network_manager, response
def test_post_not_connected_connection_failed(http_client, http_request, network_manager, response):
http_client.MAX_RETRY_CONNECTION = 0
http_client.setMaxRetryConnection(0)
http_client._connected = False
callback = unittest.mock.MagicMock()
@@ -165,7 +165,7 @@ def test_post_not_connected_connection_failed_retry(http_client, http_request, n
The client shoud retry connection
"""
http_client.MAX_RETRY_CONNECTION = 5
http_client.setMaxRetryConnection(5)
http_client._connected = False
http_client._retryConnection = unittest.mock.MagicMock()
callback = unittest.mock.MagicMock()
@@ -331,7 +331,7 @@ def test_callbackConnect_minor_version_invalid(http_client):
def test_callbackConnect_non_gns3_server(http_client):
http_client.MAX_RETRY_CONNECTION = 0
http_client.setMaxRetryConnection(0)
params = {
"virus": True,
}

View File

@@ -0,0 +1,84 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2014 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import pytest
import unittest.mock
import pathlib
from gns3.registry.image import Image
from gns3.image_upload_manager import ImageUploadManager
@pytest.fixture
def image():
return Image('QEMU', 'test.img')
@pytest.fixture
def controller():
return unittest.mock.MagicMock()
@pytest.fixture
def callback():
return unittest.mock.MagicMock()
def test_direct_file_upload(image, controller, callback):
manager = ImageUploadManager(image, controller, 'compute_id', callback, directFileUpload=True)
manager.upload()
controller.getEndpoint.assert_called_with(
'/QEMU/images/test.img',
'compute_id',
manager._onLoadEndpointCallback,
showProgress=False
)
with unittest.mock.patch('gns3.image_upload_manager.HTTPClient') as client:
manager._onLoadEndpointCallback(dict(endpoint='/endpoint'))
client.fromUrl.return_value.createHTTPQuery.assert_called_with(
'POST', '/endpoint', manager._checkIfSuccessfulCallback, body=pathlib.Path('test.img'),
prefix="", progressText='Uploading test.img', timeout=None
)
manager._checkIfSuccessfulCallback({})
callback.assert_called_with({}, False)
def test_direct_file_upload_fallback_to_controller(image, controller, callback):
manager = ImageUploadManager(image, controller, callback, directFileUpload=True)
manager._checkIfSuccessfulCallback({}, error=True, connection_error=True)
controller.postCompute.assert_called_with(
'/QEMU/images/test.img',
callback,
None,
body=pathlib.Path('test.img'),
progressText='Uploading test.img',
timeout=None
)
def test_upload_via_controller(image, controller, callback):
manager = ImageUploadManager(image, controller, callback, directFileUpload=False)
manager.upload()
controller.postCompute.assert_called_with(
'/QEMU/images/test.img',
callback,
None,
body=pathlib.Path('test.img'),
progressText='Uploading test.img',
timeout=None
)