[gnome-tour/pan-tour-gradients] assets: preliminary GNOME 40 changes




commit 12829c0168c1eb3b5a57adbbf788c310cadf34b2
Author: Jakub Steiner <jimmac gmail com>
Date:   Fri Oct 2 17:00:38 2020 +0200

    assets: preliminary GNOME 40 changes
    
    - preliminary fullcolor tour
    - basic CSS keyframe animations
    - use of default grey backgrounds due to headerbar
    
    Fixes https://gitlab.gnome.org/GNOME/gnome-tour/-/issues/29

 build-aux/org.gnome.TourDevel.json       | 29 +++++++++---------
 data/resources.gresource.xml             | 16 ++++++----
 data/resources/assets/activities.svg     |  1 -
 data/resources/assets/blank.svg          |  1 +
 data/resources/assets/calendar.svg       |  1 -
 data/resources/assets/hand-fg.svg        |  1 +
 data/resources/assets/leftright-bg.svg   |  1 +
 data/resources/assets/makeyourown.svg    |  1 +
 data/resources/assets/overview.svg       |  1 +
 data/resources/assets/ready-to-go.svg    |  2 +-
 data/resources/assets/search.svg         |  1 -
 data/resources/assets/software.svg       |  2 --
 data/resources/assets/start-bg-bg-bg.svg |  1 +
 data/resources/assets/start-bg-bg.svg    |  1 +
 data/resources/assets/start-bg.svg       |  1 +
 data/resources/assets/start-fg.svg       |  1 +
 data/resources/assets/status-menu.svg    |  1 -
 data/resources/assets/updown-bg.svg      |  1 +
 data/resources/assets/workspaces.svg     |  1 +
 data/resources/style.css                 | 50 +++++++++++++++++++++++++++++---
 src/widgets/pages/image.rs               |  1 +
 src/widgets/pages/welcome.rs             |  7 +++--
 src/widgets/window.rs                    | 31 ++++++++++----------
 23 files changed, 105 insertions(+), 48 deletions(-)
---
diff --git a/build-aux/org.gnome.TourDevel.json b/build-aux/org.gnome.TourDevel.json
index c9cdc2a..d666d81 100644
--- a/build-aux/org.gnome.TourDevel.json
+++ b/build-aux/org.gnome.TourDevel.json
@@ -1,5 +1,5 @@
 {
-    "app-id": "org.gnome.TourDevel",
+    "app-id" : "org.gnome.TourDevel",
     "runtime" : "org.gnome.Platform",
     "runtime-version" : "3.36",
     "sdk" : "org.gnome.Sdk",
@@ -23,13 +23,15 @@
         ],
         "env" : {
             "CARGO_HOME" : "/run/build/gnome-tour/cargo",
-            "RUST_BACKTRACE" : "1"
+            "RUST_BACKTRACE" : "1",
+            "GTK_DEBUG" : "interactive"
         }
     },
-    "modules" : [{
-            "name": "libhandy",
-            "buildsystem": "meson",
-            "config-opts": [
+    "modules" : [
+        {
+            "name" : "libhandy",
+            "buildsystem" : "meson",
+            "config-opts" : [
                 "-Dintrospection=disabled",
                 "-Dgtk_doc=false",
                 "-Dtests=false",
@@ -37,15 +39,17 @@
                 "-Dvapi=false",
                 "-Dglade_catalog=disabled"
             ],
-            "cleanup": [
+            "cleanup" : [
                 "/include",
                 "/lib/pkgconfig"
             ],
-            "sources": [{
-                "type": "git",
-                "url": "https://gitlab.gnome.org/GNOME/libhandy.git";,
-                "commit": "94313c206258860b2428712e7ece1d02c5177857"
-            }]
+            "sources" : [
+                {
+                    "type" : "git",
+                    "url" : "https://gitlab.gnome.org/GNOME/libhandy.git";,
+                    "commit" : "94313c206258860b2428712e7ece1d02c5177857"
+                }
+            ]
         },
         {
             "name" : "gnome-tour",
@@ -62,4 +66,3 @@
         }
     ]
 }
-
diff --git a/data/resources.gresource.xml b/data/resources.gresource.xml
index 688446a..0ab8ad5 100644
--- a/data/resources.gresource.xml
+++ b/data/resources.gresource.xml
@@ -2,11 +2,17 @@
 <gresources>
   <gresource prefix="/org/gnome/Tour/">
       <file compressed="true" alias="style.css">resources/style.css</file>
-      <file compressed="true" alias="activities.svg">resources/assets/activities.svg</file>
-      <file compressed="true" alias="calendar.svg">resources/assets/calendar.svg</file>
-      <file compressed="true" alias="search.svg">resources/assets/search.svg</file>
-      <file compressed="true" alias="software.svg">resources/assets/software.svg</file>
-      <file compressed="true" alias="status-menu.svg">resources/assets/status-menu.svg</file>
+      <file compressed="true" alias="blank.svg">resources/assets/blank.svg</file>
+      <file compressed="true" alias="start-fg.svg">resources/assets/start-fg.svg</file>
+      <file compressed="true" alias="start-bg.svg">resources/assets/start-bg.svg</file>
+      <file compressed="true" alias="start-bg-bg.svg">resources/assets/start-bg-bg.svg</file>
+      <file compressed="true" alias="start-bg-bg-bg.svg">resources/assets/start-bg-bg-bg.svg</file>
+      <file compressed="true" alias="overview.svg">resources/assets/overview.svg</file>
+      <file compressed="true" alias="workspaces.svg">resources/assets/workspaces.svg</file>
+      <file compressed="true" alias="makeyourown.svg">resources/assets/makeyourown.svg</file>
+      <file compressed="true" alias="updown-bg.svg">resources/assets/updown-bg.svg</file>
+      <file compressed="true" alias="hand-fg.svg">resources/assets/hand-fg.svg</file>
+    <file compressed="true" alias="leftright-bg.svg">resources/assets/leftright-bg.svg</file>
       <file compressed="true" alias="ready-to-go.svg">resources/assets/ready-to-go.svg</file>
   </gresource>
 </gresources>
diff --git a/data/resources/assets/blank.svg b/data/resources/assets/blank.svg
new file mode 100644
index 0000000..e828370
--- /dev/null
+++ b/data/resources/assets/blank.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg"; width="600" height="300"><defs id="defs5677"><clipPath 
clipPathUnits="userSpaceOnUse" id="a"><rect y="-101.694" x="508.542" height="80.287" width="271.154" rx="0" 
ry="0" fill="#1a5fb4" stroke-width="2.793" stroke-linecap="round" id="rect5674"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/data/resources/assets/hand-fg.svg b/data/resources/assets/hand-fg.svg
new file mode 100644
index 0000000..d66d1da
--- /dev/null
+++ b/data/resources/assets/hand-fg.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg"; width="600" height="300"><g transform="translate(25 15)" 
fill="#3584e4"><circle cx="315" cy="105" r="35" opacity=".5"/><circle cx="245" cy="105" r="35" 
opacity=".5"/><circle cx="280" cy="95" r="35" opacity=".5"/></g><path d="M270 109a15 15 0 0115 15v72a3 3 0 
003 3h1a3 3 0 003-3v-8a14 14 0 0114-14 14 14 0 0114 14v8a3 3 0 003 3h1a3 3 0 003-3v-8a14 14 0 0114-14 14 14 0 
0114 14v8a3 3 0 003 3h1a3 3 0 003-3v-1a14 14 0 0114-14 14 14 0 0114 14v74a30 30 0 01-30 30h-80a48.284 48.284 
0 01-34.142-14.142l-47.511-47.511a13.61 13.61 0 01-1.264-17.79l.834-1.113a12.198 12.198 0 
0116.754-2.675l28.04 19.63A7.81 7.81 0 00255 229V124a15 15 0 0115-15z" opacity=".05"/><path d="M270 105a15 15 
0 0115 15v72a3 3 0 003 3h1a3 3 0 003-3v-83a14 14 0 0114-14 14 14 0 0114 14v83a3 3 0 003 3h1a3 3 0 
003-3v-73a14 14 0 0114-14 14 14 0 0114 14v73a3 3 0 003 3h1a3 3 0 003-3v-1a14 14 0 0114-14 14 14 0 0114 
14v74a30 30 0 01-30 30h-80a48.284 48.284 0 01-34.142-14.142l-45.71-45.71a15.81
 2 15.812 0 01-1.029-21.229l.042-.051a14.582 14.582 0 0120.344-2.14l23.762 18.926A7.229 7.229 0 00255 
225V120a15 15 0 0115-15z" fill="#f6f5f4"/><path d="M196.258 219.491c-1.993 5.044-.093 11.674 3.742 
15.509l45.857 45.857A48.284 48.284 0 00280 295h80c16.569 0 30-13.431 30-30v-10c0 16.569-13.431 30-30 
30h-80a48.284 48.284 0 01-34.143-14.143l-46.564-46.74a13.61 13.61 0 01-3.035-4.626z" fill="#deddda"/><defs 
id="defs5677"><clipPath clipPathUnits="userSpaceOnUse" id="a"><rect y="-101.694" x="508.542" height="80.287" 
width="271.154" rx="0" ry="0" fill="#1a5fb4" stroke-width="2.793" stroke-linecap="round" 
id="rect5674"/></clipPath></defs></svg>
\ No newline at end of file
diff --git a/data/resources/assets/leftright-bg.svg b/data/resources/assets/leftright-bg.svg
new file mode 100644
index 0000000..67d815d
--- /dev/null
+++ b/data/resources/assets/leftright-bg.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; width="600" 
height="300"><defs><linearGradient id="a"><stop offset="0" stop-color="#1c71d8"/><stop offset="1" 
stop-color="#33d17a"/></linearGradient><linearGradient xlink:href="#a" id="b" x1="114.955" y1="150.56" 
x2="497.629" y2="150.56" gradientUnits="userSpaceOnUse"/></defs><path d="M343.412 6.958L264.768 85.6a16 16 0 
01-22.627 0l-41.083-41.083a16 16 0 00-22.628 0l-58.789 58.79a16 16 90 000 22.627l41.083 41.083a16 16 90 010 
22.627l-23.096 23.097a16 16 90 000 22.627l58.789 58.79a16 16 180 0022.627 0L343.27 169.932a16 16 180 0122.627 
0l45.625 45.625a16 16 180 0022.627 0l58.79-58.79a16.015 16.015 90.027 00.01-22.637L366.028 6.969a15.985 
15.985.027 00-22.616-.011z" fill="url(#b)"/><rect width="324.179" height="195.739" x="145.536" y="48.014" 
rx="26.854" ry="26.854" fill="#c0bfbc"/><path d="M169.965 153.585l-8.563-8.563 8.563-8.563m-8.563 
8.563h17.126M444.061 153.585l8.563-8.563-8.563-8.563m8.563 8.563h-
 17.126" stroke-width="5.138" fill="none" stroke="#fff" stroke-linecap="round"/></svg>
\ No newline at end of file
diff --git a/data/resources/assets/makeyourown.svg b/data/resources/assets/makeyourown.svg
new file mode 100644
index 0000000..29d1865
--- /dev/null
+++ b/data/resources/assets/makeyourown.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; height="300" 
width="600"><defs><linearGradient id="b"><stop offset="0" stop-color="#d5d3cf"/><stop offset=".036" 
stop-color="#e4e1de"/><stop offset=".071" stop-color="#d5d3cf"/><stop offset=".929" 
stop-color="#d5d3cf"/><stop offset=".964" stop-color="#e4e1de"/><stop offset="1" 
stop-color="#d5d3cf"/></linearGradient><linearGradient id="C"><stop offset="0" stop-color="#9141ac"/><stop 
offset="1" stop-color="#ed333b"/></linearGradient><linearGradient xlink:href="#b" id="bp" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(.25 0 0 .25 -15.5 297.009)" x1="513.5" y1="-88.536" 
x2="277.5" y2="-88.536"/><linearGradient xlink:href="#b" id="bq" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(.25 0 0 .25 -22 121.009)" x1="120" y1="619.964" x2="568" 
y2="619.964"/><linearGradient xlink:href="#c" id="br" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(-6.712 -3)" x1="106.712" y1="227" x2=
 "58.712" y2="227"/><linearGradient id="c"><stop offset="0" stop-color="#26a269"/><stop offset="1" 
stop-color="#26a269" stop-opacity="0"/></linearGradient><linearGradient xlink:href="#d" id="bs" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(-6.712 -4)" x1="23.712" y1="268.75" x2="27.212" 
y2="268.75"/><linearGradient id="d"><stop offset="0" stop-color="#e54b57"/><stop offset="1" 
stop-color="#a51d2d"/></linearGradient><linearGradient xlink:href="#e" id="bm" gradientUnits="userSpaceOnUse" 
x1="142" y1="268" x2="198" y2="268"/><linearGradient id="e"><stop offset="0" stop-color="#77767b"/><stop 
offset=".176" stop-color="#c0bfbc"/><stop offset=".409" stop-color="#77767b"/><stop offset="1" 
stop-color="#3d3846"/></linearGradient><linearGradient xlink:href="#f" id="bn" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(55.1 .071)" x1="78.692" y1="238.308" x2="67.122" y2="249.878"/><linearGradient 
id="f"><stop offset="0" stop-color="#f6f5f4"/><stop offset=".257" stop-colo
 r="#fff"/><stop offset=".6" stop-color="#c0bfbc"/><stop offset=".703" stop-color="#f6f5f4"/><stop offset="1" 
stop-color="#f6f5f4"/></linearGradient><linearGradient xlink:href="#g" id="bo" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(55.77 171.284)" x1="88.508" y1="67.68" x2="85.887" y2="70.301"/><linearGradient 
id="g"><stop offset="0" stop-color="#c0bfbc"/><stop offset="1" 
stop-color="#f6f5f4"/></linearGradient><linearGradient xlink:href="#h" id="bl" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(1.8294 -.816 .816 1.8294 -3637.962 92.03)" x1="1660.857" y1="806.297" x2="1662.99" 
y2="812.882"/><linearGradient id="h"><stop offset="0" stop-color="#9a9996"/><stop offset="1" 
stop-color="#77767b"/></linearGradient><linearGradient xlink:href="#i" id="az" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="216" y1="144" x2="360" y2="144"/><linearGradient id="B"><stop 
offset="0" stop-color="#fff"/><stop offset=".4" stop-color="#fff"/><stop o
 ffset="1" stop-color="#f6f5f4"/></linearGradient><linearGradient xlink:href="#d" id="ax" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(-6.712 -4)" x1="23.712" y1="268.75" x2="27.212" 
y2="268.75"/><linearGradient xlink:href="#c" id="aw" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(-6.712 -3)" x1="106.712" y1="227" x2="58.712" y2="227"/><linearGradient 
xlink:href="#b" id="av" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.25 0 0 .25 -22 121.009)" 
x1="120" y1="619.964" x2="568" y2="619.964"/><linearGradient xlink:href="#b" id="au" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(.25 0 0 .25 -15.5 297.009)" x1="513.5" y1="-88.536" 
x2="277.5" y2="-88.536"/><linearGradient xlink:href="#g" id="at" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(55.77 171.284)" x1="88.508" y1="67.68" x2="85.887" y2="70.301"/><linearGradient 
xlink:href="#f" id="as" gradientUnits="userSpaceOnUse" gradientTransform="translate(55.1 .071)" x1="78.692" y
 1="238.308" x2="67.122" y2="249.878"/><linearGradient xlink:href="#e" id="ar" gradientUnits="userSpaceOnUse" 
x1="142" y1="268" x2="198" y2="268"/><linearGradient xlink:href="#j" id="bc" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(0 640)" x1="384" y1="120" x2="416" y2="120"/><linearGradient id="j"><stop 
offset="0" stop-color="#deddda"/><stop offset=".511" stop-color="#fff"/><stop offset="1" 
stop-color="#c0bfbc"/></linearGradient><linearGradient xlink:href="#k" id="aX" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(42.443 122.181)" x1="32" y1="239.25" x2="56" y2="196"/><linearGradient 
id="k"><stop offset="0" stop-color="#c061cb"/><stop offset="1" 
stop-color="#8f58c8"/></linearGradient><linearGradient xlink:href="#l" id="aY" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(42.443 122.181)" x1="64" y1="260" x2="80" y2="220"/><linearGradient id="l"><stop 
offset="0" stop-color="#2dc0af"/><stop offset="1" stop-color="#3584e4"/></linearGradient><linea
 rGradient xlink:href="#m" id="aZ" gradientUnits="userSpaceOnUse" gradientTransform="translate(42.443 
122.181)" x1="56" y1="252" x2="0" y2="244"/><linearGradient id="m"><stop offset="0" stop-color="#fff"/><stop 
offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient xlink:href="#n" id="ba" 
gradientUnits="userSpaceOnUse" gradientTransform="rotate(-120 320.2 508.254)" x1="529.288" y1="441.731" 
x2="543.341" y2="408.599"/><linearGradient id="n"><stop offset="0" stop-color="#2dc0af"/><stop offset="1" 
stop-color="#5ed9cb"/></linearGradient><linearGradient xlink:href="#o" id="bb" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(-461.557 -35.819)" x1="529.288" y1="441.731" x2="543.341" 
y2="408.599"/><linearGradient id="o"><stop offset="0" stop-color="#f9f06b"/><stop offset="1" 
stop-color="#f6d32d"/></linearGradient><linearGradient xlink:href="#h" id="aq" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(1.8294 -.816 .816 1.8294 -3637.962 92.03)" x1="
 1660.857" y1="806.297" x2="1662.99" y2="812.882"/><linearGradient id="A"><stop offset="0" 
stop-color="#fdfacf"/><stop offset=".4" stop-color="#f9f06b"/><stop offset="1" 
stop-color="#e5a50a"/></linearGradient><linearGradient xlink:href="#p" id="aW" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(-6 176)" x1="85" y1="107.162" x2="85" y2="86"/><linearGradient id="p"><stop 
offset="0" stop-color="#eef4fc"/><stop offset="1" stop-color="#fff"/></linearGradient><linearGradient 
xlink:href="#q" id="aP" gradientUnits="userSpaceOnUse" x1="45.999" y1="246.969" x2="64" 
y2="276"/><linearGradient id="q"><stop offset="0" stop-color="#613583"/><stop offset="1" 
stop-color="#a347ba"/></linearGradient><linearGradient xlink:href="#r" id="aQ" gradientUnits="userSpaceOnUse" 
x1="82" y1="225.608" x2="64" y2="196"/><linearGradient id="r"><stop offset="0" stop-color="#e5a50a"/><stop 
offset="1" stop-color="#f6d32d"/></linearGradient><linearGradient xlink:href="#s" id="aR" 
gradientUnits="userSpaceOnU
 se" x1="45.999" y1="225.608" x2="28" y2="256.785"/><linearGradient id="s"><stop offset="0" 
stop-color="#1a5fb4"/><stop offset="1" stop-color="#3584e4"/></linearGradient><linearGradient xlink:href="#t" 
id="aS" gradientUnits="userSpaceOnUse" x1="82.001" y1="246.393" x2="100" y2="216"/><linearGradient 
id="t"><stop offset="0" stop-color="#c64600"/><stop offset="1" 
stop-color="#ff7800"/></linearGradient><linearGradient xlink:href="#u" id="aT" gradientUnits="userSpaceOnUse" 
x1="63.999" y1="215.215" x2="28" y2="215.216"/><linearGradient id="u"><stop offset="0" 
stop-color="#26a269"/><stop offset="1" stop-color="#33d17a"/></linearGradient><linearGradient xlink:href="#v" 
id="aU" gradientUnits="userSpaceOnUse" x1="64.499" y1="257.074" x2="100" y2="258"/><linearGradient 
id="v"><stop offset="0" stop-color="#a51d2d"/><stop offset="1" 
stop-color="#e01b24"/></linearGradient><linearGradient xlink:href="#i" id="ay" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="352" y1
 ="256" x2="448" y2="256"/><linearGradient id="i"><stop offset="0" stop-color="#f6d32d"/><stop offset=".182" 
stop-color="#f9f06b"/><stop offset=".795" stop-color="#e5a50a"/><stop offset="1" 
stop-color="#f6d32d"/></linearGradient><linearGradient xlink:href="#i" id="aF" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="216" y1="144" x2="360" y2="144"/><linearGradient 
xlink:href="#i" id="aD" gradientUnits="userSpaceOnUse" gradientTransform="translate(804 -220.033)" x1="64" 
y1="280" x2="240" y2="280"/><linearGradient xlink:href="#j" id="ah" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(0 640)" x1="384" y1="120" x2="416" y2="120"/><linearGradient id="z"><stop 
offset="0" stop-color="#949390"/><stop offset="1" stop-color="#767579"/></linearGradient><linearGradient 
xlink:href="#i" id="aC" gradientUnits="userSpaceOnUse" gradientTransform="translate(804 -220.033)" x1="352" 
y1="256" x2="448" y2="256"/><linearGradient xlink:href="#w" id="aE" gradientUni
 ts="userSpaceOnUse" gradientTransform="translate(828 -220.033)" x1="317.666" y1="211.334" x2="341.571" 
y2="187.429"/><linearGradient id="w"><stop offset="0" stop-color="#68676b"/><stop offset=".733" 
stop-color="#949390"/><stop offset="1" stop-color="#8b8a87"/></linearGradient><linearGradient xlink:href="#a" 
id="aG" gradientUnits="userSpaceOnUse" gradientTransform="translate(961.714 -317.176) scale(.85714)" 
x1="165.737" y1="323.267" x2="134.779" y2="207.729"/><linearGradient id="a"><stop offset="0" 
stop-color="#191622"/><stop offset="1" stop-color="#424048"/></linearGradient><linearGradient xlink:href="#a" 
id="aH" gradientUnits="userSpaceOnUse" gradientTransform="translate(804 -220.033)" x1="165.737" y1="323.267" 
x2="134.779" y2="207.729"/><linearGradient xlink:href="#x" id="aI" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="144.906" y1="245.525" x2="159.094" 
y2="298.475"/><linearGradient id="x"><stop offset="0" stop-color="#2e3436"/><stop offset="1" s
 top-color="#555753"/></linearGradient><linearGradient xlink:href="#a" id="aJ" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="144.906" y1="245.525" x2="159.094" 
y2="298.475"/><linearGradient xlink:href="#a" id="aK" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(.75 0 0 .75 978 -288.032)" x1="144.906" y1="245.525" x2="159.094" 
y2="298.475"/><linearGradient xlink:href="#a" id="aL" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(1117.143 -127.462) scale(.57143)" x1="165.737" y1="323.267" x2="134.779" 
y2="207.729"/><linearGradient xlink:href="#a" id="aM" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(.5 0 0 .5 1128 -108.033)" x1="144.906" y1="245.525" x2="159.094" 
y2="298.475"/><linearGradient xlink:href="#o" id="ag" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(-461.557 -35.819)" x1="529.288" y1="441.731" x2="543.341" 
y2="408.599"/><linearGradient id="y"><stop offset="0" stop-color="#555753"/><stop offset="1" 
 stop-color="#2e3436"/></linearGradient><linearGradient xlink:href="#n" id="af" 
gradientUnits="userSpaceOnUse" gradientTransform="rotate(-120 320.2 508.254)" x1="529.288" y1="441.731" 
x2="543.341" y2="408.599"/><linearGradient xlink:href="#m" id="ae" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(42.443 122.181)" x1="56" y1="252" x2="0" y2="244"/><linearGradient 
xlink:href="#l" id="ad" gradientUnits="userSpaceOnUse" gradientTransform="translate(42.443 122.181)" x1="64" 
y1="260" x2="80" y2="220"/><linearGradient xlink:href="#k" id="ac" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(42.443 122.181)" x1="32" y1="239.25" x2="56" y2="196"/><linearGradient 
xlink:href="#v" id="ab" gradientUnits="userSpaceOnUse" x1="64.499" y1="257.074" x2="100" 
y2="258"/><linearGradient xlink:href="#u" id="aa" gradientUnits="userSpaceOnUse" x1="63.999" y1="215.215" 
x2="28" y2="215.216"/><linearGradient xlink:href="#t" id="Z" gradientUnits="userSpaceOnUse" x1="82.001" 
y1="246.393" x
 2="100" y2="216"/><linearGradient xlink:href="#s" id="Y" gradientUnits="userSpaceOnUse" x1="45.999" 
y1="225.608" x2="28" y2="256.785"/><linearGradient xlink:href="#r" id="X" gradientUnits="userSpaceOnUse" 
x1="82" y1="225.608" x2="64" y2="196"/><linearGradient xlink:href="#q" id="W" gradientUnits="userSpaceOnUse" 
x1="45.999" y1="246.969" x2="64" y2="276"/><linearGradient xlink:href="#a" id="T" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(.5 0 0 .5 1128 -108.033)" x1="144.906" y1="245.525" 
x2="159.094" y2="298.475"/><linearGradient xlink:href="#a" id="S" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(1117.143 -127.462) scale(.57143)" x1="165.737" y1="323.267" x2="134.779" 
y2="207.729"/><linearGradient xlink:href="#i" id="F" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="352" y1="256" x2="448" y2="256"/><linearGradient 
xlink:href="#i" id="G" gradientUnits="userSpaceOnUse" gradientTransform="translate(804 -220.033)" x1="216" 
y1="1
 44" x2="360" y2="144"/><linearGradient xlink:href="#i" id="H" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="64" y1="280" x2="240" y2="280"/><linearGradient 
xlink:href="#i" id="J" gradientUnits="userSpaceOnUse" gradientTransform="translate(804 -220.033)" x1="352" 
y1="256" x2="448" y2="256"/><linearGradient xlink:href="#i" id="K" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="64" y1="280" x2="240" y2="280"/><linearGradient 
xlink:href="#w" id="L" gradientUnits="userSpaceOnUse" gradientTransform="translate(828 -220.033)" 
x1="317.666" y1="211.334" x2="341.571" y2="187.429"/><linearGradient xlink:href="#i" id="M" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(804 -220.033)" x1="216" y1="144" x2="360" 
y2="144"/><linearGradient xlink:href="#a" id="N" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(961.714 -317.176) scale(.85714)" x1="165.737" y1="323.267" x2="134.779" 
y2="207.729"/><linearGradient xlin
 k:href="#a" id="O" gradientUnits="userSpaceOnUse" gradientTransform="translate(804 -220.033)" x1="165.737" 
y1="323.267" x2="134.779" y2="207.729"/><linearGradient xlink:href="#x" id="P" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="144.906" y1="245.525" x2="159.094" 
y2="298.475"/><linearGradient xlink:href="#a" id="Q" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="144.906" y1="245.525" x2="159.094" 
y2="298.475"/><linearGradient xlink:href="#a" id="R" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(.75 0 0 .75 978 -288.032)" x1="144.906" y1="245.525" x2="159.094" 
y2="298.475"/><linearGradient xlink:href="#i" id="aA" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="64" y1="280" x2="240" y2="280"/><linearGradient id="D"><stop 
offset="0" stop-color="#9a9996"/><stop offset=".05" stop-color="#c0bfbc"/><stop offset=".1" 
stop-color="#9a9996"/><stop offset=".9" stop-color="#9a9996"/><stop 
 offset=".95" stop-color="#c0bfbc"/><stop offset="1" stop-color="#9a9996"/></linearGradient><linearGradient 
xlink:href="#C" id="E" x1="285" y1="290" x2="285" y2="20" gradientUnits="userSpaceOnUse"/><linearGradient 
xlink:href="#D" id="bt" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.19235 0 0 .25 275.075 
57.011)" x1="10.276" y1="260" x2="426.276" y2="260"/><radialGradient xlink:href="#B" id="ap" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(4 0 0 4 -484.799 -649.952)" cx="134.2" cy="222.988" 
fx="134.2" fy="222.988" r="2"/><radialGradient xlink:href="#B" id="an" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(6 0 0 6 -777.198 -1073.928)" cx="134.2" cy="222.988" fx="134.2" fy="222.988" 
r="2"/><radialGradient xlink:href="#B" id="am" cx="134.2" cy="222.988" fx="134.2" fy="222.988" r="2" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(6 0 0 6 -777.198 -1161.928)"/><radialGradient 
xlink:href="#B" id="al" gradientUnits="userSpaceOnUse" gradientTransf
 orm="matrix(4 0 0 4 -444.799 -689.952)" cx="134.2" cy="222.988" fx="134.2" fy="222.988" 
r="2"/><radialGradient xlink:href="#B" id="ak" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4 0 0 
4 -444.799 -649.952)" cx="134.2" cy="222.988" fx="134.2" fy="222.988" r="2"/><radialGradient xlink:href="#B" 
id="aj" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6 0 0 6 -689.198 -1073.928)" cx="134.2" 
cy="222.988" fx="134.2" fy="222.988" r="2"/><radialGradient xlink:href="#B" id="ai" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(6 0 0 6 -689.198 -1161.928)" cx="134.2" cy="222.988" 
fx="134.2" fy="222.988" r="2"/><radialGradient xlink:href="#y" id="U" cx="343.875" cy="308.125" fx="343.875" 
fy="308.125" r="8" gradientUnits="userSpaceOnUse" gradientTransform="translate(916 -220)"/><radialGradient 
xlink:href="#y" id="aN" gradientUnits="userSpaceOnUse" gradientTransform="translate(916 -220)" cx="343.875" 
cy="308.125" fx="343.875" fy="308.125" r="8"/><radialGradient xlink
 :href="#z" id="aB" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.525 0 0 .3675 60.8 242.53)" 
cx="128" cy="384.952" fx="128" fy="384.952" r="80"/><radialGradient xlink:href="#A" id="aV" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(.347 0 0 .34223 -33.506 42.518)" cx="280.994" 
cy="488.848" fx="280.994" fy="488.848" r="224"/><radialGradient xlink:href="#B" id="ao" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(4 0 0 4 -484.799 -689.952)" cx="134.2" cy="222.988" 
fx="134.2" fy="222.988" r="2"/><radialGradient xlink:href="#B" id="bj" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(4 0 0 4 -484.799 -689.952)" cx="134.2" cy="222.988" fx="134.2" fy="222.988" 
r="2"/><radialGradient xlink:href="#B" id="bi" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6 0 0 
6 -777.198 -1073.928)" cx="134.2" cy="222.988" fx="134.2" fy="222.988" r="2"/><radialGradient xlink:href="#B" 
id="bh" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6 0 0 6 -77
 7.198 -1161.928)" cx="134.2" cy="222.988" fx="134.2" fy="222.988" r="2"/><radialGradient xlink:href="#B" 
id="bg" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4 0 0 4 -444.799 -689.952)" cx="134.2" 
cy="222.988" fx="134.2" fy="222.988" r="2"/><radialGradient xlink:href="#B" id="bf" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(4 0 0 4 -444.799 -649.952)" cx="134.2" cy="222.988" 
fx="134.2" fy="222.988" r="2"/><radialGradient xlink:href="#B" id="be" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(6 0 0 6 -689.198 -1073.928)" cx="134.2" cy="222.988" fx="134.2" fy="222.988" 
r="2"/><radialGradient xlink:href="#B" id="bd" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6 0 0 
6 -689.198 -1161.928)" cx="134.2" cy="222.988" fx="134.2" fy="222.988" r="2"/><radialGradient xlink:href="#y" 
id="aO" gradientUnits="userSpaceOnUse" gradientTransform="translate(-1492 -220)" cx="343.875" cy="308.125" 
fx="343.875" fy="308.125" r="8"/><radialGradient xlink:href="#z
 " id="I" cx="128" cy="384.952" fx="128" fy="384.952" r="80" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(.525 0 0 .3675 60.8 242.53)"/><radialGradient xlink:href="#y" id="V" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(-1492 -220)" cx="343.875" cy="308.125" 
fx="343.875" fy="308.125" r="8"/><radialGradient xlink:href="#B" id="bk" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(4 0 0 4 -484.799 -649.952)" cx="134.2" cy="222.988" fx="134.2" fy="222.988" 
r="2"/></defs><g transform="rotate(90 -89.26 97.181)" fill="#fff" paint-order="markers fill stroke"><circle 
cx="269.058" cy="-358.638" r="10.787"/><circle r="10.787" cy="-325.812" cx="269.058"/><circle cx="269.058" 
cy="-292.985" r="10.787"/><circle r="10.787" cy="-260.158" cx="269.058"/><circle cx="269.058" cy="-227.331" 
r="10.787"/><circle cx="269.058" cy="-389.633" r="10.787"/><circle cx="269.058" cy="-194.525" 
r="10.787"/></g><path d="M222.989 10.874l-94.822 94.822a16 16 90 000 22.627l94.822 94.822
 a16 16 180 0022.627 0 13.724 13.724 10.524 0119.083 3.545l67.546 67.546a16 16 0 0022.627 
0l119.775-119.774a16 16 90 000-22.628L354.872 32.06a16 16 0 00-22.627 0l-21.408 21.407a16 16 0 01-22.627 
0l-42.594-42.593a16 16 0 00-22.627 0z" fill="url(#E)"/><g transform="translate(145.427 64.94) 
scale(.14606)"><rect style="marker:none" width="96" height="112" x="1156" y="-20.033" rx="48" ry="48" 
fill="url(#F)"/><rect style="marker:none" width="144" height="160" x="1020" y="-156.033" rx="72" ry="72" 
fill="url(#G)"/><rect style="marker:none" width="176" height="192" x="868" y="-36.033" rx="88" ry="88" 
fill="url(#H)"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape
 -padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1" d="M1077.373-106.66l-160 
160 45.254 45.254 160-160z" color="#000" font-weight="400" font-family="sans-serif" overflow="visible" 
fill="none" stroke="#f5ce17" stroke-width="32"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M80 224v128c0 17.673-14.327 32-32 32H32v32h192v-32h-16c-17.673 0-32-14.327-32-32V224z" color="#000" 
font-weight="400" font-family="sans-serif" overflow="visible" fill="url(#I)" transform="translate(828 
-204.033)"/><path style="marker:none" fill="#68676b" d="M860 179.967h
 192v32H860z"/><path d="M1140 99.967l64-64 64 64" fill="none" stroke="#424048" stroke-width="24"/><circle 
r="48" cy="35.967" cx="1204" style="marker:none" fill="url(#J)"/><path style="marker:none" d="M1260 68c13.255 
0 24 10.745 24 24v48l-24 24h-24V92c0-13.255 10.745-24 24-24z" fill="#7a8599"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M1077.373-114.66l-160 160 45.254 45.254 160-160z" color="#000" font-weight="400" font-family="sans-serif" 
overflow="visible" fill="none" stroke="#f9f06b" stroke-width="32"/><circle style="marker:none" cx="956" 
cy="59.967" r="88" fill="u
 rl(#K)"/><circle style="marker:none" cx="956" cy="51.967" r="88" fill="#f9f06b"/><path d="M1221 
43.967l-128-128" fill="none" stroke="url(#L)" stroke-width="40"/><circle style="marker:none" cx="1092" 
cy="-76.033" r="72" fill="url(#M)"/><circle style="marker:none" cx="1092" cy="-84.033" r="72" 
fill="#f9f06b"/><circle r="48" cy="27.967" cx="1204" style="marker:none" fill="#f9f06b"/><circle 
style="marker:none" cx="1092" cy="-84.033" fill="url(#N)" r="48"/><circle style="marker:none" cx="956" 
cy="51.967" r="56" fill="url(#O)"/><circle style="marker:none" cx="956" cy="51.967" r="32" 
fill="url(#P)"/><circle style="marker:none" cx="956" cy="51.967" r="32" fill="url(#Q)"/><circle 
style="marker:none" cx="1092" cy="-84.033" r="24" fill="url(#R)"/><circle style="marker:none" cx="1204" 
cy="27.967" fill="url(#S)" r="32"/><circle style="marker:none" cx="1204" cy="27.967" r="16" 
fill="url(#T)"/><circle r="8" style="marker:none" cx="1260" cy="92" fill="url(#U)"/><path style="marker:none" 
d="M1148 68
 c-13.255 0-24 10.745-24 24v48l24 24h24V92c0-13.255-10.745-24-24-24z" fill="#7a8599"/><circle r="8" 
style="marker:none" cx="-1148" cy="92" transform="scale(-1 1)" fill="url(#V)"/></g><path d="M211.873 
221.945v10.32l-8.937 5.16-8.937-5.16v-10.32l8.937-5.16z" fill="#3d3846"/><path d="M185.062 216.786v20.639" 
fill="none" stroke="#33d17a" stroke-width="17.874"/><path d="M202.936 247.746l-17.875-10.321" fill="none" 
stroke="#3584e4" stroke-width="17.874"/><path d="M202.936 247.746l17.874-10.322" fill="none" stroke="#a347ba" 
stroke-width="17.874"/><path d="M220.81 216.785v20.64" fill="none" stroke="#e01b24" 
stroke-width="17.874"/><path d="M220.81 216.785l-17.875-10.32" fill="none" stroke="#ff7800" 
stroke-width="17.874"/><path d="M185.062 216.786l17.873-10.32" fill="none" stroke="#f6d32d" 
stroke-width="17.874"/><path d="M64 295.57c9.941 0 18-8.06 18-18a18 18 0 
00-7.744-14.766l-9.258-5.442-.998-.576a419.435 419.435 0 01-8.534-4.96A18 18 0 0146 236v41.568c0 9.941 8.059 
18 18 18zm-17.934-19.452
 
c.024-.283.065-.562.102-.842-.04.28-.074.56-.102.842zm.938-4.412c.026-.075.045-.154.072-.229l.004-.002-.076.23z"
 fill="url(#W)" transform="translate(171.159 109.928) scale(.49651)"/><path d="M64 176.432c-9.941 0-18 
8.059-18 18a18 18 0 007.744 14.765l9.258 5.442.998.576a419.435 419.435 0 018.534 4.96A18 18 0 0182 
236v-41.568c0-9.941-8.059-18-18-18zm17.934 19.45c-.024.284-.065.563-.102.843.04-.28.074-.56.102-.842zm-.938 
4.413c-.026.075-.045.153-.072.228l-.004.002z" fill="url(#X)" transform="translate(171.159 109.928) 
scale(.49651)"/><path d="M12.412 265.785c4.97 8.61 15.98 11.559 24.588 6.588a18 18 0 
008.916-14.09l.083-10.737v-1.153c-.03-3.185-.017-6.864.03-9.87a18 18 0 018.97-16.11l-9 5.195-18 10.393-4.068 
2.349-4.93 2.846c-8.61 4.97-11.56 15.98-6.589 24.589zm7.878-25.257c.257-.12.52-.224.78-.333a19.02 19.02 0 
00-.78.333zm4.29-1.394c.078-.015.156-.038.234-.052l.004.002z" fill="url(#Y)" transform="translate(171.159 
109.928) scale(.49651)"/><path d="M115.588 206.216c-4.97-8.61-15.98-11
 .559-24.588-6.588a18 18 0 00-8.916 14.089l-.083 10.738v1.153c.03 3.185.017 6.864-.03 9.87a18 18 0 01-8.97 
16.11l9-5.196L100 236l4.068-2.349 4.93-2.846c8.61-4.971 11.56-15.98 6.589-24.589zm-7.878 
25.257c-.257.12-.52.224-.78.333.262-.105.522-.216.78-.333zm-4.29 
1.394c-.078.015-.156.037-.234.051l-.004-.002c.08-.015.158-.032.238-.049z" fill="url(#Z)" 
transform="translate(171.159 109.928) scale(.49651)"/><path d="M12.412 206.216c-4.97 8.61-2.02 19.618 6.588 
24.588a18 18 0 0016.66.677l9.34-5.297.998-.576a419.443 419.443 0 018.563-4.91A18 18 0 0173 
220.412l-9-5.197-18.001-10.392-4.068-2.349-4.93-2.846c-8.61-4.971-19.619-2.021-24.59 
6.588zm25.812-5.805c.233.162.454.337.678.509a18.002 18.002 0 00-.678-.51zm3.352 
3.018c.052.06.11.115.162.176v.004z" fill="url(#aa)" transform="translate(171.159 109.928) 
scale(.49651)"/><path d="M115.588 265.785c4.97-8.61 2.02-19.618-6.588-24.589a18 18 0 00-16.66-.676L83 
245.817l-.998.576a419.416 419.416 0 01-8.563 4.91A18 18 0 0155 251.59l9 5.196 18.001 10.393 
 4.068 2.349 4.93 2.846c8.61 4.97 19.619 2.021 24.59-6.588zm-25.812 
5.805c-.233-.162-.454-.337-.678-.509.222.175.448.345.678.51zm-3.352-3.018c-.052-.06-.11-.116-.162-.177v-.004l.162.182z"
 fill="url(#ab)" transform="translate(171.159 109.928) scale(.49651)"/><path d="M193.999 221.945v10.32l8.937 
5.16 8.937-5.16v-10.32l-8.937-5.16z" fill="#241f31"/><g color="#000" font-weight="400" 
font-family="sans-serif" fill-rule="evenodd"><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M383.95 60.362c-6.366-4.032-6.239 41.596 4.127 36.168l17.326-10.003c5.774-3.335 5.774-11.67 0-15.004L3
 88.077 61.52a8.664 8.664 0 00-4.127-1.158z" overflow="visible" fill="#2dc0af"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M78.82 304.187c-8.98-.21-16.375 7.01-16.377 15.994v41.9c16.21 38.843 21.356 21.45 32 32v-46.187l40 23.094 
16-27.713-64-36.95a16.002 16.002 0 00-7.623-2.138z" overflow="visible" fill="url(#ac)" 
transform="translate(341.275 -124.336) scale(.54142)"/><path 
style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:norma
 
l;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M110.82 322.662a16.002 16.002 0 00-16.377 15.994v36.95a16.002 16.002 0 0024 13.856l32-18.474a16.002 
16.002 0 000-27.713l-32-18.475a16.002 16.002 0 00-7.623-2.138z" overflow="visible" fill="url(#ad)" 
transform="translate(341.275 -124.336) scale(.54142)"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M62.46 32
 0.812c-.04 12.106-.006 24.214-.017 36.32v36.95a16.002 16.002 0 0024 13.857l32-18.477a16.002 16.002 0 
000-27.712l-32-18.475a16.002 16.002 0 
00-1.174-.602c-5.392-3.139-10.852-6.166-16.168-9.43-3.984-2.83-6.487-7.559-6.64-12.431z" overflow="visible" 
opacity=".2" fill="url(#ae)" transform="translate(341.275 -124.336) scale(.54142)"/><path d="M118.056 
389.61c10.815-6.191 21.588-12.456 32.386-18.676 7.049-3.897 10.06-13.432 
6.472-20.653-1.64-3.746-4.936-6.356-8.47-8.215-8.542-3.355-19.517 1.811-21.503 11.106-.582 1.252-.51 
2.562-.498 3.96-.047 6.672.097 13.35-.082 20.018-.49 5.194-3.7 10.008-8.305 12.46z" 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;is
 olation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1" overflow="visible" fill="url(#af)" 
transform="translate(341.275 -124.336) scale(.54142)"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M62.462 356.697c-.045 12.46-.007 24.923-.02 37.385-.148 8.052 6.604 15.427 14.651 15.931 4.064.453 
7.972-1.097 11.35-3.228 7.176-5.72 8.19-17.808 
1.133-24.175-.794-1.13-1.964-1.723-3.18-2.411-5.755-3.377-11.61-6.59-17.296-10.08-4.253-3.022-6.817-8.209-6.638-13.422z"
 overflow="visible" fill="url(#ag)" transform="translate(341.275 -124.336) scale(.54142)"/></g><g transf
 orm="translate(465.309 30.625) scale(.51597)"><rect ry="8.003" rx="8" y="193.5" x="-92.5" height="24" 
width="16" style="marker:none" fill="#f8e45c"/><rect ry="8.003" rx="8" y="209.5" x="-92.5" height="24" 
width="16" style="marker:none" fill="#2ec27e"/><rect ry="8.003" rx="8" y="225.5" x="-92.5" height="24" 
width="16" style="marker:none" fill="#c061cb"/><rect ry="8.003" rx="8" y="241.5" x="-92.5" height="24" 
width="16" style="marker:none" fill="#f66151"/><path style="marker:none" d="M-172.5 197.5v92h80c4.432 0 
8-3.568 8-8v-76c0-4.432-3.568-8-8-8z" fill="#1d60b5"/><path style="marker:none" d="M72 620v280h312c17.728 0 
32-14.272 32-32V652c0-17.728-14.272-32-32-32z" fill="url(#ah)" transform="matrix(.25 0 0 .25 -188.5 
62.5)"/><path style="marker:none" d="M-172.5 197.5v84h80c4.432 0 8-3.568 8-8v-68c0-4.432-3.568-8-8-8z" 
fill="#2864b0"/><path style="marker:none" d="M-172.5 177.5v102h80c4.432 0 8-3.568 
8-8v-86c0-4.432-3.568-8-8-8z" fill="#3584e4"/><path d="M-170.5 177.5h2v102h-2z" style="ma
 rker:none" opacity=".187" fill="#fff"/><path 
style="line-height:1.25;-inkscape-font-specification:'sans-serif Bold'" d="M-132.758 229.59q0 2.786 1.178 
4.394 1.2 1.608 3.239 1.608 2.015 0 3.216-1.608 1.2-1.63 1.2-4.394 
0-2.74-1.223-4.326-1.2-1.608-3.239-1.608-1.993 0-3.193 1.608-1.178 1.586-1.178 4.326zm9.286 6.818q-.68 
1.608-2.197 2.514-1.495.883-3.51.883-3.896 0-6.342-2.808-2.424-2.832-2.424-7.362t2.446-7.36q2.446-2.832 
6.32-2.832 2.015 0 3.51.906 1.518.906 2.197 2.514v-2.967h4.734v15.696q2.809-.43 4.417-2.695 1.608-2.288 
1.608-5.844 0-2.265-.657-4.235-.657-1.993-1.993-3.647-2.152-2.763-5.39-4.258-3.217-1.495-6.977-1.495-2.627 
0-5.028.703-2.401.679-4.44 2.015-3.352 2.22-5.232 5.753-1.857 3.511-1.857 7.61 0 3.375 1.2 6.342 1.224 2.945 
3.511 5.21 2.265 2.22 5.187 3.375 2.945 1.177 6.274 1.177 2.854 0 5.708-1.064 2.854-1.065 4.87-2.877l2.423 
3.67q-2.831 2.197-6.183 3.352-3.33 1.178-6.773 1.178-4.19 
0-7.904-1.495-3.715-1.473-6.614-4.304-2.9-2.83-4.417-6.545-1.517-3.738-1.517-8.018 0-4.
 123 1.54-7.86t4.394-6.568q2.854-2.809 6.636-4.349 3.805-1.54 7.882-1.54 5.074 0 9.219 1.948 4.145 1.925 6.93 
5.572 1.7 2.22 2.56 4.824.883 2.582.883 5.436 0 6.138-3.692 9.535-3.692 3.398-10.418 3.398h-.884z" 
font-weight="700" font-size="185.545" font-family="sans-serif" letter-spacing="0" word-spacing="0" 
fill="#fff"/></g><g transform="translate(264.876 110.427) scale(.51597)"><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1;marker:none"
 d="M30.352 186.352h82.687v82.687H30.352z" color="#000" font-weight="400" font-family="sans-serif" 
overflow="visible" fill="none"/><g color="
 #000" fill="none" stroke="#f6f5f4" stroke-width="8"><path style="marker:none" d="M92 248l24 
24m-24-64l24-24m-64 64l-24 24m24-64l-24-24m24 24h40v40H52z" overflow="visible"/><path style="marker:none" 
overflow="visible" d="M28 184h88v88H28z"/></g><path style="marker:none" fill="#d5d3cf" d="M106.5 
186v2h-69v-2z"/><path style="marker:none" d="M128 184c0 6.627-5.373 12-12 12-1.85 
0-3.222-.095-5.165-1.166-1.092-1.726-3.55-4.584-5.668-5.666C104.096 187.224 104 185.85 104 184c0-6.627 
5.373-12 12-12s12 5.373 12 12z" color="#000" overflow="visible" fill="#d5d3cf"/><path style="marker:none" 
fill="#d5d3cf" d="M118 195h2v69h-2z"/><circle style="marker:none" cx="116" cy="272" r="12" color="#000" 
overflow="visible" fill="#d5d3cf"/><path style="marker:none" fill="#d5d3cf" d="M87 250v2H57v-2zm20.605 
16.425l-1.415 1.414-15-15 1.415-1.414zm3.453-74.632l1.414 1.414-15 15-1.414-1.414z"/><circle 
style="marker:none" cx="116" cy="182" r="12" color="#000" overflow="visible" fill="url(#ai)"/><path 
style="mark
 er:none" fill="#d5d3cf" d="M94 214h2v26h-2zm-7-4v2H57v-2z"/><circle style="marker:none" cx="92" cy="208" 
r="8" color="#000" overflow="visible" fill="#d5d3cf"/><path style="marker:none" fill="#d5d3cf" d="M106.5 
274v2h-69v-2z"/><circle r="12" cy="270" cx="116" style="marker:none" color="#000" overflow="visible" 
fill="url(#aj)"/><path style="marker:none" d="M100 248c0 .666 0 1-.235 1.932-1.165.59-4.765 4.542-5.787 
5.822-.502.246-1.295.246-1.978.246a8 8 0 118-8z" color="#000" overflow="visible" fill="#d5d3cf"/><circle 
style="marker:none" cx="92" cy="246" r="8" color="#000" overflow="visible" fill="url(#ak)"/><circle r="8" 
cy="206" cx="92" style="marker:none" color="#000" overflow="visible" fill="url(#al)"/><path 
style="marker:none" fill="#d5d3cf" d="M30 195h2v69h-2z"/><circle r="12" cy="272" cx="28" style="marker:none" 
color="#000" overflow="visible" fill="#d5d3cf"/><path style="marker:none" fill="#d5d3cf" d="M54 
214h2v26h-2z"/><circle r="8" cy="208" cx="52" style="marker:none" color="#
 000" overflow="visible" fill="#d5d3cf"/><path style="marker:none" fill="#d5d3cf" d="M51.586 251.586L53 
253l-15 15-1.414-1.414z"/><path d="M15.912 184c0 6.627 5.372 12 12 12 1.849 0 3.222-.095 5.165-1.166 
1.092-1.726 3.55-4.584 5.668-5.666 1.071-1.944 1.167-3.318 1.167-5.168 0-6.627-5.373-12-12-12-6.628 0-12 
5.373-12 12z" style="marker:none" color="#000" overflow="visible" fill="#d5d3cf"/><path style="marker:none" 
fill="#d5d3cf" d="M48.078 206.953l-1.415 1.414-15-15 1.415-1.414z"/><circle r="12" cy="182" cx="28" 
style="marker:none" color="#000" overflow="visible" fill="url(#am)"/><circle style="marker:none" cx="28" 
cy="270" r="12" color="#000" overflow="visible" fill="url(#an)"/><circle style="marker:none" cx="52" cy="206" 
r="8" color="#000" overflow="visible" fill="url(#ao)"/><path d="M44 248c0 .666 0 1 .235 1.932 1.165.59 4.765 
4.542 5.787 5.822.502.246 1.295.246 1.978.246a8 8 0 10-8-8z" style="marker:none" color="#000" 
overflow="visible" fill="#d5d3cf"/><circle r="8" cy="246" cx="
 52" style="marker:none" color="#000" overflow="visible" fill="url(#ap)"/></g><g transform="translate(242.147 
-55.813) scale(.83133)"><path style="marker:none" d="M132 229a60 60 0 01-60 60 60 60 0 01-60-60 60 60 0 
0160-60 60 60 0 0160 60z" fill="#deddda"/><rect ry="56" rx="56" y="171" x="16" height="114" width="112" 
style="marker:none" fill="#d5d3cf"/><path d="M132 227a60 60 0 01-60 60 60 60 0 01-60-60 60 60 0 0160-60 60 60 
0 0160 60z" style="marker:none" fill="#f6f5f4"/><circle cy="227" cx="72" style="marker:none" r="54" 
fill="#3d3846"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-
 opacity:1" d="M98.035 199.992a1.002 1.002 0 00-.777.33l-21.975 23.665a6 6 0 
00-5.582-.522l-14.22-15.801a2.003 2.003 0 00-1.604-.682 2.003 2.003 0 00-1.374 3.362l14.22 15.799a6 6 0 
00-.21 5.305 6 6 0 002.404 2.7L57.058 264.64a1.002 1.002 0 101.867.725l11.858-30.49a6 6 0 003.653-.393 6 6 0 
003.035-7.924 6 6 0 00-.725-1.204l21.98-23.67a1.002 1.002 0 00-.691-1.693z" color="#000" font-weight="400" 
font-family="sans-serif" overflow="visible" opacity=".2" fill-rule="evenodd"/><path d="M72 227l-18-20" 
fill="#c0bfbc" fill-rule="evenodd" stroke="url(#aq)" stroke-width="4.006" stroke-linecap="round"/><path 
d="M72 227l26-28" fill="none" stroke="#fff" stroke-width="2.003" stroke-linecap="round"/><path d="M72 227l-14 
36" fill="none" stroke="#ed333b" stroke-width="2.003" stroke-linecap="round"/><circle 
transform="rotate(-24.04)" style="marker:none" cx="-26.715" cy="236.642" r="6" color="#000" 
overflow="visible" fill="#d5d3cf"/><circle cy="227" cx="72.029" style="marker:none" r="2.003" color="#000"
  overflow="visible" fill="#131c1a"/><circle style="marker:none" cx="72.029" cy="227" r="2" color="#000" 
overflow="visible" fill="#131c1a"/><path style="marker:none" d="M72 173a54 54 0 00-54 54 54 54 0 00.042 
1.17A54 54 0 0172 175a54 54 0 0153.959 52.828A54 54 0 00126 227a54 54 0 00-54-54z" opacity=".1"/></g><g 
transform="translate(368.048 105.783) scale(.51597)"><path style="marker:none" overflow="visible" fill="none" 
d="M0 172h128v128H0z"/><rect style="marker:none" width="112" height="64" x="8" y="224" rx="8" ry="8" 
fill="#2ec27e"/><g stroke="#26a269" stroke-width=".935" fill="none"><path d="M27 230v14" stroke-width="1.871" 
transform="matrix(1 0 0 1.14286 0 -22.857)"/><path d="M32 230v14" stroke-width="3.742" transform="matrix(1 0 
0 1.14286 0 -22.857)"/><path d="M37 230v14m4-14v14" stroke-width="1.871" transform="matrix(1 0 0 1.14286 0 
-22.857)"/><path d="M46 230v14m10-14v14" stroke-width="3.742" transform="matrix(1 0 0 1.14286 0 
-22.857)"/><path d="M51 230v14" stroke-width="1.871"
  transform="matrix(1 0 0 1.14286 0 -22.857)"/><path d="M63 230v14" stroke-width="5.612" transform="matrix(1 
0 0 1.14286 0 -22.857)"/><path d="M69 230v14m4-14v14m4-14v14" stroke-width="1.871" transform="matrix(1 0 0 
1.14286 0 -22.857)"/><path d="M82 230v14" stroke-width="3.742" transform="matrix(1 0 0 1.14286 0 
-22.857)"/><path d="M87 230v14m12-14v14" stroke-width="1.871" transform="matrix(1 0 0 1.14286 0 
-22.857)"/><path d="M93 230v14" stroke-width="5.612" transform="matrix(1 0 0 1.14286 0 -22.857)"/><path 
d="M103 230v14m4-14v14" stroke-width="1.871" transform="matrix(1 0 0 1.14286 0 -22.857)"/></g><path 
style="line-height:1000%;-inkscape-font-specification:'Cantarell Ultra-Bold'" d="M22.216 266l1.197 
5.068-3.9-3.279-1.453 2.592 5.01 1.658-5.044 1.59 1.434 2.64 3.955-3.304-1.2 5.035h3.411l-1.102-4.959 3.834 
3.314 1.477-2.619-4.979-1.685 5.118-1.426-1.453-2.62-4.034 3.085 1.137-5.09zm16 0l1.197 5.068-3.9-3.279-1.453 
2.592 5.01 1.658-5.044 1.59 1.434 2.64 3.955-3.304-1.2 5.035h3.411l-
 1.102-4.959 3.834 3.314 1.477-2.619-4.979-1.685 5.118-1.426-1.453-2.62-4.034 3.085 1.137-5.09zm16 0l1.197 
5.068-3.9-3.279-1.453 2.592 5.01 1.658-5.044 1.59 1.434 2.64 3.955-3.304-1.2 5.035h3.411l-1.102-4.959 3.834 
3.314 1.477-2.619-4.979-1.685 5.118-1.426-1.453-2.62-4.034 3.085 1.137-5.09zm16 0l1.197 5.068-3.9-3.279-1.453 
2.592 5.01 1.658-5.044 1.59 1.434 2.64 3.955-3.304-1.2 5.035h3.411l-1.102-4.959 3.834 3.314 
1.477-2.619-4.979-1.685 5.118-1.426-1.453-2.62-4.034 3.085 1.137-5.09zm16 0l1.197 5.068-3.9-3.279-1.453 2.592 
5.01 1.658-5.044 1.59 1.434 2.64 3.955-3.304-1.2 5.035h3.411l-1.102-4.959 3.834 3.314 1.477-2.619-4.979-1.685 
5.118-1.426-1.453-2.62-4.034 3.085 1.137-5.09zm16 0l1.197 5.068-3.9-3.279-1.453 2.592 5.01 1.658-5.044 1.59 
1.434 2.64 3.955-3.304-1.2 5.035h3.411l-1.102-4.959 3.834 3.314 1.477-2.619-4.979-1.685 
5.118-1.426-1.453-2.62-4.034 3.085 1.137-5.09z" fill="#8ff0a4" font-weight="800" font-family="Cantarell" 
letter-spacing="2" word-spacing="0"/><rect ry="8" rx="8" y="
 200" x="8" height="40" width="112" style="marker:none" fill="#2ec27e"/><path style="marker:none" 
fill="#241f31" d="M8 214h112v18H8z"/><path d="M22 242l-7.2 6 7.2 6z" fill="#26a269" 
fill-rule="evenodd"/><path style="marker:none" d="M170 296a28 28 0 01-28-28 28 28 0 0128-28 28 28 0 0128 28 
28 28 0 01-28 28zm.031-12a6.031 6 0 006.031-6 6.031 6 0 00-6.03-6 6.031 6 0 00-6.032 6 6.031 6 0 006.031 6z" 
fill="url(#ar)" transform="rotate(180 107.5 242)"/><path d="M34 240h24v11.833L53 252v6l-2 2 2 2v3l-3 3 3 3-2 
2 2 2-4 4 4 4-2 2 2 2-9 9h-7l-3-3z" style="marker:none" fill="#77767b"/><path style="marker:none" d="M124 
213.03L107.03 230l8.367 8.367 3.653-3.417 4.243 4.242h2.828v2.829l2.122 
2.121h4.242v4.243h2.829v2.828h5.657v5.657h2.828v2.828h12.728l4.95-4.95v-4.242z" fill="url(#as)" 
transform="scale(-1 1) rotate(45 14.858 34.792)"/><path style="marker:none" d="M125.748 
221.265c-1.794.002-2.678 2.182-1.392 3.433l33.585 33.586 2.829-2.828-33.586-33.586a2 2 0 00-1.436-.605z" 
fill="url(#at)" transfo
 rm="scale(-1 1) rotate(45 14.858 34.792)"/><path d="M45 186a28 28 0 00-28 28 28 28 0 0028 28 28 28 0 0028-28 
28 28 0 00-28-28zm.031 12a6 6.031 90 016.031 6 6 6.031 90 01-6.03 6A6 6.031 90 0139 204a6 6.031 90 
016.031-6z" style="marker:none" fill="#f6f5f4"/></g><g transform="translate(169.913 21.656) 
scale(.51597)"><rect style="marker:none" width="112" height="86" x="8" y="200" rx="8" ry="8" 
fill="#f6f5f4"/><path d="M64 236v40h44.994a3 3 0 003.006-3.006v-33.988a3 3 0 00-3.006-3.006z" 
style="marker:none" fill="url(#au)"/><path style="marker:none" d="M8 276v4c0 4.432 3.568 8 8 8h96c4.432 0 
8-3.568 8-8v-4c0 4.432-3.568 8-8 8H16c-4.432 0-8-3.568-8-8z" fill="url(#av)"/><rect ry="1.945" rx="1.945" 
y="208" x="16" height="24" width="96" style="marker:none" fill="#241f31"/><rect ry="0" rx="0" y="208" x="29" 
height="24" width="66" style="marker:none" fill="url(#aw)"/><path opacity=".623" fill="#26a269" d="M96 
219h16v2H96z"/><path d="M94 220l-77-.002" opacity=".8" fill="none" stroke="#57e389" st
 roke-width="2" stroke-linecap="square"/><path d="M42 217.009v5.99M50 218v4m8-5v5.958M66 
215v10m8-12v14m8-11v8m8-8v8" fill="none" stroke="#33d17a" stroke-width="4" stroke-linecap="round"/><path 
d="M42 219v2m8-1v0m8-1v2m8-3v4m8-5v6m8-5v4m8-2.959V221" fill="none" stroke="#f9f06b" stroke-width="4" 
stroke-linecap="round"/><path d="M64 234v38h44.994a3 3 0 003.006-3.006v-31.988a3 3 0 00-3.006-3.006z" 
style="marker:none" fill="#fff"/><path style="marker:none" d="M64 236v40H19.006A3 3 0 0116 272.994v-33.988A3 
3 0 0119.006 236z" fill="url(#ax)"/><path style="marker:none" d="M64 236v38H19.006A3 3 0 0116 
270.994v-31.988A3 3 0 0119.006 236z" fill="#e01b24"/><circle r="9" cy="256" cx="40" style="marker:none" 
fill="#fff"/><path d="M72 244v16l16-8zm16 0h6v16h-6zm10 0h6v16h-6z" style="marker:none" fill="#241f31"/><path 
style="marker:none" fill="#8ff0a4" d="M95 208h2v24h-2z"/><path d="M17.945 208a1.942 1.942 0 00-1.946 
1.945v2c0-1.077.869-1.945 1.946-1.945h92.11c1.077 0 1.945.868 1.945 1.945v-2a1.942
  1.942 0 00-1.945-1.945z" style="marker:none" fill="#241f31" fill-opacity=".374"/></g><path d="M278.715 
136.629l31.928 69.176a4.874 4.874 0 007.871 1.404l9.017-9.017a4.007 4.007 0 015.691.024l18.584 18.896a9.446 
9.446 0 0014.218-12.44l-19.42-19.838a4.084 4.084 0 01.03-5.745l12.377-12.376a4.423 4.423 0 
00-1.64-7.293l-75.002-26.787a2.936 2.936 0 00-3.654 3.996z" fill-opacity=".2"/><path d="M278.715 
134.11l31.928 69.176a4.874 4.874 0 007.871 1.404l10.277-10.276a4.128 4.128 0 015.775-.062l18.5 17.722a9.446 
9.446 0 0014.218-12.44l-19.34-18.66a3.97 3.97 0 01-.05-5.663l11.117-11.117a4.423 4.423 0 
00-1.64-7.293l-75.002-26.787a2.936 2.936 0 00-3.654 3.996z" fill="#fff"/><path d="M279.17 130.949a2.936 2.936 
0 00-.455 3.161l31.928 69.176a4.874 4.874 0 007.871 1.404l10.277-10.276a4.128 4.128 0 015.775-.062l18.5 
17.722a9.446 9.446 0 0013.329.89c.044-.04.082-.084.126-.123z" fill="#deddda"/><g transform="rotate(90 300.721 
487.162)" fill="#fff" paint-order="markers fill stroke"><circle cx="269.058"
  cy="-358.638" r="10.787"/><circle r="10.787" cy="-325.812" cx="269.058"/><circle cx="269.058" cy="-292.985" 
r="10.787"/><circle r="10.787" cy="-260.158" cx="269.058"/><circle cx="269.058" cy="-227.331" 
r="10.787"/><circle cx="269.058" cy="-389.633" r="10.787"/><circle cx="269.058" cy="-194.525" 
r="10.787"/></g><g transform="translate(585.548 -15.157) scale(.28307)"><rect style="marker:none" width="96" 
height="112" x="1156" y="-20.033" rx="48" ry="48" fill="url(#ay)"/><rect style="marker:none" width="144" 
height="160" x="1020" y="-156.033" rx="72" ry="72" fill="url(#az)"/><rect style="marker:none" width="176" 
height="192" x="868" y="-36.033" rx="88" ry="88" fill="url(#aA)"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#00
 
0;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M1077.373-106.66l-160 160 45.254 45.254 160-160z" color="#000" font-weight="400" font-family="sans-serif" 
overflow="visible" fill="none" stroke="#f5ce17" stroke-width="32"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M80 224v128c0 17.673-14.327 32-32 32H32v32h192v-32h-16c-17.673 0-32-14.327-32-32V224z" color="#000" 
font-weight="400" font-family="sans-serif" overflow="visible" fill="url(#aB)" transform="translate(828
  -204.033)"/><path style="marker:none" fill="#68676b" d="M860 179.967h192v32H860z"/><path d="M1140 
99.967l64-64 64 64" fill="none" stroke="#424048" stroke-width="24"/><circle r="48" cy="35.967" cx="1204" 
style="marker:none" fill="url(#aC)"/><path style="marker:none" d="M1260 68c13.255 0 24 10.745 24 24v48l-24 
24h-24V92c0-13.255 10.745-24 24-24z" fill="#7a8599"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M1077.373-114.66l-160 160 45.254 45.254 160-160z" color="#000" font-weight="400" font-family="sans-serif" 
overflow="visible" fill="none" stroke="#f9f06b" stroke-widt
 h="32"/><circle style="marker:none" cx="956" cy="59.967" r="88" fill="url(#aD)"/><circle style="marker:none" 
cx="956" cy="51.967" r="88" fill="#f9f06b"/><path d="M1221 43.967l-128-128" fill="none" stroke="url(#aE)" 
stroke-width="40"/><circle style="marker:none" cx="1092" cy="-76.033" r="72" fill="url(#aF)"/><circle 
style="marker:none" cx="1092" cy="-84.033" r="72" fill="#f9f06b"/><circle r="48" cy="27.967" cx="1204" 
style="marker:none" fill="#f9f06b"/><circle style="marker:none" cx="1092" cy="-84.033" fill="url(#aG)" 
r="48"/><circle style="marker:none" cx="956" cy="51.967" r="56" fill="url(#aH)"/><circle style="marker:none" 
cx="956" cy="51.967" r="32" fill="url(#aI)"/><circle style="marker:none" cx="956" cy="51.967" r="32" 
fill="url(#aJ)"/><circle style="marker:none" cx="1092" cy="-84.033" r="24" fill="url(#aK)"/><circle 
style="marker:none" cx="1204" cy="27.967" fill="url(#aL)" r="32"/><circle style="marker:none" cx="1204" 
cy="27.967" r="16" fill="url(#aM)"/><circle r="8" style="mar
 ker:none" cx="1260" cy="92" fill="url(#aN)"/><path style="marker:none" d="M1148 68c-13.255 0-24 10.745-24 
24v48l24 24h24V92c0-13.255-10.745-24-24-24z" fill="#7a8599"/><circle r="8" style="marker:none" cx="-1148" 
cy="92" transform="scale(-1 1)" fill="url(#aO)"/></g><g><path d="M906.321 141.837v20l-17.321 
10-17.321-10v-20l17.321-10z" fill="#3d3846"/><path d="M854.358 131.837v40" fill="none" stroke="#33d17a" 
stroke-width="34.642"/><path d="M889 191.84l-34.642-20.002" fill="none" stroke="#3584e4" 
stroke-width="34.642"/><path d="M889 191.84l34.642-20.003" fill="none" stroke="#a347ba" 
stroke-width="34.642"/><path d="M923.642 131.836v40" fill="none" stroke="#e01b24" 
stroke-width="34.642"/><path d="M923.642 131.836l-34.643-20" fill="none" stroke="#ff7800" 
stroke-width="34.642"/><path d="M854.358 131.837L889 111.836" fill="none" stroke="#f6d32d" 
stroke-width="34.642"/><path d="M64 295.57c9.941 0 18-8.06 18-18a18 18 0 
00-7.744-14.766l-9.258-5.442-.998-.576a419.435 419.435 0 01-8.534-4.96A18 1
 8 0 0146 236v41.568c0 9.941 8.059 18 18 
18zm-17.934-19.452c.024-.283.065-.562.102-.842-.04.28-.074.56-.102.842zm.938-4.412c.026-.075.045-.154.072-.229l.004-.002-.076.23z"
 fill="url(#aP)" transform="translate(827.414 -75.262) scale(.96228)"/><path d="M64 176.432c-9.941 0-18 
8.059-18 18a18 18 0 007.744 14.765l9.258 5.442.998.576a419.435 419.435 0 018.534 4.96A18 18 0 0182 
236v-41.568c0-9.941-8.059-18-18-18zm17.934 19.45c-.024.284-.065.563-.102.843.04-.28.074-.56.102-.842zm-.938 
4.413c-.026.075-.045.153-.072.228l-.004.002.076-.23z" fill="url(#aQ)" transform="translate(827.414 -75.262) 
scale(.96228)"/><path d="M12.412 265.785c4.97 8.61 15.98 11.559 24.588 6.588a18 18 0 
008.916-14.09l.083-10.737v-1.153c-.03-3.185-.017-6.864.03-9.87a18 18 0 018.97-16.11l-9 5.195-18 10.393-4.068 
2.349-4.93 2.846c-8.61 4.97-11.56 15.98-6.589 24.589zm7.878-25.257c.257-.12.52-.224.78-.333a19.02 19.02 0 
00-.78.333zm4.29-1.394c.078-.015.156-.038.234-.052l.004.002-.238.05z" fill="url(#aR)" transform="translate(8
 27.414 -75.262) scale(.96228)"/><path d="M115.588 206.216c-4.97-8.61-15.98-11.559-24.588-6.588a18 18 0 
00-8.916 14.089l-.083 10.738v1.153c.03 3.185.017 6.864-.03 9.87a18 18 0 01-8.97 16.11l9-5.196L100 
236l4.068-2.349 4.93-2.846c8.61-4.971 11.56-15.98 6.589-24.589zm-7.878 
25.257c-.257.12-.52.224-.78.333.262-.105.522-.216.78-.333zm-4.29 
1.394c-.078.015-.156.037-.234.051l-.004-.002c.08-.015.158-.032.238-.049z" fill="url(#aS)" 
transform="translate(827.414 -75.262) scale(.96228)"/><path d="M12.412 206.216c-4.97 8.61-2.02 19.618 6.588 
24.588a18 18 0 0016.66.677l9.34-5.297.998-.576a419.443 419.443 0 018.563-4.91A18 18 0 0173 
220.412l-9-5.197-18.001-10.392-4.068-2.349-4.93-2.846c-8.61-4.971-19.619-2.021-24.59 
6.588zm25.812-5.805c.233.162.454.337.678.509a18.002 18.002 0 00-.678-.51zm3.352 
3.018c.052.06.11.115.162.176v.004l-.162-.18z" fill="url(#aT)" transform="translate(827.414 -75.262) 
scale(.96228)"/><path d="M115.588 265.785c4.97-8.61 2.02-19.618-6.588-24.589a18 18 0 00-16.66-.676L83 245.
 817l-.998.576a419.416 419.416 0 01-8.563 4.91A18 18 0 0155 251.59l9 5.196 18.001 10.393 4.068 2.349 4.93 
2.846c8.61 4.97 19.619 2.021 24.59-6.588zm-25.812 
5.805c-.233-.162-.454-.337-.678-.509.222.175.448.345.678.51zm-3.352-3.018c-.052-.06-.11-.116-.162-.177v-.004l.162.182z"
 fill="url(#aU)" transform="translate(827.414 -75.262) scale(.96228)"/><path d="M871.679 141.837v20l17.321 10 
17.321-10v-20l-17.321-10z" fill="#241f31"/></g><g transform="matrix(.905 0 0 .905 1023.08 -220.82)"><path 
style="marker:none" fill="#f5c211" d="M20 192h88v88H20z"/><path style="marker:none" fill="#f6d32d" d="M126 
236l-62 62-62-62 62-62z"/><circle cy="236" cx="64" style="marker:none" fill="url(#aV)" r="48"/><path d="M90 
244a20 20 0 00-18.158 11.668A15.003 15.003 0 0065 254c-7.89.009-14.424 6.129-14.95 14.002L50 268c-4.1 0-7.618 
2.47-9.162 6H40v4c0 5.523 4.477 10 10 10h56a12 12 0 0012-12v-4h-.707a12 12 0 00-7.328-7.313A22.4 22.4 0 00110 
264c0-11.046-8.954-20-20-20z" fill="#dceafa"/><path d="M90 240a20 20 0 0
 0-18.158 11.668A15.003 15.003 0 0065 250c-7.89.009-14.424 6.129-14.95 14.002L50 264c-5.523 0-10 4.477-10 
10s4.477 10 10 10h56a12 12 0 0012-12 12 12 0 00-8.035-11.313A22.4 22.4 0 00110 260c0-11.046-8.954-20-20-20z" 
fill="url(#aW)"/></g><g><g color="#000" font-weight="400" font-family="sans-serif" fill-rule="evenodd"><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M1239.82-24.03c-12.339-7.814-12.09 80.616 8 70.097l33.577-19.388c11.19-6.463 11.19-22.616 
0-29.08l-33.578-19.385a16.79 16.79 0 00-7.999-2.244z" overflow="visible" fill="#2dc0af"/><path 
style="line-height:normal;f
 
ont-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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M78.82 304.187c-8.98-.21-16.375 7.01-16.377 15.994v41.9c16.21 38.843 21.356 21.45 32 32v-46.187l40 23.094 
16-27.713-64-36.95a16.002 16.002 0 00-7.623-2.138z" overflow="visible" fill="url(#aX)" 
transform="translate(1157.113 -381.99) scale(1.04931)"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#0
 
00;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M110.82 322.662a16.002 16.002 0 00-16.377 15.994v36.95a16.002 16.002 0 0024 13.856l32-18.474a16.002 
16.002 0 000-27.713l-32-18.475a16.002 16.002 0 00-7.623-2.138z" overflow="visible" fill="url(#aY)" 
transform="translate(1157.113 -381.99) scale(1.04931)"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M62.46 320.812c-.04 12.106-.006 24.214-.017 36.32v36.95a16.002 16.002 0 0024 13.857l32-18.477a16.002 
16.002 0 000-27.71
 2l-32-18.475a16.002 16.002 0 
00-1.174-.602c-5.392-3.139-10.852-6.166-16.168-9.43-3.984-2.83-6.487-7.559-6.64-12.431z" overflow="visible" 
opacity=".2" fill="url(#aZ)" transform="translate(1157.113 -381.99) scale(1.04931)"/><path d="M118.056 
389.61c10.815-6.191 21.588-12.456 32.386-18.676 7.049-3.897 10.06-13.432 
6.472-20.653-1.64-3.746-4.936-6.356-8.47-8.215-8.542-3.355-19.517 1.811-21.503 11.106-.582 1.252-.51 
2.562-.498 3.96-.047 6.672.097 13.35-.082 20.018-.49 5.194-3.7 10.008-8.305 12.46z" 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 overflow="visible" fill="url(#ba)" trans
 form="translate(1157.113 -381.99) scale(1.04931)"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M62.462 356.697c-.045 12.46-.007 24.923-.02 37.385-.148 8.052 6.604 15.427 14.651 15.931 4.064.453 
7.972-1.097 11.35-3.228 7.176-5.72 8.19-17.808 
1.133-24.175-.794-1.13-1.964-1.723-3.18-2.411-5.755-3.377-11.61-6.59-17.296-10.08-4.253-3.022-6.817-8.209-6.638-13.422z"
 overflow="visible" fill="url(#bb)" transform="translate(1157.113 -381.99) scale(1.04931)"/></g></g><g 
transform="translate(1397.5 -81.662)"><rect ry="8.003" rx="8" y="193.5" x="-92.5" height="24" width="16" styl
 e="marker:none" fill="#f8e45c"/><rect ry="8.003" rx="8" y="209.5" x="-92.5" height="24" width="16" 
style="marker:none" fill="#2ec27e"/><rect ry="8.003" rx="8" y="225.5" x="-92.5" height="24" width="16" 
style="marker:none" fill="#c061cb"/><rect ry="8.003" rx="8" y="241.5" x="-92.5" height="24" width="16" 
style="marker:none" fill="#f66151"/><path style="marker:none" d="M-172.5 197.5v92h80c4.432 0 8-3.568 
8-8v-76c0-4.432-3.568-8-8-8z" fill="#1d60b5"/><path style="marker:none" d="M72 620v280h312c17.728 0 32-14.272 
32-32V652c0-17.728-14.272-32-32-32z" fill="url(#bc)" transform="matrix(.25 0 0 .25 -188.5 62.5)"/><path 
style="marker:none" d="M-172.5 197.5v84h80c4.432 0 8-3.568 8-8v-68c0-4.432-3.568-8-8-8z" 
fill="#2864b0"/><path style="marker:none" d="M-172.5 177.5v102h80c4.432 0 8-3.568 
8-8v-86c0-4.432-3.568-8-8-8z" fill="#3584e4"/><path d="M-170.5 177.5h2v102h-2z" style="marker:none" 
opacity=".187" fill="#fff"/><path style="line-height:1.25;-inkscape-font-specification:'sans-serif Bold'" 
 d="M-132.758 229.59q0 2.786 1.178 4.394 1.2 1.608 3.239 1.608 2.015 0 3.216-1.608 1.2-1.63 1.2-4.394 
0-2.74-1.223-4.326-1.2-1.608-3.239-1.608-1.993 0-3.193 1.608-1.178 1.586-1.178 4.326zm9.286 6.818q-.68 
1.608-2.197 2.514-1.495.883-3.51.883-3.896 0-6.342-2.808-2.424-2.832-2.424-7.362t2.446-7.36q2.446-2.832 
6.32-2.832 2.015 0 3.51.906 1.518.906 2.197 2.514v-2.967h4.734v15.696q2.809-.43 4.417-2.695 1.608-2.288 
1.608-5.844 0-2.265-.657-4.235-.657-1.993-1.993-3.647-2.152-2.763-5.39-4.258-3.217-1.495-6.977-1.495-2.627 
0-5.028.703-2.401.679-4.44 2.015-3.352 2.22-5.232 5.753-1.857 3.511-1.857 7.61 0 3.375 1.2 6.342 1.224 2.945 
3.511 5.21 2.265 2.22 5.187 3.375 2.945 1.177 6.274 1.177 2.854 0 5.708-1.064 2.854-1.065 4.87-2.877l2.423 
3.67q-2.831 2.197-6.183 3.352-3.33 1.178-6.773 1.178-4.19 
0-7.904-1.495-3.715-1.473-6.614-4.304-2.9-2.83-4.417-6.545-1.517-3.738-1.517-8.018 0-4.123 
1.54-7.86t4.394-6.568q2.854-2.809 6.636-4.349 3.805-1.54 7.882-1.54 5.074 0 9.219 1.948 4.145 1.925 6.93 
5.572 1.
 7 2.22 2.56 4.824.883 2.582.883 5.436 0 6.138-3.692 9.535-3.692 3.398-10.418 3.398h-.884z" font-weight="700" 
font-size="185.545" font-family="sans-serif" letter-spacing="0" word-spacing="0" fill="#fff"/></g><rect 
width="50" height="200" x="999.962" y="50" rx="25" ry="25" fill="#1a5fb4" fill-opacity=".339"/><g 
transform="translate(1009.044 73)"><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1;marker:none"
 d="M30.352 186.352h82.687v82.687H30.352z" color="#000" font-weight="400" font-family="sans-serif" 
overflow="visible" fill="none"/><g color="#000" fill="none" stroke="#f6f5f4"
  stroke-width="8"><path style="marker:none" d="M92 248l24 24m-24-64l24-24m-64 64l-24 24m24-64l-24-24m24 
24h40v40H52z" overflow="visible"/><path style="marker:none" overflow="visible" d="M28 
184h88v88H28z"/></g><path style="marker:none" fill="#d5d3cf" d="M106.5 186v2h-69v-2z"/><path 
style="marker:none" d="M128 184c0 6.627-5.373 12-12 12-1.85 
0-3.222-.095-5.165-1.166-1.092-1.726-3.55-4.584-5.668-5.666C104.096 187.224 104 185.85 104 184c0-6.627 
5.373-12 12-12s12 5.373 12 12z" color="#000" overflow="visible" fill="#d5d3cf"/><path style="marker:none" 
fill="#d5d3cf" d="M118 195h2v69h-2z"/><circle style="marker:none" cx="116" cy="272" r="12" color="#000" 
overflow="visible" fill="#d5d3cf"/><path style="marker:none" fill="#d5d3cf" d="M87 250v2H57v-2zm20.605 
16.425l-1.415 1.414-15-15 1.415-1.414zm3.453-74.632l1.414 1.414-15 15-1.414-1.414z"/><circle 
style="marker:none" cx="116" cy="182" r="12" color="#000" overflow="visible" fill="url(#bd)"/><path 
style="marker:none" fill="#d5d3cf" d="M94 214
 h2v26h-2zm-7-4v2H57v-2z"/><circle style="marker:none" cx="92" cy="208" r="8" color="#000" overflow="visible" 
fill="#d5d3cf"/><path style="marker:none" fill="#d5d3cf" d="M106.5 274v2h-69v-2z"/><circle r="12" cy="270" 
cx="116" style="marker:none" color="#000" overflow="visible" fill="url(#be)"/><path style="marker:none" 
d="M100 248c0 .666 0 1-.235 1.932-1.165.59-4.765 4.542-5.787 5.822-.502.246-1.295.246-1.978.246a8 8 0 118-8z" 
color="#000" overflow="visible" fill="#d5d3cf"/><circle style="marker:none" cx="92" cy="246" r="8" 
color="#000" overflow="visible" fill="url(#bf)"/><circle r="8" cy="206" cx="92" style="marker:none" 
color="#000" overflow="visible" fill="url(#bg)"/><path style="marker:none" fill="#d5d3cf" d="M30 
195h2v69h-2z"/><circle r="12" cy="272" cx="28" style="marker:none" color="#000" overflow="visible" 
fill="#d5d3cf"/><path style="marker:none" fill="#d5d3cf" d="M54 214h2v26h-2z"/><circle r="8" cy="208" cx="52" 
style="marker:none" color="#000" overflow="visible" fill="#d5d
 3cf"/><path style="marker:none" fill="#d5d3cf" d="M51.586 251.586L53 253l-15 15-1.414-1.414z"/><path 
d="M15.912 184c0 6.627 5.372 12 12 12 1.849 0 3.222-.095 5.165-1.166 1.092-1.726 3.55-4.584 5.668-5.666 
1.071-1.944 1.167-3.318 1.167-5.168 0-6.627-5.373-12-12-12-6.628 0-12 5.373-12 12z" style="marker:none" 
color="#000" overflow="visible" fill="#d5d3cf"/><path style="marker:none" fill="#d5d3cf" d="M48.078 
206.953l-1.415 1.414-15-15 1.415-1.414z"/><circle r="12" cy="182" cx="28" style="marker:none" color="#000" 
overflow="visible" fill="url(#bh)"/><circle style="marker:none" cx="28" cy="270" r="12" color="#000" 
overflow="visible" fill="url(#bi)"/><circle style="marker:none" cx="52" cy="206" r="8" color="#000" 
overflow="visible" fill="url(#bj)"/><path d="M44 248c0 .666 0 1 .235 1.932 1.165.59 4.765 4.542 5.787 
5.822.502.246 1.295.246 1.978.246a8 8 0 10-8-8z" style="marker:none" color="#000" overflow="visible" 
fill="#d5d3cf"/><circle r="8" cy="246" cx="52" style="marker:none" color="#00
 0" overflow="visible" fill="url(#bk)"/></g><g transform="translate(1009 -76.162)"><path style="marker:none" 
d="M132 229a60 60 0 01-60 60 60 60 0 01-60-60 60 60 0 0160-60 60 60 0 0160 60z" fill="#deddda"/><rect ry="56" 
rx="56" y="171" x="16" height="114" width="112" style="marker:none" fill="#d5d3cf"/><path d="M132 227a60 60 0 
01-60 60 60 60 0 01-60-60 60 60 0 0160-60 60 60 0 0160 60z" style="marker:none" fill="#f6f5f4"/><circle 
cy="227" cx="72" style="marker:none" r="54" fill="#3d3846"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M98.035 199.992a1.002 1.002 0 00-.777
 .33l-21.975 23.665a6 6 0 00-5.582-.522l-14.22-15.801a2.003 2.003 0 00-1.604-.682 2.003 2.003 0 00-1.374 
3.362l14.22 15.799a6 6 0 00-.21 5.305 6 6 0 002.404 2.7L57.058 264.64a1.002 1.002 0 
101.867.725l11.858-30.49a6 6 0 003.653-.393 6 6 0 003.035-7.924 6 6 0 00-.725-1.204l21.98-23.67a1.002 1.002 0 
00-.691-1.693z" color="#000" font-weight="400" font-family="sans-serif" overflow="visible" opacity=".2" 
fill-rule="evenodd"/><path d="M72 227l-18-20" fill="#c0bfbc" fill-rule="evenodd" stroke="url(#bl)" 
stroke-width="4.006" stroke-linecap="round"/><path d="M72 227l26-28" fill="none" stroke="#fff" 
stroke-width="2.003" stroke-linecap="round"/><path d="M72 227l-14 36" fill="none" stroke="#ed333b" 
stroke-width="2.003" stroke-linecap="round"/><circle transform="rotate(-24.04)" style="marker:none" 
cx="-26.715" cy="236.642" r="6" color="#000" overflow="visible" fill="#d5d3cf"/><circle cy="227" cx="72.029" 
style="marker:none" r="2.003" color="#000" overflow="visible" fill="#131c1a"/><circle style="
 marker:none" cx="72.029" cy="227" r="2" color="#000" overflow="visible" fill="#131c1a"/><path 
style="marker:none" d="M72 173a54 54 0 00-54 54 54 54 0 00.042 1.17A54 54 0 0172 175a54 54 0 0153.959 
52.828A54 54 0 00126 227a54 54 0 00-54-54z" opacity=".1"/></g><g transform="translate(1209 64)"><path 
style="marker:none" overflow="visible" fill="none" d="M0 172h128v128H0z"/><rect style="marker:none" 
width="112" height="64" x="8" y="224" rx="8" ry="8" fill="#2ec27e"/><g stroke="#26a269" stroke-width=".935" 
fill="none"><path d="M27 230v14" stroke-width="1.871" transform="matrix(1 0 0 1.14286 0 -22.857)"/><path 
d="M32 230v14" stroke-width="3.742" transform="matrix(1 0 0 1.14286 0 -22.857)"/><path d="M37 230v14m4-14v14" 
stroke-width="1.871" transform="matrix(1 0 0 1.14286 0 -22.857)"/><path d="M46 230v14m10-14v14" 
stroke-width="3.742" transform="matrix(1 0 0 1.14286 0 -22.857)"/><path d="M51 230v14" stroke-width="1.871" 
transform="matrix(1 0 0 1.14286 0 -22.857)"/><path d="M63 230v14" stroke
 -width="5.612" transform="matrix(1 0 0 1.14286 0 -22.857)"/><path d="M69 230v14m4-14v14m4-14v14" 
stroke-width="1.871" transform="matrix(1 0 0 1.14286 0 -22.857)"/><path d="M82 230v14" stroke-width="3.742" 
transform="matrix(1 0 0 1.14286 0 -22.857)"/><path d="M87 230v14m12-14v14" stroke-width="1.871" 
transform="matrix(1 0 0 1.14286 0 -22.857)"/><path d="M93 230v14" stroke-width="5.612" transform="matrix(1 0 
0 1.14286 0 -22.857)"/><path d="M103 230v14m4-14v14" stroke-width="1.871" transform="matrix(1 0 0 1.14286 0 
-22.857)"/></g><path style="line-height:1000%;-inkscape-font-specification:'Cantarell Ultra-Bold'" d="M22.216 
266l1.197 5.068-3.9-3.279-1.453 2.592 5.01 1.658-5.044 1.59 1.434 2.64 3.955-3.304-1.2 
5.035h3.411l-1.102-4.959 3.834 3.314 1.477-2.619-4.979-1.685 5.118-1.426-1.453-2.62-4.034 3.085 
1.137-5.09zm16 0l1.197 5.068-3.9-3.279-1.453 2.592 5.01 1.658-5.044 1.59 1.434 2.64 3.955-3.304-1.2 
5.035h3.411l-1.102-4.959 3.834 3.314 1.477-2.619-4.979-1.685 5.118-1.426-1.453-2.62-4.
 034 3.085 1.137-5.09zm16 0l1.197 5.068-3.9-3.279-1.453 2.592 5.01 1.658-5.044 1.59 1.434 2.64 
3.955-3.304-1.2 5.035h3.411l-1.102-4.959 3.834 3.314 1.477-2.619-4.979-1.685 5.118-1.426-1.453-2.62-4.034 
3.085 1.137-5.09zm16 0l1.197 5.068-3.9-3.279-1.453 2.592 5.01 1.658-5.044 1.59 1.434 2.64 3.955-3.304-1.2 
5.035h3.411l-1.102-4.959 3.834 3.314 1.477-2.619-4.979-1.685 5.118-1.426-1.453-2.62-4.034 3.085 
1.137-5.09zm16 0l1.197 5.068-3.9-3.279-1.453 2.592 5.01 1.658-5.044 1.59 1.434 2.64 3.955-3.304-1.2 
5.035h3.411l-1.102-4.959 3.834 3.314 1.477-2.619-4.979-1.685 5.118-1.426-1.453-2.62-4.034 3.085 
1.137-5.09zm16 0l1.197 5.068-3.9-3.279-1.453 2.592 5.01 1.658-5.044 1.59 1.434 2.64 3.955-3.304-1.2 
5.035h3.411l-1.102-4.959 3.834 3.314 1.477-2.619-4.979-1.685 5.118-1.426-1.453-2.62-4.034 3.085 1.137-5.09z" 
fill="#8ff0a4" font-weight="800" font-family="Cantarell" letter-spacing="2" word-spacing="0"/><rect ry="8" 
rx="8" y="200" x="8" height="40" width="112" style="marker:none" fill="#2ec27e"/><p
 ath style="marker:none" fill="#241f31" d="M8 214h112v18H8z"/><path d="M22 242l-7.2 6 7.2 6z" fill="#26a269" 
fill-rule="evenodd"/><path style="marker:none" d="M170 296a28 28 0 01-28-28 28 28 0 0128-28 28 28 0 0128 28 
28 28 0 01-28 28zm.031-12a6.031 6 0 006.031-6 6.031 6 0 00-6.03-6 6.031 6 0 00-6.032 6 6.031 6 0 006.031 6z" 
fill="url(#bm)" transform="rotate(180 107.5 242)"/><path d="M34 240h24v11.833L53 252v6l-2 2 2 2v3l-3 3 3 3-2 
2 2 2-4 4 4 4-2 2 2 2-9 9h-7l-3-3z" style="marker:none" fill="#77767b"/><path style="marker:none" d="M124 
213.03L107.03 230l8.367 8.367 3.653-3.417 4.243 4.242h2.828v2.829l2.122 
2.121h4.242v4.243h2.829v2.828h5.657v5.657h2.828v2.828h12.728l4.95-4.95v-4.242z" fill="url(#bn)" 
transform="scale(-1 1) rotate(45 14.858 34.792)"/><path style="marker:none" d="M125.748 
221.265c-1.794.002-2.678 2.182-1.392 3.433l33.585 33.586 2.829-2.828-33.586-33.586a2 2 0 00-1.436-.605z" 
fill="url(#bo)" transform="scale(-1 1) rotate(45 14.858 34.792)"/><path d="M45 186a28 28 0 00-28
  28 28 28 0 0028 28 28 28 0 0028-28 28 28 0 00-28-28zm.031 12a6 6.031 90 016.031 6 6 6.031 90 01-6.03 6A6 
6.031 90 0139 204a6 6.031 90 016.031-6z" style="marker:none" fill="#f6f5f4"/></g><g transform="translate(825 
56)"><rect style="marker:none" width="112" height="86" x="8" y="200" rx="8" ry="8" fill="#f6f5f4"/><path 
d="M64 236v40h44.994a3 3 0 003.006-3.006v-33.988a3 3 0 00-3.006-3.006z" style="marker:none" 
fill="url(#bp)"/><path style="marker:none" d="M8 276v4c0 4.432 3.568 8 8 8h96c4.432 0 8-3.568 8-8v-4c0 
4.432-3.568 8-8 8H16c-4.432 0-8-3.568-8-8z" fill="url(#bq)"/><rect ry="1.945" rx="1.945" y="208" x="16" 
height="24" width="96" style="marker:none" fill="#241f31"/><rect ry="0" rx="0" y="208" x="29" height="24" 
width="66" style="marker:none" fill="url(#br)"/><path opacity=".623" fill="#26a269" d="M96 
219h16v2H96z"/><path d="M94 220l-77-.002" opacity=".8" fill="none" stroke="#57e389" stroke-width="2" 
stroke-linecap="square"/><path d="M42 217.009v5.99M50 218v4m8-5v5.958M66 215v10m
 8-12v14m8-11v8m8-8v8" fill="none" stroke="#33d17a" stroke-width="4" stroke-linecap="round"/><path d="M42 
219v2m8-1v0m8-1v2m8-3v4m8-5v6m8-5v4m8-2.959V221" fill="none" stroke="#f9f06b" stroke-width="4" 
stroke-linecap="round"/><path d="M64 234v38h44.994a3 3 0 003.006-3.006v-31.988a3 3 0 00-3.006-3.006z" 
style="marker:none" fill="#fff"/><path style="marker:none" d="M64 236v40H19.006A3 3 0 0116 272.994v-33.988A3 
3 0 0119.006 236z" fill="url(#bs)"/><path style="marker:none" d="M64 236v38H19.006A3 3 0 0116 
270.994v-31.988A3 3 0 0119.006 236z" fill="#e01b24"/><circle r="9" cy="256" cx="40" style="marker:none" 
fill="#fff"/><path d="M72 244v16l16-8zm16 0h6v16h-6zm10 0h6v16h-6z" style="marker:none" fill="#241f31"/><path 
style="marker:none" fill="#8ff0a4" d="M95 208h2v24h-2z"/><path d="M17.945 208a1.942 1.942 0 00-1.946 
1.945v2c0-1.077.869-1.945 1.946-1.945h92.11c1.077 0 1.945.868 1.945 1.945v-2a1.942 1.942 0 00-1.945-1.945z" 
style="marker:none" fill="#241f31" fill-opacity=".374"/></g><g><path 
 d="M1076.783 133.78l61.878 134.07a9.446 9.446 0 0015.256 2.721l17.476-17.475a7.766 7.766 0 
0111.029.046l36.016 36.622c6.658 7.61 18.224 8.382 25.834 1.724 7.61-6.658 8.381-18.224 
1.723-25.834l-37.638-38.448a7.915 7.915 0 01.06-11.134l23.985-23.985a8.573 8.573 0 
00-3.179-14.136l-145.36-51.914a5.69 5.69 0 00-7.08 7.744z" fill-opacity=".2"/><path d="M1076.783 
128.899l61.878 134.07a9.446 9.446 0 0015.256 2.72l19.917-19.916a8.001 8.001 0 0111.193-.12L1220.879 280c6.658 
7.61 18.224 8.381 25.834 1.724 7.61-6.658 8.381-18.224 1.723-25.834l-37.48-36.165a7.693 7.693 0 
01-.099-10.976l21.545-21.545a8.573 8.573 0 00-3.179-14.135l-145.36-51.914a5.69 5.69 0 00-7.08 7.744z" 
fill="#fff"/><path d="M1077.664 122.773a5.69 5.69 0 00-.882 6.126l61.88 134.068a9.446 9.446 0 0015.255 
2.723l19.917-19.917a8.001 8.001 0 0111.192-.12L1220.879 280c6.658 7.61 18.224 8.381 25.834 
1.724.087-.076.16-.162.245-.239z" fill="#deddda"/></g><g transform="matrix(.5 0 0 .5 44.4 37.02)"><rect 
style="marker:none" width="80" h
 eight="84" x="277.07" y="36.011" rx="8" ry="8" fill="url(#bt)"/><rect ry="8" rx="8" y="8.011" x="277.07" 
height="106" width="80" style="marker:none" fill="#deddda"/><rect y="18.011" x="287.07" height="14" 
width="60.04" style="marker:none" rx="4" ry="4" fill="#77767b"/><rect transform="scale(1 -1)" ry="4" rx="4" 
style="marker:none" width="60.04" height="16" x="287.07" y="-36.011" fill="#6fb182"/><g 
transform="translate(158.622 -188.46)"><path d="M128.448 239.47v2c0 3.879 3.122 7 7 7s7-3.121 7-7v-2z" 
fill="#5e5c64"/><rect width="14" height="14" x="128.448" y="232.471" rx="9" ry="9" fill="#9a9996"/><path 
d="M151.458 239.47v2c0 3.879 3.122 7 7 7s7-3.121 7-7v-2z" fill="#5e5c64"/><rect ry="9" rx="9" y="232.471" 
x="151.448" height="14" width="14" fill="#9a9996"/><path d="M174.448 239.47v2c0 3.879 3.122 7 7 7s7-3.121 
7-7v-2z" fill="#5e5c64"/><rect width="14" height="14" x="174.448" y="232.471" rx="9" ry="9" 
fill="#9a9996"/><path d="M128.448 261.47v2c0 3.879 3.122 7 7 7s7-3.121 7-7v-2zM151.4
 58 261.47v2c0 3.879 3.122 7 7 7s7-3.121 7-7v-2z" fill="#3d3846"/><rect ry="9" rx="9" y="254.471" x="128.448" 
height="14" width="14" fill="#5e5c64"/><rect width="14" height="14" x="151.448" y="254.471" rx="9" ry="9" 
fill="#5e5c64"/><path d="M128.448 283.47v2c0 3.879 3.122 7 7 7s7-3.121 7-7v-2z" fill="#3d3846"/><rect 
width="14" height="14" x="128.448" y="276.471" rx="9" ry="9" fill="#5e5c64"/><path d="M151.458 283.47v2c0 
3.879 3.122 7 7 7s7-3.121 7-7v-2z" fill="#3d3846"/><rect ry="9" rx="9" y="276.471" x="151.448" height="14" 
width="14" fill="#5e5c64"/><rect ry="7" rx="7" y="274.471" x="174.448" height="18" width="14" 
fill="#c64600"/><rect ry="7" rx="7" y="254.471" x="174.448" height="36" width="14" 
fill="#ff7800"/></g></g></svg>
\ No newline at end of file
diff --git a/data/resources/assets/overview.svg b/data/resources/assets/overview.svg
new file mode 100644
index 0000000..e7dc0f1
--- /dev/null
+++ b/data/resources/assets/overview.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; width="600" 
height="300"><defs><linearGradient id="m"><stop offset="0" stop-color="#fff"/><stop offset="1" 
stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="w"><stop offset="0" 
stop-color="#fff" stop-opacity=".663"/><stop offset="1" stop-color="#fff" 
stop-opacity="0"/></linearGradient><linearGradient id="g"><stop offset="0" stop-color="#613583"/><stop 
offset="1" stop-color="#a347ba"/></linearGradient><linearGradient id="a"><stop offset="0" 
stop-color="#f6d32d"/><stop offset=".182" stop-color="#f9f06b"/><stop offset=".795" 
stop-color="#e5a50a"/><stop offset="1" stop-color="#f6d32d"/></linearGradient><linearGradient xlink:href="#a" 
id="N" gradientUnits="userSpaceOnUse" gradientTransform="translate(804 -220.033)" x1="216" y1="144" x2="360" 
y2="144"/><linearGradient xlink:href="#a" id="L" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="64" y1="280" x2=
 "240" y2="280"/><linearGradient id="s"><stop offset="0" stop-color="#949390"/><stop offset="1" 
stop-color="#767579"/></linearGradient><linearGradient xlink:href="#a" id="K" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="352" y1="256" x2="448" y2="256"/><linearGradient 
xlink:href="#c" id="M" gradientUnits="userSpaceOnUse" gradientTransform="translate(828 -220.033)" 
x1="317.666" y1="211.334" x2="341.571" y2="187.429"/><linearGradient id="c"><stop offset="0" 
stop-color="#68676b"/><stop offset=".733" stop-color="#949390"/><stop offset="1" 
stop-color="#8b8a87"/></linearGradient><linearGradient xlink:href="#d" id="O" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(961.714 -317.176) scale(.85714)" x1="165.737" y1="323.267" x2="134.779" 
y2="207.729"/><linearGradient id="d"><stop offset="0" stop-color="#191622"/><stop offset="1" 
stop-color="#424048"/></linearGradient><linearGradient xlink:href="#d" id="P" gradientUnits="userSpaceOnUse" 
gradientTran
 sform="translate(804 -220.033)" x1="165.737" y1="323.267" x2="134.779" y2="207.729"/><linearGradient 
xlink:href="#e" id="Q" gradientUnits="userSpaceOnUse" gradientTransform="translate(804 -220.033)" 
x1="144.906" y1="245.525" x2="159.094" y2="298.475"/><linearGradient id="e"><stop offset="0" 
stop-color="#2e3436"/><stop offset="1" stop-color="#555753"/></linearGradient><linearGradient xlink:href="#d" 
id="R" gradientUnits="userSpaceOnUse" gradientTransform="translate(804 -220.033)" x1="144.906" y1="245.525" 
x2="159.094" y2="298.475"/><linearGradient xlink:href="#d" id="S" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(.75 0 0 .75 978 -288.032)" x1="144.906" y1="245.525" x2="159.094" 
y2="298.475"/><linearGradient xlink:href="#d" id="T" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(1117.143 -127.462) scale(.57143)" x1="165.737" y1="323.267" x2="134.779" 
y2="207.729"/><linearGradient xlink:href="#d" id="U" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(.5
  0 0 .5 1128 -108.033)" x1="144.906" y1="245.525" x2="159.094" y2="298.475"/><linearGradient id="f"><stop 
offset="0" stop-color="#2dc0af"/><stop offset="1" stop-color="#5ed9cb"/></linearGradient><linearGradient 
id="r"><stop offset="0" stop-color="#555753"/><stop offset="1" 
stop-color="#2e3436"/></linearGradient><linearGradient xlink:href="#a" id="H" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="216" y1="144" x2="360" y2="144"/><linearGradient 
xlink:href="#a" id="I" gradientUnits="userSpaceOnUse" gradientTransform="translate(804 -220.033)" x1="64" 
y1="280" x2="240" y2="280"/><linearGradient gradientUnits="userSpaceOnUse" y2="276" x2="64" y1="246.969" 
x1="45.999" id="X" xlink:href="#g"/><linearGradient xlink:href="#a" id="G" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(804 -220.033)" x1="352" y1="256" x2="448" y2="256"/><linearGradient 
gradientUnits="userSpaceOnUse" y2="196" x2="64" y1="225.608" x1="82" id="Y" xlink:href="#h"/><linearGra
 dient id="h"><stop offset="0" stop-color="#e5a50a"/><stop offset="1" 
stop-color="#f6d32d"/></linearGradient><linearGradient gradientUnits="userSpaceOnUse" y2="256.785" x2="28" 
y1="225.608" x1="45.999" id="Z" xlink:href="#i"/><linearGradient id="i"><stop offset="0" 
stop-color="#1a5fb4"/><stop offset="1" stop-color="#3584e4"/></linearGradient><linearGradient 
gradientUnits="userSpaceOnUse" y2="216" x2="100" y1="246.393" x1="82.001" id="aa" 
xlink:href="#j"/><linearGradient id="j"><stop offset="0" stop-color="#c64600"/><stop offset="1" 
stop-color="#ff7800"/></linearGradient><linearGradient gradientUnits="userSpaceOnUse" y2="215.216" x2="28" 
y1="215.215" x1="63.999" id="ab" xlink:href="#k"/><linearGradient id="k"><stop offset="0" 
stop-color="#26a269"/><stop offset="1" stop-color="#33d17a"/></linearGradient><linearGradient 
gradientUnits="userSpaceOnUse" y2="258" x2="100" y1="257.074" x1="64.499" id="ac" 
xlink:href="#l"/><linearGradient id="l"><stop offset="0" stop-color="#a51d2d"/><stop of
 fset="1" stop-color="#e01b24"/></linearGradient><linearGradient id="v"><stop offset="0" 
stop-color="#57e389"/><stop offset="1" stop-color="#3584e4"/></linearGradient><linearGradient id="q"><stop 
offset="0" stop-color="#fdfacf"/><stop offset=".4" stop-color="#f9f06b"/><stop offset="1" 
stop-color="#e5a50a"/></linearGradient><linearGradient xlink:href="#n" id="ae" x1="85" y1="107.162" x2="85" 
y2="86" gradientUnits="userSpaceOnUse" gradientTransform="translate(-6 176)"/><linearGradient id="n"><stop 
offset="0" stop-color="#eef4fc"/><stop offset="1" stop-color="#fff"/></linearGradient><linearGradient 
id="o"><stop offset="0" stop-color="#c061cb"/><stop offset="1" 
stop-color="#8f58c8"/></linearGradient><linearGradient id="p"><stop offset="0" stop-color="#2dc0af"/><stop 
offset="1" stop-color="#3584e4"/></linearGradient><linearGradient id="b"><stop offset="0" 
stop-color="#f9f06b"/><stop offset="1" stop-color="#f6d32d"/></linearGradient><linearGradient id="D"><stop 
offset="0" stop-color="#a51d
 2d"/><stop offset=".034" stop-color="#ed333b"/><stop offset=".071" stop-color="#c01c28"/><stop offset=".928" 
stop-color="#c01c28"/><stop offset=".964" stop-color="#ed333b"/><stop offset="1" 
stop-color="#c01c28"/></linearGradient><linearGradient gradientTransform="translate(0 12)" xlink:href="#D" 
id="aq" x1="8" y1="264" x2="120" y2="264" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#n" 
id="ai" gradientUnits="userSpaceOnUse" gradientTransform="translate(-6 176)" x1="85" y1="107.162" x2="85" 
y2="86"/><linearGradient id="C"><stop offset="0" stop-color="#d81d25"/><stop offset="1" 
stop-color="#f66151"/></linearGradient><linearGradient id="t"><stop offset="0" stop-color="#16529c"/><stop 
offset="1" stop-color="#236ac0"/></linearGradient><linearGradient id="u"><stop offset="0" 
stop-color="#2166bb"/><stop offset="1" stop-color="#40a1c8"/></linearGradient><linearGradient xlink:href="#t" 
id="af" gradientUnits="userSpaceOnUse" gradientTransform="translate(-1232 16)" x1="90" y1="26
 8" x2="100" y2="268"/><linearGradient xlink:href="#u" id="ag" gradientUnits="userSpaceOnUse" 
gradientTransform="rotate(-90 -552 845)" x1="1" y1="215" x2="1" y2="171"/><linearGradient xlink:href="#v" 
id="E" x1="846.789" y1="64.232" x2="1871.657" y2="64.232" gradientUnits="userSpaceOnUse"/><linearGradient 
xlink:href="#w" id="F" x1="159.484" y1="167.058" x2="603.279" y2="147.333" 
gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#x" id="aj" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(.5 0 0 .5 3965.5 3116.805)" x1="116.205" y1="238" x2="600.205" 
y2="-316.08"/><linearGradient id="x"><stop offset="0" stop-color="#b2d1e9"/><stop offset=".136" 
stop-color="#c0c6cd"/><stop offset=".453" stop-color="#d2dee8"/><stop offset=".72" 
stop-color="#bfc5ce"/><stop offset=".937" stop-color="#dbe2e8"/><stop offset="1" 
stop-color="#e4e6e8"/></linearGradient><linearGradient xlink:href="#y" id="ak" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(-246.017 -371.377)" x1="99
 .846" y1="91.301" x2="431.139" y2="91.301"/><linearGradient id="y"><stop offset="0" 
stop-color="#f6d32d"/><stop offset="1" stop-color="#f9f06b"/></linearGradient><linearGradient y2="-180" 
x2="336" y1="62" x1="336" gradientTransform="matrix(.25 0 0 .25 8 225)" gradientUnits="userSpaceOnUse" 
id="ap" xlink:href="#C"/><linearGradient id="z"><stop offset="0" stop-color="#c4a000"/><stop offset="1" 
stop-color="#edd400" stop-opacity="0"/></linearGradient><linearGradient id="B"><stop offset="0" 
stop-color="#a51d2d"/><stop offset="1" stop-color="#ce1921"/></linearGradient><linearGradient id="A"><stop 
offset="0" stop-color="#fff"/><stop offset="1" stop-color="#c4c5c3"/></linearGradient><linearGradient 
y2="-68" x2="415.5" y1="-68" x1="320.5" gradientTransform="translate(115.032 109.18) scale(.25263)" 
gradientUnits="userSpaceOnUse" id="ao" xlink:href="#B"/><radialGradient xlink:href="#A" id="am" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(1 0 0 1.00007 0 -.007)" cx="273.943" cy="67.
 198" fx="273.943" fy="67.198" r="56"/><radialGradient xlink:href="#z" id="al" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(1 0 0 1.1759 0 -118.638)" cx="280" cy="16.275" fx="280" fy="16.275" 
r="160"/><radialGradient xlink:href="#s" id="J" cx="128" cy="384.952" fx="128" fy="384.952" r="80" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(.525 0 0 .3675 60.8 242.53)"/><radialGradient 
xlink:href="#q" id="ah" gradientUnits="userSpaceOnUse" gradientTransform="matrix(.347 0 0 .34223 -33.506 
42.518)" cx="280.994" cy="488.848" fx="280.994" fy="488.848" r="224"/><radialGradient xlink:href="#r" id="V" 
cx="343.875" cy="308.125" fx="343.875" fy="308.125" r="8" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(916 -220)"/><radialGradient xlink:href="#r" id="W" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(-1492 -220)" cx="343.875" cy="308.125" 
fx="343.875" fy="308.125" r="8"/><radialGradient xlink:href="#q" id="ad" gradientUnits="userSpaceOnUse" gradie
 ntTransform="matrix(.347 0 0 .34223 -33.506 42.518)" cx="280.994" cy="488.848" fx="280.994" fy="488.848" 
r="224"/><clipPath clipPathUnits="userSpaceOnUse" id="an"><path style="marker:none" d="M64-148h64l64-64 64 
64h192c17.728 0 32 14.272 32 32v288c0 17.728-14.272 32-32 32H256l-64-64-64 64H64c-17.728 
0-32-14.272-32-32v-288c0-17.728 14.409-34.199 32-32z" fill="none" stroke="#000" stroke-width="4" 
stroke-linecap="round" stroke-linejoin="round"/></clipPath><clipPath clipPathUnits="userSpaceOnUse" 
id="ar"><path fill="#949390" stroke-width="16" stroke-linecap="round" stroke-linejoin="round" 
stroke-dashoffset="11.2" d="M208 4h96v48h-96z"/></clipPath></defs><rect width="1024.868" height="435.569" 
x="846.789" y="-153.552" rx="42.703" ry="50.648" fill="url(#E)" transform="matrix(.58544 0 0 .4936 -495.745 
115.794)"/><g transform="translate(-955.98 2318.22) scale(.4016)"><rect 
style="font-variation-settings:normal;marker:none" width="520" height="480" x="2440" y="-5744.01" rx="63.718" 
ry="64.68
 6" fill-opacity=".102"/><rect style="font-variation-settings:normal;marker:none" width="520" height="480" 
x="2440" y="-5757.48" rx="63.718" ry="64.686" fill="#f6f5f4"/><path 
style="font-variation-settings:normal;marker:none" d="M2503.719-5757.48c-35.3 0-63.719 28.849-63.719 
64.685v95.315h520v-95.315c0-35.836-28.419-64.685-63.719-64.685z" fill="#deddda"/><path 
style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M2859.975-5703.48a6 6 0 00-4.217 1.757 6 6 0 000 8.485l15.758 15.758-15.758 15.758
 a6 6 0 000 8.484 6 6 0 008.484 0l15.758-15.758 15.758 15.758a6 6 0 008.484 0 6 6 0 000-8.484l-15.758-15.758 
15.758-15.758a6 6 0 000-8.484 6 6 0 00-4.267-1.758 6 6 0 00-4.217 1.757L2880-5685.965l-15.758-15.757a6 6 0 
00-4.267-1.758z" color="#000" font-weight="400" font-family="sans-serif" overflow="visible" 
fill="#77767b"/><path style="font-variation-settings:normal;marker:none" fill="#c0bfbc" 
d="M2440-5602.441h520v4.961h-520z"/></g><path style="mix-blend-mode:normal" d="M466.074 231.414c20.784-12.465 
36.28-33.45 42.076-56.982 5.797-23.532 
1.822-49.314-10.793-70.006-12.997-21.32-34.497-36.705-58.049-44.997-23.551-8.291-49.07-9.873-73.937-7.624-43.712
 3.952-86.301 19.71-122.059 45.162-35.757 25.452-64.592 60.532-82.64 100.54L54.73 198.575c31.598-58.176 
80.696-106.7 139.239-137.612 58.543-30.913 126.303-44.092 192.165-37.377 23.985 2.445 47.93 7.54 69.733 
17.832 21.801 10.292 41.43 26.056 53.81 46.742 14.437 24.12 18.147 54.403 9.962 81.296-8.185 26.892-28.138 
49.972-53.565 61.96z" fill
 ="url(#F)"/><g transform="translate(71.957 -165.852) scale(.2071)"><rect style="marker:none" width="96" 
height="112" x="1156" y="-20.033" rx="48" ry="48" fill="url(#G)"/><rect style="marker:none" width="144" 
height="160" x="1020" y="-156.033" rx="72" ry="72" fill="url(#H)"/><rect style="marker:none" width="176" 
height="192" x="868" y="-36.033" rx="88" ry="88" fill="url(#I)"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M1077.373-106.66l-160 160 45.254 45.254 160-160z" color="#000" font-weight="400" font-family="sans-serif" 
overflow="visible" fill="none" stroke="#f5ce1
 7" stroke-width="32"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M80 224v128c0 17.673-14.327 32-32 32H32v32h192v-32h-16c-17.673 0-32-14.327-32-32V224z" color="#000" 
font-weight="400" font-family="sans-serif" overflow="visible" fill="url(#J)" transform="translate(828 
-204.033)"/><path style="marker:none" fill="#68676b" d="M860 179.967h192v32H860z"/><path d="M1140 
99.967l64-64 64 64" fill="none" stroke="#424048" stroke-width="24"/><circle r="48" cy="35.967" cx="1204" 
style="marker:none" fill="url(#K)"/><path style="marker:none" d="M1260 68c13.255 0 24 10.745 24 24v48l
 -24 24h-24V92c0-13.255 10.745-24 24-24z" fill="#7a8599"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 d="M1077.373-114.66l-160 160 45.254 45.254 160-160z" color="#000" font-weight="400" font-family="sans-serif" 
overflow="visible" fill="none" stroke="#f9f06b" stroke-width="32"/><circle style="marker:none" cx="956" 
cy="59.967" r="88" fill="url(#L)"/><circle style="marker:none" cx="956" cy="51.967" r="88" 
fill="#f9f06b"/><path d="M1221 43.967l-128-128" fill="none" stroke="url(#M)" stroke-width="40"/><circle 
style="marker:none" cx="1092" cy="-76.033" r="72" fill="url(#N)"/><
 circle style="marker:none" cx="1092" cy="-84.033" r="72" fill="#f9f06b"/><circle r="48" cy="27.967" 
cx="1204" style="marker:none" fill="#f9f06b"/><circle style="marker:none" cx="1092" cy="-84.033" 
fill="url(#O)" r="48"/><circle style="marker:none" cx="956" cy="51.967" r="56" fill="url(#P)"/><circle 
style="marker:none" cx="956" cy="51.967" r="32" fill="url(#Q)"/><circle style="marker:none" cx="956" 
cy="51.967" r="32" fill="url(#R)"/><circle style="marker:none" cx="1092" cy="-84.033" r="24" 
fill="url(#S)"/><circle style="marker:none" cx="1204" cy="27.967" fill="url(#T)" r="32"/><circle 
style="marker:none" cx="1204" cy="27.967" r="16" fill="url(#U)"/><circle r="8" style="marker:none" cx="1260" 
cy="92" fill="url(#V)"/><path style="marker:none" d="M1148 68c-13.255 0-24 10.745-24 24v48l24 
24h24V92c0-13.255-10.745-24-24-24z" fill="#7a8599"/><circle r="8" style="marker:none" cx="-1148" cy="92" 
transform="scale(-1 1)" fill="url(#W)"/></g><path d="M520.865-144.533v12.01l-10.402 6.006-10.402-6
 .006v-12.01l10.402-6.006z" fill="#3d3846"/><path d="M489.66-150.538v24.02" fill="none" stroke="#33d17a" 
stroke-width="20.803"/><path d="M510.463-114.506l-20.803-12.011" fill="none" stroke="#3584e4" 
stroke-width="20.803"/><path d="M510.463-114.506l20.803-12.012" fill="none" stroke="#a347ba" 
stroke-width="20.803"/><path d="M531.266-150.54v24.022" fill="none" stroke="#e01b24" 
stroke-width="20.803"/><path d="M531.266-150.54l-20.804-12.01" fill="none" stroke="#ff7800" 
stroke-width="20.803"/><path d="M489.66-150.538l20.802-12.012" fill="none" stroke="#f6d32d" 
stroke-width="20.803"/><path d="M64 295.57c9.941 0 18-8.06 18-18a18 18 0 
00-7.744-14.766l-9.258-5.442-.998-.576a419.435 419.435 0 01-8.534-4.96A18 18 0 0146 236v41.568c0 9.941 8.059 
18 18 
18zm-17.934-19.452c.024-.283.065-.562.102-.842-.04.28-.074.56-.102.842zm.938-4.412c.026-.075.045-.154.072-.229l.004-.002-.076.23z"
 fill="url(#X)" transform="translate(473.48 -274.905) scale(.57787)"/><path d="M64 176.432c-9.941 0-18 
8.059-18 18a18 1
 8 0 007.744 14.765l9.258 5.442.998.576a419.435 419.435 0 018.534 4.96A18 18 0 0182 
236v-41.568c0-9.941-8.059-18-18-18zm17.934 19.45c-.024.284-.065.563-.102.843.04-.28.074-.56.102-.842zm-.938 
4.413c-.026.075-.045.153-.072.228l-.004.002z" fill="url(#Y)" transform="translate(473.48 -274.905) 
scale(.57787)"/><path d="M12.412 265.785c4.97 8.61 15.98 11.559 24.588 6.588a18 18 0 
008.916-14.09l.083-10.737v-1.153c-.03-3.185-.017-6.864.03-9.87a18 18 0 018.97-16.11l-9 5.195-18 10.393-4.068 
2.349-4.93 2.846c-8.61 4.97-11.56 15.98-6.589 24.589zm7.878-25.257c.257-.12.52-.224.78-.333a19.02 19.02 0 
00-.78.333zm4.29-1.394c.078-.015.156-.038.234-.052l.004.002z" fill="url(#Z)" transform="translate(473.48 
-274.905) scale(.57787)"/><path d="M115.588 206.216c-4.97-8.61-15.98-11.559-24.588-6.588a18 18 0 00-8.916 
14.089l-.083 10.738v1.153c.03 3.185.017 6.864-.03 9.87a18 18 0 01-8.97 16.11l9-5.196L100 236l4.068-2.349 
4.93-2.846c8.61-4.971 11.56-15.98 6.589-24.589zm-7.878 25.257c-.257.12-.52.224-.78.333.262-
 .105.522-.216.78-.333zm-4.29 1.394c-.078.015-.156.037-.234.051l-.004-.002c.08-.015.158-.032.238-.049z" 
fill="url(#aa)" transform="translate(473.48 -274.905) scale(.57787)"/><path d="M12.412 206.216c-4.97 
8.61-2.02 19.618 6.588 24.588a18 18 0 0016.66.677l9.34-5.297.998-.576a419.443 419.443 0 018.563-4.91A18 18 0 
0173 220.412l-9-5.197-18.001-10.392-4.068-2.349-4.93-2.846c-8.61-4.971-19.619-2.021-24.59 
6.588zm25.812-5.805c.233.162.454.337.678.509a18.002 18.002 0 00-.678-.51zm3.352 
3.018c.052.06.11.115.162.176v.004z" fill="url(#ab)" transform="translate(473.48 -274.905) 
scale(.57787)"/><path d="M115.588 265.785c4.97-8.61 2.02-19.618-6.588-24.589a18 18 0 00-16.66-.676L83 
245.817l-.998.576a419.416 419.416 0 01-8.563 4.91A18 18 0 0155 251.59l9 5.196 18.001 10.393 4.068 2.349 4.93 
2.846c8.61 4.97 19.619 2.021 24.59-6.588zm-25.812 
5.805c-.233-.162-.454-.337-.678-.509.222.175.448.345.678.51zm-3.352-3.018c-.052-.06-.11-.116-.162-.177v-.004l.162.182z"
 fill="url(#ac)" transform="translate(473.48
  -274.905) scale(.57787)"/><path d="M500.061-144.533v12.01l10.402 6.006 10.402-6.006v-12.01l-10.402-6.006z" 
fill="#241f31"/><g><g transform="translate(374.586 -305.412) scale(.57742)"><path style="marker:none" 
fill="#f5c211" d="M20 192h88v88H20z"/><path style="marker:none" fill="#f6d32d" d="M126 236l-62 62-62-62 
62-62z"/><circle cy="236" cx="64" style="marker:none" fill="url(#ad)" r="48"/><path d="M90 244a20 20 0 
00-18.158 11.668A15.003 15.003 0 0065 254c-7.89.009-14.424 6.129-14.95 14.002L50 268c-4.1 0-7.618 2.47-9.162 
6H40v4c0 5.523 4.477 10 10 10h56a12 12 0 0012-12v-4h-.707a12 12 0 00-7.328-7.313A22.4 22.4 0 00110 
264c0-11.046-8.954-20-20-20z" fill="#dceafa"/><path d="M90 240a20 20 0 00-18.158 11.668A15.003 15.003 0 0065 
250c-7.89.009-14.424 6.129-14.95 14.002L50 264c-5.523 0-10 4.477-10 10s4.477 10 10 10h56a12 12 0 0012-12 12 
12 0 00-8.035-11.313A22.4 22.4 0 00110 260c0-11.046-8.954-20-20-20z" fill="url(#ae)"/></g></g><g><path 
d="M-1176 177a60 60 0 0160 60 60 60 0 01-60 60 60 60
  0 01-60-60 60 60 0 0160-60z" style="marker:none" fill="url(#af)" transform="matrix(.75 0 0 .75 1070 
-284)"/><path style="marker:none" d="M-1176 177a60 60 0 00-60 60 60 60 0 0060 60z" fill="url(#ag)" 
transform="matrix(.75 0 0 .75 1070 -284)"/><path style="marker:none" d="M233-107.75a45 45 0 01-45 45 45 45 0 
01-45-45 45 45 0 0145-45 45 45 0 0145 45z" fill="#40a1c8"/><path style="marker:none" d="M161.003-107a27 47.25 
0 005.878 28.688 33 20.25 0 00-7.397 5.37A45 45 0 01143.006-107z" fill="#49bbb0"/><path d="M188-83v20.25a45 
45 0 01-10.033-1.134 27 47.25 0 01-11.086-14.427A33 20.25 0 01188-83z" style="marker:none" 
fill="#378bde"/><path d="M214.997-107a27 47.25 0 01-5.878 28.689 33 20.25 0 017.397 5.37A45 45 0 
00232.994-107z" style="marker:none" fill="#266ec6"/><path style="marker:none" d="M188-107v44.25a45 45 0 
0010.033-1.134A27 47.25 0 00214.997-107z" fill="#378bde"/><path style="marker:none" d="M188-83v20.25a45 45 0 
0010.033-1.134 27 47.25 0 0011.086-14.427A33 20.25 0 00188-83z" fill=
 "#266ec6"/><path d="M209.119-78.312a27 47.25 0 01-11.086 14.428 45 45 0 0018.483-9.058 33 20.25 0 
00-7.397-5.37z" style="marker:none" fill="#1e62b5"/><g><path d="M188-152.75a45 45 0 00-45 45 45 45 0 
00.006.75H188z" fill="#53d795"/><path d="M177.97-151.618a45 45 0 00-18.488 9.057 33 20.25 0 007.4 5.372 27 
47.25 0 0111.088-14.429z" fill="#72e99a"/><path d="M188-152.75a45 45 0 00-10.03 1.132A27 47.25 0 
00161-107.75a27 47.25 0 00.003.75H188z" fill="#49bbb0"/><path d="M188-152.75a45 45 0 00-10.03 1.132 27 47.25 
0 00-11.087 14.429A33 20.25 0 00188-132.5z" fill="#53d795"/></g><g><path d="M188-152.75a45 45 0 0145 45 45 45 
0 01-.006.75H188z" fill="#378bde"/><path d="M198.03-151.618a45 45 0 0118.488 9.057 33 20.25 0 01-7.4 5.372 27 
47.25 0 00-11.088-14.429z" fill="#40a1c8"/><path d="M188-152.75a45 45 0 0110.03 1.132A27 47.25 0 
01215-107.75a27 47.25 0 01-.003.75H188z" fill="#40a1c8"/><path d="M188-152.75a45 45 0 0110.03 1.132 27 47.25 
0 0111.087 14.429A33 20.25 0 01188-132.5z" fill="#49bbb0"/>
 </g></g><g><g transform="translate(475.245 -46.271) scale(.57742)"><path style="marker:none" fill="#f5c211" 
d="M20 192h88v88H20z"/><path style="marker:none" fill="#f6d32d" d="M126 236l-62 62-62-62 62-62z"/><circle 
cy="236" cx="64" style="marker:none" fill="url(#ah)" r="48"/><path d="M90 244a20 20 0 00-18.158 11.668A15.003 
15.003 0 0065 254c-7.89.009-14.424 6.129-14.95 14.002L50 268c-4.1 0-7.618 2.47-9.162 6H40v4c0 5.523 4.477 10 
10 10h56a12 12 0 0012-12v-4h-.707a12 12 0 00-7.328-7.313A22.4 22.4 0 00110 264c0-11.046-8.954-20-20-20z" 
fill="#dceafa"/><path d="M90 240a20 20 0 00-18.158 11.668A15.003 15.003 0 0065 250c-7.89.009-14.424 
6.129-14.95 14.002L50 264c-5.523 0-10 4.477-10 10s4.477 10 10 10h56a12 12 0 0012-12 12 12 0 
00-8.035-11.313A22.4 22.4 0 00110 260c0-11.046-8.954-20-20-20z" fill="url(#ai)"/></g></g><g><path d="M440 
104a15 15 45 0115 15v72a3 3 45 003 3h1a3 3 135 003-3v-8a14 14 135 0114-14 14 14 45 0114 14v8a3 3 45 003 3h1a3 
3 135 003-3v-8a14 14 135 0114-14 14 14 45 0114 14v8
 a3 3 45 003 3h1a3 3 135 003-3v-1a14 14 135 0114-14 14 14 45 0114 14v74a30 30 135 01-30 30h-80a48.284 48.284 
22.5 01-34.142-14.142l-47.511-47.511a13.61 13.61 85.935 01-1.264-17.79l.834-1.113a12.198 12.198 170.931 
0116.754-2.675l28.04 19.63A7.81 7.81 152.496 00425 224V119a15 15 135 0115-15z" opacity=".05"/><path d="M440 
100a15 15 45 0115 15v72a3 3 45 003 3h1a3 3 135 003-3v-8a14 14 135 0114-14 14 14 45 0114 14v8a3 3 45 003 3h1a3 
3 135 003-3v-8a14 14 135 0114-14 14 14 45 0114 14v8a3 3 45 003 3h1a3 3 135 003-3v-1a14 14 135 0114-14 14 14 
45 0114 14v74a30 30 135 01-30 30h-80a48.284 48.284 22.5 01-34.142-14.142L370.02 230.02a15.483 15.483 87.465 
01-.925-20.886l.454-.542a14.172 14.172 174.194 0119.681-2.002l24.024 19.08A7.242 7.242 154.229 00425 
220V115a15 15 135 0115-15z" fill="#f6f5f4"/><path d="M366.266 214.74c-1.993 5.045.075 11.54 3.91 
15.375l45.681 45.742A48.284 48.284 0 00450 290h80c16.569 0 30-13.431 30-30v-10c0 16.569-13.431 30-30 
30h-80a48.284 48.284 0 01-34.143-14.143l-46.556-46.4
 92a13.61 13.61 0 01-3.035-4.625z" fill="#e5e4e2"/></g><g><path style="marker:none" overflow="visible" 
fill="none" d="M373.634 6.563h68v68h-68z"/><path transform="translate(-3839.71 -3396.418) scale(1.0625)" 
d="M3997.354 3204.805a30 30 0 00-14.819 4h-7.035c-2.216 0-4 1.784-4 4v7.033a30 30 0 00-4 14.967 30 30 0 004 
14.967v7.033c0 2.216 1.784 4 4 4h7.031a30 30 0 0014.969 4 30 30 0 0014.963-4h7.037c2.216 0 4-1.784 
4-4v-7.035a30 30 0 004-14.965 30 30 0 00-4-14.965v-7.035c0-2.216-1.784-4-4-4h-7.037a30 30 0 00-14.963-4 30 30 
0 00-.146 0z" style="font-variation-settings:normal;marker:none" fill="url(#aj)"/><g transform="matrix(.14111 
0 0 .14111 368.111 37.814)"><ellipse style="marker:none" cx="280.076" cy="19.474" rx="195.765" 
ry="195.771"/><ellipse ry="180.712" rx="180.706" cy="19.475" cx="280.076" style="marker:none" 
fill="#2a2a3b"/><ellipse style="marker:none" cx="19.475" cy="-280.076" rx="165.647" ry="165.653" 
transform="rotate(90)" fill="url(#ak)"/><ellipse style="marker:none" cx="280.
 076" cy="19.475" rx="75.294" ry="75.299"/><ellipse style="font-variation-settings:normal;marker:none" 
cx="265.491" cy="91.306" rx="60.235" ry="60.239" transform="rotate(-15)" fill="url(#am)"/></g><path 
style="marker:none" d="M386.384 62.875a1.062 1.082 0 01-1.063 1.082 1.062 1.082 0 01-1.062-1.082 1.062 1.082 
0 011.062-1.082 1.062 1.082 0 011.063 1.082zm44.625 0a1.062 1.082 0 01-1.063 1.082 1.062 1.082 0 
01-1.062-1.082 1.062 1.082 0 011.062-1.082 1.062 1.082 0 011.063 1.082zm0-44.625a1.062 1.082 0 01-1.063 1.082 
1.062 1.082 0 01-1.062-1.082 1.062 1.082 0 011.062-1.082 1.062 1.082 0 011.063 1.082zm-44.625 0a1.062 1.082 0 
01-1.063 1.082 1.062 1.082 0 01-1.062-1.082 1.062 1.082 0 011.062-1.082 1.062 1.082 0 011.063 
1.082z"/></g><g><path style="marker:none" overflow="visible" fill="none" d="M243 8h96v96h-96z"/><g 
clip-path="url(#an)" transform="matrix(.1875 0 0 .1875 243 56.75)"><path d="M256 
124h160v-272h96v384H256l-64-64-64 64H0V124h128l64-64z" style="marker:none" fill="#cdab8f"/><pat
 h style="marker:none" d="M0 123.975l128 .05V-148H0z" fill="#55a7eb"/><path d="M144-164v272l48-48 64 
64.058h144L416 108v-256H256l-64-64z" fill="#2ec27e"/><path d="M399.898-147.89v238c0 10.027-9.373 
17.948-16.949 17.948H256L192 44.59l-39.375 39.535L152-211.942h-24V108l-128 .058v32.102h127L192 76l64 
64.16h126.95c26.424 0 47.962-22.048 49.05-50.05v-238z" 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"
 color="#000" font-weight="400" font-family="sans-serif" overflow="visible" fill="#fff"/><path d="M128 
267.975l64 .05V-212h-64z" style="marker:none" opacity=".3" fill="#fff"/><path style
 ="marker:none" d="M192 267.975l64 .05V-212h-64z" opacity=".15"/></g><g transform="matrix(.75 0 0 .75 243 
-121)"><circle cx="208" cy="92" transform="matrix(0 1 1 0 0 0)" r="12" fill="url(#ao)"/><path d="M92 
182a27.912 27.912 0 00-19.799 8.201c-10.934 10.935-10.934 28.663 0 39.598l19.8 19.8s13.82-13.823 
19.798-19.8c10.935-10.935 10.935-28.663 0-39.598A27.912 27.912 0 0092 182zm0 18a10 10 0 0110 10 10 10 0 01-10 
10 10 10 0 01-10-10 10 10 0 0110-10z" style="marker:none" fill="#a51d2d"/><path style="marker:none" d="M92 
180a27.912 27.912 0 00-19.799 8.201c-10.934 10.935-10.934 28.663 0 39.598l19.8 19.8s13.82-13.823 
19.798-19.8c10.935-10.935 10.935-28.663 0-39.598A27.912 27.912 0 0092 180zm0 18a10 10 0 0110 10 10 10 0 01-10 
10 10 10 0 01-10-10 10 10 0 0110-10z" fill="url(#ap)"/></g></g><g transform="translate(107 -103)"><rect 
ry="8" rx="8" y="264" x="8" height="24" width="112" fill="url(#aq)"/><rect width="112" height="84" x="8" 
y="200" rx="8" ry="8.842" fill="#ed333b"/><path d="M36 282h56
 l-4-10H40z" fill="#5e5c64" stroke="#5e5c64" stroke-width="8" stroke-linecap="round" 
stroke-linejoin="round"/><path fill="#424048" d="M32 282h64v6H32z"/><path d="M24 208h80l8 8v52H16v-52z" 
fill="#f6f5f4"/><g transform="translate(0 8)"><path fill="#424048" d="M16 216h96v32H16z"/><circle r="6" 
cy="232" cx="40" fill="#f6f5f4"/><circle cx="88" cy="232" r="6" fill="#f6f5f4"/><path fill="#949390" d="M52 
226h24v12H52z"/><path d="M272 28c0 61.856-50.144 112-112 112S48 89.856 48 28 98.144-84 160-84 272-33.856 272 
28z" clip-path="url(#ar)" transform="matrix(.25 0 0 .25 0 225)" opacity=".5" fill="#424048"/></g></g></svg>
\ No newline at end of file
diff --git a/data/resources/assets/ready-to-go.svg b/data/resources/assets/ready-to-go.svg
index 8bb65c9..076957c 100644
--- a/data/resources/assets/ready-to-go.svg
+++ b/data/resources/assets/ready-to-go.svg
@@ -1 +1 @@
-<svg xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; height="300" 
width="600"><defs><linearGradient xlink:href="#a" id="k" x1="85" y1="107.162" x2="85" y2="86" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(-2.9423 0 0 2.9423 616.782 
-188.258)"/><linearGradient y2="86" x2="85" y1="107.162" x1="85" gradientTransform="matrix(-2.14024 0 0 
2.14024 914.392 -246.814)" gradientUnits="userSpaceOnUse" id="e" xlink:href="#a"/><linearGradient 
id="d"><stop offset="0" stop-color="#ed686f"/><stop offset=".911" stop-color="#a51d2d"/><stop offset="1" 
stop-color="#e01b24"/></linearGradient><linearGradient id="c"><stop offset="0" stop-color="#ed686f"/><stop 
offset=".865" stop-color="#a51d2d"/><stop offset="1" stop-color="#e01b24"/></linearGradient><linearGradient 
id="b"><stop offset="0" stop-color="#fff"/><stop offset=".519" stop-color="#fff"/><stop offset=".734" 
stop-color="#cfcfcf"/><stop offset="1" stop-color="#dcdcdc"/></linearGradient><linearGradient id="a
 "><stop offset="0" stop-color="#eef4fc"/><stop offset="1" 
stop-color="#fff"/></linearGradient><radialGradient r="33.5" fy="48.406" fx="79.091" cy="48.406" cx="79.091" 
gradientTransform="matrix(.00476 1.62228 -1.43419 .00422 141.702 -82.047)" gradientUnits="userSpaceOnUse" 
id="g" xlink:href="#b"/><radialGradient r="14.583" fy="49.777" fx="40.152" cy="49.777" cx="40.152" 
gradientTransform="matrix(.87016 4.27869 -2.56693 .52204 148.394 -163.306)" gradientUnits="userSpaceOnUse" 
id="i" xlink:href="#d"/><radialGradient r="14.583" fy="49.777" fx="40.152" cy="49.777" cx="40.152" 
gradientTransform="matrix(.87016 4.27869 -2.56693 .52204 148.394 -163.306)" gradientUnits="userSpaceOnUse" 
id="j" xlink:href="#d"/><radialGradient r="12" fy="54.102" fx="71.474" cy="54.102" cx="71.474" 
gradientTransform="matrix(4.50607 0 0 4.76661 -259.306 -59.706)" gradientUnits="userSpaceOnUse" id="h" 
xlink:href="#c"/><clipPath id="f" clipPathUnits="userSpaceOnUse"><path d="M65 177c-18.502 0-33.5 14.998-33.5 
33.5.
 008 7.371 4.131 15.807 11.388 23.526l12.617 13.171H75.02l12.137-13.245c6.636-7.059 11.33-16.117 
11.344-23.452 0-18.502-14.998-33.5-33.5-33.5z" style="marker:none" fill="#fff" 
stroke-width="2"/></clipPath></defs><path d="M708.93-109.838a42.81 42.81 0 0138.862 24.972 32.11 32.11 0 
0114.643-3.57c16.888.022 30.872 13.117 31.995 29.968h.109c11.82 0 21.402 9.581 21.402 21.402 0 11.82-9.582 
21.402-21.402 21.402H674.686a25.683 25.683 0 01-25.683-25.683A25.683 25.683 0 
01666.2-65.558c-.034-.49-.059-.981-.075-1.472 0-23.64 19.164-42.804 42.805-42.804z" fill="url(#e)" 
transform="matrix(.5 0 0 .5 33.03 84.593)"/><g transform="matrix(2.54377 0 0 2.39146 146.697 -378.91)" 
clip-path="url(#f)"><path transform="translate(-8 156)" d="M73 21c-18.502 0-33.5 14.998-33.5 33.5.008 7.371 
3.5 14.422 6.94 20.379L58 98h30l11.605-23.21c3.395-5.88 6.88-12.955 6.895-20.29C106.5 35.998 91.502 21 73 
21z" style="marker:none" fill="url(#g)"/><path d="M64 177s-18.332 12.132-18.332 30.989C45.668 222.56 61.842 
254 61.8
 42 254H67s1.333-31.44 1.333-46.011C68.333 189.132 64 177 64 177z" fill="url(#h)"/><path 
transform="translate(-8 156)" d="M71.983 21.106c-8.207.147-16.328 3.285-22.5 8.695-6.174 5.409-10.35 
13.047-11.574 21.163-1.24 8.225.567 16.874 4.995 23.915L61.902 98h6.432L55.002 
81.27c-4.3-5.395-8.472-11.07-10.596-17.634-2.123-6.564-2.166-13.8.003-20.348A32.824 32.824 0 0154.925 
28.13a32.824 32.824 0 0117.058-7.025z" fill="url(#i)"/><path transform="matrix(-1 0 0 1 137.16 155.823)" 
d="M73.003 21.303c-7.709-1.547-15.97-.154-22.746 3.835-6.776 3.989-12.002 10.537-14.39 18.029a32.484 32.484 0 
00-.757 16.805 32.484 32.484 0 007.794 14.907L54.11 98h13.383L54.16 
74.356c-2.868-5.087-5.557-10.406-6.427-16.181-.87-5.775.036-11.771 2.374-17.123 4.173-9.55 12.836-17.022 
22.895-19.748z" fill="url(#j)"/></g><path style="marker:none" d="M293.39 246.593v15.808a7.907 7.907 0 007.925 
7.926h21.455c4.391 0 7.004-3.632 7.925-7.926v-15.808z" fill="#e5a50a"/><path style="marker:none" d="M293.39 
243.202v15.808a7.907 
 7.907 0 007.925 7.925h21.455c4.391 0 7.004-3.631 7.925-7.925v-15.808z" fill="#e5a50a"/><path 
style="marker:none" d="M317.13 243.202v23.733h5.64c4.391 0 7.004-3.631 7.925-7.925v-15.808z" 
fill="#f3af0b"/><path d="M334.321.05c22.986.033 43.85 13.434 53.427 34.33a44.144 44.144 0 
0120.13-4.908c23.217.033 42.442 18.033 43.986 41.198h.15c16.25 0 29.422 13.173 29.422 29.423s-13.173 
29.423-29.423 29.423H287.245a35.308 35.308 0 01-35.308-35.308 35.308 35.308 0 0123.642-33.285 61.876 61.876 0 
01-.103-2.022c0-32.5 26.346-58.846 58.846-58.846z" fill="url(#k)" transform="matrix(.5 0 0 .5 33.03 
84.593)"/></svg>
\ No newline at end of file
+<svg xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; height="300" 
width="600"><defs><linearGradient xlink:href="#b" id="t" x1="85" y1="107.162" x2="85" y2="86" 
gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.47115 0 0 1.47115 359.463 
38.765)"/><linearGradient id="a"><stop offset="0" stop-color="#051224"/><stop offset="1" 
stop-color="#3584e4"/></linearGradient><linearGradient y2="86" x2="85" y1="107.162" x1="85" 
gradientTransform="matrix(-1.07012 0 0 1.07012 536.016 .036)" gradientUnits="userSpaceOnUse" id="n" 
xlink:href="#b"/><linearGradient id="d"><stop offset="0" stop-color="#ed686f"/><stop offset=".911" 
stop-color="#a51d2d"/><stop offset="1" stop-color="#e01b24"/></linearGradient><linearGradient id="h"><stop 
offset="0" stop-color="#ed686f"/><stop offset=".865" stop-color="#a51d2d"/><stop offset="1" 
stop-color="#e01b24"/></linearGradient><linearGradient id="g"><stop offset="0" stop-color="#fff"/><stop 
offset=".519" stop-color="#fff"/><stop
  offset=".734" stop-color="#cfcfcf"/><stop offset="1" stop-color="#dcdcdc"/></linearGradient><linearGradient 
id="b"><stop offset="0" stop-color="#eef4fc"/><stop offset="1" 
stop-color="#fff"/></linearGradient><linearGradient id="f"><stop offset="0" stop-color="#fff"/><stop 
offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="e"><stop offset="0" 
stop-color="#e5a50a"/><stop offset="1" stop-color="#e5a50a" 
stop-opacity="0"/></linearGradient><linearGradient id="c"><stop offset="0" stop-color="#e01b24"/><stop 
offset="1" stop-color="#e01b24" stop-opacity="0"/></linearGradient><linearGradient xlink:href="#a" id="i" 
x1="342.914" y1="17.349" x2="342.914" y2="201.142" gradientUnits="userSpaceOnUse"/><linearGradient 
xlink:href="#c" id="k" x1="650.637" y1="826.854" x2="650.637" y2="1043.787" 
gradientUnits="userSpaceOnUse"/><radialGradient r="14.583" fy="49.777" fx="40.152" cy="49.777" cx="40.152" 
gradientTransform="matrix(.87016 4.27869 -2.56693 .52204 148.394 -163
 .306)" gradientUnits="userSpaceOnUse" id="s" xlink:href="#d"/><radialGradient xlink:href="#e" id="l" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(-960.587 -1242.494) scale(2.47624)" cx="650.7" 
cy="832.23" fx="650.7" fy="832.23" r="41.389"/><radialGradient r="14.583" fy="49.777" fx="40.152" cy="49.777" 
cx="40.152" gradientTransform="matrix(.87016 4.27869 -2.56693 .52204 148.394 -163.306)" 
gradientUnits="userSpaceOnUse" id="r" xlink:href="#d"/><radialGradient xlink:href="#f" id="m" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(-1090.057 -1370.83) scale(2.6752)" cx="650.7" 
cy="818.305" fx="650.7" fy="818.305" r="22.805"/><radialGradient r="33.5" fy="48.406" fx="79.091" cy="48.406" 
cx="79.091" gradientTransform="matrix(.00476 1.62228 -1.43419 .00422 141.702 -82.047)" 
gradientUnits="userSpaceOnUse" id="p" xlink:href="#g"/><radialGradient r="12" fy="54.102" fx="71.474" 
cy="54.102" cx="71.474" gradientTransform="matrix(4.50607 0 0 4.76661 -259.306 -59.706)" gra
 dientUnits="userSpaceOnUse" id="q" xlink:href="#h"/><clipPath clipPathUnits="userSpaceOnUse" id="j"><path 
d="M704.278 841.11c0 69.083-53.578 165.635-53.578 165.635s-53.578-96.393-53.578-165.635c0-29.59 23.988-53.578 
53.578-53.578 29.59 0 53.578 23.988 53.578 53.578z" fill="url(#linearGradient1149)" stroke-width="2.589" 
stroke-linecap="round"/></clipPath><clipPath id="o" clipPathUnits="userSpaceOnUse"><path d="M65 177c-18.502 
0-33.5 14.998-33.5 33.5.008 7.371 4.131 15.807 11.388 23.526l12.617 13.171H75.02l12.137-13.245c6.636-7.059 
11.33-16.117 11.344-23.452 0-18.502-14.998-33.5-33.5-33.5z" style="marker:none" fill="#fff" 
stroke-width="2"/></clipPath></defs><path style="marker:none" d="M157.22 1.04c-17.371 0-31.063 13.692-31.063 
31.063 0 17.37 13.693 31.064 31.062 31.064h35.57a9.324 9.324 0 010 18.647c-17.37 0-31.064 13.69-31.064 31.06 
0 13.155 7.96 24.149 19.274 28.763 9.463 3.868 6.701 17.946-3.522 17.955h-55.203c-17.37 0-31.063 
13.692-31.063 31.062 0 17.371 13.693 31.064 31.063 31.
 064h150.545c9.74.534 12.221 14.136 2.94 17.929-11.313 4.614-19.272 15.607-19.272 28.763 0 17.371 13.692 
31.064 31.062 31.064h185.905c17.37 0 31.062-13.693 31.062-31.064 
0-17.37-13.692-31.062-31.062-31.062h-55.206c-10.223-.01-12.983-14.088-3.52-17.955 11.315-4.614 19.274-15.608 
19.274-28.763 0-17.37-13.694-31.062-31.064-31.062a9.324 9.324 0 010-18.645h77.352c17.37 0 31.062-13.694 
31.062-31.064 0-17.37-13.692-31.063-31.062-31.063h-185.9c-.243 0-.482.013-.723.018-4.993-5.27-2.535-15.647 
7.671-15.647 17.37 0 31.064-13.695 31.064-31.064 0-17.37-13.694-31.062-31.064-31.062z" fill="url(#i)"/><g 
transform="translate(34.055 -231.926) scale(.48733)"><g transform="translate(0 -44.827)" 
clip-path="url(#j)"><path d="M704.278 841.11c0 69.083-53.578 165.635-53.578 
165.635s-53.578-96.393-53.578-165.635c0-29.59 23.987-53.578 53.578-53.578 29.59 0 53.578 23.988 53.578 
53.578z" fill="url(#k)"/><circle cx="650.7" cy="818.305" r="102.488" fill="url(#l)"/><circle cx="650.7" 
cy="818.305" r="61.008" fill="
 url(#m)"/><circle cx="650.7" cy="818.305" r="21.516" fill="#fff"/></g><rect width="138.543" height="244.129" 
x="581.398" y="524.576" rx="69.271" ry="69.271" fill="#f6f5f4"/><circle cx="650.67" cy="646.641" r="36.824" 
fill="#deddda"/><circle cx="650.67" cy="646.641" r="26.422" fill="#5e5c64"/><path d="M650.67 524.576c-5.594 
0-11.021.674-16.225 1.914 30.496 7.268 53.05 34.574 53.05 67.358v105.586c0 32.783-22.554 60.089-53.05 
67.357a69.873 69.873 0 0016.225 1.914c38.376 0 69.271-30.895 
69.271-69.271V593.848c0-38.377-30.895-69.272-69.271-69.272z" fill="#deddda" fill-opacity=".17"/><path 
d="M650.656 488.057a69.284 111.707 0 00-68.488 94.84h136.978a69.284 111.707 0 00-68.49-94.84z" 
fill="#ed333b"/><path d="M591.756 710.923l9.042 23.13a36.18 36.18 110.698 01-17.129 45.336l-30.066 
15.488a15.13 15.13 31.373 01-22.06-13.451v-12.627a36.744 36.744 113.961 0112.12-27.273l36.84-33.26a7.027 
7.027 13.286 0111.253 2.657z" fill="#c0bfbc"/><rect width="10.32" height="97.168" x="645.51" y="714.053" rx=
 "5.16" ry="5.16" fill="#deddda"/><path d="M662.07 489.584a79.455 165.02 0 0123.114 93.312h33.962a69.284 
111.707 0 00-57.076-93.312z" fill="#e01b24"/><path d="M710.116 710.923l-9.042 23.13a36.18 36.18 69.302 
0017.129 45.336l30.067 15.488a15.13 15.13 148.627 0022.06-13.451v-12.627a36.744 36.744 66.039 
00-12.122-27.273l-36.839-33.26a7.027 7.027 166.714 00-11.253 2.657z" fill="#fff"/></g><path d="M433.285 
68.524a21.405 21.405 0 0119.431 12.486 16.055 16.055 0 017.322-1.785c8.444.01 15.436 6.558 15.997 
14.984h.055c5.91 0 10.7 4.79 10.7 10.7 0 5.91-4.79 10.702-10.7 10.702h-59.927a12.841 12.841 0 
01-12.841-12.842 12.841 12.841 0 018.598-12.105c-.017-.245-.03-.49-.037-.736 0-11.82 9.582-21.402 
21.402-21.402z" fill="url(#n)"/><g transform="matrix(1.0901 0 0 1.02483 98.856 -8.457)" 
clip-path="url(#o)"><path transform="translate(-8 156)" d="M73 21c-18.502 0-33.5 14.998-33.5 33.5.008 7.371 
3.5 14.422 6.94 20.379L58 98h30l11.605-23.21c3.395-5.88 6.88-12.955 6.895-20.29C106.5 35.998 91.502 21 73 
 21z" style="marker:none" fill="url(#p)"/><path d="M64 177s-18.332 12.132-18.332 30.989C45.668 222.56 61.842 
254 61.842 254H67s1.333-31.44 1.333-46.011C68.333 189.132 64 177 64 177z" fill="url(#q)"/><path 
transform="translate(-8 156)" d="M71.983 21.106c-8.207.147-16.328 3.285-22.5 8.695-6.174 5.409-10.35 
13.047-11.574 21.163-1.24 8.225.567 16.874 4.995 23.915L61.902 98h6.432L55.002 
81.27c-4.3-5.395-8.472-11.07-10.596-17.634-2.123-6.564-2.166-13.8.003-20.348A32.824 32.824 0 0154.925 
28.13a32.824 32.824 0 0117.058-7.025z" fill="url(#r)"/><path transform="matrix(-1 0 0 1 137.16 155.823)" 
d="M73.003 21.303c-7.709-1.547-15.97-.154-22.746 3.835-6.776 3.989-12.002 10.537-14.39 18.029a32.484 32.484 0 
00-.757 16.805 32.484 32.484 0 007.794 14.907L54.11 98h13.383L54.16 
74.356c-2.868-5.087-5.557-10.406-6.427-16.181-.87-5.775.036-11.771 2.374-17.123 4.173-9.55 12.836-17.022 
22.895-19.748z" fill="url(#s)"/></g><path style="marker:none" d="M161.72 259.594v6.774a3.388 3.388 0 003.396 
3.397h9.194c1.
 882 0 3.001-1.557 3.396-3.397v-6.774z" fill="#e5a50a"/><path style="marker:none" d="M161.72 
258.14v6.775a3.388 3.388 0 003.396 3.396h9.194c1.882 0 3.001-1.556 3.396-3.396v-6.774z" fill="#e5a50a"/><path 
style="marker:none" d="M171.893 258.14v10.171h2.417c1.882 0 3.001-1.556 3.396-3.396v-6.774z" 
fill="#f3af0b"/><path d="M218.233 132.92a29.428 29.428 0 0126.713 17.164 22.072 22.072 0 
0110.065-2.454c11.609.017 21.221 9.017 21.993 20.6h.075c8.125 0 14.711 6.586 14.711 14.711s-6.586 
14.711-14.711 14.711h-82.384a17.654 17.654 0 01-17.654-17.654 17.654 17.654 0 0111.82-16.642 30.938 30.938 0 
01-.05-1.011c0-16.25 13.172-29.423 29.422-29.423z" fill="url(#t)"/></svg>
\ No newline at end of file
diff --git a/data/resources/assets/start-bg-bg-bg.svg b/data/resources/assets/start-bg-bg-bg.svg
new file mode 100644
index 0000000..14fc491
--- /dev/null
+++ b/data/resources/assets/start-bg-bg-bg.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; height="400" 
width="600"><defs><linearGradient xlink:href="#a" id="b" x1="-1180" y1="1314.52" x2="-940" y2="1314.52" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(1059.535 -574.008) 
scale(1.14415)"/><linearGradient id="a"><stop offset="0" stop-color="#3580e4"/><stop offset="1" 
stop-color="#8abfdd"/></linearGradient></defs><circle cx="-153.265" cy="930" r="137.298" transform="matrix(0 
-1 1 0 -620 9.437)" fill="url(#b)"/></svg>
\ No newline at end of file
diff --git a/data/resources/assets/start-bg-bg.svg b/data/resources/assets/start-bg-bg.svg
new file mode 100644
index 0000000..46bdad2
--- /dev/null
+++ b/data/resources/assets/start-bg-bg.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; height="400" 
width="600"><defs><linearGradient id="a"><stop offset="0" stop-color="#b2d0f4"/><stop offset="1" 
stop-color="#fff"/></linearGradient><linearGradient id="b"><stop offset="0" stop-color="#b2cdf1"/><stop 
offset="1" stop-color="#fff"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="85" y1="195" 
x2="85" y2="165" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#b" id="d" x1="245" y1="195" 
x2="245" y2="170" gradientUnits="userSpaceOnUse" gradientTransform="translate(670 20.563)"/></defs><path 
d="M97.5 140a27.5 27.5 0 00-26.938 21.969A17.5 17.5 0 0062.5 160 17.5 17.5 0 0045 177.5 17.5 17.5 0 0062.5 
195a17.5 17.5 0 00.05 0H155a10 10 0 0010-10 10 10 0 00-10-10 10 10 0 00-7.871 3.83 20 20 0 00.371-3.83 20 20 
0 00-20-20 20 20 0 00-5.17.68A27.5 27.5 0 0097.5 140z" fill="url(#c)" opacity=".5"/><path d="M905 175.563a20 
20 0 00-20 20 20 20 0 0020 20h27.5a12.5 12.5 0 0012.5-12.5 12
 .5 12.5 0 00-12.5-12.5 12.5 12.5 0 00-7.643 2.611A20 20 0 00905 175.563z" opacity=".5" fill="url(#d)" 
transform="translate(-620 9.437)"/></svg>
\ No newline at end of file
diff --git a/data/resources/assets/start-bg.svg b/data/resources/assets/start-bg.svg
new file mode 100644
index 0000000..f6b49a8
--- /dev/null
+++ b/data/resources/assets/start-bg.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; height="400" 
width="1400"><defs><linearGradient id="b"><stop offset="0" stop-color="#c5dcf7"/><stop offset="1" 
stop-color="#fff"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="85" y1="107.162" x2="85" 
y2="86" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-3.35406 0 0 3.35406 1487.997 
-204.114)"/><linearGradient id="a"><stop offset="0" stop-color="#eef4fc"/><stop offset="1" 
stop-color="#fff"/></linearGradient><linearGradient xlink:href="#b" id="d" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(-2.7272 0 0 2.7272 1434.713 -153.978)" x1="85" y1="107.162" x2="85" 
y2="86"/><linearGradient xlink:href="#b" id="e" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(-2.57314 0 0 2.57314 1337.412 -173.264)" x1="85" y1="110.304" x2="85" 
y2="86.986"/><linearGradient xlink:href="#b" id="f" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(1.54638 0 0 1.54638 1495.83 -
 136.448)" x1="85" y1="107.162" x2="85" y2="82.135"/></defs><g transform="translate(-620 199.437)" 
fill="url(#c)"><path d="M1172.903 20.563c21.305.03 40.644 12.452 49.52 31.82a40.917 40.917 0 
0118.66-4.55c21.519.032 39.339 16.716 40.77 38.187h.139c15.062 0 27.271 12.21 27.271 27.272 0 15.061-12.21 
27.271-27.272 27.271h-152.722a32.727 32.727 0 01-32.727-32.726 32.727 32.727 0 0121.914-30.851 57.352 57.352 
0 01-.097-1.874c0-30.124 24.42-54.544 54.544-54.544z" fill="url(#d)"/><path 
style="font-variation-settings:normal" d="M840.695.562a45.133 45.133 0 00-44.932 42.712c-16.205 2.541-28.526 
16.495-28.526 33.436 0 18.754 15.098 33.853 33.853 33.853h87.959a26.127 26.127 0 0026.185-26.184 26.129 
26.129 0 00-26.185-26.186h-4.848a45.133 45.133 0 001.764-12.497A45.133 45.133 0 00840.832.563a45.133 45.133 0 
00-.136 0z" fill="url(#e)"/><path d="M1644.283-37.48a30.932 30.932 0 00-28.08 18.043 23.2 23.2 0 
00-10.58-2.58c-12.201.018-22.305 9.478-23.117 21.653h-.079c-8.54 0-15.463 6.923-15.463 15.464 
 0 8.54 6.923 15.463 15.464 15.463h86.596a18.557 18.557 0 0018.557-18.556 18.557 18.557 0 00-12.426-17.494 
32.52 32.52 0 00.055-1.062c0-17.081-13.846-30.928-30.927-30.928z" fill="url(#f)"/></g></svg>
\ No newline at end of file
diff --git a/data/resources/assets/start-fg.svg b/data/resources/assets/start-fg.svg
new file mode 100644
index 0000000..60296c5
--- /dev/null
+++ b/data/resources/assets/start-fg.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; width="600" 
height="300"><defs><radialGradient r="33.5" fy="48.406" fx="79.091" cy="48.406" cx="79.091" 
gradientTransform="matrix(.00476 1.62228 -1.43419 .00422 141.702 -82.047)" gradientUnits="userSpaceOnUse" 
id="e" xlink:href="#a"/><radialGradient r="12" fy="54.102" fx="71.474" cy="54.102" cx="71.474" 
gradientTransform="matrix(4.50607 0 0 4.76661 -259.306 -59.706)" gradientUnits="userSpaceOnUse" id="f" 
xlink:href="#b"/><radialGradient r="14.583" fy="49.777" fx="40.152" cy="49.777" cx="40.152" 
gradientTransform="matrix(.87016 4.27869 -2.56693 .52204 148.394 -163.306)" gradientUnits="userSpaceOnUse" 
id="g" xlink:href="#c"/><radialGradient r="14.583" fy="49.777" fx="40.152" cy="49.777" cx="40.152" 
gradientTransform="matrix(.87016 4.27869 -2.56693 .52204 148.394 -163.306)" gradientUnits="userSpaceOnUse" 
id="h" xlink:href="#c"/><linearGradient id="a"><stop offset="0" stop-color="#fff"/><stop offset=".519
 " stop-color="#fff"/><stop offset=".734" stop-color="#cfcfcf"/><stop offset="1" 
stop-color="#dcdcdc"/></linearGradient><linearGradient id="b"><stop offset="0" stop-color="#ed686f"/><stop 
offset=".865" stop-color="#a51d2d"/><stop offset="1" stop-color="#e01b24"/></linearGradient><linearGradient 
id="c"><stop offset="0" stop-color="#ed686f"/><stop offset=".911" stop-color="#a51d2d"/><stop offset="1" 
stop-color="#e01b24"/></linearGradient><clipPath id="d" clipPathUnits="userSpaceOnUse"><path d="M65 
177c-18.502 0-33.5 14.998-33.5 33.5.008 7.371 4.131 15.807 11.388 23.526l12.617 
13.171H75.02l12.137-13.245c6.636-7.059 11.33-16.117 11.344-23.452 0-18.502-14.998-33.5-33.5-33.5z" 
style="marker:none" fill="#fff" stroke-width="2"/></clipPath></defs><g transform="matrix(2.34097 0 0 2.2008 
137.836 -339.542)" clip-path="url(#d)"><path transform="translate(-8 156)" d="M73 21c-18.502 0-33.5 
14.998-33.5 33.5.008 7.371 3.5 14.422 6.94 20.379L58 98h30l11.605-23.21c3.395-5.88 6.88-12.955 6.895-20.29C106
 .5 35.998 91.502 21 73 21z" style="marker:none" fill="url(#e)"/><path d="M64 177s-18.332 12.132-18.332 
30.989C45.668 222.56 61.842 254 61.842 254H67s1.333-31.44 1.333-46.011C68.333 189.132 64 177 64 177z" 
fill="url(#f)"/><path transform="translate(-8 156)" d="M71.983 21.106c-8.207.147-16.328 3.285-22.5 
8.695-6.174 5.409-10.35 13.047-11.574 21.163-1.24 8.225.567 16.874 4.995 23.915L61.902 98h6.432L55.002 
81.27c-4.3-5.395-8.472-11.07-10.596-17.634-2.123-6.564-2.166-13.8.003-20.348A32.824 32.824 0 0154.925 
28.13a32.824 32.824 0 0117.058-7.025z" fill="url(#g)"/><path transform="matrix(-1 0 0 1 137.16 155.823)" 
d="M73.003 21.303c-7.709-1.547-15.97-.154-22.746 3.835-6.776 3.989-12.002 10.537-14.39 18.029a32.484 32.484 0 
00-.757 16.805 32.484 32.484 0 007.794 14.907L54.11 98h13.383L54.16 
74.356c-2.868-5.087-5.557-10.406-6.427-16.181-.87-5.775.036-11.771 2.374-17.123 4.173-9.55 12.836-17.022 
22.895-19.748z" fill="url(#h)"/></g><path style="marker:none" d="M272.834 227.583v14.548a7.277 7.277
  0 007.293 7.294h19.744c4.041 0 6.446-3.343 7.294-7.294v-14.548z" fill="#e5a50a"/><path style="marker:none" 
d="M272.834 224.462v14.548a7.277 7.277 0 007.293 7.293h19.744c4.041 0 6.446-3.341 7.294-7.293v-14.548z" 
fill="#e5a50a"/><path style="marker:none" d="M294.681 224.462v21.84h5.19c4.041 0 6.446-3.34 
7.294-7.292v-14.548z" fill="#f3af0b"/></svg>
\ No newline at end of file
diff --git a/data/resources/assets/updown-bg.svg b/data/resources/assets/updown-bg.svg
new file mode 100644
index 0000000..25c93c1
--- /dev/null
+++ b/data/resources/assets/updown-bg.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; width="600" 
height="300"><defs><linearGradient id="a"><stop offset="0" stop-color="#9141ac"/><stop offset="1" 
stop-color="#ed333b"/></linearGradient><linearGradient xlink:href="#a" id="b" x1="260" y1="0" x2="260" 
y2="300" gradientUnits="userSpaceOnUse"/></defs><path d="M269.171 293.4l78.644-78.643a16 16 0 0122.627 
0l41.083 41.083a16 16 0 0022.628 0l58.789-58.789a16 16 90 000-22.627l-41.083-41.083a16 16 90 
010-22.627l23.096-23.097a16 16 90 000-22.627L416.166 6.2a16 16 180 00-22.627 0L269.314 130.426a16 16 180 
01-22.627 0l-45.625-45.624a16 16 180 00-22.627 0l-58.79 58.789a16.015 16.015 90.027 00-.01 22.638l126.92 
127.162a15.985 15.985.027 0022.616.011z" fill="url(#b)"/><rect width="324.179" height="195.739" x="145.536" 
y="48.014" rx="26.854" ry="26.854" fill="#c0bfbc"/><path d="M452.244 219.785l-8.563 8.563-8.563-8.563m8.563 
8.563v-17.126M452.244 74.994l-8.563-8.563-8.563 8.563m8.563-8.563v17.125" strok
 e-width="5.138" fill="none" stroke="#fff" stroke-linecap="round"/></svg>
\ No newline at end of file
diff --git a/data/resources/assets/workspaces.svg b/data/resources/assets/workspaces.svg
new file mode 100644
index 0000000..68f4899
--- /dev/null
+++ b/data/resources/assets/workspaces.svg
@@ -0,0 +1 @@
+<svg xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; height="300" 
width="600"><defs><linearGradient id="t"><stop offset="0" stop-color="#f87e70"/><stop offset="1" 
stop-color="#fab4ac"/></linearGradient><linearGradient xlink:href="#o" id="aa" gradientUnits="userSpaceOnUse" 
x1="532" y1="-36.289" x2="532.051" y2="-74.511"/><linearGradient id="p"><stop offset="0" 
stop-color="#f66151"/><stop offset="1" stop-color="#f5c211"/></linearGradient><linearGradient id="b"><stop 
offset="0" stop-color="#a09f9c"/><stop offset=".078" stop-color="#5e5c64"/><stop offset=".104" 
stop-color="#d0d0ce" stop-opacity=".992"/><stop offset=".12" stop-color="#a09f9c" stop-opacity=".992"/><stop 
offset=".285" stop-color="#5e5c64"/><stop offset=".5" stop-color="#77767b"/><stop offset=".762" 
stop-color="#b5b4b1" stop-opacity=".965"/><stop offset=".874" stop-color="#77767b"/><stop offset=".905" 
stop-color="#cbcac9" stop-opacity=".965"/><stop offset=".949" stop-color="#a09f9c" stop-opacit
 y=".965"/><stop offset="1" stop-color="#a09f9c" stop-opacity=".966"/></linearGradient><linearGradient 
id="q"><stop offset="0" stop-color="#62a0ea"/><stop offset="1" 
stop-color="#99c1f1"/></linearGradient><linearGradient id="o"><stop offset="0" stop-color="#f66151"/><stop 
offset="1" stop-color="#ed333b"/></linearGradient><linearGradient id="n"><stop offset="0" 
stop-color="#9141ac"/><stop offset="1" stop-color="#ed333b"/></linearGradient><linearGradient id="m"><stop 
offset="0" stop-color="#f5c211"/><stop offset="1" stop-color="#ff7800"/></linearGradient><linearGradient 
id="l"><stop offset="0" stop-color="#3584e4"/><stop offset="1" 
stop-color="#dc8add"/></linearGradient><linearGradient id="k"><stop offset="0" stop-color="#3584e4"/><stop 
offset="1" stop-color="#2ec27e"/></linearGradient><linearGradient id="j"><stop offset="0" 
stop-color="#eae9e7"/><stop offset=".649" stop-color="#b5b3ad"/><stop offset="1" 
stop-color="#fcfcfc"/></linearGradient><linearGradient id="c"><stop offset="0" sto
 p-color="#ebeae8"/><stop offset="1" stop-color="#deddda" 
stop-opacity=".983"/></linearGradient><linearGradient id="i"><stop offset="0" stop-color="#b0afab"/><stop 
offset="1" stop-color="#dcdbd8" stop-opacity=".961"/></linearGradient><linearGradient id="d"><stop offset="0" 
stop-color="#3d3846"/><stop offset="1" stop-color="#241f31"/></linearGradient><linearGradient id="g"><stop 
offset="0" stop-color="#9a9996"/><stop offset="1" stop-color="#3d3846" 
stop-opacity=".252"/></linearGradient><linearGradient xlink:href="#a" id="O" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(-21.238 3.877) scale(1.0734)" x1="137.616" y1="-138.586" x2="426.655" 
y2="-138.586"/><linearGradient id="a"><stop offset="0" stop-color="#a09f9c"/><stop offset=".078" 
stop-color="#a09f9c" stop-opacity=".996"/><stop offset=".104" stop-color="#d0d0ce" stop-opacity=".992"/><stop 
offset=".12" stop-color="#a09f9c" stop-opacity=".992"/><stop offset=".285" stop-color="#787773" 
stop-opacity=".984"/><stop offset=".
 5" stop-color="#908f8b" stop-opacity=".976"/><stop offset=".762" stop-color="#b5b4b1" 
stop-opacity=".965"/><stop offset=".874" stop-color="#a09f9c" stop-opacity=".965"/><stop offset=".905" 
stop-color="#cbcac9" stop-opacity=".965"/><stop offset=".949" stop-color="#a09f9c" stop-opacity=".965"/><stop 
offset="1" stop-color="#a09f9c" stop-opacity=".966"/></linearGradient><linearGradient id="e"><stop offset="0" 
stop-color="#cacac9"/><stop offset=".311" stop-color="#b0aeab" stop-opacity=".941"/><stop offset=".688" 
stop-color="#6c6b66" stop-opacity=".949"/><stop offset="1" stop-color="#d6d6d4" 
stop-opacity=".966"/></linearGradient><linearGradient id="f"><stop offset="0" stop-color="#fff"/><stop 
offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient xlink:href="#b" id="N" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(-20.488 5.127) scale(1.0734)" x1="137.616" 
y1="-138.586" x2="426.655" y2="-138.586"/><linearGradient id="h"><stop offset="0" stop-color="#
 eae9e7"/><stop offset=".208" stop-color="#cac8c4" stop-opacity=".953"/><stop offset=".745" 
stop-color="#ebeae9" stop-opacity=".972"/><stop offset="1" stop-color="#d5d3cf" 
stop-opacity=".925"/></linearGradient><linearGradient xlink:href="#t" id="Z" gradientUnits="userSpaceOnUse" 
x1="512.925" y1="-88.848" x2="619.342" y2="-88.848"/><linearGradient xlink:href="#s" id="ac" 
gradientUnits="userSpaceOnUse" x1="512.927" y1="-68.087" x2="588.61" y2="-68.087"/><linearGradient 
xlink:href="#q" id="ab" gradientUnits="userSpaceOnUse" x1="512.925" y1="-88.848" x2="619.342" 
y2="-88.848"/><linearGradient xlink:href="#t" id="z" x1="512.925" y1="-88.848" x2="619.342" y2="-88.848" 
gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#q" id="C" gradientUnits="userSpaceOnUse" 
x1="512.925" y1="-88.848" x2="619.342" y2="-88.848"/><linearGradient id="r"><stop offset="0" 
stop-color="#9a9996"/><stop offset="1" stop-color="#deddda"/></linearGradient><linearGradient id="s"><stop 
offset="0" stop-color="#1
 a5fb4"/><stop offset="1" stop-color="#62a0ea"/></linearGradient><linearGradient xlink:href="#s" id="D" 
x1="512.927" y1="-68.087" x2="588.61" y2="-68.087" gradientUnits="userSpaceOnUse"/><linearGradient 
xlink:href="#r" id="F" x1="512.927" y1="-68.087" x2="588.61" y2="-68.087" 
gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#q" id="E" x1="512.925" y1="-88.848" x2="619.342" 
y2="-88.848" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#p" id="K" x1="-678.912" 
y1="253.775" x2="-582.912" y2="253.775" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#o" 
id="A" x1="532" y1="-36.289" x2="532.051" y2="-74.511" gradientUnits="userSpaceOnUse"/><linearGradient 
xlink:href="#n" id="v" x1="-50" y1="154.859" x2="54.616" y2="154.858" 
gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#m" id="u" x1="552.766" y1="154.858" x2="640" 
y2="154.859" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#l" id="x" x1="311.83" y1="154.858" 
x2="536.518" y2="154.
 858" gradientUnits="userSpaceOnUse" gradientTransform="translate(-848.348)"/><linearGradient xlink:href="#k" 
id="w" x1="70.864" y1="154.858" x2="295.552" y2="154.858" gradientUnits="userSpaceOnUse"/><radialGradient 
xlink:href="#i" id="Q" cx="282.138" cy="-218.921" fx="282.138" fy="-218.921" r="128.519" 
gradientTransform="matrix(1.1812 .0389 -.01999 .60689 -55.277 -45.478)" 
gradientUnits="userSpaceOnUse"/><radialGradient xlink:href="#h" id="I" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(3.78687 .00907 -.02231 9.31966 8.698 -871.191)" cx="64.224" cy="105.853" 
fx="64.224" fy="105.853" r="60"/><radialGradient xlink:href="#c" id="P" cx="281.386" cy="-269.137" 
fx="281.386" fy="-269.137" r="144.518" gradientTransform="matrix(1.0734 0 0 .39182 -20.488 -87.757)" 
gradientUnits="userSpaceOnUse"/><radialGradient xlink:href="#d" id="R" gradientUnits="userSpaceOnUse" 
gradientTransform="translate(-1.712 16.292) scale(.98254)" cx="81.936" cy="33.185" fx="81.936" fy="33.185" 
r="57.276"/
<radialGradient xlink:href="#e" id="U" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.90055 
.15043 -.23602 7.68903 -638.535 -2206.847)" cx="183.525" cy="320.794" fx="183.525" fy="320.794" 
r="20.486"/><radialGradient xlink:href="#h" id="J" cx="64.224" cy="105.853" fx="64.224" fy="105.853" r="60" 
gradientTransform="matrix(3.78687 .00907 -.02231 9.31966 8.698 -871.191)" 
gradientUnits="userSpaceOnUse"/><radialGradient xlink:href="#j" id="T" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(2.81505 .01106 -.01047 2.6661 -242.36 -102.503)" cx="134.309" cy="55.279" 
fx="134.309" fy="55.279" r="58.46"/><radialGradient xlink:href="#f" id="V" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(37.75863 0 0 19.7392 -7268.898 -1304.003)" cx="197.719" cy="68.107" fx="197.719" 
fy="68.107" r="2.5"/><radialGradient xlink:href="#g" id="S" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(3.93323 0 0 3.47932 -222.925 -173.555)" cx="76" cy="65.977" fx="76" fy="65.977" r=
 "13.221"/><radialGradient xlink:href="#f" id="X" gradientUnits="userSpaceOnUse" 
gradientTransform="matrix(37.75863 0 0 19.7392 -7375.666 -1304.003)" cx="197.747" cy="69.253" fx="197.747" 
fy="69.253" r="2.5"/><clipPath clipPathUnits="userSpaceOnUse" id="y"><rect width="106.417" height="96.355" 
x="512.925" y="-137.026" rx="6.076" ry="6.076" fill="#9141ac" stroke-width="0" 
stroke-linejoin="round"/></clipPath><clipPath clipPathUnits="userSpaceOnUse" id="B"><rect width="106.417" 
height="96.355" x="512.925" y="-137.026" rx="6.076" ry="6.076" fill="#9141ac" stroke-width="0" 
stroke-linejoin="round"/></clipPath><clipPath clipPathUnits="userSpaceOnUse" id="H"><path d="M64 176.414a60 
60 0 00-60 60 60 60 0 0060 60 60 60 0 0060-60 60 60 0 00-60-60zm0 48a12 12 0 0112 12 12 12 0 01-12 12 12 12 0 
01-12-12 12 12 0 0112-12z" style="marker:none" fill="#dc8add" stroke-width=".011" 
enable-background="new"/></clipPath><clipPath clipPathUnits="userSpaceOnUse" id="L"><rect ry="32" rx="32" 
y="-116" x="32.5"
  height="320" width="447" fill="#fb8c14" stroke-linejoin="round" 
stroke-dasharray="4,2"/></clipPath><clipPath id="M" clipPathUnits="userSpaceOnUse"><circle 
style="marker:none" cx="239.051" cy="77.264" r="19.711" fill="#9141ac" stroke-width=".529" 
stroke-linecap="round"/></clipPath><filter id="W" x="-1.468" width="3.936" y="-.058" height="1.116" 
color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="3.059"/></filter></defs><rect 
width="224.688" height="147.741" x="552.766" y="80.988" rx="15" fill="url(#u)"/><rect width="224.688" 
height="147.741" x="-170.072" y="80.988" rx="15" fill="url(#v)"/><rect width="224.688" height="147.741" 
x="70.864" y="80.988" rx="15" fill="url(#w)"/><rect width="224.688" height="147.741" x="-536.518" y="80.988" 
rx="15" fill="url(#x)" transform="scale(-1 1)"/><g transform="rotate(-14.411 564.469 -238.112) 
scale(.72551)"><rect style="font-variation-settings:normal" width="123.659" height="134.953" x="266.406" 
y="195.21" rx="12.184" ry="12.184" trans
 form="rotate(-18.996)" fill="#f6f5f4"/><g clip-path="url(#y)" transform="rotate(-18.97 1138.557 
544.45)"><rect width="106.417" height="96.355" x="512.925" y="-137.026" rx="0" ry="0" fill="url(#z)"/><path 
style="font-variation-settings:normal" d="M592.247-78.44l26.067 37.77H566.18z" fill="#e01b24"/><path 
style="font-variation-settings:normal" d="M550.767-95.503L588.61-40.67h-75.683l-.233-38.469z" 
fill="url(#A)"/></g></g><g transform="translate(106.862 22.848) scale(.72551)"><rect 
style="font-variation-settings:normal" width="123.659" height="134.953" x="266.406" y="195.21" rx="12.184" 
ry="12.184" transform="rotate(-18.996)" fill="#fff"/><g clip-path="url(#B)" transform="rotate(-18.97 1138.557 
544.45)"><rect width="106.417" height="96.355" x="512.925" y="-137.026" rx="0" ry="0" fill="url(#C)"/><path 
style="font-variation-settings:normal" d="M592.247-78.44l26.067 37.77H566.18z" fill="#1a5fb4"/><path 
style="font-variation-settings:normal" d="M550.767-95.503L588.61-40.67h-75.683z" fill="
 url(#D)"/><circle style="font-variation-settings:normal" cx="590.43" cy="-113.756" r="8.831" 
fill="#cee1f8"/></g></g><g transform="translate(87.354 -236.773) scale(.72551)"><rect 
style="font-variation-settings:normal" width="123.659" height="134.953" x="266.406" y="195.21" rx="12.184" 
ry="12.184" transform="rotate(-18.996)" fill="#fff"/><g clip-path="url(#y)" transform="rotate(-18.97 1138.557 
544.45)"><rect width="106.417" height="96.355" x="512.925" y="-137.026" rx="0" ry="0" fill="url(#E)"/><path 
style="font-variation-settings:normal" d="M592.247-78.44l26.067 37.77H566.18z" fill="#5e5c64"/><path 
style="font-variation-settings:normal" d="M550.767-95.503L588.61-40.67h-75.683z" fill="url(#F)"/><circle 
style="font-variation-settings:normal" cx="590.43" cy="-113.756" r="8.831" fill="#f9f06b"/></g></g><g 
transform="matrix(.25187 .94 .94 -.25187 235.252 116.375)"><path d="M71.188 197.56c-2.251 2.117-4.37 
6.102-4.37 13.602l-.015 34.5-10.179 10.178a1.92 1.92 0 00-1.343.158l-12.125 6.088c-4
 .633-2.888-10.848-2.327-14.864 1.689-4.671 4.671-4.672 12.32 0 16.992 4.67 4.671 12.321 4.671 16.993 
0l.042-.044.005.045 15.556-15.556.018.017 5.891-5.896-.004 7.829h.025v21.999l.035-.028v.06c0 6.607 5.41 
12.016 12.016 12.016s12.014-5.409 12.014-12.015c0-5.68-3.998-10.471-9.317-11.705l-4.269-12.878a1.92 1.92 0 
00-.838-1.061v-13.89l24.028-24.047c11.313-11.314 4.496-18.132 4.496-18.132l-28.524 28.523V195.16s-2.72 
0-5.271 2.399zm-39.36 69.75a6.978 6.978 0 019.921 0 6.979 6.979 0 010 9.921 6.979 6.979 0 01-9.922 0 6.978 
6.978 0 010-9.92zm42.068 16.91a6.994 6.994 0 014.972-2.043 6.979 6.979 0 017.015 7.017 6.978 6.978 0 01-7.015 
7.015 6.979 6.979 0 01-7.016-7.016c0-1.952.778-3.706 2.044-4.972z" style="marker:none" fill-opacity=".102" 
fill-rule="evenodd"/><path d="M65.995 268.962h6v-72l-1.415-1.414s-6.585 5.061-6.585 17.414l.005 27.19.097 
2.723 1.898 2.087z" fill="#9a9996" fill-rule="evenodd"/><use xlink:href="#G" transform="scale(-1 1) 
rotate(-45 -.464 413.359)" width="100%" height="100%
 " enable-background="new"/><g id="G" display="inline"><path d="M55.975 290h9.667v-72S56 218 56 234z" 
fill="#fff" fill-rule="evenodd" transform="scale(-1 1) rotate(-45 -31.3 415.202)"/><g transform="scale(-1 1) 
rotate(-45 -32.3 412.788)"><path d="M54 312v-24c0-2 2-2 2-2h6.037s1.918-.136 2.444 1.45l4.397 13.27z" 
fill="#ed333b" fill-rule="evenodd"/><circle r="9.516" cy="312.033" cx="-66.05" transform="scale(-1 1)" 
fill="none" stroke="#ed333b" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/><circle 
cx="-66" cy="312" r="7" transform="scale(-1 1)" fill="none" stroke="#e01b24" stroke-width="2" 
stroke-linecap="round" stroke-linejoin="round"/></g></g><circle transform="scale(-1 1) rotate(-45)" 
cx="-223.446" cy="125.865" r="2" fill="#3d3846" enable-background="new"/></g><g transform="matrix(0 3.28694 
3.28694 0 -115.015 -377.275)" stroke-width="1.502"><path style="font-variation-settings:normal;marker:none" 
d="M174.888 199.154v-33.812c0-.78 1.408-7.946 1.408-7.946h.46s1.408 7.
 165 1.408 7.946v33.812c0 .78-.628 1.409-1.409 1.409h-.459c-.78 0-1.408-.629-1.408-1.409z" 
fill-opacity=".102"/><rect style="marker:none" width="3.44" height="2.117" x="173.567" y="198.702" rx=".703" 
ry=".703" fill="#1a5fb4"/><path style="marker:none" d="M174.805 157.427h.963c.1 0 .164.083.18.184l1.058 
6.482c.043.261-.208.478-.467.478h-2.505c-.259 0-.51-.217-.467-.478l1.058-6.482c.016-.1.08-.184.18-.184z" 
fill="#1a5fb4"/><path style="marker:none" fill="#fff" d="M173.302 164.042h3.969v35.719h-3.969z"/><rect 
style="marker:none" width=".794" height="2.381" x="174.89" y="155.84" rx=".596" ry=".703" 
fill="#1a5fb4"/><rect style="marker:none" width="1.323" height="1.058" x="174.625" y="156.633" rx="0" ry="0" 
fill="#fff"/><path style="marker:none" fill="#f6f5f4" d="M175.948 164.042h1.323v35.719h-1.323z"/></g><g 
transform="translate(155.39 57.272) scale(.50045)" clip-path="url(#H)"><rect style="marker:none" width="112" 
height="114" x="8" y="180.415" rx="56" ry="56" fill="#d5d3cf" enable-backg
 round="new"/><path d="M64 176.414a60 60 0 00-60 60 60 60 0 0060 60 60 60 0 0060-60 60 60 0 00-60-60zm0 48a12 
12 0 0112 12 12 12 0 01-12 12 12 12 0 01-12-12 12 12 0 0112-12z" style="marker:none" fill="#f6f5f4" 
enable-background="new"/><circle r="23.96" cy="236.5" cx="64" style="marker:none" opacity=".488" fill="none" 
stroke="#9a9996" stroke-width="4.493"/><path style="marker:none" d="M128 209.712l-64 26.702 73.664 
23.15M9.114 278.94l54.908-42.357-77.145-3.295" opacity=".05" fill-opacity=".929"/></g><path 
style="marker:none" d="M279-28.23a45.443 45.443 0 00-45.442 45.443 45.443 45.443 0 00.134 3.395A45.443 45.443 
0 01279-22.224a45.443 45.443 0 0145.31 42.048 45.443 45.443 0 00.133-2.61A45.443 45.443 0 00279-28.23zM51.98 
21a229.812 229.812 0 00-.192 3.787C51.788 150.273 153.514 252 279 252c125.486 0 227.213-101.727 
227.213-227.213A229.948 229.948 0 00506.08 21C504.014 144.953 402.97 244.37 279 244.426 155.053 244.34 54.046 
144.93 51.98 21z" opacity=".74" fill="url(#I)" enable-backgroun
 d="new" transform="translate(150.548 173.31) scale(.13215)"/><g transform="translate(121.846 75.473) 
scale(.50045)" clip-path="url(#H)"><rect style="marker:none" width="112" height="114" x="8" y="180.415" 
rx="56" ry="56" fill="#d5d3cf" enable-background="new"/><path d="M64 176.414a60 60 0 00-60 60 60 60 0 0060 60 
60 60 0 0060-60 60 60 0 00-60-60zm0 48a12 12 0 0112 12 12 12 0 01-12 12 12 12 0 01-12-12 12 12 0 0112-12z" 
style="marker:none" fill="#f6f5f4" enable-background="new"/><circle r="23.96" cy="236.5" cx="64" 
style="marker:none" opacity=".488" fill="none" stroke="#9a9996" stroke-width="4.493"/><path 
style="marker:none" d="M128 209.712l-64 26.702 73.664 23.15M9.114 278.94l54.908-42.357-77.145-3.295" 
opacity=".05" fill-opacity=".929"/></g><path style="marker:none" d="M279-28.23a45.443 45.443 0 00-45.442 
45.443 45.443 45.443 0 00.134 3.395A45.443 45.443 0 01279-22.224a45.443 45.443 0 0145.31 42.048 45.443 45.443 
0 00.133-2.61A45.443 45.443 0 00279-28.23zM51.98 21a229.812 229.812 0 
 00-.192 3.787C51.788 150.273 153.514 252 279 252c125.486 0 227.213-101.727 227.213-227.213A229.948 229.948 0 
00506.08 21C504.014 144.953 402.97 244.37 279 244.426 155.053 244.34 54.046 144.93 51.98 21z" opacity=".74" 
fill="url(#J)" enable-background="new" transform="translate(117.004 191.511) scale(.13215)"/><g 
transform="rotate(57.948 -64.872 858.666) scale(.78517)"><rect ry="8" rx="8" y="217.775" x="-686.787" 
height="80" width="111.75" fill="#5e5c64" enable-background="new"/><rect ry="4" rx="4" y="225.775" 
x="-678.912" height="56" width="96" fill="url(#K)" enable-background="new"/><rect ry="7.988" rx="7.988" 
y="245.775" x="-658.9" height="15.975" width="55.975" fill="#3d3846" stroke="#3d3846" stroke-width="8" 
stroke-linejoin="round" stroke-dashoffset="11.2" enable-background="new"/><circle r="7.988" cy="253.762" 
cx="-650.912" fill="#fff" enable-background="new"/><circle cx="-610.912" cy="253.762" r="7.988" fill="#fff" 
enable-background="new"/><g transform="matrix(.25 0 0 .25 -694.
 912 246.775)" clip-path="url(#L)" fill="#949390" stroke="#949390"><path d="M128 236h256l-32-96H160z" 
stroke-width="32" stroke-linecap="round" stroke-linejoin="round" fill="#3d3846" stroke="#3d3846"/></g><g 
transform="matrix(.25 0 0 .25 -694.912 246.775)" fill="#9a9996"><circle cx="56" cy="-92" r="8"/><circle r="8" 
cy="164" cx="56"/><circle r="8" cy="-92" cx="456"/><circle cx="456" cy="164" r="8"/></g><path fill="#949390" 
enable-background="new" d="M-640.162 247.416h17.634v12.334h-17.634z"/><path d="M-686.787 285.775v4c0 4.432 
3.568 8 8 8h95.75c4.432 0 8-3.568 8-8v-4c0 4.432-3.568 8-8 8h-95.75c-4.432 0-8-3.568-8-8z" fill="#3d3846" 
enable-background="new"/></g><g stroke-width=".25"><path d="M-42.626 75.38h54.084l32.496 32.36.002 80.11c0 
4.794-3.908 8.677-8.702 8.677h-77.88a8.634 8.634 0 01-8.654-8.653V84.033a8.634 8.634 0 018.654-8.654z" 
fill="#f6f5f4" enable-background="new"/><path d="M11.458 75.38v23.796c0 4.794 3.905 8.57 8.699 
8.57l23.797-.005z" fill="#deddda" enable-background="n
 ew"/></g><g stroke-width=".25"><path d="M-94.68 110.379l48.852-23.208 43.24 15.286 34.376 72.359c2.057 
4.33.194 9.514-4.136 11.571l-70.346 33.42a8.634 8.634 0 01-11.53-4.104l-44.558-93.795a8.634 8.634 0 
014.103-11.53z" fill="#fff" enable-background="new"/><path d="M-45.828 87.171l10.212 21.495c2.057 4.33 7.205 
6.065 11.535 4.008l21.493-10.217z" fill="#deddda" enable-background="new"/></g><g 
transform="translate(369.789 -30.879) scale(.80932)"><rect ry="7.673" rx="7.673" y="152.889" x="254.983" 
height="26.458" width="27.359" style="marker:none" fill="none" stroke="#fff" stroke-width="4.233" 
stroke-linecap="round"/><circle style="marker:none" cx="251.486" cy="152.003" r="21.299" fill="#fff"/><path 
d="M251.369 160.999a21.84 21.84 0 00-21.84 21.84 21.84 21.84 0 0021.84 21.84 21.84 21.84 0 
0021.42-17.594h5.54c1.329 0 2.4-1.07 2.4-2.4a2.395 2.395 0 00-2.4-2.399h-5.139A21.84 21.84 0 00251.37 161z" 
style="marker:none" fill-opacity=".102"/><path style="marker:none" fill="#fff" d="M230.187 14
 8.96h42.333v32.015h-42.333z"/><circle r="21.299" cy="180.843" cx="251.486" style="marker:none" 
fill="#fff"/><g clip-path="url(#M)" transform="translate(34.094 81.74) scale(.9094)"><circle 
style="marker:none" cx="239.051" cy="77.264" r="19.711" fill="#deddda"/><circle r="19.711" cy="85.201" 
cx="239.051" style="marker:none" fill="#241f31"/></g></g><g opacity=".42" fill="none" stroke="#fff" 
stroke-width="3.939" stroke-linecap="round"><path d="M555.766 
66.988h39.443m-39.443-8.008h26.005m-24.494-7.728h23.937m-1.229 38.285V77.605c0-1.671 1.02-2.674 
2.972-2.674h11.996"/><path style="marker:none" d="M555.726 66.915a3.939 3.939 0 01-3.41-1.969 3.939 3.939 0 
010-3.939 3.939 3.939 0 013.41-1.97m39.492 15.888a3.939 3.939 0 003.411-1.969 3.939 3.939 0 000-3.939 3.939 
3.939 0 00-3.41-1.97m-14.484-7.997a3.939 3.939 0 003.411-1.97 3.939 3.939 0 000-3.938 3.939 3.939 0 
00-3.41-1.97m-24.359-.012a3.939 3.939 0 01-2.785-1.153 3.939 3.939 0 01-1.154-2.785"/><path d="M552.387 
46.73V36.252"/></g><g transf
 orm="translate(-839.661 2525.02) scale(.3879)"><circle style="marker:none" cx="3649.456" cy="-6053.328" 
r="24.749" fill="#3d3846"/><path d="M3651.108-6078.014l-.594 49.412 132.049-13.801v-21.404z" 
fill="#3d3846"/><path d="M3755.251-6066.953v27.695l27.56-2.95v-21.795z" fill="#c0bfbc"/><path 
style="marker:none" d="M3773.198-6071.557v41.194a9.79 9.79 0 009.811 9.81h59.753a9.79 9.79 0 
009.81-9.81v-41.025h-77.59a9.87 9.87 0 01-1.783-.169z" fill="#deddda"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1;marker:none"
 d="M3798.393-6017.126c-4.25 0-7.755 3.505-7.755 7.756v9.778l9.052
  1.898v-7.217c0-1.424 1.063-2.488 2.487-2.488h21.416c1.424 0 2.488 1.064 2.488 
2.488v6.661l8.86-2.305.192.2v-9.015c0-4.251-3.505-7.756-7.756-7.756z" color="#000" font-weight="400" 
font-family="sans-serif" overflow="visible" fill="#deddda" enable-background="accumulate"/><path 
style="marker:none" d="M3798.932-6011.75a3.44 3.44 0 00-3.448 3.447v9.727l4.205.88v-7.216c0-1.424 1.063-2.486 
2.487-2.486h21.418c1.423 0 2.488 1.062 2.488 2.486v6.662l4.05-1.055v-8.998a3.44 3.44 0 
00-3.447-3.447zm-25.732-59.806v.167h1.782a9.88 9.88 0 01-1.783-.167zm63.122.167v41.026c0 2.408-2.163 
6.31-5.166 6.31h-48.146a9.79 9.79 0 01-9.81-9.81v3.5a9.79 9.79 0 009.81 9.81h59.752a9.79 9.79 0 
009.81-9.81v-41.025z" fill="#c0bfbc" fill-opacity=".445"/><rect style="marker:none" width="92.305" 
height="13.824" x="3766.733" y="-6084.766" rx="6.912" ry="6.912" fill="#f6f5f4"/><circle r="5.125" 
cy="-6067.355" cx="3645.25" style="marker:none" fill="#5e5c64"/></g><g transform="rotate(-15 569.513 
-204.465) scale(.24878)" op
 acity=".96" stroke-width="4.02"><path style="marker:none" d="M135.057-34.968a147.078 147.078 0 
01147.079-147.078A147.078 147.078 0 01429.214-34.968" fill="none" stroke="#3d3846" stroke-width="40.196" 
stroke-linejoin="bevel"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1;marker:none"
 d="M282.355-200.016c-57.004 0-110.71 20.307-144.047 64.27-7.11 9.395-11.016 32.296 3.523 40.69l11.96 
6.62a8.873 8.873 0 0012.119-3.247c24.035-41.632 67.097-71.687 116.445-71.687 49.349 0 92.413 30.056 116.448 
71.687a8.873 8.873 0 0012.119 3.247l11.273-5.74c17.087-9.865 9.187-32.881 4.745-40.574
 -33.265-44.59-87.203-65.266-144.585-65.266z" color="#000" font-weight="400" font-family="sans-serif" 
overflow="visible" fill="url(#N)" enable-background="accumulate"/><path style="marker:none" 
d="M429.257-35.675V39.28m-294.25-74.955V39.28" fill="none" stroke="#3d3846" stroke-width="40.196" 
stroke-linejoin="bevel"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1;marker:none"
 d="M390.31-125.355A154.394 154.394 0 01411.333-92.3c2.69-2.4 6.28-4.341 9.89-5.113a163.911 163.911 0 
00-16.814-27.942z" color="#000" font-weight="400" font-family="sans-serif" overflow="visible" fill="url
 (#O)" enable-background="accumulate"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1;marker:none"
 d="M282.355-210.121c-56.307 0-108.874 26.684-142.175 71.089 0 0-15.959 25.842 3.869 37.29l6.327 3.653a9.109 
9.109 0 0012.44-3.334 137.949 137.949 0 01119.54-69.016c49.348 0 94.867 26.28 119.54 69.016a9.109 9.109 0 
0012.441 3.334l6.511-3.76c18.963-10.261 3.644-37.237 
3.644-37.237-33.303-44.372-85.852-71.035-142.137-71.035z" color="#000" font-weight="400" 
font-family="sans-serif" overflow="visible" fill="url(#P)" enable-background="accumulate"/><path 
style="line-height:normal;fon
 
t-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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1;marker:none"
 d="M282.355-186.332c-67.033 0-109.072 34.558-137.4 83.624a8.132 8.132 0 00-.548 1.172l5.969 3.447a9.109 
9.109 0 0012.44-3.334 137.949 137.949 0 01119.54-69.016c49.348 0 94.867 26.28 119.54 69.016a9.109 9.109 0 
0012.441 3.334l5.973-3.45a8.133 8.133 0 00-.551-1.169c-28.329-49.067-70.37-83.625-137.404-83.624z" 
color="#000" font-weight="400" font-family="sans-serif" overflow="visible" fill="url(#Q)" 
enable-background="accumulate"/><g id="Y" stroke-width="4.02" stroke-linejoin="bevel"><circle cy="70.897" 
cx="118.794" style="marker:none" fill="url(#R)" r=
 "57.276"/><path style="marker:none" d="M86.03 24.002a57.276 57.276 0 00-1.93 1.379A2 2 0 0084 26a2 2 0 002 2 
2 2 0 002-2 2 2 0 00-1.97-1.998zM82 28a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-4 4a2 2 0 00-2 2 2 
2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-12 4a2 2 0 
00-.607.098 57.276 57.276 0 00-1.39 1.824A2 2 0 0072 38a2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 
2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-4 4a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 
00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-15.418.088a57.276 57.276 0 00-2.021 3.299A2 2 0 0070 44a2 2 0 
002-2 2 2 0 00-1.418-1.912zM74 44a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 
002 2 2 2 0 002-2 2 2 0 00-2-2zm-14.246 1.043a57.276 57.276 0 00-1.414 2.928A2 2 0 0068 46a2 2 0 
00-.246-.957zM70 48a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 
002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 
 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-20 4a2 2 0 00-1.422.596 57.276 57.276 0 00-.564 1.617A2 2 0 0066 56a2 2 0 
002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 
002-2 2 2 0 00-2-2zm-12 4a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 
0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-22.59.582a57.276 57.276 0 
00-.808 3.322A2 2 0 0064 58a2 2 0 00-.59-1.418zM66 60a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 
0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 
00-2-2zm-20.018 4a57.276 57.276 0 00-.318 3.97A2 2 0 0062 68a2 2 0 002-2 2 2 0 00-2-2 2 2 0 00-.018 0zM70 
64a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 
00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-20 4a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 
0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2
  2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-20 4a2 2 0 00-.441.05 
57.276 57.276 0 00.23 3.938A2 2 0 0062 76a2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 
2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 
2 2 0 00-2-2zm-20 4a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 
002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-12 4a2 2 0 00-2 2 2 2 0 002 2 2 2 
0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 
0 002-2 2 2 0 00-2-2zm-23.723.022a57.276 57.276 0 00.764 3.683A2 2 0 0064 82a2 2 0 00-1.723-1.979zM66 84a2 2 
0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 
0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-12 4a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 
2 0 00-2 2 2 2 0 002
  2 2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-20 4a2 2 0 00-.414.045 
57.276 57.276 0 001.598 3.564A2 2 0 0068 94a2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 
00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-12 4a2 2 0 00-1.922 1.451 57.276 57.276 0 
001.426 2.485A2 2 0 0070 100a2 2 0 002-2 2 2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 
00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-12 4a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 
0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-4 4a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 
2 0 00-2-2zm8 0a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2zm-4 4a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 
2 2 0 00-2-2zm4 4a2 2 0 00-2 2 2 2 0 002 2 2 2 0 002-2 2 2 0 00-2-2z" fill="url(#S)" stroke-width="80.391" 
enable-background="new"/><path d="M143.894-22.56c-17.103 0-34.177 5.007-48.57 14.246a18.78 18.78 0 00-8.636 
15.803v125.66a18.78 18.78 0 008.6
  15.78c14.382 9.277 31.457 14.322 48.57 14.355h.058c20.634-.024 36.942-7.417 52.862-20.544a18.78 18.78 0 
006.83-14.488v-115.8a18.78 18.78 0 00-6.837-14.493c-15.923-13.118-32.23-20.502-52.862-20.519h-.014z" 
style="marker:none" fill="url(#T)"/><path transform="translate(0 -260)" d="M162.635 
239.707v181.305c12.375-3.12 23.35-9.373 34.142-18.272a18.78 18.78 0 006.83-14.488V272.453a18.78 18.78 0 
00-6.836-14.494c-10.791-8.89-21.765-15.138-34.136-18.252z" style="marker:none" fill="url(#U)"/><path 
style="line-height:normal;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-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1;marker:none"
 d="M196.963 5.215A2.5 2.5 0 001
 94.5 7.75v121.5a2.5 2.5 0 105 0V7.75a2.5 2.5 0 00-2.537-2.535z" color="#000" font-weight="400" 
font-family="sans-serif" overflow="visible" opacity=".462" fill="url(#V)" fill-opacity=".987" 
stroke-width="20.098" stroke-linecap="round" filter="url(#W)" enable-background="accumulate"/><path 
d="M90.232 7.75v121.5" style="marker:none" opacity=".187" fill="none" fill-opacity=".252" stroke="url(#X)" 
stroke-width="20.098" stroke-linecap="round" stroke-opacity=".987"/></g><use xlink:href="#Y" 
transform="matrix(-1 0 0 1 565.127 0)" width="100%" height="100%"/></g><g><g transform="rotate(-14.411 
-1353.245 -480.563) scale(.72551)"><rect style="font-variation-settings:normal" width="123.659" 
height="134.953" x="266.406" y="195.21" rx="12.184" ry="12.184" transform="rotate(-18.996)" 
fill="#f6f5f4"/><g clip-path="url(#y)" transform="rotate(-18.97 1138.557 544.45)"><rect width="106.417" 
height="96.355" x="512.925" y="-137.026" rx="0" ry="0" fill="url(#Z)"/><path 
style="font-variation-settings:norma
 l" d="M592.247-78.44l26.067 37.77H566.18z" fill="#e01b24"/><path style="font-variation-settings:normal" 
d="M550.767-95.503L588.61-40.67h-75.683l-.233-38.469z" fill="url(#aa)"/></g></g><g 
transform="translate(106.862 -462.053) scale(.72551)"><rect style="font-variation-settings:normal" 
width="123.659" height="134.953" x="266.406" y="195.21" rx="12.184" ry="12.184" transform="rotate(-18.996)" 
fill="#fff"/><g clip-path="url(#B)" transform="rotate(-18.97 1138.557 544.45)"><rect width="106.417" 
height="96.355" x="512.925" y="-137.026" rx="0" ry="0" fill="url(#ab)"/><path 
style="font-variation-settings:normal" d="M592.247-78.44l26.067 37.77H566.18z" fill="#1a5fb4"/><path 
style="font-variation-settings:normal" d="M550.767-95.503L588.61-40.67h-75.683z" fill="url(#ac)"/><circle 
style="font-variation-settings:normal" cx="590.43" cy="-113.756" r="8.831" fill="#cee1f8"/></g></g></g></svg>
\ No newline at end of file
diff --git a/data/resources/style.css b/data/resources/style.css
index 5c1170c..1bf6cdd 100644
--- a/data/resources/style.css
+++ b/data/resources/style.css
@@ -20,11 +20,53 @@
   transition-duration: 250ms;
   transition-timing-function: ease-in-out;
 }
+/* pages */
 
-.last-page {
-  background-color: #4a86cf; /*GNOME blue*/
+@keyframes welcome-bg-move {
+    from { background-position: center 30%, -1400px 0, -600px 0, center 30%; }
+    to { background-position: center 30%, 0 0, 0 0, center 30%; }
+  }
+
+@keyframes up-and-down {
+    from { background-position: center 30%, center 30%, center; }
+    to { background-position: center 40%, center 30%, center; }
 }
 
-.last-page .page-title, .last-page .page-body {
-  color: white;
+@keyframes left-and-right {
+    from { background-position: 40% 30%, center 30%, center; }
+    to { background-position: 60% 30%, center 30%, center; }
 }
+
+.page { color: #000; }
+  .welcome-page {
+    background-repeat: no-repeat, repeat-x, repeat-x, no-repeat;
+    background-image: url('/org/gnome/Tour/start-fg.svg'),
+                      url('/org/gnome/Tour/start-bg.svg'),
+                      url('/org/gnome/Tour/start-bg-bg.svg'),
+                      url('/org/gnome/Tour/start-bg-bg-bg.svg');
+    background-position: center 30%, -1400px 0, -600px 0, center 30%; /* wasn't able to properly loop with 
relative offsets */
+    animation: welcome-bg-move 60s linear infinite;
+  }
+
+  /* .page:nth-child(2) { background: linear-gradient(to right, #3584e4, #1a5fb4); }  overview */
+  .page:nth-child(3) {  }  /* customize */
+  /* .page:nth-child(4) { background: linear-gradient(to right, #e66100, #c64600); }  workspaces */
+
+  .page:nth-child(5) { /* up down */
+    background: url('/org/gnome/Tour/hand-fg.svg'),
+                url('/org/gnome/Tour/updown-bg.svg');
+    background-repeat: no-repeat;
+    background-position: center 30%;
+    animation: up-and-down 2s ease-in-out infinite alternate;
+    }
+  .page:nth-child(6) {   /* left right */
+    background: url('/org/gnome/Tour/hand-fg.svg'),
+                url('/org/gnome/Tour/leftright-bg.svg');
+    background-repeat: no-repeat;
+    background-position: center 30%;
+    animation: left-and-right 2s ease-in-out infinite alternate;
+    }
+  .last-page { }
+  .last-page .page-title, .last-page .page-body { }
+
+
diff --git a/src/widgets/pages/image.rs b/src/widgets/pages/image.rs
index 85c6511..d53ee5c 100644
--- a/src/widgets/pages/image.rs
+++ b/src/widgets/pages/image.rs
@@ -16,6 +16,7 @@ impl ImagePageWidget {
 
     fn init(&self, resource_uri: &str, head: String, body: String) {
         self.widget.set_property_expand(true);
+        self.widget.get_style_context().add_class("page");
         self.widget.set_halign(gtk::Align::Fill);
         self.widget.set_valign(gtk::Align::Fill);
 
diff --git a/src/widgets/pages/welcome.rs b/src/widgets/pages/welcome.rs
index fbcbbf2..fe22505 100644
--- a/src/widgets/pages/welcome.rs
+++ b/src/widgets/pages/welcome.rs
@@ -73,13 +73,14 @@ impl WelcomePageWidget {
             .margin_top(24)
             .margin_bottom(24)
             .build();
+        self.widget.get_style_context().add_class("page");
+        self.widget.get_style_context().add_class("welcome-page");
 
         #[cfg(not(feature = "video"))]
         let header = {
             let icon = glib::get_os_info("LOGO").unwrap_or_else(|| "start-here-symbolic".into());
 
-            let logo = gtk::Image::from_icon_name(Some(&icon), gtk::IconSize::Dialog);
-            logo.set_pixel_size(196);
+            let logo = gtk::Image::from_resource("/org/gnome/Tour/blank.svg");
             logo.show();
 
             logo.upcast::<gtk::Widget>()
@@ -159,7 +160,7 @@ impl WelcomePageWidget {
         container.add(&title);
 
         let text = gtk::Label::new(Some(&gettext(
-            "Hi there! Take the tour to learn your way around and discover essential features.",
+            "Learn about new and essential features in GNOME 40.",
         )));
         text.get_style_context().add_class("body");
         text.set_margin_top(12);
diff --git a/src/widgets/window.rs b/src/widgets/window.rs
index 34c0f5d..71aedef 100644
--- a/src/widgets/window.rs
+++ b/src/widgets/window.rs
@@ -45,12 +45,11 @@ impl Window {
         self.paginator
             .borrow_mut()
             .add_page(WelcomePageWidget::new().widget.upcast::<gtk::Widget>());
-
         self.paginator.borrow_mut().add_page(
             ImagePageWidget::new(
-                "/org/gnome/Tour/activities.svg",
-                gettext("Open Activities to launch apps"),
-                gettext("The activities view can also be used to switch windows and search."),
+                "/org/gnome/Tour/overview.svg",
+                gettext("Get an Overview"),
+                gettext("Press Activities to see open windows and apps."),
             )
             .widget
             .upcast::<gtk::Widget>(),
@@ -58,9 +57,9 @@ impl Window {
 
         self.paginator.borrow_mut().add_page(
             ImagePageWidget::new(
-                "/org/gnome/Tour/search.svg",
-                gettext("Just type to search"),
-                gettext("In the activities view, just start typing to search for apps, settings and more."),
+                "/org/gnome/Tour/makeyourown.svg",
+                gettext("Make Apps Your Own"),
+                gettext("Arrange your apps so they make sense for you."),
             )
             .widget
             .upcast::<gtk::Widget>(),
@@ -68,9 +67,9 @@ impl Window {
 
         self.paginator.borrow_mut().add_page(
             ImagePageWidget::new(
-                "/org/gnome/Tour/calendar.svg",
-                gettext("Click the time to see notifications"),
-                gettext("The notifications popover also includes personal planning tools."),
+                "/org/gnome/Tour/workspaces.svg",
+                gettext("Keep on Top with Workspaces"),
+                gettext("Easily organise windows with the new workspaces view."),
             )
             .widget
             .upcast::<gtk::Widget>(),
@@ -78,9 +77,9 @@ impl Window {
 
         self.paginator.borrow_mut().add_page(
             ImagePageWidget::new(
-                "/org/gnome/Tour/status-menu.svg",
-                gettext("View system information and settings"),
-                gettext("Get an overview of the system status and quickly change settings."),
+                "/org/gnome/Tour/blank.svg",
+                gettext("Up/Down for the Overview"),
+                gettext("On a touchpad, use three-finger vertical swipes. Try it!"),
             )
             .widget
             .upcast::<gtk::Widget>(),
@@ -88,9 +87,9 @@ impl Window {
 
         self.paginator.borrow_mut().add_page(
             ImagePageWidget::new(
-                "/org/gnome/Tour/software.svg",
-                gettext("Use Software to find and install apps"),
-                gettext("Discover great apps through search, browsing and our recommendations."),
+                "/org/gnome/Tour/blank.svg",
+                gettext("Left/Right for Workspaces"),
+                gettext("On a touchpad, use three-finger horizontal swipes. Try it!"),
             )
             .widget
             .upcast::<gtk::Widget>(),


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