[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [minuet/convergence] src/app: Initial QML bits
From:       Sandro S. Andrade <sandroandrade () kde ! org>
Date:       2016-11-17 1:23:19
Message-ID: E1c7BQ7-0000G7-9Y () code ! kde ! org
[Download RAW message or body]

Git commit 9ff2d56f14fbbfc9da5056a1ac053ac618b2592f by Sandro S. Andrade.
Committed on 17/11/2016 at 01:23.
Pushed by sandroandrade into branch 'convergence'.

Initial QML bits

M  +7    -1    src/app/qml.qrc
A  +97   -0    src/app/qml/AboutDialog.qml     [License: GPL (v2/3)]
M  +340  -58   src/app/qml/Main.qml
D  +0    -10   src/app/qml/Page1.qml
D  +0    -22   src/app/qml/Page1Form.ui.qml
A  +-    --    src/app/qml/images/menu.png
A  +-    --    src/app/qml/images/minuet-background.png
A  +5178 -0    src/app/qml/images/minuet-background.svg
A  +-    --    src/app/qml/images/minuet-drawer.png
A  +-    --    src/app/qml/images/more_vert.png
M  +1    -1    src/app/uicontroller.cpp

http://commits.kde.org/minuet/9ff2d56f14fbbfc9da5056a1ac053ac618b2592f

diff --git a/src/app/qml.qrc b/src/app/qml.qrc
index bdb6e74..858cc3c 100644
--- a/src/app/qml.qrc
+++ b/src/app/qml.qrc
@@ -1,6 +1,12 @@
 <RCC>
     <qresource prefix="/">
-        <file>qml/Main.qml</file>
+        <file alias="Main.qml">qml/Main.qml</file>
+        <file alias="AboutDialog.qml">qml/AboutDialog.qml</file>
+        <file>qml/images/minuet-background.png</file>
+        <file>qml/images/minuet-drawer.png</file>
+        <file>qml/images/menu.png</file>
+        <file>qml/images/more_vert.png</file>
+        <file alias="minuet.png">icons/48-apps-minuet.png</file>
         <file>qtquickcontrols2.conf</file>
         <file>+android/qtquickcontrols2.conf</file>
         <file>+windows/qtquickcontrols2.conf</file>
diff --git a/src/app/qml/AboutDialog.qml b/src/app/qml/AboutDialog.qml
new file mode 100644
index 0000000..09a5e8b
--- /dev/null
+++ b/src/app/qml/AboutDialog.qml
@@ -0,0 +1,97 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 by Sandro S. Andrade <sandroandrade@kde.org>
+**
+** 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 2 of
+** the License or (at your option) version 3 or any later version
+** accepted by the membership of KDE e.V. (or its successor approved
+** by the membership of KDE e.V.), which shall act as a proxy
+** defined in Section 14 of version 3 of the license.
+**
+** 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 QtQuick 2.7
+import QtQuick.Controls 2.0
+
+Popup {
+    id: aboutDialog
+
+    modal: true
+    focus: true
+    x: (applicationWindow.width - width) / 2
+    y: applicationWindow.height / 6
+    width: Math.min(applicationWindow.width, applicationWindow.height) * 0.9
+    contentHeight: aboutColumn.height
+
+    Column {
+        id: aboutColumn
+
+        spacing: 15
+
+        Image {
+            id: icon
+
+            source: "qrc:/minuet.png"
+            fillMode: Image.PreserveAspectFit
+            anchors.horizontalCenter: parent.horizontalCenter
+            sourceSize { width: 60; height: 60 }
+            width: 60; height: 60
+
+            MouseArea {
+                anchors.fill: parent
+                onClicked: \
Qt.openUrlExternally("https://www.kde.org/applications/education/minuet/") +          \
} +            Label {
+                anchors { horizontalCenter: parent.horizontalCenter; top: \
icon.bottom } +                text: "Minuet v0.3"
+            }
+        }
+
+        Item { width: aboutDialog.availableWidth; height: 20 }
+        
+        Component {
+            id: aboutLabel
+            
+            Label {
+                id: label
+                width: aboutDialog.availableWidth
+                wrapMode: Label.WordWrap
+                onLinkActivated: Qt.openUrlExternally(link)
+                font.pixelSize: 13
+            }
+        }
+
+        Loader {
+            sourceComponent: aboutLabel
+            onLoaded: item.text = "Minuet is a <a href='http://kde.org'>KDE</a> " + \
"application for music education." +        }
+
+        Loader {
+            sourceComponent: aboutLabel
+            onLoaded: item.text = "In case you want to learn more about Minuet, you \
can find more information " + +                                  "<a \
href='https://www.kde.org/applications/education/minuet/'>in the official \
site</a>.<br>" + +                                  "<br>Please use <a \
href='http://bugs.kde.org'>our bug tracker</a> to report bugs." +        }
+
+        Loader {
+            sourceComponent: aboutLabel
+            onLoaded: item.text = "Developers:<br>Sandro Andrade &lt;<a \
href='mailto:sandroandrade@kde.org'>sandroandrade@kde.org</a>&gt;"+ +                 \
"<br>Ayush Shah &lt;<a href='mailto:1595ayush@gmail.com'>1595ayush@gmail.com</a>&gt;" \
+        } +
+        Loader {
+            sourceComponent: aboutLabel
+            onLoaded: item.text = "Icon Designer:<br>Alessandro Longo &lt;<a \
href='mailto:alessandro.longo@kdemail.net'>alessandro.longo@kdemail.net</a>&gt;" +    \
} +    }
+}
diff --git a/src/app/qml/Main.qml b/src/app/qml/Main.qml
index 02ce9f5..612e7b8 100644
--- a/src/app/qml/Main.qml
+++ b/src/app/qml/Main.qml
@@ -1,99 +1,381 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 by Sandro S. Andrade <sandroandrade@kde.org>
+**
+** 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 2 of
+** the License or (at your option) version 3 or any later version
+** accepted by the membership of KDE e.V. (or its successor approved
+** by the membership of KDE e.V.), which shall act as a proxy
+** defined in Section 14 of version 3 of the license.
+**
+** 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 QtQuick 2.7
 import QtQuick.Controls 2.0
-import QtQuick.Layouts 1.0
-import QtQuick.Window 2.0
-import QtQuick.Controls.Material 2.0
+import QtQuick.Layouts 1.3
 
 ApplicationWindow {
+    id: applicationWindow
     visible: true
-    width: 640
-    height: 480
+    width: 360; height: 520
+/*
+    function exerciseViewStateChanged() {
+        if (exerciseView.state == "waitingForAnswer"){
+            exerciseView.resetAnswers()
+            soundBackend.setQuestionLabel("play again")
+        }
+    }
+*/
+    property string titleText: "Minuet"
+//    property var aboutDialog
 
     Component {
         id: androidHeader
         ToolBar {
-            width: Screen.width >= 1024 ? parent.width-drawer.width:parent.width
-            anchors { right: parent.right; top: parent.top; }
+            id:toolBar
+
             RowLayout {
+                spacing: 20
                 anchors.fill: parent
+                height: parent.height / 5
+
+                ToolButton {
+                    contentItem: Image {
+                        fillMode: Image.Pad
+                        horizontalAlignment: Image.AlignHCenter
+                        verticalAlignment: Image.AlignVCenter
+                        source: "qrc:/qml/images/menu.png"
+                    }
+                    onClicked: drawer.open()
+                }
+    
                 Label {
-                    text: "Teste"
+                    text: titleText
+                    elide: Label.ElideRight
                     horizontalAlignment: Qt.AlignHCenter
                     verticalAlignment: Qt.AlignVCenter
                     Layout.fillWidth: true
                 }
+
+                ToolButton {
+                    contentItem: Image {
+                        fillMode: Image.Pad
+                        horizontalAlignment: Image.AlignHCenter
+                        verticalAlignment: Image.AlignVCenter
+                        source: "qrc:/qml/images/more_vert.png"
+                    }
+                    onClicked: optionsMenu.open()
+
+                    Menu {
+                        id: optionsMenu
+                        x: parent.width - width
+                        transformOrigin: Menu.TopRight
+                        MenuItem {
+                            text: "About"
+                            onTriggered: aboutDialog.open()
+                        }
+                    }
+                }
             }
         }
     }
-    Item { id: linuxHeader }
-
-    Component.onCompleted: if (Qt.platform.os == "android") header = \
androidHeader.createObject()  
     Drawer {
         id: drawer
-        width: Math.min(Math.max(270, 0.2*Screen.width), Screen.width)
-        height: Screen.height
-        position: Screen.width >= 1024 ? 1:0
-        modal: Screen.width >= 1024 ? false:true
-        onPositionChanged: if (Screen.width >= 1024) position = 1
-        dragMargin: Screen.width >= 1024 ? 0:Qt.styleHints.startDragDistance
-        ListView {
-            id: listView
-            anchors.fill: parent
-            model: ListModel {
-                id: fruitModel
+        width: Math.min(applicationWindow.width, applicationWindow.height) * 0.75; \
height: applicationWindow.height +
+        Item {
+            id: minuetMenu
+
+            width: parent.width; height: parent.height
 
-                ListElement {
-                    name: "Apple"
-                    cost: 2.45
+            property variant exerciseArray: []
+            property Item selectedMenuItem: null
+//            readonly property alias currentExercise: stackView.currentExercise
+
+            signal backPressed
+            signal itemChanged(var model)
+
+//            onCurrentExerciseChanged: {
+//                exerciseController.currentExercise = currentExercise
+//                exerciseView.setCurrentExercise(currentExercise)
+//                exerciseView.resetAnswers()
+//            }
+
+//            onBackPressed: {
+//                soundBackend.stop()
+//                exerciseView.clearExerciseGrid()
+//                exerciseView.clearYourAnswerGrid()
+//            }
+
+            Image {
+                id: drawerImage
+                source: "qrc:/qml/images/minuet-drawer.png"
+                width: parent.width; height: 0.53125 * width
+                fillMode: Image.PreserveAspectFit
+            }
+/*
+            Item {
+                id: breadcrumb
+                width: parent.width; height: (stackView.depth > 1) ? 50:0
+                anchors { top: drawerImage.bottom }
+                Image {
+                    height: parent.height/2
+                    id: backButton
+                    fillMode: Image.Stretch
+                    horizontalAlignment: Image.AlignHCenter
+                    verticalAlignment: Image.AlignVCenter
+                    source: "back@2x.png"
+                    anchors{
+                        left: parent.left
+                        verticalCenter: parent.verticalCenter
+                        margins: 10
+                    }
                 }
-                ListElement {
-                    name: "Orange"
-                    cost: 3.25
+
+                Label{
+                    id: currentExerciseParent
+                    text:""
+                    font{family: "Roboto"; weight: Font.Bold; pixelSize: 16}
+                    elide: Label.ElideRight
+                    verticalAlignment: Qt.AlignVCenter
+                    Layout.fillWidth: true
+                    anchors{
+                        left: backButton.right
+                        verticalCenter: parent.verticalCenter
+                        margins: 10
+                    }
                 }
-                ListElement {
-                    name: "Banana"
-                    cost: 1.95
+
+                MouseArea{
+                    id: breadcrumbMouseArea
+                    anchors.fill: parent
+                    onClicked: {
+                        frame.visible = true
+                        stackView.currentExerciseMenuItem = null
+                        exerciseController.currentExercise ={}
+                        stackView.pop()
+                        minuetMenu.exerciseArray.pop()
+                        currentExerciseParent.text = \
minuetMenu.exerciseArray.toString() +                        minuetMenu.backPressed()
+                        titleText = "Minuet"
+                    }
                 }
             }
-            delegate: ItemDelegate {
-                width: parent.width
-                text: name
+
+            StackView {
+                id: stackView
+                z: -10
+
+                property var currentExercise
+                property Item currentExerciseMenuItem
+
+                width: parent.width;
+                anchors{top: breadcrumb.bottom; bottom:parent.bottom}
+                clip: true
+                focus: true
+
+                Component {
+                    id: categoryDelegate
+
+                    Rectangle {
+                        id: delegateRect
+                        width: stackView.width; height:exerciseName.height
+
+                        Image {
+                            id: parentIcon
+
+                            source: (modelData._icon != undefined)? \
modelData._icon:"" +                            visible: modelData._icon != undefined
+                            fillMode: Image.Pad
+                            horizontalAlignment: Image.AlignHCenter
+                            verticalAlignment: Image.AlignVCenter
+                            anchors{
+                                left: parent.left
+                                verticalCenter: parent.verticalCenter
+                                margins: 10
+                            }
+                            sourceSize.height: 30
+                            sourceSize.width : 30
+                        }
+
+                        Text {
+                            id: exerciseName
+                            text: "technical term, do you have a musician friend?", \
modelData.name +                            leftPadding: 12
+                            topPadding: 17
+                            bottomPadding: 17
+                            FontMetrics { id: fontMetrics; font.family: "Roboto" }
+                            width: parent.width - 2*leftPadding
+                            height: 2*fontMetrics.height + 10
+                            verticalAlignment: Text.AlignVCenter
+                            wrapMode: Text.WordWrap
+                            font{family: "Roboto"; pixelSize: 14}
+                            anchors.left: parentIcon.right
+                        }
+
+                        MouseArea{
+                            anchors.fill: parent
+                            onPressed: {
+                                delegateRect.color =  "#E0E0E0"
+                            }
+                            onCanceled: {
+                                delegateRect.color = "white"
+                            }
+                            onReleased: {
+                                var children = modelData.children
+                                if (!children) {
+                                    frame.visible = false
+                                    if (minuetMenu.selectedMenuItem != undefined && \
minuetMenu.selectedMenuItem!=delegateRect) minuetMenu.selectedMenuItem.color = \
"white" +                                    minuetMenu.selectedMenuItem = \
delegateRect +                                    soundBackend.setQuestionLabel("new \
question") +                                    stackView.currentExercise = modelData
+                                    stackView.currentExerciseMenuItem = delegateRect
+                                    titleText = modelData.name
+                                    drawer.close()
+                                }
+                                else {
+                                    frame.visible = true
+                                    delegateRect.color = "white"
+                                    \
stackView.push(categoryMenu.createObject(stackView, {model: children})) +             \
currentExerciseParent.text = modelData.name +                                    \
minuetMenu.exerciseArray.push(modelData.name) +                                }
+                            }
+                        }
+                    }
+                }
+
+                Component {
+                    id: categoryMenu
+
+                    Rectangle {
+                        property alias model: listView.model
+
+                        width: stackView.width; height: parent.height
+
+                        ListView {
+                            id: listView
+                            anchors.fill: parent
+                            delegate: categoryDelegate
+                            ScrollIndicator.vertical: ScrollIndicator { }
+                        }
+                    }
+                }
+
+                Component.onCompleted: { \
stackView.push(categoryMenu.createObject(stackView, {model: \
exerciseController.exercises})) }  }
+*/
         }
     }
 
-    SwipeView {
-        id: swipeView
-        width: Screen.width >= 1024 ? parent.width-drawer.width:parent.width
-        height: parent.height - tabBar.height
-        anchors { right: parent.right; top: parent.top; }
-        currentIndex: tabBar.currentIndex
+    Item {
+        id: mainContainer
+        width: parent.width
+        height: parent.height
 
-        Page {
-            Label {
-                text: qsTr("Second page")
-                anchors.centerIn: parent
-            }
+        Image {
+            source: "qrc:/qml/images/minuet-background.png"
+            anchors.fill: parent
+            fillMode: Image.Tile
+        }
+/*
+        ExerciseView {
+            id: exerciseView
+            width: mainContainer.width ; height: mainContainer.height
         }
-        Page {
+        
+        Frame {
+            id: frame
+            anchors { fill: parent; margins: 15 }
             Label {
-                text: qsTr("Second page")
+                id: greetings
+                width: parent.width
+                wrapMode: Text.WordWrap
+                horizontalAlignment: Text.AlignHCenter
+                text: "Hi, what kind of ear training exercise do you want to \
practice today?" +                font { family: "Roboto" }
+            }
+            Grid {
+                rows: 2
+                columns: 2
                 anchors.centerIn: parent
+                spacing: 40
+                Repeater {
+                    model: [
+                        { icon: "qrc:/minuet-chords.svg", title: "Chords" },
+                        { icon: "qrc:/minuet-intervals.svg", title: "Intervals" },
+                        { icon: "qrc:/minuet-rhythms.svg", title: "Rhythms" },
+                        { icon: "qrc:/minuet-scales.svg", title: "Scales" }
+                    ]
+                    Column {
+                        Image {
+                            source: modelData.icon
+                            fillMode: Image.PreserveAspectFit
+                            sourceSize.width: frame.width/4;
+                            width: frame.width/4; height: width
+                            anchors.horizontalCenter: parent.horizontalCenter
+                            MouseArea {
+                                anchors.fill: parent
+                                onClicked: {
+                                    frame.visible = true
+                                    stackView.currentExerciseMenuItem = null
+                                    exerciseController.currentExercise ={}
+                                    titleText = "Minuet"
+                                    
+                                    while (stackView.depth > 1) {
+                                        stackView.pop()
+                                        minuetMenu.exerciseArray.pop()
+                                        currentExerciseParent.text = \
minuetMenu.exerciseArray.toString() +                                        \
minuetMenu.backPressed() +                                    }
+                                    
+                                    for (var i = 0; i < \
exerciseController.exercises.length; ++i) { +                                        \
if (exerciseController.exercises[i].name == modelData.title) { +                      \
frame.visible = true +                                            \
stackView.push(categoryMenu.createObject(stackView, {model: \
exerciseController.exercises[i].children})) +                                         \
currentExerciseParent.text = exerciseController.exercises[i].name +                   \
minuetMenu.exerciseArray.push(exerciseController.exercises[i].name) +                 \
break +                                        }
+                                    }
+                                    drawer.open()
+                                }
+                            }
+                        }
+                        Label {
+                            width: frame.width/4
+                            wrapMode: Text.WordWrap
+                            anchors.horizontalCenter: parent.horizontalCenter
+                            horizontalAlignment: Text.AlignHCenter
+                            text: modelData.title
+                            font { family: "Roboto" }
+                        }
+                    }
+                }
             }
         }
+*/
     }
 
-    TabBar {
-        id: tabBar
-        width: Screen.width >= 1024 ? parent.width-drawer.width:parent.width
-        anchors { right: parent.right; top: swipeView.bottom }
-        currentIndex: swipeView.currentIndex
-        TabButton {
-            text: qsTr("First")
-        }
-        TabButton {
-            text: qsTr("Second")
-        }
+    AboutDialog {
+        id: aboutDialog
+    }
+/*
+    Connections {
+        target: exerciseView
+        onStateChanged: applicationWindow.exerciseViewStateChanged()
     }
+*/
+    Component.onCompleted: if (Qt.platform.os == "android") header = \
androidHeader.createObject(applicationWindow)  }
diff --git a/src/app/qml/Page1.qml b/src/app/qml/Page1.qml
deleted file mode 100644
index d5b808f..0000000
--- a/src/app/qml/Page1.qml
+++ /dev/null
@@ -1,10 +0,0 @@
-import QtQuick 2.7
-
-Page1Form {
-    button1.onClicked: {
-        console.log("Button 1 clicked.");
-    }
-    button2.onClicked: {
-        console.log("Button 2 clicked.");
-    }
-}
diff --git a/src/app/qml/Page1Form.ui.qml b/src/app/qml/Page1Form.ui.qml
deleted file mode 100644
index 806ad21..0000000
--- a/src/app/qml/Page1Form.ui.qml
+++ /dev/null
@@ -1,22 +0,0 @@
-import QtQuick 2.7
-import QtQuick.Controls 2.0
-import QtQuick.Layouts 1.0
-
-Item {
-    property alias button1: button1
-    property alias button2: button2
-
-    RowLayout {
-        anchors.centerIn: parent
-
-        Button {
-            id: button1
-            text: qsTr("Press Me 1")
-        }
-
-        Button {
-            id: button2
-            text: qsTr("Press Me 2")
-        }
-    }
-}
diff --git a/src/app/qml/images/menu.png b/src/app/qml/images/menu.png
new file mode 100644
index 0000000..d3cec05
Binary files /dev/null and b/src/app/qml/images/menu.png differ
diff --git a/src/app/qml/images/minuet-background.png \
b/src/app/qml/images/minuet-background.png new file mode 100644
index 0000000..d223e00
Binary files /dev/null and b/src/app/qml/images/minuet-background.png differ
diff --git a/src/app/qml/images/minuet-background.svg \
b/src/app/qml/images/minuet-background.svg new file mode 100644
index 0000000..dc2885c
--- /dev/null
+++ b/src/app/qml/images/minuet-background.svg
@@ -0,0 +1,5178 @@
+<?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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="1282"
+   height="1922"
+   viewBox="0 0 1282 1922"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="minuet-background.svg"
+   inkscape:export-filename="/home/android-devel/minuet/minuetandroid/src/images/minuet-background.png"
 +   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90">
+  <defs
+     id="defs4" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="1"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.24748738"
+     inkscape:cx="-248.26461"
+     inkscape:cy="961"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1366"
+     inkscape:window-height="711"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,869.63784)">
+    <g
+       id="g4901"
+       transform="matrix(0.23752512,0,0,0.23752512,523.38441,533.11496)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g4851"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path4853"
+           d="m 403.688,250.788 c -11.899,-4.2 -26.899,-2 -37.5,-11.1 -11.5,-9.9 \
-16.6,-24.301 -25.5,-36.2 -8.899,-11.9 -21.7,-19.101 -35.6,-24 -16.5,-5.7 -36.5,-6.5 \
-54,-2 -3.1,0.8 -32.2,12.899 -32.5,12.6 -24,-24 -65.1,-65 -89.1,-89 1.7,-10.8 \
-1.6,-22.2 -9.7,-30.3 l -39,-39.1 c -13.5,-13.5 -36.1,-13.5 -49.6,0 -13.5,13.5 \
-13.5,36.1 0,49.6 l 39.1,39.1 c 8.4,8.4 20.4,11.601 31.4,9.5 23.8,23.801 64.7,64.7 \
88.5,88.5 -0.7,-0.699 -12.7,27.801 -13.4,30.601 -2.8,11.3 -3.5,23 -2.3,34.6 3.6,32.5 \
24.1,62.101 53.3,76.7 17.1,8.6 15.701,15.3 20.201,33 5.3,20.9 15.8,40.2 31,55.5 \
46.899,46.9 122.8,46.9 169.699,0 46.9,-46.899 46.9,-122.8 0,-169.7 -12.6,-12.601 \
-28.1,-22.401 -45,-28.301 z m -109.699,90 c -26.301,0 -47.7,-21.3 -47.7,-47.7 \
0,-26.399 21.3,-47.7 47.7,-47.7 26.3,0 47.699,21.301 47.699,47.7 0,26.4 -21.3,47.7 \
-47.699,47.7 z m 111.099,13.4 -51.601,51.6 c -2,2 -4.5,2.9 -7.1,2.9 -2.6,0 -5.1,-1 \
-7.1,-2.9 -3.9,-3.899 -3.9,-10.3 0,-14.2 l 51.6,-51.6 c 3.9,-3.9 10.3,-3.9 14.2,0 \
4.001,3.9 4.001,10.3 0.001,14.2 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path4855"
+           d="m 293.989,254.988 c -21,0 -38.101,17.1 -38.101,38.1 0,21 17.101,38.101 \
38.101,38.101 20.999,0 38.1,-17.101 38.1,-38.101 0.099,-21 -17.001,-38.1 -38.1,-38.1 \
z m -28,38.1 c 0,-15.5 12.6,-28.1 28.1,-28.1 15.5,0 28.1,12.6 28.1,28.1 0,15.5 \
-12.6,28.101 -28.1,28.101 -15.5,0 -28.1,-12.601 -28.1,-28.101 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path4857"
+           d="m 100.388,0.788 c -1.2,-1.2 -2.8,-1 -3.7,0.4 l -10.7,17.3 c -0.9,1.399 \
-0.6,3.5 0.5,4.7 l 5.4,5.399 c 1.2,1.2 3.3,1.4 4.7,0.5 l 17.3,-10.7 c 1.4,-0.899 \
1.6,-2.5 0.4,-3.699 l -13.9,-13.9 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path4859"
+           d="m 18.388,113.888 10.7,-17.3 c 0.9,-1.399 0.6,-3.5 -0.5,-4.7 l \
-5.4,-5.399 c -1.2,-1.2 -3.3,-1.4 -4.7,-0.5 l -17.2,10.7 c -1.4,0.899 -1.6,2.5 \
-0.4,3.699 l 13.9,13.9 c 1.1,1.2 2.8,1 3.6,-0.4 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path4861"
+           d="m 131.888,36.388 -10.7,17.301 c -0.9,1.399 -0.6,3.5 0.5,4.699 l \
5.4,5.4 c 1.2,1.2 3.3,1.4 4.7,0.5 l 17.3,-10.7 c 1.4,-0.899 1.6,-2.5 0.4,-3.7 l \
-13.9,-13.899 c -1.2,-1.201 -2.8,-1.001 -3.7,0.399 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path4863"
+           d="m 53.588,148.988 10.7,-17.3 c 0.9,-1.4 0.6,-3.5 -0.5,-4.7 l -5.4,-5.4 \
c -1.2,-1.2 -3.3,-1.399 -4.7,-0.5 l -17.3,10.8 c -1.4,0.9 -1.6,2.5 -0.4,3.7 l \
13.9,13.9 c 1.2,1.1 2.8,1 3.7,-0.5 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g4865"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4867"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4869"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4871"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4873"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4875"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4877"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4879"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4881"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4883"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4885"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4887"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4889"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4891"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4893"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g4968"
+       transform="matrix(1.3989338,0,0,1.3989338,413.69454,624.02505)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g4926"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g4928"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path4930"
+             d="M 53.479,27.435 10.672,0.915 C 7.553,-1.132 5,0.374 5,4.261 l \
0,51.48 c 0,3.885 2.553,5.391 5.672,3.346 l 42.807,-26.52 c 0,0 1.521,-1.07 \
1.521,-2.566 0,-1.496 -1.521,-2.566 -1.521,-2.566 z" +             \
style="fill:#f8f9fa;fill-opacity:1" +             inkscape:connector-curvature="0" />
+        </g>
+      </g>
+      <g
+         id="g4932"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4934"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4936"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4938"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4940"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4942"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4944"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4946"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4948"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4950"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4952"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4954"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4956"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4958"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4960"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5045"
+       transform="matrix(3.6979059,0,0,3.6979059,795.45808,155.14151)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g4989"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g4991"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path4993"
+             d="M 26.016,26.395 29.762,10.577 12.873,8.92 10.455,21.615 \
10.453,21.614 0.228,23.13 13.87,28.026 26.016,26.395 Z M 13.565,10.038 28.061,11.742 \
24.907,25.066 11.396,21.246 13.565,10.038 Z m -3.091,16.077 -3.348,-1.278 \
1.614,-0.215 3.756,1.254 -2.022,0.239 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <polygon
+             id="polygon4995"
+             points="13.731,29.819 27.52,27.628 31.385,11.605 30.547,11.023 \
26.814,26.946 13.824,28.846 13.824,28.839 0,23.783 0,24.568 " +             \
style="fill:#f8f9fa;fill-opacity:1" /> +          <path
+             id="path4997"
+             d="m 2.207,9.99 c 0.918,0.694 2.19,0.59 2.986,-0.197 L 5.214,9.81 \
8.826,5.035 8.832,7.491 9.734,7.487 9.728,4.458 l 0.376,-0.497 0.005,2.109 0.902,0 \
-0.007,-3.03 0.509,-0.675 -0.425,-0.32 -0.291,-0.22 -0.29,-0.22 -4.665,6.167 C \
5.747,7.221 5.452,6.701 4.97,6.336 3.96,5.573 2.524,5.774 1.762,6.781 0.999,7.792 \
1.198,9.228 2.207,9.99 Z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path4999"
+             d="m 11.746,11.783 -1.347,-1.038 -0.123,-0.458 -0.29,0.077 -0.197,0.052 \
-0.198,0.056 1.131,4.191 c -0.278,-0.147 -0.61,-0.196 -0.938,-0.106 -0.686,0.184 \
-1.091,0.89 -0.907,1.575 0.185,0.687 0.891,1.093 1.577,0.908 0.625,-0.168 1.016,-0.77 \
0.941,-1.394 l 0.014,-0.004 -0.875,-3.247 1.092,0.843 0.309,-0.4 -1.346,-1.04 \
-0.091,-0.339 0.938,0.726 0.31,-0.402 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5001"
+             d="M 16.757,5.884 C 16.26,6.392 16.268,7.205 16.776,7.702 17.285,8.199 \
18.1,8.191 18.596,7.684 19.048,7.221 19.079,6.505 18.7,6.005 L 18.71,5.995 \
16.308,3.641 17.675,3.814 17.739,3.31 16.05,3.099 15.8,2.853 16.975,3 17.038,2.498 \
15.35,2.29 15.012,1.958 14.803,2.172 14.659,2.318 14.516,2.465 17.62,5.502 c \
-0.315,0.013 -0.626,0.139 -0.863,0.382 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5003"
+             d="m 23.795,8.236 c 0.548,0 1.002,-0.405 1.078,-0.933 l 0.014,0 \
0,-3.815 3.028,-0.557 0,2.711 C 27.721,5.46 27.458,5.347 27.17,5.347 c -0.604,0 \
-1.091,0.489 -1.091,1.09 0,0.604 0.489,1.092 1.091,1.092 0.549,0 1.001,-0.404 \
1.079,-0.931 l 0.013,0 0,-4.292 0.021,-0.004 -0.007,-0.736 -3.739,0.692 0.004,0.408 \
0,0 0,3.684 C 24.347,6.168 24.084,6.055 23.796,6.055 c -0.604,0 -1.091,0.489 \
-1.091,1.092 -10e-4,0.601 0.486,1.089 1.09,1.089 z m 1.092,-5.304 3.028,-0.562 0,0.36 \
-3.028,0.556 0,-0.354 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5005"
+             d="m 7.154,20.294 0.332,-3.79 -0.393,-0.104 0,0 -3.55,-0.983 c \
0.228,-0.14 0.406,-0.361 0.482,-0.639 0.161,-0.582 -0.179,-1.183 -0.76,-1.344 \
-0.581,-0.161 -1.182,0.18 -1.343,0.76 -0.146,0.529 0.124,1.074 0.611,1.289 l \
-0.003,0.012 3.677,1.02 -0.274,3.066 -2.611,-0.723 c 0.227,-0.143 0.405,-0.363 \
0.482,-0.641 0.161,-0.58 -0.18,-1.183 -0.759,-1.342 -0.582,-0.162 -1.183,0.179 \
-1.344,0.758 -0.147,0.529 0.123,1.074 0.61,1.289 l -0.003,0.014 4.136,1.146 \
-0.002,0.021 0.712,0.191 z M 6.128,19.634 6.401,16.569 6.744,16.664 6.476,19.73 \
6.128,19.634 Z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5007"
+             d="m 19.604,16.718 c 0.573,-0.183 0.891,-0.796 0.707,-1.369 \
-0.183,-0.574 -0.797,-0.891 -1.371,-0.708 -0.521,0.165 -0.83,0.689 -0.744,1.217 l \
-0.012,0.003 1.16,3.637 -2.717,1.449 -0.824,-2.581 c 0.242,0.112 0.525,0.142 \
0.798,0.054 0.574,-0.184 0.892,-0.797 0.707,-1.371 -0.183,-0.574 -0.797,-0.892 \
-1.371,-0.708 -0.523,0.167 -0.832,0.69 -0.744,1.216 l -0.013,0.006 1.305,4.088 \
-0.019,0.011 0.23,0.698 3.352,-1.797 -0.127,-0.387 -1.121,-3.51 c 0.245,0.113 \
0.528,0.141 0.804,0.052 z m -0.09,3.309 -2.715,1.455 -0.109,-0.345 2.715,-1.45 \
0.109,0.34 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g5009"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5011"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5013"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5015"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5017"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5019"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5021"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5023"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5025"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5027"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5029"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5031"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5033"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5035"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5037"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5115"
+       transform="matrix(6.2348309,0,0,6.2348309,474.19214,367.01998)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5073"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g5075"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path5077"
+             d="m 4.326,17.248 1.609,0.877 0,0.523 -0.267,-0.145 0,0.145 \
-1.783,-0.972 -1.702,0.972 0,-0.152 -0.266,0.152 0,-0.523 1.66,-0.949 0,-5.72 L \
0,11.202 0.052,10.48 l 0.296,0.021 0,-5.793 3.014,0.229 0,-3.31 C 1.643,1.613 \
0.282,1.443 0.282,1.235 c 0,-0.208 1.361,-0.378 3.08,-0.392 l 0,-0.392 0.43,0 0,0.393 \
c 1.718,0.013 3.079,0.183 3.079,0.391 0,0.208 -1.361,0.378 -3.079,0.392 l 0,3.343 \
3.446,0.262 0,1.944 C 5.695,8.035 4.633,9.653 4.559,11.527 l -0.233,-0.017 0,5.738 z \
m 11.774,-5.795 -0.002,0 3.001,-0.251 -0.051,-0.721 -0.294,0.021 0,-5.794 \
-4.554,0.375 -0.076,0.053 -0.03,-0.044 -1.708,0.141 0,1.992 c 1.5,0.871 2.526,2.467 \
2.598,4.308 l 0.633,-0.045 0,5.5 -1.66,0.949 0,0.523 1.832,-1.048 1.92,1.048 0,-0.523 \
-1.609,-0.877 0,-5.607 z m -4.054,4.522 0.104,0 0,2.601 -0.71,0 0,-2.316 c \
-0.533,0.207 -1.112,0.321 -1.72,0.321 -0.565,0 -1.109,-0.1 -1.613,-0.28 l 0,2.275 \
-0.71,0 0,-2.599 C 5.937,15.161 4.948,13.602 4.948,11.811 4.948,9.176 7.085,7.04 \
9.719,7.04 c 2.636,0 4.772,2.135 4.772,4.771 0.002,1.789 -0.985,3.349 -2.445,4.164 z \
M 11.62,11.811 c 0,-1.048 -0.851,-1.9 -1.899,-1.9 -1.047,0 -1.899,0.852 -1.899,1.9 \
0,1.046 0.852,1.899 1.899,1.899 1.047,-0.001 1.899,-0.853 1.899,-1.899 z M \
19.099,4.219 19.029,3.791 15.175,4.42 18.594,2.095 18.35,1.736 14.158,4.585 \
13.693,4.661 13.763,5.089 14.06,5.041 14.093,5.091 14.2,5.083 14.325,4.998 \
19.099,4.219 Z" +             style="fill:#f8f9fa;fill-opacity:1"
+             inkscape:connector-curvature="0" />
+        </g>
+      </g>
+      <g
+         id="g5079"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5081"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5083"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5085"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5087"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5089"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5091"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5093"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5095"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5097"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5099"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5101"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5103"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5105"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5107"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5176"
+       transform="matrix(3.4356824,0,0,3.4356824,512.77747,31.804464)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5136"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5138"
+           d="m 11.325,18.617 c 0,-0.778 -0.632,-1.41 -1.409,-1.41 -0.779,0 \
-1.411,0.632 -1.411,1.41 0,0.778 0.632,1.41 1.411,1.41 0.777,0 1.409,-0.631 \
1.409,-1.41 z m -1.12,0.899 c -0.399,0 -0.723,-0.324 -0.723,-0.725 0,-0.398 \
0.324,-0.723 0.723,-0.723 0.399,0 0.722,0.324 0.722,0.723 0,0.4 -0.323,0.725 \
-0.722,0.725 z m 5.546,-0.899 c 0,0.778 0.629,1.41 1.408,1.41 0.779,0 1.41,-0.632 \
1.41,-1.41 0,-0.778 -0.631,-1.41 -1.41,-1.41 -0.778,0 -1.408,0.632 -1.408,1.41 z m \
1.12,-0.549 c 0.399,0 0.723,0.324 0.723,0.723 -0.001,0.4 -0.324,0.725 -0.723,0.725 \
-0.399,0 -0.723,-0.324 -0.723,-0.725 0,-0.398 0.324,-0.723 0.723,-0.723 z m \
-6.449,4.121 6.091,0 c 0,0 -2.949,3.239 -6.091,0 z m 15.183,-10.964 0.002,-0.03 c \
0.014,-0.186 0.026,-0.373 0.026,-0.562 C 25.633,7.059 24.33,5.529 21.868,3.29 \
19.529,1.166 17.125,0 13.605,0 10.087,0 7.683,1.166 5.344,3.29 2.882,5.526 \
1.577,7.059 1.577,10.633 c 0,0.138 0.009,0.276 0.015,0.415 l 0.006,0.177 C \
0.969,11.26 0.465,11.749 0.465,12.359 l 0,7.611 c 0,0.636 0.532,1.151 1.193,1.151 l \
0.408,0 c 0.235,0.234 0.557,0.369 0.895,0.369 l 1.219,0 c 0.054,0 0.108,-0.007 \
0.161,-0.015 1.917,3.44 5.29,5.73 9.126,5.73 3.857,0 7.248,-2.313 9.16,-5.783 \
0.126,0.04 0.26,0.067 0.4,0.067 l 1.221,0 c 0.339,0 0.657,-0.132 0.887,-0.369 l \
0.413,0 c 0.659,0 1.192,-0.516 1.192,-1.151 l 0,-7.611 c 0,-0.609 -0.505,-1.102 \
-1.135,-1.133 z m -3.837,8.548 c -1.55,3.423 -4.684,5.765 -8.301,5.765 -3.418,0 \
-6.407,-2.093 -8.032,-5.214 0.001,-0.014 0.003,-0.026 0.003,-0.04 l 0,-5.372 1.917,0 \
4.23,-3.145 -1.693,3.174 c 0,0 7.212,1.499 11.876,0.299 0,0 0,4.533 0,4.533 z m \
1.827,-8.931 C 22.063,6.625 18.102,4.312 13.467,4.312 8.853,4.312 4.905,6.608 \
3.362,10.794 3.458,5.134 7.143,1.65 13.855,1.65 c 6.027,0 9.899,3.484 9.993,9.192 l \
-0.253,0 z" +           style="fill:#f8f9fa;fill-opacity:1"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g5140"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5142"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5144"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5146"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5148"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5150"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5152"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5154"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5156"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5158"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5160"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5162"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5164"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5166"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5168"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5238"
+       transform="matrix(0.24444308,0,0,0.23795256,336.91236,-210.33677)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5196"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g5198"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path5200"
+             d="m 377.6,125.398 c 8.051,-7.326 18.943,-9.081 27.078,-4.883 l \
1.56,-1.553 c 4.904,-12.028 13.757,-25.333 26.031,-37.604 12.283,-12.276 \
25.584,-21.135 37.606,-26.042 0,0 2.368,-2.369 5.298,-5.298 2.925,-2.93 1.154,-9.438 \
-3.96,-14.547 L 441.142,5.396 C 436.037,0.287 429.548,-1.51 426.66,1.381 l \
-5.238,5.236 c -4.889,12.062 -13.773,25.441 -26.116,37.784 -12.331,12.331 \
-25.708,21.219 -37.782,26.115 l -1.082,1.078 c 5.178,8.233 3.574,19.979 -4.168,28.487 \
l -80.781,80.303 c -3.494,-0.226 -9.117,-3.047 -16.635,-14.697 -13.442,-20.827 \
-44.812,-32.687 -70.648,12.13 -25.836,44.817 -4.408,52.227 -77.991,60.774 l \
0.016,0.024 c -25.982,1.429 -50.592,11.36 -69.375,30.136 -44.54,44.544 \
-39.464,121.843 11.34,172.657 50.806,50.806 128.113,55.879 172.654,11.328 \
0.797,-0.797 1.557,-1.639 2.324,-2.46 l 0.014,0.032 c 0,0 0.293,-0.316 0.775,-0.866 \
3.573,-3.903 6.777,-8.026 9.636,-12.343 11.461,-16.27 27.822,-45.524 24.159,-76.081 \
-5.538,-46.129 37.694,-44.021 55.619,-55.623 17.921,-11.598 24.249,-21.607 \
24.77,-33.218 0,0 -21.352,15.028 -40.855,-4.476 -15.677,-15.678 -8.708,-42.391 \
-1.947,-56.529 L 377.6,125.398 Z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g5202"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5204"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5206"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5208"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5210"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5212"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5214"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5216"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5218"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5220"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5222"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5224"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5226"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5228"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5230"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5297"
+       transform="matrix(0.56616695,0,0,0.56616695,70.24229,-75.175242)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <path
+         id="path5259"
+         d="M 201.572,15.411 187.627,1.464 c -1.823,-1.823 -4.732,-1.96 -6.72,-0.32 \
L 157.931,20.12 c -1.086,0.898 -1.743,2.211 -1.81,3.618 -0.067,1.407 0.462,2.776 \
1.459,3.773 l 0.964,0.964 L 102.8,84.219 96.111,77.53 c -3.932,-3.933 -9.165,-6.099 \
-14.734,-6.099 -5.109,0 -9.989,1.88 -13.743,5.295 -0.438,0.398 -0.868,0.809 \
-1.293,1.233 -2.641,2.642 -4.866,5.646 -6.614,8.929 -2.271,4.268 -6.495,6.979 \
-11.297,7.253 -13.375,0.765 -25.691,6.459 -34.68,16.035 -19.356,20.622 -17.987,54.623 \
3.052,75.794 10.829,10.898 25.614,17.148 40.565,17.148 0.002,0 0.002,0 0.003,0 \
13.992,0 27.013,-5.314 36.662,-14.962 8.861,-8.861 14.141,-20.784 14.867,-33.57 \
0.274,-4.845 2.852,-8.989 6.894,-11.087 3.856,-1.999 7.317,-4.638 10.288,-7.842 \
0.005,-0.006 0.122,-0.132 0.127,-0.139 7.485,-8.154 7.177,-20.714 -0.702,-28.593 l \
-6.687,-6.687 55.744,-55.744 0.962,0.962 c 0.94,0.941 2.212,1.465 3.535,1.465 0.079,0 \
0.159,-0.002 0.238,-0.006 1.407,-0.066 2.72,-0.724 3.617,-1.811 l 18.976,-22.976 c \
1.642,-1.986 1.504,-4.895 -0.319,-6.717 z M 91.436,127.605 c 0,4.275 -1.664,8.294 \
-4.688,11.317 -3.023,3.022 -7.042,4.688 -11.317,4.688 -4.275,0 -8.294,-1.665 \
-11.317,-4.688 -3.023,-3.023 -4.688,-7.041 -4.688,-11.316 0,-4.274 1.665,-8.294 \
4.688,-11.316 3.023,-3.023 7.042,-4.688 11.317,-4.688 4.275,0 8.294,1.664 \
11.317,4.687 3.023,3.022 4.688,7.042 4.688,11.316 z m -28.451,49.387 c -0.977,0.977 \
-2.256,1.465 -3.536,1.465 -1.28,0 -2.559,-0.488 -3.536,-1.465 L 26.044,147.123 c \
-1.953,-1.952 -1.953,-5.118 0,-7.07 1.953,-1.953 5.118,-1.953 7.071,0 l 29.869,29.869 \
c 1.953,1.952 1.953,5.118 10e-4,7.07 z" +         inkscape:connector-curvature="0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5261"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5263"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5265"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5267"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5269"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5271"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5273"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5275"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5277"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5279"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5281"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5283"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5285"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5287"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5289"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5362"
+       transform="matrix(0.31411496,0,0,0.31411496,708.99704,293.90146)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5316"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g5318"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path5320"
+             d="m 62.743,155.437 0,98.42 c 0,5.867 4.741,10.605 10.605,10.605 \
5.854,0 10.605,-4.738 10.605,-10.605 l 0,-98.42 c 0,-5.856 -4.751,-10.605 \
-10.605,-10.605 -5.864,0 -10.605,4.744 -10.605,10.605 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5322"
+             d="m 29.456,264.582 23.351,0 0,-116.85 c 0.064,-0.56 0.166,-1.119 \
0.166,-1.693 0,-50.412 40.69,-91.42 90.698,-91.42 50.002,0 90.692,41.008 90.692,91.42 \
0,0.771 0.113,1.518 0.228,2.263 l 0,116.28 23.354,0 c 16.254,0 29.442,-13.64 \
29.442,-30.469 l 0,-60.936 c 0,-13.878 -8.989,-25.57 -21.261,-29.249 C 264.997,76.957 \
210.518,22.804 143.676,22.804 76.816,22.804 22.329,76.962 21.211,143.954 \
8.956,147.638 0,159.32 0,173.187 l 0,60.926 c 0,16.819 13.187,30.469 29.456,30.469 z" \
+             inkscape:connector-curvature="0" +             \
style="fill:#f8f9fa;fill-opacity:1" /> +          <path
+             id="path5324"
+             d="m 203.454,155.437 0,98.42 c 0,5.867 4.748,10.605 10.604,10.605 \
5.856,0 10.604,-4.738 10.604,-10.605 l 0,-98.42 c 0,-5.856 -4.748,-10.605 \
-10.604,-10.605 -5.867,0 -10.604,4.744 -10.604,10.605 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g5326"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5328"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5330"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5332"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5334"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5336"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5338"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5340"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5342"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5344"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5346"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5348"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5350"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5352"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5354"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5431"
+       transform="matrix(0.19359723,0,0,0.19359723,574.06565,191.99488)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5385"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5387"
+           d="M 235.554,0 C 109.784,0 3.532,102.367 3.532,223.536 c 0,68.314 \
33.927,149.905 86.43,207.865 l 1.484,1.639 2.164,-0.429 c 0.553,-0.1 12.578,-2.637 \
17.603,-11.834 12.317,10.095 23.253,11.085 34.757,6.961 5.115,9.843 7.103,20.559 \
-6.606,24.445 -12.906,3.675 -30.152,-1.094 -42.886,-3.025 -21.219,-3.222 \
-66.178,-4.156 -87.61,-3.358 -10.092,0.381 -10.128,16.082 0,15.701 25.874,-0.958 \
74.494,1.606 100.092,5.241 12.808,1.82 29.16,4.341 41.437,-1.623 21.209,-10.303 \
17.637,-27.875 9.105,-44.146 6.404,-3.907 13.235,-8.844 20.638,-14.15 -20.528,-9.017 \
-47.406,-49.355 -65.764,-84.528 -12.99,-24.902 -38.401,-77.676 -35.536,-104.35 \
-15.867,10.896 -28.212,20.386 -34.91,32.837 -1.854,-11.745 -2.852,-23.271 \
-2.852,-34.43 0,-96.018 100.557,-160.516 194.469,-160.516 116.331,0 194.46,83 \
194.46,160.516 0,11.093 -0.897,22.456 -2.625,33.953 -6.744,-12.219 -18.987,-21.612 \
-34.652,-32.36 2.869,26.674 -22.537,79.447 -35.533,104.35 -18.351,35.173 \
-45.236,75.52 -65.762,84.528 28.204,20.238 47.103,34.46 72.189,11.085 5.133,7.975 \
14.463,12.158 14.939,12.359 l 2.601,1.117 1.884,-2.115 C 434.407,371.526 \
467.576,290.776 467.576,223.527 467.575,102.357 361.322,0 235.554,0 Z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path5389"
+           d="m 93.646,209.917 c -0.99,0 -1.863,0.232 -2.673,0.589 -0.287,0.126 \
-0.601,0.218 -0.87,0.391 -11.407,7.468 3.939,55.427 31.244,107.756 24.917,47.752 \
53.217,82.208 66.652,82.208 0.25,0 0.475,-0.072 0.713,-0.092 0.988,-0.108 \
1.923,-0.353 2.725,-0.878 0.878,-0.581 1.569,-1.479 2.166,-2.528 0.03,-0.061 \
0.062,-0.145 0.092,-0.204 6.885,-12.788 -5.973,-57.491 -31.038,-105.532 \
-24.886,-47.697 -55.197,-81.718 -69.011,-81.71 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path5391"
+           d="m 350.25,318.652 c 27.303,-52.329 42.647,-100.296 31.242,-107.756 \
-0.269,-0.172 -0.585,-0.265 -0.874,-0.391 -0.806,-0.356 -1.679,-0.589 -2.669,-0.589 \
-13.806,0 -44.126,34.013 -69.012,81.709 -25.062,48.049 -37.926,92.756 -31.041,105.536 \
0.031,0.063 0.067,0.14 0.1,0.2 0.589,1.058 1.286,1.964 2.16,2.528 0.821,0.537 \
1.771,0.798 2.785,0.89 0.213,0.024 0.421,0.093 0.657,0.093 13.425,10e-4 41.73,-34.468 \
66.652,-82.22 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path5393"
+           d="m 247.696,93.629 c -8.111,-1.381 -14.741,4.59 -14.741,12.818 l \
0,84.997 c -4.795,-1.759 -9.959,-2.771 -15.371,-2.771 -24.697,0 -44.715,20.019 \
-44.715,44.721 0,24.693 20.018,44.711 44.715,44.711 18.098,0 33.662,-10.748 \
40.691,-26.205 3.414,-7.481 3.903,-20.99 3.936,-29.212 0.092,-26.299 0.092,-78.205 \
0.092,-78.205 57.771,0 54.309,34.622 47.545,54.505 -2.646,7.789 -1.07,9.091 \
4.496,3.032 70.498,-76.794 -27.663,-101.756 -66.648,-108.391 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5395"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5397"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5399"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5401"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5403"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5405"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5407"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5409"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5411"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5413"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5415"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5417"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5419"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5421"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5423"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5494"
+       transform="matrix(4.433531,0,0,4.4356219,258.13976,502.50378)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5454"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5456"
+           d="m 9.547,20.221 c 0.118,0.119 0.118,0.31 0,0.428 l -0.642,0.643 c \
-0.118,0.117 -0.311,0.117 -0.428,0 L 4.625,17.44 c -0.119,-0.119 -0.119,-0.311 \
0,-0.429 l 0.642,-0.642 c 0.118,-0.119 0.31,-0.119 0.428,0 l 3.852,3.852 z m \
16.37,-17.808 0,0.003 c 0,0.256 -0.098,0.511 -0.293,0.706 l -0.421,0.421 0.164,0.164 \
c 0.205,0.206 0.205,0.538 0,0.744 -0.102,0.102 -0.237,0.153 -0.372,0.153 -0.135,0 \
-0.269,-0.05 -0.372,-0.153 l -0.164,-0.164 -0.256,0.256 0.164,0.164 c 0.205,0.206 \
0.205,0.538 0,0.744 -0.102,0.102 -0.237,0.153 -0.372,0.153 -0.135,0 -0.269,-0.05 \
-0.372,-0.153 L 23.459,5.287 23.261,5.485 C 23.002,5.744 22.639,5.814 22.309,5.73 l \
-4.357,4.357 c 1.146,1.31 2.575,3.602 1.088,5.774 -1.014,1.483 -2.584,1.178 \
-3.474,2.103 -1.001,1.042 -0.2,3.903 -2.817,6.52 -0.985,0.985 -2.11,1.433 \
-3.301,1.433 -1.977,0 -4.136,-1.235 -6.134,-3.313 C -0.018,19.401 -1.184,15.784 \
1.433,13.168 4.05,10.55 6.909,11.351 7.95,10.35 8.877,9.46 8.592,7.91 10.074,6.897 c \
0.668,-0.457 1.347,-0.64 2.004,-0.64 1.479,0 2.849,0.921 3.752,1.71 L 20.188,3.609 C \
20.103,3.278 20.174,2.916 20.433,2.657 L 20.631,2.459 20.467,2.295 c -0.205,-0.206 \
-0.205,-0.538 0,-0.744 0.205,-0.205 0.539,-0.205 0.744,0 l 0.164,0.164 0.256,-0.256 \
-0.164,-0.164 c -0.205,-0.206 -0.205,-0.538 0,-0.744 0.205,-0.205 0.539,-0.205 \
0.744,0 l 0.164,0.164 0.421,-0.421 c 0.195,-0.195 0.451,-0.293 0.707,-0.293 l 0.003,0 \
c 0.256,0 0.511,0.098 0.705,0.293 l 1.414,1.414 c 0.194,0.194 0.292,0.449 0.292,0.705 \
z m -8.957,8.666 -3.359,3.359 c 0.007,0.073 0.022,0.144 0.022,0.219 0,1.306 \
-1.058,2.364 -2.364,2.364 -1.306,0 -2.364,-1.058 -2.364,-2.364 0,-1.306 1.058,-2.364 \
2.364,-2.364 0.076,0 0.148,0.015 0.223,0.022 l 3.356,-3.357 c -0.777,-0.662 \
-1.799,-1.302 -2.76,-1.302 -0.428,0 -0.825,0.129 -1.214,0.395 -0.454,0.31 \
-0.601,0.681 -0.841,1.363 -0.209,0.595 -0.47,1.336 -1.104,1.944 -0.7,0.674 \
-1.617,0.84 -2.588,1.016 -1.218,0.221 -2.598,0.471 -3.908,1.782 -0.697,0.699 \
-1.032,1.465 -1.023,2.346 0.015,1.51 1.039,3.319 2.884,5.091 0.014,0.013 0.026,0.026 \
0.039,0.04 1.788,1.86 3.608,2.884 5.125,2.884 0.867,0 1.623,-0.335 2.311,-1.023 \
1.31,-1.309 1.56,-2.691 1.782,-3.91 0.176,-0.971 0.342,-1.888 1.016,-2.589 \
0.614,-0.639 1.364,-0.895 1.966,-1.1 0.684,-0.233 1.056,-0.376 1.362,-0.823 \
0.941,-1.375 -0.058,-2.986 -0.925,-3.993 z m 4.692,-7.39 2,-2 c 0.117,-0.117 \
0.117,-0.307 0,-0.424 -0.117,-0.117 -0.307,-0.117 -0.424,0 l -2,2 c -0.117,0.117 \
-0.117,0.307 0,0.424 0.059,0.059 0.135,0.088 0.212,0.088 0.078,0 0.154,-0.029 \
0.212,-0.088 z m 3,-1.424 c -0.117,-0.117 -0.307,-0.117 -0.424,0 l -2,2 c \
-0.117,0.117 -0.117,0.307 0,0.424 0.059,0.059 0.135,0.088 0.212,0.088 0.077,0 \
0.153,-0.029 0.212,-0.088 l 2,-2 c 0.118,-0.117 0.117,-0.307 0,-0.424 z" +           \
style="fill:#f8f9fa;fill-opacity:1" +           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g5458"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5460"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5462"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5464"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5466"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5468"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5470"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5472"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5474"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5476"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5478"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5480"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5482"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5484"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5486"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5569"
+       transform="matrix(0.15690679,0,0,0.15690679,555.68568,937.72941)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5514"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="Layer_2_25_"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path5517"
+             d="M 203.784,231.318 27.882,205.557 c 9.285,31.126 27.167,56.189 \
50.69,69.471 L 45.218,502.865 c -2.677,18.293 9.974,35.285 28.267,37.963 18.293,2.678 \
35.286,-9.974 37.963,-28.267 l 33.995,-232.168 c 22.414,-8.041 42.83,-25.446 \
58.341,-49.075 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5519"
+             d="M 147.719,0.824 C 110.674,-4.598 74.356,17.128 50.086,54.182 L \
225.95,79.935 C 213.337,37.477 184.764,6.246 147.719,0.824 Z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5521"
+             d="m 68.819,99.079 23.629,42.113 34.721,-33.574 23.601,42.113 \
34.702,-33.574 23.629,42.123 23.782,-22.988 c 0.354,-12.192 -0.392,-24.06 \
-2.266,-35.353 L 39.902,72.017 c -6.589,13.445 -11.676,28.334 -14.956,44.255 l \
9.18,16.381 34.693,-33.574 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5523"
+             d="m 213.949,213.475 c 7.201,-14.66 12.651,-31.031 15.864,-48.616 l \
-25.245,24.413 -23.629,-42.113 -34.721,33.583 -23.601,-42.113 -34.712,33.574 \
-23.629,-42.113 -34.702,33.583 -8.568,-15.291 c -0.498,12.843 0.249,25.331 \
2.237,37.179 l 190.706,27.914 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5525"
+             d="M 497.123,197.812 324.73,241.254 c 20.474,25.217 46.589,41.539 \
73.401,44.819 l 56.266,223.275 c 4.514,17.92 22.711,28.792 40.632,24.278 17.92,-4.513 \
28.792,-22.711 24.278,-40.631 l -57.336,-227.53 c 17.633,-16.007 29.854,-39.884 \
35.152,-67.653 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5527"
+             d="m 357.204,6.255 c -36.309,9.151 -61.562,43.108 -69.815,86.627 L \
459.743,49.449 C 431.849,15.043 393.513,-2.896 357.204,6.255 Z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5529"
+             d="m 302.622,171.496 19.23,-44.284 37.934,29.883 19.25,-44.303 \
37.905,29.892 19.24,-44.293 37.943,29.893 13.187,-30.333 C 482.98,86.553 \
477.758,75.871 471.706,66.146 L 284.797,113.25 c -0.947,14.946 0.038,30.647 \
3.098,46.607 l 14.727,11.639 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5531"
+             d="m 443.831,128.78 -19.239,44.303 -37.906,-29.893 -19.239,44.293 \
-37.935,-29.883 -19.23,44.293 -13.761,-10.854 c 4.457,12.049 9.917,23.313 \
16.275,33.507 l 186.899,-47.095 c 1.052,-16.304 -0.172,-33.507 -3.93,-50.987 l \
-14,32.207 -37.934,-29.891 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g5533"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5535"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5537"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5539"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5541"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5543"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5545"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5547"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5549"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5551"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5553"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5555"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5557"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5559"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5561"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5637"
+       transform="matrix(0.18323412,0,0,0.18323412,94.466146,951.44663)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5597"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5599"
+           d="M 436.578,159.876 C 400.721,153.482 366.777,136.527 339.74,109.532 \
312.732,82.51 295.796,48.585 289.425,12.72 c 36.306,-22.745 88.937,-14.689 \
125.391,21.753 36.43,36.442 44.481,89.082 21.762,125.403 z m -25.053,25.058 c \
-34.438,-9.625 -66.721,-27.482 -93.226,-53.96 -26.476,-26.505 -44.337,-58.787 \
-53.914,-93.211 -22.714,36.321 -14.659,88.934 21.754,125.374 36.455,36.426 \
89.052,44.495 125.386,21.797 z M 267.331,346.338 c -45.294,0 -77.679,28.306 \
-106.255,53.271 -31.571,27.601 -58.936,51.533 -99.197,39.124 -7.966,-5.866 \
-8.202,-10.66 -8.291,-12.288 -0.564,-10.902 12.644,-25.529 19.131,-30.92 0.8,-0.653 \
1.255,-1.54 1.881,-2.338 10.631,3.701 22.845,1.563 31.362,-6.931 L 312.2,216.486 C \
295.142,209.245 278.887,198.763 264.718,184.575 250.526,170.389 240.075,154.116 \
232.846,137.09 L 63.093,343.347 c -7.552,7.551 -9.743,18.001 -7.685,27.713 \
-0.637,0.388 -1.349,0.564 -1.941,1.041 -3.244,2.665 -31.584,26.771 -30.177,55.762 \
0.504,10.193 4.947,24.908 23.352,37.229 l 3.629,1.773 c 11.803,3.939 22.803,5.656 \
33.141,5.656 40.335,0 70.424,-26.294 97.626,-50.077 26.934,-23.546 52.386,-45.784 \
86.294,-45.784 78.159,0 138.659,83.751 139.279,84.577 4.826,6.902 14.338,8.438 \
21.119,3.589 6.842,-4.831 8.438,-14.281 3.612,-21.114 -2.815,-3.972 -70.068,-97.374 \
-164.011,-97.374 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5601"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5603"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5605"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5607"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5609"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5611"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5613"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5615"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5617"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5619"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5621"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5623"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5625"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5627"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5629"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5697"
+       transform="matrix(0.36948474,0,0,0.36948474,116.64456,112.98536)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5657"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5659"
+           d="m 305.773,130.393 -80.411,0 -17.031,-33.767 c -2.076,-4.104 \
-6.519,-6.405 -11.086,-5.706 -4.541,0.701 -8.114,4.248 -8.854,8.782 l -7.612,46.877 \
-7.207,44.377 -5.608,-43.805 -12.407,-96.88 c -0.637,-4.948 -4.629,-8.779 \
-9.592,-9.215 -4.974,-0.388 -9.564,2.646 -11.05,7.402 l -31.682,101.582 -9.518,30.518 \
-4.847,-29.876 -7.161,-44.151 c -0.754,-4.629 -4.456,-8.215 -9.106,-8.818 \
-4.645,-0.567 -9.147,1.914 -11.05,6.204 l -17.663,39.667 -33.283,0 C 4.751,143.584 \
0,148.335 0,154.189 c 0,5.854 4.751,10.603 10.605,10.603 l 40.172,0 c 4.189,0 \
7.985,-2.465 9.686,-6.292 l 2.975,-6.674 3.029,-6.799 1.069,6.613 12.44,76.708 c \
0.784,4.857 4.81,8.528 9.719,8.881 4.909,0.3 9.406,-2.724 10.875,-7.415 l \
25.191,-80.779 14.934,-47.869 6.007,46.937 15.107,117.994 c 0.668,5.22 5.072,9.165 \
10.338,9.258 0.058,0 0.119,0 0.182,0 5.188,0 9.631,-3.764 10.47,-8.911 l \
19.62,-120.834 1.673,-10.286 5.033,9.991 0.228,0.456 c 1.802,3.578 5.468,5.833 \
9.476,5.833 l 86.946,0 c 5.856,0 10.604,-4.751 10.604,-10.605 -0.001,-5.855 \
-4.749,-10.606 -10.606,-10.606 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5661"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5663"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5665"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5667"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5669"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5671"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5673"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5675"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5677"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5679"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5681"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5683"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5685"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5687"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5689"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5757"
+       transform="matrix(0.17588248,0,0,0.17588248,81.983601,548.34)"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibil \
ity:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;co \
lor-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;f \
ill-opacity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-lin \
ejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opaci \
ty:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate">
 +      <g
+         id="g5717"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate">
 +        <path
+           id="path5719"
+           d="m 331.895,421.526 0,-184.182 108.475,-17.588 C 423.093,128.184 \
342.73,58.906 246.136,58.906 c -109.201,0 -197.721,88.52 -197.721,197.721 0,109.202 \
88.52,197.722 197.721,197.722 10.592,0 20.978,-0.857 31.115,-2.459 7.938,-13.176 \
22.177,-23.75 40.258,-28.271 4.776,-1.182 9.599,-1.892 14.386,-2.093 z m \
-49.432,-346.483 -21.184,92.811 -21.185,0 -15.132,-92.811 c 22.197,-11.101 57.501,0 \
57.501,0 z m -36.327,254.99 c -40.542,0 -73.406,-32.864 -73.406,-73.406 0,-40.542 \
32.864,-73.405 73.406,-73.405 40.542,0 73.406,32.864 73.406,73.405 0,40.542 \
-32.864,73.406 -73.406,73.406 z m 0,-129.375 c -30.869,0 -55.969,25.1 -55.969,55.969 \
0,30.866 25.1,55.97 55.969,55.97 30.867,0 55.969,-25.104 55.969,-55.97 0,-30.869 \
-25.103,-55.969 -55.969,-55.969 z m 0,95.949 c -22.044,0 -39.977,-17.933 \
-39.977,-39.98 0,-22.044 17.939,-39.977 39.977,-39.977 22.047,0 39.968,17.933 \
39.968,39.977 0,22.048 -17.921,39.98 -39.968,39.98 z m 25.322,189.394 c 0.958,5.308 \
3.062,10.249 6.1,14.688 -10.296,1.318 -20.77,2.075 -31.415,2.075 C 110.419,502.764 \
0,392.345 0,256.627 0,120.91 110.419,10.491 246.136,10.491 c 120.473,0 220.945,87.036 \
242.01,201.516 l -23.896,3.88 C 445.057,112.913 354.586,34.702 246.136,34.702 c \
-122.371,0 -221.925,99.555 -221.925,221.925 0,122.371 99.555,221.926 221.925,221.926 \
8.195,0 16.279,-0.479 24.246,-1.348 0.071,2.92 0.39,5.857 1.076,8.796 z m \
241.797,-260.722 0,213.405 c 0,17.674 -13.175,31.771 -33.727,36.96 -22.562,5.592 \
-44.343,-3.854 -48.67,-21.148 -4.326,-17.324 10.45,-35.902 33.006,-41.547 \
10.196,-2.518 20.227,-2.004 28.626,0.952 l 0,-128.565 -115.371,21.084 -0.532,159.944 \
-0.023,0 c -0.101,15.15 -13.761,30.016 -33.408,34.88 -22.283,5.609 -45.643,-5.001 \
-48.148,-20.877 -4.285,-17.129 10.32,-35.518 32.663,-41.115 10.054,-2.5 19.878,-1.997 \
28.135,0.893 l 0,-189.328 157.449,-25.538 z" +           \
inkscape:connector-curvature="0" +           \
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visi \
ble;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation- \
filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opacity:1;fill \
-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:miter;stroke \
-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-renderi \
ng:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      </g>
+      <g
+         id="g5721"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5723"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5725"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5727"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5729"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5731"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5733"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5735"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5737"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5739"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5741"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5743"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5745"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5747"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5749"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +    </g>
+    <g
+       id="g5817"
+       transform="matrix(4.9714025,0,0,4.9714025,291.25957,7.7891659)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5777"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5779"
+           d="m 14.448,19.329 c -0.147,-0.104 -0.286,-0.198 -0.401,-0.273 l \
-0.058,-0.038 -0.048,-0.05 c -0.078,-0.081 -0.462,-0.516 -0.396,-1.095 0.028,-0.257 \
0.158,-0.628 0.615,-0.931 l 0.093,-0.062 0.108,-0.024 c 0.099,-0.022 0.206,-0.033 \
0.318,-0.033 0.473,0 1.042,0.209 1.552,0.457 0.056,-0.089 0.109,-0.18 0.162,-0.271 \
-0.051,-0.058 -0.104,-0.116 -0.161,-0.176 -0.284,-0.294 -0.556,-0.567 -0.83,-0.842 \
-0.643,-0.646 -1.308,-1.314 -2.157,-2.29 l -0.041,-0.052 c -0.452,-0.654 \
-0.315,-1.142 -0.193,-1.374 0.208,-0.396 0.669,-0.639 1.175,-0.621 -0.288,-0.399 \
-0.38,-0.671 -0.333,-0.912 -10e-4,-0.297 0.107,-0.583 0.314,-0.817 0.26,-0.296 \
0.656,-0.48 1.032,-0.48 0.273,0 0.521,0.098 0.697,0.276 0.083,0.084 0.325,0.312 \
0.657,0.62 0,-0.035 0.003,-0.068 0.009,-0.104 C 16.603,9.929 16.731,9.659 \
16.916,9.454 15.633,6.28 12.523,4.039 8.89,4.039 c -4.781,0 -8.656,3.875 -8.656,8.656 \
0,4.781 3.875,8.657 8.656,8.657 2.115,0 4.054,-0.761 5.558,-2.023 z M 9.059,4.643 l \
0.001,0 c 2.084,-0.188 3.562,0.934 3.562,0.934 L 10.639,9.13 C 10.154,8.755 \
9.059,8.719 9.059,8.719 c 0,0 0,-4.076 0,-4.076 z m -3.458,8.052 c 0,-1.906 \
1.552,-3.457 3.459,-3.457 1.906,0 3.458,1.551 3.458,3.457 0,1.907 -1.552,3.458 \
-3.458,3.458 -1.907,0 -3.459,-1.551 -3.459,-3.458 z M 16.676,8.62 C 16.67,8.608 \
16.667,8.596 16.663,8.586 c 0.004,0.008 0.008,0.014 0.014,0.024 0,0.002 -0.001,0.007 \
-0.001,0.01 z m -4.525,4.075 c 0,-1.704 -1.386,-3.092 -3.091,-3.092 -1.706,0 \
-3.092,1.388 -3.092,3.092 0,1.705 1.387,3.091 3.092,3.091 1.705,0 3.091,-1.386 \
3.091,-3.091 z m -4.629,0 c 0,-0.848 0.689,-1.535 1.538,-1.535 0.849,0 1.536,0.688 \
1.536,1.535 0,0.85 -0.687,1.537 -1.536,1.537 -0.849,0 -1.538,-0.687 -1.538,-1.537 z m \
14.486,9.198 c 0,0 0.136,-0.453 -0.677,-0.573 0,0 -1.949,-0.029 -3.414,-0.51 \
-0.433,-0.209 -1.5,-0.489 -1.883,-0.969 -0.383,-0.48 -1.577,-1.256 -1.577,-1.256 0,0 \
-0.607,-0.635 0.118,-1.116 0.854,-0.188 2.693,1.094 2.693,1.094 0,0 0.785,0.06 \
0.593,-0.471 0,0 -0.231,-0.727 -1.115,-1.644 -0.95,-0.985 -1.77,-1.736 -2.966,-3.11 \
-0.685,-0.991 0.523,-1.255 0.853,-0.917 0.114,-0.048 3.556,3.218 3.803,2.936 \
0.166,-0.19 -4.152,-4.039 -3.896,-4.508 -0.078,-0.601 0.733,-0.963 1.016,-0.678 \
0.319,0.323 4.76,4.433 4.647,4.015 -0.133,-0.494 -3.007,-3.53 -2.965,-3.838 \
0.088,-0.662 0.764,-0.922 1.184,-0.367 0.101,0.133 3.306,4.222 3.402,3.802 \
0.113,-0.495 -1.093,-1.711 -1.61,-2.835 -0.301,-0.654 0.567,-0.775 0.877,-0.284 \
0.544,0.866 2.594,3.646 2.695,3.846 0,0 1.096,1.747 1.761,4.26 l 0.227,0.805 \
-3.766,2.318 z M 1.97,4.797 C 2.011,4.711 2.999,2.688 5.314,2.688 l 0,0.513 c \
-1.986,0 -2.845,1.743 -2.882,1.817 L 1.97,4.797 Z M 0.463,4.192 0,3.972 C 0.017,3.938 \
1.648,0.596 5.354,0.596 l 0,0.512 c -3.376,0 -4.876,3.053 -4.891,3.084 z M \
12.57,21.64 12.934,22 c -0.068,0.068 -1.666,1.653 -3.853,0.892 L 9.25,22.408 c \
1.875,0.654 3.261,-0.71 3.32,-0.768 z m 1.588,1.427 0.364,0.36 c -0.026,0.026 \
-2.666,2.646 -6.165,1.428 l 0.168,-0.483 c 3.187,1.11 5.609,-1.28 5.633,-1.305 z" +   \
style="fill:#f8f9fa;fill-opacity:1" +           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g5781"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5783"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5785"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5787"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5789"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5791"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5793"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5795"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5797"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5799"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5801"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5803"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5805"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5807"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5809"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5883"
+       transform="matrix(0.29461745,0,0,0.29461745,260.81161,750.05685)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5837"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g5839"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path5841"
+             d="M 133.652,0.59 C 59.838,0.59 0,60.426 0,134.24 c 0,73.817 \
59.838,133.655 133.652,133.655 1.129,0 2.245,-0.062 3.368,-0.088 l -9.603,-10.89 c \
-0.339,-0.538 -8.091,-13.37 9.018,-27.563 12.148,-10.081 29.544,-1.107 38.932,5.22 l \
0,-63.727 c -10.18,11.589 -25.07,18.941 -41.715,18.941 -30.681,0 -55.554,-24.876 \
-55.554,-55.554 0,-30.678 24.873,-55.553 55.554,-55.553 28.796,0 52.46,21.906 \
55.267,49.961 2.138,-0.764 4.406,-1.258 6.804,-1.258 4.691,0 8.958,1.66 12.401,4.332 \
l 0,-7.369 c 0,-11.226 9.129,-20.355 20.355,-20.355 10.604,0 19.231,8.164 \
20.174,18.525 3.479,-2.763 7.813,-4.484 12.583,-4.484 1.791,0 3.49,0.3 5.146,0.735 C \
258.714,52.245 202.236,0.59 133.652,0.59 Z m 0,59.896 c -40.669,0 -73.754,33.085 \
-73.754,73.754 0,2.928 -2.377,5.302 -5.303,5.302 -2.928,0 -5.302,-2.374 -5.302,-5.302 \
0,-46.518 37.842,-84.359 84.359,-84.359 2.928,0 5.302,2.374 5.302,5.302 0.001,2.926 \
-2.373,5.303 -5.302,5.303 z m 0,-30.336 c -57.392,0 -104.085,46.693 -104.085,104.085 \
0,2.929 -2.376,5.303 -5.302,5.303 -2.928,0 -5.303,-2.374 -5.303,-5.303 0,-63.24 \
51.45,-114.69 114.69,-114.69 2.928,0 5.302,2.375 5.302,5.303 0,2.928 -2.373,5.302 \
-5.302,5.302 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5843"
+             d="m 115.216,134.24 c 0,10.165 8.272,18.436 18.437,18.436 10.165,0 \
18.437,-8.271 18.437,-18.436 0,-10.165 -8.272,-18.437 -18.437,-18.437 -10.165,0 \
-18.437,8.273 -18.437,18.437 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5845"
+             d="m 273.643,166.466 0,-28.078 c 0,-4.699 -2.651,-8.738 -6.503,-10.849 \
-1.761,-0.96 -3.75,-1.561 -5.894,-1.561 -6.845,0 -12.406,5.564 -12.406,12.404 l \
0,61.597 -3.977,0 -3.978,0 0,-61.591 0,-14.041 c 0,-6.84 -5.561,-12.401 \
-12.396,-12.401 -6.845,0 -12.406,5.562 -12.406,12.401 l 0,23.4 0,52.231 0,0 -7.954,0 \
0,-52.237 c 0,-6.84 -5.561,-12.404 -12.401,-12.404 -2.459,0 -4.748,0.743 -6.675,1.983 \
-3.438,2.206 -5.731,6.046 -5.731,10.427 l 0,11.268 0,92.17 -6.576,-5.659 c \
-0.233,-0.197 -23.563,-19.724 -35.235,-10.051 -10.721,8.891 -8.076,15.768 \
-7.464,17.01 l 13.005,14.737 34.08,38.593 125.274,0 0,-139.349 c 0,-6.846 \
-5.562,-12.407 -12.402,-12.407 -6.84,0 -12.406,5.562 -12.406,12.407 l 0,33.513 \
-7.954,0 0,0 0,-33.513 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g5847"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5849"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5851"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5853"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5855"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5857"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5859"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5861"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5863"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5865"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5867"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5869"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5871"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5873"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5875"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5946"
+       transform="matrix(3.5347252,0,0,3.5347252,159.99966,-188.04806)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5906"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5908"
+           d="m 23.009,16.306 c -0.682,-0.917 -1.551,-1.609 -2.516,-2.105 \
-0.486,-0.246 -0.996,-0.449 -1.575,-0.576 -0.226,-0.049 -0.44,-0.076 -0.647,-0.09 L \
18.21,10.802 c 0,-0.071 0,-0.143 0,-0.213 0.083,-0.052 0.167,-0.104 0.249,-0.156 \
0.83,-0.529 1.619,-1.078 2.396,-1.736 C 21.624,8.038 22.394,7.291 22.974,6.233 \
23.544,5.16 23.786,3.889 23.418,2.564 23.07,1.258 21.814,0.041 20.257,0.003 \
19.493,-0.028 18.726,0.254 18.171,0.702 17.888,0.925 17.656,1.177 17.466,1.45 c \
-0.138,0.205 -0.257,0.338 -0.41,0.601 -0.635,1.021 -0.929,2.054 -1.072,3.092 \
-0.137,1.024 -0.14,2.002 -0.098,2.94 l 0.021,0.532 c -1.22,0.686 -2.512,1.395 \
-3.745,2.259 -0.807,0.562 -1.608,1.19 -2.342,1.971 -0.73,0.772 -1.398,1.727 \
-1.78,2.853 -0.382,1.129 -0.464,2.333 -0.235,3.483 0.186,1.045 0.605,2.129 \
1.216,3.068 1.228,1.926 3.274,3.161 5.348,3.637 0.691,0.148 1.392,0.236 2.097,0.252 l \
0.037,1.233 c 0.002,0.042 0.004,0.089 0.01,0.132 0.014,0.104 0.027,0.299 0.027,0.448 \
0.001,0.161 -0.005,0.321 -0.021,0.476 -0.03,0.309 -0.1,0.59 -0.197,0.797 -0.101,0.209 \
-0.208,0.314 -0.332,0.39 -0.066,0.033 -0.148,0.061 -0.246,0.08 -0.053,0.005 \
-0.103,0.018 -0.166,0.018 -0.007,0 -0.061,0.002 -0.063,0.002 l -0.128,-0.007 \
-0.143,-0.01 -0.069,-0.018 c -0.042,-0.006 -0.096,-0.018 -0.164,-0.037 -0.124,-0.029 \
-0.246,-0.077 -0.354,-0.135 -0.22,-0.108 -0.397,-0.262 -0.498,-0.41 -0.102,-0.151 \
-0.14,-0.291 -0.132,-0.463 0.005,-0.086 0.015,-0.182 0.059,-0.287 0.025,-0.104 \
0.098,-0.219 0.149,-0.334 l 0.071,-0.157 c 0.233,-0.523 0.013,-1.144 -0.506,-1.397 \
-0.532,-0.262 -1.173,-0.043 -1.435,0.488 -0.119,0.241 -0.244,0.47 -0.322,0.75 \
-0.091,0.261 -0.143,0.564 -0.15,0.869 -0.025,0.613 0.181,1.269 0.538,1.755 \
0.354,0.493 0.82,0.84 1.306,1.073 0.244,0.119 0.496,0.209 0.753,0.271 0.208,0.065 \
0.645,0.118 0.789,0.118 l 0.148,0.008 c 0.158,0.004 0.162,-0.003 0.251,-0.004 \
0.135,-0.002 0.281,-0.023 0.423,-0.044 0.288,-0.053 0.587,-0.145 0.87,-0.293 \
0.574,-0.303 1.001,-0.824 1.237,-1.327 0.239,-0.508 0.342,-1.005 0.393,-1.48 \
0.025,-0.236 0.035,-0.473 0.035,-0.702 -0.004,-0.222 -0.01,-0.406 -0.037,-0.651 l \
-0.033,-1.333 c 0.722,-0.146 1.433,-0.378 2.121,-0.711 0.504,-0.251 0.996,-0.562 \
1.439,-0.967 0.432,-0.375 0.899,-0.979 1.131,-1.439 0.492,-0.947 0.87,-2.05 \
0.857,-3.242 0.005,-1.19 -0.422,-2.383 -1.105,-3.292 z M 18.304,5.484 c 0.115,-0.78 \
0.391,-1.537 0.74,-2.07 0.074,-0.138 0.262,-0.353 0.385,-0.526 0.074,-0.102 \
0.164,-0.186 0.246,-0.242 0.168,-0.118 0.321,-0.155 0.479,-0.142 0.312,0.025 \
0.664,0.306 0.771,0.775 0.118,0.456 0.014,1.133 -0.306,1.658 -0.485,0.821 \
-1.419,1.607 -2.453,2.311 0.011,-0.617 0.048,-1.211 0.138,-1.764 z m -3.252,17.598 c \
-1.486,-0.377 -2.792,-1.221 -3.536,-2.432 -0.375,-0.608 -0.639,-1.271 -0.763,-2.037 \
-0.112,-0.654 -0.086,-1.347 0.123,-1.956 0.397,-1.249 1.586,-2.395 2.978,-3.373 \
0.689,-0.488 1.419,-0.936 2.175,-1.386 l 0.062,1.893 c -0.693,0.199 -1.353,0.506 \
-1.972,0.924 -0.461,0.325 -0.899,0.731 -1.247,1.253 -0.175,0.27 -0.316,0.518 \
-0.438,0.909 -0.027,0.088 -0.061,0.195 -0.076,0.264 l -0.029,0.17 -0.041,0.255 \
-0.013,0.245 c -0.041,0.662 0.192,1.393 0.591,1.94 0.423,0.548 0.875,0.921 1.515,1.22 \
0.036,0.02 0.08,0.035 0.119,0.05 0.565,0.188 1.176,-0.119 1.363,-0.687 0.188,-0.566 \
-0.119,-1.176 -0.685,-1.363 l -0.01,-0.002 c -1.172,-0.39 -1.101,-1.699 0.156,-2.479 \
0.257,-0.161 0.542,-0.301 0.842,-0.412 l 0.009,0.273 0.208,6.953 C 15.93,23.269 \
15.482,23.196 15.052,23.082 Z m 6.552,-3.501 c -0.012,0.655 -0.256,1.345 -0.631,2.009 \
-0.209,0.344 -0.334,0.459 -0.595,0.69 -0.239,0.208 -0.54,0.385 -0.862,0.529 \
-0.319,0.145 -0.662,0.258 -1.019,0.341 l -0.169,-6.836 -0.01,-0.483 c 0.028,0.007 \
0.062,0.014 0.088,0.023 0.317,0.08 0.667,0.227 0.994,0.407 1.339,0.738 2.281,2.027 \
2.204,3.32 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5910"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5912"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5914"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5916"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5918"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5920"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5922"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5924"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5926"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5928"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5930"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5932"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5934"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5936"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5938"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6006"
+       transform="matrix(0.80746959,0,0,0.80746959,523.28054,-146.85552)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5966"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5968"
+           d="m 125.099,110.146 c 0.447,-0.322 1.036,-0.36 1.524,-0.107 0.488,0.256 \
0.789,0.762 0.78,1.312 l -0.179,12.302 -21.163,15.189 -43.99,-12.568 0,-11.52 c \
0,-0.83 0.39,-1.612 1.054,-2.114 0.666,-0.5 1.525,-0.662 2.324,-0.434 l 38.706,11.057 \
c 1.205,0.342 2.496,0.123 3.513,-0.609 l 17.431,-12.508 z m 5.391,19.617 c 0,-0.915 \
-0.511,-1.748 -1.318,-2.165 -0.814,-0.415 -1.791,-0.34 -2.532,0.189 L 106.065,142.575 \
61.72,129.596 c -0.972,-0.285 -2.02,-0.096 -2.831,0.514 -0.811,0.606 -1.288,1.56 \
-1.288,2.575 l 0,2.603 48.464,13.903 24.381,-17.259 0.048,-0.536 0,-1.633 -0.004,0 z \
M 113.299,94.537 c 2.514,0.78 4.754,2.167 6.745,3.926 0.331,-4.602 0.864,-11.91 \
1.229,-15.92 0.603,-6.578 -2.669,-10.568 -4.749,-12.41 -0.114,0.768 -0.287,1.565 \
-0.584,2.394 -0.716,2.015 -1.605,3.527 -2.582,4.678 0.632,1.118 1.122,2.646 \
0.936,4.704 -0.29,3.154 -0.682,8.311 -0.995,12.628 z M 102.82,77.1 c 3.963,0.301 \
7.638,0.381 9.815,-5.754 2.519,-7.079 -5.217,-10.438 -5.217,-10.438 -6.528,-2.401 \
-11.047,-7.119 -13.424,-10.142 -0.44,4.136 -1.134,8.325 -2.144,12.513 -1.243,5.16 \
-2.882,10.05 -4.818,14.646 5.291,-1.356 12.485,-1.076 15.788,-0.825 z m \
-31.294,23.644 c 0.49,-5.396 11.903,-8.769 25.494,-7.537 13.588,1.234 24.208,6.602 \
23.721,11.998 -0.493,5.397 -11.905,8.769 -25.493,7.539 -13.587,-1.235 -24.213,-6.604 \
-23.722,-12 z m 18.867,1.713 c -0.114,1.259 2.363,2.509 5.534,2.796 3.173,0.288 \
5.835,-0.499 5.948,-1.759 0.114,-1.259 -2.362,-2.509 -5.533,-2.796 -3.177,-0.288 \
-5.835,0.499 -5.949,1.759 z m 5.712,0.864 c 0.468,0.043 0.859,-0.073 0.88,-0.26 \
0.019,-0.188 -0.351,-0.372 -0.823,-0.415 -0.472,-0.044 -0.864,0.072 -0.88,0.26 \
-0.017,0.186 0.353,0.372 0.823,0.415 z m 29.248,2.007 c 0.342,-0.267 0.488,-0.718 \
0.364,-1.136 -0.123,-0.417 -0.485,-0.719 -0.924,-0.757 l -1.938,-0.188 c 0.178,0.703 \
0.278,1.421 0.212,2.174 -0.068,0.753 -0.267,1.477 -0.584,2.16 l 2.87,-2.253 z m \
-59.4,-0.666 c -0.736,0.557 -1.093,1.485 -0.927,2.389 0.165,0.905 0.829,1.645 \
1.714,1.902 l 34.61,10.215 c 2.883,0.851 5.999,0.253 8.367,-1.602 l 5.721,-4.479 c \
-3.777,1.435 -8.782,2.239 -14.665,2.239 -1.882,0 -3.812,-0.089 -5.734,-0.26 C \
82.894,113.96 70.387,109.127 69.27,102.139 l -3.317,2.523 z M 86.175,61.915 C \
93.338,32.199 84.601,4.599 66.66,0.273 66.358,0.2 66.055,0.133 65.753,0.077 \
64.357,-0.195 62.919,0.268 61.94,1.3 c -0.976,1.035 -1.355,2.497 -1.007,3.878 \
2.113,8.365 7.108,21.992 18.196,29.807 1.052,0.743 1.309,2.2 0.561,3.259 -0.451,0.642 \
-1.177,0.99 -1.911,0.99 -0.463,0 -0.932,-0.137 -1.34,-0.426 C 64.437,30.348 \
58.978,16.306 56.596,7.213 56.148,5.501 54.918,4.099 53.279,3.434 51.639,2.768 \
49.78,2.908 48.264,3.822 c -3.673,2.207 -7.223,5.251 -10.517,8.993 -1.784,2.015 \
-1.873,5.007 -0.221,7.14 4.928,6.364 13.54,15.045 26.266,19.556 1.217,0.432 \
1.852,1.766 1.42,2.981 -0.339,0.955 -1.241,1.558 -2.2,1.558 -0.26,0 -0.523,-0.048 \
-0.78,-0.138 C 50.212,39.653 41.674,32.137 36.16,25.736 c -1.019,-1.182 -2.559,-1.779 \
-4.107,-1.598 -1.547,0.183 -2.907,1.119 -3.622,2.507 -3.027,5.86 -5.512,12.464 \
-7.234,19.6 -0.464,1.931 0.596,3.894 2.464,4.563 5.459,1.958 16.01,4.602 32.771,4.334 \
1.367,-0.017 2.353,1.008 2.374,2.296 0.022,1.289 -1.009,2.352 -2.298,2.375 \
-0.83,0.012 -1.649,0.019 -2.448,0.019 -14.046,0 -23.683,-1.972 -29.667,-3.836 \
-1.204,-0.376 -2.512,-0.185 -3.558,0.521 -1.049,0.7 -1.719,1.841 -1.827,3.092 \
-0.698,8.077 -0.205,15.721 1.323,22.467 0.292,1.291 1.179,2.362 2.389,2.888 \
1.209,0.531 2.602,0.454 3.747,-0.208 5.958,-3.438 14.953,-7.356 27.651,-9.87 \
1.273,-0.252 2.494,0.575 2.744,1.839 0.25,1.266 -0.573,2.493 -1.838,2.748 \
-12.707,2.512 -21.482,6.524 -27.016,9.836 -1.249,0.744 -2.142,1.969 -2.471,3.386 \
-0.331,1.414 -0.074,2.908 0.712,4.136 2.369,3.668 5.247,6.605 8.572,8.61 1.222,0.734 \
2.686,0.956 4.074,0.611 1.385,-0.342 2.574,-1.227 3.308,-2.454 3.087,-5.162 \
8.269,-11.255 16.904,-16.182 1.124,-0.637 2.547,-0.244 3.187,0.873 0.64,1.118 \
0.25,2.544 -0.871,3.185 -6.499,3.704 -10.817,8.148 -13.669,12.186 -0.649,0.922 \
-0.664,2.138 -0.04,3.07 0.624,0.932 1.756,1.387 2.855,1.136 15,-3.389 29.732,-21.596 \
35.606,-45.951 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5970"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5972"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5974"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5976"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5978"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5980"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5982"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5984"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5986"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5988"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5990"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5992"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5994"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5996"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5998"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6065"
+       transform="matrix(0.31209008,0,0,0.31209008,394.77304,195.88612)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="Track__x2F__Note_2"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6027"
+           d="M 134.238,17.899 C 112.854,24.368 116.34,44.747 116.34,44.747 l \
0,165.025 c -6.717,-2.501 -14.308,-3.939 -22.373,-3.939 -27.184,0 -49.221,16.027 \
-49.221,35.797 0,19.77 22.037,35.797 49.221,35.797 27.184,0 49.221,-16.026 \
49.221,-35.797 l 0,0 0,0 0,-152.137 63.569,-12.19 c 0,0 0.672,-0.158 1.627,-0.414 \
5.54,-1.518 24.296,-8.231 24.296,-30.082 L 232.68,0 134.238,17.899 Z" +           \
style="clip-rule:evenodd;fill:#f8f9fa;fill-opacity:1;fill-rule:evenodd" +           \
inkscape:connector-curvature="0" /> +      </g>
+      <g
+         id="g6029"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6031"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6033"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6035"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6037"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6039"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6041"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6043"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6045"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6047"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6049"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6051"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6053"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6055"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6057"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6125"
+       transform="matrix(5.2395095,0,0,5.2395095,259.49655,269.97719)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6085"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6087"
+           d="m 16.681,13.4 c -0.7,-0.8 -1.7,-1.3 -2.9,-1.2 -0.1,-0.2 -0.5,-2.2 \
-0.5,-2.2 0,0 1.4,-2.1 1.7,-2.5 1.5,-2.4 1.6,-4.3 0.7,-6.2 -0.3,-0.7 -1.1,-1.3 \
-1.9,-1.3 -0.6,0 -1.1,0.5 -1.4,1.1 -1,1.7 -1,4.9 -0.5,7.1 0,0 -0.5,0.5 -1,1.1 -1,1.1 \
-2.1,2.3 -2.5,3.9 -0.5,1.8 -0.1,3.5 1,4.8 1.2,1.5 3,2.2 5.2,2 0.4,1.9 0.7,3.1 0.1,4.2 \
-0.2,0.4 -0.6,0.8 -1.3,0.8 -0.2,0 -0.3,0 -0.5,-0.1 0.6,-0.3 1.1,-0.9 1.1,-1.6 0,-1 \
-0.8,-1.8 -1.8,-1.8 -1.7,0.1 -1.8,1.8 -1.8,1.8 0,0.6 0.2,1.2 0.6,1.6 0.5,0.5 1.3,0.9 \
2.2,0.9 1.1,0 2.2,-0.4 2.6,-2 0.4,-1.3 -0.3,-3.4 -0.4,-4.1 1.1,-0.5 2.1,-2 2.2,-3 \
0.2,-1.1 -0.2,-2.4 -0.9,-3.3 z m -3.2,-11.1 c 0.1,-0.2 0.3,-0.3 0.5,-0.3 0.1,0 \
0.3,0.1 0.4,0.2 0.4,0.2 0.5,0.6 0.5,1.2 -0.1,1.5 -1.4,3.3 -2.1,3.9 -0.3,-1.4 -0.1,-4 \
0.7,-5 z m -2.9,15.7 c -0.7,-0.7 -1,-1.7 -0.9,-2.7 0.2,-1.6 1.3,-2.9 2.2,-3.9 \
0.2,-0.2 0.4,-0.4 0.5,-0.6 0.1,0.5 0.4,1.3 0.5,1.7 -1.2,0.5 -1.9,2.1 -1.8,3.4 0,0.6 \
0.2,1 0.5,1.4 0.1,0.1 0.2,0.2 0.3,0.2 0.1,0 0.3,-0.1 0.3,-0.2 l 0,0 c 0.1,-0.1 \
0.1,-0.3 0,-0.4 -0.1,-0.1 -0.1,-0.2 -0.1,-0.4 -0.1,-0.9 0.5,-1.6 1.2,-1.9 0.1,0.6 \
0.8,3.7 0.9,4.4 -1.3,0.4 -2.7,0 -3.6,-1 z m 4.5,0.6 c -0.2,-0.7 -0.3,-1.5 -0.5,-2.4 \
-0.1,-0.6 -0.2,-1.3 -0.4,-1.9 1.3,0 1.7,1.1 1.8,1.5 0.3,1.1 0,2.2 -0.9,2.8 z" +       \
style="fill:#f8f9fa;fill-opacity:1" +           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g6089"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6091"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6093"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6095"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6097"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6099"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6101"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6103"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6105"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6107"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6109"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6111"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6113"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6115"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6117"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6183"
+       transform="matrix(0.41511494,0,0,0.41511494,770.89597,465.61295)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <path
+         id="path6145"
+         d="m 108.732,152.869 c -24.337,0 -44.137,-19.8 -44.137,-44.137 0,-24.337 \
19.8,-44.137 44.137,-44.137 24.337,0 44.137,19.8 44.137,44.137 0,24.338 \
-19.799,44.137 -44.137,44.137 z m 0,-77.364 c -18.322,0 -33.227,14.906 -33.227,33.228 \
0,18.322 14.906,33.227 33.227,33.227 18.322,0 33.227,-14.906 33.227,-33.227 \
0.001,-18.322 -14.905,-33.228 -33.227,-33.228 z m 0,53.883 c -11.408,0 -20.655,-9.248 \
-20.655,-20.656 0,-11.408 9.248,-20.655 20.655,-20.655 11.408,0 20.655,9.248 \
20.655,20.655 0.001,11.408 -9.247,20.656 -20.655,20.656 z M 108.732,0 C 48.777,0 \
0,48.778 0,108.732 c 0,59.954 48.777,108.732 108.732,108.732 59.955,0 108.732,-48.777 \
108.732,-108.732 C 217.464,48.777 168.687,0 108.732,0 Z m 0,46.79 c -34.155,0 \
-61.942,27.787 -61.942,61.942 0,2.762 -2.239,5 -5,5 -2.761,0 -5,-2.238 -5,-5 \
0,-39.669 32.273,-71.942 71.942,-71.942 2.761,0 5,2.238 5,5 0,2.762 -2.238,5 -5,5 z m \
0,-20.484 c -45.45,0 -82.427,36.977 -82.427,82.427 0,2.762 -2.239,5 -5,5 -2.761,0 \
-5,-2.238 -5,-5 0,-50.964 41.462,-92.427 92.427,-92.427 2.761,0 5,2.238 5,5 0,2.762 \
-2.238,5 -5,5 z" +         inkscape:connector-curvature="0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6147"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6149"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6151"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6153"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6155"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6157"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6159"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6161"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6163"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6165"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6167"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6169"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6171"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6173"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6175"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6242"
+       transform="matrix(3.8660622,0,0,3.8660622,484.33751,778.98275)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6202"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6204"
+           d="M 22.08,0.098 10.97,3.497 C 9.624,3.881 8.533,5.285 8.533,6.631 l \
0,11.557 c 0,0 0,0.158 0,0.162 0,0 -0.805,-0.543 -2.598,-0.289 -2.633,0.374 \
-4.768,2.395 -4.768,4.515 0,2.12 2.135,3.419 4.768,3.045 2.635,-0.372 4.566,-2.331 \
4.566,-4.452 0,0 0,-9.066 0,-10.006 0,-0.94 1.13,-1.343 1.13,-1.343 l 9.823,-3.079 c \
0,0 1.087,-0.365 1.087,0.641 0,1.006 0,8.031 0,8.031 0,0 0,0.002 0,0.006 0,0 \
-1.001,-0.576 -2.794,-0.358 -2.633,0.319 -4.768,2.298 -4.768,4.417 0,2.121 \
2.135,3.463 4.768,3.143 2.635,-0.319 4.77,-2.297 4.77,-4.418 l 0,-16.363 c 0,-1.346 \
-1.092,-2.126 -2.437,-1.742 z" +           style="fill:#f8f9fa;fill-opacity:1"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g6206"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6208"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6210"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6212"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6214"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6216"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6218"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6220"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6222"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6224"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6226"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6228"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6230"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6232"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6234"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6302"
+       transform="matrix(0.30057858,0,0,0.30057858,683.21717,-192.41067)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6262"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6264"
+           d="M 207.865,150.283 C 187.872,142.286 170.131,107.179 160.683,82.734 \
141.985,34.321 123.77,5.021 71.174,6.271 3.959,7.857 0,70.323 0,70.323 l 0,208.073 c \
0,8.669 7.037,15.701 15.701,15.701 l 262.759,0 c 8.66,0 17.264,-6.86 18.61,-15.424 \
5.49,-34.969 11.718,-117.474 -51.154,-120.624 -15.794,-0.805 -28.297,-3.854 \
-38.051,-7.766 z m 72.041,128.787 -267.257,0 0,-58.509 15.417,0 0,42.892 16.607,0 \
0,-42.892 13.633,0 0,42.892 16.607,0 0,-42.892 13.633,0 0,42.892 16.603,0 0,-42.892 \
13.638,0 0,42.892 16.603,0 0,-42.892 13.646,0 0,42.892 16.604,0 0,-42.892 13.634,0 \
0,42.892 16.603,0 0,-42.892 13.642,0 0,42.892 16.594,0 0,-42.892 13.642,0 0,42.892 \
16.611,0 0,-42.892 23.52,0 0,58.509 0.02,0 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g6266"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6268"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6270"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6272"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6274"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6276"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6278"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6280"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6282"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6284"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6286"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6288"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6290"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6292"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6294"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6368"
+       transform="matrix(0.26524179,0,0,0.26524179,63.091607,774.09189)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6322"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g6324"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path6326"
+             d="m 443.981,134.98 c 0,0 0,0 -25.167,-14.274 C 393.651,106.45 \
400.644,103.522 389.452,81.151 378.275,58.777 343.314,58.777 343.314,58.777 l \
-297.792,63.838 315.28,53.775 83.179,-41.41 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path6328"
+             d="m 357.998,183.47 -312.476,-55.056 0,58.292 L 0,204.879 l 0,39.14 \
76.761,11.217 17.873,95.922 c 1.062,5.703 2.779,5.703 3.849,0 l 16.823,-90.295 \
46.961,6.869 0,70.482 -20.45,-1.503 0,19.552 85.464,6.284 0,-19.532 -19.404,-1.443 \
0,-67.196 68.693,10.039 17.986,96.519 c 1.058,5.694 2.785,5.694 3.851,0 l \
16.928,-90.856 18.129,2.646 0.773,-37.518 23.761,-13.971 0,-57.765 z M 195.3,340.655 \
l -20.442,-1.503 0,-69.581 20.442,2.989 0,68.095 z M 313.263,265.523 24.9,224.632 l \
44.564,-18.358 6.508,0.958 -19.274,13.026 10.489,2.787 13.259,-15.154 19.556,2.875 \
-18.149,12.271 10.487,2.789 12.553,-14.347 19.162,2.83 -17.049,11.517 10.487,2.797 \
11.846,-13.549 42.801,6.314 -14.839,10.02 10.487,2.798 10.436,-11.924 17.953,2.639 \
-13.721,9.285 10.487,2.797 9.72,-11.129 41.603,6.132 -11.511,7.79 10.481,2.789 \
8.327,-9.505 40.783,6.019 -9.289,6.292 10.487,2.785 6.901,-7.891 32.22,4.753 \
-19.402,20.485 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <polygon
+             id="polygon6330"
+             points="340.173,260.446 340.173,293.66 443.981,223.045 443.981,143.521 \
364.642,184.257 364.642,246.48 " +             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g6332"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6334"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6336"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6338"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6340"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6342"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6344"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6346"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6348"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6350"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6352"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6354"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6356"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6358"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6360"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6431"
+       transform="matrix(2.8278219,0,0,2.8278219,706.5666,755.30574)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6391"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6393"
+           d="m 30.841,4.939 -29.759,0 C 0.472,4.939 0,5.387 0,5.997 l 0,19.838 c \
0,0.609 0.472,1.148 1.082,1.148 l 29.76,0 c 0.608,0 1.081,-0.537 1.081,-1.148 l \
0,-19.838 C 31.922,5.387 31.45,4.939 30.841,4.939 Z M 6.447,18.113 c 0.682,0 \
1.235,-0.554 1.235,-1.236 l 0,-9.742 1.098,0 0,9.741 c 0,0.682 0.553,1.236 \
1.235,1.236 l 0.412,0 0,6.584 -4.39,0 0,-6.584 0.41,0 z m 5.078,0 0.411,0 c 0.683,0 \
1.236,-0.554 1.236,-1.236 l 0,-9.746 2.195,0 0,17.567 -3.842,0 0,-6.585 z m \
5.032,-10.978 2.196,0 0,9.741 c 0,0.682 0.554,1.236 1.235,1.236 l 0.41,0 0,6.584 \
-3.842,0 0,-17.561 10e-4,0 z m 4.938,10.978 0.409,0 c 0.683,0 1.236,-0.554 \
1.236,-1.236 l 0,-9.742 1.098,0 0,9.741 c 0,0.682 0.554,1.236 1.236,1.236 l 0.407,0 \
0,6.584 -4.39,0 0.004,-6.583 0,0 z M 2.195,8.022 c 0,-0.49 0.397,-0.887 0.887,-0.887 \
l 0.21,0 0,9.741 c 0,0.684 0.553,1.236 1.235,1.236 l 0.411,0 0,6.584 -1.855,0 c \
-0.49,0 -0.887,-0.396 -0.887,-0.888 L 2.195,8.022 l 0,0 z m 27.532,15.787 c 0,0.49 \
-0.396,0.888 -0.887,0.888 l -1.857,0 0,-6.584 0.412,0 c 0.685,0 1.235,-0.554 \
1.235,-1.236 l 0,-9.742 0.21,0 c 0.49,0 0.887,0.397 0.887,0.887 l 0,15.787 0,0 z" +   \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g6395"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6397"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6399"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6401"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6403"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6405"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6407"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6409"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6411"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6413"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6415"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6417"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6419"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6421"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6423"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6499"
+       transform="matrix(0.18935465,0,0,0.18935465,56.673472,250.11791)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6451"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g6453"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <g
+             id="g6455"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <g
+               id="g6457"
+               style="fill:#f8f9fa;fill-opacity:1">
+              <path
+                 id="path6459"
+                 d="M 238.369,0 C 106.726,0 0,106.726 0,238.369 0,370.044 \
106.726,476.738 238.369,476.738 370.044,476.738 476.738,370.044 476.738,238.369 \
476.737,106.726 370.043,0 238.369,0 Z m 0,444.955 c -113.908,0 -206.586,-92.678 \
-206.586,-206.586 0,-113.908 92.677,-206.587 206.586,-206.587 113.909,0 \
206.586,92.678 206.586,206.586 0,113.908 -92.678,206.587 -206.586,206.587 z" +        \
style="fill:#f8f9fa;fill-opacity:1" +                 \
inkscape:connector-curvature="0" /> +              <path
+                 id="path6461"
+                 d="M 343.759,227.976 221.206,130.88 c -6.897,-5.403 -18.084,-5.403 \
-24.981,0 l -0.159,0.159 c -3.305,2.511 -5.371,6.007 -5.371,9.916 l 0,194.191 c \
0,3.973 2.193,7.501 5.594,9.98 l -0.064,0.064 c 6.897,5.435 18.084,5.435 24.981,0 l \
123.221,-97.318 c 6.929,-5.403 6.929,-14.207 0,-19.61 l -0.668,-0.286 z" +            \
style="fill:#f8f9fa;fill-opacity:1" +                 \
inkscape:connector-curvature="0" /> +            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         id="g6463"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6465"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6467"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6469"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6471"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6473"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6475"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6477"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6479"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6481"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6483"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6485"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6487"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6489"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6491"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6591"
+       transform="matrix(1.8421748,0,0,1.8421748,124.00148,353.6961)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6523"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g6525"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <g
+             id="g6527"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6529"
+               d="M 2.41,31.936 C 1.079,31.936 0,30.858 0,29.526 l 0,-12.05 c \
0,-1.331 1.079,-2.41 2.41,-2.41 1.331,0 2.41,1.079 2.41,2.41 l 0,12.05 c 0,1.329 \
-1.079,2.41 -2.41,2.41 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+          <g
+             id="g6531"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6533"
+               d="m 9.44,37.962 c -1.331,0 -2.41,-1.079 -2.41,-2.41 l 0,-24.104 c \
0,-1.331 1.079,-2.41 2.41,-2.41 1.331,0 2.41,1.079 2.41,2.41 l 0,24.104 c 0.001,1.331 \
-1.079,2.41 -2.41,2.41 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+          <g
+             id="g6535"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6537"
+               d="m 16.47,34.948 c -1.331,0 -2.41,-1.079 -2.41,-2.41 l 0,-18.076 c \
0,-1.331 1.079,-2.41 2.41,-2.41 1.331,0 2.411,1.079 2.411,2.41 l 0,18.076 c \
-0.001,1.331 -1.08,2.41 -2.411,2.41 z" +               \
inkscape:connector-curvature="0" +               style="fill:#f8f9fa;fill-opacity:1" \
/> +          </g>
+          <g
+             id="g6539"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6541"
+               d="m 23.5,40.975 c -1.331,0 -2.41,-1.078 -2.41,-2.41 l 0,-30.129 c \
0,-1.331 1.079,-2.41 2.41,-2.41 1.331,0 2.41,1.079 2.41,2.41 l 0,30.128 c 0,1.332 \
-1.079,2.411 -2.41,2.411 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+          <g
+             id="g6543"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6545"
+               d="m 30.529,47 c -1.33,0 -2.41,-1.079 -2.41,-2.41 l 0,-42.18 c \
0,-1.331 1.08,-2.41 2.41,-2.41 1.332,0 2.41,1.079 2.41,2.41 l 0,42.18 c 0,1.331 \
-1.078,2.41 -2.41,2.41 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+          <g
+             id="g6547"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6549"
+               d="m 37.561,37.962 c -1.332,0 -2.41,-1.079 -2.41,-2.41 l 0,-24.104 c \
0,-1.331 1.078,-2.41 2.41,-2.41 1.33,0 2.41,1.079 2.41,2.41 l 0,24.104 c 0,1.331 \
-1.08,2.41 -2.41,2.41 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+          <g
+             id="g6551"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6553"
+               d="m 44.59,28.923 c -1.331,0 -2.41,-1.079 -2.41,-2.409 l 0,-6.026 c \
0,-1.331 1.079,-2.41 2.41,-2.41 1.331,0 2.41,1.079 2.41,2.41 l 0,6.026 c 0,1.33 \
-1.079,2.409 -2.41,2.409 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+        </g>
+      </g>
+      <g
+         id="g6555"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6557"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6559"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6561"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6563"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6565"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6567"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6569"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6571"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6573"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6575"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6577"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6579"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6581"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6583"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6665"
+       transform="matrix(4.7790688,0,0,4.7790688,704.29353,-7.0400211)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6625"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6627"
+           d="m 10.653,8.76 8.145,-1.321 0,11.043 c 0,0.914 -0.681,1.644 \
-1.744,1.913 -1.168,0.289 -2.294,-0.2 -2.519,-1.095 -0.224,-0.897 0.541,-1.858 \
1.708,-2.15 0.527,-0.13 1.047,-0.103 1.481,0.05 l 0,-6.654 -5.969,1.092 -0.028,8.276 \
c -0.005,0.783 -0.713,1.554 -1.729,1.805 -1.153,0.289 -2.363,-0.26 -2.492,-1.081 \
-0.221,-0.886 0.534,-1.837 1.691,-2.127 0.52,-0.13 1.029,-0.104 1.456,0.046 l \
0,-9.797 z M 7.591,12.81 7.62,2.581 c 0,0 2.228,-0.119 4.407,3.298 0,0 0.006,-1.764 \
-1.669,-3.055 C 7.087,0.54 7.096,0 7.096,0 6.472,0.073 6.408,0.547 6.408,0.547 l \
0,10.771 C 5.94,11.154 5.38,11.125 4.806,11.268 c -1.27,0.314 -2.1,1.363 -1.857,2.338 \
0.143,0.901 1.471,1.506 2.74,1.187 1.115,-0.278 1.894,-1.12 1.9,-1.983 l 0.002,0 z M \
13.515,6.2 c 0.388,-0.097 0.659,-0.39 0.661,-0.69 l 10e-4,0 0.01,-3.559 c 0,0 \
0.775,-0.041 1.533,1.148 0,0 10e-4,-0.614 -0.582,-1.062 C 14,1.242 14.004,1.054 \
14.004,1.054 c -0.217,0.025 -0.24,0.19 -0.24,0.19 l 0,3.748 C 13.602,4.934 \
13.408,4.924 13.208,4.973 c -0.443,0.109 -0.73,0.475 -0.646,0.814 0.05,0.314 \
0.512,0.524 0.953,0.413 z m 3.84,0.009 c 0.27,-0.067 0.458,-0.272 0.46,-0.481 l \
0.007,-2.479 c 0,0 0.54,-0.029 1.068,0.799 0,0 10e-4,-0.428 -0.404,-0.74 C \
17.693,2.754 17.695,2.623 17.695,2.623 17.544,2.641 17.528,2.756 17.528,2.756 l \
0,2.611 C 17.415,5.327 17.279,5.32 17.14,5.355 c -0.308,0.076 -0.509,0.33 -0.45,0.566 \
0.034,0.219 0.356,0.366 0.665,0.288 z" +           \
style="fill:#f8f9fa;fill-opacity:1" +           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g6629"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6631"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6633"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6635"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6637"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6639"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6641"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6643"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6645"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6647"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6649"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6651"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6653"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6655"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6657"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6727"
+       transform="matrix(1.03097,0,0,1.03097,319.88055,933.99536)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6685"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6687"
+           d="m 45.443,22.544 c 5.975,0 10.836,-4.861 10.836,-10.836 0,-5.975 \
-4.861,-10.835 -10.836,-10.835 -5.975,0 -10.836,4.86 -10.836,10.835 0,5.975 \
4.861,10.836 10.836,10.836 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path6689"
+           d="m 77.24,93.073 -8.17,-8.171 0,-29.325 c 0.456,-0.254 0.846,-0.622 \
1.12,-1.078 l 0.778,-1.295 c 0.844,-1.406 0.406,-3.267 -0.978,-4.147 l -0.92,-0.586 \
0,-27.022 c 1.579,-0.607 2.708,-2.129 2.708,-3.92 l 0,-2.332 c 0,-2.321 -1.888,-4.209 \
-4.209,-4.209 -2.32,0 -4.208,1.888 -4.208,4.209 l 0,2.332 c 0,1.791 1.129,3.314 \
2.709,3.92 l 0,25.114 -7.089,-4.512 C 58.274,41.602 57.448,40.452 57.247,39.639 L \
54.265,27.586 C 54.186,27.268 54.058,26.984 53.896,26.735 53.4,25.761 52.398,25.086 \
51.232,25.086 l -11.69,0 L 27.271,1.782 C 26.691,0.683 25.551,0 24.295,0 23.787,0 \
23.279,0.118 22.826,0.342 l -2.211,1.094 c -0.791,0.391 -1.375,1.066 -1.646,1.901 \
-0.271,0.835 -0.194,1.726 0.217,2.505 l 14.217,27.001 0,24.25 c -0.025,0.067 \
-0.06,0.129 -0.082,0.197 l -9.783,30.638 c -0.407,1.276 -0.283,2.619 0.35,3.781 \
0.633,1.162 1.694,1.994 2.987,2.343 l 0.654,0.177 c 0.428,0.116 0.872,0.175 \
1.318,0.175 2.251,0 4.296,-1.481 4.974,-3.603 l 9.288,-29.087 0.771,0 1.694,8.42 c \
0.269,1.335 0.521,3.612 0.552,4.974 l 0.382,17.203 c 0.041,1.85 1.452,3.245 \
3.282,3.245 0.16,0 0.323,-0.011 0.488,-0.034 l 3.223,-0.447 c 1.921,-0.267 \
3.401,-2.06 3.301,-3.997 L 55.9,73.806 C 55.824,72.349 55.601,69.991 55.402,68.55 l \
-1.171,-19.799 11.838,6.816 0,29.335 -8.17,8.171 c -0.586,0.586 -0.586,1.536 0,2.121 \
0.293,0.293 0.677,0.439 1.061,0.439 0.384,0 0.768,-0.146 1.061,-0.439 l 6.049,-6.049 \
0,5.845 c 0,0.829 0.671,1.5 1.5,1.5 0.829,0 1.5,-0.671 1.5,-1.5 l 0,-5.845 \
6.049,6.049 c 0.293,0.293 0.677,0.439 1.061,0.439 0.384,0 0.768,-0.146 1.061,-0.439 \
0.585,-0.586 0.585,-1.535 -0.001,-2.121 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g6691"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6693"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6695"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6697"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6699"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6701"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6703"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6705"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6707"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6709"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6711"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6713"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6715"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6717"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6719"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6866"
+       transform="matrix(0.21231709,0,0,0.21231709,686.34128,595.59645)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6748"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g6750"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <rect
+             id="rect6752"
+             height="39.449001"
+             width="39.446999"
+             y="361.617"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6754"
+             height="39.432999"
+             width="39.446999"
+             y="313.41199"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6756"
+             height="39.441002"
+             width="39.446999"
+             y="265.18301"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6758"
+             height="39.449001"
+             width="39.446999"
+             y="216.96899"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6760"
+             height="39.446999"
+             width="39.446999"
+             y="168.746"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6762"
+             height="39.443001"
+             width="39.446999"
+             y="120.537"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6764"
+             height="39.446999"
+             width="39.446999"
+             y="72.322998"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6766"
+             height="39.446999"
+             width="39.446999"
+             y="24.112"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6768"
+             height="39.449001"
+             width="39.446999"
+             y="361.617"
+             x="48.217999"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6770"
+             height="39.432999"
+             width="39.446999"
+             y="313.41199"
+             x="48.217999"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6772"
+             height="39.441002"
+             width="39.446999"
+             y="265.18301"
+             x="48.217999"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6774"
+             height="39.449001"
+             width="39.446999"
+             y="216.96899"
+             x="48.217999"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6776"
+             height="39.446999"
+             width="39.446999"
+             y="168.746"
+             x="48.217999"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6778"
+             height="39.449001"
+             width="39.438999"
+             y="361.617"
+             x="96.434998"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6780"
+             height="39.432999"
+             width="39.438999"
+             y="313.41199"
+             x="96.434998"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6782"
+             height="39.441002"
+             width="39.438999"
+             y="265.18301"
+             x="96.434998"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6784"
+             height="39.449001"
+             width="39.446999"
+             y="361.617"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6786"
+             height="39.432999"
+             width="39.446999"
+             y="313.41199"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6788"
+             height="39.441002"
+             width="39.446999"
+             y="265.18301"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6790"
+             height="39.449001"
+             width="39.446999"
+             y="216.96899"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6792"
+             height="39.446999"
+             width="39.446999"
+             y="168.746"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6794"
+             height="39.443001"
+             width="39.446999"
+             y="120.537"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6796"
+             height="39.449001"
+             width="39.445"
+             y="361.617"
+             x="192.85899"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6798"
+             height="39.432999"
+             width="39.445"
+             y="313.41199"
+             x="192.85899"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6800"
+             height="39.449001"
+             width="39.441002"
+             y="361.617"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6802"
+             height="39.432999"
+             width="39.441002"
+             y="313.41199"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6804"
+             height="39.441002"
+             width="39.441002"
+             y="265.18301"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6806"
+             height="39.449001"
+             width="39.441002"
+             y="216.96899"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6808"
+             height="39.446999"
+             width="39.441002"
+             y="168.746"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6810"
+             height="39.443001"
+             width="39.441002"
+             y="120.537"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6812"
+             height="39.446999"
+             width="39.441002"
+             y="72.322998"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6814"
+             height="39.449001"
+             width="39.444"
+             y="361.617"
+             x="289.29901"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6816"
+             height="39.449001"
+             width="39.452999"
+             y="361.617"
+             x="337.504"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6818"
+             height="39.432999"
+             width="39.452999"
+             y="313.41199"
+             x="337.504"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6820"
+             height="39.441002"
+             width="39.452999"
+             y="265.18301"
+             x="337.504"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6822"
+             height="39.449001"
+             width="39.452999"
+             y="361.617"
+             x="385.72501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6824"
+             height="39.432999"
+             width="39.452999"
+             y="313.41199"
+             x="385.72501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6826"
+             height="39.441002"
+             width="39.452999"
+             y="265.18301"
+             x="385.72501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6828"
+             height="39.449001"
+             width="39.452999"
+             y="216.96899"
+             x="385.72501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g6830"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6832"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6834"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6836"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6838"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6840"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6842"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6844"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6846"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6848"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6850"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6852"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6854"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6856"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6858"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6969"
+       transform="matrix(5.6420348,0,0,5.6420348,40.683523,-210.25736)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6925"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g6927"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path6929"
+             d="M 8,0 C 3.5,0 0,3.5 0,8 c 0,4.5 3.5,8 8,8 4.5,0 8,-3.5 8,-8 C 16,3.5 \
12.5,0 8,0 Z M 8,14 C 4.5,14 2,11.5 2,8 2,4.5 4.5,2 8,2 c 3.5,0 6,2.5 6,6 0,3.5 \
-2.5,6 -6,6 z" +             style="fill:#f8f9fa;fill-opacity:1"
+             inkscape:connector-curvature="0" />
+          <polygon
+             id="polygon6931"
+             points="6,12 11,8 6,4 "
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g6933"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6935"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6937"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6939"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6941"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6943"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6945"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6947"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6949"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6951"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6953"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6955"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6957"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6959"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6961"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g4901-3"
+       transform="matrix(0.23752512,0,0,0.23752512,922.39928,292.49678)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g4851-5"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path4853-5"
+           d="m 403.688,250.788 c -11.899,-4.2 -26.899,-2 -37.5,-11.1 -11.5,-9.9 \
-16.6,-24.301 -25.5,-36.2 -8.899,-11.9 -21.7,-19.101 -35.6,-24 -16.5,-5.7 -36.5,-6.5 \
-54,-2 -3.1,0.8 -32.2,12.899 -32.5,12.6 -24,-24 -65.1,-65 -89.1,-89 1.7,-10.8 \
-1.6,-22.2 -9.7,-30.3 l -39,-39.1 c -13.5,-13.5 -36.1,-13.5 -49.6,0 -13.5,13.5 \
-13.5,36.1 0,49.6 l 39.1,39.1 c 8.4,8.4 20.4,11.601 31.4,9.5 23.8,23.801 64.7,64.7 \
88.5,88.5 -0.7,-0.699 -12.7,27.801 -13.4,30.601 -2.8,11.3 -3.5,23 -2.3,34.6 3.6,32.5 \
24.1,62.101 53.3,76.7 17.1,8.6 15.701,15.3 20.201,33 5.3,20.9 15.8,40.2 31,55.5 \
46.899,46.9 122.8,46.9 169.699,0 46.9,-46.899 46.9,-122.8 0,-169.7 -12.6,-12.601 \
-28.1,-22.401 -45,-28.301 z m -109.699,90 c -26.301,0 -47.7,-21.3 -47.7,-47.7 \
0,-26.399 21.3,-47.7 47.7,-47.7 26.3,0 47.699,21.301 47.699,47.7 0,26.4 -21.3,47.7 \
-47.699,47.7 z m 111.099,13.4 -51.601,51.6 c -2,2 -4.5,2.9 -7.1,2.9 -2.6,0 -5.1,-1 \
-7.1,-2.9 -3.9,-3.899 -3.9,-10.3 0,-14.2 l 51.6,-51.6 c 3.9,-3.9 10.3,-3.9 14.2,0 \
4.001,3.9 4.001,10.3 0.001,14.2 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path4855-7"
+           d="m 293.989,254.988 c -21,0 -38.101,17.1 -38.101,38.1 0,21 17.101,38.101 \
38.101,38.101 20.999,0 38.1,-17.101 38.1,-38.101 0.099,-21 -17.001,-38.1 -38.1,-38.1 \
z m -28,38.1 c 0,-15.5 12.6,-28.1 28.1,-28.1 15.5,0 28.1,12.6 28.1,28.1 0,15.5 \
-12.6,28.101 -28.1,28.101 -15.5,0 -28.1,-12.601 -28.1,-28.101 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path4857-9"
+           d="m 100.388,0.788 c -1.2,-1.2 -2.8,-1 -3.7,0.4 l -10.7,17.3 c -0.9,1.399 \
-0.6,3.5 0.5,4.7 l 5.4,5.399 c 1.2,1.2 3.3,1.4 4.7,0.5 l 17.3,-10.7 c 1.4,-0.899 \
1.6,-2.5 0.4,-3.699 l -13.9,-13.9 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path4859-7"
+           d="m 18.388,113.888 10.7,-17.3 c 0.9,-1.399 0.6,-3.5 -0.5,-4.7 l \
-5.4,-5.399 c -1.2,-1.2 -3.3,-1.4 -4.7,-0.5 l -17.2,10.7 c -1.4,0.899 -1.6,2.5 \
-0.4,3.699 l 13.9,13.9 c 1.1,1.2 2.8,1 3.6,-0.4 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path4861-2"
+           d="m 131.888,36.388 -10.7,17.301 c -0.9,1.399 -0.6,3.5 0.5,4.699 l \
5.4,5.4 c 1.2,1.2 3.3,1.4 4.7,0.5 l 17.3,-10.7 c 1.4,-0.899 1.6,-2.5 0.4,-3.7 l \
-13.9,-13.899 c -1.2,-1.201 -2.8,-1.001 -3.7,0.399 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path4863-1"
+           d="m 53.588,148.988 10.7,-17.3 c 0.9,-1.4 0.6,-3.5 -0.5,-4.7 l -5.4,-5.4 \
c -1.2,-1.2 -3.3,-1.399 -4.7,-0.5 l -17.3,10.8 c -1.4,0.9 -1.6,2.5 -0.4,3.7 l \
13.9,13.9 c 1.2,1.1 2.8,1 3.7,-0.5 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g4865-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4867-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4869-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4871-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4873-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4875-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4877-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4879-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4881-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4883-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4885-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4887-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4889-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4891-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4893-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g4968-4"
+       transform="matrix(1.3989338,0,0,1.3989338,540.50281,-828.7631)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g4926-2"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g4928-3"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path4930-4"
+             d="M 53.479,27.435 10.672,0.915 C 7.553,-1.132 5,0.374 5,4.261 l \
0,51.48 c 0,3.885 2.553,5.391 5.672,3.346 l 42.807,-26.52 c 0,0 1.521,-1.07 \
1.521,-2.566 0,-1.496 -1.521,-2.566 -1.521,-2.566 z" +             \
style="fill:#f8f9fa;fill-opacity:1" +             inkscape:connector-curvature="0" />
+        </g>
+      </g>
+      <g
+         id="g4932-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4934-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4936-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4938-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4940-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4942-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4944-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4946-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4948-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4950-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4952-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4954-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4956-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4958-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g4960-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5045-8"
+       transform="matrix(3.6979059,0,0,3.6979059,543.72907,-685.18181)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g4989-5"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g4991-3"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path4993-2"
+             d="M 26.016,26.395 29.762,10.577 12.873,8.92 10.455,21.615 \
10.453,21.614 0.228,23.13 13.87,28.026 26.016,26.395 Z M 13.565,10.038 28.061,11.742 \
24.907,25.066 11.396,21.246 13.565,10.038 Z m -3.091,16.077 -3.348,-1.278 \
1.614,-0.215 3.756,1.254 -2.022,0.239 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <polygon
+             id="polygon4995-4"
+             points="0,23.783 0,24.568 13.731,29.819 27.52,27.628 31.385,11.605 \
30.547,11.023 26.814,26.946 13.824,28.846 13.824,28.839 " +             \
style="fill:#f8f9fa;fill-opacity:1" /> +          <path
+             id="path4997-2"
+             d="m 2.207,9.99 c 0.918,0.694 2.19,0.59 2.986,-0.197 L 5.214,9.81 \
8.826,5.035 8.832,7.491 9.734,7.487 9.728,4.458 l 0.376,-0.497 0.005,2.109 0.902,0 \
-0.007,-3.03 0.509,-0.675 -0.425,-0.32 -0.291,-0.22 -0.29,-0.22 -4.665,6.167 C \
5.747,7.221 5.452,6.701 4.97,6.336 3.96,5.573 2.524,5.774 1.762,6.781 0.999,7.792 \
1.198,9.228 2.207,9.99 Z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path4999-1"
+             d="m 11.746,11.783 -1.347,-1.038 -0.123,-0.458 -0.29,0.077 -0.197,0.052 \
-0.198,0.056 1.131,4.191 c -0.278,-0.147 -0.61,-0.196 -0.938,-0.106 -0.686,0.184 \
-1.091,0.89 -0.907,1.575 0.185,0.687 0.891,1.093 1.577,0.908 0.625,-0.168 1.016,-0.77 \
0.941,-1.394 l 0.014,-0.004 -0.875,-3.247 1.092,0.843 0.309,-0.4 -1.346,-1.04 \
-0.091,-0.339 0.938,0.726 0.31,-0.402 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5001-6"
+             d="M 16.757,5.884 C 16.26,6.392 16.268,7.205 16.776,7.702 17.285,8.199 \
18.1,8.191 18.596,7.684 19.048,7.221 19.079,6.505 18.7,6.005 L 18.71,5.995 \
16.308,3.641 17.675,3.814 17.739,3.31 16.05,3.099 15.8,2.853 16.975,3 17.038,2.498 \
15.35,2.29 15.012,1.958 14.803,2.172 14.659,2.318 14.516,2.465 17.62,5.502 c \
-0.315,0.013 -0.626,0.139 -0.863,0.382 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5003-8"
+             d="m 23.795,8.236 c 0.548,0 1.002,-0.405 1.078,-0.933 l 0.014,0 \
0,-3.815 3.028,-0.557 0,2.711 C 27.721,5.46 27.458,5.347 27.17,5.347 c -0.604,0 \
-1.091,0.489 -1.091,1.09 0,0.604 0.489,1.092 1.091,1.092 0.549,0 1.001,-0.404 \
1.079,-0.931 l 0.013,0 0,-4.292 0.021,-0.004 -0.007,-0.736 -3.739,0.692 0.004,0.408 \
0,0 0,3.684 C 24.347,6.168 24.084,6.055 23.796,6.055 c -0.604,0 -1.091,0.489 \
-1.091,1.092 -10e-4,0.601 0.486,1.089 1.09,1.089 z m 1.092,-5.304 3.028,-0.562 0,0.36 \
-3.028,0.556 0,-0.354 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5005-5"
+             d="m 7.154,20.294 0.332,-3.79 -0.393,-0.104 0,0 -3.55,-0.983 c \
0.228,-0.14 0.406,-0.361 0.482,-0.639 0.161,-0.582 -0.179,-1.183 -0.76,-1.344 \
-0.581,-0.161 -1.182,0.18 -1.343,0.76 -0.146,0.529 0.124,1.074 0.611,1.289 l \
-0.003,0.012 3.677,1.02 -0.274,3.066 -2.611,-0.723 c 0.227,-0.143 0.405,-0.363 \
0.482,-0.641 0.161,-0.58 -0.18,-1.183 -0.759,-1.342 -0.582,-0.162 -1.183,0.179 \
-1.344,0.758 -0.147,0.529 0.123,1.074 0.61,1.289 l -0.003,0.014 4.136,1.146 \
-0.002,0.021 0.712,0.191 z M 6.128,19.634 6.401,16.569 6.744,16.664 6.476,19.73 \
6.128,19.634 Z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5007-9"
+             d="m 19.604,16.718 c 0.573,-0.183 0.891,-0.796 0.707,-1.369 \
-0.183,-0.574 -0.797,-0.891 -1.371,-0.708 -0.521,0.165 -0.83,0.689 -0.744,1.217 l \
-0.012,0.003 1.16,3.637 -2.717,1.449 -0.824,-2.581 c 0.242,0.112 0.525,0.142 \
0.798,0.054 0.574,-0.184 0.892,-0.797 0.707,-1.371 -0.183,-0.574 -0.797,-0.892 \
-1.371,-0.708 -0.523,0.167 -0.832,0.69 -0.744,1.216 l -0.013,0.006 1.305,4.088 \
-0.019,0.011 0.23,0.698 3.352,-1.797 -0.127,-0.387 -1.121,-3.51 c 0.245,0.113 \
0.528,0.141 0.804,0.052 z m -0.09,3.309 -2.715,1.455 -0.109,-0.345 2.715,-1.45 \
0.109,0.34 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g5009-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5011-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5013-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5015-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5017-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5019-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5021-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5023-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5025-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5027-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5029-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5031-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5033-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5035-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5037-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5115-2"
+       transform="matrix(6.2348309,0,0,6.2348309,1077.3619,-107.52573)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5073-1"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g5075-7"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path5077-0"
+             d="m 4.326,17.248 1.609,0.877 0,0.523 -0.267,-0.145 0,0.145 \
-1.783,-0.972 -1.702,0.972 0,-0.152 -0.266,0.152 0,-0.523 1.66,-0.949 0,-5.72 L \
0,11.202 0.052,10.48 l 0.296,0.021 0,-5.793 3.014,0.229 0,-3.31 C 1.643,1.613 \
0.282,1.443 0.282,1.235 c 0,-0.208 1.361,-0.378 3.08,-0.392 l 0,-0.392 0.43,0 0,0.393 \
c 1.718,0.013 3.079,0.183 3.079,0.391 0,0.208 -1.361,0.378 -3.079,0.392 l 0,3.343 \
3.446,0.262 0,1.944 C 5.695,8.035 4.633,9.653 4.559,11.527 l -0.233,-0.017 0,5.738 z \
m 11.774,-5.795 -0.002,0 3.001,-0.251 -0.051,-0.721 -0.294,0.021 0,-5.794 \
-4.554,0.375 -0.076,0.053 -0.03,-0.044 -1.708,0.141 0,1.992 c 1.5,0.871 2.526,2.467 \
2.598,4.308 l 0.633,-0.045 0,5.5 -1.66,0.949 0,0.523 1.832,-1.048 1.92,1.048 0,-0.523 \
-1.609,-0.877 0,-5.607 z m -4.054,4.522 0.104,0 0,2.601 -0.71,0 0,-2.316 c \
-0.533,0.207 -1.112,0.321 -1.72,0.321 -0.565,0 -1.109,-0.1 -1.613,-0.28 l 0,2.275 \
-0.71,0 0,-2.599 C 5.937,15.161 4.948,13.602 4.948,11.811 4.948,9.176 7.085,7.04 \
9.719,7.04 c 2.636,0 4.772,2.135 4.772,4.771 0.002,1.789 -0.985,3.349 -2.445,4.164 z \
M 11.62,11.811 c 0,-1.048 -0.851,-1.9 -1.899,-1.9 -1.047,0 -1.899,0.852 -1.899,1.9 \
0,1.046 0.852,1.899 1.899,1.899 1.047,-0.001 1.899,-0.853 1.899,-1.899 z M \
19.099,4.219 19.029,3.791 15.175,4.42 18.594,2.095 18.35,1.736 14.158,4.585 \
13.693,4.661 13.763,5.089 14.06,5.041 14.093,5.091 14.2,5.083 14.325,4.998 \
19.099,4.219 Z" +             style="fill:#f8f9fa;fill-opacity:1"
+             inkscape:connector-curvature="0" />
+        </g>
+      </g>
+      <g
+         id="g5079-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5081-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5083-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5085-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5087-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5089-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5091-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5093-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5095-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5097-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5099-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5101-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5103-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5105-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5107-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5176-7"
+       transform="matrix(3.4356824,0,0,3.4356824,48.387076,-855.30435)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5136-9"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5138-5"
+           d="m 11.325,18.617 c 0,-0.778 -0.632,-1.41 -1.409,-1.41 -0.779,0 \
-1.411,0.632 -1.411,1.41 0,0.778 0.632,1.41 1.411,1.41 0.777,0 1.409,-0.631 \
1.409,-1.41 z m -1.12,0.899 c -0.399,0 -0.723,-0.324 -0.723,-0.725 0,-0.398 \
0.324,-0.723 0.723,-0.723 0.399,0 0.722,0.324 0.722,0.723 0,0.4 -0.323,0.725 \
-0.722,0.725 z m 5.546,-0.899 c 0,0.778 0.629,1.41 1.408,1.41 0.779,0 1.41,-0.632 \
1.41,-1.41 0,-0.778 -0.631,-1.41 -1.41,-1.41 -0.778,0 -1.408,0.632 -1.408,1.41 z m \
1.12,-0.549 c 0.399,0 0.723,0.324 0.723,0.723 -0.001,0.4 -0.324,0.725 -0.723,0.725 \
-0.399,0 -0.723,-0.324 -0.723,-0.725 0,-0.398 0.324,-0.723 0.723,-0.723 z m \
-6.449,4.121 6.091,0 c 0,0 -2.949,3.239 -6.091,0 z m 15.183,-10.964 0.002,-0.03 c \
0.014,-0.186 0.026,-0.373 0.026,-0.562 C 25.633,7.059 24.33,5.529 21.868,3.29 \
19.529,1.166 17.125,0 13.605,0 10.087,0 7.683,1.166 5.344,3.29 2.882,5.526 \
1.577,7.059 1.577,10.633 c 0,0.138 0.009,0.276 0.015,0.415 l 0.006,0.177 C \
0.969,11.26 0.465,11.749 0.465,12.359 l 0,7.611 c 0,0.636 0.532,1.151 1.193,1.151 l \
0.408,0 c 0.235,0.234 0.557,0.369 0.895,0.369 l 1.219,0 c 0.054,0 0.108,-0.007 \
0.161,-0.015 1.917,3.44 5.29,5.73 9.126,5.73 3.857,0 7.248,-2.313 9.16,-5.783 \
0.126,0.04 0.26,0.067 0.4,0.067 l 1.221,0 c 0.339,0 0.657,-0.132 0.887,-0.369 l \
0.413,0 c 0.659,0 1.192,-0.516 1.192,-1.151 l 0,-7.611 c 0,-0.609 -0.505,-1.102 \
-1.135,-1.133 z m -3.837,8.548 c -1.55,3.423 -4.684,5.765 -8.301,5.765 -3.418,0 \
-6.407,-2.093 -8.032,-5.214 0.001,-0.014 0.003,-0.026 0.003,-0.04 l 0,-5.372 1.917,0 \
4.23,-3.145 -1.693,3.174 c 0,0 7.212,1.499 11.876,0.299 0,0 0,4.533 0,4.533 z m \
1.827,-8.931 C 22.063,6.625 18.102,4.312 13.467,4.312 8.853,4.312 4.905,6.608 \
3.362,10.794 3.458,5.134 7.143,1.65 13.855,1.65 c 6.027,0 9.899,3.484 9.993,9.192 l \
-0.253,0 z" +           style="fill:#f8f9fa;fill-opacity:1"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g5140-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5142-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5144-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5146-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5148-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5150-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5152-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5154-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5156-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5158-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5160-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5162-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5164-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5166-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5168-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5238-2"
+       transform="matrix(0.24444308,0,0,0.23795256,55.410762,-548.7792)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5196-7"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g5198-2"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path5200-4"
+             d="m 377.6,125.398 c 8.051,-7.326 18.943,-9.081 27.078,-4.883 l \
1.56,-1.553 c 4.904,-12.028 13.757,-25.333 26.031,-37.604 12.283,-12.276 \
25.584,-21.135 37.606,-26.042 0,0 2.368,-2.369 5.298,-5.298 2.925,-2.93 1.154,-9.438 \
-3.96,-14.547 L 441.142,5.396 C 436.037,0.287 429.548,-1.51 426.66,1.381 l \
-5.238,5.236 c -4.889,12.062 -13.773,25.441 -26.116,37.784 -12.331,12.331 \
-25.708,21.219 -37.782,26.115 l -1.082,1.078 c 5.178,8.233 3.574,19.979 -4.168,28.487 \
l -80.781,80.303 c -3.494,-0.226 -9.117,-3.047 -16.635,-14.697 -13.442,-20.827 \
-44.812,-32.687 -70.648,12.13 -25.836,44.817 -4.408,52.227 -77.991,60.774 l \
0.016,0.024 c -25.982,1.429 -50.592,11.36 -69.375,30.136 -44.54,44.544 \
-39.464,121.843 11.34,172.657 50.806,50.806 128.113,55.879 172.654,11.328 \
0.797,-0.797 1.557,-1.639 2.324,-2.46 l 0.014,0.032 c 0,0 0.293,-0.316 0.775,-0.866 \
3.573,-3.903 6.777,-8.026 9.636,-12.343 11.461,-16.27 27.822,-45.524 24.159,-76.081 \
-5.538,-46.129 37.694,-44.021 55.619,-55.623 17.921,-11.598 24.249,-21.607 \
24.77,-33.218 0,0 -21.352,15.028 -40.855,-4.476 -15.677,-15.678 -8.708,-42.391 \
-1.947,-56.529 L 377.6,125.398 Z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g5202-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5204-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5206-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5208-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5210-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5212-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5214-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5216-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5218-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5220-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5222-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5224-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5226-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5228-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5230-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5297-1"
+       transform="matrix(0.56616695,0,0,0.56616695,635.13303,-375.33861)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <path
+         id="path5259-0"
+         d="M 201.572,15.411 187.627,1.464 c -1.823,-1.823 -4.732,-1.96 -6.72,-0.32 \
L 157.931,20.12 c -1.086,0.898 -1.743,2.211 -1.81,3.618 -0.067,1.407 0.462,2.776 \
1.459,3.773 l 0.964,0.964 L 102.8,84.219 96.111,77.53 c -3.932,-3.933 -9.165,-6.099 \
-14.734,-6.099 -5.109,0 -9.989,1.88 -13.743,5.295 -0.438,0.398 -0.868,0.809 \
-1.293,1.233 -2.641,2.642 -4.866,5.646 -6.614,8.929 -2.271,4.268 -6.495,6.979 \
-11.297,7.253 -13.375,0.765 -25.691,6.459 -34.68,16.035 -19.356,20.622 -17.987,54.623 \
3.052,75.794 10.829,10.898 25.614,17.148 40.565,17.148 0.002,0 0.002,0 0.003,0 \
13.992,0 27.013,-5.314 36.662,-14.962 8.861,-8.861 14.141,-20.784 14.867,-33.57 \
0.274,-4.845 2.852,-8.989 6.894,-11.087 3.856,-1.999 7.317,-4.638 10.288,-7.842 \
0.005,-0.006 0.122,-0.132 0.127,-0.139 7.485,-8.154 7.177,-20.714 -0.702,-28.593 l \
-6.687,-6.687 55.744,-55.744 0.962,0.962 c 0.94,0.941 2.212,1.465 3.535,1.465 0.079,0 \
0.159,-0.002 0.238,-0.006 1.407,-0.066 2.72,-0.724 3.617,-1.811 l 18.976,-22.976 c \
1.642,-1.986 1.504,-4.895 -0.319,-6.717 z M 91.436,127.605 c 0,4.275 -1.664,8.294 \
-4.688,11.317 -3.023,3.022 -7.042,4.688 -11.317,4.688 -4.275,0 -8.294,-1.665 \
-11.317,-4.688 -3.023,-3.023 -4.688,-7.041 -4.688,-11.316 0,-4.274 1.665,-8.294 \
4.688,-11.316 3.023,-3.023 7.042,-4.688 11.317,-4.688 4.275,0 8.294,1.664 \
11.317,4.687 3.023,3.022 4.688,7.042 4.688,11.316 z m -28.451,49.387 c -0.977,0.977 \
-2.256,1.465 -3.536,1.465 -1.28,0 -2.559,-0.488 -3.536,-1.465 L 26.044,147.123 c \
-1.953,-1.952 -1.953,-5.118 0,-7.07 1.953,-1.953 5.118,-1.953 7.071,0 l 29.869,29.869 \
c 1.953,1.952 1.953,5.118 10e-4,7.07 z" +         inkscape:connector-curvature="0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5261-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5263-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5265-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5267-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5269-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5271-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5273-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5275-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5277-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5279-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5281-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5283-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5285-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5287-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5289-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5362-6"
+       transform="matrix(0.31411496,0,0,0.31411496,299.89862,-474.11699)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5316-1"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g5318-9"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path5320-1"
+             d="m 62.743,155.437 0,98.42 c 0,5.867 4.741,10.605 10.605,10.605 \
5.854,0 10.605,-4.738 10.605,-10.605 l 0,-98.42 c 0,-5.856 -4.751,-10.605 \
-10.605,-10.605 -5.864,0 -10.605,4.744 -10.605,10.605 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5322-8"
+             d="m 29.456,264.582 23.351,0 0,-116.85 c 0.064,-0.56 0.166,-1.119 \
0.166,-1.693 0,-50.412 40.69,-91.42 90.698,-91.42 50.002,0 90.692,41.008 90.692,91.42 \
0,0.771 0.113,1.518 0.228,2.263 l 0,116.28 23.354,0 c 16.254,0 29.442,-13.64 \
29.442,-30.469 l 0,-60.936 c 0,-13.878 -8.989,-25.57 -21.261,-29.249 C 264.997,76.957 \
210.518,22.804 143.676,22.804 76.816,22.804 22.329,76.962 21.211,143.954 \
8.956,147.638 0,159.32 0,173.187 l 0,60.926 c 0,16.819 13.187,30.469 29.456,30.469 z" \
+             inkscape:connector-curvature="0" +             \
style="fill:#f8f9fa;fill-opacity:1" /> +          <path
+             id="path5324-6"
+             d="m 203.454,155.437 0,98.42 c 0,5.867 4.748,10.605 10.604,10.605 \
5.856,0 10.604,-4.738 10.604,-10.605 l 0,-98.42 c 0,-5.856 -4.748,-10.605 \
-10.604,-10.605 -5.867,0 -10.604,4.744 -10.604,10.605 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g5326-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5328-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5330-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5332-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5334-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5336-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5338-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5340-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5342-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5344-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5346-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5348-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5350-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5352-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5354-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5431-3"
+       transform="matrix(0.19359723,0,0,0.19359723,934.80148,517.05602)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5385-3"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5387-5"
+           d="M 235.554,0 C 109.784,0 3.532,102.367 3.532,223.536 c 0,68.314 \
33.927,149.905 86.43,207.865 l 1.484,1.639 2.164,-0.429 c 0.553,-0.1 12.578,-2.637 \
17.603,-11.834 12.317,10.095 23.253,11.085 34.757,6.961 5.115,9.843 7.103,20.559 \
-6.606,24.445 -12.906,3.675 -30.152,-1.094 -42.886,-3.025 -21.219,-3.222 \
-66.178,-4.156 -87.61,-3.358 -10.092,0.381 -10.128,16.082 0,15.701 25.874,-0.958 \
74.494,1.606 100.092,5.241 12.808,1.82 29.16,4.341 41.437,-1.623 21.209,-10.303 \
17.637,-27.875 9.105,-44.146 6.404,-3.907 13.235,-8.844 20.638,-14.15 -20.528,-9.017 \
-47.406,-49.355 -65.764,-84.528 -12.99,-24.902 -38.401,-77.676 -35.536,-104.35 \
-15.867,10.896 -28.212,20.386 -34.91,32.837 -1.854,-11.745 -2.852,-23.271 \
-2.852,-34.43 0,-96.018 100.557,-160.516 194.469,-160.516 116.331,0 194.46,83 \
194.46,160.516 0,11.093 -0.897,22.456 -2.625,33.953 -6.744,-12.219 -18.987,-21.612 \
-34.652,-32.36 2.869,26.674 -22.537,79.447 -35.533,104.35 -18.351,35.173 \
-45.236,75.52 -65.762,84.528 28.204,20.238 47.103,34.46 72.189,11.085 5.133,7.975 \
14.463,12.158 14.939,12.359 l 2.601,1.117 1.884,-2.115 C 434.407,371.526 \
467.576,290.776 467.576,223.527 467.575,102.357 361.322,0 235.554,0 Z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path5389-6"
+           d="m 93.646,209.917 c -0.99,0 -1.863,0.232 -2.673,0.589 -0.287,0.126 \
-0.601,0.218 -0.87,0.391 -11.407,7.468 3.939,55.427 31.244,107.756 24.917,47.752 \
53.217,82.208 66.652,82.208 0.25,0 0.475,-0.072 0.713,-0.092 0.988,-0.108 \
1.923,-0.353 2.725,-0.878 0.878,-0.581 1.569,-1.479 2.166,-2.528 0.03,-0.061 \
0.062,-0.145 0.092,-0.204 6.885,-12.788 -5.973,-57.491 -31.038,-105.532 \
-24.886,-47.697 -55.197,-81.718 -69.011,-81.71 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path5391-2"
+           d="m 350.25,318.652 c 27.303,-52.329 42.647,-100.296 31.242,-107.756 \
-0.269,-0.172 -0.585,-0.265 -0.874,-0.391 -0.806,-0.356 -1.679,-0.589 -2.669,-0.589 \
-13.806,0 -44.126,34.013 -69.012,81.709 -25.062,48.049 -37.926,92.756 -31.041,105.536 \
0.031,0.063 0.067,0.14 0.1,0.2 0.589,1.058 1.286,1.964 2.16,2.528 0.821,0.537 \
1.771,0.798 2.785,0.89 0.213,0.024 0.421,0.093 0.657,0.093 13.425,10e-4 41.73,-34.468 \
66.652,-82.22 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path5393-7"
+           d="m 247.696,93.629 c -8.111,-1.381 -14.741,4.59 -14.741,12.818 l \
0,84.997 c -4.795,-1.759 -9.959,-2.771 -15.371,-2.771 -24.697,0 -44.715,20.019 \
-44.715,44.721 0,24.693 20.018,44.711 44.715,44.711 18.098,0 33.662,-10.748 \
40.691,-26.205 3.414,-7.481 3.903,-20.99 3.936,-29.212 0.092,-26.299 0.092,-78.205 \
0.092,-78.205 57.771,0 54.309,34.622 47.545,54.505 -2.646,7.789 -1.07,9.091 \
4.496,3.032 70.498,-76.794 -27.663,-101.756 -66.648,-108.391 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5395-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5397-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5399-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5401-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5403-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5405-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5407-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5409-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5411-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5413-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5415-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5417-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5419-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5421-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5423-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5494-9"
+       transform="matrix(4.433531,0,0,4.4356219,963.38704,912.62945)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5454-0"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5456-9"
+           d="m 9.547,20.221 c 0.118,0.119 0.118,0.31 0,0.428 l -0.642,0.643 c \
-0.118,0.117 -0.311,0.117 -0.428,0 L 4.625,17.44 c -0.119,-0.119 -0.119,-0.311 \
0,-0.429 l 0.642,-0.642 c 0.118,-0.119 0.31,-0.119 0.428,0 l 3.852,3.852 z m \
16.37,-17.808 0,0.003 c 0,0.256 -0.098,0.511 -0.293,0.706 l -0.421,0.421 0.164,0.164 \
c 0.205,0.206 0.205,0.538 0,0.744 -0.102,0.102 -0.237,0.153 -0.372,0.153 -0.135,0 \
-0.269,-0.05 -0.372,-0.153 l -0.164,-0.164 -0.256,0.256 0.164,0.164 c 0.205,0.206 \
0.205,0.538 0,0.744 -0.102,0.102 -0.237,0.153 -0.372,0.153 -0.135,0 -0.269,-0.05 \
-0.372,-0.153 L 23.459,5.287 23.261,5.485 C 23.002,5.744 22.639,5.814 22.309,5.73 l \
-4.357,4.357 c 1.146,1.31 2.575,3.602 1.088,5.774 -1.014,1.483 -2.584,1.178 \
-3.474,2.103 -1.001,1.042 -0.2,3.903 -2.817,6.52 -0.985,0.985 -2.11,1.433 \
-3.301,1.433 -1.977,0 -4.136,-1.235 -6.134,-3.313 C -0.018,19.401 -1.184,15.784 \
1.433,13.168 4.05,10.55 6.909,11.351 7.95,10.35 8.877,9.46 8.592,7.91 10.074,6.897 c \
0.668,-0.457 1.347,-0.64 2.004,-0.64 1.479,0 2.849,0.921 3.752,1.71 L 20.188,3.609 C \
20.103,3.278 20.174,2.916 20.433,2.657 L 20.631,2.459 20.467,2.295 c -0.205,-0.206 \
-0.205,-0.538 0,-0.744 0.205,-0.205 0.539,-0.205 0.744,0 l 0.164,0.164 0.256,-0.256 \
-0.164,-0.164 c -0.205,-0.206 -0.205,-0.538 0,-0.744 0.205,-0.205 0.539,-0.205 \
0.744,0 l 0.164,0.164 0.421,-0.421 c 0.195,-0.195 0.451,-0.293 0.707,-0.293 l 0.003,0 \
c 0.256,0 0.511,0.098 0.705,0.293 l 1.414,1.414 c 0.194,0.194 0.292,0.449 0.292,0.705 \
z m -8.957,8.666 -3.359,3.359 c 0.007,0.073 0.022,0.144 0.022,0.219 0,1.306 \
-1.058,2.364 -2.364,2.364 -1.306,0 -2.364,-1.058 -2.364,-2.364 0,-1.306 1.058,-2.364 \
2.364,-2.364 0.076,0 0.148,0.015 0.223,0.022 l 3.356,-3.357 c -0.777,-0.662 \
-1.799,-1.302 -2.76,-1.302 -0.428,0 -0.825,0.129 -1.214,0.395 -0.454,0.31 \
-0.601,0.681 -0.841,1.363 -0.209,0.595 -0.47,1.336 -1.104,1.944 -0.7,0.674 \
-1.617,0.84 -2.588,1.016 -1.218,0.221 -2.598,0.471 -3.908,1.782 -0.697,0.699 \
-1.032,1.465 -1.023,2.346 0.015,1.51 1.039,3.319 2.884,5.091 0.014,0.013 0.026,0.026 \
0.039,0.04 1.788,1.86 3.608,2.884 5.125,2.884 0.867,0 1.623,-0.335 2.311,-1.023 \
1.31,-1.309 1.56,-2.691 1.782,-3.91 0.176,-0.971 0.342,-1.888 1.016,-2.589 \
0.614,-0.639 1.364,-0.895 1.966,-1.1 0.684,-0.233 1.056,-0.376 1.362,-0.823 \
0.941,-1.375 -0.058,-2.986 -0.925,-3.993 z m 4.692,-7.39 2,-2 c 0.117,-0.117 \
0.117,-0.307 0,-0.424 -0.117,-0.117 -0.307,-0.117 -0.424,0 l -2,2 c -0.117,0.117 \
-0.117,0.307 0,0.424 0.059,0.059 0.135,0.088 0.212,0.088 0.078,0 0.154,-0.029 \
0.212,-0.088 z m 3,-1.424 c -0.117,-0.117 -0.307,-0.117 -0.424,0 l -2,2 c \
-0.117,0.117 -0.117,0.307 0,0.424 0.059,0.059 0.135,0.088 0.212,0.088 0.077,0 \
0.153,-0.029 0.212,-0.088 l 2,-2 c 0.118,-0.117 0.117,-0.307 0,-0.424 z" +           \
style="fill:#f8f9fa;fill-opacity:1" +           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g5458-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5460-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5462-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5464-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5466-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5468-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5470-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5472-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5474-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5476-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5478-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5480-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5482-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5484-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5486-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5569-7"
+       transform="matrix(0.15690679,0,0,0.15690679,929.18118,-481.03294)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5514-9"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="Layer_2_25_-1"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path5517-3"
+             d="M 203.784,231.318 27.882,205.557 c 9.285,31.126 27.167,56.189 \
50.69,69.471 L 45.218,502.865 c -2.677,18.293 9.974,35.285 28.267,37.963 18.293,2.678 \
35.286,-9.974 37.963,-28.267 l 33.995,-232.168 c 22.414,-8.041 42.83,-25.446 \
58.341,-49.075 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5519-7"
+             d="M 147.719,0.824 C 110.674,-4.598 74.356,17.128 50.086,54.182 L \
225.95,79.935 C 213.337,37.477 184.764,6.246 147.719,0.824 Z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5521-8"
+             d="m 68.819,99.079 23.629,42.113 34.721,-33.574 23.601,42.113 \
34.702,-33.574 23.629,42.123 23.782,-22.988 c 0.354,-12.192 -0.392,-24.06 \
-2.266,-35.353 L 39.902,72.017 c -6.589,13.445 -11.676,28.334 -14.956,44.255 l \
9.18,16.381 34.693,-33.574 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5523-2"
+             d="m 213.949,213.475 c 7.201,-14.66 12.651,-31.031 15.864,-48.616 l \
-25.245,24.413 -23.629,-42.113 -34.721,33.583 -23.601,-42.113 -34.712,33.574 \
-23.629,-42.113 -34.702,33.583 -8.568,-15.291 c -0.498,12.843 0.249,25.331 \
2.237,37.179 l 190.706,27.914 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5525-4"
+             d="M 497.123,197.812 324.73,241.254 c 20.474,25.217 46.589,41.539 \
73.401,44.819 l 56.266,223.275 c 4.514,17.92 22.711,28.792 40.632,24.278 17.92,-4.513 \
28.792,-22.711 24.278,-40.631 l -57.336,-227.53 c 17.633,-16.007 29.854,-39.884 \
35.152,-67.653 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5527-1"
+             d="m 357.204,6.255 c -36.309,9.151 -61.562,43.108 -69.815,86.627 L \
459.743,49.449 C 431.849,15.043 393.513,-2.896 357.204,6.255 Z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5529-0"
+             d="m 302.622,171.496 19.23,-44.284 37.934,29.883 19.25,-44.303 \
37.905,29.892 19.24,-44.293 37.943,29.893 13.187,-30.333 C 482.98,86.553 \
477.758,75.871 471.706,66.146 L 284.797,113.25 c -0.947,14.946 0.038,30.647 \
3.098,46.607 l 14.727,11.639 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5531-4"
+             d="m 443.831,128.78 -19.239,44.303 -37.906,-29.893 -19.239,44.293 \
-37.935,-29.883 -19.23,44.293 -13.761,-10.854 c 4.457,12.049 9.917,23.313 \
16.275,33.507 l 186.899,-47.095 c 1.052,-16.304 -0.172,-33.507 -3.93,-50.987 l \
-14,32.207 -37.934,-29.891 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g5533-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5535-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5537-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5539-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5541-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5543-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5545-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5547-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5549-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5551-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5553-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5555-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5557-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5559-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5561-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5637-9"
+       transform="matrix(0.18323412,0,0,0.18323412,433.9358,-348.2253)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5597-2"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5599-9"
+           d="M 436.578,159.876 C 400.721,153.482 366.777,136.527 339.74,109.532 \
312.732,82.51 295.796,48.585 289.425,12.72 c 36.306,-22.745 88.937,-14.689 \
125.391,21.753 36.43,36.442 44.481,89.082 21.762,125.403 z m -25.053,25.058 c \
-34.438,-9.625 -66.721,-27.482 -93.226,-53.96 -26.476,-26.505 -44.337,-58.787 \
-53.914,-93.211 -22.714,36.321 -14.659,88.934 21.754,125.374 36.455,36.426 \
89.052,44.495 125.386,21.797 z M 267.331,346.338 c -45.294,0 -77.679,28.306 \
-106.255,53.271 -31.571,27.601 -58.936,51.533 -99.197,39.124 -7.966,-5.866 \
-8.202,-10.66 -8.291,-12.288 -0.564,-10.902 12.644,-25.529 19.131,-30.92 0.8,-0.653 \
1.255,-1.54 1.881,-2.338 10.631,3.701 22.845,1.563 31.362,-6.931 L 312.2,216.486 C \
295.142,209.245 278.887,198.763 264.718,184.575 250.526,170.389 240.075,154.116 \
232.846,137.09 L 63.093,343.347 c -7.552,7.551 -9.743,18.001 -7.685,27.713 \
-0.637,0.388 -1.349,0.564 -1.941,1.041 -3.244,2.665 -31.584,26.771 -30.177,55.762 \
0.504,10.193 4.947,24.908 23.352,37.229 l 3.629,1.773 c 11.803,3.939 22.803,5.656 \
33.141,5.656 40.335,0 70.424,-26.294 97.626,-50.077 26.934,-23.546 52.386,-45.784 \
86.294,-45.784 78.159,0 138.659,83.751 139.279,84.577 4.826,6.902 14.338,8.438 \
21.119,3.589 6.842,-4.831 8.438,-14.281 3.612,-21.114 -2.815,-3.972 -70.068,-97.374 \
-164.011,-97.374 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5601-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5603-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5605-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5607-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5609-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5611-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5613-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5615-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5617-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5619-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5621-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5623-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5625-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5627-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5629-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5697-2"
+       transform="matrix(0.36948474,0,0,0.36948474,923.9693,697.49339)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5657-8"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5659-7"
+           d="m 305.773,130.393 -80.411,0 -17.031,-33.767 c -2.076,-4.104 \
-6.519,-6.405 -11.086,-5.706 -4.541,0.701 -8.114,4.248 -8.854,8.782 l -7.612,46.877 \
-7.207,44.377 -5.608,-43.805 -12.407,-96.88 c -0.637,-4.948 -4.629,-8.779 \
-9.592,-9.215 -4.974,-0.388 -9.564,2.646 -11.05,7.402 l -31.682,101.582 -9.518,30.518 \
-4.847,-29.876 -7.161,-44.151 c -0.754,-4.629 -4.456,-8.215 -9.106,-8.818 \
-4.645,-0.567 -9.147,1.914 -11.05,6.204 l -17.663,39.667 -33.283,0 C 4.751,143.584 \
0,148.335 0,154.189 c 0,5.854 4.751,10.603 10.605,10.603 l 40.172,0 c 4.189,0 \
7.985,-2.465 9.686,-6.292 l 2.975,-6.674 3.029,-6.799 1.069,6.613 12.44,76.708 c \
0.784,4.857 4.81,8.528 9.719,8.881 4.909,0.3 9.406,-2.724 10.875,-7.415 l \
25.191,-80.779 14.934,-47.869 6.007,46.937 15.107,117.994 c 0.668,5.22 5.072,9.165 \
10.338,9.258 0.058,0 0.119,0 0.182,0 5.188,0 9.631,-3.764 10.47,-8.911 l \
19.62,-120.834 1.673,-10.286 5.033,9.991 0.228,0.456 c 1.802,3.578 5.468,5.833 \
9.476,5.833 l 86.946,0 c 5.856,0 10.604,-4.751 10.604,-10.605 -0.001,-5.855 \
-4.749,-10.606 -10.606,-10.606 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5661-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5663-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5665-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5667-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5669-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5671-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5673-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5675-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5677-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5679-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5681-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5683-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5685-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5687-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5689-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5757-1"
+       transform="matrix(0.17588248,0,0,0.17588248,1131.7423,103.56687)"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibil \
ity:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;co \
lor-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;f \
ill-opacity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-lin \
ejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opaci \
ty:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate">
 +      <g
+         id="g5717-9"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate">
 +        <path
+           id="path5719-4"
+           d="m 331.895,421.526 0,-184.182 108.475,-17.588 C 423.093,128.184 \
342.73,58.906 246.136,58.906 c -109.201,0 -197.721,88.52 -197.721,197.721 0,109.202 \
88.52,197.722 197.721,197.722 10.592,0 20.978,-0.857 31.115,-2.459 7.938,-13.176 \
22.177,-23.75 40.258,-28.271 4.776,-1.182 9.599,-1.892 14.386,-2.093 z m \
-49.432,-346.483 -21.184,92.811 -21.185,0 -15.132,-92.811 c 22.197,-11.101 57.501,0 \
57.501,0 z m -36.327,254.99 c -40.542,0 -73.406,-32.864 -73.406,-73.406 0,-40.542 \
32.864,-73.405 73.406,-73.405 40.542,0 73.406,32.864 73.406,73.405 0,40.542 \
-32.864,73.406 -73.406,73.406 z m 0,-129.375 c -30.869,0 -55.969,25.1 -55.969,55.969 \
0,30.866 25.1,55.97 55.969,55.97 30.867,0 55.969,-25.104 55.969,-55.97 0,-30.869 \
-25.103,-55.969 -55.969,-55.969 z m 0,95.949 c -22.044,0 -39.977,-17.933 \
-39.977,-39.98 0,-22.044 17.939,-39.977 39.977,-39.977 22.047,0 39.968,17.933 \
39.968,39.977 0,22.048 -17.921,39.98 -39.968,39.98 z m 25.322,189.394 c 0.958,5.308 \
3.062,10.249 6.1,14.688 -10.296,1.318 -20.77,2.075 -31.415,2.075 C 110.419,502.764 \
0,392.345 0,256.627 0,120.91 110.419,10.491 246.136,10.491 c 120.473,0 220.945,87.036 \
242.01,201.516 l -23.896,3.88 C 445.057,112.913 354.586,34.702 246.136,34.702 c \
-122.371,0 -221.925,99.555 -221.925,221.925 0,122.371 99.555,221.926 221.925,221.926 \
8.195,0 16.279,-0.479 24.246,-1.348 0.071,2.92 0.39,5.857 1.076,8.796 z m \
241.797,-260.722 0,213.405 c 0,17.674 -13.175,31.771 -33.727,36.96 -22.562,5.592 \
-44.343,-3.854 -48.67,-21.148 -4.326,-17.324 10.45,-35.902 33.006,-41.547 \
10.196,-2.518 20.227,-2.004 28.626,0.952 l 0,-128.565 -115.371,21.084 -0.532,159.944 \
-0.023,0 c -0.101,15.15 -13.761,30.016 -33.408,34.88 -22.283,5.609 -45.643,-5.001 \
-48.148,-20.877 -4.285,-17.129 10.32,-35.518 32.663,-41.115 10.054,-2.5 19.878,-1.997 \
28.135,0.893 l 0,-189.328 157.449,-25.538 z" +           \
inkscape:connector-curvature="0" +           \
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visi \
ble;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation- \
filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opacity:1;fill \
-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:miter;stroke \
-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-renderi \
ng:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      </g>
+      <g
+         id="g5721-4"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5723-0"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5725-2"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5727-8"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5729-5"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5731-0"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5733-5"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5735-4"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5737-4"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5739-3"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5741-8"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5743-4"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5745-3"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5747-8"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5749-9"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +    </g>
+    <g
+       id="g5817-4"
+       transform="matrix(4.9714025,0,0,4.9714025,141.60803,-368.93232)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5777-6"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5779-7"
+           d="m 14.448,19.329 c -0.147,-0.104 -0.286,-0.198 -0.401,-0.273 l \
-0.058,-0.038 -0.048,-0.05 c -0.078,-0.081 -0.462,-0.516 -0.396,-1.095 0.028,-0.257 \
0.158,-0.628 0.615,-0.931 l 0.093,-0.062 0.108,-0.024 c 0.099,-0.022 0.206,-0.033 \
0.318,-0.033 0.473,0 1.042,0.209 1.552,0.457 0.056,-0.089 0.109,-0.18 0.162,-0.271 \
-0.051,-0.058 -0.104,-0.116 -0.161,-0.176 -0.284,-0.294 -0.556,-0.567 -0.83,-0.842 \
-0.643,-0.646 -1.308,-1.314 -2.157,-2.29 l -0.041,-0.052 c -0.452,-0.654 \
-0.315,-1.142 -0.193,-1.374 0.208,-0.396 0.669,-0.639 1.175,-0.621 -0.288,-0.399 \
-0.38,-0.671 -0.333,-0.912 -10e-4,-0.297 0.107,-0.583 0.314,-0.817 0.26,-0.296 \
0.656,-0.48 1.032,-0.48 0.273,0 0.521,0.098 0.697,0.276 0.083,0.084 0.325,0.312 \
0.657,0.62 0,-0.035 0.003,-0.068 0.009,-0.104 C 16.603,9.929 16.731,9.659 \
16.916,9.454 15.633,6.28 12.523,4.039 8.89,4.039 c -4.781,0 -8.656,3.875 -8.656,8.656 \
0,4.781 3.875,8.657 8.656,8.657 2.115,0 4.054,-0.761 5.558,-2.023 z M 9.059,4.643 l \
0.001,0 c 2.084,-0.188 3.562,0.934 3.562,0.934 L 10.639,9.13 C 10.154,8.755 \
9.059,8.719 9.059,8.719 c 0,0 0,-4.076 0,-4.076 z m -3.458,8.052 c 0,-1.906 \
1.552,-3.457 3.459,-3.457 1.906,0 3.458,1.551 3.458,3.457 0,1.907 -1.552,3.458 \
-3.458,3.458 -1.907,0 -3.459,-1.551 -3.459,-3.458 z M 16.676,8.62 C 16.67,8.608 \
16.667,8.596 16.663,8.586 c 0.004,0.008 0.008,0.014 0.014,0.024 0,0.002 -0.001,0.007 \
-0.001,0.01 z m -4.525,4.075 c 0,-1.704 -1.386,-3.092 -3.091,-3.092 -1.706,0 \
-3.092,1.388 -3.092,3.092 0,1.705 1.387,3.091 3.092,3.091 1.705,0 3.091,-1.386 \
3.091,-3.091 z m -4.629,0 c 0,-0.848 0.689,-1.535 1.538,-1.535 0.849,0 1.536,0.688 \
1.536,1.535 0,0.85 -0.687,1.537 -1.536,1.537 -0.849,0 -1.538,-0.687 -1.538,-1.537 z m \
14.486,9.198 c 0,0 0.136,-0.453 -0.677,-0.573 0,0 -1.949,-0.029 -3.414,-0.51 \
-0.433,-0.209 -1.5,-0.489 -1.883,-0.969 -0.383,-0.48 -1.577,-1.256 -1.577,-1.256 0,0 \
-0.607,-0.635 0.118,-1.116 0.854,-0.188 2.693,1.094 2.693,1.094 0,0 0.785,0.06 \
0.593,-0.471 0,0 -0.231,-0.727 -1.115,-1.644 -0.95,-0.985 -1.77,-1.736 -2.966,-3.11 \
-0.685,-0.991 0.523,-1.255 0.853,-0.917 0.114,-0.048 3.556,3.218 3.803,2.936 \
0.166,-0.19 -4.152,-4.039 -3.896,-4.508 -0.078,-0.601 0.733,-0.963 1.016,-0.678 \
0.319,0.323 4.76,4.433 4.647,4.015 -0.133,-0.494 -3.007,-3.53 -2.965,-3.838 \
0.088,-0.662 0.764,-0.922 1.184,-0.367 0.101,0.133 3.306,4.222 3.402,3.802 \
0.113,-0.495 -1.093,-1.711 -1.61,-2.835 -0.301,-0.654 0.567,-0.775 0.877,-0.284 \
0.544,0.866 2.594,3.646 2.695,3.846 0,0 1.096,1.747 1.761,4.26 l 0.227,0.805 \
-3.766,2.318 z M 1.97,4.797 C 2.011,4.711 2.999,2.688 5.314,2.688 l 0,0.513 c \
-1.986,0 -2.845,1.743 -2.882,1.817 L 1.97,4.797 Z M 0.463,4.192 0,3.972 C 0.017,3.938 \
1.648,0.596 5.354,0.596 l 0,0.512 c -3.376,0 -4.876,3.053 -4.891,3.084 z M \
12.57,21.64 12.934,22 c -0.068,0.068 -1.666,1.653 -3.853,0.892 L 9.25,22.408 c \
1.875,0.654 3.261,-0.71 3.32,-0.768 z m 1.588,1.427 0.364,0.36 c -0.026,0.026 \
-2.666,2.646 -6.165,1.428 l 0.168,-0.483 c 3.187,1.11 5.609,-1.28 5.633,-1.305 z" +   \
style="fill:#f8f9fa;fill-opacity:1" +           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g5781-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5783-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5785-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5787-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5789-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5791-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5793-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5795-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5797-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5799-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5801-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5803-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5805-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5807-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5809-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5883-4"
+       transform="matrix(0.29461745,0,0,0.29461745,1131.9348,530.70482)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5837-0"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g5839-6"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path5841-6"
+             d="M 133.652,0.59 C 59.838,0.59 0,60.426 0,134.24 c 0,73.817 \
59.838,133.655 133.652,133.655 1.129,0 2.245,-0.062 3.368,-0.088 l -9.603,-10.89 c \
-0.339,-0.538 -8.091,-13.37 9.018,-27.563 12.148,-10.081 29.544,-1.107 38.932,5.22 l \
0,-63.727 c -10.18,11.589 -25.07,18.941 -41.715,18.941 -30.681,0 -55.554,-24.876 \
-55.554,-55.554 0,-30.678 24.873,-55.553 55.554,-55.553 28.796,0 52.46,21.906 \
55.267,49.961 2.138,-0.764 4.406,-1.258 6.804,-1.258 4.691,0 8.958,1.66 12.401,4.332 \
l 0,-7.369 c 0,-11.226 9.129,-20.355 20.355,-20.355 10.604,0 19.231,8.164 \
20.174,18.525 3.479,-2.763 7.813,-4.484 12.583,-4.484 1.791,0 3.49,0.3 5.146,0.735 C \
258.714,52.245 202.236,0.59 133.652,0.59 Z m 0,59.896 c -40.669,0 -73.754,33.085 \
-73.754,73.754 0,2.928 -2.377,5.302 -5.303,5.302 -2.928,0 -5.302,-2.374 -5.302,-5.302 \
0,-46.518 37.842,-84.359 84.359,-84.359 2.928,0 5.302,2.374 5.302,5.302 0.001,2.926 \
-2.373,5.303 -5.302,5.303 z m 0,-30.336 c -57.392,0 -104.085,46.693 -104.085,104.085 \
0,2.929 -2.376,5.303 -5.302,5.303 -2.928,0 -5.303,-2.374 -5.303,-5.303 0,-63.24 \
51.45,-114.69 114.69,-114.69 2.928,0 5.302,2.375 5.302,5.303 0,2.928 -2.373,5.302 \
-5.302,5.302 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5843-7"
+             d="m 115.216,134.24 c 0,10.165 8.272,18.436 18.437,18.436 10.165,0 \
18.437,-8.271 18.437,-18.436 0,-10.165 -8.272,-18.437 -18.437,-18.437 -10.165,0 \
-18.437,8.273 -18.437,18.437 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5845-0"
+             d="m 273.643,166.466 0,-28.078 c 0,-4.699 -2.651,-8.738 -6.503,-10.849 \
-1.761,-0.96 -3.75,-1.561 -5.894,-1.561 -6.845,0 -12.406,5.564 -12.406,12.404 l \
0,61.597 -3.977,0 -3.978,0 0,-61.591 0,-14.041 c 0,-6.84 -5.561,-12.401 \
-12.396,-12.401 -6.845,0 -12.406,5.562 -12.406,12.401 l 0,23.4 0,52.231 0,0 -7.954,0 \
0,-52.237 c 0,-6.84 -5.561,-12.404 -12.401,-12.404 -2.459,0 -4.748,0.743 -6.675,1.983 \
-3.438,2.206 -5.731,6.046 -5.731,10.427 l 0,11.268 0,92.17 -6.576,-5.659 c \
-0.233,-0.197 -23.563,-19.724 -35.235,-10.051 -10.721,8.891 -8.076,15.768 \
-7.464,17.01 l 13.005,14.737 34.08,38.593 125.274,0 0,-139.349 c 0,-6.846 \
-5.562,-12.407 -12.402,-12.407 -6.84,0 -12.406,5.562 -12.406,12.407 l 0,33.513 \
-7.954,0 0,0 0,-33.513 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g5847-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5849-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5851-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5853-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5855-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5857-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5859-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5861-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5863-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5865-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5867-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5869-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5871-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5873-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5875-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5946-1"
+       transform="matrix(3.5347252,0,0,3.5347252,210.24983,-836.9761)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5906-5"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5908-9"
+           d="m 23.009,16.306 c -0.682,-0.917 -1.551,-1.609 -2.516,-2.105 \
-0.486,-0.246 -0.996,-0.449 -1.575,-0.576 -0.226,-0.049 -0.44,-0.076 -0.647,-0.09 L \
18.21,10.802 c 0,-0.071 0,-0.143 0,-0.213 0.083,-0.052 0.167,-0.104 0.249,-0.156 \
0.83,-0.529 1.619,-1.078 2.396,-1.736 C 21.624,8.038 22.394,7.291 22.974,6.233 \
23.544,5.16 23.786,3.889 23.418,2.564 23.07,1.258 21.814,0.041 20.257,0.003 \
19.493,-0.028 18.726,0.254 18.171,0.702 17.888,0.925 17.656,1.177 17.466,1.45 c \
-0.138,0.205 -0.257,0.338 -0.41,0.601 -0.635,1.021 -0.929,2.054 -1.072,3.092 \
-0.137,1.024 -0.14,2.002 -0.098,2.94 l 0.021,0.532 c -1.22,0.686 -2.512,1.395 \
-3.745,2.259 -0.807,0.562 -1.608,1.19 -2.342,1.971 -0.73,0.772 -1.398,1.727 \
-1.78,2.853 -0.382,1.129 -0.464,2.333 -0.235,3.483 0.186,1.045 0.605,2.129 \
1.216,3.068 1.228,1.926 3.274,3.161 5.348,3.637 0.691,0.148 1.392,0.236 2.097,0.252 l \
0.037,1.233 c 0.002,0.042 0.004,0.089 0.01,0.132 0.014,0.104 0.027,0.299 0.027,0.448 \
0.001,0.161 -0.005,0.321 -0.021,0.476 -0.03,0.309 -0.1,0.59 -0.197,0.797 -0.101,0.209 \
-0.208,0.314 -0.332,0.39 -0.066,0.033 -0.148,0.061 -0.246,0.08 -0.053,0.005 \
-0.103,0.018 -0.166,0.018 -0.007,0 -0.061,0.002 -0.063,0.002 l -0.128,-0.007 \
-0.143,-0.01 -0.069,-0.018 c -0.042,-0.006 -0.096,-0.018 -0.164,-0.037 -0.124,-0.029 \
-0.246,-0.077 -0.354,-0.135 -0.22,-0.108 -0.397,-0.262 -0.498,-0.41 -0.102,-0.151 \
-0.14,-0.291 -0.132,-0.463 0.005,-0.086 0.015,-0.182 0.059,-0.287 0.025,-0.104 \
0.098,-0.219 0.149,-0.334 l 0.071,-0.157 c 0.233,-0.523 0.013,-1.144 -0.506,-1.397 \
-0.532,-0.262 -1.173,-0.043 -1.435,0.488 -0.119,0.241 -0.244,0.47 -0.322,0.75 \
-0.091,0.261 -0.143,0.564 -0.15,0.869 -0.025,0.613 0.181,1.269 0.538,1.755 \
0.354,0.493 0.82,0.84 1.306,1.073 0.244,0.119 0.496,0.209 0.753,0.271 0.208,0.065 \
0.645,0.118 0.789,0.118 l 0.148,0.008 c 0.158,0.004 0.162,-0.003 0.251,-0.004 \
0.135,-0.002 0.281,-0.023 0.423,-0.044 0.288,-0.053 0.587,-0.145 0.87,-0.293 \
0.574,-0.303 1.001,-0.824 1.237,-1.327 0.239,-0.508 0.342,-1.005 0.393,-1.48 \
0.025,-0.236 0.035,-0.473 0.035,-0.702 -0.004,-0.222 -0.01,-0.406 -0.037,-0.651 l \
-0.033,-1.333 c 0.722,-0.146 1.433,-0.378 2.121,-0.711 0.504,-0.251 0.996,-0.562 \
1.439,-0.967 0.432,-0.375 0.899,-0.979 1.131,-1.439 0.492,-0.947 0.87,-2.05 \
0.857,-3.242 0.005,-1.19 -0.422,-2.383 -1.105,-3.292 z M 18.304,5.484 c 0.115,-0.78 \
0.391,-1.537 0.74,-2.07 0.074,-0.138 0.262,-0.353 0.385,-0.526 0.074,-0.102 \
0.164,-0.186 0.246,-0.242 0.168,-0.118 0.321,-0.155 0.479,-0.142 0.312,0.025 \
0.664,0.306 0.771,0.775 0.118,0.456 0.014,1.133 -0.306,1.658 -0.485,0.821 \
-1.419,1.607 -2.453,2.311 0.011,-0.617 0.048,-1.211 0.138,-1.764 z m -3.252,17.598 c \
-1.486,-0.377 -2.792,-1.221 -3.536,-2.432 -0.375,-0.608 -0.639,-1.271 -0.763,-2.037 \
-0.112,-0.654 -0.086,-1.347 0.123,-1.956 0.397,-1.249 1.586,-2.395 2.978,-3.373 \
0.689,-0.488 1.419,-0.936 2.175,-1.386 l 0.062,1.893 c -0.693,0.199 -1.353,0.506 \
-1.972,0.924 -0.461,0.325 -0.899,0.731 -1.247,1.253 -0.175,0.27 -0.316,0.518 \
-0.438,0.909 -0.027,0.088 -0.061,0.195 -0.076,0.264 l -0.029,0.17 -0.041,0.255 \
-0.013,0.245 c -0.041,0.662 0.192,1.393 0.591,1.94 0.423,0.548 0.875,0.921 1.515,1.22 \
0.036,0.02 0.08,0.035 0.119,0.05 0.565,0.188 1.176,-0.119 1.363,-0.687 0.188,-0.566 \
-0.119,-1.176 -0.685,-1.363 l -0.01,-0.002 c -1.172,-0.39 -1.101,-1.699 0.156,-2.479 \
0.257,-0.161 0.542,-0.301 0.842,-0.412 l 0.009,0.273 0.208,6.953 C 15.93,23.269 \
15.482,23.196 15.052,23.082 Z m 6.552,-3.501 c -0.012,0.655 -0.256,1.345 -0.631,2.009 \
-0.209,0.344 -0.334,0.459 -0.595,0.69 -0.239,0.208 -0.54,0.385 -0.862,0.529 \
-0.319,0.145 -0.662,0.258 -1.019,0.341 l -0.169,-6.836 -0.01,-0.483 c 0.028,0.007 \
0.062,0.014 0.088,0.023 0.317,0.08 0.667,0.227 0.994,0.407 1.339,0.738 2.281,2.027 \
2.204,3.32 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5910-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5912-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5914-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5916-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5918-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5920-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5922-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5924-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5926-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5928-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5930-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5932-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5934-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5936-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5938-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6006-1"
+       transform="matrix(0.80746959,0,0,0.80746959,1130.7036,-455.52534)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5966-4"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5968-0"
+           d="m 125.099,110.146 c 0.447,-0.322 1.036,-0.36 1.524,-0.107 0.488,0.256 \
0.789,0.762 0.78,1.312 l -0.179,12.302 -21.163,15.189 -43.99,-12.568 0,-11.52 c \
0,-0.83 0.39,-1.612 1.054,-2.114 0.666,-0.5 1.525,-0.662 2.324,-0.434 l 38.706,11.057 \
c 1.205,0.342 2.496,0.123 3.513,-0.609 l 17.431,-12.508 z m 5.391,19.617 c 0,-0.915 \
-0.511,-1.748 -1.318,-2.165 -0.814,-0.415 -1.791,-0.34 -2.532,0.189 L 106.065,142.575 \
61.72,129.596 c -0.972,-0.285 -2.02,-0.096 -2.831,0.514 -0.811,0.606 -1.288,1.56 \
-1.288,2.575 l 0,2.603 48.464,13.903 24.381,-17.259 0.048,-0.536 0,-1.633 -0.004,0 z \
M 113.299,94.537 c 2.514,0.78 4.754,2.167 6.745,3.926 0.331,-4.602 0.864,-11.91 \
1.229,-15.92 0.603,-6.578 -2.669,-10.568 -4.749,-12.41 -0.114,0.768 -0.287,1.565 \
-0.584,2.394 -0.716,2.015 -1.605,3.527 -2.582,4.678 0.632,1.118 1.122,2.646 \
0.936,4.704 -0.29,3.154 -0.682,8.311 -0.995,12.628 z M 102.82,77.1 c 3.963,0.301 \
7.638,0.381 9.815,-5.754 2.519,-7.079 -5.217,-10.438 -5.217,-10.438 -6.528,-2.401 \
-11.047,-7.119 -13.424,-10.142 -0.44,4.136 -1.134,8.325 -2.144,12.513 -1.243,5.16 \
-2.882,10.05 -4.818,14.646 5.291,-1.356 12.485,-1.076 15.788,-0.825 z m \
-31.294,23.644 c 0.49,-5.396 11.903,-8.769 25.494,-7.537 13.588,1.234 24.208,6.602 \
23.721,11.998 -0.493,5.397 -11.905,8.769 -25.493,7.539 -13.587,-1.235 -24.213,-6.604 \
-23.722,-12 z m 18.867,1.713 c -0.114,1.259 2.363,2.509 5.534,2.796 3.173,0.288 \
5.835,-0.499 5.948,-1.759 0.114,-1.259 -2.362,-2.509 -5.533,-2.796 -3.177,-0.288 \
-5.835,0.499 -5.949,1.759 z m 5.712,0.864 c 0.468,0.043 0.859,-0.073 0.88,-0.26 \
0.019,-0.188 -0.351,-0.372 -0.823,-0.415 -0.472,-0.044 -0.864,0.072 -0.88,0.26 \
-0.017,0.186 0.353,0.372 0.823,0.415 z m 29.248,2.007 c 0.342,-0.267 0.488,-0.718 \
0.364,-1.136 -0.123,-0.417 -0.485,-0.719 -0.924,-0.757 l -1.938,-0.188 c 0.178,0.703 \
0.278,1.421 0.212,2.174 -0.068,0.753 -0.267,1.477 -0.584,2.16 l 2.87,-2.253 z m \
-59.4,-0.666 c -0.736,0.557 -1.093,1.485 -0.927,2.389 0.165,0.905 0.829,1.645 \
1.714,1.902 l 34.61,10.215 c 2.883,0.851 5.999,0.253 8.367,-1.602 l 5.721,-4.479 c \
-3.777,1.435 -8.782,2.239 -14.665,2.239 -1.882,0 -3.812,-0.089 -5.734,-0.26 C \
82.894,113.96 70.387,109.127 69.27,102.139 l -3.317,2.523 z M 86.175,61.915 C \
93.338,32.199 84.601,4.599 66.66,0.273 66.358,0.2 66.055,0.133 65.753,0.077 \
64.357,-0.195 62.919,0.268 61.94,1.3 c -0.976,1.035 -1.355,2.497 -1.007,3.878 \
2.113,8.365 7.108,21.992 18.196,29.807 1.052,0.743 1.309,2.2 0.561,3.259 -0.451,0.642 \
-1.177,0.99 -1.911,0.99 -0.463,0 -0.932,-0.137 -1.34,-0.426 C 64.437,30.348 \
58.978,16.306 56.596,7.213 56.148,5.501 54.918,4.099 53.279,3.434 51.639,2.768 \
49.78,2.908 48.264,3.822 c -3.673,2.207 -7.223,5.251 -10.517,8.993 -1.784,2.015 \
-1.873,5.007 -0.221,7.14 4.928,6.364 13.54,15.045 26.266,19.556 1.217,0.432 \
1.852,1.766 1.42,2.981 -0.339,0.955 -1.241,1.558 -2.2,1.558 -0.26,0 -0.523,-0.048 \
-0.78,-0.138 C 50.212,39.653 41.674,32.137 36.16,25.736 c -1.019,-1.182 -2.559,-1.779 \
-4.107,-1.598 -1.547,0.183 -2.907,1.119 -3.622,2.507 -3.027,5.86 -5.512,12.464 \
-7.234,19.6 -0.464,1.931 0.596,3.894 2.464,4.563 5.459,1.958 16.01,4.602 32.771,4.334 \
1.367,-0.017 2.353,1.008 2.374,2.296 0.022,1.289 -1.009,2.352 -2.298,2.375 \
-0.83,0.012 -1.649,0.019 -2.448,0.019 -14.046,0 -23.683,-1.972 -29.667,-3.836 \
-1.204,-0.376 -2.512,-0.185 -3.558,0.521 -1.049,0.7 -1.719,1.841 -1.827,3.092 \
-0.698,8.077 -0.205,15.721 1.323,22.467 0.292,1.291 1.179,2.362 2.389,2.888 \
1.209,0.531 2.602,0.454 3.747,-0.208 5.958,-3.438 14.953,-7.356 27.651,-9.87 \
1.273,-0.252 2.494,0.575 2.744,1.839 0.25,1.266 -0.573,2.493 -1.838,2.748 \
-12.707,2.512 -21.482,6.524 -27.016,9.836 -1.249,0.744 -2.142,1.969 -2.471,3.386 \
-0.331,1.414 -0.074,2.908 0.712,4.136 2.369,3.668 5.247,6.605 8.572,8.61 1.222,0.734 \
2.686,0.956 4.074,0.611 1.385,-0.342 2.574,-1.227 3.308,-2.454 3.087,-5.162 \
8.269,-11.255 16.904,-16.182 1.124,-0.637 2.547,-0.244 3.187,0.873 0.64,1.118 \
0.25,2.544 -0.871,3.185 -6.499,3.704 -10.817,8.148 -13.669,12.186 -0.649,0.922 \
-0.664,2.138 -0.04,3.07 0.624,0.932 1.756,1.387 2.855,1.136 15,-3.389 29.732,-21.596 \
35.606,-45.951 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5970-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5972-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5974-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5976-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5978-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5980-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5982-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5984-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5986-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5988-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5990-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5992-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5994-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5996-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5998-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6065-7"
+       transform="matrix(0.31209008,0,0,0.31209008,866.09279,-652.94365)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="Track__x2F__Note_2-4"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6027-6"
+           d="M 134.238,17.899 C 112.854,24.368 116.34,44.747 116.34,44.747 l \
0,165.025 c -6.717,-2.501 -14.308,-3.939 -22.373,-3.939 -27.184,0 -49.221,16.027 \
-49.221,35.797 0,19.77 22.037,35.797 49.221,35.797 27.184,0 49.221,-16.026 \
49.221,-35.797 l 0,0 0,0 0,-152.137 63.569,-12.19 c 0,0 0.672,-0.158 1.627,-0.414 \
5.54,-1.518 24.296,-8.231 24.296,-30.082 L 232.68,0 134.238,17.899 Z" +           \
style="clip-rule:evenodd;fill:#f8f9fa;fill-opacity:1;fill-rule:evenodd" +           \
inkscape:connector-curvature="0" /> +      </g>
+      <g
+         id="g6029-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6031-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6033-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6035-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6037-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6039-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6041-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6043-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6045-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6047-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6049-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6051-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6053-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6055-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6057-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6125-2"
+       transform="matrix(5.2395095,0,0,5.2395095,926.46475,63.384818)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6085-3"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6087-3"
+           d="m 16.681,13.4 c -0.7,-0.8 -1.7,-1.3 -2.9,-1.2 -0.1,-0.2 -0.5,-2.2 \
-0.5,-2.2 0,0 1.4,-2.1 1.7,-2.5 1.5,-2.4 1.6,-4.3 0.7,-6.2 -0.3,-0.7 -1.1,-1.3 \
-1.9,-1.3 -0.6,0 -1.1,0.5 -1.4,1.1 -1,1.7 -1,4.9 -0.5,7.1 0,0 -0.5,0.5 -1,1.1 -1,1.1 \
-2.1,2.3 -2.5,3.9 -0.5,1.8 -0.1,3.5 1,4.8 1.2,1.5 3,2.2 5.2,2 0.4,1.9 0.7,3.1 0.1,4.2 \
-0.2,0.4 -0.6,0.8 -1.3,0.8 -0.2,0 -0.3,0 -0.5,-0.1 0.6,-0.3 1.1,-0.9 1.1,-1.6 0,-1 \
-0.8,-1.8 -1.8,-1.8 -1.7,0.1 -1.8,1.8 -1.8,1.8 0,0.6 0.2,1.2 0.6,1.6 0.5,0.5 1.3,0.9 \
2.2,0.9 1.1,0 2.2,-0.4 2.6,-2 0.4,-1.3 -0.3,-3.4 -0.4,-4.1 1.1,-0.5 2.1,-2 2.2,-3 \
0.2,-1.1 -0.2,-2.4 -0.9,-3.3 z m -3.2,-11.1 c 0.1,-0.2 0.3,-0.3 0.5,-0.3 0.1,0 \
0.3,0.1 0.4,0.2 0.4,0.2 0.5,0.6 0.5,1.2 -0.1,1.5 -1.4,3.3 -2.1,3.9 -0.3,-1.4 -0.1,-4 \
0.7,-5 z m -2.9,15.7 c -0.7,-0.7 -1,-1.7 -0.9,-2.7 0.2,-1.6 1.3,-2.9 2.2,-3.9 \
0.2,-0.2 0.4,-0.4 0.5,-0.6 0.1,0.5 0.4,1.3 0.5,1.7 -1.2,0.5 -1.9,2.1 -1.8,3.4 0,0.6 \
0.2,1 0.5,1.4 0.1,0.1 0.2,0.2 0.3,0.2 0.1,0 0.3,-0.1 0.3,-0.2 l 0,0 c 0.1,-0.1 \
0.1,-0.3 0,-0.4 -0.1,-0.1 -0.1,-0.2 -0.1,-0.4 -0.1,-0.9 0.5,-1.6 1.2,-1.9 0.1,0.6 \
0.8,3.7 0.9,4.4 -1.3,0.4 -2.7,0 -3.6,-1 z m 4.5,0.6 c -0.2,-0.7 -0.3,-1.5 -0.5,-2.4 \
-0.1,-0.6 -0.2,-1.3 -0.4,-1.9 1.3,0 1.7,1.1 1.8,1.5 0.3,1.1 0,2.2 -0.9,2.8 z" +       \
style="fill:#f8f9fa;fill-opacity:1" +           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g6089-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6091-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6093-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6095-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6097-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6099-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6101-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6103-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6105-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6107-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6109-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6111-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6113-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6115-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6117-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6183-7"
+       transform="matrix(0.41511494,0,0,0.41511494,859.42518,-102.50379)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <path
+         id="path6145-2"
+         d="m 108.732,152.869 c -24.337,0 -44.137,-19.8 -44.137,-44.137 0,-24.337 \
19.8,-44.137 44.137,-44.137 24.337,0 44.137,19.8 44.137,44.137 0,24.338 \
-19.799,44.137 -44.137,44.137 z m 0,-77.364 c -18.322,0 -33.227,14.906 -33.227,33.228 \
0,18.322 14.906,33.227 33.227,33.227 18.322,0 33.227,-14.906 33.227,-33.227 \
0.001,-18.322 -14.905,-33.228 -33.227,-33.228 z m 0,53.883 c -11.408,0 -20.655,-9.248 \
-20.655,-20.656 0,-11.408 9.248,-20.655 20.655,-20.655 11.408,0 20.655,9.248 \
20.655,20.655 0.001,11.408 -9.247,20.656 -20.655,20.656 z M 108.732,0 C 48.777,0 \
0,48.778 0,108.732 c 0,59.954 48.777,108.732 108.732,108.732 59.955,0 108.732,-48.777 \
108.732,-108.732 C 217.464,48.777 168.687,0 108.732,0 Z m 0,46.79 c -34.155,0 \
-61.942,27.787 -61.942,61.942 0,2.762 -2.239,5 -5,5 -2.761,0 -5,-2.238 -5,-5 \
0,-39.669 32.273,-71.942 71.942,-71.942 2.761,0 5,2.238 5,5 0,2.762 -2.238,5 -5,5 z m \
0,-20.484 c -45.45,0 -82.427,36.977 -82.427,82.427 0,2.762 -2.239,5 -5,5 -2.761,0 \
-5,-2.238 -5,-5 0,-50.964 41.462,-92.427 92.427,-92.427 2.761,0 5,2.238 5,5 0,2.762 \
-2.238,5 -5,5 z" +         inkscape:connector-curvature="0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6147-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6149-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6151-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6153-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6155-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6157-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6159-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6161-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6163-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6165-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6167-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6169-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6171-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6173-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6175-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6242-5"
+       transform="matrix(3.8660622,0,0,3.8660622,687.70388,-831.17482)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6202-4"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6204-1"
+           d="M 22.08,0.098 10.97,3.497 C 9.624,3.881 8.533,5.285 8.533,6.631 l \
0,11.557 c 0,0 0,0.158 0,0.162 0,0 -0.805,-0.543 -2.598,-0.289 -2.633,0.374 \
-4.768,2.395 -4.768,4.515 0,2.12 2.135,3.419 4.768,3.045 2.635,-0.372 4.566,-2.331 \
4.566,-4.452 0,0 0,-9.066 0,-10.006 0,-0.94 1.13,-1.343 1.13,-1.343 l 9.823,-3.079 c \
0,0 1.087,-0.365 1.087,0.641 0,1.006 0,8.031 0,8.031 0,0 0,0.002 0,0.006 0,0 \
-1.001,-0.576 -2.794,-0.358 -2.633,0.319 -4.768,2.298 -4.768,4.417 0,2.121 \
2.135,3.463 4.768,3.143 2.635,-0.319 4.77,-2.297 4.77,-4.418 l 0,-16.363 c 0,-1.346 \
-1.092,-2.126 -2.437,-1.742 z" +           style="fill:#f8f9fa;fill-opacity:1"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g6206-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6208-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6210-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6212-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6214-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6216-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6218-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6220-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6222-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6224-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6226-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6228-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6230-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6232-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6234-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6302-0"
+       transform="matrix(0.30057858,0,0,0.30057858,393.2091,-832.83229)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6262-9"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6264-5"
+           d="M 207.865,150.283 C 187.872,142.286 170.131,107.179 160.683,82.734 \
141.985,34.321 123.77,5.021 71.174,6.271 3.959,7.857 0,70.323 0,70.323 l 0,208.073 c \
0,8.669 7.037,15.701 15.701,15.701 l 262.759,0 c 8.66,0 17.264,-6.86 18.61,-15.424 \
5.49,-34.969 11.718,-117.474 -51.154,-120.624 -15.794,-0.805 -28.297,-3.854 \
-38.051,-7.766 z m 72.041,128.787 -267.257,0 0,-58.509 15.417,0 0,42.892 16.607,0 \
0,-42.892 13.633,0 0,42.892 16.607,0 0,-42.892 13.633,0 0,42.892 16.603,0 0,-42.892 \
13.638,0 0,42.892 16.603,0 0,-42.892 13.646,0 0,42.892 16.604,0 0,-42.892 13.634,0 \
0,42.892 16.603,0 0,-42.892 13.642,0 0,42.892 16.594,0 0,-42.892 13.642,0 0,42.892 \
16.611,0 0,-42.892 23.52,0 0,58.509 0.02,0 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g6266-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6268-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6270-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6272-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6274-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6276-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6278-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6280-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6282-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6284-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6286-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6288-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6290-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6292-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6294-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6368-0"
+       transform="matrix(0.26524179,0,0,0.26524179,1104.3439,729.12219)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6322-6"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g6324-8"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path6326-1"
+             d="m 443.981,134.98 c 0,0 0,0 -25.167,-14.274 C 393.651,106.45 \
400.644,103.522 389.452,81.151 378.275,58.777 343.314,58.777 343.314,58.777 l \
-297.792,63.838 315.28,53.775 83.179,-41.41 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path6328-7"
+             d="m 357.998,183.47 -312.476,-55.056 0,58.292 L 0,204.879 l 0,39.14 \
76.761,11.217 17.873,95.922 c 1.062,5.703 2.779,5.703 3.849,0 l 16.823,-90.295 \
46.961,6.869 0,70.482 -20.45,-1.503 0,19.552 85.464,6.284 0,-19.532 -19.404,-1.443 \
0,-67.196 68.693,10.039 17.986,96.519 c 1.058,5.694 2.785,5.694 3.851,0 l \
16.928,-90.856 18.129,2.646 0.773,-37.518 23.761,-13.971 0,-57.765 z M 195.3,340.655 \
l -20.442,-1.503 0,-69.581 20.442,2.989 0,68.095 z M 313.263,265.523 24.9,224.632 l \
44.564,-18.358 6.508,0.958 -19.274,13.026 10.489,2.787 13.259,-15.154 19.556,2.875 \
-18.149,12.271 10.487,2.789 12.553,-14.347 19.162,2.83 -17.049,11.517 10.487,2.797 \
11.846,-13.549 42.801,6.314 -14.839,10.02 10.487,2.798 10.436,-11.924 17.953,2.639 \
-13.721,9.285 10.487,2.797 9.72,-11.129 41.603,6.132 -11.511,7.79 10.481,2.789 \
8.327,-9.505 40.783,6.019 -9.289,6.292 10.487,2.785 6.901,-7.891 32.22,4.753 \
-19.402,20.485 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <polygon
+             id="polygon6330-3"
+             points="340.173,293.66 443.981,223.045 443.981,143.521 364.642,184.257 \
364.642,246.48 340.173,260.446 " +             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g6332-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6334-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6336-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6338-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6340-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6342-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6344-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6346-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6348-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6350-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6352-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6354-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6356-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6358-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6360-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6431-6"
+       transform="matrix(2.8278219,0,0,2.8278219,84.806779,-710.24208)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6391-1"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6393-0"
+           d="m 30.841,4.939 -29.759,0 C 0.472,4.939 0,5.387 0,5.997 l 0,19.838 c \
0,0.609 0.472,1.148 1.082,1.148 l 29.76,0 c 0.608,0 1.081,-0.537 1.081,-1.148 l \
0,-19.838 C 31.922,5.387 31.45,4.939 30.841,4.939 Z M 6.447,18.113 c 0.682,0 \
1.235,-0.554 1.235,-1.236 l 0,-9.742 1.098,0 0,9.741 c 0,0.682 0.553,1.236 \
1.235,1.236 l 0.412,0 0,6.584 -4.39,0 0,-6.584 0.41,0 z m 5.078,0 0.411,0 c 0.683,0 \
1.236,-0.554 1.236,-1.236 l 0,-9.746 2.195,0 0,17.567 -3.842,0 0,-6.585 z m \
5.032,-10.978 2.196,0 0,9.741 c 0,0.682 0.554,1.236 1.235,1.236 l 0.41,0 0,6.584 \
-3.842,0 0,-17.561 10e-4,0 z m 4.938,10.978 0.409,0 c 0.683,0 1.236,-0.554 \
1.236,-1.236 l 0,-9.742 1.098,0 0,9.741 c 0,0.682 0.554,1.236 1.236,1.236 l 0.407,0 \
0,6.584 -4.39,0 0.004,-6.583 0,0 z M 2.195,8.022 c 0,-0.49 0.397,-0.887 0.887,-0.887 \
l 0.21,0 0,9.741 c 0,0.684 0.553,1.236 1.235,1.236 l 0.411,0 0,6.584 -1.855,0 c \
-0.49,0 -0.887,-0.396 -0.887,-0.888 L 2.195,8.022 l 0,0 z m 27.532,15.787 c 0,0.49 \
-0.396,0.888 -0.887,0.888 l -1.857,0 0,-6.584 0.412,0 c 0.685,0 1.235,-0.554 \
1.235,-1.236 l 0,-9.742 0.21,0 c 0.49,0 0.887,0.397 0.887,0.887 l 0,15.787 0,0 z" +   \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g6395-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6397-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6399-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6401-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6403-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6405-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6407-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6409-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6411-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6413-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6415-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6417-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6419-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6421-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6423-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6499-9"
+       transform="matrix(0.18935465,0,0,0.18935465,1136.2048,354.01119)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6451-3"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g6453-2"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <g
+             id="g6455-7"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <g
+               id="g6457-3"
+               style="fill:#f8f9fa;fill-opacity:1">
+              <path
+                 id="path6459-8"
+                 d="M 238.369,0 C 106.726,0 0,106.726 0,238.369 0,370.044 \
106.726,476.738 238.369,476.738 370.044,476.738 476.738,370.044 476.738,238.369 \
476.737,106.726 370.043,0 238.369,0 Z m 0,444.955 c -113.908,0 -206.586,-92.678 \
-206.586,-206.586 0,-113.908 92.677,-206.587 206.586,-206.587 113.909,0 \
206.586,92.678 206.586,206.586 0,113.908 -92.678,206.587 -206.586,206.587 z" +        \
style="fill:#f8f9fa;fill-opacity:1" +                 \
inkscape:connector-curvature="0" /> +              <path
+                 id="path6461-3"
+                 d="M 343.759,227.976 221.206,130.88 c -6.897,-5.403 -18.084,-5.403 \
-24.981,0 l -0.159,0.159 c -3.305,2.511 -5.371,6.007 -5.371,9.916 l 0,194.191 c \
0,3.973 2.193,7.501 5.594,9.98 l -0.064,0.064 c 6.897,5.435 18.084,5.435 24.981,0 l \
123.221,-97.318 c 6.929,-5.403 6.929,-14.207 0,-19.61 l -0.668,-0.286 z" +            \
style="fill:#f8f9fa;fill-opacity:1" +                 \
inkscape:connector-curvature="0" /> +            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         id="g6463-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6465-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6467-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6469-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6471-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6473-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6475-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6477-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6479-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6481-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6483-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6485-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6487-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6489-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6491-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6591-5"
+       transform="matrix(1.8421748,0,0,1.8421748,756.94386,929.69768)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6523-6"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g6525-1"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <g
+             id="g6527-7"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6529-5"
+               d="M 2.41,31.936 C 1.079,31.936 0,30.858 0,29.526 l 0,-12.05 c \
0,-1.331 1.079,-2.41 2.41,-2.41 1.331,0 2.41,1.079 2.41,2.41 l 0,12.05 c 0,1.329 \
-1.079,2.41 -2.41,2.41 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+          <g
+             id="g6531-8"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6533-5"
+               d="m 9.44,37.962 c -1.331,0 -2.41,-1.079 -2.41,-2.41 l 0,-24.104 c \
0,-1.331 1.079,-2.41 2.41,-2.41 1.331,0 2.41,1.079 2.41,2.41 l 0,24.104 c 0.001,1.331 \
-1.079,2.41 -2.41,2.41 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+          <g
+             id="g6535-8"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6537-4"
+               d="m 16.47,34.948 c -1.331,0 -2.41,-1.079 -2.41,-2.41 l 0,-18.076 c \
0,-1.331 1.079,-2.41 2.41,-2.41 1.331,0 2.411,1.079 2.411,2.41 l 0,18.076 c \
-0.001,1.331 -1.08,2.41 -2.411,2.41 z" +               \
inkscape:connector-curvature="0" +               style="fill:#f8f9fa;fill-opacity:1" \
/> +          </g>
+          <g
+             id="g6539-7"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6541-3"
+               d="m 23.5,40.975 c -1.331,0 -2.41,-1.078 -2.41,-2.41 l 0,-30.129 c \
0,-1.331 1.079,-2.41 2.41,-2.41 1.331,0 2.41,1.079 2.41,2.41 l 0,30.128 c 0,1.332 \
-1.079,2.411 -2.41,2.411 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+          <g
+             id="g6543-6"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6545-4"
+               d="m 30.529,47 c -1.33,0 -2.41,-1.079 -2.41,-2.41 l 0,-42.18 c \
0,-1.331 1.08,-2.41 2.41,-2.41 1.332,0 2.41,1.079 2.41,2.41 l 0,42.18 c 0,1.331 \
-1.078,2.41 -2.41,2.41 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+          <g
+             id="g6547-8"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6549-7"
+               d="m 37.561,37.962 c -1.332,0 -2.41,-1.079 -2.41,-2.41 l 0,-24.104 c \
0,-1.331 1.078,-2.41 2.41,-2.41 1.33,0 2.41,1.079 2.41,2.41 l 0,24.104 c 0,1.331 \
-1.08,2.41 -2.41,2.41 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+          <g
+             id="g6551-9"
+             style="fill:#f8f9fa;fill-opacity:1">
+            <path
+               id="path6553-7"
+               d="m 44.59,28.923 c -1.331,0 -2.41,-1.079 -2.41,-2.409 l 0,-6.026 c \
0,-1.331 1.079,-2.41 2.41,-2.41 1.331,0 2.41,1.079 2.41,2.41 l 0,6.026 c 0,1.33 \
-1.079,2.409 -2.41,2.409 z" +               inkscape:connector-curvature="0"
+               style="fill:#f8f9fa;fill-opacity:1" />
+          </g>
+        </g>
+      </g>
+      <g
+         id="g6555-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6557-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6559-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6561-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6563-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6565-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6567-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6569-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6571-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6573-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6575-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6577-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6579-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6581-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6583-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6665-8"
+       transform="matrix(4.7790688,0,0,4.7790688,1056.5229,-285.93726)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6625-4"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6627-3"
+           d="m 10.653,8.76 8.145,-1.321 0,11.043 c 0,0.914 -0.681,1.644 \
-1.744,1.913 -1.168,0.289 -2.294,-0.2 -2.519,-1.095 -0.224,-0.897 0.541,-1.858 \
1.708,-2.15 0.527,-0.13 1.047,-0.103 1.481,0.05 l 0,-6.654 -5.969,1.092 -0.028,8.276 \
c -0.005,0.783 -0.713,1.554 -1.729,1.805 -1.153,0.289 -2.363,-0.26 -2.492,-1.081 \
-0.221,-0.886 0.534,-1.837 1.691,-2.127 0.52,-0.13 1.029,-0.104 1.456,0.046 l \
0,-9.797 z M 7.591,12.81 7.62,2.581 c 0,0 2.228,-0.119 4.407,3.298 0,0 0.006,-1.764 \
-1.669,-3.055 C 7.087,0.54 7.096,0 7.096,0 6.472,0.073 6.408,0.547 6.408,0.547 l \
0,10.771 C 5.94,11.154 5.38,11.125 4.806,11.268 c -1.27,0.314 -2.1,1.363 -1.857,2.338 \
0.143,0.901 1.471,1.506 2.74,1.187 1.115,-0.278 1.894,-1.12 1.9,-1.983 l 0.002,0 z M \
13.515,6.2 c 0.388,-0.097 0.659,-0.39 0.661,-0.69 l 10e-4,0 0.01,-3.559 c 0,0 \
0.775,-0.041 1.533,1.148 0,0 10e-4,-0.614 -0.582,-1.062 C 14,1.242 14.004,1.054 \
14.004,1.054 c -0.217,0.025 -0.24,0.19 -0.24,0.19 l 0,3.748 C 13.602,4.934 \
13.408,4.924 13.208,4.973 c -0.443,0.109 -0.73,0.475 -0.646,0.814 0.05,0.314 \
0.512,0.524 0.953,0.413 z m 3.84,0.009 c 0.27,-0.067 0.458,-0.272 0.46,-0.481 l \
0.007,-2.479 c 0,0 0.54,-0.029 1.068,0.799 0,0 10e-4,-0.428 -0.404,-0.74 C \
17.693,2.754 17.695,2.623 17.695,2.623 17.544,2.641 17.528,2.756 17.528,2.756 l \
0,2.611 C 17.415,5.327 17.279,5.32 17.14,5.355 c -0.308,0.076 -0.509,0.33 -0.45,0.566 \
0.034,0.219 0.356,0.366 0.665,0.288 z" +           \
style="fill:#f8f9fa;fill-opacity:1" +           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g6629-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6631-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6633-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6635-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6637-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6639-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6641-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6643-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6645-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6647-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6649-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6651-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6653-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6655-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6657-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6727-9"
+       transform="matrix(1.03097,0,0,1.03097,1161.2311,927.30468)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6685-6"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6687-2"
+           d="m 45.443,22.544 c 5.975,0 10.836,-4.861 10.836,-10.836 0,-5.975 \
-4.861,-10.835 -10.836,-10.835 -5.975,0 -10.836,4.86 -10.836,10.835 0,5.975 \
4.861,10.836 10.836,10.836 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path6689-1"
+           d="m 77.24,93.073 -8.17,-8.171 0,-29.325 c 0.456,-0.254 0.846,-0.622 \
1.12,-1.078 l 0.778,-1.295 c 0.844,-1.406 0.406,-3.267 -0.978,-4.147 l -0.92,-0.586 \
0,-27.022 c 1.579,-0.607 2.708,-2.129 2.708,-3.92 l 0,-2.332 c 0,-2.321 -1.888,-4.209 \
-4.209,-4.209 -2.32,0 -4.208,1.888 -4.208,4.209 l 0,2.332 c 0,1.791 1.129,3.314 \
2.709,3.92 l 0,25.114 -7.089,-4.512 C 58.274,41.602 57.448,40.452 57.247,39.639 L \
54.265,27.586 C 54.186,27.268 54.058,26.984 53.896,26.735 53.4,25.761 52.398,25.086 \
51.232,25.086 l -11.69,0 L 27.271,1.782 C 26.691,0.683 25.551,0 24.295,0 23.787,0 \
23.279,0.118 22.826,0.342 l -2.211,1.094 c -0.791,0.391 -1.375,1.066 -1.646,1.901 \
-0.271,0.835 -0.194,1.726 0.217,2.505 l 14.217,27.001 0,24.25 c -0.025,0.067 \
-0.06,0.129 -0.082,0.197 l -9.783,30.638 c -0.407,1.276 -0.283,2.619 0.35,3.781 \
0.633,1.162 1.694,1.994 2.987,2.343 l 0.654,0.177 c 0.428,0.116 0.872,0.175 \
1.318,0.175 2.251,0 4.296,-1.481 4.974,-3.603 l 9.288,-29.087 0.771,0 1.694,8.42 c \
0.269,1.335 0.521,3.612 0.552,4.974 l 0.382,17.203 c 0.041,1.85 1.452,3.245 \
3.282,3.245 0.16,0 0.323,-0.011 0.488,-0.034 l 3.223,-0.447 c 1.921,-0.267 \
3.401,-2.06 3.301,-3.997 L 55.9,73.806 C 55.824,72.349 55.601,69.991 55.402,68.55 l \
-1.171,-19.799 11.838,6.816 0,29.335 -8.17,8.171 c -0.586,0.586 -0.586,1.536 0,2.121 \
0.293,0.293 0.677,0.439 1.061,0.439 0.384,0 0.768,-0.146 1.061,-0.439 l 6.049,-6.049 \
0,5.845 c 0,0.829 0.671,1.5 1.5,1.5 0.829,0 1.5,-0.671 1.5,-1.5 l 0,-5.845 \
6.049,6.049 c 0.293,0.293 0.677,0.439 1.061,0.439 0.384,0 0.768,-0.146 1.061,-0.439 \
0.585,-0.586 0.585,-1.535 -0.001,-2.121 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g6691-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6693-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6695-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6697-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6699-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6701-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6703-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6705-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6707-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6709-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6711-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6713-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6715-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6717-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6719-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6866-8"
+       transform="matrix(0.21231709,0,0,0.21231709,855.68185,-304.27205)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6748-7"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g6750-4"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <rect
+             id="rect6752-6"
+             height="39.449001"
+             width="39.446999"
+             y="361.617"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6754-5"
+             height="39.432999"
+             width="39.446999"
+             y="313.41199"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6756-0"
+             height="39.441002"
+             width="39.446999"
+             y="265.18301"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6758-3"
+             height="39.449001"
+             width="39.446999"
+             y="216.96899"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6760-0"
+             height="39.446999"
+             width="39.446999"
+             y="168.746"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6762-6"
+             height="39.443001"
+             width="39.446999"
+             y="120.537"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6764-0"
+             height="39.446999"
+             width="39.446999"
+             y="72.322998"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6766-3"
+             height="39.446999"
+             width="39.446999"
+             y="24.112"
+             x="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6768-5"
+             height="39.449001"
+             width="39.446999"
+             y="361.617"
+             x="48.217999"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6770-9"
+             height="39.432999"
+             width="39.446999"
+             y="313.41199"
+             x="48.217999"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6772-2"
+             height="39.441002"
+             width="39.446999"
+             y="265.18301"
+             x="48.217999"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6774-9"
+             height="39.449001"
+             width="39.446999"
+             y="216.96899"
+             x="48.217999"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6776-2"
+             height="39.446999"
+             width="39.446999"
+             y="168.746"
+             x="48.217999"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6778-9"
+             height="39.449001"
+             width="39.438999"
+             y="361.617"
+             x="96.434998"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6780-3"
+             height="39.432999"
+             width="39.438999"
+             y="313.41199"
+             x="96.434998"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6782-9"
+             height="39.441002"
+             width="39.438999"
+             y="265.18301"
+             x="96.434998"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6784-8"
+             height="39.449001"
+             width="39.446999"
+             y="361.617"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6786-0"
+             height="39.432999"
+             width="39.446999"
+             y="313.41199"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6788-5"
+             height="39.441002"
+             width="39.446999"
+             y="265.18301"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6790-9"
+             height="39.449001"
+             width="39.446999"
+             y="216.96899"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6792-0"
+             height="39.446999"
+             width="39.446999"
+             y="168.746"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6794-7"
+             height="39.443001"
+             width="39.446999"
+             y="120.537"
+             x="144.645"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6796-8"
+             height="39.449001"
+             width="39.445"
+             y="361.617"
+             x="192.85899"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6798-4"
+             height="39.432999"
+             width="39.445"
+             y="313.41199"
+             x="192.85899"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6800-2"
+             height="39.449001"
+             width="39.441002"
+             y="361.617"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6802-3"
+             height="39.432999"
+             width="39.441002"
+             y="313.41199"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6804-2"
+             height="39.441002"
+             width="39.441002"
+             y="265.18301"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6806-9"
+             height="39.449001"
+             width="39.441002"
+             y="216.96899"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6808-1"
+             height="39.446999"
+             width="39.441002"
+             y="168.746"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6810-9"
+             height="39.443001"
+             width="39.441002"
+             y="120.537"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6812-5"
+             height="39.446999"
+             width="39.441002"
+             y="72.322998"
+             x="241.08501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6814-7"
+             height="39.449001"
+             width="39.444"
+             y="361.617"
+             x="289.29901"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6816-4"
+             height="39.449001"
+             width="39.452999"
+             y="361.617"
+             x="337.504"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6818-6"
+             height="39.432999"
+             width="39.452999"
+             y="313.41199"
+             x="337.504"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6820-1"
+             height="39.441002"
+             width="39.452999"
+             y="265.18301"
+             x="337.504"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6822-4"
+             height="39.449001"
+             width="39.452999"
+             y="361.617"
+             x="385.72501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6824-2"
+             height="39.432999"
+             width="39.452999"
+             y="313.41199"
+             x="385.72501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6826-1"
+             height="39.441002"
+             width="39.452999"
+             y="265.18301"
+             x="385.72501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <rect
+             id="rect6828-9"
+             height="39.449001"
+             width="39.452999"
+             y="216.96899"
+             x="385.72501"
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g6830-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6832-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6834-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6836-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6838-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6840-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6842-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6844-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6846-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6848-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6850-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6852-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6854-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6856-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6858-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6969-2"
+       transform="matrix(5.6420348,0,0,5.6420348,516.25649,-493.40782)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6925-9"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g6927-4"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path6929-4"
+             d="M 8,0 C 3.5,0 0,3.5 0,8 c 0,4.5 3.5,8 8,8 4.5,0 8,-3.5 8,-8 C 16,3.5 \
12.5,0 8,0 Z M 8,14 C 4.5,14 2,11.5 2,8 2,4.5 4.5,2 8,2 c 3.5,0 6,2.5 6,6 0,3.5 \
-2.5,6 -6,6 z" +             style="fill:#f8f9fa;fill-opacity:1"
+             inkscape:connector-curvature="0" />
+          <polygon
+             id="polygon6931-0"
+             points="6,4 6,12 11,8 "
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g6933-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6935-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6937-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6939-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6941-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6943-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6945-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6947-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6949-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6951-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6953-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6955-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6957-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6959-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6961-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5045-83"
+       transform="matrix(3.6979059,0,0,3.6979059,1084.1813,-647.23841)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g4989-9"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <g
+           id="g4991-1"
+           style="fill:#f8f9fa;fill-opacity:1">
+          <path
+             id="path4993-6"
+             d="M 26.016,26.395 29.762,10.577 12.873,8.92 10.455,21.615 \
10.453,21.614 0.228,23.13 13.87,28.026 26.016,26.395 Z M 13.565,10.038 28.061,11.742 \
24.907,25.066 11.396,21.246 13.565,10.038 Z m -3.091,16.077 -3.348,-1.278 \
1.614,-0.215 3.756,1.254 -2.022,0.239 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <polygon
+             id="polygon4995-5"
+             points="13.731,29.819 27.52,27.628 31.385,11.605 30.547,11.023 \
26.814,26.946 13.824,28.846 13.824,28.839 0,23.783 0,24.568 " +             \
style="fill:#f8f9fa;fill-opacity:1" /> +          <path
+             id="path4997-1"
+             d="m 2.207,9.99 c 0.918,0.694 2.19,0.59 2.986,-0.197 L 5.214,9.81 \
8.826,5.035 8.832,7.491 9.734,7.487 9.728,4.458 l 0.376,-0.497 0.005,2.109 0.902,0 \
-0.007,-3.03 0.509,-0.675 -0.425,-0.32 -0.291,-0.22 -0.29,-0.22 -4.665,6.167 C \
5.747,7.221 5.452,6.701 4.97,6.336 3.96,5.573 2.524,5.774 1.762,6.781 0.999,7.792 \
1.198,9.228 2.207,9.99 Z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path4999-8"
+             d="m 11.746,11.783 -1.347,-1.038 -0.123,-0.458 -0.29,0.077 -0.197,0.052 \
-0.198,0.056 1.131,4.191 c -0.278,-0.147 -0.61,-0.196 -0.938,-0.106 -0.686,0.184 \
-1.091,0.89 -0.907,1.575 0.185,0.687 0.891,1.093 1.577,0.908 0.625,-0.168 1.016,-0.77 \
0.941,-1.394 l 0.014,-0.004 -0.875,-3.247 1.092,0.843 0.309,-0.4 -1.346,-1.04 \
-0.091,-0.339 0.938,0.726 0.31,-0.402 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5001-3"
+             d="M 16.757,5.884 C 16.26,6.392 16.268,7.205 16.776,7.702 17.285,8.199 \
18.1,8.191 18.596,7.684 19.048,7.221 19.079,6.505 18.7,6.005 L 18.71,5.995 \
16.308,3.641 17.675,3.814 17.739,3.31 16.05,3.099 15.8,2.853 16.975,3 17.038,2.498 \
15.35,2.29 15.012,1.958 14.803,2.172 14.659,2.318 14.516,2.465 17.62,5.502 c \
-0.315,0.013 -0.626,0.139 -0.863,0.382 z" +             \
inkscape:connector-curvature="0" +             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5003-0"
+             d="m 23.795,8.236 c 0.548,0 1.002,-0.405 1.078,-0.933 l 0.014,0 \
0,-3.815 3.028,-0.557 0,2.711 C 27.721,5.46 27.458,5.347 27.17,5.347 c -0.604,0 \
-1.091,0.489 -1.091,1.09 0,0.604 0.489,1.092 1.091,1.092 0.549,0 1.001,-0.404 \
1.079,-0.931 l 0.013,0 0,-4.292 0.021,-0.004 -0.007,-0.736 -3.739,0.692 0.004,0.408 \
0,0 0,3.684 C 24.347,6.168 24.084,6.055 23.796,6.055 c -0.604,0 -1.091,0.489 \
-1.091,1.092 -10e-4,0.601 0.486,1.089 1.09,1.089 z m 1.092,-5.304 3.028,-0.562 0,0.36 \
-3.028,0.556 0,-0.354 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5005-9"
+             d="m 7.154,20.294 0.332,-3.79 -0.393,-0.104 0,0 -3.55,-0.983 c \
0.228,-0.14 0.406,-0.361 0.482,-0.639 0.161,-0.582 -0.179,-1.183 -0.76,-1.344 \
-0.581,-0.161 -1.182,0.18 -1.343,0.76 -0.146,0.529 0.124,1.074 0.611,1.289 l \
-0.003,0.012 3.677,1.02 -0.274,3.066 -2.611,-0.723 c 0.227,-0.143 0.405,-0.363 \
0.482,-0.641 0.161,-0.58 -0.18,-1.183 -0.759,-1.342 -0.582,-0.162 -1.183,0.179 \
-1.344,0.758 -0.147,0.529 0.123,1.074 0.61,1.289 l -0.003,0.014 4.136,1.146 \
-0.002,0.021 0.712,0.191 z M 6.128,19.634 6.401,16.569 6.744,16.664 6.476,19.73 \
6.128,19.634 Z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+          <path
+             id="path5007-6"
+             d="m 19.604,16.718 c 0.573,-0.183 0.891,-0.796 0.707,-1.369 \
-0.183,-0.574 -0.797,-0.891 -1.371,-0.708 -0.521,0.165 -0.83,0.689 -0.744,1.217 l \
-0.012,0.003 1.16,3.637 -2.717,1.449 -0.824,-2.581 c 0.242,0.112 0.525,0.142 \
0.798,0.054 0.574,-0.184 0.892,-0.797 0.707,-1.371 -0.183,-0.574 -0.797,-0.892 \
-1.371,-0.708 -0.523,0.167 -0.832,0.69 -0.744,1.216 l -0.013,0.006 1.305,4.088 \
-0.019,0.011 0.23,0.698 3.352,-1.797 -0.127,-0.387 -1.121,-3.51 c 0.245,0.113 \
0.528,0.141 0.804,0.052 z m -0.09,3.309 -2.715,1.455 -0.109,-0.345 2.715,-1.45 \
0.109,0.34 z" +             inkscape:connector-curvature="0"
+             style="fill:#f8f9fa;fill-opacity:1" />
+        </g>
+      </g>
+      <g
+         id="g5009-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5011-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5013-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5015-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5017-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5019-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5021-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5023-99"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5025-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5027-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5029-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5031-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5033-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5035-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5037-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5431-32"
+       transform="matrix(0.19359723,0,0,0.19359723,718.17917,-563.59952)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5385-7"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5387-2"
+           d="M 235.554,0 C 109.784,0 3.532,102.367 3.532,223.536 c 0,68.314 \
33.927,149.905 86.43,207.865 l 1.484,1.639 2.164,-0.429 c 0.553,-0.1 12.578,-2.637 \
17.603,-11.834 12.317,10.095 23.253,11.085 34.757,6.961 5.115,9.843 7.103,20.559 \
-6.606,24.445 -12.906,3.675 -30.152,-1.094 -42.886,-3.025 -21.219,-3.222 \
-66.178,-4.156 -87.61,-3.358 -10.092,0.381 -10.128,16.082 0,15.701 25.874,-0.958 \
74.494,1.606 100.092,5.241 12.808,1.82 29.16,4.341 41.437,-1.623 21.209,-10.303 \
17.637,-27.875 9.105,-44.146 6.404,-3.907 13.235,-8.844 20.638,-14.15 -20.528,-9.017 \
-47.406,-49.355 -65.764,-84.528 -12.99,-24.902 -38.401,-77.676 -35.536,-104.35 \
-15.867,10.896 -28.212,20.386 -34.91,32.837 -1.854,-11.745 -2.852,-23.271 \
-2.852,-34.43 0,-96.018 100.557,-160.516 194.469,-160.516 116.331,0 194.46,83 \
194.46,160.516 0,11.093 -0.897,22.456 -2.625,33.953 -6.744,-12.219 -18.987,-21.612 \
-34.652,-32.36 2.869,26.674 -22.537,79.447 -35.533,104.35 -18.351,35.173 \
-45.236,75.52 -65.762,84.528 28.204,20.238 47.103,34.46 72.189,11.085 5.133,7.975 \
14.463,12.158 14.939,12.359 l 2.601,1.117 1.884,-2.115 C 434.407,371.526 \
467.576,290.776 467.576,223.527 467.575,102.357 361.322,0 235.554,0 Z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path5389-5"
+           d="m 93.646,209.917 c -0.99,0 -1.863,0.232 -2.673,0.589 -0.287,0.126 \
-0.601,0.218 -0.87,0.391 -11.407,7.468 3.939,55.427 31.244,107.756 24.917,47.752 \
53.217,82.208 66.652,82.208 0.25,0 0.475,-0.072 0.713,-0.092 0.988,-0.108 \
1.923,-0.353 2.725,-0.878 0.878,-0.581 1.569,-1.479 2.166,-2.528 0.03,-0.061 \
0.062,-0.145 0.092,-0.204 6.885,-12.788 -5.973,-57.491 -31.038,-105.532 \
-24.886,-47.697 -55.197,-81.718 -69.011,-81.71 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path5391-6"
+           d="m 350.25,318.652 c 27.303,-52.329 42.647,-100.296 31.242,-107.756 \
-0.269,-0.172 -0.585,-0.265 -0.874,-0.391 -0.806,-0.356 -1.679,-0.589 -2.669,-0.589 \
-13.806,0 -44.126,34.013 -69.012,81.709 -25.062,48.049 -37.926,92.756 -31.041,105.536 \
0.031,0.063 0.067,0.14 0.1,0.2 0.589,1.058 1.286,1.964 2.16,2.528 0.821,0.537 \
1.771,0.798 2.785,0.89 0.213,0.024 0.421,0.093 0.657,0.093 13.425,10e-4 41.73,-34.468 \
66.652,-82.22 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+        <path
+           id="path5393-3"
+           d="m 247.696,93.629 c -8.111,-1.381 -14.741,4.59 -14.741,12.818 l \
0,84.997 c -4.795,-1.759 -9.959,-2.771 -15.371,-2.771 -24.697,0 -44.715,20.019 \
-44.715,44.721 0,24.693 20.018,44.711 44.715,44.711 18.098,0 33.662,-10.748 \
40.691,-26.205 3.414,-7.481 3.903,-20.99 3.936,-29.212 0.092,-26.299 0.092,-78.205 \
0.092,-78.205 57.771,0 54.309,34.622 47.545,54.505 -2.646,7.789 -1.07,9.091 \
4.496,3.032 70.498,-76.794 -27.663,-101.756 -66.648,-108.391 z" +           \
inkscape:connector-curvature="0" +           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5395-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5397-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5399-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5401-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5403-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5405-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5407-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5409-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5411-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5413-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5415-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5417-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5419-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5421-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5423-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5697-0"
+       transform="matrix(0.36948474,0,0,0.36948474,218.22578,-651.11548)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g5657-7"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path5659-5"
+           d="m 305.773,130.393 -80.411,0 -17.031,-33.767 c -2.076,-4.104 \
-6.519,-6.405 -11.086,-5.706 -4.541,0.701 -8.114,4.248 -8.854,8.782 l -7.612,46.877 \
-7.207,44.377 -5.608,-43.805 -12.407,-96.88 c -0.637,-4.948 -4.629,-8.779 \
-9.592,-9.215 -4.974,-0.388 -9.564,2.646 -11.05,7.402 l -31.682,101.582 -9.518,30.518 \
-4.847,-29.876 -7.161,-44.151 c -0.754,-4.629 -4.456,-8.215 -9.106,-8.818 \
-4.645,-0.567 -9.147,1.914 -11.05,6.204 l -17.663,39.667 -33.283,0 C 4.751,143.584 \
0,148.335 0,154.189 c 0,5.854 4.751,10.603 10.605,10.603 l 40.172,0 c 4.189,0 \
7.985,-2.465 9.686,-6.292 l 2.975,-6.674 3.029,-6.799 1.069,6.613 12.44,76.708 c \
0.784,4.857 4.81,8.528 9.719,8.881 4.909,0.3 9.406,-2.724 10.875,-7.415 l \
25.191,-80.779 14.934,-47.869 6.007,46.937 15.107,117.994 c 0.668,5.22 5.072,9.165 \
10.338,9.258 0.058,0 0.119,0 0.182,0 5.188,0 9.631,-3.764 10.47,-8.911 l \
19.62,-120.834 1.673,-10.286 5.033,9.991 0.228,0.456 c 1.802,3.578 5.468,5.833 \
9.476,5.833 l 86.946,0 c 5.856,0 10.604,-4.751 10.604,-10.605 -0.001,-5.855 \
-4.749,-10.606 -10.606,-10.606 z" +           inkscape:connector-curvature="0"
+           style="fill:#f8f9fa;fill-opacity:1" />
+      </g>
+      <g
+         id="g5661-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5663-41"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5665-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5667-85"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5669-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5671-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5673-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5675-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5677-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5679-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5681-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5683-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5685-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5687-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g5689-4"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g6065-8"
+       transform="matrix(0.31209008,0,0,0.31209008,368.75743,-649.02605)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="Track__x2F__Note_2-7"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6027-5"
+           d="M 134.238,17.899 C 112.854,24.368 116.34,44.747 116.34,44.747 l \
0,165.025 c -6.717,-2.501 -14.308,-3.939 -22.373,-3.939 -27.184,0 -49.221,16.027 \
-49.221,35.797 0,19.77 22.037,35.797 49.221,35.797 27.184,0 49.221,-16.026 \
49.221,-35.797 l 0,0 0,0 0,-152.137 63.569,-12.19 c 0,0 0.672,-0.158 1.627,-0.414 \
5.54,-1.518 24.296,-8.231 24.296,-30.082 L 232.68,0 134.238,17.899 Z" +           \
style="clip-rule:evenodd;fill:#f8f9fa;fill-opacity:1;fill-rule:evenodd" +           \
inkscape:connector-curvature="0" /> +      </g>
+      <g
+         id="g6029-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6031-94"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6033-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6035-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6037-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6039-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6041-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6043-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6045-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6047-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6049-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6051-1"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6053-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6055-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6057-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+    <g
+       id="g5757-1-3"
+       transform="matrix(0.17588248,0,0,0.17588248,1126.9929,-826.40988)"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibil \
ity:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;co \
lor-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;f \
ill-opacity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-lin \
ejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opaci \
ty:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate">
 +      <g
+         id="g5717-9-7"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate">
 +        <path
+           id="path5719-4-5"
+           d="m 331.895,421.526 0,-184.182 108.475,-17.588 C 423.093,128.184 \
342.73,58.906 246.136,58.906 c -109.201,0 -197.721,88.52 -197.721,197.721 0,109.202 \
88.52,197.722 197.721,197.722 10.592,0 20.978,-0.857 31.115,-2.459 7.938,-13.176 \
22.177,-23.75 40.258,-28.271 4.776,-1.182 9.599,-1.892 14.386,-2.093 z m \
-49.432,-346.483 -21.184,92.811 -21.185,0 -15.132,-92.811 c 22.197,-11.101 57.501,0 \
57.501,0 z m -36.327,254.99 c -40.542,0 -73.406,-32.864 -73.406,-73.406 0,-40.542 \
32.864,-73.405 73.406,-73.405 40.542,0 73.406,32.864 73.406,73.405 0,40.542 \
-32.864,73.406 -73.406,73.406 z m 0,-129.375 c -30.869,0 -55.969,25.1 -55.969,55.969 \
0,30.866 25.1,55.97 55.969,55.97 30.867,0 55.969,-25.104 55.969,-55.97 0,-30.869 \
-25.103,-55.969 -55.969,-55.969 z m 0,95.949 c -22.044,0 -39.977,-17.933 \
-39.977,-39.98 0,-22.044 17.939,-39.977 39.977,-39.977 22.047,0 39.968,17.933 \
39.968,39.977 0,22.048 -17.921,39.98 -39.968,39.98 z m 25.322,189.394 c 0.958,5.308 \
3.062,10.249 6.1,14.688 -10.296,1.318 -20.77,2.075 -31.415,2.075 C 110.419,502.764 \
0,392.345 0,256.627 0,120.91 110.419,10.491 246.136,10.491 c 120.473,0 220.945,87.036 \
242.01,201.516 l -23.896,3.88 C 445.057,112.913 354.586,34.702 246.136,34.702 c \
-122.371,0 -221.925,99.555 -221.925,221.925 0,122.371 99.555,221.926 221.925,221.926 \
8.195,0 16.279,-0.479 24.246,-1.348 0.071,2.92 0.39,5.857 1.076,8.796 z m \
241.797,-260.722 0,213.405 c 0,17.674 -13.175,31.771 -33.727,36.96 -22.562,5.592 \
-44.343,-3.854 -48.67,-21.148 -4.326,-17.324 10.45,-35.902 33.006,-41.547 \
10.196,-2.518 20.227,-2.004 28.626,0.952 l 0,-128.565 -115.371,21.084 -0.532,159.944 \
-0.023,0 c -0.101,15.15 -13.761,30.016 -33.408,34.88 -22.283,5.609 -45.643,-5.001 \
-48.148,-20.877 -4.285,-17.129 10.32,-35.518 32.663,-41.115 10.054,-2.5 19.878,-1.997 \
28.135,0.893 l 0,-189.328 157.449,-25.538 z" +           \
inkscape:connector-curvature="0" +           \
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visi \
ble;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation- \
filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opacity:1;fill \
-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:miter;stroke \
-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-renderi \
ng:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      </g>
+      <g
+         id="g5721-4-5"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5723-0-2"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5725-2-3"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5727-8-5"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5729-5-1"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5731-0-7"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5733-5-8"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5735-4-1"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5737-4-1"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5739-3-6"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5741-8-9"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5743-4-9"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5745-3-9"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5747-8-0"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +      <g
+         id="g5749-9-5"
+         style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visib \
ility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-inte \
rpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f8f9fa;fill-opac \
ity:1;fill-rule:nonzero;stroke-width:0.33296785;stroke-linecap:butt;stroke-linejoin:mi \
ter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;col \
or-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" \
/> +    </g>
+    <g
+       id="g6125-2-1"
+       transform="matrix(5.2395095,0,0,5.2395095,904.70235,-832.56609)"
+       style="fill:#f8f9fa;fill-opacity:1">
+      <g
+         id="g6085-3-3"
+         style="fill:#f8f9fa;fill-opacity:1">
+        <path
+           id="path6087-3-1"
+           d="m 16.681,13.4 c -0.7,-0.8 -1.7,-1.3 -2.9,-1.2 -0.1,-0.2 -0.5,-2.2 \
-0.5,-2.2 0,0 1.4,-2.1 1.7,-2.5 1.5,-2.4 1.6,-4.3 0.7,-6.2 -0.3,-0.7 -1.1,-1.3 \
-1.9,-1.3 -0.6,0 -1.1,0.5 -1.4,1.1 -1,1.7 -1,4.9 -0.5,7.1 0,0 -0.5,0.5 -1,1.1 -1,1.1 \
-2.1,2.3 -2.5,3.9 -0.5,1.8 -0.1,3.5 1,4.8 1.2,1.5 3,2.2 5.2,2 0.4,1.9 0.7,3.1 0.1,4.2 \
-0.2,0.4 -0.6,0.8 -1.3,0.8 -0.2,0 -0.3,0 -0.5,-0.1 0.6,-0.3 1.1,-0.9 1.1,-1.6 0,-1 \
-0.8,-1.8 -1.8,-1.8 -1.7,0.1 -1.8,1.8 -1.8,1.8 0,0.6 0.2,1.2 0.6,1.6 0.5,0.5 1.3,0.9 \
2.2,0.9 1.1,0 2.2,-0.4 2.6,-2 0.4,-1.3 -0.3,-3.4 -0.4,-4.1 1.1,-0.5 2.1,-2 2.2,-3 \
0.2,-1.1 -0.2,-2.4 -0.9,-3.3 z m -3.2,-11.1 c 0.1,-0.2 0.3,-0.3 0.5,-0.3 0.1,0 \
0.3,0.1 0.4,0.2 0.4,0.2 0.5,0.6 0.5,1.2 -0.1,1.5 -1.4,3.3 -2.1,3.9 -0.3,-1.4 -0.1,-4 \
0.7,-5 z m -2.9,15.7 c -0.7,-0.7 -1,-1.7 -0.9,-2.7 0.2,-1.6 1.3,-2.9 2.2,-3.9 \
0.2,-0.2 0.4,-0.4 0.5,-0.6 0.1,0.5 0.4,1.3 0.5,1.7 -1.2,0.5 -1.9,2.1 -1.8,3.4 0,0.6 \
0.2,1 0.5,1.4 0.1,0.1 0.2,0.2 0.3,0.2 0.1,0 0.3,-0.1 0.3,-0.2 l 0,0 c 0.1,-0.1 \
0.1,-0.3 0,-0.4 -0.1,-0.1 -0.1,-0.2 -0.1,-0.4 -0.1,-0.9 0.5,-1.6 1.2,-1.9 0.1,0.6 \
0.8,3.7 0.9,4.4 -1.3,0.4 -2.7,0 -3.6,-1 z m 4.5,0.6 c -0.2,-0.7 -0.3,-1.5 -0.5,-2.4 \
-0.1,-0.6 -0.2,-1.3 -0.4,-1.9 1.3,0 1.7,1.1 1.8,1.5 0.3,1.1 0,2.2 -0.9,2.8 z" +       \
style="fill:#f8f9fa;fill-opacity:1" +           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g6089-9-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6091-6-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6093-3-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6095-1-9"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6097-5-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6099-4-7"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6101-3-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6103-5-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6105-7-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6107-5-5"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6109-2-8"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6111-3-2"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6113-1-0"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6115-1-3"
+         style="fill:#f8f9fa;fill-opacity:1" />
+      <g
+         id="g6117-3-6"
+         style="fill:#f8f9fa;fill-opacity:1" />
+    </g>
+  </g>
+</svg>
diff --git a/src/app/qml/images/minuet-drawer.png \
b/src/app/qml/images/minuet-drawer.png new file mode 100644
index 0000000..7771200
Binary files /dev/null and b/src/app/qml/images/minuet-drawer.png differ
diff --git a/src/app/qml/images/more_vert.png b/src/app/qml/images/more_vert.png
new file mode 100644
index 0000000..017e45e
Binary files /dev/null and b/src/app/qml/images/more_vert.png differ
diff --git a/src/app/uicontroller.cpp b/src/app/uicontroller.cpp
index 2698cff..9408e1c 100644
--- a/src/app/uicontroller.cpp
+++ b/src/app/uicontroller.cpp
@@ -46,7 +46,7 @@ bool UiController::initialize(Core *core)
     QQmlApplicationEngine *engine = new QQmlApplicationEngine(this);
     QQmlContext *rootContext = engine->rootContext();
     rootContext->setContextProperty(QStringLiteral("core"), core);
-    engine->load(QUrl("qrc:qml/Main.qml"));
+    engine->load(QUrl("qrc:/Main.qml"));
 
     return true;
 }


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic