[connections/onboarding-dialog: 2/2] app: Introduce Onboarding dialog




commit 3f9b5cd563926573f8083379efca20e2eb839db0
Author: Felipe Borges <felipeborges gnome org>
Date:   Tue Jun 22 16:38:20 2021 +0200

    app: Introduce Onboarding dialog
    
    Fixes #39

 data/org.gnome.Connections.gschema.xml |    7 +
 src/application.vala                   |   20 +
 src/connections.gresource.xml          |    7 +
 src/meson.build                        |    6 +
 src/onboarding-dialog-page.vala        |   48 ++
 src/onboarding-dialog.vala             |   76 +++
 src/ui/onboarding-dialog-page.ui       |   41 ++
 src/ui/onboarding-dialog.ui            |  161 +++++
 src/ui/onboarding/configure-access.svg |  670 ++++++++++++++++++++
 src/ui/onboarding/empty.svg            |  591 ++++++++++++++++++
 src/ui/onboarding/multiplatform.svg    | 1041 ++++++++++++++++++++++++++++++++
 src/ui/style.css                       |   12 +
 12 files changed, 2680 insertions(+)
---
diff --git a/data/org.gnome.Connections.gschema.xml b/data/org.gnome.Connections.gschema.xml
index d5b4bdf..3ba7699 100644
--- a/data/org.gnome.Connections.gschema.xml
+++ b/data/org.gnome.Connections.gschema.xml
@@ -1,5 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <schemalist gettext-domain="connections">
        <schema id="org.gnome.Connections" path="/org/gnome/Connections/">
+      <key name="first-run" type="b">
+        <default>true</default>
+        <summary>First run</summary>
+        <description>
+          Whether Connections is running for the first time
+        </description>
+      </key>
        </schema>
 </schemalist>
diff --git a/src/application.vala b/src/application.vala
index 4c530db..3d05295 100644
--- a/src/application.vala
+++ b/src/application.vala
@@ -32,6 +32,12 @@ namespace Connections {
             get { return (windows.length () > 0) ? windows.data : null; }
         }
 
+        private GLib.Settings settings;
+        private bool first_run {
+            get { return settings.get_boolean ("first-run"); }
+            set { settings.set_boolean ("first-run", value); }
+        }
+
         construct {
             windows = new List<Connections.Window> ();
             model = new GLib.ListStore (typeof (Connections.Connection));
@@ -43,6 +49,8 @@ namespace Connections {
             application_id = Config.APPLICATION_ID;
             flags |= ApplicationFlags.HANDLES_COMMAND_LINE | ApplicationFlags.HANDLES_OPEN;
 
+            settings = new GLib.Settings ("org.gnome.Connections");
+
             var action = new GLib.SimpleAction ("help", null);
             action.activate.connect (show_help);
             add_action (action);
@@ -87,6 +95,12 @@ namespace Connections {
                                    "version", Config.VERSION);
         }
 
+        public override void startup () {
+            base.startup ();
+
+            Hdy.init ();
+        }
+
         public override void activate () {
             base.activate ();
 
@@ -96,6 +110,12 @@ namespace Connections {
 
             add_new_window ();
 
+            if (first_run) {
+                (new OnboardingDialog (main_window)).present ();
+
+                first_run = !first_run;
+            }
+
             load_connections ();
         }
 
diff --git a/src/connections.gresource.xml b/src/connections.gresource.xml
index a5e7c20..0dfdb92 100644
--- a/src/connections.gresource.xml
+++ b/src/connections.gresource.xml
@@ -12,5 +12,12 @@
     <file>ui/style.css</file>
     <file>ui/topbar.ui</file>
     <file>ui/window.ui</file>
+
+    <!-- Onboarding dialog -->
+    <file>ui/onboarding-dialog.ui</file>
+    <file>ui/onboarding-dialog-page.ui</file>
+    <file>ui/onboarding/configure-access.svg</file>
+    <file>ui/onboarding/empty.svg</file>
+    <file>ui/onboarding/multiplatform.svg</file>
   </gresource>
 </gresources>
diff --git a/src/meson.build b/src/meson.build
index 780e0b1..a4443b7 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -10,6 +10,8 @@ connections_sources = [
   'empty-view.vala',
   'main.vala',
   'notifications.vala',
+  'onboarding-dialog.vala',
+  'onboarding-dialog-page.vala',
   'properties.vala',
   'rdp-connection.vala',
   'thumbnailer.vala',
@@ -19,12 +21,16 @@ connections_sources = [
   'window.vala',
 ]
 
+cc = meson.get_compiler ('c')
+
 connections_deps = [
   config_h,
   valac.find_library ('config', dirs: src_dir),
+  cc.find_library('m'),
   dependency('gio-2.0', version: '>= 2.50'),
   dependency('gtk+-3.0', version: '>= 3.22'),
   dependency('gtk-vnc-2.0', version: '> 0.4.4'),
+  dependency('libhandy-1', version: '>= 1.0.0'),
   dependency ('libxml-2.0', version: '>= 2.7.8'),
 ]
 
diff --git a/src/onboarding-dialog-page.vala b/src/onboarding-dialog-page.vala
new file mode 100644
index 0000000..69b8ab7
--- /dev/null
+++ b/src/onboarding-dialog-page.vala
@@ -0,0 +1,48 @@
+// This file is part of GNOME Boxes. License: LGPLv2+
+using Gtk;
+
+namespace Connections {
+    [GtkTemplate (ui = "/org/gnome/Connections/ui/onboarding-dialog-page.ui")]
+    private class OnboardingDialogPage : Gtk.Box {
+        [GtkChild]
+        private unowned Label title_label;
+        [GtkChild]
+        private unowned Label description_label;
+
+        public string title {
+            set {
+                title_label.label = value;
+            }
+            get {
+                return title_label.label;
+            }
+        }
+        public string description {
+            set {
+                description_label.label = value;
+            }
+            get {
+                return description_label.label;
+            }
+        }
+
+        public string image { set; get; }
+
+        [GtkCallback]
+        private void load_css () {
+            var provider = new CssProvider ();
+            var css = """
+              .onboarding-dialog-page {
+                background-image: url("resource://%s");
+              }
+            """.printf (image);
+
+            try {
+                provider.load_from_data (css);
+                get_style_context ().add_provider (provider, STYLE_PROVIDER_PRIORITY_APPLICATION);
+            } catch (GLib.Error error) {
+                warning ("Failed to load CSS: %s", error.message);
+            }
+        }
+    }
+}
diff --git a/src/onboarding-dialog.vala b/src/onboarding-dialog.vala
new file mode 100644
index 0000000..f47997d
--- /dev/null
+++ b/src/onboarding-dialog.vala
@@ -0,0 +1,76 @@
+/* onboarding-dialog.vala
+ *
+ * Copyright (C) Red Hat, Inc
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Author: Felipe Borges <felipeborges gnome org>
+ *
+ */
+
+using Gtk;
+using Hdy;
+
+namespace Connections {
+    [GtkTemplate (ui = "/org/gnome/Connections/ui/onboarding-dialog.ui")]
+    private class OnboardingDialog : Hdy.Window {
+        [GtkChild]
+        private unowned Carousel paginator;
+        [GtkChild]
+        private unowned OnboardingDialogPage homepage;
+
+        private GLib.List<unowned OnboardingDialogPage> pages;
+
+        construct {
+            pages = new GLib.List<unowned OnboardingDialogPage> ();
+
+            OnboardingDialogPage? onboarding_page = null;
+            foreach (var page in paginator.get_children ()) {
+                assert (page is OnboardingDialogPage);
+
+                onboarding_page = page as OnboardingDialogPage;
+                pages.append (onboarding_page);
+            }
+
+            // Adds a custom link to the last page
+            if (onboarding_page != null) {
+                var learn_more_label = _("Read our tutorial to learn how.");
+
+                onboarding_page.description += " <a href=\'help:gnome-connections/connect\'>%s</a>".printf 
(learn_more_label);;
+            }
+        }
+
+        public OnboardingDialog (Window window) {
+            set_transient_for (window);
+        }
+
+        [GtkCallback]
+        private void on_next_button_clicked () {
+            var index = (int) Math.round (paginator.position) + 1;
+            if (index >= pages.length ())
+                return;
+
+            paginator.scroll_to (pages.nth_data (index));
+        }
+
+        [GtkCallback]
+        private void on_back_button_clicked () {
+            var index = (int) Math.round (paginator.position) - 1;
+            if (index < 0)
+                return;
+
+            paginator.scroll_to (pages.nth_data (index));
+        }
+    }
+}
diff --git a/src/ui/onboarding-dialog-page.ui b/src/ui/onboarding-dialog-page.ui
new file mode 100644
index 0000000..c200e4e
--- /dev/null
+++ b/src/ui/onboarding-dialog-page.ui
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<interface>
+  <template class="ConnectionsOnboardingDialogPage" parent="GtkBox">
+    <property name="visible">True</property>
+    <property name="orientation">vertical</property>
+    <property name="spacing">10</property>
+    <property name="expand">True</property>
+    <signal name="map" handler="load_css"/>
+    <style>
+      <class name="onboarding-dialog-page"/>
+    </style>
+
+    <child>
+      <object class="GtkLabel" id="title_label">
+        <property name="visible">True</property>
+        <property name="margin-top">330</property>
+        <style>
+          <class name="onboarding-dialog-page-title-label"/>
+        </style>
+        <attributes>
+          <attribute name="scale" value="2.2"/>
+        </attributes>
+      </object>
+    </child>
+
+    <child>
+      <object class="GtkLabel" id="description_label">
+        <property name="visible">True</property>
+        <property name="wrap">True</property>
+        <property name="max-width-chars">60</property>
+        <property name="justify">center</property>
+        <property name="halign">center</property>
+        <property name="use-markup">True</property>
+        <style>
+          <class name="dim-label"/>
+        </style>
+      </object>
+    </child>
+
+  </template>
+</interface>
diff --git a/src/ui/onboarding-dialog.ui b/src/ui/onboarding-dialog.ui
new file mode 100644
index 0000000..e7da3a5
--- /dev/null
+++ b/src/ui/onboarding-dialog.ui
@@ -0,0 +1,161 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<interface>
+  <template class="ConnectionsOnboardingDialog" parent="HdyWindow">
+    <property name="modal">True</property>
+    <property name="resizable">False</property>
+    <property name="type-hint">dialog</property>
+    <property name="height-request">600</property>
+    <property name="width-request">710</property>
+    <signal name="delete-event" handler="gtk_widget_hide_on_delete"/>
+    <style>
+      <class name="onboarding-dialog"/>
+    </style>
+
+    <child>
+      <object class="GtkBox">
+        <property name="visible">True</property>
+        <property name="border-width">0</property>
+        <property name="orientation">vertical</property>
+
+        <child>
+          <object class="GtkButton">
+            <property name="visible">True</property>
+            <property name="halign">end</property>
+            <property name="margin">10</property>
+            <signal name="clicked" handler="gtk_widget_destroy" object="ConnectionsOnboardingDialog"/>
+            <style>
+              <class name="flat"/>
+            </style>
+            <child>
+              <object class="GtkImage">
+                <property name="visible">True</property>
+                <property name="icon-name">window-close-symbolic</property>
+              </object>
+            </child>
+          </object>
+        </child>
+
+        <child>
+          <object class="GtkBox" id="indicator-spacer">
+            <property name="visible">True</property>
+          </object>
+        </child>
+
+        <child>
+          <object class="GtkOverlay">
+            <property name="visible">True</property>
+            <property name="expand">True</property>
+
+            <child>
+              <object class="HdyCarousel" id="paginator">
+                <property name="visible">True</property>
+                <property name="animation-duration">400</property>
+                <property name="margin-bottom">12</property>
+
+                <child>
+                  <object class="ConnectionsOnboardingDialogPage" id="homepage">
+                    <property name="title" translatable="yes">Welcome to Connections</property>
+                    <property name="description" translatable="yes">Connections makes it easy to use other 
desktops remotely.</property>
+                    <property name="image">/org/gnome/Connections/ui/onboarding/empty.svg</property>
+                  </object>
+                </child>
+
+                <child>
+                  <object class="ConnectionsOnboardingDialogPage">
+                    <property name="title" translatable="yes">Connect to Linux or Windows</property>
+                    <property name="description" translatable="yes">Remotely access a range of desktop 
operating systems.</property>
+                    <property name="image">/org/gnome/Connections/ui/onboarding/multiplatform.svg</property>
+                  </object>
+                </child>
+
+                <child>
+                  <object class="ConnectionsOnboardingDialogPage">
+                    <property name="title" translatable="yes">Configure for Access</property>
+                    <property name="description" translatable="yes">To connect to a desktop, it needs to be 
setup first.</property>
+                    <property 
name="image">/org/gnome/Connections/ui/onboarding/configure-access.svg</property>
+                  </object>
+                </child>
+
+              </object>
+            </child>
+
+            <child type="overlay">
+              <object class="GtkBox">
+                <property name="visible">True</property>
+                <property name="orientation">horizontal</property>
+                <property name="border-width">20</property>
+
+                <child>
+                  <object class="GtkButton" id="go_back_button">
+                    <property name="visible">True</property>
+                    <property name="can-focus">True</property>
+                    <property name="valign">center</property>
+                    <signal name="clicked" handler="on_back_button_clicked"/>
+                    <style>
+                      <class name="circular"/>
+                    </style>
+                    <child>
+                      <object class="GtkImage">
+                        <property name="visible">True</property>
+                        <property name="can-focus">False</property>
+                        <property name="icon-size">2</property>
+                        <property name="margin">5</property>
+                        <property name="icon-name">go-previous-symbolic</property>
+                      </object>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="pack-type">start</property>
+                  </packing>
+                </child>
+
+                <child>
+                  <object class="GtkButton" id="go_next_button">
+                    <property name="visible">True</property>
+                    <property name="can-focus">True</property>
+                    <property name="valign">center</property>
+                    <signal name="clicked" handler="on_next_button_clicked"/>
+                    <style>
+                      <class name="circular"/>
+                    </style>
+                    <child>
+                      <object class="GtkImage">
+                        <property name="visible">True</property>
+                        <property name="can-focus">False</property>
+                        <property name="icon-size">2</property>
+                        <property name="margin">5</property>
+                        <property name="icon-name">go-next-symbolic</property>
+                      </object>
+                    </child>
+                  </object>
+                  <packing>
+                    <property name="pack-type">end</property>
+                  </packing>
+                </child>
+              </object>
+              <packing>
+                <property name="pass-through">True</property>
+              </packing>
+            </child>
+          </object>
+        </child>
+
+        <child>
+          <object class="HdyCarouselIndicatorDots" id="indicator">
+            <property name="visible">True</property>
+            <property name="carousel">paginator</property>
+            <property name="margin-top">6</property>
+            <property name="margin-bottom">6</property>
+          </object>
+        </child>
+      </object>
+    </child>
+  </template>
+  <object class="GtkSizeGroup">
+    <property name="mode">vertical</property>
+    <widgets>
+      <widget name="indicator-spacer"/>
+      <widget name="indicator"/>
+    </widgets>
+  </object>
+</interface>
diff --git a/src/ui/onboarding/configure-access.svg b/src/ui/onboarding/configure-access.svg
new file mode 100644
index 0000000..86b54d0
--- /dev/null
+++ b/src/ui/onboarding/configure-access.svg
@@ -0,0 +1,670 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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";
+   inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
+   id="svg8"
+   version="1.1"
+   viewBox="0 0 800 600"
+   height="600"
+   width="800"
+   sodipodi:docname="configure-access.svg">
+  <defs
+     id="defs2">
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect725"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,22.105469,0,1 @ F,0,0,1,0,22.105469,0,1 @ 
F,0,0,1,0,0,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="0"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath966">
+      <rect
+         
style="fill:#9141ac;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+         id="rect968-3"
+         width="443.74219"
+         height="423.92188"
+         x="2.8359375"
+         y="361.125"
+         rx="0"
+         ry="0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath932">
+      <circle
+         
style="display:inline;fill:#9141ac;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+         id="circle934"
+         cx="60.445316"
+         cy="758.58594"
+         r="252.85938" />
+    </clipPath>
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect948"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ 
F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="30"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect1246"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,22.105469,0,1 @ F,0,0,1,0,22.105469,0,1 @ 
F,0,0,1,0,0,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="0"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect1532"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.9983433,0,1 @ 
F,0,0,1,0,2.9769524,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="0"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath984">
+      <circle
+         
style="font-variation-settings:normal;display:none;opacity:1;vector-effect:none;fill:#77767b;fill-opacity:1;stroke:none;stroke-width:5.04302;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;stop-color:#000000;stop-opacity:1"
+         id="circle986"
+         cx="541.88373"
+         cy="647.72638"
+         r="73.975525" />
+      <path
+         id="lpe_path-effect988"
+         
style="font-variation-settings:normal;display:block;opacity:1;vector-effect:none;fill:#77767b;fill-opacity:1;stroke:none;stroke-width:5.04302;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;stop-color:#000000;stop-opacity:1"
+         class="powerclip"
+         d="m 399.30566,389.6405 h 285.1561 v 408.04123 h -285.1561 z m 216.55359,258.08588 a 
73.975525,73.975525 0 0 0 -73.97552,-73.97553 73.975525,73.975525 0 0 0 -73.97553,73.97553 
73.975525,73.975525 0 0 0 73.97553,73.97552 73.975525,73.975525 0 0 0 73.97552,-73.97552 z" />
+    </clipPath>
+    <inkscape:path-effect
+       effect="powerclip"
+       id="path-effect988"
+       is_visible="true"
+       lpeversion="1"
+       inverse="true"
+       flatten="false"
+       hide_clip="false"
+       message="Use fill-rule evenodd on &lt;b&gt;fill and stroke&lt;/b&gt; dialog if no flatten result 
after convert clip to paths." />
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect259"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,8,0,1 @ F,0,0,1,0,8,0,1 @ F,0,0,1,0,8,0,1 @ F,0,0,1,0,8,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="8"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+  </defs>
+  <sodipodi:namedview
+     units="px"
+     borderlayer="true"
+     inkscape:showpageshadow="false"
+     showgrid="false"
+     inkscape:document-rotation="0"
+     inkscape:current-layer="g1344"
+     inkscape:document-units="px"
+     inkscape:cy="560"
+     inkscape:cx="400"
+     inkscape:zoom="0.35"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0"
+     borderopacity="1"
+     bordercolor="#383838"
+     pagecolor="#1f1f1f"
+     id="base">
+    <inkscape:grid
+       type="xygrid"
+       id="grid715" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata5">
+    <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></dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/"; />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/";>
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction"; />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution"; />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice"; />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution"; />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks"; />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike"; />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Layer 1">
+    <g
+       id="g1344"
+       transform="matrix(1.8519672,0,0,1.8519672,-2541.0731,4267.7846)">
+      <g
+         id="g2600"
+         transform="matrix(1.2295962,0,0,1.2295962,-348.71796,-1235.8106)">
+        <g
+           id="g824"
+           transform="matrix(0.61116798,0,0,0.61116798,-156.53812,-32.607189)"
+           style="stroke-width:1.26428">
+          <g
+             id="g973"
+             clip-path="url(#clipPath984)"
+             inkscape:path-effect="#path-effect988"
+             transform="matrix(0.36234062,0,0,0.36234062,2607.3521,-1374.2654)"
+             style="stroke-width:0.986377">
+            <path
+               
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.102362;stroke:none;stroke-width:4.96026;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;stop-color:#000000;stop-opacity:1"
+               id="rect926"
+               width="275.1561"
+               height="310.64557"
+               x="404.30566"
+               y="482.03616"
+               rx="20.673309"
+               ry="20.673309"
+               sodipodi:type="rect"
+               d="m 424.97897,482.03616 h 233.80948 c 11.45302,0 20.67331,9.2203 20.67331,20.67331 v 
269.29895 c 0,11.45302 -9.22029,20.67331 -20.67331,20.67331 H 424.97897 c -11.45301,0 -20.67331,-9.22029 
-20.67331,-20.67331 V 502.70947 c 0,-11.45301 9.2203,-20.67331 20.67331,-20.67331 z" />
+            <path
+               
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:#5e5c64;fill-opacity:1;stroke:none;stroke-width:4.97431;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;stop-color:#000000;stop-opacity:1"
+               id="rect257"
+               width="275.1561"
+               height="310.64557"
+               x="404.30566"
+               y="475.97519"
+               rx="20.673309"
+               ry="20.673309"
+               sodipodi:type="rect"
+               d="m 424.97897,475.97519 h 233.80948 c 11.45302,0 20.67331,9.2203 20.67331,20.67331 v 
269.29895 c 0,11.45301 -9.22029,20.67331 -20.67331,20.67331 H 424.97897 c -11.45301,0 -20.67331,-9.2203 
-20.67331,-20.67331 V 496.6485 c 0,-11.45301 9.2203,-20.67331 20.67331,-20.67331 z" />
+            <path
+               
style="fill:#434348;fill-opacity:1;stroke-width:0.986377;stroke-linecap:round;stop-color:#000000"
+               id="rect101"
+               width="275.1561"
+               height="310.64557"
+               x="404.30566"
+               y="394.6405"
+               rx="0"
+               ry="0"
+               sodipodi:type="rect"
+               d="m 404.30566,394.6405 h 275.1561 v 310.64557 h -275.1561 z" />
+          </g>
+          <g
+             transform="matrix(0.6596291,0,0,0.6596291,2067.515,-1293.7082)"
+             style="display:inline;stroke-width:0.959464;enable-background:new"
+             id="g65">
+            <path
+               
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.0472534px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
+               d="M 1367.7351,-75.863459 V 221.75228 a 8,8 135 0 1 -8,8 H 872.26485 a 8,8 45 0 1 -8,-8 V 
-75.863459 a 8,8 135 0 1 8,-8 h 487.47025 a 8,8 45 0 1 8,8 z"
+               id="path63"
+               inkscape:connector-curvature="0"
+               sodipodi:nodetypes="ccccc"
+               inkscape:path-effect="#path-effect259"
+               inkscape:original-d="M 1367.7351,-83.863459 V 229.75228 H 864.26485 V -83.863459 Z" />
+          </g>
+          <rect
+             
style="fill:#a51d2d;fill-opacity:1;stroke:none;stroke-width:0.663638;stroke-linecap:round;stop-color:#000000"
+             id="rect1457"
+             width="318.54663"
+             height="192.45515"
+             x="2644.6841"
+             y="-1342.3387" />
+          <g
+             transform="matrix(5.0059174,0,0,5.0059174,1839.4516,-2410.7766)"
+             id="g11699"
+             style="display:inline">
+            <g
+               id="g959-3"
+               transform="matrix(-0.2126116,0,0,-0.2126116,228.09919,286.93117)"
+               style="display:inline;enable-background:new">
+              <path
+                 
style="display:inline;opacity:1;vector-effect:none;fill:#adacab;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
+                 d="m 170,296 a 28,28 0 0 1 -28,-28 28,28 0 0 1 28,-28 28,28 0 0 1 28,28 28,28 0 0 1 -28,28 
z m 0.0312,-12 a 6.0312505,6.0000005 0 0 0 6.03125,-6 6.0312505,6.0000005 0 0 0 -6.03125,-6 
6.0312505,6.0000005 0 0 0 -6.03125,6 6.0312505,6.0000005 0 0 0 6.03125,6 z"
+                 id="path947-0"
+                 inkscape:connector-curvature="0" />
+              <g
+                 transform="matrix(0.70710678,-0.70710678,-0.70710678,-0.70710678,243.95332,484.3158)"
+                 id="g955-3">
+                <path
+                   
style="display:inline;opacity:1;vector-effect:none;fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
+                   d="M 124,213.02944 107.02945,230 l 8.36742,8.36743 3.65338,-3.41768 9.19239,9.19239 
3.51982,3.51829 v 0 l 8.61241,-0.12714 0.39079,12.3701 15.76125,-0.2049 4.94974,-4.94976 v -4.24264 z"
+                   id="path951-1"
+                   inkscape:connector-curvature="0"
+                   sodipodi:nodetypes="ccccccccccccc" />
+                <path
+                   sodipodi:nodetypes="cccccc"
+                   inkscape:connector-curvature="0"
+                   
style="display:inline;opacity:1;vector-effect:none;fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
+                   d="m 125.74823,221.26459 c -1.79388,0.002 -2.67811,2.18243 -1.39257,3.43359 l 
33.58547,33.5861 2.82844,-2.82843 -33.58579,-33.58579 c -0.37702,-0.38755 -0.89487,-0.60597 -1.43555,-0.60547 
z"
+                   id="path953-2" />
+              </g>
+              <path
+                 inkscape:connector-curvature="0"
+                 id="path957-8"
+                 d="m 170,298 a 28,28 0 0 0 28,-28 28,28 0 0 0 -28,-28 28,28 0 0 0 -28,28 28,28 0 0 0 28,28 
z m -0.0312,-12 a 6.0312505,6.0000005 0 0 1 -6.03125,-6 6.0312505,6.0000005 0 0 1 6.03125,-6 
6.0312505,6.0000005 0 0 1 6.03125,6 6.0312505,6.0000005 0 0 1 -6.03125,6 z"
+                 
style="display:inline;opacity:1;vector-effect:none;fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
 />
+            </g>
+            <g
+               transform="translate(0,-15.875)"
+               id="g15582">
+              <path
+                 inkscape:connector-curvature="0"
+                 id="path15005"
+                 d="m 189.37021,240.2238 a 5.9531248,5.9531248 0 0 1 8.41899,0 5.9531248,5.9531248 0 0 1 
0,8.41899 5.9531248,5.9531248 0 0 1 -8.41899,0 5.9531248,5.9531248 0 0 1 0,-8.41899 z m 1.79938,1.80876 a 
1.2756697,1.2823138 45.000002 0 0 -0.005,1.80877 1.2756697,1.2823138 45.000002 0 0 1.80877,-0.005 
1.2756697,1.2823138 45.000002 0 0 0.005,-1.80877 1.2756697,1.2823138 45.000002 0 0 -1.80876,0.005 z"
+                 
style="display:inline;opacity:1;vector-effect:none;fill:#adacab;fill-opacity:1;stroke:none;stroke-width:0.106306;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
 />
+              <path
+                 
style="display:inline;opacity:1;vector-effect:none;fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.106306;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
+                 d="m 195.23343,249.39449 3.60814,-3.60814 1.77901,1.77901 -0.72664,0.77675 1.95441,1.95441 
0.76895,0.82763 0.76147,0.0474 -0.027,1.8311 1.84764,-0.0436 -0.0436,3.35103 -1.05237,1.05237 h -0.90204 z"
+                 id="path15007"
+                 inkscape:connector-curvature="0"
+                 sodipodi:nodetypes="ccccccccccccc" />
+              <path
+                 sodipodi:nodetypes="cccccc"
+                 inkscape:connector-curvature="0"
+                 
style="display:inline;opacity:1;vector-effect:none;fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.106306;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
+                 d="m 196.98432,249.76618 c 4.2e-4,-0.3814 0.46401,-0.56939 0.73002,-0.29607 l 
7.14079,7.14066 -0.60135,0.60136 -7.14073,-7.14073 c -0.0824,-0.0802 -0.12884,-0.19026 -0.12873,-0.30522 z"
+                 id="path15009" />
+              <path
+                 
style="display:inline;opacity:1;vector-effect:none;fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.106306;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
+                 d="m 189.06953,239.92312 a 5.9531248,5.9531248 0 0 0 0,8.41899 5.9531248,5.9531248 0 0 0 
8.41899,0 5.9531248,5.9531248 0 0 0 0,-8.41899 5.9531248,5.9531248 0 0 0 -8.41899,0 z m 1.80876,1.79938 a 
1.2756697,1.2823138 45.000002 0 1 1.80877,-0.005 1.2756697,1.2823138 45.000002 0 1 -0.005,1.80877 
1.2756697,1.2823138 45.000002 0 1 -1.80877,0.005 1.2756697,1.2823138 45.000002 0 1 0.005,-1.80877 z"
+                 id="path15013"
+                 inkscape:connector-curvature="0" />
+            </g>
+            <path
+               inkscape:connector-curvature="0"
+               
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#deddda;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-
 
width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+               d="m 186.48009,220.47388 c -1.96542,-0.0244 -3.87993,0.86563 -5.12062,2.48253 
-1.65426,2.15586 -1.75207,5.13287 -0.24236,7.39232 1.13228,1.69458 2.98451,2.71041 4.94698,2.81481 
0.37841,0.0201 0.76088,0.002 1.14309,-0.047 -0.35115,-0.46367 -0.63646,-0.98024 -0.84078,-1.53583 
-1.55309,-0.009 -3.0353,-0.77508 -3.92896,-2.11253 -1.13518,-1.69892 -1.06247,-3.92384 0.18138,-5.54488 
1.24387,-1.62132 3.37596,-2.26806 5.31079,-1.61127 1.93483,0.65678 3.23029,2.46653 3.23029,4.5098 a 
0.79401,0.79401 0 1 0 1.58802,0 c 0,-2.71741 -1.73559,-5.13854 -4.30878,-6.01203 -0.6433,-0.21837 
-1.30392,-0.32776 -1.95905,-0.3359 z"
+               id="path7853" />
+          </g>
+        </g>
+        <g
+           transform="matrix(1.9603373,0,0,1.9603373,1381.808,-1048.4409)"
+           id="g29394"
+           style="display:inline;stroke-width:1.04199">
+          <rect
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.102362;stroke:none;stroke-width:1.037;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect29072"
+             width="63.5"
+             height="34.314987"
+             x="57.957989"
+             y="185.41743"
+             rx="1.7714537"
+             ry="1.7714537" />
+          <rect
+             ry="1.7714537"
+             rx="1.7714537"
+             y="183.89973"
+             x="57.957989"
+             height="34.509773"
+             width="63.5"
+             id="rect29074"
+             
style="display:inline;opacity:1;vector-effect:none;fill:#5e5c64;fill-opacity:1;stroke:none;stroke-width:1.03994;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="display:inline;opacity:1;vector-effect:none;fill:#9a9996;fill-opacity:1;stroke:none;stroke-width:1.037;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect29076"
+             width="63.5"
+             height="34.31498"
+             x="57.957989"
+             y="182.69067"
+             rx="1.7714537"
+             ry="1.7714537" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="M 89.808486,207.03241 H 109.9383 c 0.56117,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56117 -0.45176,1.01294 -1.01293,1.01294 H 89.808486 c -0.56117,0 -1.01293,-0.45177 -1.01293,-1.01294 v 
-3.2658 c 0,-0.56117 0.45176,-1.01294 1.01293,-1.01294 z"
+             id="path80"
+             sodipodi:nodetypes="sssssssss" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 113.21051,207.03241 h 4.58871 c 0.56117,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45176,1.01293 -1.01293,1.01293 h -4.58871 c -0.56116,0 -1.01293,-0.45177 -1.01293,-1.01293 v 
-3.2658 c 0,-0.56117 0.45177,-1.01294 1.01293,-1.01294 z"
+             id="path76" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 109.24176,200.41782 h 3.2658 c 0.56117,0 1.01294,0.45177 1.01294,1.01293 v 3.2658 c 
0,0.56117 -0.45177,1.01294 -1.01294,1.01294 h -3.2658 c -0.56116,0 -1.01293,-0.45177 -1.01293,-1.01294 v 
-3.2658 c 0,-0.56116 0.45177,-1.01293 1.01293,-1.01293 z"
+             id="path74" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 101.30425,200.41782 h 4.58871 c 0.56116,0 1.01293,0.45177 1.01293,1.01293 v 3.2658 c 
0,0.56117 -0.45177,1.01294 -1.01293,1.01294 h -4.58871 c -0.56117,0 -1.01293,-0.45177 -1.01293,-1.01294 v 
-3.2658 c 0,-0.56116 0.45176,-1.01293 1.01293,-1.01293 z"
+             id="path72" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 93.366753,200.41782 h 4.58871 c 0.56116,0 1.01293,0.45177 1.01293,1.01293 v 3.2658 c 
0,0.56117 -0.45177,1.01294 -1.01293,1.01294 h -4.58871 c -0.56117,0 -1.01293,-0.45177 -1.01293,-1.01294 v 
-3.2658 c 0,-0.56116 0.45176,-1.01293 1.01293,-1.01293 z"
+             id="path70" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 85.429263,200.41782 h 4.58871 c 0.56117,0 1.01293,0.45177 1.01293,1.01293 v 3.2658 c 
0,0.56117 -0.45176,1.01294 -1.01293,1.01294 h -4.58871 c -0.56116,0 -1.01293,-0.45177 -1.01293,-1.01294 v 
-3.2658 c 0,-0.56116 0.45177,-1.01293 1.01293,-1.01293 z"
+             id="path68" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 77.491742,200.41782 h 4.588711 c 0.56116,0 1.01294,0.45177 1.01294,1.01293 v 3.2658 c 
0,0.56117 -0.45178,1.01294 -1.01294,1.01294 h -4.588711 c -0.56117,0 -1.01293,-0.45177 -1.01293,-1.01294 v 
-3.2658 c 0,-0.56116 0.45176,-1.01293 1.01293,-1.01293 z"
+             id="path66" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 69.554249,200.41782 h 4.588706 c 0.561165,0 1.012933,0.45177 1.012933,1.01293 v 3.2658 c 
0,0.56117 -0.451768,1.01294 -1.012933,1.01294 h -4.588706 c -0.561165,0 -1.012933,-0.45177 -1.012933,-1.01294 
v -3.2658 c 0,-0.56116 0.451768,-1.01293 1.012933,-1.01293 z"
+             id="path64" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 105.27303,193.80324 h 4.58871 c 0.56116,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45177,1.01293 -1.01293,1.01293 h -4.58871 c -0.56116,0 -1.01293,-0.45177 -1.01293,-1.01293 v 
-3.2658 c 0,-0.56117 0.45177,-1.01294 1.01293,-1.01294 z"
+             id="path62" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 97.335513,193.80324 h 4.588707 c 0.56117,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45176,1.01293 -1.01293,1.01293 h -4.588707 c -0.56116,0 -1.01293,-0.45177 -1.01293,-1.01293 v 
-3.2658 c 0,-0.56117 0.45177,-1.01294 1.01293,-1.01294 z"
+             id="path60" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 89.398003,193.80324 h 4.58871 c 0.56116,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45177,1.01293 -1.01293,1.01293 h -4.58871 c -0.56117,0 -1.01293,-0.45177 -1.01293,-1.01293 v 
-3.2658 c 0,-0.56117 0.45176,-1.01294 1.01293,-1.01294 z"
+             id="path58" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 81.460512,193.80324 h 4.588721 c 0.56116,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45177,1.01293 -1.01293,1.01293 h -4.588721 c -0.56116,0 -1.01293,-0.45177 -1.01293,-1.01293 v 
-3.2658 c 0,-0.56117 0.45177,-1.01294 1.01293,-1.01294 z"
+             id="path56" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 73.523007,193.80324 h 4.588705 c 0.56117,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45176,1.01293 -1.01293,1.01293 h -4.588705 c -0.561165,0 -1.012933,-0.45177 -1.012933,-1.01293 v 
-3.2658 c 0,-0.56117 0.451768,-1.01294 1.012933,-1.01294 z"
+             id="path54" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 61.616749,193.80324 h 8.557466 c 0.561165,0 1.012933,0.45177 1.012933,1.01294 v 3.2658 c 
0,0.56116 -0.451768,1.01293 -1.012933,1.01293 h -8.557466 c -0.561165,0 -1.012933,-0.45177 -1.012933,-1.01293 
v -3.2658 c 0,-0.56117 0.451768,-1.01294 1.012933,-1.01294 z"
+             id="path52" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 109.24176,187.18866 h 8.55746 c 0.56116,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45177,1.01293 -1.01293,1.01293 h -8.55746 c -0.56116,0 -1.01293,-0.45177 -1.01293,-1.01293 v 
-3.2658 c 0,-0.56117 0.45177,-1.01294 1.01293,-1.01294 z"
+             id="path50" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 101.30426,187.18866 h 4.58871 c 0.56117,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45176,1.01293 -1.01293,1.01293 h -4.58871 c -0.56116,0 -1.01293,-0.45177 -1.01293,-1.01293 v 
-3.2658 c 0,-0.56117 0.45177,-1.01294 1.01293,-1.01294 z"
+             id="path48" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 93.366753,187.18866 h 4.58871 c 0.56116,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45177,1.01293 -1.01293,1.01293 h -4.58871 c -0.56117,0 -1.01293,-0.45177 -1.01293,-1.01293 v 
-3.2658 c 0,-0.56117 0.45176,-1.01294 1.01293,-1.01294 z"
+             id="path46" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 85.429273,187.18866 h 4.58871 c 0.56116,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45177,1.01293 -1.01293,1.01293 h -4.58871 c -0.56116,0 -1.01293,-0.45177 -1.01293,-1.01293 v 
-3.2658 c 0,-0.56117 0.45177,-1.01294 1.01293,-1.01294 z"
+             id="path44-2" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 77.491752,187.18866 h 4.588711 c 0.56117,0 1.01294,0.45177 1.01294,1.01294 v 3.2658 c 
0,0.56116 -0.45177,1.01293 -1.01294,1.01293 h -4.588711 c -0.56116,0 -1.01293,-0.45177 -1.01293,-1.01293 v 
-3.2658 c 0,-0.56117 0.45177,-1.01294 1.01293,-1.01294 z"
+             id="path42" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 69.554249,187.18866 h 4.588706 c 0.561165,0 1.012933,0.45177 1.012933,1.01294 v 3.2658 c 
0,0.56116 -0.451768,1.01293 -1.012933,1.01293 h -4.588706 c -0.561165,0 -1.012933,-0.45177 -1.012933,-1.01293 
v -3.2658 c 0,-0.56117 0.451768,-1.01294 1.012933,-1.01294 z"
+             id="path40-9" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 61.616749,187.18866 h 4.588706 c 0.561165,0 1.012933,0.45177 1.012933,1.01294 v 3.2658 c 
0,0.56116 -0.451768,1.01293 -1.012933,1.01293 h -4.588706 c -0.561165,0 -1.012933,-0.45177 -1.012933,-1.01293 
v -3.2658 c 0,-0.56117 0.451768,-1.01294 1.012933,-1.01294 z"
+             id="path38-3" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 61.616757,200.41782 h 4.588705 c 0.561165,0 1.012933,0.45177 1.012933,1.01293 v 3.2658 c 
0,0.56117 -0.451768,1.01294 -1.012933,1.01294 h -4.588705 c -0.561165,0 -1.012933,-0.45177 -1.012933,-1.01294 
v -3.2658 c 0,-0.56116 0.451768,-1.01293 1.012933,-1.01293 z"
+             id="path36-1" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 73.523007,207.03241 h 4.588705 c 0.56117,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45176,1.01293 -1.01293,1.01293 h -4.588705 c -0.561165,0 -1.012933,-0.45177 -1.012933,-1.01293 v 
-3.2658 c 0,-0.56117 0.451768,-1.01294 1.012933,-1.01294 z"
+             id="path34-9" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 61.616749,207.03241 h 8.557485 c 0.561165,0 1.012933,0.45177 1.012933,1.01294 v 3.2658 c 
0,0.56116 -0.451768,1.01293 -1.012933,1.01293 h -8.557485 c -0.561165,0 -1.012933,-0.45177 -1.012933,-1.01293 
v -3.2658 c 0,-0.56117 0.451768,-1.01294 1.012933,-1.01294 z"
+             id="path32-4" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 113.2105,193.80324 h 4.58871 c 0.56116,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45177,1.01293 -1.01293,1.01293 h -4.58871 c -0.56117,0 -1.01293,-0.45177 -1.01293,-1.01293 v 
-3.2658 c 0,-0.56117 0.45176,-1.01294 1.01293,-1.01294 z"
+             id="path30-7" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 115.85634,193.80324 h 1.94287 c 0.56116,0 1.01293,0.45177 1.01293,1.01294 v 9.88037 c 
0,0.56117 -0.45177,1.01294 -1.01293,1.01294 h -1.94287 c -0.56116,0 -1.01293,-0.45177 -1.01293,-1.01294 v 
-9.88037 c 0,-0.56117 0.45177,-1.01294 1.01293,-1.01294 z"
+             id="rect29280" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 427.88281,780.48438 c -2.12095,0 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 0,2.12096 
1.70717,3.82813 3.82812,3.82813 h 17.3418 c 2.12096,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 784.3125 c 
0,-2.12092 -1.70912,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path132" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 339.43428,780.48438 c -2.12093,0 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 0,2.12092 
1.70719,3.82813 3.82812,3.82813 h 76.07974 c 2.12092,-10e-6 3.83008,-1.70721 3.83008,-3.82813 V 784.3125 c 
0,-2.12092 -1.70916,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path128"
+             sodipodi:nodetypes="sssscssss" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 277.88281,780.48438 c -2.12094,0 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 0,2.12096 
1.70718,3.82813 3.82812,3.82813 h 17.3418 c 2.12094,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 784.3125 c 
0,-2.12092 -1.70914,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path126" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 232.88281,780.48438 c -2.12094,0 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 0,2.12096 
1.70718,3.82813 3.82812,3.82813 h 32.3418 c 2.12094,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 784.3125 c 
0,-2.12092 -1.70914,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path124" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 412.88281,755.48438 c -2.12092,-10e-6 -3.82812,1.70716 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.7072,3.82813 3.82812,3.82813 h 12.3418 c 2.12092,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 
759.3125 c 0,-2.12096 -1.70916,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path122" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 382.88281,755.48438 c -2.12092,-10e-6 -3.82812,1.70716 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.7072,3.82813 3.82812,3.82813 h 17.3418 c 2.12092,-10e-6 3.82812,-1.70717 3.82812,-3.82813 V 
759.3125 c 0,-2.12096 -1.7072,-3.82812 -3.82812,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path120" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 352.88281,755.48438 c -2.12094,-10e-6 -3.82812,1.70716 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.70718,3.82813 3.82812,3.82813 h 17.3418 c 2.12093,-10e-6 3.82812,-1.70717 3.82812,-3.82813 V 
759.3125 c 0,-2.12096 -1.70719,-3.82812 -3.82812,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path118" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 322.88281,755.48438 c -2.12093,-10e-6 -3.82812,1.70716 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.70719,3.82813 3.82812,3.82813 h 17.3418 c 2.12094,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 
759.3125 c 0,-2.12096 -1.70914,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path116" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 292.88281,755.48438 c -2.12093,-10e-6 -3.82812,1.70716 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.70719,3.82813 3.82812,3.82813 h 17.3418 c 2.12094,-10e-6 3.82812,-1.70717 3.82812,-3.82813 V 
759.3125 c 0,-2.12096 -1.70718,-3.82812 -3.82812,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path114" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 262.88281,755.48438 c -2.12094,-10e-6 -3.82812,1.70716 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.70718,3.82813 3.82812,3.82813 h 17.3418 c 2.12094,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 
759.3125 c 0,-2.12096 -1.70914,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path112" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 232.88281,755.48438 c -2.12094,-10e-6 -3.82812,1.70716 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.70718,3.82813 3.82812,3.82813 h 17.3418 c 2.12094,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 
759.3125 c 0,-2.12096 -1.70914,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path110" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 427.88281,730.48438 c -2.12092,-10e-6 -3.83008,1.7072 -3.83008,3.82812 v 12.34375 c 
0,2.12096 1.70916,3.82813 3.83008,3.82813 h 6.13281 v 21.17187 c 10e-6,2.12094 1.70719,3.82813 
3.82813,3.82813 h 7.34375 c 2.12094,0 3.82812,-1.70719 3.82812,-3.82813 V 747.0332 c 0.0124,-0.12585 
0.0371,-0.24774 0.0371,-0.37695 V 734.3125 c 0,-2.12092 -1.7072,-3.82812 -3.82812,-3.82812 h -0.0371 -7.34375 
z"
+             transform="scale(0.26458333)"
+             id="path108" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 397.88281,730.48438 c -2.12092,-10e-6 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.7072,3.82813 3.82812,3.82813 h 17.3418 c 2.12092,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 
734.3125 c 0,-2.12092 -1.70916,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path106" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 367.88281,730.48438 c -2.12093,-10e-6 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.70719,3.82813 3.82812,3.82813 h 17.3418 c 2.12092,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 
734.3125 c 0,-2.12092 -1.70916,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path104" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 337.88281,730.48438 c -2.12094,-10e-6 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.70718,3.82813 3.82812,3.82813 h 17.3418 c 2.12093,-10e-6 3.82812,-1.70717 3.82812,-3.82813 V 
734.3125 c 0,-2.12092 -1.70719,-3.82812 -3.82812,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path102" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 307.88281,730.48438 c -2.12093,-10e-6 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.70719,3.82813 3.82812,3.82813 h 17.3418 c 2.12094,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 
734.3125 c 0,-2.12092 -1.70914,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path100" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 277.88281,730.48438 c -2.12094,-10e-6 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.70718,3.82813 3.82812,3.82813 h 17.3418 c 2.12094,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 
734.3125 c 0,-2.12092 -1.70914,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path98" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 232.88281,730.48438 c -2.12094,-10e-6 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 
0,2.12096 1.70718,3.82813 3.82812,3.82813 h 32.3418 c 2.12094,-10e-6 3.83008,-1.70717 3.83008,-3.82813 V 
734.3125 c 0,-2.12092 -1.70914,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path96" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 412.88281,705.48438 c -2.12092,0 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 0,2.12096 
1.7072,3.82813 3.82812,3.82813 h 32.3418 c 2.12096,0 3.83008,-1.70717 3.83008,-3.82813 V 709.3125 c 
0,-2.12092 -1.70912,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path94" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 382.88281,705.48438 c -2.12092,0 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 0,2.12096 
1.7072,3.82813 3.82812,3.82813 h 17.3418 c 2.12092,0 3.83008,-1.70717 3.83008,-3.82813 V 709.3125 c 
0,-2.12092 -1.70916,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path92" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 352.88281,705.48438 c -2.12094,0 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 0,2.12096 
1.70718,3.82813 3.82812,3.82813 h 17.3418 c 2.12093,0 3.82812,-1.70717 3.82812,-3.82813 V 709.3125 c 
0,-2.12092 -1.70719,-3.82812 -3.82812,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path90" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 322.88281,705.48438 c -2.12093,0 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 0,2.12096 
1.70719,3.82813 3.82812,3.82813 h 17.3418 c 2.12094,0 3.83008,-1.70717 3.83008,-3.82813 V 709.3125 c 
0,-2.12092 -1.70914,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path88" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 292.88281,705.48438 c -2.12094,0 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 0,2.12096 
1.70718,3.82813 3.82812,3.82813 h 17.3418 c 2.12094,0 3.83008,-1.70717 3.83008,-3.82813 V 709.3125 c 
0,-2.12092 -1.70914,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path86" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 262.88281,705.48438 c -2.12094,0 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 0,2.12096 
1.70718,3.82813 3.82812,3.82813 h 17.3418 c 2.12094,0 3.83008,-1.70717 3.83008,-3.82813 V 709.3125 c 
0,-2.12092 -1.70914,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="path84" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:7.14935;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 232.88281,705.48438 c -2.12094,0 -3.82812,1.7072 -3.82812,3.82812 v 12.34375 c 0,2.12096 
1.70718,3.82813 3.82812,3.82813 h 17.3418 c 2.12093,0 3.83008,-1.70717 3.83008,-3.82813 V 709.3125 c 
0,-2.12092 -1.70915,-3.82812 -3.83008,-3.82812 z"
+             transform="scale(0.26458333)"
+             id="rect2260-9" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.65416;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 81.537083,207.03241 h 4.588705 c 0.56117,0 1.01293,0.45177 1.01293,1.01294 v 3.2658 c 
0,0.56116 -0.45176,1.01293 -1.01293,1.01293 h -4.588705 c -0.561165,0 -1.012933,-0.45177 -1.012933,-1.01293 v 
-3.2658 c 0,-0.56117 0.451768,-1.01294 1.012933,-1.01294 z"
+             id="path134" />
+          <path
+             
style="display:inline;opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:1.8916;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 81.537235,206.50316 c -0.561166,0 -1.012857,0.45169 -1.012857,1.01285 v 3.26595 c 
0,0.56117 0.451691,1.01286 1.012857,1.01286 h 4.588351 c 0.561165,0 1.013375,-0.45169 1.013375,-1.01286 v 
-3.26595 c 0,-0.56116 -0.45221,-1.01285 -1.013375,-1.01285 z"
+             id="path136" />
+        </g>
+        <g
+           transform="matrix(1.3610711,0,0,1.3610711,1324.6158,-881.96375)"
+           id="g11726"
+           style="display:inline;stroke-width:1.50077">
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.102362;stroke:none;stroke-width:2.38247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect15054"
+             width="23.283333"
+             height="35.454166"
+             x="248.70833"
+             y="158.74997"
+             rx="17.471415"
+             ry="17.471415" />
+          <rect
+             ry="11.641666"
+             rx="11.641666"
+             y="157.69165"
+             x="248.70833"
+             height="35.454166"
+             width="23.283333"
+             id="rect11709"
+             
style="opacity:1;vector-effect:none;fill:#5e5c64;fill-opacity:1;stroke:none;stroke-width:2.38247;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#9a9996;fill-opacity:1;stroke:none;stroke-width:6.35324;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect11701"
+             width="23.283333"
+             height="35.454166"
+             x="248.70833"
+             y="156.10417"
+             rx="11.641666"
+             ry="11.641666" />
+          <path
+             
style="fill:#5e5c64;fill-opacity:1;stroke:#5e5c64;stroke-width:0.397077px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+             d="M 260.61458,170.65625 V 156.10416"
+             id="path11703"
+             inkscape:connector-curvature="0" />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#36343d;fill-opacity:1;stroke:none;stroke-width:6.35324;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect11707"
+             width="5.2916665"
+             height="13.229166"
+             x="257.96875"
+             y="160.07292"
+             rx="2.6458333"
+             ry="2.6458333" />
+          <circle
+             r="1.4552083"
+             cy="162.00343"
+             cx="260.603"
+             id="path15652"
+             
style="opacity:1;vector-effect:none;fill:#c0bfbc;fill-opacity:0.102362;stroke:none;stroke-width:2.90278;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/src/ui/onboarding/empty.svg b/src/ui/onboarding/empty.svg
new file mode 100644
index 0000000..6234cbe
--- /dev/null
+++ b/src/ui/onboarding/empty.svg
@@ -0,0 +1,591 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
+   id="svg8"
+   version="1.1"
+   viewBox="0 0 800 600"
+   height="600"
+   width="800"
+   sodipodi:docname="empty.svg">
+  <defs
+     id="defs2">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient1447">
+      <stop
+         style="stop-color:#986a44;stop-opacity:1"
+         offset="0"
+         id="stop1550" />
+      <stop
+         style="stop-color:#33d17a;stop-opacity:0"
+         offset="1"
+         id="stop1552" />
+    </linearGradient>
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect725"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,22.105469,0,1 @ F,0,0,1,0,22.105469,0,1 @ 
F,0,0,1,0,0,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="0"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath966">
+      <rect
+         
style="fill:#9141ac;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+         id="rect968-3"
+         width="443.74219"
+         height="423.92188"
+         x="2.8359375"
+         y="361.125"
+         rx="0"
+         ry="0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath932">
+      <circle
+         
style="display:inline;fill:#9141ac;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+         id="circle934"
+         cx="60.445316"
+         cy="758.58594"
+         r="252.85938" />
+    </clipPath>
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect948"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ 
F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="30"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1447-3"
+       id="linearGradient1451"
+       x1="1480.0001"
+       y1="-2143.2158"
+       x2="1719.7267"
+       y2="-2143.2158"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-64.795962)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient1447-3">
+      <stop
+         style="stop-color:#9141ac;stop-opacity:1;"
+         offset="0"
+         id="stop1443" />
+      <stop
+         style="stop-color:#33d17a;stop-opacity:1"
+         offset="0.22789647"
+         id="stop1455" />
+      <stop
+         style="stop-color:#f5c211;stop-opacity:1"
+         offset="0.51072198"
+         id="stop1457" />
+      <stop
+         style="stop-color:#e66100;stop-opacity:1"
+         offset="0.78921306"
+         id="stop1453" />
+      <stop
+         style="stop-color:#26a269;stop-opacity:1"
+         offset="1"
+         id="stop1445" />
+    </linearGradient>
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect1246"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,22.105469,0,1 @ F,0,0,1,0,22.105469,0,1 @ 
F,0,0,1,0,0,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="0"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1119"
+       id="linearGradient1121"
+       x1="203.26143"
+       y1="784"
+       x2="203.26143"
+       y2="800"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1.1845985,0,0,1.1845985,1858.2704,-2946.342)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient1119">
+      <stop
+         style="stop-color:#9a9996;stop-opacity:1;"
+         offset="0"
+         id="stop1115" />
+      <stop
+         style="stop-color:#adaba8;stop-opacity:1"
+         offset="0.69999999"
+         id="stop1123" />
+      <stop
+         style="stop-color:#60605c;stop-opacity:1"
+         offset="1"
+         id="stop1117" />
+    </linearGradient>
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect1532"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.9983433,0,1 @ 
F,0,0,1,0,2.9769524,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="0"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter3375"
+       x="-0.12844041"
+       width="1.2568808"
+       y="-0.0817765"
+       height="1.163553">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.2675756"
+         id="feGaussianBlur3377" />
+    </filter>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter3379"
+       x="-0.12844041"
+       width="1.2568808"
+       y="-0.0817765"
+       height="1.163553">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.2675756"
+         id="feGaussianBlur3381" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1246"
+       id="radialGradient2577-6"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.6643447,0,0,3.7936088,658.74188,-3002.7312)"
+       cx="134.19965"
+       cy="222.98792"
+       fx="134.19965"
+       fy="222.98792"
+       r="2" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient1246">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="0"
+         id="stop1240" />
+      <stop
+         id="stop1242"
+         offset="0.39999995"
+         style="stop-color:#ffffff;stop-opacity:1" />
+      <stop
+         style="stop-color:#f6f5f4;stop-opacity:1"
+         offset="1"
+         id="stop1244" />
+    </linearGradient>
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter3371"
+       x="-0.080768801"
+       width="1.1615376"
+       y="-0.34888828"
+       height="1.6977766">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.2675756"
+         id="feGaussianBlur3373" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1246"
+       id="radialGradient2688"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.6643447,0,0,3.7936088,648.21559,-2982.1825)"
+       cx="134.19965"
+       cy="222.98792"
+       fx="134.19965"
+       fy="222.98792"
+       r="2" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1246"
+       id="radialGradient2692"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.6643447,0,0,3.7936088,669.58376,-2982.1825)"
+       cx="134.19965"
+       cy="222.98792"
+       fx="134.19965"
+       fy="222.98792"
+       r="2" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1447"
+       id="linearGradient1561"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(0,-64.795962)"
+       x1="1485.4869"
+       y1="-2061.4753"
+       x2="1485.4869"
+       y2="-2142.4702" />
+  </defs>
+  <sodipodi:namedview
+     units="px"
+     borderlayer="true"
+     inkscape:showpageshadow="false"
+     showgrid="false"
+     inkscape:document-rotation="0"
+     inkscape:current-layer="g1344"
+     inkscape:document-units="px"
+     inkscape:cy="560"
+     inkscape:cx="400"
+     inkscape:zoom="0.35"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0"
+     borderopacity="1"
+     bordercolor="#383838"
+     pagecolor="#1f1f1f"
+     id="base">
+    <inkscape:grid
+       type="xygrid"
+       id="grid715" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata5">
+    <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></dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/"; />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/";>
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction"; />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution"; />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice"; />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution"; />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks"; />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike"; />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Layer 1">
+    <g
+       id="g1344"
+       transform="matrix(1.8519672,0,0,1.8519672,-2541.0731,4267.7846)">
+      <g
+         id="g962"
+         clip-path="url(#clipPath966)"
+         transform="matrix(0.58268716,0,0,0.58268716,1386.9423,-2456.0592)"
+         style="display:inline">
+        <circle
+           
style="fill:#99c1f1;fill-opacity:0.581362;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+           id="circle1112"
+           cx="60.445312"
+           cy="758.58594"
+           r="277.1275" />
+        <g
+           id="g915"
+           clip-path="url(#clipPath932)">
+          <circle
+             
style="fill:#1a5fb4;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+             id="path885"
+             cx="60.445312"
+             cy="758.58594"
+             r="252.85938" />
+          <path
+             id="rect936"
+             
style="fill:#26a269;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+             d="m 143.60352,635.83398 v 12.78711 a 30,30 135 0 1 -30,30 h -3.38086 a 30,30 135 0 0 
-30.000004,30 v 21.38086 a 30,30 45 0 0 30.000004,30 h 49.77148 a 30,30 45 0 1 30,30 22.292214,22.292214 
17.899523 0 0 30,9.68946 h 74.5664 a 30,30 135 0 0 30,-30 V 635.83398 a 30,30 45 0 0 -30,-30 H 173.60352 a 
30,30 135 0 0 -30,30 z"
+             sodipodi:nodetypes="ccccccccc"
+             inkscape:path-effect="#path-effect948"
+             inkscape:original-d="m 143.60352,605.83398 v 72.78711 H 80.222656 v 81.38086 H 189.99414 v 
39.68946 h 134.5664 V 605.83398 Z" />
+          <rect
+             
style="fill:#26a269;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+             id="rect950"
+             width="48.96162"
+             height="84.073891"
+             x="52.350761"
+             y="577.55432"
+             rx="24.48081"
+             ry="24.48081" />
+          <rect
+             
style="fill:#26a269;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+             id="rect952"
+             width="119.84355"
+             height="44.2798"
+             x="141.50146"
+             y="540.62732"
+             rx="22.1399"
+             ry="22.1399" />
+        </g>
+        <path
+           id="path889"
+           
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+           d="m 314.62305,601.22777 a 40.625492,40.625492 0 0 0 -36.36328,22.57618 32.598728,32.598728 0 0 0 
-3.08985,-0.14844 32.598728,32.598728 0 0 0 -32.59961,32.59961 32.598728,32.598728 0 0 0 0.90039,7.61133 h 
136.4336 a 27.26228,27.26228 0 0 0 -24.81446,-25.94922 40.625492,40.625492 0 0 0 -40.43359,-36.68946 
40.625492,40.625492 0 0 0 -0.0332,0 z" />
+        <path
+           id="path903"
+           
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+           d="m 191.61719,667.90625 a 20.492287,20.492287 0 0 0 -19.42774,13.97852 17.221916,17.221916 0 0 0 
-6.51367,-1.28125 17.221916,17.221916 0 0 0 -17.22266,17.22265 17.221916,17.221916 0 0 0 2.19141,8.40821 h 
30.05859 a 17.221916,17.221916 0 0 0 0.20118,-0.36719 20.492287,20.492287 0 0 0 0.62304,0.36719 h 20.17578 a 
20.492287,20.492287 0 0 0 10.40626,-17.83594 20.492287,20.492287 0 0 0 -20.49219,-20.49219 z" />
+      </g>
+      <path
+         
style="fill:none;fill-opacity:1;stroke:url(#linearGradient1451);stroke-width:15;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="m 1482.4689,-2126.2712 v -112.0165 a 22.105469,22.105469 135 0 1 22.1055,-22.1055 h 185.6366 a 
22.105469,22.105469 45 0 1 22.1055,22.1055 v 106.6168"
+         id="path1244"
+         inkscape:path-effect="#path-effect1246"
+         inkscape:original-d="m 1482.4689,-2126.2712 v -134.122 h 229.8476 v 128.7223"
+         sodipodi:nodetypes="cccc" />
+      <path
+         
style="fill:none;fill-opacity:1;stroke:url(#linearGradient1561);stroke-width:15;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="m 1482.4689,-2126.2712 v -112.0165 a 22.105469,22.105469 135 0 1 22.1055,-22.1055 h 185.6366 a 
22.105469,22.105469 45 0 1 22.1055,22.1055 v 106.6168"
+         id="path723"
+         inkscape:path-effect="#path-effect725"
+         inkscape:original-d="m 1482.4689,-2126.2712 v -134.122 h 229.8476 v 128.7223"
+         sodipodi:nodetypes="cccc" />
+      <g
+         id="g1264">
+        <rect
+           
style="display:inline;fill:#deddda;fill-opacity:1;stroke:none;stroke-width:6.97847;stroke-linecap:round;paint-order:markers
 fill stroke;stop-color:#000000"
+           id="rect1108"
+           width="132.67503"
+           height="137.35532"
+           x="-1219.6641"
+           y="-2206.5237"
+           rx="14.857529"
+           ry="14.035833"
+           transform="matrix(-1,0,-0.25881904,0.96592583,0,0)" />
+        <path
+           id="rect1110"
+           
style="display:inline;fill:#3584e4;fill-opacity:1;stroke:none;stroke-width:6.85855;stroke-linecap:round;paint-order:markers
 fill stroke;stop-color:#000000"
+           d="m 1767.0554,-2121.8619 c 4.7769,0 6.9675,3.07 6.026,6.5838 l -26.9434,100.5541 c 
-0.9415,3.5138 -4.7794,6.586 -9.5549,6.586 h -93.9149 c -4.7754,0 -6.9669,-3.0722 -6.0254,-6.586 l 
26.9434,-100.5541 c 0.9416,-3.5138 4.7773,-6.5838 9.5543,-6.5838 z"
+           sodipodi:nodetypes="sssssssss" />
+        <path
+           id="rect1099"
+           
style="display:inline;fill:url(#linearGradient1121);fill-opacity:1;stroke:none;stroke-width:6.85855;stroke-linecap:round;paint-order:markers
 fill stroke;stop-color:#000000"
+           d="m 1754.0257,-2017.6168 v 9.4768 c 0,5.2502 -4.2266,9.4768 -9.4768,9.4768 h -199.0125 c 
-5.2501,0 -9.4768,-4.2266 -9.4768,-9.4768 v -9.4768 h 9.4768 199.0125 z" />
+        <path
+           id="path1106"
+           
style="display:inline;fill:#77767b;fill-opacity:1;stroke:none;stroke-width:6.85855;stroke-linecap:round;paint-order:markers
 fill stroke;stop-color:#000000"
+           d="m 1760.2828,-2017.6168 -2.5957,9.4768 c -1.3869,5.0637 -7.888,9.4768 -13.1382,9.4768 h 
-66.3375 c -5.2501,0 -9.4768,-4.8067 -9.4768,-9.4768 v -9.4768 h 9.4768 66.3375 z"
+           sodipodi:nodetypes="csssscccc" />
+        <path
+           
style="fill:#77767b;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+           id="rect1529"
+           width="47.981468"
+           height="5.972765"
+           x="1577.0032"
+           y="-2017.6277"
+           inkscape:path-effect="#path-effect1532"
+           sodipodi:type="rect"
+           d="m 1577.0032,-2017.6277 h 47.9814 v 2.9744 a 2.9983433,2.9983433 135 0 1 -2.9983,2.9984 h 
-42.0062 a 2.9769524,2.9769524 45 0 1 -2.9769,-2.977 z" />
+        <path
+           
style="display:inline;vector-effect:none;fill:#9a9996;fill-opacity:1;stroke:none;stroke-width:1.6787;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
+           d="m 1701.1705,-2076.5987 c -0.9479,3.8738 -3.1047,7.2432 -7.3046,9.7661 l 4.5786,2.5221 c 
0.8253,-4.3007 3.4996,-7.4005 7.3046,-9.7661 z"
+           id="use2717"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="ccccc" />
+        <path
+           sodipodi:type="inkscape:offset"
+           inkscape:radius="-3.8328948"
+           inkscape:original="M 80.677734 209.22656 L 63.632812 217.56641 C 75.424041 228.07049 82.946099 
241.06896 83.488281 258.14844 L 100.5332 249.80859 C 87.471486 238.55862 81.867541 224.6783 80.677734 
209.22656 z "
+           
style="vector-effect:none;fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:6.18585;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;filter:url(#filter3375)"
+           id="path3115"
+           transform="matrix(-0.30536203,0,-0.08182151,0.30536203,1744.4909,-2142.8369)"
+           d="m 77.5,215.04883 -7.273438,3.55859 c 8.829712,9.12153 14.889672,20.21486 16.597657,33.64258 l 
7.08789,-3.46875 C 84.401353,238.99799 79.367817,227.43765 77.5,215.04883 Z" />
+        <path
+           
style="display:inline;vector-effect:none;fill:#9a9996;fill-opacity:1;stroke:none;stroke-width:1.6787;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
+           d="m 1712.825,-2076.5987 c -1.1281,3.8738 -0.7769,7.2432 2.0709,9.7661 l -5.9301,2.5221 c 
1.4794,-4.3007 0.4663,-7.4005 -2.0709,-9.7661 z"
+           id="use2714"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="ccccc" />
+        <path
+           
style="display:inline;vector-effect:none;fill:#9a9996;fill-opacity:1;stroke:none;stroke-width:1.64581;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
+           d="m 1708.1269,-2062.7092 c -3.7908,1.7554 -7.3194,2.0807 -10.4109,-0.01 l -1.5651,5.8283 c 
4.169,-2.1536 7.5354,-1.8307 10.4109,0.01 z"
+           id="use2719"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="ccccc" />
+        <path
+           transform="matrix(0.30536203,0,-0.08182151,0.30536203,1705.1324,-2142.2644)"
+           id="path2795"
+           
style="vector-effect:none;fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:6.18585;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;filter:url(#filter3379)"
+           inkscape:original="M 80.677734 209.22656 L 63.632812 217.56641 C 75.424041 228.07049 82.946099 
241.06896 83.488281 258.14844 L 100.5332 249.80859 C 87.471486 238.55862 81.867541 224.6783 80.677734 
209.22656 z "
+           inkscape:radius="-3.8328948"
+           sodipodi:type="inkscape:offset"
+           d="m 77.5,215.04883 -7.273438,3.55859 c 8.829712,9.12153 14.889672,20.21486 16.597657,33.64258 l 
7.08789,-3.46875 C 84.401353,238.99799 79.367817,227.43765 77.5,215.04883 Z" />
+        <ellipse
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient2577-6);fill-opacity:1;stroke:none;stroke-width:0.621403;marker:none;enable-background:new"
+           id="circle2561-5"
+           cx="1150.4956"
+           cy="-2153.0085"
+           transform="matrix(1,0,-0.25881905,0.96592583,0,0)"
+           rx="7.3286886"
+           ry="7.5872169" />
+        <path
+           transform="matrix(-0.02121263,-0.31363817,-0.24790093,0.16127496,1762.3116,-2072.0163)"
+           id="path3117"
+           
style="vector-effect:none;fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:6.18585;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;filter:url(#filter3371)"
+           inkscape:original="M 80.677734 209.22656 L 63.632812 217.56641 C 75.424041 228.07049 82.946099 
241.06896 83.488281 258.14844 L 100.5332 249.80859 C 87.471486 238.55862 81.867541 224.6783 80.677734 
209.22656 z "
+           inkscape:radius="-3.8328948"
+           sodipodi:type="inkscape:offset"
+           d="m 77.5,215.04883 -7.273438,3.55859 c 8.829712,9.12153 14.889672,20.21486 16.597657,33.64258 l 
7.08789,-3.46875 C 84.401353,238.99799 79.367817,227.43765 77.5,215.04883 Z" />
+        <ellipse
+           cy="-2132.46"
+           cx="1139.9694"
+           id="circle2686"
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient2688);fill-opacity:1;stroke:none;stroke-width:0.621403;marker:none;enable-background:new"
+           transform="matrix(1,0,-0.25881905,0.96592583,0,0)"
+           rx="7.3286886"
+           ry="7.5872169" />
+        <ellipse
+           
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient2692);fill-opacity:1;stroke:none;stroke-width:0.621403;marker:none;enable-background:new"
+           id="circle2690"
+           cx="1161.3375"
+           cy="-2132.46"
+           transform="matrix(1,0,-0.25881905,0.96592583,0,0)"
+           rx="7.3286886"
+           ry="7.5872169" />
+      </g>
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="path1279"
+         cx="1482.4579"
+         cy="-2126.1147"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle1283"
+         cx="1482.4579"
+         cy="-2225.5574"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle1287"
+         cx="1497.5229"
+         cy="-2260.5115"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle1291"
+         cx="1537.4773"
+         cy="-2260.5115"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle1295"
+         cx="1577.5229"
+         cy="-2260.5115"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle1299"
+         cx="1617.5229"
+         cy="-2260.5115"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle1301"
+         cx="1657.4773"
+         cy="-2260.5115"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle1303"
+         cx="1697.5229"
+         cy="-2260.5115"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle1305"
+         cx="1712.5229"
+         cy="-2230.5574"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle1307"
+         cx="1712.5229"
+         cy="-2190.5115"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle717"
+         cx="1482.4579"
+         cy="-2193.1594"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle719"
+         cx="1482.4579"
+         cy="-2160.7615"
+         r="7.5228496" />
+      <circle
+         
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:15;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stop-color:#000000"
+         id="circle721"
+         cx="1712.5229"
+         cy="-2147.3142"
+         r="7.5228496" />
+    </g>
+  </g>
+</svg>
diff --git a/src/ui/onboarding/multiplatform.svg b/src/ui/onboarding/multiplatform.svg
new file mode 100644
index 0000000..f5560cf
--- /dev/null
+++ b/src/ui/onboarding/multiplatform.svg
@@ -0,0 +1,1041 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
+   id="svg8"
+   version="1.1"
+   viewBox="0 0 800 600"
+   height="600"
+   width="800"
+   sodipodi:docname="multiplatform.svg">
+  <defs
+     id="defs2">
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect725"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,22.105469,0,1 @ F,0,0,1,0,22.105469,0,1 @ 
F,0,0,1,0,0,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="0"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath966">
+      <rect
+         
style="fill:#9141ac;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+         id="rect968-3"
+         width="443.74219"
+         height="423.92188"
+         x="2.8359375"
+         y="361.125"
+         rx="0"
+         ry="0" />
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath932">
+      <circle
+         
style="display:inline;fill:#9141ac;fill-opacity:1;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.482318;stop-color:#000000"
+         id="circle934"
+         cx="60.445316"
+         cy="758.58594"
+         r="252.85938" />
+    </clipPath>
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect948"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ 
F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1 @ F,0,0,1,0,30,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="30"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect1246"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,22.105469,0,1 @ F,0,0,1,0,22.105469,0,1 @ 
F,0,0,1,0,0,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="0"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <inkscape:path-effect
+       effect="fillet_chamfer"
+       id="path-effect1532"
+       is_visible="true"
+       lpeversion="1"
+       satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.9983433,0,1 @ 
F,0,0,1,0,2.9769524,0,1"
+       unit="px"
+       method="auto"
+       mode="F"
+       radius="0"
+       chamfer_steps="1"
+       flexible="false"
+       use_knot_distance="true"
+       apply_no_radius="true"
+       apply_with_radius="true"
+       only_selected="false"
+       hide_knots="false" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1710"
+       id="linearGradient1712"
+       x1="-46.029434"
+       y1="119.02517"
+       x2="139.1572"
+       y2="119.02517"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient1710">
+      <stop
+         style="stop-color:#4a86cf;stop-opacity:1;"
+         offset="0"
+         id="stop1706" />
+      <stop
+         style="stop-color:#33d17a;stop-opacity:1"
+         offset="0.1439013"
+         id="stop1718" />
+      <stop
+         style="stop-color:#f6d32d;stop-opacity:1"
+         offset="0.32157201"
+         id="stop1716" />
+      <stop
+         style="stop-color:#ff7800;stop-opacity:1"
+         offset="0.49915493"
+         id="stop1714" />
+      <stop
+         style="stop-color:#e01b24;stop-opacity:1"
+         offset="0.6808424"
+         id="stop1720" />
+      <stop
+         style="stop-color:#9141ac;stop-opacity:1"
+         offset="0.853333"
+         id="stop1722" />
+      <stop
+         style="stop-color:#613583;stop-opacity:1"
+         offset="1"
+         id="stop1708" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     units="px"
+     borderlayer="true"
+     inkscape:showpageshadow="false"
+     showgrid="false"
+     inkscape:document-rotation="0"
+     inkscape:current-layer="g1344"
+     inkscape:document-units="px"
+     inkscape:cy="560"
+     inkscape:cx="400"
+     inkscape:zoom="0.35"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0"
+     borderopacity="1"
+     bordercolor="#383838"
+     pagecolor="#1f1f1f"
+     id="base">
+    <inkscape:grid
+       type="xygrid"
+       id="grid715" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata5">
+    <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></dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/"; />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/";>
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction"; />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution"; />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice"; />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution"; />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks"; />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike"; />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Layer 1">
+    <g
+       id="g1344"
+       transform="matrix(1.8519672,0,0,1.8519672,-2541.0731,4267.7846)">
+      <g
+         id="g2068"
+         transform="matrix(1.0736369,0,0,1.0736369,-102.05101,-588.36119)">
+        <g
+           transform="matrix(1.9220054,0,0,1.9220054,1296.605,-1703.35)"
+           id="g2378"
+           style="display:inline">
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2246"
+             width="95.25"
+             height="58.208336"
+             x="47.625"
+             y="84.666664"
+             rx="2.8838212"
+             ry="2.8838212" />
+          <rect
+             ry="2.8838212"
+             rx="2.8838212"
+             y="145.25624"
+             x="47.625"
+             height="58.208336"
+             width="95.25"
+             id="rect2404"
+             
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.102362;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#deddda;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2250"
+             width="95.25"
+             height="58.208336"
+             x="47.625"
+             y="144.19792"
+             rx="2.8838212"
+             ry="2.8838212" />
+          <rect
+             ry="2.8838212"
+             rx="2.8838212"
+             y="142.875"
+             x="47.625"
+             height="58.208336"
+             width="95.25"
+             id="rect2248"
+             
style="opacity:1;vector-effect:none;fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#c0bfbc;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2252"
+             width="84.666664"
+             height="29.104166"
+             x="52.916664"
+             y="148.16667"
+             rx="1.9577779"
+             ry="1.9577779" />
+          <rect
+             ry="1.9577779"
+             rx="1.9577779"
+             y="148.69583"
+             x="52.916664"
+             height="29.104166"
+             width="84.666664"
+             id="rect2332"
+             
style="opacity:1;vector-effect:none;fill:#deddda;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             ry="0.82584423"
+             rx="0.82584423"
+             y="137.58334"
+             x="63.5"
+             height="7.4083304"
+             width="63.5"
+             id="rect2258"
+             
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             ry="2.883826"
+             rx="2.8838263"
+             y="179.91667"
+             x="82.020836"
+             height="15.874996"
+             width="26.458313"
+             id="rect2254"
+             
style="opacity:1;vector-effect:none;fill:#deddda;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2260"
+             width="46.302094"
+             height="5.2916665"
+             x="74.083328"
+             y="170.65625"
+             rx="1.0129328"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="170.65625"
+             x="121.70834"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2262"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2264"
+             width="6.6145716"
+             height="5.2916665"
+             x="129.64584"
+             y="170.65625"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="164.04166"
+             x="125.67709"
+             height="5.2916665"
+             width="5.2916646"
+             id="rect2266"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2268"
+             width="6.6145716"
+             height="5.2916665"
+             x="117.73959"
+             y="164.04166"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="164.04166"
+             x="109.80209"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2270"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2272"
+             width="6.6145716"
+             height="5.2916665"
+             x="101.86459"
+             y="164.04166"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="164.04166"
+             x="93.927086"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2274"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2276"
+             width="6.6145716"
+             height="5.2916665"
+             x="85.989586"
+             y="164.04166"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="164.04166"
+             x="78.052094"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2278"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2280"
+             width="6.6145716"
+             height="5.2916665"
+             x="70.114586"
+             y="164.04166"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="164.04166"
+             x="62.177082"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2282"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2284"
+             width="6.6145716"
+             height="5.2916665"
+             x="121.70835"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="157.42708"
+             x="113.77085"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2286"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2288"
+             width="6.6145716"
+             height="5.2916665"
+             x="105.83335"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="157.42708"
+             x="97.895851"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2290"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2292"
+             width="6.6145716"
+             height="5.2916665"
+             x="89.958344"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="157.42708"
+             x="82.020844"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2294"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2296"
+             width="6.6145716"
+             height="5.2916665"
+             x="74.083351"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="157.42708"
+             x="66.145844"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2298"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2300"
+             width="10.583332"
+             height="5.2916665"
+             x="54.239582"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="150.8125"
+             x="125.6771"
+             height="5.2916665"
+             width="10.583317"
+             id="rect2302"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2304"
+             width="6.6145716"
+             height="5.2916665"
+             x="117.7396"
+             y="150.8125"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="150.8125"
+             x="109.8021"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2306"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2308"
+             width="6.6145716"
+             height="5.2916665"
+             x="101.8646"
+             y="150.8125"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="150.8125"
+             x="93.927094"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2310"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2312"
+             width="6.6145716"
+             height="5.2916665"
+             x="85.989594"
+             y="150.8125"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="150.8125"
+             x="78.052101"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2314"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2316"
+             width="6.6145716"
+             height="5.2916665"
+             x="70.114594"
+             y="150.8125"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="150.8125"
+             x="62.177082"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2318"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2320"
+             width="6.6145716"
+             height="5.2916665"
+             x="54.239582"
+             y="150.8125"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2322"
+             width="6.6145716"
+             height="5.2916665"
+             x="54.239594"
+             y="164.04166"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2324"
+             width="6.6145716"
+             height="5.2916665"
+             x="66.145844"
+             y="170.65625"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="170.65625"
+             x="54.239582"
+             height="5.2916665"
+             width="10.583351"
+             id="rect2326"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="157.42708"
+             x="129.64583"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect2328"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect2330"
+             width="3.968729"
+             height="11.906242"
+             x="132.29167"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+        </g>
+        <g
+           transform="matrix(1.9220054,0,0,1.9220054,1485.676,-1703.35)"
+           id="g1693"
+           style="display:inline">
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1603"
+             width="95.25"
+             height="58.208336"
+             x="47.625"
+             y="84.666664"
+             rx="2.8838212"
+             ry="2.8838212" />
+          <rect
+             ry="2.8838212"
+             rx="2.8838212"
+             y="145.25624"
+             x="47.625"
+             height="58.208336"
+             width="95.25"
+             id="rect1605"
+             
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:0.102362;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#5e5c64;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1607"
+             width="95.25"
+             height="58.208336"
+             x="47.625"
+             y="144.19792"
+             rx="2.8838212"
+             ry="2.8838212" />
+          <rect
+             ry="2.8838212"
+             rx="2.8838212"
+             y="142.875"
+             x="47.625"
+             height="58.208336"
+             width="95.25"
+             id="rect1609"
+             
style="opacity:1;vector-effect:none;fill:#77767b;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#3d3846;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1611"
+             width="84.666664"
+             height="29.104166"
+             x="52.916664"
+             y="148.16667"
+             rx="1.9577779"
+             ry="1.9577779" />
+          <rect
+             ry="1.9577779"
+             rx="1.9577779"
+             y="148.69583"
+             x="52.916664"
+             height="29.104166"
+             width="84.666664"
+             id="rect1613"
+             
style="opacity:1;vector-effect:none;fill:#5e5c64;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             ry="0.82584423"
+             rx="0.82584423"
+             y="137.58334"
+             x="63.5"
+             height="7.4083304"
+             width="63.5"
+             id="rect1615"
+             
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             ry="2.883826"
+             rx="2.8838263"
+             y="179.91667"
+             x="82.020836"
+             height="15.874996"
+             width="26.458313"
+             id="rect1617"
+             
style="opacity:1;vector-effect:none;fill:#5e5c64;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <path
+             id="rect1619"
+             
style="opacity:1;vector-effect:none;fill:url(#linearGradient1712);fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             d="m 50.732589,86.283562 h 89.034821 c 0.87211,0 1.5742,0.702092 1.5742,1.574199 V 139.6839 c 
0,0.87211 -0.70209,1.5742 -1.5742,1.5742 H 50.732589 c -0.872106,0 -1.574199,-0.70209 -1.574199,-1.5742 V 
87.857761 c 0,-0.872107 0.702093,-1.574199 1.574199,-1.574199 z m -98.371732,0 h 89.034821 c 0.87211,0 
1.5742,0.702092 1.5742,1.574199 V 139.6839 c 0,0.87211 -0.70209,1.5742 -1.5742,1.5742 h -89.034821 c 
-0.872106,0 -1.574199,-0.70209 -1.574199,-1.5742 V 87.857761 c 0,-0.872107 0.702093,-1.574199 
1.574199,-1.574199 z" />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1621"
+             width="46.302094"
+             height="5.2916665"
+             x="74.083328"
+             y="170.65625"
+             rx="1.0129328"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="170.65625"
+             x="121.70834"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1623"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1625"
+             width="6.6145716"
+             height="5.2916665"
+             x="129.64584"
+             y="170.65625"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="164.04166"
+             x="125.67709"
+             height="5.2916665"
+             width="5.2916646"
+             id="rect1627"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1629"
+             width="6.6145716"
+             height="5.2916665"
+             x="117.73959"
+             y="164.04166"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="164.04166"
+             x="109.80209"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1631"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1633"
+             width="6.6145716"
+             height="5.2916665"
+             x="101.86459"
+             y="164.04166"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="164.04166"
+             x="93.927086"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1635"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1637"
+             width="6.6145716"
+             height="5.2916665"
+             x="85.989586"
+             y="164.04166"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="164.04166"
+             x="78.052094"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1639"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1641"
+             width="6.6145716"
+             height="5.2916665"
+             x="70.114586"
+             y="164.04166"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="164.04166"
+             x="62.177082"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1643"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1645"
+             width="6.6145716"
+             height="5.2916665"
+             x="121.70835"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="157.42708"
+             x="113.77085"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1647"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1649"
+             width="6.6145716"
+             height="5.2916665"
+             x="105.83335"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="157.42708"
+             x="97.895851"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1651"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1653"
+             width="6.6145716"
+             height="5.2916665"
+             x="89.958344"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="157.42708"
+             x="82.020844"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1655"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1657"
+             width="6.6145716"
+             height="5.2916665"
+             x="74.083351"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="157.42708"
+             x="66.145844"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1659"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1661"
+             width="10.583332"
+             height="5.2916665"
+             x="54.239582"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="150.8125"
+             x="125.6771"
+             height="5.2916665"
+             width="10.583317"
+             id="rect1663"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1665"
+             width="6.6145716"
+             height="5.2916665"
+             x="117.7396"
+             y="150.8125"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="150.8125"
+             x="109.8021"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1667"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1669"
+             width="6.6145716"
+             height="5.2916665"
+             x="101.8646"
+             y="150.8125"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="150.8125"
+             x="93.927094"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1671"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1673"
+             width="6.6145716"
+             height="5.2916665"
+             x="85.989594"
+             y="150.8125"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="150.8125"
+             x="78.052101"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1675"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1677"
+             width="6.6145716"
+             height="5.2916665"
+             x="70.114594"
+             y="150.8125"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="150.8125"
+             x="62.177082"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1679"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1681"
+             width="6.6145716"
+             height="5.2916665"
+             x="54.239582"
+             y="150.8125"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1683"
+             width="6.6145716"
+             height="5.2916665"
+             x="54.239594"
+             y="164.04166"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1685"
+             width="6.6145716"
+             height="5.2916665"
+             x="66.145844"
+             y="170.65625"
+             rx="1.0129329"
+             ry="1.0129329" />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="170.65625"
+             x="54.239582"
+             height="5.2916665"
+             width="10.583351"
+             id="rect1687"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             ry="1.0129329"
+             rx="1.0129329"
+             y="157.42708"
+             x="129.64583"
+             height="5.2916665"
+             width="6.6145716"
+             id="rect1689"
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
 />
+          <rect
+             
style="opacity:1;vector-effect:none;fill:#241f31;fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal"
+             id="rect1691"
+             width="3.968729"
+             height="11.906242"
+             x="132.29167"
+             y="157.42708"
+             rx="1.0129329"
+             ry="1.0129329" />
+        </g>
+        <path
+           d="m 1698.6701,-1487.1859 v -30.8693 l -35.4576,5.172 v 25.6973 h 35.4576 m -37.9553,-25.3329 
-25.7486,3.7562 v 21.5767 h 25.7486 v -25.3326 m -25.7484,27.8303 v 21.8506 l 25.7484,3.7992 v -25.6498 h 
-25.7486 m 28.246,26.0189 35.4579,5.2314 v -31.2504 h -35.4576 v 26.019"
+           fill="#2f71f1"
+           id="path2042"
+           style="fill:#ffffff;stroke-width:0.192542" />
+        <g
+           transform="matrix(0.28077323,0,0,0.28077323,1284.6264,-1566.9852)"
+           id="g1975">
+          <circle
+             cx="710.74402"
+             cy="302.811"
+             r="137.44701"
+             fill="#ffffff"
+             id="circle1971" />
+          <path
+             d="m 709.905,163.504 c -76.834,0 -139.205,62.347 -139.205,139.182 0,76.834 62.37,139.205 
139.205,139.205 76.835,0 139.182,-62.37 139.182,-139.205 0,-76.835 -62.347,-139.182 -139.182,-139.182 z m 
-1.148,24.904 c 7.148,0 14.332,0.371 19.258,1.124 38.306,6.293 71.971,33.534 86.336,69.926 9.85,24.762 
10.54,52.387 2.057,78.107 -3.693,11.218 -12.595,27.774 -14.784,27.774 -2.189,-0.137 -16.836,-22.704 
-19.162,-29.544 -1.231,-3.558 -2.737,-15.475 -3.42,-28.062 -2.737,-44.873 -4.618,-58.567 -24.067,-78.514 
-20.005,-19.719 -49.72,-26.125 -75.117,-13.133 -9.987,4.925 -23.655,18.19 -28.444,27.63 -7.387,14.64 
-8.082,20.255 -7.535,68.276 l 0.407,44.041 -3.685,5.335 c -2.052,2.873 -6.17,8.08 -9.042,11.363 l 
-5.335,6.148 -6.411,-8.205 C 611.193,359.866 602.01,340.583 599,327.039 c -2.873,-12.997 -3.132,-37.354 
-0.67,-49.257 9.577,-44.463 47.195,-80.726 91.384,-88.25 4.789,-0.753 11.895,-1.124 19.043,-1.124 z m 
15.167,84.71 c 4.104,-0.137 6.685,0.838 9.832,3.3 8.482,7.252 10.53,23.122 4
 .784,37.487 l -2.176,5.598 4.234,4.785 c 4.925,5.746 4.793,4.937 2.057,14.377 -3.01,10.124 -1.904,14.494 
7.536,31.458 8.892,15.734 14.228,28.18 13.133,30.095 -1.368,2.189 -21.347,9.718 -31.745,11.77 -13.134,2.736 
-40.635,1.913 -53.084,-1.507 -9.03,-2.6 -21.065,-8.204 -31.052,-14.497 l -6.435,-4.115 3.014,-6.411 c 
1.642,-3.557 4.79,-9.32 6.842,-13.014 4.789,-8.072 6.98,-8.208 21.483,-0.957 11.902,6.02 18.045,6.852 
25.023,3.158 7.935,-4.105 36.53,-23.68 36.53,-25.047 0,-2.873 -6.009,-1.093 -23.11,6.842 -22.026,10.124 
-25.331,10.405 -36.96,2.607 -4.515,-3.01 -8.325,-6.158 -8.325,-6.842 0,-1.641 0.255,-1.632 9.832,1.651 
5.746,1.915 9.987,2.461 13.133,1.914 5.883,-1.095 42.556,-16.843 45.43,-19.306 4.104,-3.967 -4.655,-1.905 
-22.44,5.072 -26.951,10.671 -29.83,10.543 -48.3,-1.77 -8.619,-5.746 -9.975,-7.273 -9.975,-10.694 0,-2.6 
1.238,-4.783 3.564,-6.698 l 3.684,-2.87 -2.87,-6.556 c -8.483,-19.563 -2.876,-37.223 11.626,-37.223 8.619,0 
13.133,6.305 14.09,19.712 l 0.694,9.426 h 19.139 l 0.40
 6,-4.641 c 0.82,-12.04 2.051,-16.558 5.335,-20.526 4.377,-5.062 7.546,-6.579 15.07,-6.579 z m -2.105,16.554 
c -0.904,0.061 -1.963,0.309 -3.374,0.694 -3.283,0.82 -6.435,7.377 -6.435,13.396 0,4.515 0.405,5.083 
7.656,8.23 4.24,1.915 8.208,3.137 8.755,2.727 2.326,-1.368 4.386,-10.533 3.565,-15.048 -0.548,-2.599 
-2.47,-5.893 -4.522,-7.535 -2.445,-1.881 -3.657,-2.6 -5.645,-2.464 z m -54.616,1.77 c -1.513,0.105 
-3.006,0.799 -4.306,2.2 -4.104,4.379 -3.978,13.544 0.263,18.47 l 3.302,3.707 4.928,-3.708 c 4.24,-3.283 
5.047,-4.64 5.047,-9.019 0,-6.977 -4.693,-11.964 -9.234,-11.65 z"
+             fill="#241f31"
+             id="path1973" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/src/ui/style.css b/src/ui/style.css
index 05b37fc..1e53b4f 100644
--- a/src/ui/style.css
+++ b/src/ui/style.css
@@ -16,3 +16,15 @@
     border: 1px solid @theme_bg_color;
     background: mix (@theme_bg_color, shade (@theme_bg_color, 0.5), 0.5);
 }
+
+/* Onboarding dialog */
+.onboarding-dialog-page {
+    background-repeat: no-repeat;
+    background-size: 60%;
+    background-position: center 15%;
+}
+
+.onboarding-dialog-page,
+.onboarding-dialog-page-title-label {
+    color: white;
+}


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]