aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojtek Kosior <wk@koszkonutek-tmp.pl.eu.org>2021-05-26 18:17:35 +0200
committerWojtek Kosior <wk@koszkonutek-tmp.pl.eu.org>2021-05-26 18:17:35 +0200
commitf02cc055fb9306798e449bc7028e46e6f232d475 (patch)
tree5096273ceeea454e3c9ecd971d48869735468061
downloadmothers-day-css-animation-f02cc055fb9306798e449bc7028e46e6f232d475.tar.gz
mothers-day-css-animation-f02cc055fb9306798e449bc7028e46e6f232d475.zip
initial commit
-rw-r--r--grass.svg64
-rw-r--r--index.html197
-rw-r--r--moon.svg64
-rw-r--r--sun.svg63
-rw-r--r--text.svg250
-rw-r--r--tulip.svg85
6 files changed, 723 insertions, 0 deletions
diff --git a/grass.svg b/grass.svg
new file mode 100644
index 0000000..b4ca301
--- /dev/null
+++ b/grass.svg
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="2459.7144mm"
+ height="638.68109mm"
+ viewBox="0 0 2459.7144 638.68109"
+ version="1.1"
+ id="svg4592"
+ inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
+ sodipodi:docname="grass.svg"
+ preserveAspectRatio="none">
+ <defs
+ id="defs4586" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.061871843"
+ inkscape:cx="5013.5637"
+ inkscape:cy="1422.7162"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:window-width="1391"
+ inkscape:window-height="850"
+ inkscape:window-x="49"
+ inkscape:window-y="26"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata4589">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,341.6811)">
+ <path
+ style="fill:#9dd568;fill-opacity:1;stroke:none;stroke-width:2.91374803px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 0,-161.92029 V 297 h 2459.7144 v -521.53806 c 0,0 -1534.42813,-301.34839 -2459.7144,62.61777 z"
+ id="path5139"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+</svg>
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..56ab5f2
--- /dev/null
+++ b/index.html
@@ -0,0 +1,197 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!--
+ Copyright Wojtek Kosior 2021
+
+ This file and accompanying svg images are available under the terms of CC0.
+ See: https://koszko.org/cc0-license.txt
+ -->
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
+ <meta http-equiv="Content-Security-Policy" content="script-src"/>
+ <title>DzieƄ mamy</title>
+ <style type="text/css">
+ body>* {
+ position: fixed;
+ }
+
+ body>* * {
+ position: relative;
+ }
+
+ .tulip {
+ height: 50vh;
+ width: auto;
+ top: 25vh;
+ left: 50vw;
+ transform:translateX(-50%);
+ }
+
+ .grass {
+ bottom: 0;
+ width: 100%;
+ height: 35%;
+ }
+
+ .text {
+ bottom: 2vh;
+ left: 50vw;
+ transform:translateX(-50%);
+ animation: pulsating-text 3s infinite ease;
+ }
+
+ @keyframes pulsating-text {
+ 0%, 60%, 100% {
+ height: 35vh;
+ width: 91vw;
+ }
+ 80% {
+ height: 38vh;
+ width: 95vw;
+ }
+ }
+
+ .sun-container {
+ animation: sun-container 7s infinite ease-in;
+ }
+
+ .sun {
+ animation: sun 7s infinite ease-in;
+ height: 10vh;
+ }
+
+ @keyframes sun-container {
+ 100%, 0% {
+ left: 25vw;
+ }
+ 40% {
+ left: 25vw;
+ animation-timing-function: ease-out;
+ }
+ 50% {
+ left: -25vw;
+ }
+ 90% {
+ left: 125vw;
+ animation-timing-function: ease-in;
+ }
+ }
+
+ @keyframes sun {
+ 0%, 100% {
+ top: 5vh;
+ }
+ 40% {
+ top: 5vh;
+ animation-timing-function: ease-in;
+ }
+ 50% {
+ top: 50vh;
+ }
+ 51% {
+ top: 100vh;
+ }
+ 89% {
+ top: 100vh;
+ }
+ 90% {
+ top: 50vh;
+ animation-timing-function: ease-out;
+ }
+ }
+
+ .moon-container {
+ animation: moon-container 7s infinite ease-in;
+ }
+
+ .moon {
+ animation: moon 7s infinite ease-in;
+ height: 10vh;
+ }
+
+ @keyframes moon-container {
+ 100%, 0% {
+ left: -25vw;
+ }
+ 40% {
+ left: 125vw;
+ animation-timing-function: ease-in;
+ }
+ 50% {
+ left: 25vw;
+ }
+ 90% {
+ left: 25vw;
+ animation-timing-function: ease-out;
+ }
+ }
+
+ @keyframes moon {
+ 0%, 100% {
+ top: 50vh;
+ }
+ 1% {
+ top: 100vh;
+ }
+ 39% {
+ top: 100vh;
+ }
+ 40% {
+ top: 50vh;
+ animation-timing-function: ease-out;
+ }
+ 50% {
+ top: 5vh;
+ }
+ 90% {
+ top: 5vh;
+ animation-timing-function: ease-in;
+ }
+ }
+
+ body, html {
+ margin: 0;
+ width: 100vw;
+ height: 100vh;
+ }
+
+ body {
+ animation: sky 7s infinite ease;
+ }
+
+ @keyframes sky {
+ 100%, 0%, 40% {
+ background-color: #adf;
+ }
+ 50%, 90% {
+ background-color: #44c;
+ }
+ }
+
+ .darkness {
+ animation: darkness 7s infinite ease;
+ background-color: black;
+ width: 100vw;
+ height: 100vh;
+ }
+
+ @keyframes darkness {
+ 100%, 0%, 40% {
+ opacity: 0;
+ }
+ 50%, 90% {
+ opacity: 0.4;
+ }
+ }
+ </style>
+ </head>
+ <body>
+ <img src="mm/grass.svg" class="grass" alt="grass image"></img>
+ <img src="mm/tulip.svg" class="tulip" alt="tulip image"></img>
+ <div class="darkness"></div>
+ <div class="sun-container"><img class="sun" src="mm/sun.svg" alt="sun image"></img></div>
+ <div class="moon-container"><img class="moon" src="mm/moon.svg" alt="moon image"></img></div>
+ <img class="text" src="mm/text.svg" alt="Wszystkiego najlepszego z okazji Dnia Mamy"></img>
+ </body>
+</html>
diff --git a/moon.svg b/moon.svg
new file mode 100644
index 0000000..5a39ae5
--- /dev/null
+++ b/moon.svg
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="50.413952mm"
+ height="98.889732mm"
+ viewBox="0 0 50.413952 98.889732"
+ version="1.1"
+ id="svg5738"
+ inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
+ sodipodi:docname="moon.svg">
+ <defs
+ id="defs5732" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.49497475"
+ inkscape:cx="-235.15155"
+ inkscape:cy="-24.475112"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1391"
+ inkscape:window-height="850"
+ inkscape:window-x="49"
+ inkscape:window-y="26"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata5735">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-81.249933,-52.715651)">
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 84.45717,52.715651 c 39.27438,10.538613 47.00696,39.531358 47.16898,45.740761 0.15201,5.825918 1.82498,38.944818 -50.376217,53.148968 44.793517,-28.7713 33.627397,-73.123945 3.207237,-98.889729 z"
+ id="path6283"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscc" />
+ </g>
+</svg>
diff --git a/sun.svg b/sun.svg
new file mode 100644
index 0000000..fbd0f4a
--- /dev/null
+++ b/sun.svg
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="72.571999mm"
+ height="72.571999mm"
+ viewBox="0 0 72.571999 72.571999"
+ version="1.1"
+ id="svg5166"
+ inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
+ sodipodi:docname="sun.svg">
+ <defs
+ id="defs5160" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.35"
+ inkscape:cx="390.00108"
+ inkscape:cy="-258.57035"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:window-width="1391"
+ inkscape:window-height="850"
+ inkscape:window-x="49"
+ inkscape:window-y="26"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata5163">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(159.50624,-7.8479309)">
+ <circle
+ style="opacity:0.93000034;fill:#ffd325;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
+ id="path5711"
+ cx="-123.22024"
+ cy="44.13393"
+ r="36.285999" />
+ </g>
+</svg>
diff --git a/text.svg b/text.svg
new file mode 100644
index 0000000..55d8280
--- /dev/null
+++ b/text.svg
@@ -0,0 +1,250 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="118.72395mm"
+ height="45.921864mm"
+ viewBox="0 0 118.72395 45.921864"
+ version="1.1"
+ id="svg6310"
+ inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
+ sodipodi:docname="text.svg">
+ <defs
+ id="defs6304" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.4"
+ inkscape:cx="240.6738"
+ inkscape:cy="108.45775"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:snap-global="false"
+ inkscape:window-width="1391"
+ inkscape:window-height="850"
+ inkscape:window-x="49"
+ inkscape:window-y="26"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata6307">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-52.047904,-182.59701)">
+ <g
+ aria-label="Wszystkiego najlepszego
+z okazji Dnia Mamy"
+ transform="scale(0.26458333)"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none"
+ id="flowRoot6855">
+ <path
+ d="m 219.26904,727.7208 2.61077,2.37335 -6.70483,15.60115 12.94643,-6.73123 q -0.20399,-1.26576 -1.67888,-2.92161 l 1.04451,-0.85099 6.55661,5.96035 -1.04453,0.85097 q -1.43919,-1.2183 -2.39952,-1.05597 l -19.42114,9.44281 -2.99644,-2.72396 5.83647,-14.04986 -13.75781,6.84889 -2.99646,-2.72396 8.21271,-19.22685 q 0.12236,-0.96907 -1.01832,-2.45614 l 1.04452,-0.85098 8.12901,7.38975 -1.07419,0.82401 q -1.26118,-1.05649 -2.36198,-1.15689 l -5.93877,13.50673 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:0.91359168;stroke-opacity:1"
+ id="path6865"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 233.23141,747.77764 q -1.01786,-0.55635 -2.01417,-0.2348 -0.99629,0.32155 -1.55265,1.33943 -0.53717,0.98278 -0.0593,2.11009 0.49706,1.09222 2.42335,3.23916 3.8175,4.27471 1.86065,7.85482 -1.36212,2.49201 -4.02486,2.86 -2.64356,0.33289 -6.04817,-1.52803 -1.36886,-0.74822 -2.99235,-2.36497 -1.56921,-1.63267 -2.20339,-2.891 l 2.11034,-3.86089 3.90298,1.44953 q -0.598,1.17745 -1.09723,2.59123 -0.44496,1.39786 -0.44864,1.98843 0.84519,0.87227 1.82798,1.40943 0.98277,0.53719 2.04926,0.254 1.0665,-0.28318 1.62285,-1.30106 1.09355,-2.00065 -1.43881,-4.70679 -2.47808,-2.72205 -3.04772,-4.76564 -0.53454,-2.02442 0.61655,-4.13036 1.17028,-2.14104 3.63178,-2.39108 2.51582,-0.26597 5.74493,1.49903 1.54435,0.84414 2.91606,2.00417 1.39087,1.12492 1.97448,1.80858 l 0.61871,0.70285 -2.7491,4.19553 -2.73772,-1.49641 q 0.92087,-1.68474 0.76244,-3.23001 -0.13907,-1.58035 -1.64834,-2.4053 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6867"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 248.29569,776.06933 q -3.43772,-4.17521 -6.51705,-7.85366 -3.07931,-3.67845 -4.60206,-5.36019 l 1.36321,-1.39141 19.69899,-3.09794 -3.2473,-3.87908 q -1.07351,0.22753 -3.63328,1.83677 -0.80596,-0.68824 -1.39384,-1.3905 -0.55989,-0.66879 -1.01396,-1.82893 l 3.46953,-3.47369 2.04159,0.37978 q 0.88474,1.19414 4.63591,5.67517 3.77918,4.51447 5.4419,6.36341 l -0.96056,1.39198 -20.06257,3.00676 3.52722,4.2135 q 1.57122,-0.2507 4.23744,-1.66415 0.90099,0.66451 1.37689,1.23299 0.4759,0.56848 1.06409,1.61429 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:1.09581733;stroke-opacity:1"
+ id="path6869"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 264.14431,790.72291 q -1.8707,2.40089 -3.48185,3.34481 -1.61116,0.94393 -3.55157,0.74009 -1.9404,-0.20384 -2.75349,-1.11379 -0.81307,-0.90999 -0.34803,-2.2629 0.45135,-1.31313 1.31852,-1.96414 0.86712,-0.65102 1.91495,-0.54095 1.08662,0.11414 1.57333,1.15476 -0.54999,0.31328 -0.83722,1.1489 -0.42401,1.23355 0.62381,1.34362 0.65974,0.0693 1.46293,-0.62967 0.84199,-0.69489 2.23587,-2.52743 l 2.20375,-2.90187 -1.31948,-0.13861 -0.0216,-16.78227 q -0.0143,-1.36205 -1.83164,-1.92401 l 0.55634,-1.38456 10.16771,1.0681 -0.67275,1.37232 q -1.44958,-0.11104 -2.47195,0.52368 l 0.0259,11.50548 8.04393,-10.53408 q -0.68743,-0.69064 -2.22162,-1.1404 l 0.63395,-1.37641 7.21831,0.75827 -0.63396,1.3764 q -1.7349,-0.0998 -2.34628,0.74302 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6871"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 292.04086,770.94783 q -1.15206,-0.30538 -2.09048,0.34767 -0.93842,0.65303 -1.27931,1.93907 -0.32915,1.24171 0.40092,2.33702 0.74184,1.05097 3.16109,2.83136 4.7988,3.55023 3.59977,8.07358 -0.83461,3.1486 -3.45004,4.35382 -2.60367,1.16086 -6.45712,0.13941 -1.54931,-0.41069 -3.54618,-1.69942 -1.94537,-1.32253 -2.86233,-2.51484 l 1.29307,-4.87811 4.26813,0.41944 q -0.34819,1.47396 -0.54478,3.17796 -0.1451,1.67019 -0.0198,2.32041 1.04627,0.7045 2.1586,0.99936 1.11234,0.29485 2.13021,-0.33712 1.01787,-0.63199 1.35877,-1.91803 0.67004,-2.52775 -2.48496,-4.74048 -3.10352,-2.24654 -4.1267,-4.32133 -0.98345,-2.06426 -0.27814,-4.72506 0.71708,-2.70513 3.15454,-3.7202 2.48894,-1.04889 6.14377,-0.0801 1.74795,0.46333 3.39009,1.32582 1.65391,0.81812 2.39413,1.39403 l 0.77993,0.58644 -1.86667,5.438 -3.09863,-0.82138 q 0.56424,-2.12862 0.0664,-3.77938 -0.48606,-1.69511 -2.19428,-2.14792 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:1.08556008;stroke-opacity:1"
+ id="path6873"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 301.17679,792.87579 q -1.87644,-1.04723 -2.40915,-2.86906 -0.53268,-1.82183 0.78721,-4.18684 l 6.71134,-12.0255 -2.46718,-1.37692 1.02906,-1.84391 q 4.48638,0.45358 7.974,-2.12104 l 2.25868,1.26055 -2.37135,4.24902 4.44788,2.48232 -1.45412,2.60552 -4.48262,-2.50171 -6.53236,11.70481 q -1.18568,2.1245 0.48227,3.05537 1.25097,0.69815 3.0612,0.39419 l -0.088,1.79083 q -3.78469,1.14715 -6.94685,-0.61763 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:1.06851494;stroke-opacity:1"
+ id="path6875"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 333.39449,783.27486 q 0.43811,-1.07409 -1.45081,-1.84454 l 0.88547,-1.32362 8.62975,3.5199 -0.88546,1.32361 q -2.11943,-0.73486 -3.84848,0.11507 l -4.93862,2.04639 2.02748,11.022 q 0.64428,1.38596 2.10094,2.3689 l -0.87865,1.41279 -6.96307,-2.84008 q 0.41617,-1.12623 0.20951,-2.4201 l -1.34562,-7.50395 -2.81581,1.18426 -1.49557,3.66673 q 0.56484,1.05116 1.92548,1.95174 l -0.70027,1.39915 -9.55571,-3.89755 0.76753,-1.45812 q 1.36504,0.25431 2.30363,-0.14039 l 7.43254,-18.22251 q 0.55895,-1.37039 0.23682,-2.06337 -0.26999,-0.71491 -1.5361,-1.31772 l 0.70029,-1.39915 q 0.52679,0.0853 2.13599,0.48239 3.83436,0.87274 5.15552,1.02284 l 0.51561,0.64229 -6.40528,15.70395 7.22468,-2.88513 q 0.44738,-0.24951 0.56823,-0.54582 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6877"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 344.48985,783.38054 q 0.15321,-1.10211 -0.15272,-1.55032 -0.27586,-0.47523 -1.1705,-0.66202 l 0.24348,-1.18319 q 0.34823,-0.045 1.43596,-0.11246 2.56686,-0.11126 3.43089,-0.27199 l 0.40037,0.33651 -1.77475,12.76622 q 0.56423,0.67134 1.53653,1.05617 l -0.26924,1.17961 -6.63166,-0.92193 0.27774,-1.24084 q 0.88132,-0.0959 1.44821,-0.57883 z m 3.28792,-10.02817 q 2.06433,0.287 1.7664,2.42999 -0.29791,2.14302 -2.36224,1.85604 -2.03853,-0.2834 -1.7406,-2.4264 0.29791,-2.14302 2.33644,-1.85963 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:0.70942152;stroke-opacity:1"
+ id="path6879"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 359.82339,781.21366 -0.34971,0.70976 q -1.83598,3.72624 -1.75378,6.06995 0.10405,2.29937 2.79446,3.74302 3.42415,1.83737 6.82753,0.57873 l 0.77814,2.60497 q -2.56745,0.92195 -4.88268,0.91357 -2.27446,0.0135 -5.20944,-1.56141 -4.7286,-2.53731 -5.71297,-6.71124 -0.92174,-4.19641 1.61366,-9.34216 2.55726,-5.19012 6.54903,-6.80608 4.01362,-1.66032 8.66068,0.83325 4.68784,2.51545 5.46718,5.8502 0.77933,3.33478 -1.22734,8.03508 l -2.05937,1.25069 z m 8.20317,-6.81588 q -3.7095,-1.99047 -7.32889,5.04149 l 7.02317,3.31985 q 1.74856,-3.5488 1.88318,-5.49573 0.13463,-1.94693 -1.57746,-2.86561 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:1.19539821;stroke-opacity:1"
+ id="path6881"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 374.96564,787.5489 q 0.2532,-3.35045 2.54572,-5.02245 2.33542,-1.70887 5.88529,-1.44059 3.58977,0.27127 5.60427,1.74729 0.59457,-0.43644 0.66089,-1.31393 0.0663,-0.87751 -1.0083,-1.5203 0.0482,-0.63819 0.71956,-1.02871 0.71124,-0.3875 1.6685,-0.3152 0.95727,0.0724 1.51035,0.71586 0.59597,0.60663 0.52364,1.56391 -0.0723,0.95727 -0.86566,1.90017 -0.75041,0.90602 -1.82664,1.34618 1.34015,1.9064 1.1201,4.8181 -0.21702,2.87181 -2.58931,4.53777 -2.36927,1.62609 -6.15848,1.33974 l -0.63817,-0.0482 -1.48574,1.61263 q 0.0594,0.80677 2.2531,0.97254 l 1.67523,0.12661 q 3.94874,0.29841 5.90527,2.01073 1.95954,1.67241 1.7395,4.58411 -0.22307,2.95159 -2.77369,4.32328 -2.55363,1.41157 -7.18043,1.06196 -4.62681,-0.34966 -7.08005,-1.85882 -2.45626,-1.46928 -2.27239,-3.90235 0.22908,-3.03135 3.49696,-4.87032 -0.52595,-1.00248 -0.41744,-2.43839 l 3.65399,-2.17082 q -2.38182,-0.86194 -3.61437,-2.59976 -1.22952,-1.7777 -1.05169,-4.13099 z m 8.38388,13.2695 -3.62964,-0.27429 -0.25742,0.22122 q -1.20121,1.03243 -1.33384,2.78742 -0.13262,1.75499 0.92391,2.63712 1.0535,0.92201 3.44669,1.10288 4.78634,0.36171 5.04256,-3.02863 0.23513,-3.11113 -4.19226,-3.44572 z m -2.76594,-12.76472 q -0.20799,2.75215 0.23819,3.74861 0.48606,0.99947 2.1214,1.12306 1.63534,0.12358 2.34888,-0.82534 0.71655,-0.98881 0.91848,-3.66121 0.20498,-2.71225 -0.42255,-3.96311 -0.58764,-1.24783 -2.06342,-1.35935 -1.4758,-0.11153 -2.20441,1.03683 -0.72861,1.14835 -0.9369,3.90043 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6883"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 412.16282,790.07376 q -1.67017,-1.10024 -3.39526,-0.0812 -1.72509,1.01903 -4.01361,4.49299 -2.2665,3.44053 -2.52185,5.4278 -0.25534,1.98725 1.41482,3.0875 1.67018,1.10025 3.36187,0.0592 1.7471,-1.05244 4.01359,-4.493 2.26652,-3.44053 2.52186,-5.4278 0.28875,-1.96526 -1.38142,-3.0655 z m -14.35246,8.69899 q -0.62929,-3.48011 2.0553,-7.55531 2.6846,-4.07522 6.10852,-4.83734 3.44592,-0.79551 7.42093,1.82304 3.97499,2.61858 4.57088,6.07669 0.6513,3.4467 -2.03331,7.52192 -2.6846,4.0752 -6.13051,4.87073 -3.41251,0.81752 -7.38752,-1.80105 -3.97499,-2.61858 -4.60428,-6.0987 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6885"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 463.00613,788.91776 q -0.68967,-4.75816 -3.0229,-4.41997 -0.97846,0.14182 -1.81154,1.02165 -0.79544,0.87437 -1.14271,2.18985 l 2.18394,15.06751 q 0.99488,0.76669 2.45197,1.01095 l 0.12964,1.95483 -9.52119,1.38002 -0.18165,-2.0485 q 1.16116,-0.47193 1.81495,-1.5282 l -2.06898,-14.27449 q -0.25861,-1.7843 -0.87888,-2.35226 -0.62744,-0.61754 -1.95898,-0.52576 l -0.16726,-1.94936 q 5.4438,-2.206 6.19101,-2.61793 l 0.74205,0.34787 0.71775,2.83107 q 1.66376,-3.6317 5.05075,-4.12264 2.55906,-0.37091 4.35892,1.44305 1.8375,1.80848 2.35475,5.37711 l 1.95405,13.48145 q 1.0773,0.80538 2.60249,0.9891 l 0.12965,1.95483 -9.52118,1.38001 -0.16728,-1.94935 q 1.08588,-0.46102 1.65006,-1.6055 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:1.09099817;stroke-opacity:1"
+ id="path6887"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 479.14873,799.88405 q -3.03761,0.0176 -4.67401,-1.28145 -1.63643,-1.299 -1.65085,-3.79317 -0.0314,-5.4381 8.63781,-6.06066 l 3.87262,-0.26773 -0.0137,-2.3715 q -0.0165,-2.86217 -0.77131,-3.96182 -0.71075,-1.0999 -2.25158,-1.09099 -1.49678,0.009 -2.32967,0.6268 -0.78911,0.57702 -0.78344,1.55834 0.005,0.94042 0.97796,1.62991 -0.21421,1.02348 -1.04708,1.64165 -0.8329,0.61814 -2.1536,0.62577 -1.3207,0.008 -2.29414,-0.84543 -0.97349,-0.85304 -0.98081,-2.12057 -0.0125,-2.16707 2.18159,-3.40642 2.23783,-1.2805 6.1559,-1.30315 9.46498,-0.0547 9.50232,6.40559 l 0.0643,11.12153 q 0.75289,0.77256 2.64777,1.0887 l -0.16781,1.43211 -7.92418,0.0458 -0.45371,-2.32806 q -2.80235,2.63312 -6.54431,2.65475 z m 3.99694,-9.22323 q -2.42032,0.17755 -3.47192,1.04231 -1.05159,0.86476 -1.04261,2.41849 0.018,3.1075 2.65936,3.09224 2.02505,-0.0117 4.08116,-2.27251 l -0.0258,-4.45681 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:1.06068313;stroke-opacity:1"
+ id="path6889"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 506.03485,807.24444 q -0.25016,3.06197 -1.35441,4.54509 -0.72167,0.96554 -2.11663,1.37863 -1.36029,0.45164 -3.0901,0.335 -1.72975,-0.11703 -3.01879,-1.00033 -1.32661,-0.88628 -1.20887,-2.32721 0.0824,-1.00864 0.80928,-1.57544 0.6893,-0.56929 1.77981,-0.4958 1.09055,0.0733 1.61863,1.01463 -0.60821,0.50232 -0.66411,1.18678 -0.10891,1.33286 0.79362,1.39367 0.52642,0.0358 0.91786,-0.59013 0.38849,-0.58956 0.47383,-1.63425 0.0824,-1.00864 -0.002,-2.75297 -0.0843,-1.74431 0.0392,-3.25728 l 0.85935,-10.51878 q 0.10599,-1.29683 -0.38225,-1.80061 -0.44766,-0.53728 -1.75792,-0.69803 l 0.22758,-1.3973 q 0.49768,-0.0751 2.09767,-0.22081 3.65415,-0.29706 4.88397,-0.54015 l 0.6128,0.36727 z m -0.46692,-26.21965 q 3.00836,0.2025 2.80233,2.72437 -0.20604,2.52162 -3.21435,2.31889 -2.97076,-0.19987 -2.76473,-2.72185 0.20603,-2.52162 3.17675,-2.32141 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:0.92265981;stroke-opacity:1"
+ id="path6891"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 508.53542,771.02221 q -0.66681,-1.8706 -1.35012,-2.36777 -0.66927,-0.55916 -1.8279,-0.2601 l -0.60659,-2.00603 q 0.3629,-0.30029 1.5698,-1.07239 2.82281,-1.91796 3.68699,-2.73883 l 0.75754,0.29978 11.19157,31.39566 q 1.08011,0.69761 2.50724,0.64472 l 0.60658,2.00603 -8.27506,2.94981 -0.6106,-2.11856 q 0.93231,-0.73121 1.21731,-1.85845 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:1.06876087;stroke-opacity:1"
+ id="path6893"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 530.02189,783.29618 0.153,0.55785 q 0.80325,2.92876 2.02312,4.13124 1.21028,1.16762 3.48673,0.54327 2.89728,-0.79461 4.23389,-3.22309 l 1.7526,0.98139 q -1.02208,1.81737 -2.36382,3.01012 -1.30725,1.18329 -3.79065,1.86439 -4.00101,1.09733 -6.65757,-0.61084 -2.63164,-1.7525 -3.7409,-5.797 -1.11881,-4.07934 0.37897,-7.00188 1.48821,-2.95742 5.42025,-4.03583 3.96653,-1.08788 6.08487,0.28056 2.11837,1.36844 3.31025,4.90291 l -0.56414,1.72925 z m 1.32969,-7.86247 q -3.13872,0.86084 -1.7122,6.46781 l 5.71808,-1.86817 q -0.765,-2.7893 -1.66113,-3.89313 -0.8961,-1.10383 -2.34475,-0.70652 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:0.89897442;stroke-opacity:1"
+ id="path6895"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 549.49512,766.20104 q 0.45709,-3.46281 3.94375,-4.8702 3.48668,-1.40737 6.16543,0.0995 2.67877,1.50688 4.52032,6.06922 1.8266,4.52527 0.67838,7.87882 -1.11112,3.33859 -5.0429,4.92563 -2.00299,0.8085 -4.06856,0.607 l 2.42548,6.00895 q 1.39723,0.25559 3.14907,-0.10644 l 0.43554,1.50647 -9.90364,3.99757 -0.46549,-1.58068 q 1.11925,-0.75373 1.5545,-1.70585 l -7.47107,-18.50905 q -0.53899,-1.33532 -1.25292,-1.6079 -0.69182,-0.32466 -2.02,0.12518 l -0.47262,-1.49151 q 4.86283,-3.12758 5.64825,-3.74653 l 0.80243,0.0642 z m 3.39548,-2.06074 q -1.59497,0.6438 -1.89344,2.57597 -0.26139,1.91722 0.93639,4.88459 l 3.02435,7.49264 q 1.26385,0.35258 2.74754,-0.24632 4.00596,-1.61698 0.86182,-9.40635 -2.63509,-6.52824 -5.67666,-5.30053 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6897"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 571.04454,758.2325 q -0.84362,0.79617 -0.84561,1.84307 -0.002,1.0469 0.79418,1.89053 0.76872,0.81452 1.98851,0.70834 1.19237,-0.13528 3.82942,-1.30401 5.24503,-2.30999 8.04538,0.65723 1.94926,2.06541 1.47655,4.71159 -0.50016,2.61706 -3.32193,5.28013 -1.13455,1.07074 -3.17378,2.11526 -2.03762,0.98802 -3.43032,1.20238 l -3.01999,-3.19995 2.58449,-3.26416 q 0.9351,0.93254 2.12545,1.84416 1.19199,0.85508 1.75254,1.04106 1.09072,-0.53436 1.90524,-1.30309 0.81453,-0.76873 0.87471,-1.87052 0.0602,-1.10182 -0.736,-1.94544 -1.56491,-1.65815 -4.92105,-0.0859 -3.3545,1.51582 -5.47411,1.4262 -2.09054,-0.11705 -3.7378,-1.86251 -1.6747,-1.77453 -1.152,-4.19286 0.52435,-2.47489 3.20067,-5.0007 1.27998,-1.208 2.80706,-2.15417 1.49958,-0.9753 2.33016,-1.31908 l 0.85962,-0.37128 3.14088,3.91085 -2.26905,2.14145 q -1.3178,-1.39634 -2.83633,-1.72325 -1.54599,-0.35599 -2.79689,0.82456 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6899"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 602.95965,753.31563 q -3.50183,2.62985 -6.58883,4.98822 -3.08701,2.35838 -4.50249,3.53062 l -1.07622,-1.17601 -1.79308,-16.25064 -3.25539,2.48701 q 0.14521,0.88817 1.35432,3.05257 -0.58589,0.62926 -1.17524,1.0795 -0.56126,0.4288 -1.51616,0.74957 l -2.68436,-2.99014 0.38111,-1.65357 q 0.99799,-0.67158 4.75854,-3.54451 3.7886,-2.89437 5.3444,-4.17382 l 1.09124,0.84665 1.70618,16.5441 3.53602,-2.70142 q -0.14592,-1.29633 -1.19282,-3.53926 0.57015,-0.70805 1.04724,-1.07253 0.47707,-0.36447 1.34434,-0.79996 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:0.8924951;stroke-opacity:1"
+ id="path6901"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 603.36575,735.98356 0.52414,0.36726 q 2.75175,1.92805 4.64574,2.08292 1.86125,0.13191 3.37615,-2.03017 1.92808,-2.75176 1.3658,-5.78317 l 2.19573,-0.41519 q 0.40204,2.28421 0.0898,4.26333 -0.28923,1.94637 -1.94187,4.30501 -2.66257,3.80004 -6.14614,4.24086 -3.49338,0.38511 -7.29342,-2.27746 -3.83281,-2.68552 -4.60455,-6.25445 -0.80452,-3.59187 1.81215,-7.3264 2.63962,-3.76728 5.4219,-4.11334 2.78227,-0.34611 6.29417,1.82151 l 0.73318,1.88129 z m -4.3942,-7.66998 q -2.08874,2.98106 3.08384,6.75185 l 3.59406,-5.68714 q -2.62072,-1.83625 -4.16729,-2.13842 -1.54658,-0.30217 -2.51061,1.07371 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6903"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 610.23118,718.0946 q -1.76838,-2.85701 -0.90015,-5.55837 0.88121,-2.75643 3.90826,-4.63007 3.06106,-1.89469 5.55841,-1.88808 0.22354,-0.70287 -0.23961,-1.45113 -0.46315,-0.74825 -1.7102,-0.63496 -0.33685,-0.54419 -0.0242,-1.25516 0.34662,-0.73202 1.1629,-1.23728 0.81631,-0.50521 1.64226,-0.31085 0.83891,0.13933 1.34416,0.95562 0.50522,0.81631 0.41934,2.04553 -0.0729,1.17416 -0.68357,2.16367 2.20578,0.7516 3.7426,3.23446 1.51575,2.44886 0.57949,5.19233 -0.95732,2.70945 -4.18843,4.70941 l -0.54419,0.33684 -0.25117,2.17829 q 0.52313,0.61704 2.39373,-0.5408 l 1.4285,-0.88419 q 3.36719,-2.08417 5.95683,-1.85242 2.5686,0.19775 4.1054,2.68061 1.55787,2.51687 0.30422,5.12751 -1.23263,2.64466 -5.17801,5.08672 -3.94538,2.44205 -6.81685,2.667 -2.85042,0.259 -4.13461,-1.81576 -1.59997,-2.5849 -0.0417,-5.99559 -1.01544,-0.5005 -1.77331,-1.72493 l 1.67484,-3.90626 q -2.43261,0.70598 -4.45215,0.0273 -2.0406,-0.71273 -3.28267,-2.71943 z m 14.59021,5.7875 -3.09508,1.91576 -0.0778,0.33038 q -0.36287,1.54179 0.56343,3.03831 0.9263,1.49653 2.29967,1.5873 1.39443,0.12479 3.43514,-1.13834 4.08142,-2.52627 2.29198,-5.41727 -1.64207,-2.65293 -5.41738,-0.31614 z m -9.75244,-8.68785 q 1.4526,2.34681 2.40001,2.88943 0.98141,0.52156 2.37589,-0.34159 1.3945,-0.86314 1.41239,-2.05027 -0.003,-1.22114 -1.41367,-3.49994 -1.43154,-2.3128 -2.67532,-2.95422 -1.20978,-0.66246 -2.46821,0.11645 -1.25844,0.77893 -1.17106,2.13612 0.0877,1.35716 1.53997,3.704 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6905"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 628.00693,696.7618 q -1.03947,1.70865 0.0409,3.396 1.08041,1.68733 4.63441,3.84943 3.51983,2.14134 5.51498,2.32506 1.99515,0.18372 3.03464,-1.52489 1.03948,-1.70866 -0.0617,-3.36182 -1.11459,-1.70813 -4.63441,-3.84945 -3.51982,-2.14132 -5.51497,-2.32505 -1.97437,-0.21789 -3.01386,1.49076 z m 9.20946,14.03038 q -3.45525,0.75402 -7.62434,-1.7823 -4.16912,-2.53632 -5.05385,-5.93062 -0.91891,-3.41508 1.55504,-7.48168 2.47396,-4.06658 5.9084,-4.78643 3.42107,-0.77482 7.59017,1.76151 4.16912,2.53633 5.08803,5.95141 0.93969,3.38091 -1.53425,7.4475 -2.47397,4.06659 -5.9292,4.82061 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6907"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 217.87343,811.824 q -3.73624,-3.26246 -7.07377,-6.12968 -3.33754,-2.86721 -4.96741,-4.16194 l 1.02552,-1.43927 17.36497,-5.54271 -3.51958,-3.02361 q -0.93753,0.35472 -3.0134,2.15726 -0.83245,-0.5042 -1.46962,-1.05158 -0.60682,-0.52131 -1.19145,-1.49815 l 2.62021,-3.60246 1.90459,0.0542 q 0.97947,0.94691 5.04519,4.4397 4.09607,3.51884 5.87764,4.9439 l -0.661,1.38328 -17.70768,5.51196 3.82298,3.28426 q 1.38452,-0.44532 3.58603,-2.0872 0.91491,0.46962 1.43072,0.9127 0.5158,0.44312 1.20469,1.29859 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6909"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 268.24434,815.27906 q -1.87391,-0.69888 -3.67228,0.55151 -1.79836,1.2504 -4.04903,4.8509 -2.22904,3.56588 -2.37835,5.4313 -0.14931,1.86543 1.72459,2.56432 1.87392,0.69889 3.63481,-0.56549 1.82,-1.28502 4.04902,-4.85091 2.22904,-3.56588 2.37835,-5.4313 0.1868,-1.85144 -1.68711,-2.55033 z m -14.94802,10.60506 q -0.90116,-3.06834 1.73904,-7.29201 2.64019,-4.22367 6.28976,-5.55209 3.6712,-1.36306 8.13112,0.30031 4.45991,1.66334 5.32358,4.71771 0.92279,3.03372 -1.7174,7.25739 -2.64021,4.22366 -6.3114,5.58672 -3.63373,1.37702 -8.09364,-0.28633 -4.45991,-1.66336 -5.36106,-4.7317 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6911"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 288.56829,827.99049 q 0.11552,-1.1631 -1.87448,-1.612 l 0.46745,-1.49375 9.09155,2.05086 -0.46745,1.49377 q -2.19705,-0.3726 -3.58905,0.78958 l -4.08126,2.93383 4.952,10.79427 q 0.989,1.28923 2.63099,2.02867 l -0.43639,1.58277 -7.33567,-1.65478 q 0.0804,-1.21201 -0.47133,-2.48462 l -3.33877,-7.35499 -2.32213,1.69047 -0.39429,3.97056 q 0.82177,0.96447 2.35069,1.6374 l -0.27235,1.53777 -10.06705,-2.27093 0.31933,-1.60917 q 1.35455,0.0185 2.12859,-0.54496 l 1.95958,-19.73247 q 0.14738,-1.48394 -0.34714,-2.12855 -0.4515,-0.67594 -1.80921,-1.06421 l 0.27235,-1.53777 q 0.5192,-0.006 2.1429,0.11435 3.84863,0.21209 5.1331,0.1328 l 0.66252,0.55949 -1.68874,17.00523 6.00044,-4.18211 q 0.35197,-0.33066 0.38383,-0.65151 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6913"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 299.59897,845.90194 q -2.03861,-1.21829 -2.56462,-2.82063 -0.526,-1.60236 0.55516,-3.41151 2.35729,-3.94455 8.42583,-0.88144 l 2.7063,1.37581 1.02799,-1.72017 q 1.24069,-2.07607 1.217,-3.17698 0.006,-1.08327 -1.02824,-1.70125 -1.00454,-0.60031 -1.83176,-0.49092 -0.77994,0.0974 -1.20531,0.80919 -0.40767,0.68214 -0.059,1.57478 -0.59083,0.65318 -1.41805,0.76257 -0.82723,0.10937 -1.71358,-0.42029 -0.88635,-0.52969 -1.16414,-1.54096 -0.27779,-1.01126 0.27163,-1.93068 0.93937,-1.57188 2.94835,-1.57879 2.05625,-0.019 4.68576,1.55248 6.35221,3.79614 3.55183,8.48213 l -4.82093,8.06704 q 0.16551,0.86365 1.29417,1.86015 l -0.73853,0.96741 -5.31812,-3.17815 0.7148,-1.8671 q -3.02523,0.76811 -5.53657,-0.73271 z m 6.70606,-5.04871 q -1.69589,-0.85245 -2.77719,-0.65339 -1.08128,0.19907 -1.75478,1.32609 -1.34702,2.25401 0.42568,3.3134 1.35908,0.81219 3.72252,0.0109 l 1.93191,-3.23276 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:0.86211908;stroke-opacity:1"
+ id="path6915"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 332.63976,853.24019 q -3.20659,-0.33827 -6.04794,-0.59332 -2.84134,-0.25502 -4.17727,-0.27394 l -0.26278,-2.2448 4.76747,-19.15922 -2.99631,-0.26893 q -0.23023,1.08994 -0.24213,4.52167 -0.60551,0.14739 -1.14789,0.0989 -0.5166,-0.0464 -1.24663,-0.56624 l -0.63471,-5.66051 0.847,-1.43845 q 0.88549,0.18051 4.34676,0.49118 3.4871,0.31299 4.95219,0.34349 l 0.39239,1.90307 -4.93016,19.39702 3.25463,0.29213 q 0.37844,-1.53098 0.52312,-4.90032 0.62402,-0.24683 1.06312,-0.20749 0.43912,0.0394 1.15465,0.35606 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:0.90276581;stroke-opacity:1"
+ id="path6917"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 341.50575,856.35649 q -0.7615,3.11873 -1.98062,4.49284 -0.79609,0.89422 -2.07614,1.12597 -1.25692,0.27629 -2.73227,-0.0839 -1.47534,-0.36023 -2.43285,-1.44938 -0.98962,-1.09694 -0.63135,-2.56458 0.25082,-1.02737 0.98046,-1.51013 0.69755,-0.49063 1.62765,-0.26353 0.9301,0.22714 1.21931,1.26969 -0.61548,0.43289 -0.7857,1.13003 -0.33147,1.35756 0.4383,1.54551 0.44903,0.10962 0.89892,-0.48032 0.44097,-0.55326 0.70077,-1.61732 0.25081,-1.02735 0.48842,-2.83551 0.23759,-1.80817 0.61381,-3.34921 l 2.61599,-10.71383 q 0.32251,-1.32088 -0.01,-1.9075 -0.29153,-0.61548 -1.39615,-0.96296 l 0.44557,-1.40747 q 0.44383,-0.008 1.85359,0.0638 3.21335,0.20143 4.32032,0.1218 l 0.46463,0.46335 z m 4.26417,-27.0681 q 2.56582,0.62648 1.9387,3.19487 -0.62712,2.56838 -3.19295,1.94189 -2.53374,-0.61866 -1.90662,-3.18705 0.62712,-2.56838 3.16087,-1.94971 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:0.88280284;stroke-opacity:1"
+ id="path6919"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 352.1685,843.46042 q -1.9e-4,-1.44001 -0.56027,-1.95993 -0.52007,-0.55994 -1.92008,-0.63975 l 0.11979,-1.56002 q 0.52001,-0.11998 2.15995,-0.40028 3.87992,-0.60052 5.15988,-0.96067 l 0.68005,0.35991 0.002,16.67999 q 1.00009,0.75988 2.56014,1.07966 l -0.15983,1.56003 -10.28,10e-4 0.1598,-1.64001 q 1.31996,-0.28021 2.07987,-1.00028 z m 2.87823,-13.44038 q 3.20001,-4.3e-4 3.20037,2.79957 3.7e-4,2.8 -3.19962,2.80042 -3.16001,4.1e-4 -3.16039,-2.79959 -3.5e-4,-2.8 3.15964,-2.8004 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6921"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 412.5439,835.46208 q 6.40131,-0.67915 9.23209,2.25235 2.83077,2.9315 2.67149,9.97764 -0.15929,7.04613 -3.16778,10.59714 -3.00756,3.51053 -9.53378,4.20293 l -6.6199,0.70235 0.16243,-1.67355 q 1.00564,-0.38948 1.77521,-1.35988 l 0.48245,-21.34089 q -0.5465,-0.62878 -1.84518,-1.05656 l 0.16061,-1.59256 z m 0.94247,2.40468 -1.31149,0.13914 -0.49344,21.82683 q 0.27737,0.13216 1.21414,0.0328 3.37241,-0.3578 4.93076,-3.14899 1.58957,-2.79452 1.71957,-8.54481 0.13092,-5.79078 -1.27812,-8.22676 -1.40902,-2.43598 -4.78142,-2.07818 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:0.88792682;stroke-opacity:1"
+ id="path6923"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 441.04227,845.58942 q -1.10864,-3.67649 -3.48303,-2.96049 -0.99571,0.30025 -1.77991,1.16341 -0.7459,0.85161 -0.99334,1.9707 l 3.51067,11.6422 q 1.0887,0.42373 2.60961,0.34111 l 0.29719,1.53977 -9.68906,2.92172 -0.35858,-1.60481 q 1.1562,-0.59933 1.74101,-1.56948 l -3.32591,-11.02945 q -0.41573,-1.37867 -1.10201,-1.71486 -0.69784,-0.37447 -2.06131,-0.0469 l -0.3355,-1.52822 q 5.42115,-2.80455 6.15609,-3.27684 l 0.79328,0.1368 0.97618,2.12882 q 1.40917,-3.22413 4.85587,-4.26348 2.60418,-0.78528 4.60953,0.32295 2.04363,1.09668 2.87512,3.85405 l 3.14113,10.41671 q 1.17684,0.43892 2.76279,0.29491 l 0.2972,1.53977 -9.68907,2.92171 -0.33549,-1.52821 q 1.07961,-0.57623 1.56474,-1.59988 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6925"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 457.58231,848.25542 q -0.0887,-1.43727 -0.67543,-1.85391 -0.5496,-0.46389 -1.9414,-0.28777 l 0.0228,-1.57898 q 0.50774,-0.21483 2.11513,-0.7941 3.80667,-1.30813 5.05251,-1.90144 l 0.6958,0.23501 1.02696,16.64835 q 1.03742,0.57576 2.60249,0.60998 l -0.0624,1.58629 -10.18361,1.87923 0.0575,-1.66615 q 1.29039,-0.52077 1.99894,-1.37833 z m 2.02549,-13.94098 q 3.17001,-0.58497 3.3424,2.20972 0.1724,2.79469 -2.9976,3.37966 -3.13038,0.57766 -3.30277,-2.21703 -0.17239,-2.79469 2.95797,-3.37235 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6927"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 469.8397,857.62052 q -1.61062,-0.66379 -2.10978,-1.9042 -0.49917,-1.24041 0.1957,-2.92642 1.51503,-3.67605 6.27298,-2.16783 l 2.12249,0.68075 0.66068,-1.60309 q 0.79739,-1.93476 0.70813,-2.84458 -0.0659,-0.90019 -0.88291,-1.2369 -0.79365,-0.32708 -1.40803,-0.0952 -0.57963,0.2138 -0.85302,0.87715 -0.262,0.63571 0.0579,1.31722 -0.40148,0.64288 -1.01586,0.87469 -0.61437,0.2318 -1.31465,-0.0568 -0.70027,-0.2886 -0.97459,-1.08067 -0.27433,-0.79208 0.0788,-1.6489 0.60374,-1.46488 2.11259,-1.81306 1.54359,-0.3662 3.62108,0.48998 5.01864,2.06834 3.21883,6.43539 l -3.0984,7.51795 q 0.1804,0.68869 1.09298,1.32348 l -0.49205,0.9289 -4.20164,-1.73164 0.41587,-1.67165 q -2.22296,1.15322 -4.20708,0.3355 z m 4.71053,-5.33382 q -1.32941,-0.41856 -2.12884,-0.069 -0.79944,0.34954 -1.2323,1.39983 -0.86573,2.1006 0.53483,2.67782 1.07375,0.44254 2.79737,-0.62549 l 1.24162,-3.0127 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:0.68682271;stroke-opacity:1"
+ id="path6929"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 564.33692,837.73287 -0.0641,1.66849 -10.31617,4.71035 -0.0605,-1.69568 q 1.25796,-0.86859 1.9761,-2.16321 l -2.26738,-17.33233 -3.56916,22.98149 -2.93117,1.33837 -9.30966,-15.96619 2.12728,16.26145 q 0.9845,0.43314 3.02106,-0.0344 l -0.0641,1.66849 -8.22247,3.75437 -0.0605,-1.69566 q 1.22508,-0.81156 2.01417,-2.18061 l -2.72392,-20.82261 q -0.89278,-0.34894 -2.48812,-0.20892 l -0.0501,-1.61634 8.60315,-3.92819 8.53974,15.01477 2.99457,-20.28132 9.28835,-4.24106 -0.026,1.65112 q -1.42235,1.15382 -2.15606,2.32946 l 2.72397,20.82258 q 0.98448,0.43314 3.02105,-0.0344 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6931"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 577.53933,830.67842 q -2.68556,0.63669 -4.42092,-0.26738 -1.73536,-0.90406 -2.29822,-3.27825 -1.22724,-5.17651 6.31104,-7.5392 l 3.3697,-1.04554 -0.53519,-2.25743 q -0.64591,-2.72447 -1.55672,-3.61848 -0.87187,-0.90323 -2.23412,-0.58028 -1.32331,0.31374 -1.92439,1.07291 -0.5714,0.71099 -0.34993,1.6451 0.21222,0.89519 1.22535,1.35384 0.0361,1.01917 -0.56501,1.7783 -0.60109,0.75914 -1.76873,1.03596 -1.16763,0.27682 -2.21767,-0.33752 -1.05003,-0.61434 -1.33609,-1.8209 -0.48904,-2.06282 1.18019,-3.69182 1.69893,-1.67715 5.16291,-2.49838 8.36805,-1.98389 9.82596,4.16565 l 2.50985,10.58655 q 0.83698,0.58264 2.58441,0.49724 l 0.16728,1.39914 -7.00581,1.66093 -0.91518,-2.12624 q -1.90039,3.08151 -5.20869,3.86584 z m 1.50458,-9.60618 q -2.10375,0.66319 -2.84408,1.702 -0.74033,1.0388 -0.38969,2.5178 0.70128,2.95801 3.03655,2.40436 1.79037,-0.42445 3.11216,-2.9988 l -1.00578,-4.24241 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6933"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 603.75202,805.46433 q -2.35037,-3.03667 -4.27992,-1.54322 -1.73976,1.34656 -1.40542,3.86977 l 7.44281,9.61615 q 1.16823,0.006 2.55896,-0.61491 l 0.82831,1.33158 -8.00291,6.19418 -0.9089,-1.37036 q 0.86533,-0.97325 1.06443,-2.0884 l -7.05109,-9.11002 q -0.88138,-1.13876 -1.64252,-1.20721 -0.78561,-0.10003 -1.94169,0.69355 l -0.85995,-1.30709 q 4.05929,-4.55815 4.57666,-5.26208 l 0.78976,-0.15581 1.67307,1.6388 q 0.13102,-3.49039 2.88302,-5.62041 3.16322,-2.44829 6.30956,-0.73586 -0.29947,-3.9159 2.86374,-6.36419 2.15097,-1.66484 4.45168,-1.37174 2.30073,0.29312 4.0635,2.57063 l 6.65936,8.6039 q 1.25597,-0.011 2.68549,-0.71283 l 0.8283,1.33157 -8.0029,6.1942 -0.85993,-1.30711 q 0.73879,-0.87531 0.88892,-2.05373 l -6.43902,-8.31922 q -2.35036,-3.03668 -4.27992,-1.54322 -0.85406,0.66105 -1.22864,1.81086 -0.36744,1.09371 -0.14921,2.29054 0.50396,0.52041 0.7243,0.80509 l 6.65936,8.60392 q 1.1366,0.0308 2.55897,-0.61491 l 0.82831,1.33157 -7.87638,6.09625 -0.85994,-1.30709 q 0.7388,-0.87531 0.88893,-2.05373 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-opacity:1"
+ id="path6935"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 637.37928,790.74768 q 1.31912,2.1471 1.42505,3.69686 0.10594,1.54978 -0.99534,3.05911 -1.10129,1.50932 -2.31857,1.92208 -1.2173,0.41277 -2.23825,-0.32239 -0.99095,-0.71355 -1.17903,-1.58573 -0.18813,-0.87219 0.40658,-1.68723 0.61673,-0.84522 1.79994,-0.9602 0.028,0.52665 0.65856,0.98074 0.93089,0.67031 1.52559,-0.14474 0.37446,-0.51314 0.11222,-1.34661 -0.24015,-0.86363 -1.26302,-2.47504 l -1.62139,-2.54893 -0.74887,1.02636 -15.39324,-4.45356 q -1.25525,-0.35129 -2.62678,0.96343 l -1.00696,-0.81716 5.77074,-7.90887 0.94086,0.90774 q -0.78491,1.13851 -0.68492,2.13146 l 10.55846,3.04424 -5.865,-9.28835 q -0.95701,0.36995 -2.09229,1.48642 l -0.96287,-0.87755 4.09678,-5.61469 0.96287,0.87756 q -0.90906,1.37145 -0.42466,2.08864 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:40px;font-family:Caladea;-inkscape-font-specification:'Caladea, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#8e5c71;fill-opacity:1;stroke:#42186d;stroke-width:0.92961788;stroke-opacity:1"
+ id="path6937"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/tulip.svg b/tulip.svg
new file mode 100644
index 0000000..327492b
--- /dev/null
+++ b/tulip.svg
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="1094.0452"
+ height="2026.4689"
+ viewBox="0 0 289.46612 536.16989"
+ version="1.1"
+ id="svg8"
+ inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
+ sodipodi:docname="tulip.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.24748737"
+ inkscape:cx="1037.8418"
+ inkscape:cy="1009.6509"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="px"
+ inkscape:snap-global="false"
+ inkscape:window-width="1391"
+ inkscape:window-height="850"
+ inkscape:window-x="49"
+ inkscape:window-y="26"
+ inkscape:window-maximized="1" />
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(-128.02375,287.80524)">
+ <path
+ style="fill:#00b800;fill-opacity:1;stroke:#00b800;stroke-width:28.52468109;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 275.2433,248.3609 0.0926,-353.50174"
+ id="path815"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#00b800;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 262.5261,142.30059 c 0,0 -92.95439,-82.902281 -123.70844,-214.03526 -18.22792,-77.7225 -7.85452,-117.81755 -7.85452,-117.81755 0,0 143.3447,133.52655 131.56296,331.85281 z"
+ id="path817"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cscc" />
+ <path
+ style="fill:#00b800;fill-opacity:1;stroke:none;stroke-width:0.97194529px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 286.08962,211.02747 c 0,0 62.836,-31.418 104.07218,-133.526549 41.23615,-102.108555 23.56348,-190.471741 23.56348,-190.471741 0,0 -133.52655,157.090075 -127.63566,323.99829 z"
+ id="path819"
+ inkscape:connector-curvature="0" />
+ <a
+ id="a823"
+ transform="matrix(3.6734942,0,0,3.6734942,-342.27074,-664.00141)">
+ <path
+ sodipodi:nodetypes="ssscsczcss"
+ inkscape:connector-curvature="0"
+ id="path821"
+ d="m 145.52826,136.23738 c 6.54202,23.63068 40.24121,30.87887 45.83672,-2.27179 1.28,-7.58336 1.99459,-30.79107 0.53454,-31.00327 -2.56645,-0.37299 -8.96303,20.40421 -8.96303,20.40421 0,0 -4.92602,-20.95206 -7.07314,-20.93875 -2.55664,0.0159 -5.87993,20.31249 -5.87993,20.31249 0,0 -6.34741,-20.04599 -8.55263,-19.77795 -2.20522,0.26804 -6.41446,18.70887 -6.41446,18.70887 0,0 -8.54171,-19.97306 -9.62171,-19.24341 -1.9327,1.30574 -0.93167,29.96157 0.13364,33.8096 z"
+ style="fill:#d60000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </a>
+ </g>
+</svg>