summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-11-26 22:25:54 -0800
committerelijah <elijah@riseup.net>2014-11-26 22:25:54 -0800
commitde092da36a61ec1aea4058c7c461ba1dae13a94f (patch)
tree94f24a96d0957ea45f11b42023dd7b3fdf811540
parent61feef62f926ecd742e8d40ed4ca81a31471a29c (diff)
added masthead, reorganized logo, added android black icons
-rw-r--r--.gitignore1
-rw-r--r--Rakefile13
-rw-r--r--icons/leap-small.pngbin10100 -> 0 bytes
-rw-r--r--icons/leap64.pngbin4117 -> 0 bytes
-rw-r--r--icons/logo/leap128.pngbin0 -> 10050 bytes
-rw-r--r--icons/logo/leap256x256.pngbin0 -> 19989 bytes
-rw-r--r--icons/logo/leap64.pngbin0 -> 4123 bytes
-rw-r--r--print/leap.pngbin0 -> 92160 bytes
-rw-r--r--source/android/black/vpn_connected.svg61
-rw-r--r--source/android/black/vpn_disconnected.svg68
-rw-r--r--source/android/black/vpn_progress.svg65
-rw-r--r--source/common/color-wheel.svg184
-rw-r--r--source/leap/kid-jumping-bw.svg (renamed from source/kid-jumping-bw.svg)0
-rw-r--r--source/leap/kid-jumping-silhouette-light.svg (renamed from source/kid-jumping-silhouette-light.svg)0
-rw-r--r--source/leap/kid-jumping.svg (renamed from source/kid-jumping.svg)454
-rw-r--r--source/leap/kid-square.svg640
-rw-r--r--source/masks/android-mask.svg610
-rw-r--r--source/masks/favicon.icobin1150 -> 1406 bytes
-rw-r--r--source/masks/favicon.pngbin1072 -> 926 bytes
-rw-r--r--source/masks/mask-favicon.svg270
-rw-r--r--source/web/masthead/rainbow-masthead-centered.svg124
-rw-r--r--source/web/masthead/rainbow-masthead-large.svg168
-rw-r--r--source/web/masthead/rainbow-masthead-medium.svg155
-rw-r--r--source/web/masthead/rainbow-masthead-small.svg401
-rw-r--r--web/22/vpn_connected.pngbin0 -> 393 bytes
-rw-r--r--web/22/vpn_disconnected.pngbin0 -> 534 bytes
-rw-r--r--web/22/vpn_progress.pngbin0 -> 465 bytes
-rw-r--r--web/masthead/rainbow-masthead-large.pngbin35946 -> 36446 bytes
-rw-r--r--web/masthead/rainbow-masthead-medium.pngbin23148 -> 23015 bytes
-rw-r--r--web/masthead/rainbow-masthead-small.pngbin34286 -> 12715 bytes
30 files changed, 2136 insertions, 1078 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2169409
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+draft/
diff --git a/Rakefile b/Rakefile
index a1eabe3..e448e40 100644
--- a/Rakefile
+++ b/Rakefile
@@ -21,7 +21,9 @@ output_directories = [
'icons/black/22',
'icons/black/32',
'icons/black/64',
+ 'icons/logo',
'web',
+ 'web/22',
'web/32',
'web/64',
'web/128',
@@ -88,14 +90,15 @@ svg_to_raster = [
# icons
['source/icons/white/*.svg', white_icon_target],
['source/icons/black/*.svg', black_icon_target],
- ['source/kid-jumping.svg', {:width => 128, :dest => 'icons/leap-small.png'}],
- ['source/kid-jumping.svg', {:width => 64, :dest => 'icons/leap64.png'}],
+ ['source/leap/kid-square.svg', {:size => 256, :dest => 'icons/logo/leap256x256.png'}],
+ ['source/leap/kid-jumping.svg', {:width => 128, :dest => 'icons/logo/leap128.png'}],
+ ['source/leap/kid-jumping.svg', {:width => 64, :dest => 'icons/logo/leap64.png'}],
# android
['source/android/icons/*.svg', android_icon_target],
['source/android/leap-launcher.svg', android_launcher_target],
['source/android/leap-launcher.svg', {:size => 512, :dest => 'android/leap-icon.png'}],
- ['source/kid-jumping-silhouette-light.svg', android_icon_target],
+ ['source/leap/kid-jumping-silhouette-light.svg', android_icon_target],
['source/android/vpn_disconnected.svg', android_icon_target],
['source/android/vpn_progress.svg', android_icon_target],
['source/android/leap-debug-launcher.svg', android_launcher_target],
@@ -110,16 +113,18 @@ svg_to_raster = [
['source/masks/mask-launcher.svg', {:width => 32, :height => 26, :dest => 'mac/bitmask.tiff'}],
# web
- ['source/kid-jumping-bw.svg', {:size => 16, :dest => 'web/favicon.png'}],
+ ['source/leap/kid-jumping-bw.svg', {:size => 16, :dest => 'web/favicon.png'}],
['source/masks/mask.svg', {:width => 128, :dest => 'web/128'}],
['source/web/masthead/*.svg', {:dest => 'web/masthead'}],
['source/web/icons/*', {:size => 32, :dest => 'web/32'}],
['source/web/icons/*', {:size => 64, :dest => 'web/64'}],
+ ['source/android/black/*.svg', {:size => 22, :dest => 'web/22'}],
# linux
['source/masks/mask-launcher.svg', linux_target],
# print
+ ['source/leap/kid-jumping.svg', {:width => 1000, :dest => 'print/leap.png'}],
['source/letterhead/letterhead.svg', {:width => 2400, :height => 300, :dest => 'print'}]
]
diff --git a/icons/leap-small.png b/icons/leap-small.png
deleted file mode 100644
index bc9d4e7..0000000
--- a/icons/leap-small.png
+++ /dev/null
Binary files differ
diff --git a/icons/leap64.png b/icons/leap64.png
deleted file mode 100644
index 79c582b..0000000
--- a/icons/leap64.png
+++ /dev/null
Binary files differ
diff --git a/icons/logo/leap128.png b/icons/logo/leap128.png
new file mode 100644
index 0000000..d7f30fe
--- /dev/null
+++ b/icons/logo/leap128.png
Binary files differ
diff --git a/icons/logo/leap256x256.png b/icons/logo/leap256x256.png
new file mode 100644
index 0000000..6ef664e
--- /dev/null
+++ b/icons/logo/leap256x256.png
Binary files differ
diff --git a/icons/logo/leap64.png b/icons/logo/leap64.png
new file mode 100644
index 0000000..109e1b9
--- /dev/null
+++ b/icons/logo/leap64.png
Binary files differ
diff --git a/print/leap.png b/print/leap.png
new file mode 100644
index 0000000..e5558f4
--- /dev/null
+++ b/print/leap.png
Binary files differ
diff --git a/source/android/black/vpn_connected.svg b/source/android/black/vpn_connected.svg
new file mode 100644
index 0000000..21b7097
--- /dev/null
+++ b/source/android/black/vpn_connected.svg
@@ -0,0 +1,61 @@
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.48.4 r9939"
+ width="48"
+ height="48"
+ sodipodi:docname="vpn_connected.svg"
+ inkscape:export-filename="/home/elijah/dev/leap/leap_assets/svg/android/vpn_connected-2.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <metadata
+ id="metadata8">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1920"
+ inkscape:window-height="1056"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="19.666667"
+ inkscape:cx="17.189592"
+ inkscape:cy="20.25672"
+ inkscape:window-x="1920"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ d="M 12.187013,12.3125 C 5.4647724,12.3125 0,17.760254 0,24.5 c 0,6.739746 5.4647724,12.21875 12.187013,12.21875 5.305097,0 9.803352,-3.408824 11.47013,-8.15625 l 8.509091,-0.09375 1.745454,-2.09375 1.153247,-0.03125 1.828239,2.182795 1.234013,-0.03125 2.049436,-2.307795 1.122078,0 1.714286,2.21875 2.836364,0 L 48,24.4375 l -2.774026,-4.09375 -21.6,0 C 21.928439,15.65398 17.450952,12.3125 12.187013,12.3125 z m -4.8311688,8.90625 c 1.8370556,0 3.3350648,1.50191 3.3350648,3.34375 0,1.84184 -1.4980092,3.3125 -3.3350648,3.3125 -1.8370556,0 -3.335065,-1.47066 -3.335065,-3.3125 0,-1.84184 1.4980094,-3.34375 3.335065,-3.34375 z"
+ id="path3017"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ssscccccccccccccssssss" />
+</svg>
diff --git a/source/android/black/vpn_disconnected.svg b/source/android/black/vpn_disconnected.svg
new file mode 100644
index 0000000..5d01ed3
--- /dev/null
+++ b/source/android/black/vpn_disconnected.svg
@@ -0,0 +1,68 @@
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.48.4 r9939"
+ width="48"
+ height="48"
+ sodipodi:docname="vpn_disconnected.svg"
+ inkscape:export-filename="/home/elijah/dev/leap/leap_assets/svg/android/vpn_connected-2.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <metadata
+ id="metadata8">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1920"
+ inkscape:window-height="1056"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="13.906434"
+ inkscape:cx="29.443829"
+ inkscape:cy="23.002483"
+ inkscape:window-x="1920"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ d="m 13.963636,12.43775 14.774026,16.0625 3.428572,-0.03125 1.745454,-2.09375 1.153247,-0.03125 1.838961,2.1875 1.215585,-0.03125 2.057142,-2.3125 1.122078,0 1.714286,2.21875 2.836364,0 L 48,24.43775 45.225974,20.344 l -21.6,0 c -1.50261,-4.15125 -5.185991,-7.250238 -9.662338,-7.90625 z M 8.4779221,12.9065 C 3.5680661,14.476688 0,19.058998 0,24.50025 0,31.239996 5.4647724,36.719 12.187013,36.719 c 5.092233,0 9.437072,-3.143121 11.251948,-7.59375 L 8.4779221,12.9065 z M 7.3558442,21.219 c 1.8370556,0 3.3350648,1.50191 3.3350648,3.34375 0,1.84184 -1.4980092,3.3125 -3.3350648,3.3125 -1.8370556,0 -3.335065,-1.47066 -3.335065,-3.3125 0,-1.84184 1.4980094,-3.34375 3.335065,-3.34375 z"
+ id="path3017"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ id="rect2982"
+ width="47.94915"
+ height="4.3220339"
+ x="9.5085192"
+ y="-4.6274133"
+ transform="matrix(0.67862571,0.73448427,-0.73448427,0.67862571,0,0)" />
+</svg>
diff --git a/source/android/black/vpn_progress.svg b/source/android/black/vpn_progress.svg
new file mode 100644
index 0000000..73447cf
--- /dev/null
+++ b/source/android/black/vpn_progress.svg
@@ -0,0 +1,65 @@
+<?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"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.48.4 r9939"
+ width="48"
+ height="48"
+ sodipodi:docname="vpn_progress.svg"
+ inkscape:export-filename="/home/elijah/dev/leap/leap_assets/svg/android/vpn_connected-2.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <metadata
+ id="metadata8">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs6" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1920"
+ inkscape:window-height="1056"
+ id="namedview4"
+ showgrid="false"
+ inkscape:zoom="19.666667"
+ inkscape:cx="-0.75956019"
+ inkscape:cy="18.222822"
+ inkscape:window-x="1920"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2" />
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ d="M 12.1875 12.3125 C 5.4652594 12.3125 0 17.760254 0 24.5 C 0 31.239746 5.4652594 36.71875 12.1875 36.71875 C 17.492597 36.71875 21.989472 33.309926 23.65625 28.5625 L 32.15625 28.46875 L 33.90625 26.375 L 35.0625 26.34375 L 36.90625 28.53125 L 38.125 28.5 L 40.1875 26.1875 L 41.3125 26.1875 L 43 28.40625 L 45.84375 28.40625 L 48 24.4375 L 45.21875 20.34375 L 23.625 20.34375 C 21.927465 15.65398 17.451439 12.3125 12.1875 12.3125 z M 12.21875 15.6875 C 17.099449 15.6875 21.03125 19.650551 21.03125 24.53125 C 21.03125 29.411949 17.099449 33.375 12.21875 33.375 C 7.3380505 33.375 3.375 29.411949 3.375 24.53125 C 3.375 19.650551 7.3380505 15.6875 12.21875 15.6875 z "
+ id="path3017" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:2.50000000000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none;fill-opacity:1"
+ d="m 12.177989,17.872882 -5.3e-5,6.762719 -3.5593143,3.559314"
+ id="path2987"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccc" />
+</svg>
diff --git a/source/common/color-wheel.svg b/source/common/color-wheel.svg
new file mode 100644
index 0000000..743ca50
--- /dev/null
+++ b/source/common/color-wheel.svg
@@ -0,0 +1,184 @@
+<?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="1698.9919"
+ height="1698.5663"
+ id="svg3119"
+ version="1.1"
+ inkscape:version="0.48.4 r9939"
+ sodipodi:docname="New document 2">
+ <defs
+ id="defs3121" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.35"
+ inkscape:cx="849.49597"
+ inkscape:cy="849.28315"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0"
+ inkscape:window-width="1373"
+ inkscape:window-height="831"
+ inkscape:window-x="1920"
+ inkscape:window-y="24"
+ inkscape:window-maximized="0" />
+ <metadata
+ id="metadata3124">
+ <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(474.49597,316.92096)">
+ <g
+ transform="matrix(0.6974809,0.32239125,-0.32239125,0.6974809,-312.64326,188.08994)"
+ id="g3055">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3057"
+ d="m -23.375,-386.90625 c -24.620909,93.60523 -49.274498,187.20196 -73.875,280.8125 365.69907,46.459569 731.39564,92.93903 1097.09375,139.40625 10.87705,0.60738 -1.18757,-5.160158 -5.47916,-6.46212 -339.0464,-138.66381 -678.1105,-277.28481 -1017.14584,-415.97538 -0.197917,0.73958 -0.395833,1.47917 -0.59375,2.21875 z"
+ style="fill:#a0522d;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3059"
+ d="m -96.75,-107.78125 c 0.434028,96.802091 0.895794,193.604119 1.3125,290.40625 C 269.83289,132.85089 635.10424,83.083879 1000.375,33.3125 1011.0069,31.081426 997.84497,28.634057 993.39959,28.492585 630.01755,-17.701158 266.62624,-63.825183 -96.75,-110.0625 c 0,0.76042 0,1.52083 0,2.28125 z"
+ style="fill:#ffa500;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3061"
+ d="m -93.71875,178.375 c -4.844411,1.38527 1.91995,10.52967 1.764754,15.0418 C -67.626493,282.61145 -43.291706,371.80411 -18.96875,461 320.99081,318.42384 660.92514,175.787 1000.875,33.1875 c 9.7381,-4.91182 -3.62232,-3.891366 -7.99841,-2.867442 C 630.67814,79.671706 268.4797,129.02335 -93.71875,178.375 z"
+ style="fill:#f0e68c;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3063"
+ d="M 999.3125,29.5 C 659.3746,172.10322 319.43988,314.71401 -20.5,457.3125 28.661648,541.56971 77.846034,625.81399 126.96875,710.09375 418.44437,484.41113 709.85997,258.65023 1001.3125,32.9375 c 3.5332,-4.634438 5.4802,-4.842875 -2,-3.4375 z"
+ style="fill:#9acd32;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3065"
+ d="M 998.875,29.75 C 707.42748,255.47968 415.97679,481.20526 124.53125,706.9375 193.84745,775.60024 263.14733,844.27972 332.4375,912.96875 555.51729,619.49731 778.60476,326.0317 1001.6875,32.5625 c 2.1913,-5.370076 4.0582,-6.097601 -2.8125,-2.8125 z"
+ style="fill:#228b22;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3067"
+ d="M 998.5,30.125 C 775.41726,323.5942 552.32979,617.05981 329.25,910.53125 413.92308,958.96985 498.63525,1007.3418 583.34375,1055.7188 722.83159,714.49292 862.41349,373.305 1001.9375,32.09375 c 0.7099,-5.745823 2.336,-6.953044 -3.4375,-1.96875 z"
+ style="fill:#3cb371;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3069"
+ d="M 998.25,30.59375 C 858.70299,371.78946 719.19874,713.00284 579.625,1054.1875 c 94.33988,24.8374 188.68195,49.6672 283.03125,74.4687 46.45955,-365.68861 92.93903,-731.37476 139.40625,-1097.06245 -0.787,-5.739317 0.4726,-7.323547 -3.8125,-1 z"
+ style="fill:#7fffd4;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3071"
+ d="M 998.125,31.09375 C 951.63712,396.78009 905.21894,762.4757 858.6875,1128.1562 c 97.56255,-0.4034 195.1249,-0.8778 292.6875,-1.2812 -49.7741,-365.27039 -99.5411,-730.54174 -149.3125,-1095.8125 -2.25476,-5.313952 -1.4165,-7.182336 -3.9375,0.03125 z"
+ style="fill:#008080;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3073"
+ d="m 998.125,31.625 c 49.7521,365.2615 99.5706,730.51433 149.2812,1095.7812 94.1208,-25.6542 188.2266,-51.3637 282.3438,-77.0312 C 1287.1739,710.42584 1144.537,370.50194 1001.9375,30.5625 c -3.56654,-4.629205 -3.25129,-6.532593 -3.8125,1.0625 z"
+ style="fill:#b0e0e6;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3075"
+ d="m 998.25,32.125 c 142.6032,339.92748 285.2141,679.85177 427.8125,1019.7812 84.257,-49.1516 168.5017,-98.32472 252.7813,-147.43745 C 1453.1611,612.99313 1227.4002,321.57753 1001.6875,30.125 c -4.63444,-3.533224 -4.84287,-5.480195 -3.4375,2 z"
+ style="fill:#87ceeb;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3077"
+ d="m 998.5,32.5625 c 225.7297,291.44752 451.4553,582.89821 677.1875,874.34375 C 1744.3502,837.59005 1813.0297,768.29017 1881.7188,699 1588.2473,475.92021 1294.7817,252.83274 1001.3125,29.75 995.94242,27.558657 995.2149,25.691769 998.5,32.5625 z"
+ style="fill:#4682b4;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3079"
+ d="m 998.875,32.9375 c 293.4692,223.08274 586.9348,446.17021 880.4062,669.25 48.4489,-84.68361 96.8316,-169.40598 145.2188,-254.125 C 1683.2638,308.58493 1342.0654,169.01362 1000.8438,29.5 c -5.74587,-0.709872 -6.95309,-2.336039 -1.9688,3.4375 z"
+ style="fill:#1e90ff;fill-opacity:1;stroke:#1e90ff;stroke-width:1;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3081"
+ d="m 994.8125,29.96875 c 11.4966,7.652805 25.3634,10.996868 37.853,16.844491 330.0989,134.994709 660.2155,269.946449 990.3033,404.968009 24.8275,-94.33974 49.6458,-188.68209 74.4374,-283.03125 -365.6886,-46.44926 -731.3748,-92.918179 -1097.0624,-139.375 -1.8438,0.197917 -3.68755,0.395833 -5.5313,0.59375 z"
+ style="fill:#6495ed;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3083"
+ d="m 2093.3438,-119.625 c -364.5105,49.666667 -729.0209,99.333333 -1093.5313,149 -10.63187,2.231077 2.53,4.678487 6.9754,4.819744 363.3716,46.183402 726.7525,92.296936 1090.1183,138.524006 -0.4033,-97.552136 -0.8778,-195.104114 -1.2812,-292.65625 -0.7604,0.10417 -1.5208,0.20833 -2.2812,0.3125 z"
+ style="fill:#191970;fill-opacity:1;stroke:#000000;stroke-width:0.002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3085"
+ d="M 2017,-397.5625 C 1677.7708,-255.20833 1338.5417,-112.85417 999.3125,29.5 c -9.73812,4.91182 3.6223,3.891366 7.9984,2.867442 362.9495,-49.437103 725.8904,-98.94056 1088.8453,-148.336192 -25.6548,-94.16225 -51.3631,-188.31007 -77.0312,-282.46875 -0.7083,0.29167 -1.4167,0.58333 -2.125,0.875 z"
+ style="fill:#0000cd;fill-opacity:1;stroke:#0000cd;stroke-width:1.00300002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3087"
+ d="M 1871.4062,-646.0625 C 1580.5625,-420.79167 1289.7188,-195.52083 998.875,29.75 c -8.13254,7.260714 4.4857,2.868541 8.455,0.729522 337.7758,-141.700552 675.5484,-283.408742 1013.3262,-425.104522 -49.1519,-84.26723 -98.3245,-168.52271 -147.4374,-252.8125 -0.6042,0.45833 -1.2084,0.91667 -1.8126,1.375 z"
+ style="fill:#483d8b;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3089"
+ d="M 1666.375,-848.46875 C 1443.75,-555.60417 1221.125,-262.73958 998.5,30.125 c -5.96653,9.105124 5.0779,1.617258 8.3466,-1.47392 289.6029,-224.31127 579.2088,-448.61856 868.8096,-672.93233 -69.3159,-68.65261 -138.6163,-137.3211 -207.9062,-206 -0.4583,0.60417 -0.9167,1.20833 -1.375,1.8125 z"
+ style="fill:#9370db;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3091"
+ d="M 1415.9688,-990.9375 C 1276.7292,-650.42708 1137.4896,-309.91667 998.25,30.59375 c -3.38128,10.347459 5.3067,0.210327 7.6737,-3.603946 221.6706,-291.611634 443.3461,-583.219674 665.0138,-874.833554 -84.6836,-48.44884 -169.406,-96.83153 -254.125,-145.21875 -0.2812,0.70833 -0.5625,1.41667 -0.8437,2.125 z"
+ style="fill:#8b008b;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3093"
+ d="m 1137.2188,-1063.75 c -46.3646,364.94792 -92.7292,729.89583 -139.0938,1094.84375 -0.60738,10.877052 5.1602,-1.187547 6.4619,-5.47923 138.6535,-339.04637 277.264,-678.1105 415.9443,-1017.14577 -94.3398,-24.83745 -188.6819,-49.66725 -283.0312,-74.46875 -0.094,0.75 -0.1875,1.5 -0.2812,2.25 z"
+ style="fill:#da70d6;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3095"
+ d="m 851.09375,-1064.1875 c -4.99175,0.757 0.53118,10.6955 -0.21364,15.1622 49.08163,360.21679 98.16326,720.43354 147.24489,1080.6503 2.2311,10.631869 4.6785,-2.530026 4.8197,-6.975434 46.1834,-363.382026 92.297,-726.773346 138.5241,-1090.149566 -96.7918,0.4167 -193.58338,0.8785 -290.37505,1.3125 z"
+ style="fill:#c71585;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3097"
+ d="m 850.5625,-1064.125 c -93.37525,25.4678 -186.74851,50.943 -280.125,76.40625 142.57616,339.95956 285.213,679.89389 427.8125,1019.84375 4.9118,9.738119 3.8914,-3.622323 2.8674,-7.998411 C 951.68034,-338.82294 902.17688,-701.7638 852.78125,-1064.7188 c -0.73958,0.198 -1.47917,0.3959 -2.21875,0.5938 z"
+ style="fill:#db7093;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3099"
+ d="m 572.15625,-988.09375 c -83.61798,48.76496 -167.20884,97.57687 -250.84375,146.3125 225.69295,291.47568 451.46437,582.89121 677.1875,874.34375 7.2607,8.13254 2.8685,-4.485717 0.72959,-8.455016 C 857.52901,-313.67874 715.82085,-651.46179 574.125,-989.25 c -0.65625,0.38542 -1.3125,0.77083 -1.96875,1.15625 z"
+ style="fill:#ffb6c1;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3101"
+ d="m 322.875,-842.59375 c -68.13788,68.74755 -136.25608,137.51468 -204.40625,206.25 293.4715,223.09012 586.93704,446.1881 880.40625,669.28125 9.1051,5.966532 1.6173,-5.077925 -1.47392,-8.346631 C 773.08981,-265.01195 548.78252,-554.61786 324.46875,-844.21875 c -0.53125,0.54167 -1.0625,1.08333 -1.59375,1.625 z"
+ style="fill:#b22222;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3103"
+ d="m 119.75,-637.5625 c -48.016345,84.05463 -96.068549,168.08893 -144.0625,252.15625 341.23623,139.48788 682.43459,279.06973 1023.65625,418.59375 10.34745,3.381286 0.2103,-5.306712 -3.60385,-7.673786 C 704.12822,-196.16734 412.52022,-417.85322 120.90625,-639.53125 c -0.38542,0.65625 -0.77083,1.3125 -1.15625,1.96875 z"
+ style="fill:#ff6347;fill-opacity:1;stroke:none" />
+ </g>
+ </g>
+</svg>
diff --git a/source/kid-jumping-bw.svg b/source/leap/kid-jumping-bw.svg
index b0f4f9e..b0f4f9e 100644
--- a/source/kid-jumping-bw.svg
+++ b/source/leap/kid-jumping-bw.svg
diff --git a/source/kid-jumping-silhouette-light.svg b/source/leap/kid-jumping-silhouette-light.svg
index e4a0421..e4a0421 100644
--- a/source/kid-jumping-silhouette-light.svg
+++ b/source/leap/kid-jumping-silhouette-light.svg
diff --git a/source/kid-jumping.svg b/source/leap/kid-jumping.svg
index 7a330fd..ba827cd 100644
--- a/source/kid-jumping.svg
+++ b/source/leap/kid-jumping.svg
@@ -12,13 +12,13 @@
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg3039"
version="1.1"
- inkscape:version="0.48.3.1 r9886"
+ inkscape:version="0.48.4 r9939"
width="795.98914"
height="635.16583"
sodipodi:docname="kid-jumping.svg"
- inkscape:export-filename="/home/elijah/Documents/LEAP/leap.se/kid-jumping-all-color.png"
- inkscape:export-xdpi="28.905836"
- inkscape:export-ydpi="28.905836"
+ inkscape:export-filename="/home/elijah/Desktop/leap.png"
+ inkscape:export-xdpi="299.9664"
+ inkscape:export-ydpi="299.9664"
enable-background="new">
<metadata
id="metadata3045">
@@ -28,7 +28,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
+ <dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
@@ -51,9 +51,9 @@
fit-margin-left="20"
fit-margin-right="20"
fit-margin-bottom="20"
- inkscape:zoom="0.5"
- inkscape:cx="397.25564"
- inkscape:cy="315.76224"
+ inkscape:zoom="0.70710678"
+ inkscape:cx="291.1448"
+ inkscape:cy="207.06586"
inkscape:window-x="104"
inkscape:window-y="33"
inkscape:window-maximized="0"
@@ -123,620 +123,544 @@
transform="translate(20,20)">
<path
style="fill:#cc3f00;fill-opacity:1;stroke:none"
- d="m 190.01976,491.61849 18.18305,86.11032 24.51469,16.49292 z"
+ d="m 188.97984,492.97718 c 6.09562,28.83774 12.17661,57.67871 18.28136,86.51445 8.92741,6.00128 17.85119,12.00802 26.77801,18.01016 -14.56051,-34.98455 -29.12058,-69.96932 -43.68092,-104.95397 -1.32922,-1.30862 -1.16515,-2.45378 -1.37845,0.42936 z"
id="path3292"
inkscape:connector-curvature="0" />
<path
style="fill:#76cc66;fill-opacity:1;stroke:none"
- d="m 499.40254,306.00482 -128.16525,85.8644 29.67373,-87.12712 z"
+ d="m 400.17587,305.4633 c -10.13395,29.76123 -20.2761,59.51966 -30.40491,89.28263 44.01568,-29.49037 88.02652,-58.98798 132.04837,-88.46913 -33.82453,-0.44641 -67.64949,-0.86346 -101.47397,-1.31064 l -0.11667,0.34222 -0.0528,0.15492 z"
id="path3220"
inkscape:connector-curvature="0" />
<path
style="fill:#48bdb2;fill-opacity:1;stroke:none"
- d="m 371.23729,391.86922 70.08051,-3.78813 82.85169,-87.19068 -24.76695,5.11441 z"
+ d="m 524.13434,301.13588 c -8.34618,1.76278 -16.74999,3.3767 -25.0606,5.23132 -43.50445,29.14617 -87.00457,58.29883 -130.51174,87.44094 24.36457,-1.30054 48.72716,-2.64003 73.09154,-3.94326 28.2349,-29.74174 56.49138,-59.46377 84.74054,-89.19225 -0.75324,0.15442 -1.5065,0.30883 -2.25974,0.46325 z"
id="path3226"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#009948;fill-opacity:1;stroke:none"
- d="m 441.3178,388.08109 29.67373,-32.83051 40.40678,17.04661 -50.67797,30.69915 -32.48579,0.36438 z"
+ d="m 470.49923,355.78788 c -14.71347,16.3928 -29.75064,32.49142 -43.86171,49.40939 11.48504,-0.20426 23.04555,-0.12732 34.48375,-0.48584 17.31691,-10.49324 34.63612,-20.9827 51.9516,-31.47829 -14.074,-5.95311 -28.15936,-11.87946 -42.23469,-17.82941 l -0.23921,0.27111 -0.0998,0.11304 z"
id="path3228"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#005004;fill-opacity:1;stroke:none"
- d="m 371.23729,391.86922 -46.72034,15.7839 20.70339,6.12712 34.13382,-3.75052 z"
+ d="m 370.92344,392.26022 c -16.31521,5.51055 -32.63189,11.01671 -48.94614,16.53004 7.73609,2.24605 15.45546,4.64068 23.19631,6.81315 11.72037,-1.28976 23.44225,-2.566 35.16168,-3.86417 -2.9326,-6.55968 -5.87255,-13.11621 -8.79042,-19.6824 l -0.34363,0.11246 -0.2778,0.0909 z"
id="path3230"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#3b6774;fill-opacity:1;stroke:none"
- d="m 371.23729,391.86922 70.08051,-3.78813 -8.84801,11.49929 -53.65623,10.59816 z"
+ d="m 441.29198,388.42994 c -23.73487,1.28459 -47.46986,2.56685 -71.20465,3.85287 2.74877,6.60151 5.48005,13.21039 8.21418,19.81799 18.19108,-3.5924 36.38304,-7.18059 54.57291,-10.77899 3.33549,-4.3189 6.65279,-8.65189 9.98809,-12.97096 -0.52352,0.0264 -1.04702,0.0527 -1.57053,0.0791 z"
id="path3234"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#244812;fill-opacity:1;stroke:none"
- d="m 511.39831,372.29719 41.66949,29.04237 -45.05539,-11.29394 -47.79207,11.70072 z"
+ d="m 511.12949,372.72469 c -17.15426,9.93147 -34.42899,19.69719 -51.50804,29.73213 -2.97574,2.08366 2.30654,0.77968 3.60878,0.39165 14.9533,-3.66124 29.9066,-7.32247 44.8599,-10.98371 15.22756,3.74874 30.40865,7.75648 45.66517,11.3439 3.35189,0.79213 -1.23845,-2.12311 -2.19629,-2.82561 -13.34591,-9.29676 -26.68206,-18.60776 -40.03406,-27.89563 l -0.31004,0.18602 -0.0854,0.0513 z"
id="path3238"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#99ccff;stroke:none"
- d="m 511.39831,372.29719 12.27118,-71.65678 46.44492,4.10169 z"
+ d="m 523.07225,301.47485 c -4.24555,24.76666 -8.48305,49.5347 -12.73367,74.30051 20.47317,-23.56127 40.9495,-47.11981 61.43124,-70.67362 -16.19497,-1.4261 -32.38932,-2.85948 -48.58458,-4.28222 l -0.0614,0.3563 -0.0516,0.29903 z"
id="path3240"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#1f8f96;fill-opacity:1;stroke:none"
- d="m 553.8178,401.08956 13.78636,-13.20696 -23.37535,-16.84812 -32.8305,1.26271 z"
+ d="m 544.34778,371.35754 c -11.69413,0.45373 -23.38882,0.89286 -35.08258,1.35586 14.93259,10.12649 29.85639,20.26596 44.78819,30.3936 4.9443,-4.75016 9.89078,-9.49822 14.84655,-14.23641 -8.10429,-5.83707 -16.2098,-11.67296 -24.30358,-17.52435 l -0.24858,0.0112 z"
id="path3242"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#00c7c7;fill-opacity:1;stroke:none"
- d="m 546.22881,372.53448 23.8856,-67.79238 -58.7161,67.55509 z"
+ d="m 569.74735,305.22603 c -19.9476,22.94261 -39.88269,45.89614 -59.83813,68.83191 12.32316,0.0828 24.6463,0.17248 36.96948,0.24858 8.05041,-23.03404 16.33245,-46.0015 24.24503,-69.07474 0.89195,-2.88492 -0.13725,-0.81183 -1.37638,-0.006 z"
id="path3244"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#004699;fill-opacity:1;stroke:none"
- d="m 570.11441,304.7421 0,0 12.62712,31.5678 1.49576,-26.14831 z"
+ d="m 569.62306,305.97175 c 4.62451,11.26606 8.84204,22.71141 13.72796,33.86232 0.92445,-9.69996 1.16842,-19.46089 1.8304,-29.18465 -5.39329,-2.07132 -10.78179,-4.15525 -16.17979,-6.2143 0.20715,0.51221 0.41429,1.02441 0.62143,1.53663 z"
id="path3246"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#006eff;fill-opacity:1;stroke:none"
- d="m 570.11441,304.7421 -8.20763,22.72882 23.45975,12.46398 z"
+ d="m 569.61176,305.452 c -2.81409,7.78458 -5.62253,15.5712 -8.44016,23.35449 8.61594,4.59594 17.24682,9.16448 25.87412,13.73927 -5.59637,-12.93667 -11.21244,-25.86481 -16.81253,-38.79987 -0.20714,0.56871 -0.41428,1.13741 -0.62143,1.70611 z"
id="path3248"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ffe533;fill-opacity:1;stroke:none"
- d="m 561.90678,327.47092 c 19.4558,8.987 37.41708,19.46851 53.87288,31.45551 l -60.8178,-11.88348 z"
+ d="m 561.38628,328.23026 c -2.41098,6.7941 -4.81732,13.58985 -7.2312,20.38292 21.06031,4.03491 42.07395,8.36402 63.16108,12.22704 2.11834,0.21225 -2.35928,-2.36626 -3.31471,-3.21724 -16.42414,-11.72693 -34.02373,-21.73219 -52.3553,-30.14974 -0.0866,0.25235 -0.17325,0.50468 -0.25987,0.75702 z"
id="path3250"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#815200;fill-opacity:1;stroke:none"
- d="m 554.96186,347.04295 -9.73305,25.49153 41.93221,31.96186 z"
+ d="m 554.43756,347.79967 c -3.31367,8.67768 -6.63238,17.35344 -9.94289,26.0323 14.46782,10.94311 28.78295,22.10731 43.34685,32.91141 2.39534,1.72969 -0.78869,-2.92649 -1.26092,-4.02409 -10.52906,-18.78904 -21.06405,-37.57475 -31.5894,-56.36586 -0.18455,0.48208 -0.3691,0.96416 -0.55364,1.44624 z"
id="path3252"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#8f4124;fill-opacity:1;stroke:none"
- d="m 554.96186,347.04295 84.6017,77.02542 -52.40254,-19.57203 z"
+ d="m 554.48275,348.4098 c 10.79472,19.25646 21.58417,38.51588 32.38219,57.77045 17.81753,6.58589 35.56421,13.40095 53.42269,19.85278 3.26658,1.22326 -0.97697,-2.22424 -1.8399,-3.08313 -27.73054,-25.18742 -55.35728,-50.51155 -83.15269,-75.61354 -2.04337,-1.43855 -1.42486,-0.83222 -0.81229,1.07344 z"
id="path3254"
inkscape:connector-curvature="0" />
<path
style="fill:#ffb526;fill-opacity:1;stroke:none"
- d="m 554.96186,347.04295 133.84746,82.07627 -70.90466,-70.31779 z"
+ d="m 554.74262,348.68098 c 44.67521,27.39567 89.35043,54.79135 134.02564,82.18703 3.48201,1.69971 0.3151,-1.94537 -0.91576,-2.91206 -23.12058,-22.93013 -46.2429,-45.85851 -69.36239,-68.78975 -21.3224,-3.92658 -42.61813,-8.09975 -63.96143,-11.85099 -3.05328,-0.39684 -0.67051,0.29257 0.21394,1.36577 z"
id="path3256"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#cf5300;fill-opacity:1;stroke:none"
- d="m 688.80932,429.11922 -49.24576,-5.05085 -84.6017,-77.02542 z"
+ d="m 554.62964,348.59059 c 28.29322,25.76759 56.60711,51.51352 84.8874,77.29467 17.24076,1.68244 34.45642,3.70387 51.71221,5.18076 -0.017,-0.65502 -3.23422,-2.26543 -4.48927,-3.14195 -43.75056,-26.82865 -87.5011,-53.6573 -131.25165,-80.48596 -1.87583,-0.31799 -2.37449,-1.27449 -0.85869,1.15248 z"
id="path3258"
inkscape:connector-curvature="0" />
<path
style="fill:#592b80;fill-opacity:1;stroke:none"
- d="m 639.56356,424.06837 47.35169,32.19916 1.89407,-27.14831 z"
+ d="m 639.42666,425.78357 c 16.14895,10.98723 32.3038,21.96574 48.44899,32.95842 0.68096,-9.71292 1.36105,-19.42595 2.03376,-29.13944 -17.57656,-1.79545 -35.14634,-3.66798 -52.73119,-5.3782 0.74948,0.51974 1.49896,1.03948 2.24844,1.55922 z"
id="path3260"
inkscape:connector-curvature="0" />
<path
style="fill:#8e51a0;fill-opacity:1;stroke:none"
- d="m 688.80932,429.11922 3.15678,-22.09746 -18.1699,-7.43382 -49.64154,-32.78651 64.65466,62.31779 -1.89407,27.14831 18.84111,7.90254 -16.94704,-35.05085"
+ d="m 623.90222,368.36338 c 21.49772,20.72189 42.99544,41.44377 64.4932,62.16566 -0.63598,9.12188 -1.27623,18.24348 -1.9095,27.36554 7.03259,2.95549 14.06821,5.90394 21.10605,8.84692 -5.89278,-12.21449 -11.80489,-24.41964 -17.70511,-36.63051 1.06957,-7.47977 2.13938,-14.95951 3.20884,-22.43929 -6.48913,-2.81119 -13.24516,-5.11546 -19.57057,-8.23582 -16.37436,-10.73121 -32.62733,-21.72467 -49.07746,-32.29215 -2.43023,-0.87898 -1.10768,-0.25298 -0.54545,1.21965 z"
id="path3262"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#004d99;fill-opacity:1;stroke:none"
- d="m 705.38136,465.29507 7.76227,-1.73964 13.95383,-25.96587 -38.28814,-8.47034 0,0 z"
+ d="m 688.48582,430.55164 c 5.60627,12.25234 11.22563,24.49878 16.8238,36.7548 2.86977,-0.84485 6.24475,-1.03502 8.82429,-2.23715 4.81019,-8.94823 9.61489,-17.89943 14.42851,-26.84581 -13.56271,-2.99575 -27.1251,-5.99312 -40.68677,-8.99379 0.20341,0.44065 0.40675,0.8813 0.61017,1.32195 z"
id="path3264"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#5833ff;fill-opacity:1;stroke:none"
- d="m 688.80932,429.11922 3.15678,-22.09746 14.85778,-4.33635 26.81171,-15.86704 z"
+ d="m 733.64686,387.26617 c -9.05762,5.28984 -18.0189,10.80167 -27.13632,15.95364 -4.95442,1.44379 -9.90323,2.9073 -14.86108,4.33889 -1.15247,8.21291 -2.34338,16.42076 -3.51392,24.63125 15.50356,-14.70759 31.19615,-29.26583 46.56859,-44.0806 1.42158,-2.0335 0.62195,-1.16395 -1.05727,-0.84318 z"
id="path3266"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#007ce1;fill-opacity:1;stroke:none"
- d="m 688.80932,429.11922 44.82627,-42.30085 -2.66313,37.14619 -4.74296,13.79009 z"
+ d="m 733.52255,387.35656 c -15.28739,14.42827 -30.57308,28.85836 -45.86156,43.28547 13.14034,3.03229 26.28126,6.06189 39.42131,9.09549 1.60953,-5.12029 3.79704,-10.12224 5.04575,-15.31925 0.91768,-12.77565 1.82812,-25.55184 2.75035,-38.32717 -0.45191,0.42182 -0.9039,0.84364 -1.35585,1.26546 z"
id="path3268"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#66e9ff;fill-opacity:1;stroke:none"
- d="m 733.63559,386.81837 20.61017,-8.48305 -4.43856,-18.75423 -7.7075,6.09315 -13.0482,23.73729 z"
+ d="m 749.75885,360.04751 c -2.62517,2.26634 -5.70783,4.14552 -8.07192,6.63287 -4.70678,8.56398 -9.40894,17.13052 -14.1188,25.69282 7.21861,-4.58845 15.3818,-7.23303 23.19514,-10.59839 1.39168,-1.13037 5.44469,-0.89959 4.43297,-3.25696 -1.51413,-6.39424 -3.03482,-12.78694 -4.5448,-19.18216 -0.29753,0.23727 -0.59506,0.47455 -0.89259,0.71182 z"
id="path3272"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#99bacc;fill-opacity:1;stroke:none"
- d="m 754.12712,398.32685 -20.49153,-11.50848 -2.41313,33.89619 23.0233,-23.01907"
+ d="m 733.29658,387.83111 c -0.8505,11.95788 -1.70639,23.91538 -2.55348,35.8735 7.86323,-7.86085 15.72795,-15.72021 23.59177,-23.58048 1.23751,1.39865 2.15059,-5.67365 0.47223,-2.51042 -1.50271,1.60918 -3.66871,-1.54987 -5.44838,-1.93249 -5.32838,-2.99205 -10.65086,-5.99468 -15.98304,-8.97999 -0.0264,0.37663 -0.0527,0.75325 -0.0791,1.12988 z"
id="path3274"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#996600;stroke:none"
- d="m 324.51695,407.65312 -74.27013,-68.09709 120.99047,52.31319 z"
+ d="m 249.51848,341.09953 c 24.89426,22.82413 49.79353,45.64284 74.68467,68.47035 16.31717,-5.51959 32.64292,-11.01392 48.95744,-16.54135 -41.08265,-17.71568 -82.11125,-35.59013 -123.22488,-53.21304 -2.11479,-0.3561 -2.27087,-1.09835 -0.41723,1.28404 z"
id="path3278"
inkscape:connector-curvature="0" />
<path
style="fill:#bcc13d;fill-opacity:1;stroke:none"
- d="m 371.23729,391.86922 29.67373,-87.12712 -82.26029,64.39004 z"
+ d="m 400.42444,305.13563 c -27.77705,21.74128 -55.54619,43.4927 -83.32819,65.22763 18.15958,7.8555 36.31996,15.70923 54.48251,23.55787 10.26756,-30.09056 20.51021,-60.18988 30.75517,-90.28822 -0.63649,0.50091 -1.27299,1.00181 -1.90949,1.50272 z"
id="path3280"
inkscape:connector-curvature="0" />
<path
style="fill:#ff9a09;fill-opacity:1;stroke:none"
- d="m 318.65073,369.13214 82.26029,-64.39004 -86.58083,19.18819 -64.08337,15.62574 z"
+ d="m 400.70692,305.00006 c -30.65047,6.86889 -61.36755,13.45469 -91.9755,20.50415 -20.33301,4.95614 -40.66356,9.92247 -60.99814,14.87219 23.62664,10.21181 47.25012,20.43095 70.87699,30.64219 27.89669,-21.94008 55.95909,-43.67892 83.78388,-65.70543 2.28979,-1.51169 -1.08356,-0.16724 -1.68723,-0.3131 z"
id="path3282"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#314e00;fill-opacity:1;stroke:none"
- d="m 310.62712,422.17431 -6.47582,100.09375 65.67876,-107.65786 -59.20294,7.56411"
+ d="m 369.64668,415.00458 c -19.95387,2.54359 -39.90542,5.10624 -59.86072,7.63794 -2.2077,34.50273 -4.54667,68.99893 -6.64366,103.50775 22.77967,-37.04082 45.31047,-74.23775 67.99581,-111.33777 -0.49715,0.064 -0.99428,0.12805 -1.49143,0.19208 z"
id="path3116"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#b98a00;fill-opacity:1;stroke:none"
- d="m 310.62712,422.17431 -31.6199,-56.24833 45.50973,41.72714"
+ d="m 278.17209,367.3239 c 10.71575,19.05676 21.42526,38.11705 32.14491,57.17161 5.01321,-5.27537 10.05775,-10.52113 15.08382,-15.78433 -15.48504,-14.13675 -30.86551,-28.41036 -46.4159,-42.46159 -2.04125,-1.4498 -1.40576,-0.81877 -0.81283,1.07431 z"
id="path3114"
inkscape:connector-curvature="0" />
<path
style="fill:#3e7a00;fill-opacity:1;stroke:none"
- d="m 324.51695,407.65312 -13.88983,14.52119 60.59322,-8.64407 -46.70339,-5.87712"
+ d="m 323.85289,408.24793 c -5.11958,5.34687 -10.22779,10.70466 -15.35499,16.04421 21.02004,-3.04988 42.09362,-5.89562 63.07951,-9.07799 3.47804,-0.86137 -1.89499,-1.57426 -3.21874,-1.65549 -14.75189,-1.86426 -29.50786,-3.69965 -44.2572,-5.5819 l -0.24433,0.26652 -0.004,0.005 z"
id="path3288"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#006600;stroke:none"
- d="m 304.1513,522.26806 -83.21949,20.27338 29.39655,48.42639 z"
+ d="m 303.80892,522.81714 c -28.09679,6.83701 -56.18881,13.69396 -84.28859,20.51851 10.15287,16.74985 20.32325,33.48912 30.484,50.23418 18.60718,-23.75136 37.21305,-47.50381 55.82707,-71.24983 -0.67416,0.16571 -1.34832,0.33143 -2.02248,0.49714 z"
id="path3290"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ff0000;fill-opacity:1;stroke:none"
- d="m 190.01976,491.61849 60.3086,99.34934 -17.61096,3.25393 z"
+ d="m 189.02504,493.11276 c 14.3282,34.41913 28.64515,68.84302 42.9804,103.25916 6.4154,-1.17439 12.82842,-2.36211 19.24175,-3.54778 -20.312,-33.45518 -40.62263,-66.91121 -60.9341,-100.36671 -1.4628,-0.88316 -1.56958,-2.38656 -1.28805,0.65533 z"
id="path3294"
inkscape:connector-curvature="0" />
<path
style="fill:#ff3300;stroke:none"
- d="M 190.01976,491.61849 86.495763,458.79295 195.77186,518.85897 190.01976,491.61849"
+ d="m 85.68677,460.59499 c 36.93191,20.29989 73.86305,40.60117 110.79543,60.9002 -2.04131,-9.74641 -4.1113,-19.48688 -6.16911,-29.22983 -34.68978,-10.9889 -69.37381,-21.99631 -104.061384,-32.99233 -1.916602,0.12195 -2.601144,-0.66108 -0.564936,1.32196 z"
id="path3296"
inkscape:connector-curvature="0" />
<path
style="fill:#990000;stroke:none"
- d="M 195.77186,518.85897 86.495763,458.79295 203.2225,554.14335 z"
+ d="m 85.585081,460.5272 c 39.485999,32.2533 78.966609,64.51322 118.455979,96.76239 -2.63958,-12.55459 -5.29918,-25.105 -7.94301,-37.65869 -36.57301,-20.09539 -73.14005,-40.20176 -109.710758,-60.30138 -1.868537,-0.19843 -2.441859,-1.16937 -0.802211,1.19768 z"
id="path3298"
inkscape:connector-curvature="0" />
<path
style="fill:#333366;stroke:none"
- d="m 86.495763,458.79295 -1.368644,-33.5339 -27.35646,12.39911 z"
+ d="m 84.376116,425.72708 c -9.510224,4.30758 -19.016838,8.62316 -28.529317,12.92576 10.321704,7.59488 20.639384,15.19531 30.969844,22.77825 -0.480903,-12.04856 -0.976891,-24.09654 -1.468835,-36.14466 -0.323897,0.14688 -0.647796,0.29376 -0.971692,0.44065 z"
id="path3302"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#0066cc;stroke:none"
- d="M 86.495763,458.79295 57.770659,437.65816 17,442.20821 z"
+ d="m 57.19135,438.0766 c -13.832514,1.61967 -27.722977,2.93877 -41.519295,4.74616 -3.311485,0.48855 1.986211,1.54319 3.06833,1.81844 22.61907,5.34862 45.202555,10.88873 67.84388,16.1176 3.487139,0.90049 -1.154702,-2.05419 -2.156559,-2.88386 C 75.441807,451.26973 66.466027,444.65042 57.473818,438.054 l -0.282468,0.0226 z"
id="path3304"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#99ccff;stroke:none"
- d="m 15.75,458.54295 70.745763,0.25 L 44.5,469.6277 27,462.54295"
+ d="m 13.035877,459.32952 c 5.925417,2.97978 12.514556,4.44362 18.547457,7.2336 4.197466,1.59418 8.365481,3.59608 12.58057,4.94645 14.113965,-3.69896 28.310681,-7.18503 42.373098,-11.01662 3.313459,-1.26812 -2.089474,-1.35755 -3.392431,-1.26442 -22.767617,-0.0441 -45.547682,-0.24606 -68.307523,-0.19134 -0.600392,0.0975 -1.200779,0.19489 -1.801171,0.29233 z"
id="path3306"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#9999ff;stroke:none"
- d="M 86.495763,458.79295 78.055085,481.50058 41.25,467.3777"
+ d="m 85.901446,459.25044 c -15.934914,3.02092 -31.870446,6.03859 -47.804965,9.06159 13.299429,5.1147 26.605023,10.21338 39.907145,15.32109 3.062801,-8.20351 6.096016,-16.41811 9.163278,-24.61996 -0.421821,0.0791 -0.843638,0.15818 -1.265458,0.23728 z"
id="path3308"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#666699;stroke:none"
- d="m 86.495763,458.79295 21.646507,42.24486 -32.325822,-16.6145"
+ d="m 85.370405,459.67979 c -3.649779,8.76017 -7.297268,17.52129 -10.948478,26.28087 11.654922,5.98412 23.305422,11.97687 34.958293,17.96499 -7.80893,-15.22423 -15.606949,-30.45406 -23.410982,-45.6808 -0.19961,0.47831 -0.399223,0.95663 -0.598833,1.43494 z"
id="path3310"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#702700;fill-opacity:1;stroke:none"
- d="m 203.2225,554.14335 -116.726737,-95.3504 21.646507,42.24486 99.65275,71.09982 z"
+ d="m 85.393002,460.28992 c 7.320495,14.16465 14.46996,28.48066 21.896958,42.55105 33.79705,24.117 67.60401,48.22019 101.39489,72.34583 -1.81258,-6.74472 -3.28674,-13.71027 -5.32171,-20.31514 -39.17041,-31.9428 -78.23808,-64.02348 -117.472693,-95.88013 -2.269901,-1.82321 -1.00766,-0.32989 -0.497445,1.29839 z"
id="path3314"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#00d73a;fill-opacity:1;stroke:none"
- d="m 190.01976,491.61849 117.61689,-23.2219 -86.70484,74.14485 z"
+ d="m 307.33413,468.86567 c -39.59815,7.81956 -79.19762,15.63241 -118.79494,23.45618 10.63606,17.53631 21.29563,35.05843 31.93024,52.59563 29.8601,-25.52164 59.71812,-51.04586 89.5651,-76.58286 -0.90013,0.17701 -1.80027,0.35404 -2.7004,0.53105 z"
id="path3316"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#009900;stroke:none"
- d="m 307.63665,468.39659 -3.48535,53.87147 -83.21949,20.27338 z"
+ d="m 306.99517,469.02385 c -29.45287,25.25533 -59.05217,50.34587 -88.4132,75.70453 0.26403,0.53123 3.90256,-0.74628 5.39936,-0.9876 26.89561,-6.54824 53.78982,-13.10224 80.6863,-19.64688 1.21262,-18.72578 2.42054,-37.45188 3.63819,-56.17733 -0.43688,0.36909 -0.87376,0.73819 -1.31065,1.10728 z"
id="path3318"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#009922;fill-opacity:1;stroke:none"
- d="m 310.62712,422.17431 -75.92496,61.99229 72.93449,-15.77001 z"
+ d="m 310.01193,422.72162 c -25.98677,21.29442 -52.12796,42.40616 -78.01779,63.81527 25.42463,-5.27239 50.77454,-10.92728 76.1648,-16.37187 1.039,-16.165 2.0983,-32.32871 3.12975,-48.49419 -0.42559,0.35026 -0.85118,0.70053 -1.27676,1.05079 z"
id="path3320"
inkscape:connector-curvature="0" />
<path
style="fill:#8a9966;fill-opacity:1;stroke:none"
- d="m 310.62712,422.17431 -61.19083,0.012 -1.99564,-45.0532 z"
+ d="m 246.46783,378.22718 c 0.67902,15.26455 1.34919,30.5295 2.03377,45.79379 21.40734,-0.003 42.81469,-0.008 64.22203,-0.0112 -22.11009,-15.7511 -44.2127,-31.51269 -66.3236,-47.26264 0.0226,0.49337 0.0452,0.98675 0.0678,1.48013 z"
id="path3322"
inkscape:connector-curvature="0" />
<path
style="fill:#dcff99;fill-opacity:1;stroke:none"
- d="m 249.43629,422.18631 31.11532,24.54448 30.07551,-24.55648 z"
+ d="m 249.19082,422.57473 c -3.9833,-0.61057 0.3224,1.66381 1.53473,2.85607 9.87638,7.79236 19.74752,15.59143 29.62719,23.3796 10.71384,-8.75038 21.42671,-17.50195 32.14492,-26.24697 -21.10228,0.003 -42.20456,0.008 -63.30684,0.0113 z"
id="path3324"
inkscape:connector-curvature="0" />
<path
style="fill:#516633;fill-opacity:1;stroke:none"
- d="m 249.43629,422.18631 -3.79276,24.34808 34.90808,0.1964"
+ d="m 248.479,423.18487 c -1.31244,8.40597 -2.61071,16.8142 -3.93196,25.21878 12.63202,0.0614 25.26396,0.1466 37.89597,0.21467 -11.25961,-8.88165 -22.51557,-17.76795 -33.77193,-26.65372 -0.064,0.40676 -0.12805,0.81351 -0.19208,1.22027 z"
id="path3326"
inkscape:connector-curvature="0" />
<path
style="fill:#57ea00;fill-opacity:1;stroke:none"
- d="m 245.64353,446.53439 -10.94137,37.63221 45.84945,-37.43581"
+ d="m 244.70522,447.47715 c -3.87304,13.30575 -7.73496,26.61476 -11.6151,39.91845 16.41809,-13.41119 32.84574,-26.8107 49.2625,-40.22352 -12.50018,-0.0697 -25.00033,-0.14956 -37.50051,-0.21467 l -0.0984,0.34793 -0.0486,0.17181 z"
id="path3328"
inkscape:connector-curvature="0" />
<path
style="fill:#ffea00;fill-opacity:1;stroke:none"
- d="m 400.91102,304.7421 -97.86017,-20.83474 11.27934,40.02293 z"
+ d="m 302.17061,285.03518 c 3.83157,13.58072 7.65286,27.16436 11.49082,40.74325 29.45544,-6.60933 58.97522,-12.96708 88.40037,-19.69038 2.98143,-0.67154 -2.7011,-1.29989 -3.87892,-1.70146 -32.10949,-6.8349 -64.21944,-13.66759 -96.32864,-20.50388 0.10546,0.38416 0.21091,0.76831 0.31637,1.15247 z"
id="path3330"
inkscape:connector-curvature="0" />
<path
style="fill:#002681;fill-opacity:1;stroke:none"
- d="m 400.91102,304.7421 -97.86017,-20.83474 11.68008,-41.66949 z"
+ d="m 313.86481,242.92478 c -3.9651,14.15376 -7.93626,28.30584 -11.89758,42.46067 33.15632,7.03286 66.29199,14.20016 99.46882,21.11416 3.57303,0.872 -1.15303,-1.99743 -2.19047,-2.87239 -28.3668,-20.56839 -56.72804,-41.14446 -85.09831,-61.70803 -0.0942,0.3352 -0.18831,0.67039 -0.28246,1.00559 z"
id="path3346"
inkscape:connector-curvature="0" />
<path
style="fill:#3d0064;fill-opacity:1;stroke:none"
- d="m 400.91102,304.7421 10.26583,-31.35622 -96.44592,-31.14801 z"
+ d="m 314.13597,243.7044 c 29.03487,21.05211 58.06276,42.11387 87.10198,63.15994 3.62461,-10.99947 7.21304,-22.01096 10.82419,-33.01491 -32.54605,-10.47348 -65.05747,-21.10808 -97.62949,-31.46758 -2.45401,-0.44975 -1.63369,-0.15391 -0.29668,1.32255 z"
id="path3348"
inkscape:connector-curvature="0" />
<path
style="fill:#0015a3;fill-opacity:1;stroke:none"
- d="m 411.17685,273.38588 -96.44592,-31.14801 116.53922,-40.1566 -4.49878,33.47955 z"
+ d="m 431.02143,202.21542 c -39.57875,13.64345 -79.16335,27.27002 -118.73845,40.92403 33.09304,10.69157 66.18555,21.38492 99.28202,32.06583 5.26744,-13.0268 10.86556,-25.96178 15.95669,-39.03393 1.53634,-11.44284 3.06728,-22.88641 4.60701,-34.32879 -0.36909,0.12429 -0.73818,0.24858 -1.10727,0.37286 z"
id="path3350"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#37de2b;fill-opacity:1;stroke:none"
- d="m 245.62542,313.22143 68.70477,10.70886 -64.08337,15.62574 -9.71369,-8.43988 z"
+ d="m 244.67132,313.99385 c -1.73866,6.12429 -3.48788,12.24563 -5.22001,18.37175 3.46351,2.98635 6.90868,5.99432 10.36094,8.9938 21.72708,-5.35766 43.51679,-10.50634 65.20699,-15.98544 3.47083,-0.80457 -1.99354,-1.28907 -3.23711,-1.5558 -22.30985,-3.47915 -44.62096,-6.95029 -66.93002,-10.43445 l -0.10271,0.34667 -0.0781,0.26347 z"
id="path3362"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#b5cc33;fill-opacity:1;stroke:none"
- d="m 303.05085,283.90736 11.27934,40.02293 -68.70477,-10.70886 z"
+ d="m 302.54347,284.19907 c -19.82907,10.12411 -39.65994,20.24467 -59.48786,30.37101 24.04095,3.74089 48.08168,7.48369 72.11984,11.24225 -3.95242,-14.00243 -7.88389,-28.01089 -11.85237,-42.00871 -0.25987,0.13182 -0.51974,0.26363 -0.77961,0.39545 z"
id="path3364"
inkscape:connector-curvature="0" />
<path
style="fill:#009900;stroke:none"
- d="m 303.05085,283.90736 -57.42543,29.31407 16.26336,-15.89824 -7.45405,-18.4496 7.56364,-24.20345 z"
+ d="m 261.0771,255.35339 c -2.5502,8.16132 -5.09685,16.32375 -7.64926,24.48437 2.46945,6.08206 4.91704,12.1732 7.37809,18.25876 -5.46632,5.53587 -11.35942,10.71287 -16.55628,16.47529 -1.05183,1.88258 3.49983,-0.83709 4.67009,-1.37453 18.44703,-9.41753 36.8942,-18.83478 55.34113,-28.25249 -14.29982,-10.17572 -28.58993,-20.36514 -42.89,-30.5405 -0.098,0.31638 -0.19586,0.63274 -0.29377,0.9491 z"
id="path3366"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#007448;fill-opacity:1;stroke:none"
- d="m 303.05085,283.90736 -26.2746,-61.58697 -14.77788,32.34975 z"
+ d="m 275.91234,222.86952 c -5.01685,10.97851 -10.03201,21.95779 -15.04992,32.93582 14.55588,10.37843 29.12384,20.73996 43.68093,31.11673 -9.3158,-21.84504 -18.63067,-43.69048 -27.95308,-65.53268 -0.22598,0.49337 -0.45196,0.98675 -0.67793,1.48013 z"
id="path3370"
inkscape:connector-curvature="0" />
<path
style="fill:#003399;fill-opacity:1;stroke:none"
- d="m 314.73093,242.23787 -37.95468,-19.91748 26.2746,61.58697 11.68008,-41.66949"
+ d="m 275.90104,223.45705 c 9.04141,21.1841 18.06333,42.37656 27.11698,63.55541 4.13434,-14.75643 8.2711,-29.51219 12.40601,-44.26846 -13.43995,-7.04662 -26.8716,-14.10911 -40.3139,-21.15124 0.26363,0.62143 0.52727,1.24286 0.79091,1.86429 z"
id="path3372"
inkscape:connector-curvature="0" />
<path
style="fill:#009da9;fill-opacity:1;stroke:none"
- d="m 314.73093,242.23787 3.15678,-49.24577 -41.11146,29.32829 z"
+ d="m 317.31092,193.22163 c -14.04169,10.01286 -28.07432,20.03849 -42.1217,30.04334 13.33892,7.01064 26.67785,14.02181 40.03143,21.00436 1.09859,-17.31022 2.22905,-34.61844 3.32183,-51.92901 -0.41052,0.29377 -0.82104,0.58754 -1.23156,0.88131 z"
id="path3374"
inkscape:connector-curvature="0" />
<path
style="fill:#006aaf;fill-opacity:1;stroke:none"
- d="M 314.73093,242.23787 360.36632,226.51302 317.88771,192.9921 z"
+ d="m 317.00585,193.76396 c -1.07655,16.7975 -2.15787,33.5947 -3.23144,50.39238 15.99671,-5.50573 31.99553,-11.0056 47.98575,-16.53005 -14.89408,-11.73916 -29.77755,-23.49182 -44.66391,-35.24077 -0.0301,0.45948 -0.0602,0.91897 -0.0904,1.37844 z"
id="path3376"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#62c7e3;fill-opacity:1;stroke:none"
- d="m 317.88771,192.9921 -33.25238,-24.52603 -7.85908,53.85432 41.11146,-29.32829"
+ d="m 283.71977,169.14401 c -2.70569,18.53348 -5.39911,37.06876 -8.11249,55.6011 14.45212,-10.30675 28.89821,-20.62201 43.35325,-30.92465 -11.68448,-8.63271 -23.3772,-17.25438 -35.07128,-25.87411 -0.0565,0.39922 -0.11299,0.79844 -0.16948,1.19766 z"
id="path3888"
inkscape:connector-curvature="0" />
<path
style="fill:#64327c;fill-opacity:1;stroke:none"
- d="m 317.88771,192.9921 113.38244,9.08917 -70.90383,24.43175 -42.47861,-33.52092"
+ d="m 317.27702,194.3741 c 14.28555,11.27215 28.56971,22.54607 42.85612,33.81713 24.00134,-8.31209 48.06402,-16.47257 72.02137,-24.89607 3.46676,-1.09759 -2.04905,-1.12144 -3.36215,-1.31575 -37.79695,-3.02884 -75.59412,-6.05482 -113.39092,-9.08545 0.62519,0.49339 1.25039,0.98676 1.87558,1.48014 z"
id="path3378"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#56217b;fill-opacity:1;stroke:none"
- d="m 439.67648,195.17142 -21.01204,-28.83509 -100.77673,26.65577 113.38244,9.08917 z"
+ d="m 418.45723,166.42101 c -33.73968,8.96389 -67.53207,17.77901 -101.23882,26.83585 -3.6663,0.98682 1.21918,1.38159 2.6165,1.44866 37.22038,2.98131 74.44056,5.96509 111.66107,8.94484 3.04764,-2.5202 6.11227,-5.02003 9.16327,-7.53626 -7.23321,-9.9458 -14.47946,-19.88233 -21.72747,-29.81737 l -0.34976,0.0916 -0.12479,0.0327 z"
id="path3382"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#003bcb;fill-opacity:1;stroke:none"
- d="m 418.66444,166.33633 -29.20655,-36.59345 -41.78218,55.14597 z"
+ d="m 388.82064,130.03908 c -14.3679,18.96331 -28.73851,37.92455 -43.10469,56.88915 24.72401,-6.46818 49.45198,-12.9213 74.17622,-19.38864 -10.16249,-12.75005 -20.33979,-25.48831 -30.50659,-38.23493 -0.18832,0.24481 -0.37663,0.48961 -0.56494,0.73442 z"
id="path3386"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#00bbe7;fill-opacity:1;stroke:none"
- d="m 347.67571,184.88885 -9.90029,-50.29717 -14.52118,38.82839 -5.36653,19.57203 z"
+ d="m 336.97073,135.07831 c -4.93954,13.45713 -10.21247,26.80703 -14.94671,40.33017 -1.77226,6.47687 -3.56201,12.949 -5.32323,19.42886 10.56595,-2.86758 21.13119,-5.73809 31.69296,-8.62093 -3.50233,-17.84599 -7.01475,-35.69005 -10.53043,-53.53343 -0.29753,0.79845 -0.59506,1.59689 -0.89259,2.39533 z"
id="path3398"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#0058a7;fill-opacity:1;stroke:none"
- d="m 337.77542,134.59168 9.90029,50.29717 41.78218,-55.14597 z"
+ d="m 389.32908,129.75661 c -17.51289,1.64373 -35.02705,3.27424 -52.53914,4.92624 3.44653,17.57917 6.90702,35.15572 10.37225,52.73122 14.60739,-19.26382 29.20109,-38.53804 43.8052,-57.80435 -0.5461,0.049 -1.09221,0.098 -1.63831,0.14689 z"
id="path3400"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#5e7bcb;fill-opacity:1;stroke:none"
- d="m 390.51855,130.09643 -29.55981,-23.53686 -23.18332,28.03211 51.68247,-4.8488"
+ d="m 360.30263,106.79757 c -8.11002,9.80248 -16.2095,19.61369 -24.32619,29.41062 17.78134,-1.65505 35.56075,-3.33093 53.34134,-4.99404 2.80318,1.18088 3.72226,0.45915 1.02741,-1.39951 -9.86357,-7.85311 -19.72694,-15.70645 -29.59062,-23.55941 l -0.23146,0.27776 -0.22048,0.26458 z"
id="path3402"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#a5a5d3;fill-opacity:1;stroke:none"
- d="m 360.60519,108.68089 -47.24526,2.60643 24.41549,23.30436 22.47621,-26.26434"
+ d="m 359.6021,108.56017 c -8.68488,0.83059 -17.68379,1.02518 -26.48941,1.61121 -7.20689,0.3966 -14.41362,0.79625 -21.62063,1.19088 8.73842,8.33772 17.47793,16.67428 26.21308,25.01541 7.49551,-8.74517 14.98139,-17.49863 22.47319,-26.24697 3.38417,1.08722 0.52181,-2.70017 -0.54098,-1.61126 l -0.0352,0.0408 z"
id="path3404"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#bcff00;fill-opacity:1;stroke:none"
- d="m 337.77542,134.59168 -113.47757,-10.03281 43.48904,21.6914 z"
+ d="m 221.79138,124.64958 c 6.49517,3.98107 13.59933,6.91668 20.33899,10.47803 8.52525,4.1473 16.99994,8.69438 25.55649,12.59399 23.46439,-3.97015 46.99482,-7.71619 70.41798,-11.82631 3.40057,-0.99251 -1.96697,-1.52666 -3.26964,-1.54621 -37.03753,-3.24318 -74.07205,-6.60927 -111.11146,-9.77565 -0.64412,0.0254 -1.28824,0.0508 -1.93236,0.0762 z"
id="path3406"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ffff00;stroke:none"
- d="m 337.77542,134.59168 -69.98853,11.65859 21.09734,19.50732 z"
+ d="m 337.52437,134.61507 c -23.84431,3.97216 -47.687,7.95417 -71.53232,11.92017 7.53726,6.97054 15.07759,13.93778 22.62008,20.90266 16.73808,-10.75125 33.64015,-21.27204 50.27269,-32.17216 2.47206,-1.38539 -0.47358,-0.51787 -1.36045,-0.65067 z"
id="path3408"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#66cc33;stroke:none"
- d="m 337.77542,134.59168 -22.39406,-22.875 -91.08351,12.84219 z"
+ d="m 315.11896,111.71252 c -30.40113,4.28599 -60.80228,8.57198 -91.20342,12.85797 -3.76218,0.9067 0.9907,1.70773 2.55499,1.65779 37.68843,3.32932 75.37609,6.66736 113.06501,9.9912 -8.01434,-8.19171 -16.03199,-16.38028 -24.05502,-24.56345 l -0.35722,0.0558 -0.004,7.2e-4 z"
id="path3410"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#009900;stroke:none"
- d="m 299.21339,115.36519 -86.61978,-23.56472 53.93906,27.87649 z"
+ d="m 210.58303,91.815443 c 3.22501,2.938562 7.62514,4.219257 11.3464,6.457702 14.74747,7.625245 29.49757,15.245445 44.24339,22.873825 11.44065,-1.62066 22.95796,-2.82518 34.35299,-4.68936 1.7662,-0.59729 -3.29663,-1.49002 -4.44401,-1.9275 -27.86309,-7.58285 -55.72619,-15.165708 -83.58928,-22.748562 -0.6365,0.01128 -1.27299,0.02259 -1.90949,0.03388 z"
id="path3412"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#00d96c;fill-opacity:1;stroke:none"
- d="m 242.7729,122.42334 23.75977,-2.74638 -53.93906,-27.87649 27.55569,30.92614"
+ d="m 211.7581,92.967915 c 9.28133,10.412495 18.55232,20.834345 27.84009,31.241015 9.71829,-1.10477 19.4333,-2.24218 29.15075,-3.35573 -18.94422,-9.72783 -37.79028,-19.68468 -56.8024,-29.256771 -2.80893,-1.271674 -0.72779,0.08623 -0.18844,1.371486 z"
id="path3414"
inkscape:connector-curvature="0" />
<path
style="fill:#4dd1ff;fill-opacity:1;stroke:none"
- d="m 176.14831,108.07473 49.72312,-1.37237 -38.3535,-27.285829 z"
+ d="m 186.52802,79.816183 c -3.93155,9.905392 -7.86642,19.809465 -11.79588,29.715677 17.68232,-0.49257 35.36493,-0.97587 53.04758,-1.45753 -13.63725,-9.702328 -27.27572,-19.402915 -40.91274,-29.105553 -0.11299,0.282469 -0.22598,0.564938 -0.33896,0.847406 z"
id="path3416"
inkscape:connector-curvature="0" />
<path
style="fill:#a8fee7;fill-opacity:1;stroke:none"
- d="m 176.14831,108.07473 26.3626,19.01463 23.36052,-20.387"
+ d="m 225.57646,106.68459 c -17.30968,0.47386 -34.61922,0.95333 -51.92901,1.42363 9.53319,6.87979 19.06892,13.75612 28.59711,20.64281 8.43804,-7.38525 16.89786,-14.74581 25.34307,-22.12294 -0.67039,0.0189 -1.34078,0.0376 -2.01117,0.0565 z"
id="path3418"
inkscape:connector-curvature="0" />
<path
style="fill:#33ccca;fill-opacity:1;stroke:none"
- d="m 202.51091,127.08936 37.63839,-4.36275 -14.27787,-16.02425 z"
+ d="m 225.12451,106.86536 c -8.38406,7.3136 -16.76471,14.63112 -25.15099,21.94216 13.79711,-1.58864 27.59317,-3.18746 41.38728,-4.80197 -5.23212,-5.87086 -10.46091,-11.74469 -15.69396,-17.61473 l -0.27209,0.23809 -0.27024,0.23645 z"
id="path3420"
inkscape:connector-curvature="0" />
<path
style="fill:#0083d7;stroke:none"
- d="m 212.59361,91.80047 -25.07568,-12.383939 38.3535,27.285829"
+ d="m 186.77659,80.674887 c 12.92968,9.119677 25.7394,18.467108 38.7439,27.444763 3.08228,1.57984 -0.37949,-2.50996 -1.30329,-3.3574 -3.88081,-4.28991 -7.65348,-8.719892 -11.6004,-12.924209 -8.49949,-4.110513 -16.90778,-8.51832 -25.46399,-12.443968 -2.10709,-0.54717 -1.2731,0.0014 -0.37622,1.280814 z"
id="path3422"
inkscape:connector-curvature="0" />
<path
style="fill:#0099ff;stroke:none"
- d="m 176.14831,108.07473 -27.98788,5.72608 5.24602,-8.41974 34.11148,-25.964539 z"
+ d="m 186.75399,79.511117 c -11.42913,8.741666 -22.9596,17.391702 -34.32557,26.190473 -2.04858,3.2881 -4.10007,6.57438 -6.14651,9.8638 10.01777,-2.05473 20.03666,-4.10412 30.05464,-6.15781 4.14799,-10.494287 8.32494,-20.977409 12.48511,-31.466988 -0.68923,0.523509 -1.37845,1.047016 -2.06767,1.570525 z"
id="path3424"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#508bff;fill-opacity:1;stroke:none"
- d="m 176.14831,108.07473 -27.98788,5.72608 11.51474,11.92107 42.83574,1.36748 z"
+ d="m 175.65863,108.06303 c -9.76916,2.00599 -19.5422,3.99322 -29.30893,6.01093 4.2232,4.35278 8.43155,8.72007 12.64329,13.08394 15.18157,0.49432 30.36371,0.97231 45.54522,1.46883 -9.51768,-6.8781 -19.04395,-13.74431 -28.56322,-20.62019 l -0.31636,0.0565 z"
id="path3426"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#9b2700;fill-opacity:1;stroke:none"
- d="m 462.6481,163.43433 86.43037,-25.99788 -85.43178,8.36885 z"
+ d="m 463.61829,145.83471 c -1.46762,0.94127 -0.4663,4.229 -0.96384,6.09254 -0.2504,4.42455 -0.50766,8.84871 -0.75356,13.2735 29.17185,-8.79632 58.35508,-17.55537 87.53132,-26.33736 3.48802,-1.51518 -1.32909,-1.53867 -2.79001,-1.16547 -27.67464,2.71226 -55.34927,5.42453 -83.02391,8.13679 z"
id="path3444"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#666699;stroke:none"
- d="m 549.34364,137.70162 62.12458,-52.040026 10.42544,10.628495 z"
+ d="m 611.23632,85.781917 c -20.73695,17.369933 -41.47391,34.739863 -62.21086,52.109783 -2.55347,2.77832 1.87485,0.87027 3.02289,-0.0682 23.75396,-13.56468 47.51976,-27.10884 71.26634,-40.686341 C 619.455,93.21191 615.6109,89.271304 611.74478,85.352525 l -0.27627,0.23327 -0.23219,0.196082 z"
id="path3446"
inkscape:connector-curvature="0" />
<path
style="fill:#a70000;fill-opacity:1;stroke:none"
- d="m 470.33351,120.70537 79.26183,0.62783 -86.03703,24.38372"
+ d="m 469.67441,121.23736 c -2.36724,8.75698 -4.74863,17.51018 -7.1069,26.26957 29.22086,-8.31976 58.51114,-16.47586 87.68076,-24.92589 3.39749,-1.29966 -2.02815,-1.33418 -3.39208,-1.27594 -25.6783,-0.19812 -51.35656,-0.40803 -77.03489,-0.59878 l -0.0964,0.34848 -0.0505,0.18256 z"
id="path3448"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#996600;stroke:none"
- d="m 549.34364,137.70162 0.2517,-16.36842 61.87288,-35.671606 -62.12458,52.040026"
+ d="m 611.33802,85.714125 c -20.77065,11.973268 -41.543,23.943565 -62.31256,35.918695 -0.10407,6.12747 -0.18929,12.25536 -0.28247,18.38305 21.13579,-17.71384 42.28058,-35.41696 63.41982,-53.126677 0.75006,-1.60403 2.09542,-1.87807 -0.82479,-1.175068 z"
id="path3450"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ff4706;fill-opacity:1;stroke:none"
- d="m 549.59534,121.3332 1.95834,-24.327263 59.91454,-11.344343"
+ d="m 611.56399,85.623735 c -20.17962,3.818666 -40.35876,7.639794 -60.53866,11.456921 -0.70991,8.760134 -1.41071,17.521014 -2.12415,26.280864 21.13685,-12.22508 42.35898,-24.326884 63.44043,-36.632671 1.50571,-1.438147 2.30063,-1.179346 -0.77762,-1.105114 z"
id="path3452"
inkscape:connector-curvature="0" />
<path
style="fill:#fbb800;fill-opacity:1;stroke:none"
- d="m 551.55368,97.005937 -69.90646,23.699433 67.94812,0.62783"
+ d="m 551.46599,97.001565 c -23.42973,7.988945 -46.92465,15.828505 -70.31367,23.910735 -3.56514,1.2407 1.33825,1.29509 2.71322,1.26007 22.17944,0.20602 44.35904,0.39839 66.53836,0.61292 0.70846,-8.71099 1.40417,-17.42302 2.11287,-26.133986 -0.35027,0.116755 -0.70052,0.233506 -1.05078,0.350261 z"
id="path3454"
inkscape:connector-curvature="0" />
<path
style="fill:#bd5ff5;fill-opacity:1;stroke:none"
- d="m 611.46822,85.661594 -2.12334,-9.974768 -57.7912,21.319111"
+ d="m 609.32681,75.669545 c -19.29069,7.114439 -38.5814,14.22888 -57.87212,21.343318 -3.28281,1.797877 1.5072,1.429358 2.87093,0.919085 19.41096,-3.672976 38.8213,-7.349235 58.23267,-11.020157 -0.80559,-3.847758 -1.62659,-7.692417 -2.45185,-11.536012 -0.25989,0.09792 -0.51974,0.195845 -0.77963,0.293766 z"
id="path3456"
inkscape:connector-curvature="0" />
<path
style="fill:#f846ff;fill-opacity:1;stroke:none"
- d="m 609.34488,75.686826 22.58619,-20.444265 8.42274,-2.218679 -28.88559,32.637712"
+ d="m 640.44357,52.95908 c -2.95148,0.973221 -6.27352,1.262783 -9.01324,2.626724 -7.54948,6.832986 -15.09219,13.673488 -22.64586,20.501795 0.82353,3.934506 1.66173,7.866211 2.50836,11.795883 10.48606,-11.840319 20.95784,-23.693343 31.45568,-35.523235 -0.76835,0.19961 -1.53666,0.399223 -2.30494,0.598833 z"
id="path3491"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#9999cc;stroke:none"
- d="m 611.46822,85.661594 36.23344,-4.987089 -25.808,15.615584"
+ d="m 647.87811,80.629692 c -12.5681,1.727446 -25.13487,3.465035 -37.70388,5.186121 3.94929,4.027583 7.89404,8.059725 11.85237,12.078352 9.22931,-5.714049 18.70655,-11.059101 27.77739,-17.0091 1.38069,-0.72514 -1.52043,-0.132533 -1.92588,-0.255373 z"
id="path3458"
inkscape:connector-curvature="0" />
<path
style="fill:#0083d7;fill-opacity:1;stroke:none"
- d="m 611.46822,85.661594 30.26059,-34.387712 15.03975,16.34934 -45.30034,18.038372"
+ d="m 641.44914,51.43375 c -10.63979,12.169632 -21.436,24.205761 -31.97542,36.461031 16.34017,-6.26871 32.53548,-12.920728 48.82186,-19.332142 -5.4423,-5.909473 -10.88536,-11.818315 -16.31538,-17.739021 -0.17702,0.203378 -0.35404,0.406755 -0.53106,0.610132 z"
id="path3460"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#99ccff;stroke:none"
- d="m 650.60381,50.773882 9.42454,-5.351713 20.89398,12.207863 z"
+ d="m 659.95647,45.411522 c -3.68255,2.095503 -7.37411,4.175197 -11.05015,6.282099 10.97513,2.378097 21.89901,5.141538 32.90156,7.299578 3.07322,0.288681 -1.93457,-2.33511 -3.01269,-2.986645 -6.15853,-3.600356 -12.32113,-7.193772 -18.47715,-10.798409 l -0.31513,0.177258 -0.0465,0.02611 z"
id="path3462"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#4ab7ff;fill-opacity:1;stroke:none"
- d="m 642.60381,52.898882 14.16475,14.72434 17.63489,-2.603286 10.26888,-7.514904 -37.44352,-8.48115"
+ d="m 647.04204,49.094911 c -1.74445,1.460502 -3.48266,2.928514 -5.23134,4.383911 5.0042,5.180028 9.9873,10.380565 14.98214,15.569662 6.10507,-0.961658 12.29234,-1.714346 18.34914,-2.790788 3.85246,-2.821507 7.70882,-5.637637 11.5586,-8.462756 -13.12939,-2.974172 -26.25809,-5.951401 -39.38737,-8.926004 l -0.27117,0.225975 z"
id="path3464"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#816fff;fill-opacity:1;stroke:none"
- d="m 656.76856,67.623222 7.435,-2.955002 -2.67457,11.596089 -28.65393,9.901874 -21.40684,-0.504589 z"
+ d="m 664.2274,64.653275 c -17.9075,7.199379 -35.93223,14.14476 -53.76077,21.517213 -2.63346,1.166248 2.94942,0.80779 4.102,0.956781 6.3709,0.02582 12.81917,0.550323 19.14361,0.276489 9.57337,-3.307418 19.14296,-6.625928 28.71865,-9.926414 1.02798,-4.447983 2.04577,-8.898349 3.08457,-13.343811 -0.42935,0.173248 -0.85871,0.346494 -1.28806,0.519742 z"
id="path3466"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ffea00;fill-opacity:1;stroke:none"
- d="m 247.44065,377.13311 31.56657,-11.20713 -28.7604,-26.36995 5.48963,15.62746 z"
+ d="m 249.3264,340.80576 c 1.80027,5.12962 3.60053,10.25925 5.40081,15.38887 -2.92342,7.73181 -5.84021,15.46612 -8.76782,23.19632 11.40989,-4.03946 22.80983,-8.10723 34.22387,-12.13485 -10.58745,-9.66622 -21.10604,-19.40841 -31.72686,-29.03776 0.29001,0.86247 0.58001,1.72495 0.87,2.58742 z"
id="path3483"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ff794b;stroke:none"
- d="m 86.495763,458.79295 14.489277,-20.21887 7.29625,18.20885 81.73847,34.83556 z"
+ d="m 99.957074,439.29686 c -5.028244,7.0163 -10.053988,14.03439 -15.083814,21.04955 34.86552,11.06518 69.73622,22.11416 104.60373,33.1731 3.67303,0.13824 -1.08142,-2.2734 -2.49617,-2.63211 -26.19076,-11.16709 -52.38152,-22.33417 -78.57229,-33.50126 -2.56005,-6.38795 -5.12829,-12.77262 -7.68314,-19.16266 -0.2561,0.3578 -0.51221,0.7156 -0.768316,1.07338 z"
id="path3485"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#6666cc;stroke:none"
- d="m 100.98504,438.57408 -5.169403,-10.46527 -11.636548,-3.21523 2.316674,33.89937 z"
+ d="m 82.99767,426.05475 c 0.816759,11.98799 1.637741,23.9757 2.451825,35.96388 5.311409,-7.41126 10.623751,-14.82186 15.931225,-22.23592 -1.835515,-3.72033 -3.683066,-7.43508 -5.502488,-11.16315 -4.314639,-1.19917 -8.632201,-2.38795 -12.948355,-3.5817 0.02259,0.33895 0.0452,0.67792 0.06779,1.01689 z"
id="path3487"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#00ced7;fill-opacity:1;stroke:none"
- d="m 470.99153,355.25058 40.40678,17.04661 13.02118,-72.15678 z"
+ d="m 524.01006,300.59355 c -18.07616,18.64844 -36.16695,37.28281 -54.23396,55.94005 14.09215,5.93692 28.17687,11.89149 42.26859,17.82941 4.53203,-25.15589 9.0815,-50.30865 13.61498,-75.46428 -0.54988,0.56494 -1.09975,1.12987 -1.64961,1.69482 z"
id="path3493"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#0ccae7;fill-opacity:1;stroke:none"
- d="m 733.63559,386.81837 21.11017,-9.23305 -1.49364,21.49153 z"
+ d="m 754.86589,377.97861 c -7.46407,3.26672 -14.93324,6.52188 -22.3941,9.796 7.27826,4.54285 14.5604,9.07961 21.82916,13.63758 0.56566,-7.9685 1.1114,-15.93848 1.66093,-23.90813 -0.36535,0.15819 -0.73068,0.31637 -1.09599,0.47455 z"
id="path3495"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ffcc00;stroke:none"
- d="m 247.44065,377.13311 31.56657,-11.20713 31.6199,56.24833 z"
+ d="m 278.56754,366.29571 c -10.97503,3.89375 -21.94849,7.79194 -32.92453,11.6829 21.89561,15.5255 43.65472,31.25488 65.62959,46.66139 1.90707,1.12627 -1.28129,-3.32892 -1.77067,-4.54022 -10.12479,-18.00154 -20.23642,-36.01058 -30.36945,-54.00744 l -0.34019,0.12246 -0.22475,0.0809 z"
id="path3497"
inkscape:connector-curvature="0" />
<path
style="fill:#0099ff;stroke:none"
- d="M 86.495763,458.79295 13.25,440.70821 3.2944054,446.69837 0.25,452.79295 l 7.5057966,6.78956 78.7399664,-0.78956"
+ d="m 12.324057,441.22895 c -3.3795415,2.12848 -6.999777,4.03081 -10.2366579,6.2934 -1.09974507,2.19948 -2.19948656,4.39897 -3.2992317,6.59846 2.8415189,2.3696 5.4561086,5.30243 8.4175605,7.35547 26.3937781,-0.32257 52.8179601,-0.41427 79.1927531,-0.881 3.516581,-0.45423 -1.714899,-1.80678 -3.000085,-2.02703 -23.604974,-5.82811 -47.208741,-11.66116 -70.814468,-17.48619 l -0.259871,0.14689 z"
id="path3499"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#d75000;fill-opacity:1;stroke:none"
- d="m 463.91186,145.71692 85.68348,-24.38372 -0.2517,16.36842 z"
+ d="m 549.5339,121.35035 c -28.5971,8.13885 -57.19422,16.27772 -85.79132,24.41657 -3.46395,1.5005 1.35489,1.56007 2.79103,1.18733 27.88873,-2.6203 55.77941,-5.22107 83.66692,-7.85358 0.0923,-6.00337 0.18715,-12.00671 0.27116,-18.01019 -0.31259,0.0866 -0.62519,0.17325 -0.93779,0.25987 z"
id="path3501"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#1e74fe;fill-opacity:1;stroke:none"
- d="M 467.39758,141.6053 524.67323,121.80631 521.1377,82.208328 z"
+ d="m 500.68945,62.37093 c -18.56097,20.513922 -37.11455,41.03454 -55.68018,61.54423 20.17864,-6.95208 40.34125,-13.95071 60.51605,-20.91396 -1.2328,-13.951034 -2.48596,-27.900344 -3.72859,-41.850534 -0.36909,0.406754 -0.73819,0.81351 -1.10728,1.220264 z"
id="path3146"
- inkscape:connector-curvature="0"
- transform="translate(-20,-20)" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ec1dc3;fill-opacity:1;stroke:none"
- d="M 467.39758,141.6053 508.72302,64.949724 476.42405,31.26355 439.6108,26.375298 z"
+ d="M 418.88659,7.1200959 C 428.30862,46.19517 437.73957,85.268101 447.15603,124.34452 461.31459,98.0374 475.50478,71.747259 489.67318,45.445419 478.71,34.021927 467.75022,22.595066 456.79385,11.165044 444.07548,9.4723018 431.35426,7.8001895 418.63801,6.0919106 c 0.0828,0.3427296 0.16572,0.6854556 0.24858,1.0281853 z"
id="path3148"
- inkscape:connector-curvature="0"
- transform="translate(-20,-20)" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ff5252;fill-opacity:1;stroke:none"
- d="M 467.39758,141.6053 439.6108,26.375298 409.59997,32.747576 390.09611,43.905772 375.64884,47.99209 z"
+ d="m 419.44022,6.2387941 c -10.17657,2.2570471 -20.49299,4.1474939 -30.58309,6.6312389 -6.63651,3.662817 -13.08778,7.766674 -19.83856,11.157456 -4.94603,1.401593 -9.89692,2.786212 -14.83987,4.198651 31.5169,32.162713 63.02536,64.333809 94.55916,96.47994 C 439.18864,85.171214 429.65293,45.63292 420.12945,6.0919106 l -0.35362,0.075359 -0.33561,0.071524 z"
id="path3150"
- inkscape:connector-curvature="0"
- transform="translate(-20,-20)" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#efc000;fill-opacity:1;stroke:none"
- d="m 467.39758,141.6053 -91.74874,-93.61321 5.3099,78.56748 28.49915,23.18331 z"
+ d="m 354.82274,28.632895 c 1.77808,26.3298 3.55286,52.659828 5.333,78.989485 9.67451,7.87265 19.35023,15.74382 29.02646,23.61436 19.91597,-2.79403 39.83016,-5.60108 59.74773,-8.38366 -31.40343,-32.065034 -62.814,-64.123392 -94.24278,-96.163568 0.0452,0.647796 0.0903,1.295588 0.13559,1.943383 z"
id="path3152"
- inkscape:connector-curvature="0"
- transform="translate(-20,-20)" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#85cb00;fill-opacity:1;stroke:none"
- d="m 467.39758,141.6053 7.15299,11.47798 8.62964,14.0094 -44.51577,19.24365 z"
+ d="m 446.80577,121.93789 c -10.01633,15.59723 -20.04803,31.18462 -30.05465,46.78807 15.83649,-6.85213 31.67903,-13.6904 47.5112,-20.55241 -5.58745,-9.08038 -11.19621,-18.14756 -16.83512,-27.19606 -0.20714,0.32013 -0.41429,0.64026 -0.62143,0.9604 z"
id="path3156"
- inkscape:connector-curvature="0"
- transform="translate(-20,-20)"
- sodipodi:nodetypes="ccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#450095;fill-opacity:1;stroke:none"
- d="m 438.66444,186.33633 21.01204,28.83509 9.91296,-20.93196 13.74532,-11.61651 -0.15455,-15.53027 z"
+ d="m 462.92907,147.17927 c -15.13654,6.54573 -30.27308,13.09149 -45.40963,19.6372 7.42677,10.19815 14.85376,20.39622 22.2924,30.58569 3.58559,-7.35697 6.86487,-14.95493 10.6597,-22.15293 4.53934,-3.84038 9.08725,-7.67076 13.62129,-11.51731 -0.0497,-5.66071 -0.11355,-11.32134 -0.16947,-16.98201 -0.33144,0.14312 -0.66286,0.28624 -0.99429,0.42936 z"
id="path3160"
- inkscape:connector-curvature="0"
- transform="translate(-20,-20)"
- sodipodi:nodetypes="cccccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#3b88b6;fill-opacity:1;stroke:none"
- d="m 337.77542,134.59168 -53.14009,33.87439 33.25238,24.52603 z"
+ d="m 337.2645,134.71675 c -18.03716,11.49365 -36.06952,22.99484 -54.10967,34.48376 11.63912,8.59903 23.28479,17.18938 34.9357,25.77242 6.98612,-20.44802 13.95017,-40.90391 20.90267,-61.36345 -0.57624,0.36909 -1.15247,0.73818 -1.7287,1.10727 z"
id="path3396"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#887bde;fill-opacity:1;stroke:none"
- d="m 467.39758,141.6053 48.80121,-53.938181 -1.10122,-15.530276 -8.90955,-2.484877 z"
+ d="m 485.61694,49.942317 c -12.94549,24.145209 -26.11607,48.203378 -38.92097,72.402943 -1.25538,3.27418 2.41627,-0.65619 3.19116,-1.67133 15.71195,-17.36492 31.40894,-34.743719 47.13023,-52.099993 -0.38406,-5.457294 -0.77214,-10.914317 -1.15247,-16.371873 -3.32767,-0.915157 -6.64726,-1.859913 -9.97679,-2.76819 l -0.17014,0.319021 -0.10102,0.189422 z"
id="path3162"
- inkscape:connector-curvature="0"
- transform="translate(-20,-20)" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#fbff1e;fill-opacity:1;stroke:none"
- d="m 409.45789,149.74288 57.93969,-8.13758 -28.73314,44.73103 z"
+ d="m 447.31421,121.62151 c -19.75803,2.76979 -39.51367,5.55691 -59.27319,8.31588 10.2188,12.81123 20.4418,25.61912 30.66478,38.42701 10.05067,-15.65962 20.12537,-31.30387 30.16763,-46.96886 -0.51974,0.0753 -1.03948,0.15065 -1.55922,0.22597 z"
id="path3938"
- inkscape:connector-curvature="0"
- transform="translate(-20,-20)" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#00d1d1;fill-opacity:1;stroke:none"
- d="m 467.39758,141.6053 21.59377,-7.46451 2.21355,6.87178 -1.95403,5.32741 -6.07066,20.7527 z"
+ d="m 468.79311,114.17565 c -7.49141,2.59015 -14.98004,5.18843 -22.47319,7.77353 5.7229,9.21146 11.42543,18.43575 17.12889,27.65931 2.87234,-9.28148 5.09704,-18.77746 8.56444,-27.86268 -0.84493,-2.60459 -1.67802,-5.21306 -2.51961,-7.81874 -0.23351,0.0828 -0.46702,0.16572 -0.70053,0.24858 z"
id="path3940"
- inkscape:connector-curvature="0"
- transform="translate(-20,-20)"
- sodipodi:nodetypes="cccccc" />
+ inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
diff --git a/source/leap/kid-square.svg b/source/leap/kid-square.svg
new file mode 100644
index 0000000..c7b28ed
--- /dev/null
+++ b/source/leap/kid-square.svg
@@ -0,0 +1,640 @@
+<?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"
+ id="svg3039"
+ version="1.1"
+ inkscape:version="0.48.4 r9939"
+ width="800"
+ height="800"
+ sodipodi:docname="kid-square.svg"
+ inkscape:export-filename="/home/elijah/Desktop/leap.png"
+ inkscape:export-xdpi="299.9664"
+ inkscape:export-ydpi="299.9664"
+ style="enable-background:new">
+ <metadata
+ id="metadata3045">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <defs
+ id="defs3043" />
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="16"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1601"
+ inkscape:window-height="991"
+ id="namedview3041"
+ showgrid="false"
+ fit-margin-top="20"
+ fit-margin-left="20"
+ fit-margin-right="20"
+ fit-margin-bottom="20"
+ inkscape:zoom="0.5"
+ inkscape:cx="76.785522"
+ inkscape:cy="225.85341"
+ inkscape:window-x="104"
+ inkscape:window-y="61"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="layer1"
+ inkscape:snap-global="false"
+ inkscape:object-nodes="true"
+ inkscape:snap-smooth-nodes="false"
+ inkscape:snap-grids="false"
+ inkscape:snap-to-guides="false"
+ inkscape:object-paths="true"
+ showguides="true"
+ inkscape:guide-bbox="true" />
+ <g
+ inkscape:groupmode="layer"
+ id="layer1"
+ inkscape:label="bg">
+ <rect
+ style="opacity:1;fill:#3e3e3e;fill-opacity:1;stroke:none"
+ id="rect3093"
+ width="800"
+ height="800"
+ x="0"
+ y="0" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="outline"
+ style="display:inline"
+ transform="translate(20,184.83417)">
+ <path
+ style="fill:none;stroke:#000000;stroke-width:16;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+ d="m 232.7175,512.22173 c -5.07508,-1.19504 -8.66981,-3.1416 -14.11638,-7.64408 -2.50451,-2.07039 -5.93394,-4.8273 -7.62096,-6.12648 -1.68701,-1.29918 -5.49669,-5.64717 -8.46595,-9.66221 -5.48443,-7.41604 -9.86933,-11.04889 -19.2233,-15.92631 -2.86499,-1.49389 -5.49587,-3.61977 -5.8464,-4.72417 -0.43381,-1.3668 -1.24482,-1.84915 -2.53977,-1.51051 -1.06525,0.27857 -3.46271,-0.56133 -5.448,-1.90858 -1.95006,-1.32334 -3.7648,-2.40608 -4.03276,-2.40608 -0.7027,0 -14.49569,-10.36148 -24.4175,-18.34276 -4.67857,-3.76352 -10.03215,-8.03852 -11.89686,-9.5 -1.8647,-1.46148 -4.18263,-3.40017 -5.15094,-4.30819 -3.08982,-2.89742 -20.55773,-14.51807 -26.92315,-17.9108 -3.38015,-1.8016 -6.58676,-4.09972 -7.12581,-5.10694 -0.53905,-1.00722 -1.8866,-1.83131 -2.99456,-1.83131 -1.10796,0 -3.22963,-0.62391 -4.71482,-1.38648 C 80.71516,403.16427 76.8,401.8521 73.5,401.01089 c -3.3,-0.84121 -10.275,-3.5373 -15.5,-5.99133 -5.225,-2.45402 -13.46268,-6.33313 -18.30597,-8.62025 -4.84328,-2.28711 -10.24328,-4.43137 -12,-4.76501 -1.75671,-0.33365 -4.46396,-1.24569 -6.0161,-2.02676 -1.96275,-0.9877 -4.39877,-1.22387 -8,-0.7756 C 8.67536,379.45464 8.35607,379.34344 4.25,375.5485 1.9125,373.38812 0,370.73968 0,369.66309 c 0,-1.0766 1.59168,-3.50016 3.53707,-5.38571 2.96456,-2.87336 4.21898,-3.40818 7.75,-3.30418 2.31711,0.0682 4.72807,-0.2931 5.35767,-0.80299 0.62961,-0.50989 1.52961,-0.82166 2,-0.69282 0.4704,0.12884 5.80173,-0.11777 11.84741,-0.54801 6.04569,-0.43025 14.05802,-0.96454 17.80518,-1.18731 5.9885,-0.35601 8.18379,-1.1249 18.13958,-6.35326 6.74391,-3.54162 13.8335,-6.46604 17.52275,-7.22804 5.6804,-1.17327 6.49959,-1.11613 9.84094,0.68637 3.77427,2.03604 4.89368,4.16009 8.67791,16.46617 1.63687,5.32299 2.96518,8.87897 4.48252,12 1.14789,2.36112 14.16419,9.35375 22.21664,11.93525 6.34026,2.0326 22.20078,8.24614 28.32233,11.0956 1.1,0.51203 5.825,2.31313 10.5,4.00244 4.675,1.68932 11.54195,4.46658 15.25988,6.17169 l 6.75988,3.1002 11.24012,-1.71854 c 6.18207,-0.9452 13.94012,-2.33088 17.24012,-3.07928 3.3,-0.74841 8.29549,-1.65174 11.10108,-2.00741 l 5.10108,-0.64666 2.26885,-10.17665 c 2.36138,-10.59171 7.46555,-26.23069 9.29225,-28.4711 0.58048,-0.71195 1.09622,-5.48053 1.14608,-10.59684 0.0563,-5.7727 0.55811,-9.86543 1.32262,-10.78627 0.67757,-0.81613 1.45574,-5.21519 1.72925,-9.77569 0.27352,-4.5605 1.01173,-8.91168 1.64049,-9.66928 0.77437,-0.93306 0.81929,-1.78074 0.13925,-2.62746 -0.55217,-0.6875 -1.2972,-3.05 -1.65563,-5.25 -0.35843,-2.2 -1.10341,-6.7 -1.65552,-10 -2.27136,-13.57606 -2.27351,-14.54384 -0.039,-17.5662 1.16005,-1.56905 2.12513,-3.65854 2.14462,-4.64331 0.0195,-0.98477 0.67854,-2.91549 1.46456,-4.29049 2.0951,-3.665 1.8138,-5.96533 -1.00019,-8.17881 -2.28131,-1.79448 -2.44559,-2.43114 -1.87658,-7.27256 l 0.62361,-5.30591 -5.04646,-1.67616 c -6.96458,-2.31327 -7.71928,-3.4369 -6.25524,-9.31311 0.65138,-2.6144 2.05519,-6.24167 3.11959,-8.06061 1.0644,-1.81894 1.93527,-3.92378 1.93527,-4.67742 0,-2.12529 4.76612,-5.38934 7.01189,-4.80206 2.45492,0.64198 2.62079,-1.22734 0.23811,-2.68342 -1.5579,-0.95205 -1.24091,-1.51389 2.88761,-5.11811 l 4.63762,-4.04866 -1.89309,-6.18158 c -2.77159,-9.05017 -2.96584,-10.71224 -1.32555,-11.34168 0.79388,-0.30464 1.44341,-1.22889 1.44341,-2.05389 0,-0.9389 -0.57526,-1.27925 -1.53785,-0.90987 -2.6938,1.03371 -2.77388,-2.21393 -0.18834,-7.63802 1.37329,-2.88097 2.77077,-6.43066 3.10551,-7.8882 l 3.61907,-8.4931 c -1.07772,-1.13265 2.57731,-15.23051 4.49928,-17.35426 0.82628,-0.91303 1.50233,-2.43361 1.50233,-3.37906 0,-2.15114 4.57598,-6.47898 7.67206,-7.25605 2.61715,-0.65686 2.8572,-1.54712 1.15299,-4.276 -1.86554,-2.98719 0.6409,-25.52472 4.125,-37.09146 1.57387,-5.225 2.87092,-10.175 2.88235,-11 0.0114,-0.825 0.33687,-3.18244 0.72321,-5.23875 0.77916,-4.14717 -2.69126,-16.79902 -5.17295,-18.85864 C 278.6222,67.5848 278,67.3422 278,67.67683 c 0,0.9394 -11.06712,-3.40431 -15.05329,-5.90824 -1.95431,-1.22761 -6.74665,-3.84016 -10.64964,-5.80568 -3.903,-1.96552 -8.82902,-4.76141 -10.94671,-6.2131 -7.99565,-5.48105 -14.22855,-7.52754 -23.33772,-7.66264 -5.37533,-0.0797 -9.41701,0.36041 -10.96651,1.19424 -3.8837,2.08991 -12.12148,4.0071 -17.2733,4.02003 -2.63213,0.007 -7.6708,-1.09611 -11.36906,-2.48813 -8.45552,-3.18265 -11.18228,-3.21276 -12.35192,-0.13638 -0.96185,2.52985 -3.58809,4.04103 -5.24413,3.01755 -0.55648,-0.34393 -1.64691,-2.14539 -2.42317,-4.00325 -1.05066,-2.51458 -2.02837,-3.37792 -3.82539,-3.37792 -2.71543,0 -6.55916,-4.20057 -6.55916,-7.1681 0,-3.7574 4.88566,-11.77079 7.50824,-12.31492 1.37047,-0.28434 3.50426,-0.74115 4.74176,-1.015129 2.69125,-0.59584 9.26355,-6.67509 14.18584,-13.12162 7.26284,-9.51185 13.11824,-11.5293 19.96902,-6.88023 2.02618,1.375 3.8959,2.5 4.15493,2.5 0.25904,0 2.82656,1.55391 5.70559,3.45313 3.05684,2.01651 10.64308,5.19197 18.23462,7.63268 13.2176,4.24949 15.60406,4.83927 28,6.919779 11.50464,1.93091 21.47341,4.89974 28.80161,8.57751 l 6.91178,3.46878 6.14331,-2.44678 c 5.80065,-2.31032 12.3634,-3.63629 19.1433,-3.8678 4.32398,-0.14765 15.6638,2.0265 16.87216,3.23486 0.56531,0.56531 4.28994,1.02784 8.27695,1.02784 7.22195,0 7.25939,-0.014 9.99483,-3.75 1.51014,-2.0625 3.07445,-4.14391 3.47624,-4.62535 0.40178,-0.48144 2.81259,0.13258 5.35736,1.36448 5.49256,2.6589 6.99369,1.93039 3.2243,-1.56478 C 356.82028,19.992981 356,18.232661 356,15.939501 c 0,-1.81107 -0.3375,-3.63135 -0.75,-4.04507 -0.4125,-0.41371 -0.7955,-6.90121 -0.8511,-14.41667 -0.0556,-7.51545 -0.4291,-14.8158 -0.82998,-16.22299 -0.82663,-2.901689 2.15665,-10.94146 4.05999,-10.94146 2.108,0 2.21416,-2.634629 0.28023,-6.954209 -2.32838,-5.200601 -2.36846,-6.045791 -0.2867,-6.045791 1.27968,0 1.37622,-0.2967 0.45695,-1.40435 -0.64473,-0.77685 -0.88499,-2.52203 -0.53771,-3.90572 0.49722,-1.98104 0.1827,-2.64264 -1.51198,-3.18051 -3.03621,-0.96365 -1.96016,-2.95171 1.79854,-3.32287 2.84588,-0.28103 3.06227,-0.52262 2.09197,-2.33565 -1.44346,-2.69713 -0.48799,-3.43063 2.62262,-2.01335 3.7966,1.72985 7.87037,1.41186 10.73004,-0.83755 1.39842,-1.1 2.95807,-2 3.46588,-2 0.50781,0 1.5457,-1.16298 2.30641,-2.58439 2.13032,-3.980541 6.68435,-6.884991 8.47072,-5.402441 1.15499,0.95856 2.359,0.66416 5.99268,-1.46533 2.86155,-1.676969 5.27863,-2.432769 6.52006,-2.038759 1.18999,0.37769 3.06365,-0.12971 4.72207,-1.27875 4.86136,-3.36825 6.26616,-3.45483 9.98866,-0.61559 2.8072,2.1412 3.6449,2.38576 4.3462,1.26884 0.4779,-0.76097 0.6698,-2.05858 0.4267,-2.88358 -0.6569,-2.22847 12.6542,-6.51647 15.5004,-4.99326 2.6748,1.43152 1.7281,2.85752 -1.4888,2.24257 -2.972,-0.56813 -2.9915,-0.49408 -0.9506,3.59705 1.9005,3.80963 5.7668,4.247169 9.7618,1.10471 l 2.6048,-2.04892 5.7421,3.02404 5.7421,3.024049 2.2619,-2.124919 c 2.7465,-2.58024 3.0868,-1.98029 4.1061,7.23935 l 0.708,6.40293 3.6976,0.60026 c 4.4271,0.71869 6.8024,2.49231 6.8024,5.07933 0,1.10899 1.0425,2.29869 2.5,2.85281 1.375,0.52277 2.5,1.30373 2.5,1.73546 0,0.43174 1.1641,2.04047 2.587,3.57497 1.9976,2.1543 2.8944,2.53489 3.9361,1.67039 0.9876,-0.81964 1.902,-0.82367 3.4129,-0.015 2.5971,1.38988 2.6094,3.07112 0.046,6.329451 -1.2416,1.57843 -1.6248,2.80773 -0.9963,3.19615 0.5617,0.34715 0.7458,1.7286 0.4092,3.069889 -0.4616,1.839421 -0.2107,2.438721 1.0213,2.438721 1.0196,0 1.8619,-1.142101 2.2413,-3.03907 0.8836,-4.41811 2.7292,-3.05936 3.5617,2.62225 0.5552,3.78877 0.3833,5.17153 -0.7495,6.02706 -0.8085,0.61063 -1.47,1.82157 -1.47,2.69098 0,2.657379 2.1794,3.112379 3.9111,0.816549 1.2924,-1.713289 1.8947,-1.911889 2.8628,-0.943819 1.7788,1.778779 1.5027,10.178069 -0.4706,14.316069 l -1.6966,3.55788 3.1148,2.84493 c 2.4896,2.27389 3.0594,3.5236 2.839,6.22605 -0.1516,1.85961 -0.3398,5.06862 -0.4181,7.13112 -0.1985,5.225 -2.977,7.749999 -8.5281,7.749999 -4.5272,0 -6.1475,0.64042 -13.3398,5.27265 -3.1285,2.01494 -5.1139,2.60763 -7.6482,2.28316 -3.5817,-0.45857 -5.1842,0.65494 -7.5672,5.25811 -1.88,3.63149 -0.03,4.80497 7.9102,5.01827 12.9941,0.34905 35.8502,-6.36888 47.0307,-13.82341 5.3356,-3.55754 18.1068,-7.930159 29.5,-10.100249 9.0623,-1.72614 35.1468,-10.58392 47,-15.96026 2.2,-0.99788 6.1521,-2.72562 8.7824,-3.83943 3.3569,-1.42146 8.2485,-5.46548 16.4103,-13.56697 9.0983,-9.031109 12.2182,-11.54187 14.3418,-11.54187 1.4927,0 4.6831,-0.70918 7.0897,-1.57596 2.4067,-0.866769 5.2193,-1.751719 6.2502,-1.966549 1.031,-0.21484 2.9277,-1.08066 4.2149,-1.92405 1.2871,-0.84339 3.2785,-1.53344 4.4251,-1.53344 2.4009,0 7.5719,2.44575 10.4856,4.95939 1.1,0.948999 4.62791,2.76505 7.83991,4.03568 3.212,1.27063 6.0791,2.9333 6.3713,3.69483 0.5677,1.47928 -2.3451,5.310099 -4.0375,5.310099 -0.5589,0 -1.841,0.74641 -2.8491,1.6587 -1.5935,1.44207 -2.3366,1.49246 -5.6897,0.38583 -3.35991,-1.10887 -4.19681,-1.05009 -6.49591,0.45631 -2.0882,1.36825 -2.639,2.52493 -2.639,5.54159 0,4.4876 -3.1644,7.58932 -8.6015,8.43128 -1.8692,0.28946 -5.0352,0.78323 -7.0355,1.09728 -2.5477,0.4 -4.6962,1.75103 -7.1742,4.51139 -3.6157,4.02759 -14.7323,10.91762 -17.6149,10.91762 -0.8806,0 -2.3825,0.39342 -3.3375,0.87428 -8.0974,4.07697 -11.7911,6.267389 -18.7364,11.110849 -20.1817,14.07412 -29.5492,19.56828 -50.0266,29.34134 -23.5979,11.26231 -26.075,12.13518 -37.3205,13.15045 -4.0408,0.36481 -13.2658,2.15386 -20.5,3.97564 l -13.1529,3.31235 -15.90822,8.2211 c -11.20683,8.13363 -16.2173,10.72429 -17.66899,18.60624 -4.58959,8.22927 -7.82755,15.09367 -10.08165,24.1275 -1.11754,4.47881 -5.12004,12.40596 -5.37124,15.61516 -0.2512,3.2092 -1.0989,7.2592 -1.8838,9 -0.7849,1.7408 -1.4878,3.57322 -2.074,5.41509 -1.5069,4.28804 -2.4362,5.30621 -3.5651,7.9641 -0.8111,1.90984 -1.3445,4.09443 -1.8304,5.04947 -1.1723,2.30448 -2.3523,5.16805 -6.0728,14.73643 -1.7108,4.4 -4.7013,10.59261 -6.64552,13.76135 -1.94419,3.16874 -3.7271,6.82136 -3.96204,8.11693 -0.23493,1.29557 -1.0488,3.87797 -1.80861,5.73865 -0.7598,1.86069 -1.6969,5.5704 -2.08245,8.24381 l -0.70099,4.86073 17.82791,-0.66724 c 9.8053,-0.36699 23.2279,-1.10958 29.8279,-1.6502 6.6,-0.54063 22.1295,-0.90625 34.5101,-0.8125 21.5787,0.16341 22.735,0.0737 27.9476,-2.16871 6.3395,-2.72717 9.8018,-2.84252 20.0423,-0.66773 5.1741,1.09883 13.0234,1.61075 25.3106,1.65072 19.4993,0.0634 22.5381,0.74885 27.0399,6.09894 3.1218,3.71008 5.3987,16.40728 3.7766,21.06051 -2.147,6.15888 -1.5699,7.69819 4.0064,10.68503 8.1319,4.35568 28.8562,18.32794 37.5836,25.33865 4.3895,3.52608 9.2114,7.31106 10.7153,8.41106 1.5039,1.1 5.2843,3.95883 8.4009,6.35296 12.6672,9.73056 33.87971,23.03497 40.02091,25.10092 6.095,2.0504 6.5642,2.07091 11.5,0.50277 6.8292,-2.16969 11.7117,-4.57691 20.1458,-9.93243 11.6433,-7.39341 13.0097,-8.81208 14.5097,-15.06467 1.0309,-4.29757 2.3335,-6.59107 5.558,-9.78629 2.3163,-2.29529 4.3736,-5.02557 4.5718,-6.06728 0.1983,-1.04171 1.585,-2.80737 3.0816,-3.92368 2.2837,-1.70344 3.1275,-1.84447 5.25,-0.87742 1.9265,0.8778 2.5456,1.93143 2.5991,4.42368 0.039,1.79929 0.4233,4.17144 0.8547,5.27144 0.4315,1.1 0.4264,3.25432 -0.011,4.78739 -0.503,1.76246 -0.2697,4.52021 0.6345,7.5 0.7866,2.59193 1.435,5.96507 1.4409,7.49585 0.021,5.3195 -4.4442,11.99698 -12.4495,18.61875 -4.2005,3.47446 -8.3991,7.50538 -9.3304,8.9576 -0.9313,1.45223 -2.4217,3.44548 -3.312,4.42945 -1.9454,2.15013 -4.893,10.90387 -4.9081,14.57579 -0.038,9.16741 -8.8684,24.61796 -15.5146,27.14485 -7.09,2.6956 -13.5536,0.0808 -26.6727,-10.78996 -5.334,-4.41988 -14.82421,-11.421 -21.08931,-15.55806 -13.2707,-8.76309 -42.0552,-23.08082 -55.7125,-27.71199 -12.119,-4.1095 -20.3976,-8.05508 -30.7849,-14.67204 -4.5566,-2.9027 -8.8769,-5.27763 -9.6006,-5.27763 -0.7236,0 -3.6183,2.51397 -6.4326,5.5866 -4.7326,5.16706 -5.3634,5.53663 -8.3994,4.92122 -1.8054,-0.36596 -4.4961,-1.5257 -5.9793,-2.5772 -1.4833,-1.0515 -2.9429,-1.51372 -3.2436,-1.02716 -0.7039,1.13904 -13.2652,0.59601 -16.6402,-0.71937 -1.4193,-0.55317 -5.643,-1.77379 -9.386,-2.71248 -5.4614,-1.36967 -7.542,-1.48602 -10.5354,-0.58917 -2.0516,0.61466 -5.9279,1.12411 -8.6141,1.13211 -2.6862,0.008 -6.9089,0.72503 -9.3839,1.5934 -2.475,0.86836 -5.7345,1.74005 -7.2433,1.93709 -1.5088,0.19703 -5.5588,1.02846 -9,1.84761 -4.2635,1.01489 -14.6991,1.684 -32.7567,2.10031 -34.05104,0.78501 -48.2551,1.72438 -55.00005,3.63735 -10.31994,2.92689 -12.00283,3.9426 -14.43825,8.71427 -1.30685,2.56048 -4.95162,8.2321 -8.09949,12.60361 -3.14787,4.3715 -9.25625,15.1715 -13.57417,24 -4.31792,8.82849 -9.64672,18.75181 -11.84178,22.05181 -4.0472,6.08446 -17.50721,27.84269 -19.79548,31.99959 -2.14121,3.88973 -19.43969,27.8576 -26.07121,36.12291 -3.47621,4.33262 -7.75121,9.67534 -9.5,11.87269 -1.74879,2.19736 -5.71898,6.74676 -8.82264,10.10978 -3.10365,3.36302 -6.92865,8.08442 -8.5,10.492 -1.57134,2.40757 -3.42217,5.05818 -4.11296,5.89022 -0.69078,0.83205 -2.95934,3.98781 -5.04124,7.01281 -5.69087,8.26883 -11.25577,10.31719 -21.48528,7.90842 z"
+ id="path4046"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="csssssssssssssssssssssssscssssssssssssscssscsssssssssscssscssssssscsssssccssssscsssssssscsscsssssssssssscsssssssssssssssssssssssssssscccsssscccsccsssssccccsssccscsccsccssssssssssscscscscssssssssscssssccccsscsccsssscssssssssssssssscscsccccccssscssssssssccsssssssssssssssssscscc" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="colors"
+ style="display:inline"
+ transform="translate(20,184.83417)">
+ <path
+ style="fill:#cc3f00;fill-opacity:1;stroke:none"
+ d="m 188.97984,410.97718 c 6.09562,28.83774 12.17661,57.67871 18.28136,86.51445 8.92741,6.00128 17.85119,12.00802 26.77801,18.01016 -14.56051,-34.98455 -29.12058,-69.96932 -43.68092,-104.95397 -1.32922,-1.30862 -1.16515,-2.45378 -1.37845,0.42936 z"
+ id="path3292"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#76cc66;fill-opacity:1;stroke:none"
+ d="m 400.17587,223.4633 c -10.13395,29.76123 -20.2761,59.51966 -30.40491,89.28263 44.01568,-29.49037 88.02652,-58.98798 132.04837,-88.46913 -33.82453,-0.44641 -67.64949,-0.86346 -101.47397,-1.31064 l -0.11667,0.34222 -0.0528,0.15492 z"
+ id="path3220"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#48bdb2;fill-opacity:1;stroke:none"
+ d="m 524.13434,219.13588 c -8.34618,1.76278 -16.74999,3.3767 -25.0606,5.23132 -43.50445,29.14617 -87.00457,58.29883 -130.51174,87.44094 24.36457,-1.30054 48.72716,-2.64003 73.09154,-3.94326 28.2349,-29.74174 56.49138,-59.46377 84.74054,-89.19225 -0.75324,0.15442 -1.5065,0.30883 -2.25974,0.46325 z"
+ id="path3226"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#009948;fill-opacity:1;stroke:none"
+ d="m 470.49923,273.78788 c -14.71347,16.3928 -29.75064,32.49142 -43.86171,49.40939 11.48504,-0.20426 23.04555,-0.12732 34.48375,-0.48584 17.31691,-10.49324 34.63612,-20.9827 51.9516,-31.47829 -14.074,-5.95311 -28.15936,-11.87946 -42.23469,-17.82941 l -0.23921,0.27111 -0.0998,0.11304 z"
+ id="path3228"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#005004;fill-opacity:1;stroke:none"
+ d="m 370.92344,310.26022 c -16.31521,5.51055 -32.63189,11.01671 -48.94614,16.53004 7.73609,2.24605 15.45546,4.64068 23.19631,6.81315 11.72037,-1.28976 23.44225,-2.566 35.16168,-3.86417 -2.9326,-6.55968 -5.87255,-13.11621 -8.79042,-19.6824 l -0.34363,0.11246 -0.2778,0.0909 z"
+ id="path3230"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#3b6774;fill-opacity:1;stroke:none"
+ d="m 441.29198,306.42994 c -23.73487,1.28459 -47.46986,2.56685 -71.20465,3.85287 2.74877,6.60151 5.48005,13.21039 8.21418,19.81799 18.19108,-3.5924 36.38304,-7.18059 54.57291,-10.77899 3.33549,-4.3189 6.65279,-8.65189 9.98809,-12.97096 -0.52352,0.0264 -1.04702,0.0527 -1.57053,0.0791 z"
+ id="path3234"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#244812;fill-opacity:1;stroke:none"
+ d="m 511.12949,290.72469 c -17.15426,9.93147 -34.42899,19.69719 -51.50804,29.73213 -2.97574,2.08366 2.30654,0.77968 3.60878,0.39165 14.9533,-3.66124 29.9066,-7.32247 44.8599,-10.98371 15.22756,3.74874 30.40865,7.75648 45.66517,11.3439 3.35189,0.79213 -1.23845,-2.12311 -2.19629,-2.82561 -13.34591,-9.29676 -26.68206,-18.60776 -40.03406,-27.89563 l -0.31004,0.18602 -0.0854,0.0513 z"
+ id="path3238"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#99ccff;stroke:none"
+ d="m 523.07225,219.47485 c -4.24555,24.76666 -8.48305,49.5347 -12.73367,74.30051 20.47317,-23.56127 40.9495,-47.11981 61.43124,-70.67362 -16.19497,-1.4261 -32.38932,-2.85948 -48.58458,-4.28222 l -0.0614,0.3563 -0.0516,0.29903 z"
+ id="path3240"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#1f8f96;fill-opacity:1;stroke:none"
+ d="m 544.34778,289.35754 c -11.69413,0.45373 -23.38882,0.89286 -35.08258,1.35586 14.93259,10.12649 29.85639,20.26596 44.78819,30.3936 4.9443,-4.75016 9.89078,-9.49822 14.84655,-14.23641 -8.10429,-5.83707 -16.2098,-11.67296 -24.30358,-17.52435 l -0.24858,0.0112 z"
+ id="path3242"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#00c7c7;fill-opacity:1;stroke:none"
+ d="m 569.74735,223.22603 c -19.9476,22.94261 -39.88269,45.89614 -59.83813,68.83191 12.32316,0.0828 24.6463,0.17248 36.96948,0.24858 8.05041,-23.03404 16.33245,-46.0015 24.24503,-69.07474 0.89195,-2.88492 -0.13725,-0.81183 -1.37638,-0.006 z"
+ id="path3244"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#004699;fill-opacity:1;stroke:none"
+ d="m 569.62306,223.97175 c 4.62451,11.26606 8.84204,22.71141 13.72796,33.86232 0.92445,-9.69996 1.16842,-19.46089 1.8304,-29.18465 -5.39329,-2.07132 -10.78179,-4.15525 -16.17979,-6.2143 0.20715,0.51221 0.41429,1.02441 0.62143,1.53663 z"
+ id="path3246"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#006eff;fill-opacity:1;stroke:none"
+ d="m 569.61176,223.452 c -2.81409,7.78458 -5.62253,15.5712 -8.44016,23.35449 8.61594,4.59594 17.24682,9.16448 25.87412,13.73927 -5.59637,-12.93667 -11.21244,-25.86481 -16.81253,-38.79987 -0.20714,0.56871 -0.41428,1.13741 -0.62143,1.70611 z"
+ id="path3248"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffe533;fill-opacity:1;stroke:none"
+ d="m 561.38628,246.23026 c -2.41098,6.7941 -4.81732,13.58985 -7.2312,20.38292 21.06031,4.03491 42.07395,8.36402 63.16108,12.22704 2.11834,0.21225 -2.35928,-2.36626 -3.31471,-3.21724 -16.42414,-11.72693 -34.02373,-21.73219 -52.3553,-30.14974 -0.0866,0.25235 -0.17325,0.50468 -0.25987,0.75702 z"
+ id="path3250"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#815200;fill-opacity:1;stroke:none"
+ d="m 554.43756,265.79967 c -3.31367,8.67768 -6.63238,17.35344 -9.94289,26.0323 14.46782,10.94311 28.78295,22.10731 43.34685,32.91141 2.39534,1.72969 -0.78869,-2.92649 -1.26092,-4.02409 -10.52906,-18.78904 -21.06405,-37.57475 -31.5894,-56.36586 -0.18455,0.48208 -0.3691,0.96416 -0.55364,1.44624 z"
+ id="path3252"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#8f4124;fill-opacity:1;stroke:none"
+ d="m 554.48275,266.4098 c 10.79472,19.25646 21.58417,38.51588 32.38219,57.77045 17.81753,6.58589 35.56421,13.40095 53.42269,19.85278 3.26658,1.22326 -0.97697,-2.22424 -1.8399,-3.08313 -27.73054,-25.18742 -55.35728,-50.51155 -83.15269,-75.61354 -2.04337,-1.43855 -1.42486,-0.83222 -0.81229,1.07344 z"
+ id="path3254"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffb526;fill-opacity:1;stroke:none"
+ d="m 554.74262,266.68098 c 44.67521,27.39567 89.35043,54.79135 134.02564,82.18703 3.48201,1.69971 0.3151,-1.94537 -0.91576,-2.91206 -23.12058,-22.93013 -46.2429,-45.85851 -69.36239,-68.78975 -21.3224,-3.92658 -42.61813,-8.09975 -63.96143,-11.85099 -3.05328,-0.39684 -0.67051,0.29257 0.21394,1.36577 z"
+ id="path3256"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cf5300;fill-opacity:1;stroke:none"
+ d="m 554.62964,266.59059 c 28.29322,25.76759 56.60711,51.51352 84.8874,77.29467 17.24076,1.68244 34.45642,3.70387 51.71221,5.18076 -0.017,-0.65502 -3.23422,-2.26543 -4.48927,-3.14195 -43.75056,-26.82865 -87.5011,-53.6573 -131.25165,-80.48596 -1.87583,-0.31799 -2.37449,-1.27449 -0.85869,1.15248 z"
+ id="path3258"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#592b80;fill-opacity:1;stroke:none"
+ d="m 639.42666,343.78357 c 16.14895,10.98723 32.3038,21.96574 48.44899,32.95842 0.68096,-9.71292 1.36105,-19.42595 2.03376,-29.13944 -17.57656,-1.79545 -35.14634,-3.66798 -52.73119,-5.3782 0.74948,0.51974 1.49896,1.03948 2.24844,1.55922 z"
+ id="path3260"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#8e51a0;fill-opacity:1;stroke:none"
+ d="m 623.90222,286.36338 c 21.49772,20.72189 42.99544,41.44377 64.4932,62.16566 -0.63598,9.12188 -1.27623,18.24348 -1.9095,27.36554 7.03259,2.95549 14.06821,5.90394 21.10605,8.84692 -5.89278,-12.21449 -11.80489,-24.41964 -17.70511,-36.63051 1.06957,-7.47977 2.13938,-14.95951 3.20884,-22.43929 -6.48913,-2.81119 -13.24516,-5.11546 -19.57057,-8.23582 -16.37436,-10.73121 -32.62733,-21.72467 -49.07746,-32.29215 -2.43023,-0.87898 -1.10768,-0.25298 -0.54545,1.21965 z"
+ id="path3262"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#004d99;fill-opacity:1;stroke:none"
+ d="m 688.48582,348.55164 c 5.60627,12.25234 11.22563,24.49878 16.8238,36.7548 2.86977,-0.84485 6.24475,-1.03502 8.82429,-2.23715 4.81019,-8.94823 9.61489,-17.89943 14.42851,-26.84581 -13.56271,-2.99575 -27.1251,-5.99312 -40.68677,-8.99379 0.20341,0.44065 0.40675,0.8813 0.61017,1.32195 z"
+ id="path3264"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#5833ff;fill-opacity:1;stroke:none"
+ d="m 733.64686,305.26617 c -9.05762,5.28984 -18.0189,10.80167 -27.13632,15.95364 -4.95442,1.44379 -9.90323,2.9073 -14.86108,4.33889 -1.15247,8.21291 -2.34338,16.42076 -3.51392,24.63125 15.50356,-14.70759 31.19615,-29.26583 46.56859,-44.0806 1.42158,-2.0335 0.62195,-1.16395 -1.05727,-0.84318 z"
+ id="path3266"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#007ce1;fill-opacity:1;stroke:none"
+ d="m 733.52255,305.35656 c -15.28739,14.42827 -30.57308,28.85836 -45.86156,43.28547 13.14034,3.03229 26.28126,6.06189 39.42131,9.09549 1.60953,-5.12029 3.79704,-10.12224 5.04575,-15.31925 0.91768,-12.77565 1.82812,-25.55184 2.75035,-38.32717 -0.45191,0.42182 -0.9039,0.84364 -1.35585,1.26546 z"
+ id="path3268"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#66e9ff;fill-opacity:1;stroke:none"
+ d="m 749.75885,278.04751 c -2.62517,2.26634 -5.70783,4.14552 -8.07192,6.63287 -4.70678,8.56398 -9.40894,17.13052 -14.1188,25.69282 7.21861,-4.58845 15.3818,-7.23303 23.19514,-10.59839 1.39168,-1.13037 5.44469,-0.89959 4.43297,-3.25696 -1.51413,-6.39424 -3.03482,-12.78694 -4.5448,-19.18216 -0.29753,0.23727 -0.59506,0.47455 -0.89259,0.71182 z"
+ id="path3272"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#99bacc;fill-opacity:1;stroke:none"
+ d="m 733.29658,305.83111 c -0.8505,11.95788 -1.70639,23.91538 -2.55348,35.8735 7.86323,-7.86085 15.72795,-15.72021 23.59177,-23.58048 1.23751,1.39865 2.15059,-5.67365 0.47223,-2.51042 -1.50271,1.60918 -3.66871,-1.54987 -5.44838,-1.93249 -5.32838,-2.99205 -10.65086,-5.99468 -15.98304,-8.97999 -0.0264,0.37663 -0.0527,0.75325 -0.0791,1.12988 z"
+ id="path3274"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#996600;stroke:none"
+ d="m 249.51848,259.09953 c 24.89426,22.82413 49.79353,45.64284 74.68467,68.47035 16.31717,-5.51959 32.64292,-11.01392 48.95744,-16.54135 -41.08265,-17.71568 -82.11125,-35.59013 -123.22488,-53.21304 -2.11479,-0.3561 -2.27087,-1.09835 -0.41723,1.28404 z"
+ id="path3278"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#bcc13d;fill-opacity:1;stroke:none"
+ d="m 400.42444,223.13563 c -27.77705,21.74128 -55.54619,43.4927 -83.32819,65.22763 18.15958,7.8555 36.31996,15.70923 54.48251,23.55787 10.26756,-30.09056 20.51021,-60.18988 30.75517,-90.28822 -0.63649,0.50091 -1.27299,1.00181 -1.90949,1.50272 z"
+ id="path3280"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ff9a09;fill-opacity:1;stroke:none"
+ d="m 400.70692,223.00006 c -30.65047,6.86889 -61.36755,13.45469 -91.9755,20.50415 -20.33301,4.95614 -40.66356,9.92247 -60.99814,14.87219 23.62664,10.21181 47.25012,20.43095 70.87699,30.64219 27.89669,-21.94008 55.95909,-43.67892 83.78388,-65.70543 2.28979,-1.51169 -1.08356,-0.16724 -1.68723,-0.3131 z"
+ id="path3282"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#314e00;fill-opacity:1;stroke:none"
+ d="m 369.64668,333.00458 c -19.95387,2.54359 -39.90542,5.10624 -59.86072,7.63794 -2.2077,34.50273 -4.54667,68.99893 -6.64366,103.50775 22.77967,-37.04082 45.31047,-74.23775 67.99581,-111.33777 -0.49715,0.064 -0.99428,0.12805 -1.49143,0.19208 z"
+ id="path3116"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b98a00;fill-opacity:1;stroke:none"
+ d="m 278.17209,285.3239 c 10.71575,19.05676 21.42526,38.11705 32.14491,57.17161 5.01321,-5.27537 10.05775,-10.52113 15.08382,-15.78433 -15.48504,-14.13675 -30.86551,-28.41036 -46.4159,-42.46159 -2.04125,-1.4498 -1.40576,-0.81877 -0.81283,1.07431 z"
+ id="path3114"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#3e7a00;fill-opacity:1;stroke:none"
+ d="m 323.85289,326.24793 c -5.11958,5.34687 -10.22779,10.70466 -15.35499,16.04421 21.02004,-3.04988 42.09362,-5.89562 63.07951,-9.07799 3.47804,-0.86137 -1.89499,-1.57426 -3.21874,-1.65549 -14.75189,-1.86426 -29.50786,-3.69965 -44.2572,-5.5819 l -0.24433,0.26652 -0.004,0.005 z"
+ id="path3288"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#006600;stroke:none"
+ d="m 303.80892,440.81714 c -28.09679,6.83701 -56.18881,13.69396 -84.28859,20.51851 10.15287,16.74985 20.32325,33.48912 30.484,50.23418 18.60718,-23.75136 37.21305,-47.50381 55.82707,-71.24983 -0.67416,0.16571 -1.34832,0.33143 -2.02248,0.49714 z"
+ id="path3290"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ff0000;fill-opacity:1;stroke:none"
+ d="m 189.02504,411.11276 c 14.3282,34.41913 28.64515,68.84302 42.9804,103.25916 6.4154,-1.17439 12.82842,-2.36211 19.24175,-3.54778 -20.312,-33.45518 -40.62263,-66.91121 -60.9341,-100.36671 -1.4628,-0.88316 -1.56958,-2.38656 -1.28805,0.65533 z"
+ id="path3294"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ff3300;stroke:none"
+ d="m 85.68677,378.59499 c 36.93191,20.29989 73.86305,40.60117 110.79543,60.9002 -2.04131,-9.74641 -4.1113,-19.48688 -6.16911,-29.22983 -34.68978,-10.9889 -69.37381,-21.99631 -104.061384,-32.99233 -1.916602,0.12195 -2.601144,-0.66108 -0.564936,1.32196 z"
+ id="path3296"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#990000;stroke:none"
+ d="m 85.585081,378.5272 c 39.485999,32.2533 78.966609,64.51322 118.455979,96.76239 -2.63958,-12.55459 -5.29918,-25.105 -7.94301,-37.65869 -36.57301,-20.09539 -73.14005,-40.20176 -109.710758,-60.30138 -1.868537,-0.19843 -2.441859,-1.16937 -0.802211,1.19768 z"
+ id="path3298"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#333366;stroke:none"
+ d="m 84.376116,343.72708 c -9.510224,4.30758 -19.016838,8.62316 -28.529317,12.92576 10.321704,7.59488 20.639384,15.19531 30.969844,22.77825 -0.480903,-12.04856 -0.976891,-24.09654 -1.468835,-36.14466 -0.323897,0.14688 -0.647796,0.29376 -0.971692,0.44065 z"
+ id="path3302"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#0066cc;stroke:none"
+ d="m 57.19135,356.0766 c -13.832514,1.61967 -27.722977,2.93877 -41.519295,4.74616 -3.311485,0.48855 1.986211,1.54319 3.06833,1.81844 22.61907,5.34862 45.202555,10.88873 67.84388,16.1176 3.487139,0.90049 -1.154702,-2.05419 -2.156559,-2.88386 C 75.441807,369.26973 66.466027,362.65042 57.473818,356.054 l -0.282468,0.0226 z"
+ id="path3304"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#99ccff;stroke:none"
+ d="m 13.035877,377.32952 c 5.925417,2.97978 12.514556,4.44362 18.547457,7.2336 4.197466,1.59418 8.365481,3.59608 12.58057,4.94645 14.113965,-3.69896 28.310681,-7.18503 42.373098,-11.01662 3.313459,-1.26812 -2.089474,-1.35755 -3.392431,-1.26442 -22.767617,-0.0441 -45.547682,-0.24606 -68.307523,-0.19134 -0.600392,0.0975 -1.200779,0.19489 -1.801171,0.29233 z"
+ id="path3306"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#9999ff;stroke:none"
+ d="m 85.901446,377.25044 c -15.934914,3.02092 -31.870446,6.03859 -47.804965,9.06159 13.299429,5.1147 26.605023,10.21338 39.907145,15.32109 3.062801,-8.20351 6.096016,-16.41811 9.163278,-24.61996 -0.421821,0.0791 -0.843638,0.15818 -1.265458,0.23728 z"
+ id="path3308"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#666699;stroke:none"
+ d="m 85.370405,377.67979 c -3.649779,8.76017 -7.297268,17.52129 -10.948478,26.28087 11.654922,5.98412 23.305422,11.97687 34.958293,17.96499 -7.80893,-15.22423 -15.606949,-30.45406 -23.410982,-45.6808 -0.19961,0.47831 -0.399223,0.95663 -0.598833,1.43494 z"
+ id="path3310"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#702700;fill-opacity:1;stroke:none"
+ d="m 85.393002,378.28992 c 7.320495,14.16465 14.46996,28.48066 21.896958,42.55105 33.79705,24.117 67.60401,48.22019 101.39489,72.34583 -1.81258,-6.74472 -3.28674,-13.71027 -5.32171,-20.31514 -39.17041,-31.9428 -78.23808,-64.02348 -117.472693,-95.88013 -2.269901,-1.82321 -1.00766,-0.32989 -0.497445,1.29839 z"
+ id="path3314"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#00d73a;fill-opacity:1;stroke:none"
+ d="m 307.33413,386.86567 c -39.59815,7.81956 -79.19762,15.63241 -118.79494,23.45618 10.63606,17.53631 21.29563,35.05843 31.93024,52.59563 29.8601,-25.52164 59.71812,-51.04586 89.5651,-76.58286 -0.90013,0.17701 -1.80027,0.35404 -2.7004,0.53105 z"
+ id="path3316"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#009900;stroke:none"
+ d="m 306.99517,387.02385 c -29.45287,25.25533 -59.05217,50.34587 -88.4132,75.70453 0.26403,0.53123 3.90256,-0.74628 5.39936,-0.9876 26.89561,-6.54824 53.78982,-13.10224 80.6863,-19.64688 1.21262,-18.72578 2.42054,-37.45188 3.63819,-56.17733 -0.43688,0.36909 -0.87376,0.73819 -1.31065,1.10728 z"
+ id="path3318"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#009922;fill-opacity:1;stroke:none"
+ d="m 310.01193,340.72162 c -25.98677,21.29442 -52.12796,42.40616 -78.01779,63.81527 25.42463,-5.27239 50.77454,-10.92728 76.1648,-16.37187 1.039,-16.165 2.0983,-32.32871 3.12975,-48.49419 -0.42559,0.35026 -0.85118,0.70053 -1.27676,1.05079 z"
+ id="path3320"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#8a9966;fill-opacity:1;stroke:none"
+ d="m 246.46783,296.22718 c 0.67902,15.26455 1.34919,30.5295 2.03377,45.79379 21.40734,-0.003 42.81469,-0.008 64.22203,-0.0112 -22.11009,-15.7511 -44.2127,-31.51269 -66.3236,-47.26264 0.0226,0.49337 0.0452,0.98675 0.0678,1.48013 z"
+ id="path3322"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#dcff99;fill-opacity:1;stroke:none"
+ d="m 249.19082,340.57473 c -3.9833,-0.61057 0.3224,1.66381 1.53473,2.85607 9.87638,7.79236 19.74752,15.59143 29.62719,23.3796 10.71384,-8.75038 21.42671,-17.50195 32.14492,-26.24697 -21.10228,0.003 -42.20456,0.008 -63.30684,0.0113 z"
+ id="path3324"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#516633;fill-opacity:1;stroke:none"
+ d="m 248.479,341.18487 c -1.31244,8.40597 -2.61071,16.8142 -3.93196,25.21878 12.63202,0.0614 25.26396,0.1466 37.89597,0.21467 -11.25961,-8.88165 -22.51557,-17.76795 -33.77193,-26.65372 -0.064,0.40676 -0.12805,0.81351 -0.19208,1.22027 z"
+ id="path3326"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#57ea00;fill-opacity:1;stroke:none"
+ d="m 244.70522,365.47715 c -3.87304,13.30575 -7.73496,26.61476 -11.6151,39.91845 16.41809,-13.41119 32.84574,-26.8107 49.2625,-40.22352 -12.50018,-0.0697 -25.00033,-0.14956 -37.50051,-0.21467 l -0.0984,0.34793 -0.0486,0.17181 z"
+ id="path3328"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffea00;fill-opacity:1;stroke:none"
+ d="m 302.17061,203.03518 c 3.83157,13.58072 7.65286,27.16436 11.49082,40.74325 29.45544,-6.60933 58.97522,-12.96708 88.40037,-19.69038 2.98143,-0.67154 -2.7011,-1.29989 -3.87892,-1.70146 -32.10949,-6.8349 -64.21944,-13.66759 -96.32864,-20.50388 0.10546,0.38416 0.21091,0.76831 0.31637,1.15247 z"
+ id="path3330"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#002681;fill-opacity:1;stroke:none"
+ d="m 313.86481,160.92478 c -3.9651,14.15376 -7.93626,28.30584 -11.89758,42.46067 33.15632,7.03286 66.29199,14.20016 99.46882,21.11416 3.57303,0.872 -1.15303,-1.99743 -2.19047,-2.87239 -28.3668,-20.56839 -56.72804,-41.14446 -85.09831,-61.70803 -0.0942,0.3352 -0.18831,0.67039 -0.28246,1.00559 z"
+ id="path3346"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#3d0064;fill-opacity:1;stroke:none"
+ d="m 314.13597,161.7044 c 29.03487,21.05211 58.06276,42.11387 87.10198,63.15994 3.62461,-10.99947 7.21304,-22.01096 10.82419,-33.01491 -32.54605,-10.47348 -65.05747,-21.10808 -97.62949,-31.46758 -2.45401,-0.44975 -1.63369,-0.15391 -0.29668,1.32255 z"
+ id="path3348"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#0015a3;fill-opacity:1;stroke:none"
+ d="m 431.02143,120.21542 c -39.57875,13.64345 -79.16335,27.27002 -118.73845,40.92403 33.09304,10.69157 66.18555,21.38492 99.28202,32.06583 5.26744,-13.0268 10.86556,-25.96178 15.95669,-39.03393 1.53634,-11.44284 3.06728,-22.88641 4.60701,-34.32879 -0.36909,0.12429 -0.73818,0.24858 -1.10727,0.37286 z"
+ id="path3350"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#37de2b;fill-opacity:1;stroke:none"
+ d="m 244.67132,231.99385 c -1.73866,6.12429 -3.48788,12.24563 -5.22001,18.37175 3.46351,2.98635 6.90868,5.99432 10.36094,8.9938 21.72708,-5.35766 43.51679,-10.50634 65.20699,-15.98544 3.47083,-0.80457 -1.99354,-1.28907 -3.23711,-1.5558 -22.30985,-3.47915 -44.62096,-6.95029 -66.93002,-10.43445 l -0.10271,0.34667 -0.0781,0.26347 z"
+ id="path3362"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b5cc33;fill-opacity:1;stroke:none"
+ d="m 302.54347,202.19907 c -19.82907,10.12411 -39.65994,20.24467 -59.48786,30.37101 24.04095,3.74089 48.08168,7.48369 72.11984,11.24225 -3.95242,-14.00243 -7.88389,-28.01089 -11.85237,-42.00871 -0.25987,0.13182 -0.51974,0.26363 -0.77961,0.39545 z"
+ id="path3364"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#009900;stroke:none"
+ d="m 261.0771,173.35339 c -2.5502,8.16132 -5.09685,16.32375 -7.64926,24.48437 2.46945,6.08206 4.91704,12.1732 7.37809,18.25876 -5.46632,5.53587 -11.35942,10.71287 -16.55628,16.47529 -1.05183,1.88258 3.49983,-0.83709 4.67009,-1.37453 18.44703,-9.41753 36.8942,-18.83478 55.34113,-28.25249 -14.29982,-10.17572 -28.58993,-20.36514 -42.89,-30.5405 -0.098,0.31638 -0.19586,0.63274 -0.29377,0.9491 z"
+ id="path3366"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#007448;fill-opacity:1;stroke:none"
+ d="m 275.91234,140.86952 c -5.01685,10.97851 -10.03201,21.95779 -15.04992,32.93582 14.55588,10.37843 29.12384,20.73996 43.68093,31.11673 -9.3158,-21.84504 -18.63067,-43.69048 -27.95308,-65.53268 -0.22598,0.49337 -0.45196,0.98675 -0.67793,1.48013 z"
+ id="path3370"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#003399;fill-opacity:1;stroke:none"
+ d="m 275.90104,141.45705 c 9.04141,21.1841 18.06333,42.37656 27.11698,63.55541 4.13434,-14.75643 8.2711,-29.51219 12.40601,-44.26846 -13.43995,-7.04662 -26.8716,-14.10911 -40.3139,-21.15124 0.26363,0.62143 0.52727,1.24286 0.79091,1.86429 z"
+ id="path3372"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#009da9;fill-opacity:1;stroke:none"
+ d="m 317.31092,111.22163 c -14.04169,10.01286 -28.07432,20.03849 -42.1217,30.04334 13.33892,7.01064 26.67785,14.02181 40.03143,21.00436 1.09859,-17.31022 2.22905,-34.61844 3.32183,-51.92901 -0.41052,0.29377 -0.82104,0.58754 -1.23156,0.88131 z"
+ id="path3374"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#006aaf;fill-opacity:1;stroke:none"
+ d="m 317.00585,111.76396 c -1.07655,16.7975 -2.15787,33.5947 -3.23144,50.39238 15.99671,-5.50573 31.99553,-11.0056 47.98575,-16.53005 -14.89408,-11.73916 -29.77755,-23.49182 -44.66391,-35.24077 -0.0301,0.45948 -0.0602,0.91897 -0.0904,1.37844 z"
+ id="path3376"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#62c7e3;fill-opacity:1;stroke:none"
+ d="m 283.71977,87.14401 c -2.70569,18.53348 -5.39911,37.06876 -8.11249,55.6011 14.45212,-10.30675 28.89821,-20.62201 43.35325,-30.92465 -11.68448,-8.63271 -23.3772,-17.25438 -35.07128,-25.87411 -0.0565,0.39922 -0.11299,0.79844 -0.16948,1.19766 z"
+ id="path3888"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#64327c;fill-opacity:1;stroke:none"
+ d="m 317.27702,112.3741 c 14.28555,11.27215 28.56971,22.54607 42.85612,33.81713 24.00134,-8.31209 48.06402,-16.47257 72.02137,-24.89607 3.46676,-1.09759 -2.04905,-1.12144 -3.36215,-1.31575 -37.79695,-3.02884 -75.59412,-6.05482 -113.39092,-9.08545 0.62519,0.49339 1.25039,0.98676 1.87558,1.48014 z"
+ id="path3378"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#56217b;fill-opacity:1;stroke:none"
+ d="m 418.45723,84.42101 c -33.73968,8.96389 -67.53207,17.77901 -101.23882,26.83585 -3.6663,0.98682 1.21918,1.38159 2.6165,1.44866 37.22038,2.98131 74.44056,5.96509 111.66107,8.94484 3.04764,-2.5202 6.11227,-5.02003 9.16327,-7.53626 -7.23321,-9.9458 -14.47946,-19.88233 -21.72747,-29.81737 l -0.34976,0.0916 -0.12479,0.0327 z"
+ id="path3382"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#003bcb;fill-opacity:1;stroke:none"
+ d="m 388.82064,48.03908 c -14.3679,18.96331 -28.73851,37.92455 -43.10469,56.88915 24.72401,-6.46818 49.45198,-12.9213 74.17622,-19.38864 -10.16249,-12.75005 -20.33979,-25.48831 -30.50659,-38.23493 -0.18832,0.24481 -0.37663,0.48961 -0.56494,0.73442 z"
+ id="path3386"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#00bbe7;fill-opacity:1;stroke:none"
+ d="m 336.97073,53.07831 c -4.93954,13.45713 -10.21247,26.80703 -14.94671,40.33017 -1.77226,6.47687 -3.56201,12.949 -5.32323,19.42886 10.56595,-2.86758 21.13119,-5.73809 31.69296,-8.62093 -3.50233,-17.84599 -7.01475,-35.69005 -10.53043,-53.53343 -0.29753,0.79845 -0.59506,1.59689 -0.89259,2.39533 z"
+ id="path3398"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#0058a7;fill-opacity:1;stroke:none"
+ d="m 389.32908,47.75661 c -17.51289,1.64373 -35.02705,3.27424 -52.53914,4.92624 3.44653,17.57917 6.90702,35.15572 10.37225,52.73122 14.60739,-19.26382 29.20109,-38.53804 43.8052,-57.80435 -0.5461,0.049 -1.09221,0.098 -1.63831,0.14689 z"
+ id="path3400"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#5e7bcb;fill-opacity:1;stroke:none"
+ d="m 360.30263,24.79757 c -8.11002,9.80248 -16.2095,19.61369 -24.32619,29.41062 17.78134,-1.65505 35.56075,-3.33093 53.34134,-4.99404 2.80318,1.18088 3.72226,0.45915 1.02741,-1.39951 -9.86357,-7.85311 -19.72694,-15.70645 -29.59062,-23.55941 l -0.23146,0.27776 -0.22048,0.26458 z"
+ id="path3402"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#a5a5d3;fill-opacity:1;stroke:none"
+ d="m 359.6021,26.56017 c -8.68488,0.83059 -17.68379,1.02518 -26.48941,1.61121 -7.20689,0.3966 -14.41362,0.79625 -21.62063,1.19088 8.73842,8.33772 17.47793,16.67428 26.21308,25.01541 7.49551,-8.74517 14.98139,-17.49863 22.47319,-26.24697 3.38417,1.08722 0.52181,-2.70017 -0.54098,-1.61126 l -0.0352,0.0408 z"
+ id="path3404"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#bcff00;fill-opacity:1;stroke:none"
+ d="m 221.79138,42.64958 c 6.49517,3.98107 13.59933,6.91668 20.33899,10.47803 8.52525,4.1473 16.99994,8.69438 25.55649,12.59399 23.46439,-3.97015 46.99482,-7.71619 70.41798,-11.82631 3.40057,-0.99251 -1.96697,-1.52666 -3.26964,-1.54621 -37.03753,-3.24318 -74.07205,-6.60927 -111.11146,-9.77565 -0.64412,0.0254 -1.28824,0.0508 -1.93236,0.0762 z"
+ id="path3406"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffff00;stroke:none"
+ d="m 337.52437,52.61507 c -23.84431,3.97216 -47.687,7.95417 -71.53232,11.92017 7.53726,6.97054 15.07759,13.93778 22.62008,20.90266 16.73808,-10.75125 33.64015,-21.27204 50.27269,-32.17216 2.47206,-1.38539 -0.47358,-0.51787 -1.36045,-0.65067 z"
+ id="path3408"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#66cc33;stroke:none"
+ d="m 315.11896,29.71252 c -30.40113,4.28599 -60.80228,8.57198 -91.20342,12.85797 -3.76218,0.9067 0.9907,1.70773 2.55499,1.65779 37.68843,3.32932 75.37609,6.66736 113.06501,9.9912 C 331.5212,46.02777 323.50355,37.8392 315.48052,29.65603 l -0.35722,0.0558 -0.004,7.2e-4 z"
+ id="path3410"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#009900;stroke:none"
+ d="m 210.58303,9.815443 c 3.22501,2.938562 7.62514,4.219257 11.3464,6.457702 14.74747,7.625245 29.49757,15.245445 44.24339,22.873825 11.44065,-1.62066 22.95796,-2.82518 34.35299,-4.68936 1.7662,-0.59729 -3.29663,-1.49002 -4.44401,-1.9275 -27.86309,-7.58285 -55.72619,-15.165708 -83.58928,-22.748562 -0.6365,0.01128 -1.27299,0.02259 -1.90949,0.03388 z"
+ id="path3412"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#00d96c;fill-opacity:1;stroke:none"
+ d="m 211.7581,10.967915 c 9.28133,10.412495 18.55232,20.834345 27.84009,31.241015 9.71829,-1.10477 19.4333,-2.24218 29.15075,-3.35573 -18.94422,-9.72783 -37.79028,-19.68468 -56.8024,-29.256771 -2.80893,-1.271674 -0.72779,0.08623 -0.18844,1.371486 z"
+ id="path3414"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#4dd1ff;fill-opacity:1;stroke:none"
+ d="m 186.52802,-2.183817 c -3.93155,9.905392 -7.86642,19.809465 -11.79588,29.715677 17.68232,-0.49257 35.36493,-0.97587 53.04758,-1.45753 C 214.14247,16.372002 200.504,6.671415 186.86698,-3.031223 c -0.11299,0.282469 -0.22598,0.564938 -0.33896,0.847406 z"
+ id="path3416"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#a8fee7;fill-opacity:1;stroke:none"
+ d="m 225.57646,24.68459 c -17.30968,0.47386 -34.61922,0.95333 -51.92901,1.42363 9.53319,6.87979 19.06892,13.75612 28.59711,20.64281 8.43804,-7.38525 16.89786,-14.74581 25.34307,-22.12294 -0.67039,0.0189 -1.34078,0.0376 -2.01117,0.0565 z"
+ id="path3418"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#33ccca;fill-opacity:1;stroke:none"
+ d="m 225.12451,24.86536 c -8.38406,7.3136 -16.76471,14.63112 -25.15099,21.94216 13.79711,-1.58864 27.59317,-3.18746 41.38728,-4.80197 -5.23212,-5.87086 -10.46091,-11.74469 -15.69396,-17.61473 l -0.27209,0.23809 -0.27024,0.23645 z"
+ id="path3420"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#0083d7;stroke:none"
+ d="m 186.77659,-1.325113 c 12.92968,9.119677 25.7394,18.467108 38.7439,27.444763 3.08228,1.57984 -0.37949,-2.50996 -1.30329,-3.3574 -3.88081,-4.28991 -7.65348,-8.719892 -11.6004,-12.924209 -8.49949,-4.110513 -16.90778,-8.51832 -25.46399,-12.443968 -2.10709,-0.54717 -1.2731,0.0014 -0.37622,1.280814 z"
+ id="path3422"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#0099ff;stroke:none"
+ d="m 186.75399,-2.488883 c -11.42913,8.741666 -22.9596,17.391702 -34.32557,26.190473 -2.04858,3.2881 -4.10007,6.57438 -6.14651,9.8638 10.01777,-2.05473 20.03666,-4.10412 30.05464,-6.15781 4.14799,-10.494287 8.32494,-20.977409 12.48511,-31.466988 -0.68923,0.523509 -1.37845,1.047016 -2.06767,1.570525 z"
+ id="path3424"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#508bff;fill-opacity:1;stroke:none"
+ d="m 175.65863,26.06303 c -9.76916,2.00599 -19.5422,3.99322 -29.30893,6.01093 4.2232,4.35278 8.43155,8.72007 12.64329,13.08394 15.18157,0.49432 30.36371,0.97231 45.54522,1.46883 -9.51768,-6.8781 -19.04395,-13.74431 -28.56322,-20.62019 l -0.31636,0.0565 z"
+ id="path3426"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#9b2700;fill-opacity:1;stroke:none"
+ d="m 463.61829,63.83471 c -1.46762,0.94127 -0.4663,4.229 -0.96384,6.09254 -0.2504,4.42455 -0.50766,8.84871 -0.75356,13.2735 29.17185,-8.79632 58.35508,-17.55537 87.53132,-26.33736 3.48802,-1.51518 -1.32909,-1.53867 -2.79001,-1.16547 -27.67464,2.71226 -55.34927,5.42453 -83.02391,8.13679 z"
+ id="path3444"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#666699;stroke:none"
+ d="M 611.23632,3.781917 C 590.49937,21.15185 569.76241,38.52178 549.02546,55.8917 c -2.55347,2.77832 1.87485,0.87027 3.02289,-0.0682 C 575.80231,42.25882 599.56811,28.71466 623.31469,15.137159 619.455,11.21191 615.6109,7.271304 611.74478,3.352525 l -0.27627,0.23327 -0.23219,0.196082 z"
+ id="path3446"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#a70000;fill-opacity:1;stroke:none"
+ d="m 469.67441,39.23736 c -2.36724,8.75698 -4.74863,17.51018 -7.1069,26.26957 29.22086,-8.31976 58.51114,-16.47586 87.68076,-24.92589 3.39749,-1.29966 -2.02815,-1.33418 -3.39208,-1.27594 -25.6783,-0.19812 -51.35656,-0.40803 -77.03489,-0.59878 l -0.0964,0.34848 -0.0505,0.18256 z"
+ id="path3448"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#996600;stroke:none"
+ d="m 611.33802,3.714125 c -20.77065,11.973268 -41.543,23.943565 -62.31256,35.918695 -0.10407,6.12747 -0.18929,12.25536 -0.28247,18.38305 21.13579,-17.71384 42.28058,-35.41696 63.41982,-53.126677 0.75006,-1.60403 2.09542,-1.87807 -0.82479,-1.175068 z"
+ id="path3450"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ff4706;fill-opacity:1;stroke:none"
+ d="m 611.56399,3.623735 c -20.17962,3.818666 -40.35876,7.639794 -60.53866,11.456921 -0.70991,8.760134 -1.41071,17.521014 -2.12415,26.280864 21.13685,-12.22508 42.35898,-24.326884 63.44043,-36.632671 1.50571,-1.438147 2.30063,-1.179346 -0.77762,-1.105114 z"
+ id="path3452"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fbb800;fill-opacity:1;stroke:none"
+ d="M 551.46599,15.001565 C 528.03626,22.99051 504.54134,30.83007 481.15232,38.9123 c -3.56514,1.2407 1.33825,1.29509 2.71322,1.26007 22.17944,0.20602 44.35904,0.39839 66.53836,0.61292 0.70846,-8.71099 1.40417,-17.42302 2.11287,-26.133986 -0.35027,0.116755 -0.70052,0.233506 -1.05078,0.350261 z"
+ id="path3454"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#bd5ff5;fill-opacity:1;stroke:none"
+ d="m 609.32681,-6.330455 c -19.29069,7.114439 -38.5814,14.22888 -57.87212,21.343318 -3.28281,1.797877 1.5072,1.429358 2.87093,0.919085 19.41096,-3.672976 38.8213,-7.349235 58.23267,-11.020157 -0.80559,-3.847758 -1.62659,-7.692417 -2.45185,-11.536012 -0.25989,0.09792 -0.51974,0.195845 -0.77963,0.293766 z"
+ id="path3456"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#f846ff;fill-opacity:1;stroke:none"
+ d="m 640.44357,-29.04092 c -2.95148,0.973221 -6.27352,1.262783 -9.01324,2.626724 -7.54948,6.832986 -15.09219,13.673488 -22.64586,20.501795 0.82353,3.934506 1.66173,7.866211 2.50836,11.795883 10.48606,-11.840319 20.95784,-23.693343 31.45568,-35.523235 -0.76835,0.19961 -1.53666,0.399223 -2.30494,0.598833 z"
+ id="path3491"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#9999cc;stroke:none"
+ d="m 647.87811,-1.370308 c -12.5681,1.727446 -25.13487,3.465035 -37.70388,5.186121 3.94929,4.027583 7.89404,8.059725 11.85237,12.078352 9.22931,-5.714049 18.70655,-11.059101 27.77739,-17.0091 1.38069,-0.72514 -1.52043,-0.132533 -1.92588,-0.255373 z"
+ id="path3458"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#0083d7;fill-opacity:1;stroke:none"
+ d="m 641.44914,-30.56625 c -10.63979,12.169632 -21.436,24.205761 -31.97542,36.461031 16.34017,-6.26871 32.53548,-12.920728 48.82186,-19.332142 -5.4423,-5.909473 -10.88536,-11.818315 -16.31538,-17.739021 -0.17702,0.203378 -0.35404,0.406755 -0.53106,0.610132 z"
+ id="path3460"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#99ccff;stroke:none"
+ d="m 659.95647,-36.588478 c -3.68255,2.095503 -7.37411,4.175197 -11.05015,6.282099 10.97513,2.378097 21.89901,5.141538 32.90156,7.299578 3.07322,0.288681 -1.93457,-2.33511 -3.01269,-2.986645 -6.15853,-3.600356 -12.32113,-7.193772 -18.47715,-10.798409 l -0.31513,0.177258 -0.0465,0.02611 z"
+ id="path3462"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#4ab7ff;fill-opacity:1;stroke:none"
+ d="m 647.04204,-32.905089 c -1.74445,1.460502 -3.48266,2.928514 -5.23134,4.383911 5.0042,5.180028 9.9873,10.380565 14.98214,15.569662 6.10507,-0.961658 12.29234,-1.714346 18.34914,-2.790788 3.85246,-2.821507 7.70882,-5.637637 11.5586,-8.462756 -13.12939,-2.974172 -26.25809,-5.951401 -39.38737,-8.926004 l -0.27117,0.225975 z"
+ id="path3464"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#816fff;fill-opacity:1;stroke:none"
+ d="m 664.2274,-17.346725 c -17.9075,7.199379 -35.93223,14.14476 -53.76077,21.517213 -2.63346,1.166248 2.94942,0.80779 4.102,0.956781 6.3709,0.02582 12.81917,0.550323 19.14361,0.276489 9.57337,-3.307418 19.14296,-6.625928 28.71865,-9.926414 1.02798,-4.447983 2.04577,-8.898349 3.08457,-13.343811 -0.42935,0.173248 -0.85871,0.346494 -1.28806,0.519742 z"
+ id="path3466"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffea00;fill-opacity:1;stroke:none"
+ d="m 249.3264,258.80576 c 1.80027,5.12962 3.60053,10.25925 5.40081,15.38887 -2.92342,7.73181 -5.84021,15.46612 -8.76782,23.19632 11.40989,-4.03946 22.80983,-8.10723 34.22387,-12.13485 -10.58745,-9.66622 -21.10604,-19.40841 -31.72686,-29.03776 0.29001,0.86247 0.58001,1.72495 0.87,2.58742 z"
+ id="path3483"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ff794b;stroke:none"
+ d="m 99.957074,357.29686 c -5.028244,7.0163 -10.053988,14.03439 -15.083814,21.04955 34.86552,11.06518 69.73622,22.11416 104.60373,33.1731 3.67303,0.13824 -1.08142,-2.2734 -2.49617,-2.63211 -26.19076,-11.16709 -52.38152,-22.33417 -78.57229,-33.50126 -2.56005,-6.38795 -5.12829,-12.77262 -7.68314,-19.16266 -0.2561,0.3578 -0.51221,0.7156 -0.768316,1.07338 z"
+ id="path3485"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#6666cc;stroke:none"
+ d="m 82.99767,344.05475 c 0.816759,11.98799 1.637741,23.9757 2.451825,35.96388 5.311409,-7.41126 10.623751,-14.82186 15.931225,-22.23592 -1.835515,-3.72033 -3.683066,-7.43508 -5.502488,-11.16315 -4.314639,-1.19917 -8.632201,-2.38795 -12.948355,-3.5817 0.02259,0.33895 0.0452,0.67792 0.06779,1.01689 z"
+ id="path3487"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#00ced7;fill-opacity:1;stroke:none"
+ d="m 524.01006,218.59355 c -18.07616,18.64844 -36.16695,37.28281 -54.23396,55.94005 14.09215,5.93692 28.17687,11.89149 42.26859,17.82941 4.53203,-25.15589 9.0815,-50.30865 13.61498,-75.46428 -0.54988,0.56494 -1.09975,1.12987 -1.64961,1.69482 z"
+ id="path3493"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#0ccae7;fill-opacity:1;stroke:none"
+ d="m 754.86589,295.97861 c -7.46407,3.26672 -14.93324,6.52188 -22.3941,9.796 7.27826,4.54285 14.5604,9.07961 21.82916,13.63758 0.56566,-7.9685 1.1114,-15.93848 1.66093,-23.90813 -0.36535,0.15819 -0.73068,0.31637 -1.09599,0.47455 z"
+ id="path3495"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffcc00;stroke:none"
+ d="m 278.56754,284.29571 c -10.97503,3.89375 -21.94849,7.79194 -32.92453,11.6829 21.89561,15.5255 43.65472,31.25488 65.62959,46.66139 1.90707,1.12627 -1.28129,-3.32892 -1.77067,-4.54022 -10.12479,-18.00154 -20.23642,-36.01058 -30.36945,-54.00744 l -0.34019,0.12246 -0.22475,0.0809 z"
+ id="path3497"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#0099ff;stroke:none"
+ d="m 12.324057,359.22895 c -3.3795415,2.12848 -6.999777,4.03081 -10.2366579,6.2934 -1.09974507,2.19948 -2.19948656,4.39897 -3.2992317,6.59846 2.8415189,2.3696 5.4561086,5.30243 8.4175605,7.35547 26.3937781,-0.32257 52.8179601,-0.41427 79.1927531,-0.881 3.516581,-0.45423 -1.714899,-1.80678 -3.000085,-2.02703 -23.604974,-5.82811 -47.208741,-11.66116 -70.814468,-17.48619 l -0.259871,0.14689 z"
+ id="path3499"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d75000;fill-opacity:1;stroke:none"
+ d="m 549.5339,39.35035 c -28.5971,8.13885 -57.19422,16.27772 -85.79132,24.41657 -3.46395,1.5005 1.35489,1.56007 2.79103,1.18733 27.88873,-2.6203 55.77941,-5.22107 83.66692,-7.85358 0.0923,-6.00337 0.18715,-12.00671 0.27116,-18.01019 -0.31259,0.0866 -0.62519,0.17325 -0.93779,0.25987 z"
+ id="path3501"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#1e74fe;fill-opacity:1;stroke:none"
+ d="m 500.68945,-19.62907 c -18.56097,20.513922 -37.11455,41.03454 -55.68018,61.54423 20.17864,-6.95208 40.34125,-13.95071 60.51605,-20.91396 -1.2328,-13.951034 -2.48596,-27.900344 -3.72859,-41.850534 -0.36909,0.406754 -0.73819,0.81351 -1.10728,1.220264 z"
+ id="path3146"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ec1dc3;fill-opacity:1;stroke:none"
+ d="m 418.88659,-74.879904 c 9.42203,39.075074 18.85298,78.148005 28.26944,117.224424 14.15856,-26.30712 28.34875,-52.597261 42.51715,-78.899101 -10.96318,-11.423492 -21.92296,-22.850353 -32.87933,-34.280375 -12.71837,-1.692742 -25.43959,-3.364855 -38.15584,-5.073133 0.0828,0.342729 0.16572,0.685455 0.24858,1.028185 z"
+ id="path3148"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ff5252;fill-opacity:1;stroke:none"
+ d="m 419.44022,-75.761206 c -10.17657,2.257047 -20.49299,4.147494 -30.58309,6.631239 -6.63651,3.662817 -13.08778,7.766674 -19.83856,11.157456 -4.94603,1.401593 -9.89692,2.786212 -14.83987,4.198651 31.5169,32.162713 63.02536,64.333809 94.55916,96.47994 -9.54922,-39.534866 -19.08493,-79.07316 -28.60841,-118.614169 l -0.35362,0.07536 -0.33561,0.07152 z"
+ id="path3150"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#efc000;fill-opacity:1;stroke:none"
+ d="m 354.82274,-53.367105 c 1.77808,26.3298 3.55286,52.659828 5.333,78.989485 9.67451,7.87265 19.35023,15.74382 29.02646,23.61436 19.91597,-2.79403 39.83016,-5.60108 59.74773,-8.38366 -31.40343,-32.065034 -62.814,-64.123392 -94.24278,-96.163568 0.0452,0.647796 0.0903,1.295588 0.13559,1.943383 z"
+ id="path3152"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#85cb00;fill-opacity:1;stroke:none"
+ d="m 446.80577,39.93789 c -10.01633,15.59723 -20.04803,31.18462 -30.05465,46.78807 15.83649,-6.85213 31.67903,-13.6904 47.5112,-20.55241 -5.58745,-9.08038 -11.19621,-18.14756 -16.83512,-27.19606 -0.20714,0.32013 -0.41429,0.64026 -0.62143,0.9604 z"
+ id="path3156"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#450095;fill-opacity:1;stroke:none"
+ d="m 462.92907,65.17927 c -15.13654,6.54573 -30.27308,13.09149 -45.40963,19.6372 7.42677,10.19815 14.85376,20.39622 22.2924,30.58569 3.58559,-7.35697 6.86487,-14.95493 10.6597,-22.15293 4.53934,-3.84038 9.08725,-7.67076 13.62129,-11.51731 -0.0497,-5.66071 -0.11355,-11.32134 -0.16947,-16.98201 -0.33144,0.14312 -0.66286,0.28624 -0.99429,0.42936 z"
+ id="path3160"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#3b88b6;fill-opacity:1;stroke:none"
+ d="m 337.2645,52.71675 c -18.03716,11.49365 -36.06952,22.99484 -54.10967,34.48376 11.63912,8.59903 23.28479,17.18938 34.9357,25.77242 6.98612,-20.44802 13.95017,-40.90391 20.90267,-61.36345 -0.57624,0.36909 -1.15247,0.73818 -1.7287,1.10727 z"
+ id="path3396"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#887bde;fill-opacity:1;stroke:none"
+ d="m 485.61694,-32.057683 c -12.94549,24.145209 -26.11607,48.203378 -38.92097,72.402943 -1.25538,3.27418 2.41627,-0.65619 3.19116,-1.67133 15.71195,-17.36492 31.40894,-34.743719 47.13023,-52.099993 -0.38406,-5.457294 -0.77214,-10.914317 -1.15247,-16.371873 -3.32767,-0.915157 -6.64726,-1.859913 -9.97679,-2.76819 l -0.17014,0.319021 -0.10102,0.189422 z"
+ id="path3162"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fbff1e;fill-opacity:1;stroke:none"
+ d="m 447.31421,39.62151 c -19.75803,2.76979 -39.51367,5.55691 -59.27319,8.31588 10.2188,12.81123 20.4418,25.61912 30.66478,38.42701 10.05067,-15.65962 20.12537,-31.30387 30.16763,-46.96886 -0.51974,0.0753 -1.03948,0.15065 -1.55922,0.22597 z"
+ id="path3938"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#00d1d1;fill-opacity:1;stroke:none"
+ d="m 468.79311,32.17565 c -7.49141,2.59015 -14.98004,5.18843 -22.47319,7.77353 5.7229,9.21146 11.42543,18.43575 17.12889,27.65931 2.87234,-9.28148 5.09704,-18.77746 8.56444,-27.86268 -0.84493,-2.60459 -1.67802,-5.21306 -2.51961,-7.81874 -0.23351,0.0828 -0.46702,0.16572 -0.70053,0.24858 z"
+ id="path3940"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/source/masks/android-mask.svg b/source/masks/android-mask.svg
new file mode 100644
index 0000000..dad23aa
--- /dev/null
+++ b/source/masks/android-mask.svg
@@ -0,0 +1,610 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ version="1.1"
+ width="175"
+ height="117"
+ id="svg2"
+ inkscape:version="0.48.4 r9939"
+ sodipodi:docname="android-mask.svg"
+ inkscape:export-filename="/home/elijah/dev/leap/leap_website/public/img/pages/android-mask.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1295"
+ inkscape:window-height="1028"
+ id="namedview48"
+ showgrid="false"
+ inkscape:zoom="1"
+ inkscape:cx="24.113156"
+ inkscape:cy="119.45435"
+ inkscape:window-x="53"
+ inkscape:window-y="24"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg2"
+ borderlayer="true" />
+ <defs
+ id="defs4">
+ <marker
+ refX="0"
+ refY="0"
+ orient="auto"
+ id="Arrow1Lstart"
+ style="overflow:visible">
+ <path
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
+ transform="matrix(0.8,0,0,0.8,10,0)"
+ id="path10118"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <radialGradient
+ cx="276.14392"
+ cy="-2665.9668"
+ r="703.63379"
+ fx="276.14392"
+ fy="-2665.9668"
+ id="radialGradient4134"
+ xlink:href="#linearGradient4128"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.17045779,808.10425,-1175.0862)" />
+ <linearGradient
+ id="linearGradient4128">
+ <stop
+ id="stop4130"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4132"
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient8105">
+ <stop
+ id="stop8107"
+ style="stop-color:#a14dd3;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop8109"
+ style="stop-color:#a14dd3;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ cx="276.14392"
+ cy="-2665.9668"
+ r="703.63379"
+ fx="276.14392"
+ fy="-2665.9668"
+ id="radialGradient18343"
+ xlink:href="#linearGradient4128"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.17045779,1912.5103,685.79563)" />
+ <linearGradient
+ x1="129.342"
+ y1="259.30521"
+ x2="195.5984"
+ y2="259.30521"
+ id="linearGradient31968"
+ xlink:href="#SVGID_3_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="129.2932"
+ y1="259.311"
+ x2="195.5535"
+ y2="259.311"
+ id="linearGradient31970"
+ xlink:href="#SVGID_4_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="129.24541"
+ y1="259.31689"
+ x2="195.50951"
+ y2="259.31689"
+ id="linearGradient31972"
+ xlink:href="#SVGID_5_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="129.1965"
+ y1="259.32181"
+ x2="195.4646"
+ y2="259.32181"
+ id="linearGradient31974"
+ xlink:href="#SVGID_6_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="129.14771"
+ y1="259.32669"
+ x2="195.4216"
+ y2="259.32669"
+ id="linearGradient31976"
+ xlink:href="#SVGID_7_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="129.09891"
+ y1="259.33151"
+ x2="195.37869"
+ y2="259.33151"
+ id="linearGradient31978"
+ xlink:href="#SVGID_8_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="129.05099"
+ y1="259.3364"
+ x2="195.3376"
+ y2="259.3364"
+ id="linearGradient31980"
+ xlink:href="#SVGID_9_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="129.0032"
+ y1="259.3403"
+ x2="195.2957"
+ y2="259.3403"
+ id="linearGradient31982"
+ xlink:href="#SVGID_10_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.9543"
+ y1="259.34329"
+ x2="195.25459"
+ y2="259.34329"
+ id="linearGradient31984"
+ xlink:href="#SVGID_11_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.90649"
+ y1="259.34811"
+ x2="195.21561"
+ y2="259.34811"
+ id="linearGradient31986"
+ xlink:href="#SVGID_12_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.8567"
+ y1="259.3501"
+ x2="195.17551"
+ y2="259.3501"
+ id="linearGradient31988"
+ xlink:href="#SVGID_13_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.80881"
+ y1="259.354"
+ x2="195.13651"
+ y2="259.354"
+ id="linearGradient31990"
+ xlink:href="#SVGID_14_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.75999"
+ y1="259.35599"
+ x2="195.0994"
+ y2="259.35599"
+ id="linearGradient31992"
+ xlink:href="#SVGID_15_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.7122"
+ y1="259.35791"
+ x2="195.0623"
+ y2="259.35791"
+ id="linearGradient31994"
+ xlink:href="#SVGID_16_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.6633"
+ y1="259.35989"
+ x2="195.0251"
+ y2="259.35989"
+ id="linearGradient31996"
+ xlink:href="#SVGID_17_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.61549"
+ y1="259.36179"
+ x2="194.989"
+ y2="259.36179"
+ id="linearGradient31998"
+ xlink:href="#SVGID_18_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.5667"
+ y1="259.3638"
+ x2="194.9539"
+ y2="259.3638"
+ id="linearGradient32000"
+ xlink:href="#SVGID_19_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.51781"
+ y1="259.36569"
+ x2="194.91769"
+ y2="259.36569"
+ id="linearGradient32002"
+ xlink:href="#SVGID_20_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.47"
+ y1="259.3667"
+ x2="194.8855"
+ y2="259.3667"
+ id="linearGradient32004"
+ xlink:href="#SVGID_21_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <linearGradient
+ x1="128.4211"
+ y1="259.36871"
+ x2="194.8503"
+ y2="259.36871"
+ id="linearGradient32006"
+ xlink:href="#SVGID_22_"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,8.3999,368.2998)" />
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath3159">
+ <g
+ style="fill:none;stroke:#006082;stroke-width:31.77269936;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+ id="g3161"
+ transform="matrix(0.6987131,0,0,0.6987131,-78.646361,-52.805193)">
+ <path
+ style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#006082;fill-opacity:1;stroke:none;stroke-width:22.20000076;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+ d="m 278.28751,285.55576 -11.21875,0.125 c -16.33799,0.18876 -35.43079,3.64775 -48.84375,17.25 -26.364,26.73607 -32.91414,67.45937 -31.40625,101.9375 2.03445,46.51772 21.53824,93.17387 51.28125,128.53125 20.69424,24.60055 50.34517,51.04821 86.53125,52.21875 28.80499,0.93178 49.7747,-20.70739 66.84375,-34 14.22825,-11.08034 33.86145,-24.04072 51.59375,-31.4375 17.0467,-7.1108 34.85246,-7.21617 34.21875,-7.21875 l 0.0312,0 0.0625,0 0.0312,0 c -0.16965,5.1e-4 17.2016,0.10729 34.25,7.21875 17.72836,7.39514 37.32827,20.3525 51.5625,31.4375 17.07402,13.29649 38.06968,34.93179 66.875,34 36.18608,-1.17054 65.83701,-27.6182 86.53125,-52.21875 29.74301,-35.35738 49.2468,-82.01353 51.28125,-128.53125 1.50789,-34.47813 -5.04224,-75.20143 -31.40625,-101.9375 -14.31952,-14.52161 -35.00767,-17.52645 -52.09375,-17.21875 -30.44885,0.54835 -54.3266,17.12605 -78.40625,27.34375 -35.97307,15.26442 -58.60927,33.089 -90.875,42.9375 -15.59991,4.76158 -25.34249,3.77253 -37.15625,3.96875 -0.48134,-0.0127 -0.42021,-0.003 -0.5,0 -0.0399,0.002 -0.3107,-0.002 -0.25,0 -0.0108,-2.1e-4 -0.0204,2.1e-4 -0.0312,0 -12.03376,-0.23364 -21.77727,0.85894 -37.59375,-3.96875 -32.26573,-9.8485 -54.90193,-27.67308 -90.875,-42.9375 -21.91783,-9.30038 -43.75001,-23.72976 -70.4375,-26.6875 l 0,-0.8125 z m 12.125,109.15625 c 17.37009,-0.31472 36.71128,6.52981 55.875,13.53125 14.81121,5.41127 29.02735,15.65317 45.09375,25.09375 5.88038,3.4553 11.12945,6.87537 18,11.21875 -3.34103,2.83649 -6.57004,5.62753 -10.96875,9 -12.59562,9.65701 -28.90684,19.70424 -39,22.0625 -29.76308,6.95412 -52.56809,2.47169 -79.75,-19.25 -5.78601,-4.62373 -15.92397,-18.36952 -23.34375,-30.375 -3.24397,-5.24887 -5.84449,-9.82258 -8.03125,-13.71875 2.542,-1.66751 5.0341,-3.34504 8.34375,-5.3125 9.27056,-5.51099 21.18825,-10.95207 26.46875,-11.6875 2.38753,-0.33252 4.80103,-0.517 7.3125,-0.5625 z m 372,0 c 3.16744,-0.0296 6.24552,0.14841 9.21875,0.5625 5.2805,0.73543 17.19819,6.17651 26.46875,11.6875 3.30965,1.96746 5.80175,3.64499 8.34375,5.3125 -2.18676,3.89617 -4.78728,8.46988 -8.03125,13.71875 -7.41978,12.00548 -17.55774,25.75127 -23.34375,30.375 -27.17889,21.71928 -50.01971,26.20376 -79.78125,19.25 -10.09225,-2.35805 -26.38134,-12.40603 -38.96875,-22.0625 -4.40014,-3.37558 -7.62824,-6.16178 -10.96875,-9 6.87055,-4.34338 12.11962,-7.76345 18,-11.21875 16.0664,-9.44058 30.28254,-19.68248 45.09375,-25.09375 18.47767,-6.7508 37.09414,-13.37374 53.96875,-13.53125 z"
+ id="path3163"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccssssssccccsssssssssccccsscccssscsssscssscsscsssscssc" />
+ </g>
+ </clipPath>
+ <linearGradient
+ id="linearGradient4055-4">
+ <stop
+ id="stop4057-6"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop4059-2"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4141-7">
+ <stop
+ id="stop4143-9"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop4145-7"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4038-5">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop4040-2" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0"
+ offset="1"
+ id="stop4042-4" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4020-4">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop4022-5" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop4024-2" />
+ </linearGradient>
+ </defs>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="g6356"
+ transform="translate(-2.8284271,14.142136)">
+ <g
+ transform="matrix(-0.10150603,0.14969572,-0.1513321,-0.1010467,200.19672,-69.921221)"
+ id="g3054">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4133"
+ d="m -23.375,-386.90625 c -24.620909,93.60523 -49.274498,187.20196 -73.875,280.8125 365.69907,46.459569 731.39564,92.93903 1097.09375,139.40625 10.87705,0.60738 -1.18757,-5.160158 -5.47916,-6.46212 -339.0464,-138.66381 -678.1105,-277.28481 -1017.14584,-415.97538 -0.197917,0.73958 -0.395833,1.47917 -0.59375,2.21875 z"
+ style="fill:#a0522d;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4135"
+ d="m -96.75,-107.78125 c 0.434028,96.802091 0.895794,193.604119 1.3125,290.40625 C 269.83289,132.85089 635.10424,83.083879 1000.375,33.3125 1011.0069,31.081426 997.84497,28.634057 993.39959,28.492585 630.01755,-17.701158 266.62624,-63.825183 -96.75,-110.0625 c 0,0.76042 0,1.52083 0,2.28125 z"
+ style="fill:#ffa500;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4137"
+ d="m -93.71875,178.375 c -4.844411,1.38527 1.91995,10.52967 1.764754,15.0418 C -67.626493,282.61145 -43.291706,371.80411 -18.96875,461 320.99081,318.42384 660.92514,175.787 1000.875,33.1875 c 9.7381,-4.91182 -3.62232,-3.891366 -7.99841,-2.867442 C 630.67814,79.671706 268.4797,129.02335 -93.71875,178.375 z"
+ style="fill:#f0e68c;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4139"
+ d="M 999.3125,29.5 C 659.3746,172.10322 319.43988,314.71401 -20.5,457.3125 28.661648,541.56971 77.846034,625.81399 126.96875,710.09375 418.44437,484.41113 709.85997,258.65023 1001.3125,32.9375 c 3.5332,-4.634438 5.4802,-4.842875 -2,-3.4375 z"
+ style="fill:#9acd32;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4141"
+ d="M 998.875,29.75 C 707.42748,255.47968 415.97679,481.20526 124.53125,706.9375 193.84745,775.60024 263.14733,844.27972 332.4375,912.96875 555.51729,619.49731 778.60476,326.0317 1001.6875,32.5625 c 2.1913,-5.370076 4.0582,-6.097601 -2.8125,-2.8125 z"
+ style="fill:#228b22;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4143"
+ d="M 998.5,30.125 C 775.41726,323.5942 552.32979,617.05981 329.25,910.53125 413.92308,958.96985 498.63525,1007.3418 583.34375,1055.7188 722.83159,714.49292 862.41349,373.305 1001.9375,32.09375 c 0.7099,-5.745823 2.336,-6.953044 -3.4375,-1.96875 z"
+ style="fill:#3cb371;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4145"
+ d="M 998.25,30.59375 C 858.70299,371.78946 719.19874,713.00284 579.625,1054.1875 c 94.33988,24.8374 188.68195,49.6672 283.03125,74.4687 46.45955,-365.68861 92.93903,-731.37476 139.40625,-1097.06245 -0.787,-5.739317 0.4726,-7.323547 -3.8125,-1 z"
+ style="fill:#7fffd4;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4147"
+ d="M 998.125,31.09375 C 951.63712,396.78009 905.21894,762.4757 858.6875,1128.1562 c 97.56255,-0.4034 195.1249,-0.8778 292.6875,-1.2812 -49.7741,-365.27039 -99.5411,-730.54174 -149.3125,-1095.8125 -2.25476,-5.313952 -1.4165,-7.182336 -3.9375,0.03125 z"
+ style="fill:#008080;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4149"
+ d="m 998.125,31.625 c 49.7521,365.2615 99.5706,730.51433 149.2812,1095.7812 94.1208,-25.6542 188.2266,-51.3637 282.3438,-77.0312 C 1287.1739,710.42584 1144.537,370.50194 1001.9375,30.5625 c -3.56654,-4.629205 -3.25129,-6.532593 -3.8125,1.0625 z"
+ style="fill:#b0e0e6;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4151"
+ d="m 998.25,32.125 c 142.6032,339.92748 285.2141,679.85177 427.8125,1019.7812 84.257,-49.1516 168.5017,-98.32472 252.7813,-147.43745 C 1453.1611,612.99313 1227.4002,321.57753 1001.6875,30.125 c -4.63444,-3.533224 -4.84287,-5.480195 -3.4375,2 z"
+ style="fill:#87ceeb;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4153"
+ d="m 998.5,32.5625 c 225.7297,291.44752 451.4553,582.89821 677.1875,874.34375 C 1744.3502,837.59005 1813.0297,768.29017 1881.7188,699 1588.2473,475.92021 1294.7817,252.83274 1001.3125,29.75 995.94242,27.558657 995.2149,25.691769 998.5,32.5625 z"
+ style="fill:#4682b4;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4155"
+ d="m 998.875,32.9375 c 293.4692,223.08274 586.9348,446.17021 880.4062,669.25 48.4489,-84.68361 96.8316,-169.40598 145.2188,-254.125 C 1683.2638,308.58493 1342.0654,169.01362 1000.8438,29.5 c -5.74587,-0.709872 -6.95309,-2.336039 -1.9688,3.4375 z"
+ style="fill:#1e90ff;fill-opacity:1;stroke:#1e90ff;stroke-width:1.58113885;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4157"
+ d="m 994.8125,29.96875 c 11.4966,7.652805 25.3634,10.996868 37.853,16.844491 330.0989,134.994709 660.2155,269.946449 990.3033,404.968009 24.8275,-94.33974 49.6458,-188.68209 74.4374,-283.03125 -365.6886,-46.44926 -731.3748,-92.918179 -1097.0624,-139.375 -1.8438,0.197917 -3.68755,0.395833 -5.5313,0.59375 z"
+ style="fill:#6495ed;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4159"
+ d="m 2093.3438,-119.625 c -364.5105,49.666667 -729.0209,99.333333 -1093.5313,149 -10.63187,2.231077 2.53,4.678487 6.9754,4.819744 363.3716,46.183402 726.7525,92.296936 1090.1183,138.524006 -0.4033,-97.552136 -0.8778,-195.104114 -1.2812,-292.65625 -0.7604,0.10417 -1.5208,0.20833 -2.2812,0.3125 z"
+ style="fill:#191970;fill-opacity:1;stroke:#000000;stroke-width:0.00316228;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4161"
+ d="M 2017,-397.5625 C 1677.7708,-255.20833 1338.5417,-112.85417 999.3125,29.5 c -9.73812,4.91182 3.6223,3.891366 7.9984,2.867442 362.9495,-49.437103 725.8904,-98.94056 1088.8453,-148.336192 -25.6548,-94.16225 -51.3631,-188.31007 -77.0312,-282.46875 -0.7083,0.29167 -1.4167,0.58333 -2.125,0.875 z"
+ style="fill:#0000cd;fill-opacity:1;stroke:#0000cd;stroke-width:1.58588231;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4163"
+ d="M 1871.4062,-646.0625 C 1580.5625,-420.79167 1289.7188,-195.52083 998.875,29.75 c -8.13254,7.260714 4.4857,2.868541 8.455,0.729522 337.7758,-141.700552 675.5484,-283.408742 1013.3262,-425.104522 -49.1519,-84.26723 -98.3245,-168.52271 -147.4374,-252.8125 -0.6042,0.45833 -1.2084,0.91667 -1.8126,1.375 z"
+ style="fill:#483d8b;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4165"
+ d="M 1666.375,-848.46875 C 1443.75,-555.60417 1221.125,-262.73958 998.5,30.125 c -5.96653,9.105124 5.0779,1.617258 8.3466,-1.47392 289.6029,-224.31127 579.2088,-448.61856 868.8096,-672.93233 -69.3159,-68.65261 -138.6163,-137.3211 -207.9062,-206 -0.4583,0.60417 -0.9167,1.20833 -1.375,1.8125 z"
+ style="fill:#9370db;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4167"
+ d="M 1415.9688,-990.9375 C 1276.7292,-650.42708 1137.4896,-309.91667 998.25,30.59375 c -3.38128,10.347459 5.3067,0.210327 7.6737,-3.603946 221.6706,-291.611634 443.3461,-583.219674 665.0138,-874.833554 -84.6836,-48.44884 -169.406,-96.83153 -254.125,-145.21875 -0.2812,0.70833 -0.5625,1.41667 -0.8437,2.125 z"
+ style="fill:#8b008b;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4169"
+ d="m 1137.2188,-1063.75 c -46.3646,364.94792 -92.7292,729.89583 -139.0938,1094.84375 -0.60738,10.877052 5.1602,-1.187547 6.4619,-5.47923 138.6535,-339.04637 277.264,-678.1105 415.9443,-1017.14577 -94.3398,-24.83745 -188.6819,-49.66725 -283.0312,-74.46875 -0.094,0.75 -0.1875,1.5 -0.2812,2.25 z"
+ style="fill:#da70d6;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4171"
+ d="m 851.09375,-1064.1875 c -4.99175,0.757 0.53118,10.6955 -0.21364,15.1622 49.08163,360.21679 98.16326,720.43354 147.24489,1080.6503 2.2311,10.631869 4.6785,-2.530026 4.8197,-6.975434 46.1834,-363.382026 92.297,-726.773346 138.5241,-1090.149566 -96.7918,0.4167 -193.58338,0.8785 -290.37505,1.3125 z"
+ style="fill:#c71585;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4173"
+ d="m 850.5625,-1064.125 c -93.37525,25.4678 -186.74851,50.943 -280.125,76.40625 142.57616,339.95956 285.213,679.89389 427.8125,1019.84375 4.9118,9.738119 3.8914,-3.622323 2.8674,-7.998411 C 951.68034,-338.82294 902.17688,-701.7638 852.78125,-1064.7188 c -0.73958,0.198 -1.47917,0.3959 -2.21875,0.5938 z"
+ style="fill:#db7093;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4175"
+ d="m 572.15625,-988.09375 c -83.61798,48.76496 -167.20884,97.57687 -250.84375,146.3125 225.69295,291.47568 451.46437,582.89121 677.1875,874.34375 7.2607,8.13254 2.8685,-4.485717 0.72959,-8.455016 C 857.52901,-313.67874 715.82085,-651.46179 574.125,-989.25 c -0.65625,0.38542 -1.3125,0.77083 -1.96875,1.15625 z"
+ style="fill:#ffb6c1;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4177"
+ d="m 322.875,-842.59375 c -68.13788,68.74755 -136.25608,137.51468 -204.40625,206.25 293.4715,223.09012 586.93704,446.1881 880.40625,669.28125 9.1051,5.966532 1.6173,-5.077925 -1.47392,-8.346631 C 773.08981,-265.01195 548.78252,-554.61786 324.46875,-844.21875 c -0.53125,0.54167 -1.0625,1.08333 -1.59375,1.625 z"
+ style="fill:#b22222;fill-opacity:1;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4179"
+ d="m 119.75,-637.5625 c -48.016345,84.05463 -96.068549,168.08893 -144.0625,252.15625 341.23623,139.48788 682.43459,279.06973 1023.65625,418.59375 10.34745,3.381286 0.2103,-5.306712 -3.60385,-7.673786 C 704.12822,-196.16734 412.52022,-417.85322 120.90625,-639.53125 c -0.38542,0.65625 -0.77083,1.3125 -1.15625,1.96875 z"
+ style="fill:#ff6347;fill-opacity:1;stroke:none" />
+ </g>
+ <rect
+ rx="0.94508582"
+ ry="0.94508582"
+ y="-34.118118"
+ x="-122.61922"
+ height="241.43137"
+ width="429.08624"
+ id="rect3896"
+ style="opacity:0.61316872;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.91153067000000021;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
+ </g>
+ <g
+ id="g8054-3"
+ transform="matrix(0.77261447,0,0,0.77261447,3940.0128,-1599.5158)"
+ style="stroke:#000000;stroke-opacity:1">
+ <rect
+ style="fill:#a4c639;stroke:#000000;stroke-opacity:0.51141554;opacity:1"
+ id="c-4-14-6-4-9"
+ y="2215.8682"
+ x="-5031.3647"
+ rx="18.431965"
+ height="89.571671"
+ width="28.481606"
+ ry="18.431965" />
+ <rect
+ style="fill:#a4c639;stroke:#000000;stroke-opacity:0.51141554;opacity:1"
+ id="c-4-8-9-1-4-9"
+ y="2215.8682"
+ x="-4967.1167"
+ rx="18.431965"
+ height="89.571671"
+ width="28.481606"
+ ry="18.431965" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#a4c639;stroke:#000000;stroke-width:1.29430658999999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.51141554;opacity:1"
+ id="rect8719-3-2-7-4-3"
+ d="m -5049.6353,2142.4203 c -0.047,0.5392 -0.088,1.0859 -0.088,1.6381 l 0,92.5563 c 0,9.9545 7.8791,17.9728 17.6606,17.9728 l 94.1238,0 c 9.7816,0 17.6607,-8.0183 17.6607,-17.9728 l 0,-92.5563 c 0,-0.5521 -0.019,-1.099 -0.066,-1.6381 l -129.2908,0 z" />
+ <rect
+ style="fill:#a4c639;stroke:#000000;stroke-opacity:0.51141554;opacity:1"
+ id="c-4-9-2-9-2-9"
+ y="2150.6584"
+ x="-5086.8457"
+ rx="18.431965"
+ height="89.571671"
+ width="28.481606"
+ ry="18.431965" />
+ <rect
+ style="fill:#a4c639;stroke:#000000;stroke-opacity:0.51141554;opacity:1"
+ id="c-4-1-7-3-8-4"
+ y="2150.6584"
+ x="-4911.6357"
+ rx="18.431965"
+ height="89.571671"
+ width="28.481606"
+ ry="18.431965" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#a4c639;fill-opacity:1;stroke:#000000;stroke-opacity:0.51141554;opacity:1"
+ id="path4090-4-4-4-8"
+ d="m -5049.2189,2136.3396 c 0.3964,-28.4288 25.2094,-51.7395 57.0625,-54.8125 l 14.3125,0 c 31.8531,3.073 56.6661,26.3837 57.0625,54.8125 l -128.4375,0 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.51141554;stroke-dasharray:none;opacity:1"
+ id="path4160-1-3-5-6"
+ d="m -5044.2663,2078.7845 15.0228,26.0203" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.51141554;stroke-dasharray:none;opacity:1"
+ id="path4160-9-0-1-7-9"
+ d="m -4925.7341,2078.7845 -15.0228,26.0203" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-opacity:0.51141554;opacity:1"
+ id="path4109-7-3-2-5-7-2-0"
+ transform="matrix(0.54430379,0,0,0.64615387,-9089.2529,1721.4019)"
+ d="m 7505.2239,602.73602 a 13.534965,11.136364 0 1 1 -27.0699,0 13.534965,11.136364 0 1 1 27.0699,0 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-opacity:0.51141554;opacity:1"
+ id="path4109-0-0-3-1-5-0-0-0"
+ transform="matrix(0.54430379,0,0,0.64615387,-9034.2566,1721.4019)"
+ d="m 7505.2239,602.73602 a 13.534965,11.136364 0 1 1 -27.0699,0 13.534965,11.136364 0 1 1 27.0699,0 z" />
+ </g>
+ <rect
+ style="fill:#748c29;fill-opacity:1;stroke:none"
+ id="rect4432"
+ width="77.625"
+ height="17.25"
+ x="49"
+ y="24.75" />
+ <g
+ style="display:inline"
+ id="mask_group"
+ transform="matrix(1.5857286,0,0,1.5857286,37.661515,-16.625981)">
+ <g
+ style="fill:none;stroke:none;display:inline"
+ id="eyes"
+ transform="matrix(0.09628644,0,0,0.09628644,-13.900612,-8.2957126)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3911"
+ d="m 290.22501,383.61826 c 20.26573,-0.36718 40.73803,7.19583 59.875,14.1875 16.78643,6.13291 31.49775,16.91475 46.90625,25.96875 10.4842,6.16049 30.96875,19.28125 30.96875,19.28125 0,0 -38.82581,37.01847 -66.03125,43.375 -32.32466,7.55263 -60.041,1.91037 -89.21875,-21.40625 -16.83219,-13.45099 -39.0625,-56.3125 -39.0625,-56.3125 0,0 30.15123,-21.96471 47.90625,-24.4375 2.88277,-0.40149 5.76115,-0.6038 8.65625,-0.65625 z"
+ style="fill:none;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3905"
+ d="m 662.31876,383.61826 c 3.62101,-0.0338 7.24028,0.15439 10.84375,0.65625 17.75502,2.47279 47.90625,24.4375 47.90625,24.4375 0,0 -22.23031,42.86151 -39.0625,56.3125 -29.17775,23.31662 -56.92534,28.95888 -89.25,21.40625 -27.20544,-6.35653 -66,-43.375 -66,-43.375 0,0 20.48455,-13.12076 30.96875,-19.28125 15.4085,-9.054 30.11982,-19.83584 46.90625,-25.96875 18.4535,-6.74197 38.13407,-14.00499 57.6875,-14.1875 z"
+ style="fill:none;stroke:none" />
+ </g>
+ <g
+ transform="matrix(0.09628644,0,0,0.09628644,-13.900612,-8.2957126)"
+ id="outline"
+ style="fill:none;stroke:#000000;stroke-width:34.52383041;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3871"
+ transform="translate(97.225014,196.27451)"
+ d="m 169.96875,100.5 c -14.66639,0.16945 -30.93901,3.67114 -41.0625,13.9375 -22.89313,23.21621 -29.64336,61.08236 -28.21875,93.65625 1.91143,43.70495 20.52619,88.39789 48.6875,121.875 19.75254,23.48109 47.70677,47.2892 78.375,48.28125 22.51282,0.72824 41.91608,-17.81666 59.6875,-31.65625 14.782,-11.51158 34.87713,-24.90852 54.125,-32.9375 19.40436,-8.09426 38.18432,-8.06391 38.53125,-8.0625 0,0 0.0595,10e-6 0.0625,0 0.33473,-10e-4 19.15169,-0.0344 38.5625,8.0625 19.24787,8.02898 39.31175,21.42592 54.09375,32.9375 17.77142,13.83959 37.20593,32.38449 59.71875,31.65625 30.66823,-0.99205 58.62246,-24.80016 78.375,-48.28125 28.16131,-33.47711 46.77607,-78.17005 48.6875,-121.875 1.42461,-32.57389 -5.32562,-70.44004 -28.21875,-93.65625 -10.79839,-10.95078 -28.62313,-14.18317 -44,-13.90625 -26.27537,0.47319 -48.88701,15.70649 -74.25,26.46875 -34.56835,14.66836 -57.60153,32.85381 -91.96875,43.34375 -17.59464,5.37044 -29.55939,4.21929 -40.6875,4.4375 -0.22725,-0.006 -0.4596,0.004 -0.6875,0 -11.12811,-0.21821 -23.06161,0.93294 -40.65625,-4.4375 C 304.75778,159.85381 281.7246,141.66836 247.15625,127 221.79326,116.23774 199.15037,101.00444 172.875,100.53125 c -0.96105,-0.0173 -1.92849,-0.0426 -2.90625,-0.0312 z M 193,187.34375 c 20.26573,-0.36718 40.73803,7.19583 59.875,14.1875 16.78643,6.13291 31.49775,16.91475 46.90625,25.96875 10.4842,6.16049 30.96875,19.28125 30.96875,19.28125 0,0 -38.82581,37.01847 -66.03125,43.375 -32.32466,7.55263 -60.041,1.91037 -89.21875,-21.40625 -16.83219,-13.45099 -39.0625,-56.3125 -39.0625,-56.3125 0,0 30.15123,-21.96471 47.90625,-24.4375 2.88277,-0.40149 5.76115,-0.6038 8.65625,-0.65625 z m 372.09375,0 c 3.62101,-0.0338 7.24028,0.15439 10.84375,0.65625 17.75502,2.47279 47.90625,24.4375 47.90625,24.4375 0,0 -22.23031,42.86151 -39.0625,56.3125 -29.17775,23.31662 -56.92534,28.95888 -89.25,21.40625 -27.20544,-6.35653 -66,-43.375 -66,-43.375 0,0 20.48455,-13.12076 30.96875,-19.28125 15.4085,-9.054 30.11982,-19.83584 46.90625,-25.96875 18.4535,-6.74197 38.13407,-14.00499 57.6875,-14.1875 z"
+ style="fill:none;stroke:#000000;stroke-width:34.52383041;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="mask"
+ d="m 12.102284,20.301441 c -1.480584,-0.02666 -3.1790105,0.289339 -4.2187498,1.34375 -2.2042975,2.235407 -2.8559206,5.863576 -2.71875,9 0.1840448,4.208194 1.975948,8.526608 4.6875004,11.75 1.9019014,2.260911 4.5783144,4.529479 7.5312494,4.625 2.167679,0.07012 4.038854,-1.698685 5.75,-3.03125 1.423307,-1.108409 3.365441,-2.414418 5.21875,-3.1875 1.885814,-0.786641 3.71875,-0.75 3.71875,-0.75 0,0 1.832936,-0.03664 3.71875,0.75 1.853309,0.773082 3.764193,2.079091 5.1875,3.1875 1.711146,1.332565 3.582321,3.10137 5.75,3.03125 2.952935,-0.09552 5.660598,-2.364089 7.5625,-4.625 2.711552,-3.223392 4.503455,-7.541806 4.6875,-11.75 0.13717,-3.136424 -0.514452,-6.764593 -2.71875,-9 -1.039739,-1.054411 -2.769416,-1.37041 -4.25,-1.34375 -2.529962,0.04556 -4.714138,1.49499 -7.15625,2.53125 -3.328463,1.412364 -5.534652,3.177461 -8.84375,4.1875 -1.697948,0.518262 -2.832701,0.375 -3.9375,0.375 -1.104799,0 -2.270802,0.143262 -3.96875,-0.375 -3.309098,-1.010039 -5.515287,-2.775136 -8.84375,-4.1875 -2.442112,-1.03626 -4.626288,-2.485688 -7.15625,-2.53125 z m 1.9375,8.34375 c 1.951314,-0.03535 3.938619,0.701798 5.78125,1.375 1.616305,0.590516 3.01637,1.628222 4.5,2.5 1.009486,0.593172 3,1.84375 3,1.84375 0,0 -3.755485,3.575452 -6.375,4.1875 -3.112427,0.727216 -5.784328,0.182574 -8.59375,-2.0625 -1.620711,-1.295148 -3.7499996,-5.4375 -3.7499996,-5.4375 0,0 2.9154316,-2.105654 4.6249996,-2.34375 0.277572,-0.03866 0.533741,-0.05745 0.8125,-0.0625 z m 36.03125,0 c 0.278759,0.0051 0.566178,0.02384 0.84375,0.0625 1.709568,0.238096 4.625,2.34375 4.625,2.34375 0,0 -2.160539,4.142352 -3.78125,5.4375 -2.809422,2.245074 -5.481323,2.789716 -8.59375,2.0625 -2.619515,-0.612048 -6.34375,-4.1875 -6.34375,-4.1875 0,0 1.959264,-1.250578 2.96875,-1.84375 1.48363,-0.871778 2.914945,-1.909484 4.53125,-2.5 1.842631,-0.673202 3.798686,-1.410354 5.75,-1.375 z"
+ style="fill:#555753;fill-opacity:1;stroke:none" />
+ <g
+ style="opacity:0.67181468;display:inline"
+ id="lighting"
+ transform="matrix(0.13780541,0,0,0.13780541,-3.079568,-1.0127332)"
+ clip-path="url(#clipPath3159)" />
+ </g>
+</svg>
diff --git a/source/masks/favicon.ico b/source/masks/favicon.ico
index 7f41dd1..c2f9e97 100644
--- a/source/masks/favicon.ico
+++ b/source/masks/favicon.ico
Binary files differ
diff --git a/source/masks/favicon.png b/source/masks/favicon.png
index 99c6fb1..6fd865e 100644
--- a/source/masks/favicon.png
+++ b/source/masks/favicon.png
Binary files differ
diff --git a/source/masks/mask-favicon.svg b/source/masks/mask-favicon.svg
index 75e42ac..e2aa9fd 100644
--- a/source/masks/mask-favicon.svg
+++ b/source/masks/mask-favicon.svg
@@ -14,11 +14,12 @@
height="256"
id="svg3088"
version="1.1"
- inkscape:version="0.48.3.1 r9886"
+ inkscape:version="0.48.4 r9939"
sodipodi:docname="mask-favicon.svg"
- inkscape:export-filename="/home/elijah/dev/leap/leap_assets/svg/masks/favicon.png"
+ inkscape:export-filename="/home/elijah/dev/leap/leap_assets/source/masks/favicon.png"
inkscape:export-xdpi="5.625"
- inkscape:export-ydpi="5.625">
+ inkscape:export-ydpi="5.625"
+ enable-background="new">
<defs
id="defs3090">
<linearGradient
@@ -54,17 +55,6 @@
offset="1"
id="stop4188" />
</linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4212"
- id="radialGradient4218"
- cx="838.203"
- cy="202.05379"
- fx="838.203"
- fy="202.05379"
- r="1000"
- gradientTransform="matrix(0.23507081,-0.00354921,0.00262976,0.17417648,-66.992432,-87.218066)"
- gradientUnits="userSpaceOnUse" />
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3159">
@@ -166,18 +156,27 @@
offset="1"
id="stop4024-2" />
</linearGradient>
+ <filter
+ inkscape:collect="always"
+ id="filter3954">
+ <feBlend
+ inkscape:collect="always"
+ mode="darken"
+ in2="BackgroundImage"
+ id="feBlend3956" />
+ </filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
- inkscape:pageopacity="0.0"
+ inkscape:pageopacity="1"
inkscape:pageshadow="2"
- inkscape:zoom="2"
- inkscape:cx="94.719013"
- inkscape:cy="92.852494"
- inkscape:current-layer="g3058"
+ inkscape:zoom="0.25"
+ inkscape:cx="-1024.8064"
+ inkscape:cy="92.081687"
+ inkscape:current-layer="layer1"
showgrid="false"
inkscape:document-units="px"
inkscape:grid-bbox="true"
@@ -199,9 +198,9 @@
inkscape:snap-center="true"
borderlayer="true"
inkscape:window-width="1920"
- inkscape:window-height="1032"
- inkscape:window-x="0"
- inkscape:window-y="0"
+ inkscape:window-height="1056"
+ inkscape:window-x="1920"
+ inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
@@ -232,230 +231,151 @@
inkscape:label="rainbow"
inkscape:groupmode="layer"
transform="translate(0,192)"
- sodipodi:insensitive="true">
+ style="opacity:0.52755906;filter:url(#filter3954)">
<g
id="g3058"
- clip-path="none">
+ clip-path="none"
+ transform="matrix(0.22002687,-0.97549381,0.97549381,0.22002687,153.8847,84.738036)">
<path
- inkscape:transform-center-y="-241.80464"
- inkscape:transform-center-x="210.6289"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#a0522d;fill-opacity:1;stroke:none"
+ d="m -893.53125,-472.09375 c -24.62091,93.60523 -49.2745,187.20196 -73.875,280.8125 365.68864,46.44926 731.37481,92.918179 1097.0625,139.375 10.87705,0.607379 -1.18755,-5.160184 -5.4792,-6.462019 C -214.85892,-197.02171 -553.91262,-335.63224 -892.9375,-474.3125 c -0.19792,0.73958 -0.39583,1.47917 -0.59375,2.21875 z"
id="path4133"
- d="m -964.91593,-192.97479 73.30951,-278.62259 1021.51963,417.731775 z"
- style="fill:#a0522d;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ffa500;fill-opacity:1;stroke:none"
- d="M -963.61466,95.127875 -964.91593,-192.97479 129.91321,-53.865605 z"
+ d="m -966.90625,-192.96875 c 0.42369,96.791674 0.87447,193.58328819 1.28125,290.375 365.27039,-49.774105 730.54174,-99.5411213 1095.8125,-149.3125 10.63187,-2.231077 -2.53003,-4.678487 -6.97543,-4.819744 C -240.15954,-102.9094 -603.54044,-149.02293 -966.90625,-195.25 c 0,0.76042 0,1.52083 0,2.28125 z"
id="path4135"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="233.21481"
- inkscape:transform-center-y="-93.716909" />
+ inkscape:connector-curvature="0" />
<path
- inkscape:transform-center-y="55.815345"
- inkscape:transform-center-x="276.5623"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#f0e68c;fill-opacity:1;stroke:none"
+ d="m -963.90625,93.15625 c -4.84463,1.385332 1.92079,10.52944 1.76607,15.04144 24.3374,89.19479 48.6827,178.38743 73.01518,267.58356 339.94916,-142.57611 679.87306,-285.21301 1019.8125,-427.8125 9.73812,-4.91182 -3.62232,-3.891366 -7.99841,-2.867442 C -239.50936,-5.5470445 -601.7078,43.804603 -963.90625,93.15625 z"
id="path4137"
- d="M -887.79122,373.07686 -963.61466,95.127875 129.91321,-53.865605 z"
- style="fill:#f0e68c;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#9acd32;fill-opacity:1;stroke:none"
- d="M -742.61295,621.93046 -887.79122,373.07686 129.91321,-53.865605 z"
+ d="m 129.125,-55.71875 c -339.92748,142.603213 -679.85177,285.21406 -1019.78125,427.8125 49.15191,84.26723 98.32452,168.52271 147.4375,252.8125 291.47568,-225.69295 582.89121,-451.46437 874.34375,-677.1875 3.53322,-4.634438 5.48019,-4.842875 -2,-3.4375 z"
id="path4139"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="301.06247"
- inkscape:transform-center-y="131.98928" />
+ inkscape:connector-curvature="0" />
<path
- inkscape:transform-center-y="146.03113"
- inkscape:transform-center-x="357.26285"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#228b22;fill-opacity:1;stroke:none"
+ d="M 128.6875,-55.46875 C -162.76003,170.27133 -454.21065,396.00743 -745.65625,621.75 c 69.31591,68.65261 138.61637,137.3211 207.90625,206 223.07979,-293.47144 446.167258,-586.93705 669.25,-880.40625 2.19134,-5.370076 4.05823,-6.097601 -2.8125,-2.8125 z"
id="path4141"
- d="M -537.97345,824.72965 -742.61295,621.93046 129.91321,-53.865605 z"
- style="fill:#228b22;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#3cb371;fill-opacity:1;stroke:none"
- d="M -287.81858,967.65403 -537.97345,824.72965 129.91321,-53.865605 z"
+ d="m 128.3125,-55.09375 c -223.082742,293.4692 -446.17021,586.93481 -669.25,880.40625 84.68361,48.44884 169.40598,96.83153 254.125,145.21875 C -147.33493,629.29507 -7.7636231,288.09666 131.75,-53.125 c 0.70987,-5.745823 2.33604,-6.953044 -3.4375,-1.96875 z"
id="path4143"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="359.70291"
- inkscape:transform-center-y="127.69701" />
+ inkscape:connector-curvature="0" />
<path
- inkscape:transform-center-y="210.6289"
- inkscape:transform-center-x="241.80464"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#7fffd4;fill-opacity:1;stroke:none"
+ d="M 128.0625,-54.625 C -11.474121,286.58111 -150.96778,627.80499 -290.53125,969 -196.19137,993.83743 -101.8493,1018.6672 -7.5,1043.4688 38.949278,677.76969 85.418176,312.07311 131.875,-53.625 c -0.78696,-5.739317 0.47257,-7.323547 -3.8125,-1 z"
id="path4145"
- d="M -9.19599,1040.9635 -287.81858,967.65403 129.91321,-53.865605 z"
- style="fill:#7fffd4;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#008080;fill-opacity:1;stroke:none"
- d="M 278.90669,1039.6622 -9.19599,1040.9635 129.91321,-53.865605 z"
+ d="M 127.9375,-54.125 C 81.460014,311.57176 35.052415,677.2778 -11.46875,1042.9688 c 97.552139,-0.4133 195.10411,-0.8993 292.65625,-1.3126 C 231.41339,676.38586 181.64638,311.11451 131.875,-54.15625 c -2.25476,-5.313952 -1.41653,-7.182336 -3.9375,0.03125 z"
id="path4147"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="93.716896"
- inkscape:transform-center-y="233.21482" />
+ inkscape:connector-curvature="0" />
<path
- inkscape:transform-center-y="276.56228"
- inkscape:transform-center-x="-55.815333"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#b0e0e6;fill-opacity:1;stroke:none"
+ d="m 127.9375,-53.59375 c 49.75212,365.2615 99.5706,730.51433 149.28125,1095.78125 94.1206,-25.6444 188.22672,-51.34235 282.34375,-77 C 416.98634,625.22794 274.3495,285.29361 131.75,-54.65625 c -3.56654,-4.629205 -3.25129,-6.532593 -3.8125,1.0625 z"
id="path4149"
- d="M 556.8557,963.83882 278.90669,1039.6622 129.91321,-53.865605 z"
- style="fill:#b0e0e6;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#87ceeb;fill-opacity:1;stroke:none"
- d="M 805.7092,818.66051 556.8557,963.83882 129.91321,-53.865605 z"
+ d="M 128.0625,-53.09375 C 270.66572,286.84415 413.27651,626.77887 555.875,966.71875 640.14248,917.55685 724.39747,868.37297 808.6875,819.25 582.99455,527.77432 357.22313,236.35879 131.5,-55.09375 c -4.63444,-3.533224 -4.84287,-5.480195 -3.4375,2 z"
id="path4151"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="-131.98925"
- inkscape:transform-center-y="301.0625" />
+ inkscape:connector-curvature="0" />
<path
- inkscape:transform-center-y="357.26284"
- inkscape:transform-center-x="-146.03116"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#4682b4;fill-opacity:1;stroke:none"
+ d="M 128.3125,-52.65625 C 354.05258,238.79128 579.78868,530.2419 805.53125,821.6875 874.18357,752.38172 942.85264,683.09225 1011.5312,613.8125 718.05975,390.72238 424.59421,167.6244 131.125,-55.46875 c -5.37008,-2.191343 -6.0976,-4.058231 -2.8125,2.8125 z"
id="path4153"
- d="M 1008.5085,614.02109 805.7092,818.66051 129.91321,-53.865605 z"
- style="fill:#4682b4;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#1e90ff;fill-opacity:1;stroke:none"
- d="M 1151.4329,363.86618 1008.5085,614.02109 129.91321,-53.865605 z"
+ d="M 128.6875,-52.28125 C 422.15671,170.8119 715.62225,393.90988 1009.0938,617 1057.5426,532.31639 1105.9253,447.59402 1154.3125,362.875 813.07627,223.38712 471.87791,83.805271 130.65625,-55.71875 c -5.74582,-0.709872 -6.95304,-2.336039 -1.96875,3.4375 z"
id="path4155"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="-127.697"
- inkscape:transform-center-y="359.70291" />
+ inkscape:connector-curvature="0" />
<path
- inkscape:transform-center-y="241.80463"
- inkscape:transform-center-x="-210.62887"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#6495ed;fill-opacity:1;stroke:none"
+ d="m 124.625,-55.25 c 11.49661,7.65285 25.36314,10.997479 37.85265,16.845365 C 492.57663,96.600179 822.69332,231.56217 1152.7812,366.59375 1177.6187,272.25387 1202.4485,177.9118 1227.25,83.5625 861.55093,37.102931 495.85436,-9.3765303 130.15625,-55.84375 c -1.84375,0.197917 -3.6875,0.395833 -5.53125,0.59375 z"
id="path4157"
- d="M 1224.7423,85.243635 1151.4329,363.86618 129.91321,-53.865605 z"
- style="fill:#6495ed;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#191970;fill-opacity:1;stroke:none"
- d="m 1223.441,-202.85902 244.4737,5.86844 -7.479,283.365984 -235.6934,-1.131769 -1094.82909,-139.10924 z"
+ d="M 1223.1562,-204.8125 C 858.64583,-155.15625 494.13542,-105.5 129.625,-55.84375 c -10.63187,2.231074 2.53003,4.678443 6.97541,4.819915 C 499.98245,-4.8300921 863.37376,41.293933 1226.75,87.53125 c -0.4132,-97.552139 -0.8993,-195.10411 -1.3125,-292.65625 -0.7604,0.10417 -1.5208,0.20833 -2.2813,0.3125 z"
id="path4159"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccccc"
- inkscape:transform-center-x="-233.21479"
- inkscape:transform-center-y="93.71695" />
+ inkscape:connector-curvature="0" />
<path
- inkscape:transform-center-y="-55.815319"
- inkscape:transform-center-x="-276.56225"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#0000cd;fill-opacity:1;stroke:none"
+ d="m 1146.8438,-482.65625 c -339.23963,142.3125 -678.47922,284.625 -1017.7188,426.9375 -9.73812,4.911818 3.62232,3.891314 7.99844,2.867636 362.94952,-49.426776 725.89039,-98.919726 1088.84536,-148.305136 -25.6446,-94.13097 -51.3423,-188.24759 -77,-282.375 -0.7084,0.29167 -1.4167,0.58333 -2.125,0.875 z"
id="path4161"
- d="M 1147.6176,-480.80801 1223.441,-202.85902 129.91321,-53.865605 z"
- style="fill:#0000cd;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#483d8b;fill-opacity:1;stroke:none"
- d="m 1002.4393,-729.66161 145.1783,248.8536 -1017.70439,426.942405 z"
+ d="m 1001.2188,-731.25 c -290.8438,225.26042 -581.68755,450.52083 -872.5313,675.78125 -8.13254,7.260714 4.48572,2.868522 8.45502,0.729592 C 474.92874,-196.43974 812.71179,-338.1479 1150.5,-479.84375 c -49.1616,-84.25721 -98.346,-168.50149 -147.4688,-252.78125 -0.6041,0.45833 -1.2083,0.91667 -1.8124,1.375 z"
id="path4163"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="-301.06245"
- inkscape:transform-center-y="-131.98927" />
+ inkscape:connector-curvature="0" />
<path
- inkscape:transform-center-y="-146.03113"
- inkscape:transform-center-x="-357.2628"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#9370db;fill-opacity:1;stroke:none"
+ d="m 796.21875,-933.6875 c -222.63542,292.86458 -445.27083,585.72917 -667.90625,878.59375 -5.96653,9.105122 5.0779,1.617225 8.34673,-1.473796 C 426.262,-280.86846 715.86796,-505.16528 1005.4688,-729.46875 936.16268,-798.1312 866.87379,-866.81126 797.59375,-935.5 c -0.45833,0.60417 -0.91667,1.20833 -1.375,1.8125 z"
id="path4165"
- d="m 797.7998,-932.46081 204.6395,202.7992 -872.52609,675.796005 z"
- style="fill:#9370db;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#8b008b;fill-opacity:1;stroke:none"
- d="M 547.645,-1075.3852 797.7998,-932.46081 129.91321,-53.865605 z"
+ d="m 545.8125,-1076.125 c -139.25,340.5 -278.5,681 -417.75,1021.5 -3.38129,10.347457 5.30671,0.210302 7.67379,-3.603851 221.68105,-291.611679 443.36693,-583.219679 665.04496,-874.833649 -84.68336,-48.43885 -169.40623,-96.8103 -254.125,-145.1875 -0.28125,0.7083 -0.5625,1.4167 -0.84375,2.125 z"
id="path4167"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="-359.70285"
- inkscape:transform-center-y="-127.69701" />
+ inkscape:connector-curvature="0" />
<path
- inkscape:transform-center-y="-210.62891"
- inkscape:transform-center-x="-241.80464"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#da70d6;fill-opacity:1;stroke:none"
+ d="m 267.0625,-1148.9375 c -46.375,364.9375 -92.75,729.875 -139.125,1094.8125 -0.60738,10.87705 5.16014,-1.187573 6.46219,-5.479132 C 273.06347,-398.64013 411.68449,-737.6938 550.375,-1076.7188 c -94.33988,-24.8374 -188.68195,-49.6672 -283.03125,-74.4687 -0.0937,0.75 -0.1875,1.5 -0.28125,2.25 z"
id="path4169"
- d="M 269.02235,-1148.6947 547.645,-1075.3852 129.91321,-53.865605 z"
- style="fill:#da70d6;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#c71585;fill-opacity:1;stroke:none"
- d="m -19.08024,-1147.3933 288.10259,-1.3014 -139.10914,1094.829095 z"
+ d="m -19.09375,-1149.4062 c -4.991747,0.7569 0.531179,10.6955 -0.213642,15.1622 49.081631,360.21674 98.163261,720.43349 147.244892,1080.65025 2.23107,10.631869 4.67844,-2.530033 4.81994,-6.975406 46.19373,-363.371624 92.31777,-726.752514 138.55506,-1090.118344 -96.80212,0.4068 -193.604166,0.8576 -290.40625,1.2813 z"
id="path4171"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="-93.716909"
- inkscape:transform-center-y="-233.21482" />
+ inkscape:connector-curvature="0" />
<path
- inkscape:transform-center-y="-276.56224"
- inkscape:transform-center-x="55.815318"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#db7093;fill-opacity:1;stroke:none"
+ d="m -19.625,-1149.3438 c -93.37527,25.4782 -186.74839,50.9643 -280.125,76.4376 142.57611,339.94911 285.21301,679.87301 427.8125,1019.81245 4.91182,9.738119 3.89137,-3.622323 2.86744,-7.998411 C 81.492839,-424.04169 31.989382,-786.98255 -17.40625,-1149.9375 c -0.739583,0.1979 -1.479167,0.3958 -2.21875,0.5937 z"
id="path4173"
- d="m -297.02929,-1071.5701 277.94905,-75.8232 148.99345,1093.527695 z"
- style="fill:#db7093;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ffb6c1;fill-opacity:1;stroke:none"
- d="m -545.88285,-926.39171 248.85356,-145.17839 426.9425,1017.704495 z"
+ d="m -298.03125,-1073.2812 c -83.60755,48.7545 -167.18809,97.55584 -250.8125,146.2812 225.68262,291.47562 451.443523,582.89122 677.15625,874.34375 7.26071,8.132539 2.86854,-4.485725 0.72952,-8.454987 C -12.658532,-398.88706 -154.36672,-736.65968 -296.0625,-1074.4375 c -0.65625,0.3854 -1.3125,0.7708 -1.96875,1.1563 z"
id="path4175"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="131.98927"
- inkscape:transform-center-y="-301.06252" />
+ inkscape:connector-curvature="0" />
<path
- inkscape:transform-center-y="-357.26284"
- inkscape:transform-center-x="146.03112"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
+ style="fill:#b22222;fill-opacity:1;stroke:none"
+ d="m -547.28125,-927.8125 c -68.1483,68.75797 -136.27692,137.53551 -204.4375,206.28125 293.47144,223.07979 586.93705,446.16726 880.40625,669.25 9.10512,5.966533 1.61723,-5.0779 -1.4738,-8.346727 C -97.087209,-350.23075 -321.38403,-639.83671 -545.6875,-929.4375 c -0.53125,0.54167 -1.0625,1.08333 -1.59375,1.625 z"
id="path4177"
- d="m -748.68207,-721.7523 202.79922,-204.63941 675.79606,872.526105 z"
- style="fill:#b22222;fill-opacity:1;stroke:none" />
+ inkscape:connector-curvature="0" />
<path
style="fill:#ff6347;fill-opacity:1;stroke:none"
- d="M -891.60642,-471.59738 -748.68207,-721.7523 129.91321,-53.865605 z"
+ d="m -750.4375,-722.75 c -48.00599,84.05459 -96.04734,168.08914 -144.03125,252.15625 341.22578,139.47753 682.41376,279.04888 1023.625,418.5625 10.34746,3.381284 0.21033,-5.306745 -3.60395,-7.673661 -291.61163,-221.670689 -583.21967,-443.346109 -874.83355,-665.013839 -0.38542,0.65625 -0.77083,1.3125 -1.15625,1.96875 z"
id="path4179"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="127.697"
- inkscape:transform-center-y="-359.70292" />
- <rect
- ry="3.7803428"
- y="-192"
- x="0"
- height="256"
- width="256"
- id="rect4182"
- style="fill:url(#radialGradient4218);fill-opacity:1;stroke:none;display:inline" />
- <rect
- style="fill:#ffffff;fill-opacity:1;stroke:none"
- id="rect3863"
- width="190.5"
- height="50.5"
- x="34"
- y="-65"
- ry="3.7803428" />
+ inkscape:connector-curvature="0" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="mask"
- style="display:inline"
- sodipodi:insensitive="true">
+ style="display:inline">
+ <rect
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none"
+ id="rect3863"
+ width="190.5"
+ height="50.5"
+ x="33.443436"
+ y="110.54185"
+ ry="3.7803428"
+ rx="3.7803428" />
<g
style="display:inline"
id="mask_group"
- transform="matrix(3.9239993,0,0,3.9239993,3.1838955,21.448418)">
+ transform="matrix(3.9239993,0,0,3.9239993,3.1838955,3.448418)">
<g
style="fill:none;stroke:none;display:inline"
id="eyes"
diff --git a/source/web/masthead/rainbow-masthead-centered.svg b/source/web/masthead/rainbow-masthead-centered.svg
index 8c57478..5096211 100644
--- a/source/web/masthead/rainbow-masthead-centered.svg
+++ b/source/web/masthead/rainbow-masthead-centered.svg
@@ -376,130 +376,6 @@
x="-231.93103"
y="-114.19091"
ry="0.94508576" />
- <g
- transform="matrix(0.90772304,0.41956987,-0.41956987,0.90772304,2976.8184,-352.38076)"
- id="g3055">
- <path
- inkscape:connector-curvature="0"
- id="path3057"
- d="m -23.375,-386.90625 c -24.620909,93.60523 -49.274498,187.20196 -73.875,280.8125 365.69907,46.459569 731.39564,92.93903 1097.09375,139.40625 10.87705,0.60738 -1.18757,-5.160158 -5.47916,-6.46212 -339.0464,-138.66381 -678.1105,-277.28481 -1017.14584,-415.97538 -0.197917,0.73958 -0.395833,1.47917 -0.59375,2.21875 z"
- style="fill:#a0522d;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3059"
- d="m -96.75,-107.78125 c 0.434028,96.802091 0.895794,193.604119 1.3125,290.40625 C 269.83289,132.85089 635.10424,83.083879 1000.375,33.3125 1011.0069,31.081426 997.84497,28.634057 993.39959,28.492585 630.01755,-17.701158 266.62624,-63.825183 -96.75,-110.0625 c 0,0.76042 0,1.52083 0,2.28125 z"
- style="fill:#ffa500;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3061"
- d="m -93.71875,178.375 c -4.844411,1.38527 1.91995,10.52967 1.764754,15.0418 C -67.626493,282.61145 -43.291706,371.80411 -18.96875,461 320.99081,318.42384 660.92514,175.787 1000.875,33.1875 c 9.7381,-4.91182 -3.62232,-3.891366 -7.99841,-2.867442 C 630.67814,79.671706 268.4797,129.02335 -93.71875,178.375 z"
- style="fill:#f0e68c;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3063"
- d="M 999.3125,29.5 C 659.3746,172.10322 319.43988,314.71401 -20.5,457.3125 28.661648,541.56971 77.846034,625.81399 126.96875,710.09375 418.44437,484.41113 709.85997,258.65023 1001.3125,32.9375 c 3.5332,-4.634438 5.4802,-4.842875 -2,-3.4375 z"
- style="fill:#9acd32;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3065"
- d="M 998.875,29.75 C 707.42748,255.47968 415.97679,481.20526 124.53125,706.9375 193.84745,775.60024 263.14733,844.27972 332.4375,912.96875 555.51729,619.49731 778.60476,326.0317 1001.6875,32.5625 c 2.1913,-5.370076 4.0582,-6.097601 -2.8125,-2.8125 z"
- style="fill:#228b22;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3067"
- d="M 998.5,30.125 C 775.41726,323.5942 552.32979,617.05981 329.25,910.53125 413.92308,958.96985 498.63525,1007.3418 583.34375,1055.7188 722.83159,714.49292 862.41349,373.305 1001.9375,32.09375 c 0.7099,-5.745823 2.336,-6.953044 -3.4375,-1.96875 z"
- style="fill:#3cb371;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3069"
- d="M 998.25,30.59375 C 858.70299,371.78946 719.19874,713.00284 579.625,1054.1875 c 94.33988,24.8374 188.68195,49.6672 283.03125,74.4687 46.45955,-365.68861 92.93903,-731.37476 139.40625,-1097.06245 -0.787,-5.739317 0.4726,-7.323547 -3.8125,-1 z"
- style="fill:#7fffd4;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3071"
- d="M 998.125,31.09375 C 951.63712,396.78009 905.21894,762.4757 858.6875,1128.1562 c 97.56255,-0.4034 195.1249,-0.8778 292.6875,-1.2812 -49.7741,-365.27039 -99.5411,-730.54174 -149.3125,-1095.8125 -2.25476,-5.313952 -1.4165,-7.182336 -3.9375,0.03125 z"
- style="fill:#008080;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3073"
- d="m 998.125,31.625 c 49.7521,365.2615 99.5706,730.51433 149.2812,1095.7812 94.1208,-25.6542 188.2266,-51.3637 282.3438,-77.0312 C 1287.1739,710.42584 1144.537,370.50194 1001.9375,30.5625 c -3.56654,-4.629205 -3.25129,-6.532593 -3.8125,1.0625 z"
- style="fill:#b0e0e6;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3075"
- d="m 998.25,32.125 c 142.6032,339.92748 285.2141,679.85177 427.8125,1019.7812 84.257,-49.1516 168.5017,-98.32472 252.7813,-147.43745 C 1453.1611,612.99313 1227.4002,321.57753 1001.6875,30.125 c -4.63444,-3.533224 -4.84287,-5.480195 -3.4375,2 z"
- style="fill:#87ceeb;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3077"
- d="m 998.5,32.5625 c 225.7297,291.44752 451.4553,582.89821 677.1875,874.34375 C 1744.3502,837.59005 1813.0297,768.29017 1881.7188,699 1588.2473,475.92021 1294.7817,252.83274 1001.3125,29.75 995.94242,27.558657 995.2149,25.691769 998.5,32.5625 z"
- style="fill:#4682b4;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3079"
- d="m 998.875,32.9375 c 293.4692,223.08274 586.9348,446.17021 880.4062,669.25 48.4489,-84.68361 96.8316,-169.40598 145.2188,-254.125 C 1683.2638,308.58493 1342.0654,169.01362 1000.8438,29.5 c -5.74587,-0.709872 -6.95309,-2.336039 -1.9688,3.4375 z"
- style="fill:#1e90ff;fill-opacity:1;stroke:#1e90ff;stroke-width:1;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path3081"
- d="m 994.8125,29.96875 c 11.4966,7.652805 25.3634,10.996868 37.853,16.844491 330.0989,134.994709 660.2155,269.946449 990.3033,404.968009 24.8275,-94.33974 49.6458,-188.68209 74.4374,-283.03125 -365.6886,-46.44926 -731.3748,-92.918179 -1097.0624,-139.375 -1.8438,0.197917 -3.68755,0.395833 -5.5313,0.59375 z"
- style="fill:#6495ed;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3083"
- d="m 2093.3438,-119.625 c -364.5105,49.666667 -729.0209,99.333333 -1093.5313,149 -10.63187,2.231077 2.53,4.678487 6.9754,4.819744 363.3716,46.183402 726.7525,92.296936 1090.1183,138.524006 -0.4033,-97.552136 -0.8778,-195.104114 -1.2812,-292.65625 -0.7604,0.10417 -1.5208,0.20833 -2.2812,0.3125 z"
- style="fill:#191970;fill-opacity:1;stroke:#000000;stroke-width:0.002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3085"
- d="M 2017,-397.5625 C 1677.7708,-255.20833 1338.5417,-112.85417 999.3125,29.5 c -9.73812,4.91182 3.6223,3.891366 7.9984,2.867442 362.9495,-49.437103 725.8904,-98.94056 1088.8453,-148.336192 -25.6548,-94.16225 -51.3631,-188.31007 -77.0312,-282.46875 -0.7083,0.29167 -1.4167,0.58333 -2.125,0.875 z"
- style="fill:#0000cd;fill-opacity:1;stroke:#0000cd;stroke-width:1.00300002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3087"
- d="M 1871.4062,-646.0625 C 1580.5625,-420.79167 1289.7188,-195.52083 998.875,29.75 c -8.13254,7.260714 4.4857,2.868541 8.455,0.729522 337.7758,-141.700552 675.5484,-283.408742 1013.3262,-425.104522 -49.1519,-84.26723 -98.3245,-168.52271 -147.4374,-252.8125 -0.6042,0.45833 -1.2084,0.91667 -1.8126,1.375 z"
- style="fill:#483d8b;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3089"
- d="M 1666.375,-848.46875 C 1443.75,-555.60417 1221.125,-262.73958 998.5,30.125 c -5.96653,9.105124 5.0779,1.617258 8.3466,-1.47392 289.6029,-224.31127 579.2088,-448.61856 868.8096,-672.93233 -69.3159,-68.65261 -138.6163,-137.3211 -207.9062,-206 -0.4583,0.60417 -0.9167,1.20833 -1.375,1.8125 z"
- style="fill:#9370db;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3091"
- d="M 1415.9688,-990.9375 C 1276.7292,-650.42708 1137.4896,-309.91667 998.25,30.59375 c -3.38128,10.347459 5.3067,0.210327 7.6737,-3.603946 221.6706,-291.611634 443.3461,-583.219674 665.0138,-874.833554 -84.6836,-48.44884 -169.406,-96.83153 -254.125,-145.21875 -0.2812,0.70833 -0.5625,1.41667 -0.8437,2.125 z"
- style="fill:#8b008b;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3093"
- d="m 1137.2188,-1063.75 c -46.3646,364.94792 -92.7292,729.89583 -139.0938,1094.84375 -0.60738,10.877052 5.1602,-1.187547 6.4619,-5.47923 138.6535,-339.04637 277.264,-678.1105 415.9443,-1017.14577 -94.3398,-24.83745 -188.6819,-49.66725 -283.0312,-74.46875 -0.094,0.75 -0.1875,1.5 -0.2812,2.25 z"
- style="fill:#da70d6;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3095"
- d="m 851.09375,-1064.1875 c -4.99175,0.757 0.53118,10.6955 -0.21364,15.1622 49.08163,360.21679 98.16326,720.43354 147.24489,1080.6503 2.2311,10.631869 4.6785,-2.530026 4.8197,-6.975434 46.1834,-363.382026 92.297,-726.773346 138.5241,-1090.149566 -96.7918,0.4167 -193.58338,0.8785 -290.37505,1.3125 z"
- style="fill:#c71585;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3097"
- d="m 850.5625,-1064.125 c -93.37525,25.4678 -186.74851,50.943 -280.125,76.40625 142.57616,339.95956 285.213,679.89389 427.8125,1019.84375 4.9118,9.738119 3.8914,-3.622323 2.8674,-7.998411 C 951.68034,-338.82294 902.17688,-701.7638 852.78125,-1064.7188 c -0.73958,0.198 -1.47917,0.3959 -2.21875,0.5938 z"
- style="fill:#db7093;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3099"
- d="m 572.15625,-988.09375 c -83.61798,48.76496 -167.20884,97.57687 -250.84375,146.3125 225.69295,291.47568 451.46437,582.89121 677.1875,874.34375 7.2607,8.13254 2.8685,-4.485717 0.72959,-8.455016 C 857.52901,-313.67874 715.82085,-651.46179 574.125,-989.25 c -0.65625,0.38542 -1.3125,0.77083 -1.96875,1.15625 z"
- style="fill:#ffb6c1;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3101"
- d="m 322.875,-842.59375 c -68.13788,68.74755 -136.25608,137.51468 -204.40625,206.25 293.4715,223.09012 586.93704,446.1881 880.40625,669.28125 9.1051,5.966532 1.6173,-5.077925 -1.47392,-8.346631 C 773.08981,-265.01195 548.78252,-554.61786 324.46875,-844.21875 c -0.53125,0.54167 -1.0625,1.08333 -1.59375,1.625 z"
- style="fill:#b22222;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3103"
- d="m 119.75,-637.5625 c -48.016345,84.05463 -96.068549,168.08893 -144.0625,252.15625 341.23623,139.48788 682.43459,279.06973 1023.65625,418.59375 10.34745,3.381286 0.2103,-5.306712 -3.60385,-7.673786 C 704.12822,-196.16734 412.52022,-417.85322 120.90625,-639.53125 c -0.38542,0.65625 -0.77083,1.3125 -1.15625,1.96875 z"
- style="fill:#ff6347;fill-opacity:1;stroke:none" />
- </g>
</g>
<g
inkscape:groupmode="layer"
diff --git a/source/web/masthead/rainbow-masthead-large.svg b/source/web/masthead/rainbow-masthead-large.svg
index 41ddce8..b2642ed 100644
--- a/source/web/masthead/rainbow-masthead-large.svg
+++ b/source/web/masthead/rainbow-masthead-large.svg
@@ -11,7 +11,7 @@
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="2000"
- height="190"
+ height="200"
id="svg3088"
version="1.1"
inkscape:version="0.48.4 r9939"
@@ -85,7 +85,7 @@
xlink:href="#linearGradient4055-4"
id="linearGradient3799"
gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-1,0,0,1,512,0)"
+ gradientTransform="matrix(-1,0,0,1,512,-1.924623)"
x1="456"
y1="160"
x2="360"
@@ -106,7 +106,7 @@
xlink:href="#linearGradient4141-7"
id="radialGradient3801"
gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.3716765,0.0039729,-0.00294998,1.1635062,-93.675296,-62.76795)"
+ gradientTransform="matrix(1.3716765,0.0039729,-0.00294998,1.1635062,-93.675296,-64.692573)"
cx="256"
cy="211.69231"
fx="256"
@@ -128,7 +128,7 @@
xlink:href="#linearGradient4038-5"
id="radialGradient3803"
gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.7777373,0,-6.9715088e-8,1.4057042,56.899268,-12.013064)"
+ gradientTransform="matrix(0.7777373,0,-6.9715088e-8,1.4057042,56.899268,-13.937687)"
cx="256"
cy="241.88095"
fx="256"
@@ -150,7 +150,7 @@
xlink:href="#linearGradient4020-4"
id="linearGradient3805"
gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0139304,0,0,1,-6.4637045,0)"
+ gradientTransform="matrix(1.0139304,0,0,1,-6.4637045,-1.924623)"
x1="456"
y1="160"
x2="360"
@@ -174,9 +174,9 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
- inkscape:zoom="1"
- inkscape:cx="843.5545"
- inkscape:cy="-106.57662"
+ inkscape:zoom="2"
+ inkscape:cx="914.99663"
+ inkscape:cy="92.826354"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:document-units="px"
@@ -198,10 +198,10 @@
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
borderlayer="true"
- inkscape:window-width="1829"
- inkscape:window-height="953"
- inkscape:window-x="1970"
- inkscape:window-y="43"
+ inkscape:window-width="828"
+ inkscape:window-height="498"
+ inkscape:window-x="2479"
+ inkscape:window-y="498"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
@@ -224,7 +224,7 @@
id="guide3104" />
<sodipodi:guide
orientation="0,1"
- position="633,95"
+ position="0,100"
id="guide3103" />
</sodipodi:namedview>
<metadata
@@ -235,7 +235,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
+ <dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@@ -243,11 +243,11 @@
id="layer1"
inkscape:label="rainbow"
inkscape:groupmode="layer"
- transform="translate(0,126)"
+ transform="translate(0,136)"
style="display:inline">
<g
id="g3054"
- transform="matrix(0.93071194,0.20844557,-0.43019585,0.45096387,-34.231042,-253.2603)">
+ transform="matrix(0.93071194,0.20844557,-0.43019585,0.45096387,-25.231042,-256.2603)">
<path
style="fill:#a0522d;fill-opacity:1;stroke:none"
d="m -23.375,-386.90625 c -24.620909,93.60523 -49.274498,187.20196 -73.875,280.8125 365.69907,46.459569 731.39564,92.93903 1097.09375,139.40625 10.87705,0.60738 -1.18757,-5.160158 -5.47916,-6.46212 -339.0464,-138.66381 -678.1105,-277.28481 -1017.14584,-415.97538 -0.197917,0.73958 -0.395833,1.47917 -0.59375,2.21875 z"
@@ -379,145 +379,21 @@
id="rect3896"
width="2438.1042"
height="319.61227"
- x="-346.93103"
- y="-171.19092"
+ x="-337.93103"
+ y="-174.19092"
ry="0.94508576"
rx="0.94508576" />
- <g
- transform="matrix(0.90772304,0.41956987,-0.41956987,0.90772304,2861.8184,-409.38076)"
- id="g3055">
- <path
- inkscape:connector-curvature="0"
- id="path3057"
- d="m -23.375,-386.90625 c -24.620909,93.60523 -49.274498,187.20196 -73.875,280.8125 365.69907,46.459569 731.39564,92.93903 1097.09375,139.40625 10.87705,0.60738 -1.18757,-5.160158 -5.47916,-6.46212 -339.0464,-138.66381 -678.1105,-277.28481 -1017.14584,-415.97538 -0.197917,0.73958 -0.395833,1.47917 -0.59375,2.21875 z"
- style="fill:#a0522d;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3059"
- d="m -96.75,-107.78125 c 0.434028,96.802091 0.895794,193.604119 1.3125,290.40625 C 269.83289,132.85089 635.10424,83.083879 1000.375,33.3125 1011.0069,31.081426 997.84497,28.634057 993.39959,28.492585 630.01755,-17.701158 266.62624,-63.825183 -96.75,-110.0625 c 0,0.76042 0,1.52083 0,2.28125 z"
- style="fill:#ffa500;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3061"
- d="m -93.71875,178.375 c -4.844411,1.38527 1.91995,10.52967 1.764754,15.0418 C -67.626493,282.61145 -43.291706,371.80411 -18.96875,461 320.99081,318.42384 660.92514,175.787 1000.875,33.1875 c 9.7381,-4.91182 -3.62232,-3.891366 -7.99841,-2.867442 C 630.67814,79.671706 268.4797,129.02335 -93.71875,178.375 z"
- style="fill:#f0e68c;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3063"
- d="M 999.3125,29.5 C 659.3746,172.10322 319.43988,314.71401 -20.5,457.3125 28.661648,541.56971 77.846034,625.81399 126.96875,710.09375 418.44437,484.41113 709.85997,258.65023 1001.3125,32.9375 c 3.5332,-4.634438 5.4802,-4.842875 -2,-3.4375 z"
- style="fill:#9acd32;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3065"
- d="M 998.875,29.75 C 707.42748,255.47968 415.97679,481.20526 124.53125,706.9375 193.84745,775.60024 263.14733,844.27972 332.4375,912.96875 555.51729,619.49731 778.60476,326.0317 1001.6875,32.5625 c 2.1913,-5.370076 4.0582,-6.097601 -2.8125,-2.8125 z"
- style="fill:#228b22;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3067"
- d="M 998.5,30.125 C 775.41726,323.5942 552.32979,617.05981 329.25,910.53125 413.92308,958.96985 498.63525,1007.3418 583.34375,1055.7188 722.83159,714.49292 862.41349,373.305 1001.9375,32.09375 c 0.7099,-5.745823 2.336,-6.953044 -3.4375,-1.96875 z"
- style="fill:#3cb371;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3069"
- d="M 998.25,30.59375 C 858.70299,371.78946 719.19874,713.00284 579.625,1054.1875 c 94.33988,24.8374 188.68195,49.6672 283.03125,74.4687 46.45955,-365.68861 92.93903,-731.37476 139.40625,-1097.06245 -0.787,-5.739317 0.4726,-7.323547 -3.8125,-1 z"
- style="fill:#7fffd4;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3071"
- d="M 998.125,31.09375 C 951.63712,396.78009 905.21894,762.4757 858.6875,1128.1562 c 97.56255,-0.4034 195.1249,-0.8778 292.6875,-1.2812 -49.7741,-365.27039 -99.5411,-730.54174 -149.3125,-1095.8125 -2.25476,-5.313952 -1.4165,-7.182336 -3.9375,0.03125 z"
- style="fill:#008080;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3073"
- d="m 998.125,31.625 c 49.7521,365.2615 99.5706,730.51433 149.2812,1095.7812 94.1208,-25.6542 188.2266,-51.3637 282.3438,-77.0312 C 1287.1739,710.42584 1144.537,370.50194 1001.9375,30.5625 c -3.56654,-4.629205 -3.25129,-6.532593 -3.8125,1.0625 z"
- style="fill:#b0e0e6;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3075"
- d="m 998.25,32.125 c 142.6032,339.92748 285.2141,679.85177 427.8125,1019.7812 84.257,-49.1516 168.5017,-98.32472 252.7813,-147.43745 C 1453.1611,612.99313 1227.4002,321.57753 1001.6875,30.125 c -4.63444,-3.533224 -4.84287,-5.480195 -3.4375,2 z"
- style="fill:#87ceeb;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3077"
- d="m 998.5,32.5625 c 225.7297,291.44752 451.4553,582.89821 677.1875,874.34375 C 1744.3502,837.59005 1813.0297,768.29017 1881.7188,699 1588.2473,475.92021 1294.7817,252.83274 1001.3125,29.75 995.94242,27.558657 995.2149,25.691769 998.5,32.5625 z"
- style="fill:#4682b4;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3079"
- d="m 998.875,32.9375 c 293.4692,223.08274 586.9348,446.17021 880.4062,669.25 48.4489,-84.68361 96.8316,-169.40598 145.2188,-254.125 C 1683.2638,308.58493 1342.0654,169.01362 1000.8438,29.5 c -5.74587,-0.709872 -6.95309,-2.336039 -1.9688,3.4375 z"
- style="fill:#1e90ff;fill-opacity:1;stroke:#1e90ff;stroke-width:1;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path3081"
- d="m 994.8125,29.96875 c 11.4966,7.652805 25.3634,10.996868 37.853,16.844491 330.0989,134.994709 660.2155,269.946449 990.3033,404.968009 24.8275,-94.33974 49.6458,-188.68209 74.4374,-283.03125 -365.6886,-46.44926 -731.3748,-92.918179 -1097.0624,-139.375 -1.8438,0.197917 -3.68755,0.395833 -5.5313,0.59375 z"
- style="fill:#6495ed;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3083"
- d="m 2093.3438,-119.625 c -364.5105,49.666667 -729.0209,99.333333 -1093.5313,149 -10.63187,2.231077 2.53,4.678487 6.9754,4.819744 363.3716,46.183402 726.7525,92.296936 1090.1183,138.524006 -0.4033,-97.552136 -0.8778,-195.104114 -1.2812,-292.65625 -0.7604,0.10417 -1.5208,0.20833 -2.2812,0.3125 z"
- style="fill:#191970;fill-opacity:1;stroke:#000000;stroke-width:0.002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3085"
- d="M 2017,-397.5625 C 1677.7708,-255.20833 1338.5417,-112.85417 999.3125,29.5 c -9.73812,4.91182 3.6223,3.891366 7.9984,2.867442 362.9495,-49.437103 725.8904,-98.94056 1088.8453,-148.336192 -25.6548,-94.16225 -51.3631,-188.31007 -77.0312,-282.46875 -0.7083,0.29167 -1.4167,0.58333 -2.125,0.875 z"
- style="fill:#0000cd;fill-opacity:1;stroke:#0000cd;stroke-width:1.00300002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3087"
- d="M 1871.4062,-646.0625 C 1580.5625,-420.79167 1289.7188,-195.52083 998.875,29.75 c -8.13254,7.260714 4.4857,2.868541 8.455,0.729522 337.7758,-141.700552 675.5484,-283.408742 1013.3262,-425.104522 -49.1519,-84.26723 -98.3245,-168.52271 -147.4374,-252.8125 -0.6042,0.45833 -1.2084,0.91667 -1.8126,1.375 z"
- style="fill:#483d8b;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3089"
- d="M 1666.375,-848.46875 C 1443.75,-555.60417 1221.125,-262.73958 998.5,30.125 c -5.96653,9.105124 5.0779,1.617258 8.3466,-1.47392 289.6029,-224.31127 579.2088,-448.61856 868.8096,-672.93233 -69.3159,-68.65261 -138.6163,-137.3211 -207.9062,-206 -0.4583,0.60417 -0.9167,1.20833 -1.375,1.8125 z"
- style="fill:#9370db;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3091"
- d="M 1415.9688,-990.9375 C 1276.7292,-650.42708 1137.4896,-309.91667 998.25,30.59375 c -3.38128,10.347459 5.3067,0.210327 7.6737,-3.603946 221.6706,-291.611634 443.3461,-583.219674 665.0138,-874.833554 -84.6836,-48.44884 -169.406,-96.83153 -254.125,-145.21875 -0.2812,0.70833 -0.5625,1.41667 -0.8437,2.125 z"
- style="fill:#8b008b;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3093"
- d="m 1137.2188,-1063.75 c -46.3646,364.94792 -92.7292,729.89583 -139.0938,1094.84375 -0.60738,10.877052 5.1602,-1.187547 6.4619,-5.47923 138.6535,-339.04637 277.264,-678.1105 415.9443,-1017.14577 -94.3398,-24.83745 -188.6819,-49.66725 -283.0312,-74.46875 -0.094,0.75 -0.1875,1.5 -0.2812,2.25 z"
- style="fill:#da70d6;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3095"
- d="m 851.09375,-1064.1875 c -4.99175,0.757 0.53118,10.6955 -0.21364,15.1622 49.08163,360.21679 98.16326,720.43354 147.24489,1080.6503 2.2311,10.631869 4.6785,-2.530026 4.8197,-6.975434 46.1834,-363.382026 92.297,-726.773346 138.5241,-1090.149566 -96.7918,0.4167 -193.58338,0.8785 -290.37505,1.3125 z"
- style="fill:#c71585;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3097"
- d="m 850.5625,-1064.125 c -93.37525,25.4678 -186.74851,50.943 -280.125,76.40625 142.57616,339.95956 285.213,679.89389 427.8125,1019.84375 4.9118,9.738119 3.8914,-3.622323 2.8674,-7.998411 C 951.68034,-338.82294 902.17688,-701.7638 852.78125,-1064.7188 c -0.73958,0.198 -1.47917,0.3959 -2.21875,0.5938 z"
- style="fill:#db7093;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3099"
- d="m 572.15625,-988.09375 c -83.61798,48.76496 -167.20884,97.57687 -250.84375,146.3125 225.69295,291.47568 451.46437,582.89121 677.1875,874.34375 7.2607,8.13254 2.8685,-4.485717 0.72959,-8.455016 C 857.52901,-313.67874 715.82085,-651.46179 574.125,-989.25 c -0.65625,0.38542 -1.3125,0.77083 -1.96875,1.15625 z"
- style="fill:#ffb6c1;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3101"
- d="m 322.875,-842.59375 c -68.13788,68.74755 -136.25608,137.51468 -204.40625,206.25 293.4715,223.09012 586.93704,446.1881 880.40625,669.28125 9.1051,5.966532 1.6173,-5.077925 -1.47392,-8.346631 C 773.08981,-265.01195 548.78252,-554.61786 324.46875,-844.21875 c -0.53125,0.54167 -1.0625,1.08333 -1.59375,1.625 z"
- style="fill:#b22222;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3103"
- d="m 119.75,-637.5625 c -48.016345,84.05463 -96.068549,168.08893 -144.0625,252.15625 341.23623,139.48788 682.43459,279.06973 1023.65625,418.59375 10.34745,3.381286 0.2103,-5.306712 -3.60385,-7.673786 C 704.12822,-196.16734 412.52022,-417.85322 120.90625,-639.53125 c -0.38542,0.65625 -0.77083,1.3125 -1.15625,1.96875 z"
- style="fill:#ff6347;fill-opacity:1;stroke:none" />
- </g>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="mask"
- style="display:inline"
- transform="translate(0,-66)">
+ style="display:inline;opacity:1"
+ transform="translate(0,-56)">
<g
style="display:inline"
id="mask_group"
- transform="matrix(3.7704056,0,0,3.7704056,764.69239,35.670825)">
+ transform="matrix(3.5605206,0,0,3.5605206,777.42198,35.578315)">
<g
style="fill:none;stroke:none;display:inline"
id="eyes"
@@ -586,7 +462,7 @@
id="layer4"
inkscape:label="Text"
style="display:none"
- transform="translate(0,62)">
+ transform="translate(0,72)">
<text
xml:space="preserve"
style="font-size:72px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:FontAwesome;-inkscape-font-specification:FontAwesome"
diff --git a/source/web/masthead/rainbow-masthead-medium.svg b/source/web/masthead/rainbow-masthead-medium.svg
index ff04ecc..f34a989 100644
--- a/source/web/masthead/rainbow-masthead-medium.svg
+++ b/source/web/masthead/rainbow-masthead-medium.svg
@@ -11,7 +11,7 @@
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="2000"
- height="128"
+ height="130"
id="svg3088"
version="1.1"
inkscape:version="0.48.4 r9939"
@@ -174,9 +174,9 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
- inkscape:zoom="1"
- inkscape:cx="961.5545"
- inkscape:cy="-106.57662"
+ inkscape:zoom="0.5"
+ inkscape:cx="912.08708"
+ inkscape:cy="62.037519"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:document-units="px"
@@ -198,8 +198,8 @@
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
borderlayer="true"
- inkscape:window-width="1829"
- inkscape:window-height="953"
+ inkscape:window-width="735"
+ inkscape:window-height="886"
inkscape:window-x="1970"
inkscape:window-y="43"
inkscape:window-maximized="0">
@@ -222,6 +222,10 @@
orientation="1,0"
position="1500,0"
id="guide3104" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,65"
+ id="guide3083" />
</sodipodi:namedview>
<metadata
id="metadata3093">
@@ -239,10 +243,10 @@
id="layer1"
inkscape:label="rainbow"
inkscape:groupmode="layer"
- transform="translate(0,64)">
+ transform="translate(0,66)">
<g
id="g3054"
- transform="matrix(0.93071194,0.20844557,-0.43019585,0.45096387,-2.231042,-223.2603)">
+ transform="matrix(0.93071194,0.20844557,-0.43019585,0.45096387,0.768958,-222.2603)">
<path
style="fill:#a0522d;fill-opacity:1;stroke:none"
d="m -23.375,-386.90625 c -24.620909,93.60523 -49.274498,187.20196 -73.875,280.8125 365.69907,46.459569 731.39564,92.93903 1097.09375,139.40625 10.87705,0.60738 -1.18757,-5.160158 -5.47916,-6.46212 -339.0464,-138.66381 -678.1105,-277.28481 -1017.14584,-415.97538 -0.197917,0.73958 -0.395833,1.47917 -0.59375,2.21875 z"
@@ -374,145 +378,21 @@
id="rect3896"
width="2438.1042"
height="319.61227"
- x="-314.93103"
- y="-141.19092"
+ x="-311.93103"
+ y="-140.19092"
ry="0.94508576"
rx="0.94508576" />
- <g
- transform="matrix(0.90772304,0.41956987,-0.41956987,0.90772304,2893.8184,-379.38076)"
- id="g3055">
- <path
- inkscape:connector-curvature="0"
- id="path3057"
- d="m -23.375,-386.90625 c -24.620909,93.60523 -49.274498,187.20196 -73.875,280.8125 365.69907,46.459569 731.39564,92.93903 1097.09375,139.40625 10.87705,0.60738 -1.18757,-5.160158 -5.47916,-6.46212 -339.0464,-138.66381 -678.1105,-277.28481 -1017.14584,-415.97538 -0.197917,0.73958 -0.395833,1.47917 -0.59375,2.21875 z"
- style="fill:#a0522d;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3059"
- d="m -96.75,-107.78125 c 0.434028,96.802091 0.895794,193.604119 1.3125,290.40625 C 269.83289,132.85089 635.10424,83.083879 1000.375,33.3125 1011.0069,31.081426 997.84497,28.634057 993.39959,28.492585 630.01755,-17.701158 266.62624,-63.825183 -96.75,-110.0625 c 0,0.76042 0,1.52083 0,2.28125 z"
- style="fill:#ffa500;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3061"
- d="m -93.71875,178.375 c -4.844411,1.38527 1.91995,10.52967 1.764754,15.0418 C -67.626493,282.61145 -43.291706,371.80411 -18.96875,461 320.99081,318.42384 660.92514,175.787 1000.875,33.1875 c 9.7381,-4.91182 -3.62232,-3.891366 -7.99841,-2.867442 C 630.67814,79.671706 268.4797,129.02335 -93.71875,178.375 z"
- style="fill:#f0e68c;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3063"
- d="M 999.3125,29.5 C 659.3746,172.10322 319.43988,314.71401 -20.5,457.3125 28.661648,541.56971 77.846034,625.81399 126.96875,710.09375 418.44437,484.41113 709.85997,258.65023 1001.3125,32.9375 c 3.5332,-4.634438 5.4802,-4.842875 -2,-3.4375 z"
- style="fill:#9acd32;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3065"
- d="M 998.875,29.75 C 707.42748,255.47968 415.97679,481.20526 124.53125,706.9375 193.84745,775.60024 263.14733,844.27972 332.4375,912.96875 555.51729,619.49731 778.60476,326.0317 1001.6875,32.5625 c 2.1913,-5.370076 4.0582,-6.097601 -2.8125,-2.8125 z"
- style="fill:#228b22;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3067"
- d="M 998.5,30.125 C 775.41726,323.5942 552.32979,617.05981 329.25,910.53125 413.92308,958.96985 498.63525,1007.3418 583.34375,1055.7188 722.83159,714.49292 862.41349,373.305 1001.9375,32.09375 c 0.7099,-5.745823 2.336,-6.953044 -3.4375,-1.96875 z"
- style="fill:#3cb371;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3069"
- d="M 998.25,30.59375 C 858.70299,371.78946 719.19874,713.00284 579.625,1054.1875 c 94.33988,24.8374 188.68195,49.6672 283.03125,74.4687 46.45955,-365.68861 92.93903,-731.37476 139.40625,-1097.06245 -0.787,-5.739317 0.4726,-7.323547 -3.8125,-1 z"
- style="fill:#7fffd4;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3071"
- d="M 998.125,31.09375 C 951.63712,396.78009 905.21894,762.4757 858.6875,1128.1562 c 97.56255,-0.4034 195.1249,-0.8778 292.6875,-1.2812 -49.7741,-365.27039 -99.5411,-730.54174 -149.3125,-1095.8125 -2.25476,-5.313952 -1.4165,-7.182336 -3.9375,0.03125 z"
- style="fill:#008080;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3073"
- d="m 998.125,31.625 c 49.7521,365.2615 99.5706,730.51433 149.2812,1095.7812 94.1208,-25.6542 188.2266,-51.3637 282.3438,-77.0312 C 1287.1739,710.42584 1144.537,370.50194 1001.9375,30.5625 c -3.56654,-4.629205 -3.25129,-6.532593 -3.8125,1.0625 z"
- style="fill:#b0e0e6;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3075"
- d="m 998.25,32.125 c 142.6032,339.92748 285.2141,679.85177 427.8125,1019.7812 84.257,-49.1516 168.5017,-98.32472 252.7813,-147.43745 C 1453.1611,612.99313 1227.4002,321.57753 1001.6875,30.125 c -4.63444,-3.533224 -4.84287,-5.480195 -3.4375,2 z"
- style="fill:#87ceeb;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3077"
- d="m 998.5,32.5625 c 225.7297,291.44752 451.4553,582.89821 677.1875,874.34375 C 1744.3502,837.59005 1813.0297,768.29017 1881.7188,699 1588.2473,475.92021 1294.7817,252.83274 1001.3125,29.75 995.94242,27.558657 995.2149,25.691769 998.5,32.5625 z"
- style="fill:#4682b4;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3079"
- d="m 998.875,32.9375 c 293.4692,223.08274 586.9348,446.17021 880.4062,669.25 48.4489,-84.68361 96.8316,-169.40598 145.2188,-254.125 C 1683.2638,308.58493 1342.0654,169.01362 1000.8438,29.5 c -5.74587,-0.709872 -6.95309,-2.336039 -1.9688,3.4375 z"
- style="fill:#1e90ff;fill-opacity:1;stroke:#1e90ff;stroke-width:1;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path3081"
- d="m 994.8125,29.96875 c 11.4966,7.652805 25.3634,10.996868 37.853,16.844491 330.0989,134.994709 660.2155,269.946449 990.3033,404.968009 24.8275,-94.33974 49.6458,-188.68209 74.4374,-283.03125 -365.6886,-46.44926 -731.3748,-92.918179 -1097.0624,-139.375 -1.8438,0.197917 -3.68755,0.395833 -5.5313,0.59375 z"
- style="fill:#6495ed;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3083"
- d="m 2093.3438,-119.625 c -364.5105,49.666667 -729.0209,99.333333 -1093.5313,149 -10.63187,2.231077 2.53,4.678487 6.9754,4.819744 363.3716,46.183402 726.7525,92.296936 1090.1183,138.524006 -0.4033,-97.552136 -0.8778,-195.104114 -1.2812,-292.65625 -0.7604,0.10417 -1.5208,0.20833 -2.2812,0.3125 z"
- style="fill:#191970;fill-opacity:1;stroke:#000000;stroke-width:0.002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3085"
- d="M 2017,-397.5625 C 1677.7708,-255.20833 1338.5417,-112.85417 999.3125,29.5 c -9.73812,4.91182 3.6223,3.891366 7.9984,2.867442 362.9495,-49.437103 725.8904,-98.94056 1088.8453,-148.336192 -25.6548,-94.16225 -51.3631,-188.31007 -77.0312,-282.46875 -0.7083,0.29167 -1.4167,0.58333 -2.125,0.875 z"
- style="fill:#0000cd;fill-opacity:1;stroke:#0000cd;stroke-width:1.00300002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3087"
- d="M 1871.4062,-646.0625 C 1580.5625,-420.79167 1289.7188,-195.52083 998.875,29.75 c -8.13254,7.260714 4.4857,2.868541 8.455,0.729522 337.7758,-141.700552 675.5484,-283.408742 1013.3262,-425.104522 -49.1519,-84.26723 -98.3245,-168.52271 -147.4374,-252.8125 -0.6042,0.45833 -1.2084,0.91667 -1.8126,1.375 z"
- style="fill:#483d8b;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3089"
- d="M 1666.375,-848.46875 C 1443.75,-555.60417 1221.125,-262.73958 998.5,30.125 c -5.96653,9.105124 5.0779,1.617258 8.3466,-1.47392 289.6029,-224.31127 579.2088,-448.61856 868.8096,-672.93233 -69.3159,-68.65261 -138.6163,-137.3211 -207.9062,-206 -0.4583,0.60417 -0.9167,1.20833 -1.375,1.8125 z"
- style="fill:#9370db;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3091"
- d="M 1415.9688,-990.9375 C 1276.7292,-650.42708 1137.4896,-309.91667 998.25,30.59375 c -3.38128,10.347459 5.3067,0.210327 7.6737,-3.603946 221.6706,-291.611634 443.3461,-583.219674 665.0138,-874.833554 -84.6836,-48.44884 -169.406,-96.83153 -254.125,-145.21875 -0.2812,0.70833 -0.5625,1.41667 -0.8437,2.125 z"
- style="fill:#8b008b;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3093"
- d="m 1137.2188,-1063.75 c -46.3646,364.94792 -92.7292,729.89583 -139.0938,1094.84375 -0.60738,10.877052 5.1602,-1.187547 6.4619,-5.47923 138.6535,-339.04637 277.264,-678.1105 415.9443,-1017.14577 -94.3398,-24.83745 -188.6819,-49.66725 -283.0312,-74.46875 -0.094,0.75 -0.1875,1.5 -0.2812,2.25 z"
- style="fill:#da70d6;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3095"
- d="m 851.09375,-1064.1875 c -4.99175,0.757 0.53118,10.6955 -0.21364,15.1622 49.08163,360.21679 98.16326,720.43354 147.24489,1080.6503 2.2311,10.631869 4.6785,-2.530026 4.8197,-6.975434 46.1834,-363.382026 92.297,-726.773346 138.5241,-1090.149566 -96.7918,0.4167 -193.58338,0.8785 -290.37505,1.3125 z"
- style="fill:#c71585;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3097"
- d="m 850.5625,-1064.125 c -93.37525,25.4678 -186.74851,50.943 -280.125,76.40625 142.57616,339.95956 285.213,679.89389 427.8125,1019.84375 4.9118,9.738119 3.8914,-3.622323 2.8674,-7.998411 C 951.68034,-338.82294 902.17688,-701.7638 852.78125,-1064.7188 c -0.73958,0.198 -1.47917,0.3959 -2.21875,0.5938 z"
- style="fill:#db7093;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3099"
- d="m 572.15625,-988.09375 c -83.61798,48.76496 -167.20884,97.57687 -250.84375,146.3125 225.69295,291.47568 451.46437,582.89121 677.1875,874.34375 7.2607,8.13254 2.8685,-4.485717 0.72959,-8.455016 C 857.52901,-313.67874 715.82085,-651.46179 574.125,-989.25 c -0.65625,0.38542 -1.3125,0.77083 -1.96875,1.15625 z"
- style="fill:#ffb6c1;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3101"
- d="m 322.875,-842.59375 c -68.13788,68.74755 -136.25608,137.51468 -204.40625,206.25 293.4715,223.09012 586.93704,446.1881 880.40625,669.28125 9.1051,5.966532 1.6173,-5.077925 -1.47392,-8.346631 C 773.08981,-265.01195 548.78252,-554.61786 324.46875,-844.21875 c -0.53125,0.54167 -1.0625,1.08333 -1.59375,1.625 z"
- style="fill:#b22222;fill-opacity:1;stroke:none" />
- <path
- inkscape:connector-curvature="0"
- id="path3103"
- d="m 119.75,-637.5625 c -48.016345,84.05463 -96.068549,168.08893 -144.0625,252.15625 341.23623,139.48788 682.43459,279.06973 1023.65625,418.59375 10.34745,3.381286 0.2103,-5.306712 -3.60385,-7.673786 C 704.12822,-196.16734 412.52022,-417.85322 120.90625,-639.53125 c -0.38542,0.65625 -0.77083,1.3125 -1.15625,1.96875 z"
- style="fill:#ff6347;fill-opacity:1;stroke:none" />
- </g>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="mask"
style="display:inline"
- transform="translate(0,-128)">
+ transform="translate(0,-126)">
<g
style="display:inline"
id="mask_group"
- transform="matrix(2.8059895,0,0,2.8059895,823.18453,98.625639)">
+ transform="matrix(2.6485758,0,0,2.6485758,832.73172,101.55626)">
<g
style="fill:none;stroke:none;display:inline"
id="eyes"
@@ -580,7 +460,8 @@
inkscape:groupmode="layer"
id="layer4"
inkscape:label="Text"
- style="display:none">
+ style="display:none"
+ transform="translate(0,2)">
<text
xml:space="preserve"
style="font-size:72px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:FontAwesome;-inkscape-font-specification:FontAwesome"
diff --git a/source/web/masthead/rainbow-masthead-small.svg b/source/web/masthead/rainbow-masthead-small.svg
index c7ad0c6..c1f90e6 100644
--- a/source/web/masthead/rainbow-masthead-small.svg
+++ b/source/web/masthead/rainbow-masthead-small.svg
@@ -10,8 +10,8 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="2000"
- height="96"
+ width="1000"
+ height="80"
id="svg3088"
version="1.1"
inkscape:version="0.48.4 r9939"
@@ -58,12 +58,12 @@
inkscape:collect="always"
xlink:href="#linearGradient4212"
id="radialGradient4218"
- cx="797.21466"
- cy="153.94044"
- fx="797.21466"
- fy="153.94044"
+ cx="1414.9468"
+ cy="153.94054"
+ fx="1414.9468"
+ fy="153.94054"
r="1000"
- gradientTransform="matrix(0.38153503,0,0,0.0954163,505.39269,0.47272594)"
+ gradientTransform="matrix(0.70879843,-1.1651099e-7,0,0.04155663,-4.0947644,24.965665)"
gradientUnits="userSpaceOnUse" />
<clipPath
clipPathUnits="userSpaceOnUse"
@@ -174,9 +174,9 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
- inkscape:zoom="5.6568542"
- inkscape:cx="908.33482"
- inkscape:cy="25.512235"
+ inkscape:zoom="4"
+ inkscape:cx="456.98158"
+ inkscape:cy="82.46831"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:document-units="px"
@@ -198,11 +198,11 @@
inkscape:snap-object-midpoints="true"
inkscape:snap-center="true"
borderlayer="true"
- inkscape:window-width="1867"
- inkscape:window-height="1056"
- inkscape:window-x="53"
- inkscape:window-y="24"
- inkscape:window-maximized="1">
+ inkscape:window-width="900"
+ inkscape:window-height="885"
+ inkscape:window-x="2674"
+ inkscape:window-y="154"
+ inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid3096"
@@ -212,16 +212,12 @@
snapvisiblegridlinesonly="true" />
<sodipodi:guide
orientation="1,0"
- position="1000,0"
- id="guide3100" />
- <sodipodi:guide
- orientation="1,0"
position="500,0"
id="guide3102" />
<sodipodi:guide
- orientation="1,0"
- position="1500,0"
- id="guide3104" />
+ orientation="0,1"
+ position="0,40"
+ id="guide3083" />
</sodipodi:namedview>
<metadata
id="metadata3093">
@@ -239,224 +235,156 @@
id="layer1"
inkscape:label="rainbow"
inkscape:groupmode="layer"
- transform="translate(0,32)">
- <path
- style="fill:#a0522d;fill-opacity:1;stroke:none"
- d="M -194.91593,-121.56055 -121.60642,-400.18314 899.91321,17.548611 z"
- id="path4133"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="210.6289"
- inkscape:transform-center-y="-241.80464" />
- <path
- inkscape:transform-center-y="-93.716909"
- inkscape:transform-center-x="233.21481"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path4135"
- d="M -193.61466,166.54212 -194.91593,-121.56055 899.91321,17.548611 z"
- style="fill:#ffa500;fill-opacity:1;stroke:none" />
- <path
- style="fill:#f0e68c;fill-opacity:1;stroke:none"
- d="M -117.79122,444.4911 -193.61466,166.54212 899.91321,17.548611 z"
- id="path4137"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="276.5623"
- inkscape:transform-center-y="55.815345" />
- <path
- inkscape:transform-center-y="131.98928"
- inkscape:transform-center-x="301.06247"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path4139"
- d="M 27.38705,693.3447 -117.79122,444.4911 899.91321,17.548611 z"
- style="fill:#9acd32;fill-opacity:1;stroke:none" />
- <path
- style="fill:#228b22;fill-opacity:1;stroke:none"
- d="M 232.02655,896.14389 27.38705,693.3447 899.91321,17.548611 z"
- id="path4141"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="357.26285"
- inkscape:transform-center-y="146.03113" />
- <path
- inkscape:transform-center-y="127.69701"
- inkscape:transform-center-x="359.70291"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path4143"
- d="M 482.18142,1039.0684 232.02655,896.14389 899.91321,17.548611 z"
- style="fill:#3cb371;fill-opacity:1;stroke:none" />
- <path
- style="fill:#7fffd4;fill-opacity:1;stroke:none"
- d="M 760.80401,1112.3779 482.18142,1039.0684 899.91321,17.548611 z"
- id="path4145"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="241.80464"
- inkscape:transform-center-y="210.6289" />
- <path
- inkscape:transform-center-y="233.21482"
- inkscape:transform-center-x="93.716896"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path4147"
- d="M 1048.9067,1111.0766 760.80401,1112.3779 899.91321,17.548611 z"
- style="fill:#008080;fill-opacity:1;stroke:none" />
- <path
- style="fill:#b0e0e6;fill-opacity:1;stroke:none"
- d="m 1326.8557,1035.2532 -277.949,75.8234 L 899.91321,17.548611 z"
- id="path4149"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="-55.815333"
- inkscape:transform-center-y="276.56228" />
- <path
- inkscape:transform-center-y="301.0625"
- inkscape:transform-center-x="-131.98925"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path4151"
- d="M 1575.7092,890.07475 1326.8557,1035.2532 899.91321,17.548611 z"
- style="fill:#87ceeb;fill-opacity:1;stroke:none" />
- <path
- style="fill:#4682b4;fill-opacity:1;stroke:none"
- d="M 1778.5085,685.43533 1575.7092,890.07475 899.91321,17.548611 z"
- id="path4153"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="-146.03116"
- inkscape:transform-center-y="357.26284" />
- <path
- inkscape:transform-center-y="359.70291"
- inkscape:transform-center-x="-127.697"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path4155"
- d="M 1921.4329,435.28042 1778.5085,685.43533 899.91321,17.548611 z"
- style="fill:#1e90ff;fill-opacity:1;stroke:#1e90ff;stroke-opacity:1" />
- <path
- style="fill:#6495ed;fill-opacity:1;stroke:none"
- d="M 1994.7423,156.65787 1921.4329,435.28042 899.91321,17.548611 z"
- id="path4157"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="-210.62887"
- inkscape:transform-center-y="241.80463" />
- <path
- inkscape:transform-center-y="93.71695"
- inkscape:transform-center-x="-233.21479"
- sodipodi:nodetypes="cccccc"
- inkscape:connector-curvature="0"
- id="path4159"
- d="m 1993.441,-131.44478 244.4737,5.86844 -7.479,283.36598 -235.6934,-1.13177 L 899.91321,17.548611 z"
- style="fill:#191970;fill-opacity:1;stroke:#000000;stroke-width:0.002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <path
- style="fill:#0000cd;fill-opacity:1;stroke:#0000cd;stroke-width:1.00300002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
- d="m 1917.6176,-409.51877 75.8234,278.0818 L 899.91321,17.548611 z"
- id="path4161"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="-276.56225"
- inkscape:transform-center-y="-55.815319" />
- <path
- inkscape:transform-center-y="-131.98927"
- inkscape:transform-center-x="-301.06245"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path4163"
- d="m 1772.4393,-658.24737 145.1783,248.8536 L 899.91321,17.548611 z"
- style="fill:#483d8b;fill-opacity:1;stroke:none" />
- <path
- style="fill:#9370db;fill-opacity:1;stroke:none"
- d="m 1567.7998,-861.04657 204.6395,202.7992 -872.52609,675.795981 z"
- id="path4165"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="-357.2628"
- inkscape:transform-center-y="-146.03113" />
- <path
- inkscape:transform-center-y="-127.69701"
- inkscape:transform-center-x="-359.70285"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path4167"
- d="M 1317.645,-1003.9708 1567.7998,-861.04657 899.91321,17.548611 z"
- style="fill:#8b008b;fill-opacity:1;stroke:none" />
- <path
- style="fill:#da70d6;fill-opacity:1;stroke:none"
- d="m 1039.0223,-1077.2803 278.6227,73.3095 L 899.91321,17.548611 z"
- id="path4169"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="-241.80464"
- inkscape:transform-center-y="-210.62891" />
- <path
- inkscape:transform-center-y="-233.21482"
- inkscape:transform-center-x="-93.716909"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path4171"
- d="m 750.91976,-1075.9789 288.10254,-1.3014 L 899.91321,17.548611 z"
- style="fill:#c71585;fill-opacity:1;stroke:none" />
- <path
- style="fill:#db7093;fill-opacity:1;stroke:none"
- d="M 472.97071,-1000.1557 750.91976,-1075.9789 899.91321,17.548611 z"
- id="path4173"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="55.815318"
- inkscape:transform-center-y="-276.56224" />
- <path
- inkscape:transform-center-y="-301.06252"
- inkscape:transform-center-x="131.98927"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path4175"
- d="M 224.11715,-854.97747 472.97071,-1000.1557 899.91321,17.548611 z"
- style="fill:#ffb6c1;fill-opacity:1;stroke:none" />
- <path
- style="fill:#b22222;fill-opacity:1;stroke:none"
- d="M 21.31793,-650.33806 224.11715,-854.97747 899.91321,17.548611 z"
- id="path4177"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:transform-center-x="146.03112"
- inkscape:transform-center-y="-357.26284" />
- <path
- inkscape:transform-center-y="-359.70292"
- inkscape:transform-center-x="127.697"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path4179"
- d="M -121.60642,-400.18314 21.31793,-650.33806 899.91321,17.548611 z"
- style="fill:#ff6347;fill-opacity:1;stroke:none" />
+ transform="translate(0,16)">
+ <g
+ id="g3054"
+ transform="matrix(0.71514523,0.16016648,-0.3305561,0.34651394,-252.53427,-146.1459)">
+ <path
+ style="fill:#a0522d;fill-opacity:1;stroke:none"
+ d="m -23.375,-386.90625 c -24.620909,93.60523 -49.274498,187.20196 -73.875,280.8125 365.69907,46.459569 731.39564,92.93903 1097.09375,139.40625 10.87705,0.60738 -1.18757,-5.160158 -5.47916,-6.46212 -339.0464,-138.66381 -678.1105,-277.28481 -1017.14584,-415.97538 -0.197917,0.73958 -0.395833,1.47917 -0.59375,2.21875 z"
+ id="path4133"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffa500;fill-opacity:1;stroke:none"
+ d="m -96.75,-107.78125 c 0.434028,96.802091 0.895794,193.604119 1.3125,290.40625 C 269.83289,132.85089 635.10424,83.083879 1000.375,33.3125 1011.0069,31.081426 997.84497,28.634057 993.39959,28.492585 630.01755,-17.701158 266.62624,-63.825183 -96.75,-110.0625 c 0,0.76042 0,1.52083 0,2.28125 z"
+ id="path4135"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#f0e68c;fill-opacity:1;stroke:none"
+ d="m -93.71875,178.375 c -4.844411,1.38527 1.91995,10.52967 1.764754,15.0418 C -67.626493,282.61145 -43.291706,371.80411 -18.96875,461 320.99081,318.42384 660.92514,175.787 1000.875,33.1875 c 9.7381,-4.91182 -3.62232,-3.891366 -7.99841,-2.867442 C 630.67814,79.671706 268.4797,129.02335 -93.71875,178.375 z"
+ id="path4137"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#9acd32;fill-opacity:1;stroke:none"
+ d="M 999.3125,29.5 C 659.3746,172.10322 319.43988,314.71401 -20.5,457.3125 28.661648,541.56971 77.846034,625.81399 126.96875,710.09375 418.44437,484.41113 709.85997,258.65023 1001.3125,32.9375 c 3.5332,-4.634438 5.4802,-4.842875 -2,-3.4375 z"
+ id="path4139"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#228b22;fill-opacity:1;stroke:none"
+ d="M 998.875,29.75 C 707.42748,255.47968 415.97679,481.20526 124.53125,706.9375 193.84745,775.60024 263.14733,844.27972 332.4375,912.96875 555.51729,619.49731 778.60476,326.0317 1001.6875,32.5625 c 2.1913,-5.370076 4.0582,-6.097601 -2.8125,-2.8125 z"
+ id="path4141"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#3cb371;fill-opacity:1;stroke:none"
+ d="M 998.5,30.125 C 775.41726,323.5942 552.32979,617.05981 329.25,910.53125 413.92308,958.96985 498.63525,1007.3418 583.34375,1055.7188 722.83159,714.49292 862.41349,373.305 1001.9375,32.09375 c 0.7099,-5.745823 2.336,-6.953044 -3.4375,-1.96875 z"
+ id="path4143"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#7fffd4;fill-opacity:1;stroke:none"
+ d="M 998.25,30.59375 C 858.70299,371.78946 719.19874,713.00284 579.625,1054.1875 c 94.33988,24.8374 188.68195,49.6672 283.03125,74.4687 46.45955,-365.68861 92.93903,-731.37476 139.40625,-1097.06245 -0.787,-5.739317 0.4726,-7.323547 -3.8125,-1 z"
+ id="path4145"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#008080;fill-opacity:1;stroke:none"
+ d="M 998.125,31.09375 C 951.63712,396.78009 905.21894,762.4757 858.6875,1128.1562 c 97.56255,-0.4034 195.1249,-0.8778 292.6875,-1.2812 -49.7741,-365.27039 -99.5411,-730.54174 -149.3125,-1095.8125 -2.25476,-5.313952 -1.4165,-7.182336 -3.9375,0.03125 z"
+ id="path4147"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b0e0e6;fill-opacity:1;stroke:none"
+ d="m 998.125,31.625 c 49.7521,365.2615 99.5706,730.51433 149.2812,1095.7812 94.1208,-25.6542 188.2266,-51.3637 282.3438,-77.0312 C 1287.1739,710.42584 1144.537,370.50194 1001.9375,30.5625 c -3.56654,-4.629205 -3.25129,-6.532593 -3.8125,1.0625 z"
+ id="path4149"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#87ceeb;fill-opacity:1;stroke:none"
+ d="m 998.25,32.125 c 142.6032,339.92748 285.2141,679.85177 427.8125,1019.7812 84.257,-49.1516 168.5017,-98.32472 252.7813,-147.43745 C 1453.1611,612.99313 1227.4002,321.57753 1001.6875,30.125 c -4.63444,-3.533224 -4.84287,-5.480195 -3.4375,2 z"
+ id="path4151"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#4682b4;fill-opacity:1;stroke:none"
+ d="m 998.5,32.5625 c 225.7297,291.44752 451.4553,582.89821 677.1875,874.34375 C 1744.3502,837.59005 1813.0297,768.29017 1881.7188,699 1588.2473,475.92021 1294.7817,252.83274 1001.3125,29.75 995.94242,27.558657 995.2149,25.691769 998.5,32.5625 z"
+ id="path4153"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#1e90ff;fill-opacity:1;stroke:#1e90ff;stroke-width:1.58113885;stroke-opacity:1"
+ d="m 998.875,32.9375 c 293.4692,223.08274 586.9348,446.17021 880.4062,669.25 48.4489,-84.68361 96.8316,-169.40598 145.2188,-254.125 C 1683.2638,308.58493 1342.0654,169.01362 1000.8438,29.5 c -5.74587,-0.709872 -6.95309,-2.336039 -1.9688,3.4375 z"
+ id="path4155"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#6495ed;fill-opacity:1;stroke:none"
+ d="m 994.8125,29.96875 c 11.4966,7.652805 25.3634,10.996868 37.853,16.844491 330.0989,134.994709 660.2155,269.946449 990.3033,404.968009 24.8275,-94.33974 49.6458,-188.68209 74.4374,-283.03125 -365.6886,-46.44926 -731.3748,-92.918179 -1097.0624,-139.375 -1.8438,0.197917 -3.68755,0.395833 -5.5313,0.59375 z"
+ id="path4157"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#191970;fill-opacity:1;stroke:#000000;stroke-width:0.00316228;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="m 2093.3438,-119.625 c -364.5105,49.666667 -729.0209,99.333333 -1093.5313,149 -10.63187,2.231077 2.53,4.678487 6.9754,4.819744 363.3716,46.183402 726.7525,92.296936 1090.1183,138.524006 -0.4033,-97.552136 -0.8778,-195.104114 -1.2812,-292.65625 -0.7604,0.10417 -1.5208,0.20833 -2.2812,0.3125 z"
+ id="path4159"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#0000cd;fill-opacity:1;stroke:#0000cd;stroke-width:1.58588231;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 2017,-397.5625 C 1677.7708,-255.20833 1338.5417,-112.85417 999.3125,29.5 c -9.73812,4.91182 3.6223,3.891366 7.9984,2.867442 362.9495,-49.437103 725.8904,-98.94056 1088.8453,-148.336192 -25.6548,-94.16225 -51.3631,-188.31007 -77.0312,-282.46875 -0.7083,0.29167 -1.4167,0.58333 -2.125,0.875 z"
+ id="path4161"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#483d8b;fill-opacity:1;stroke:none"
+ d="M 1871.4062,-646.0625 C 1580.5625,-420.79167 1289.7188,-195.52083 998.875,29.75 c -8.13254,7.260714 4.4857,2.868541 8.455,0.729522 337.7758,-141.700552 675.5484,-283.408742 1013.3262,-425.104522 -49.1519,-84.26723 -98.3245,-168.52271 -147.4374,-252.8125 -0.6042,0.45833 -1.2084,0.91667 -1.8126,1.375 z"
+ id="path4163"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#9370db;fill-opacity:1;stroke:none"
+ d="M 1666.375,-848.46875 C 1443.75,-555.60417 1221.125,-262.73958 998.5,30.125 c -5.96653,9.105124 5.0779,1.617258 8.3466,-1.47392 289.6029,-224.31127 579.2088,-448.61856 868.8096,-672.93233 -69.3159,-68.65261 -138.6163,-137.3211 -207.9062,-206 -0.4583,0.60417 -0.9167,1.20833 -1.375,1.8125 z"
+ id="path4165"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#8b008b;fill-opacity:1;stroke:none"
+ d="M 1415.9688,-990.9375 C 1276.7292,-650.42708 1137.4896,-309.91667 998.25,30.59375 c -3.38128,10.347459 5.3067,0.210327 7.6737,-3.603946 221.6706,-291.611634 443.3461,-583.219674 665.0138,-874.833554 -84.6836,-48.44884 -169.406,-96.83153 -254.125,-145.21875 -0.2812,0.70833 -0.5625,1.41667 -0.8437,2.125 z"
+ id="path4167"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#da70d6;fill-opacity:1;stroke:none"
+ d="m 1137.2188,-1063.75 c -46.3646,364.94792 -92.7292,729.89583 -139.0938,1094.84375 -0.60738,10.877052 5.1602,-1.187547 6.4619,-5.47923 138.6535,-339.04637 277.264,-678.1105 415.9443,-1017.14577 -94.3398,-24.83745 -188.6819,-49.66725 -283.0312,-74.46875 -0.094,0.75 -0.1875,1.5 -0.2812,2.25 z"
+ id="path4169"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#c71585;fill-opacity:1;stroke:none"
+ d="m 851.09375,-1064.1875 c -4.99175,0.757 0.53118,10.6955 -0.21364,15.1622 49.08163,360.21679 98.16326,720.43354 147.24489,1080.6503 2.2311,10.631869 4.6785,-2.530026 4.8197,-6.975434 46.1834,-363.382026 92.297,-726.773346 138.5241,-1090.149566 -96.7918,0.4167 -193.58338,0.8785 -290.37505,1.3125 z"
+ id="path4171"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#db7093;fill-opacity:1;stroke:none"
+ d="m 850.5625,-1064.125 c -93.37525,25.4678 -186.74851,50.943 -280.125,76.40625 142.57616,339.95956 285.213,679.89389 427.8125,1019.84375 4.9118,9.738119 3.8914,-3.622323 2.8674,-7.998411 C 951.68034,-338.82294 902.17688,-701.7638 852.78125,-1064.7188 c -0.73958,0.198 -1.47917,0.3959 -2.21875,0.5938 z"
+ id="path4173"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffb6c1;fill-opacity:1;stroke:none"
+ d="m 572.15625,-988.09375 c -83.61798,48.76496 -167.20884,97.57687 -250.84375,146.3125 225.69295,291.47568 451.46437,582.89121 677.1875,874.34375 7.2607,8.13254 2.8685,-4.485717 0.72959,-8.455016 C 857.52901,-313.67874 715.82085,-651.46179 574.125,-989.25 c -0.65625,0.38542 -1.3125,0.77083 -1.96875,1.15625 z"
+ id="path4175"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b22222;fill-opacity:1;stroke:none"
+ d="m 322.875,-842.59375 c -68.13788,68.74755 -136.25608,137.51468 -204.40625,206.25 293.4715,223.09012 586.93704,446.1881 880.40625,669.28125 9.1051,5.966532 1.6173,-5.077925 -1.47392,-8.346631 C 773.08981,-265.01195 548.78252,-554.61786 324.46875,-844.21875 c -0.53125,0.54167 -1.0625,1.08333 -1.59375,1.625 z"
+ id="path4177"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ff6347;fill-opacity:1;stroke:none"
+ d="m 119.75,-637.5625 c -48.016345,84.05463 -96.068549,168.08893 -144.0625,252.15625 341.23623,139.48788 682.43459,279.06973 1023.65625,418.59375 10.34745,3.381286 0.2103,-5.306712 -3.60385,-7.673786 C 704.12822,-196.16734 412.52022,-417.85322 120.90625,-639.53125 c -0.38542,0.65625 -0.77083,1.3125 -1.15625,1.96875 z"
+ id="path4179"
+ inkscape:connector-curvature="0" />
+ </g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="light"
- style="display:inline">
- <rect
- style="fill:url(#radialGradient4218);fill-opacity:1;stroke:none"
- id="rect4182"
- width="2123"
- height="102"
- x="-15"
- y="-34.823223"
- ry="1.5062302" />
- </g>
+ style="display:inline" />
+ <rect
+ style="opacity:0.44855969;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1.92096281;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+ id="rect3896"
+ width="1873.4031"
+ height="245.58533"
+ x="-492.80829"
+ y="-83.085007"
+ ry="0.94508582"
+ rx="0.94508582" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="mask"
style="display:inline"
- transform="translate(0,-160)">
+ transform="translate(0,-176)">
<g
style="display:inline"
id="mask_group"
- transform="matrix(2.1244509,0,0,2.1244509,831.61511,136.56622)">
+ transform="matrix(1.6440036,0,0,1.6440036,394.65934,160.75867)">
<g
style="fill:none;stroke:none;display:inline"
id="eyes"
@@ -520,4 +448,23 @@
</g>
</g>
</g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Text"
+ style="display:none"
+ transform="translate(0,-48)">
+ <text
+ xml:space="preserve"
+ style="font-size:72px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:FontAwesome;-inkscape-font-specification:FontAwesome"
+ x="1009"
+ y="90"
+ id="text3081"
+ sodipodi:linespacing="125%"><tspan
+ sodipodi:role="line"
+ id="tspan3083"
+ x="1009"
+ y="90"
+ style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-family:FreeSans;-inkscape-font-specification:FreeSans Semi-Bold">Bitmask</tspan></text>
+ </g>
</svg>
diff --git a/web/22/vpn_connected.png b/web/22/vpn_connected.png
new file mode 100644
index 0000000..3428947
--- /dev/null
+++ b/web/22/vpn_connected.png
Binary files differ
diff --git a/web/22/vpn_disconnected.png b/web/22/vpn_disconnected.png
new file mode 100644
index 0000000..c524307
--- /dev/null
+++ b/web/22/vpn_disconnected.png
Binary files differ
diff --git a/web/22/vpn_progress.png b/web/22/vpn_progress.png
new file mode 100644
index 0000000..2a7ad45
--- /dev/null
+++ b/web/22/vpn_progress.png
Binary files differ
diff --git a/web/masthead/rainbow-masthead-large.png b/web/masthead/rainbow-masthead-large.png
index 2724cec..d3d2329 100644
--- a/web/masthead/rainbow-masthead-large.png
+++ b/web/masthead/rainbow-masthead-large.png
Binary files differ
diff --git a/web/masthead/rainbow-masthead-medium.png b/web/masthead/rainbow-masthead-medium.png
index 7c0a5f8..a863733 100644
--- a/web/masthead/rainbow-masthead-medium.png
+++ b/web/masthead/rainbow-masthead-medium.png
Binary files differ
diff --git a/web/masthead/rainbow-masthead-small.png b/web/masthead/rainbow-masthead-small.png
index 9b7f292..d412bf5 100644
--- a/web/masthead/rainbow-masthead-small.png
+++ b/web/masthead/rainbow-masthead-small.png
Binary files differ