Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • trisquel/package-helpers
  • aklis/package-helpers
  • leny2010/package-helpers
  • fr33domlover/package-helpers
  • Legimet/package-helpers
  • ralphtheninja/package-helpers
  • damo22/package-helpers
  • wherrfrye/package-helpers
  • habs/package-helpers
  • pehjota/package-helpers
  • kpengboy/package-helpers
  • alvaro/package-helpers
  • salman/package-helpers
  • pabloyoyoista/package-helpers
  • mixalis/package-helpers
  • jorgesumle/package-helpers
  • a_slacker_here/package-helpers
  • chaosmonk/package-helpers
  • Beformed/package-helpers
  • dknight/package-helpers
  • proninyaroslav/package-helpers
  • adfeno/package-helpers
  • snd/package-helpers
  • davidpgil/package-helpers
  • diopon/package-helpers
  • ruben/package-helpers
  • bandali/package-helpers
  • joshaspinall/package-helpers
  • GNUtoo/package-helpers
  • Ark74/package-helpers
  • dragestil/package-helpers
  • bill-auger/package-helpers
  • andi89gi/package-helpers
  • Fikar/package-helpers
  • davidl/package-helpers
  • jas/package-helpers
  • parodper/package-helpers
  • David_Hedlund/package-helpers
  • dinomug/package-helpers
  • bf/package-helpers
  • hartkemd/package-helpers
  • del111/package-helpers
  • jxself/package-helpers
  • JacobK/package-helpers
44 results
Show changes
Showing
with 2701 additions and 0 deletions
'''apport package hook for atril
(c) 2024 Luis Guzmán
Author:
Luis Guzmán <ark@switnet.org>
based on evince's hook
'''
from apport.hookutils import *
from os import path
import re
def add_info(report):
attach_conffiles(report, 'atril')
attach_related_packages(report, ['apparmor', 'libapparmor1',
'libapparmor-perl', 'apparmor-utils', 'auditd', 'libaudit1'])
attach_mac_events(report, ['/usr/bin/atril',
'/usr/bin/atril-previewer',
'/usr/bin/atril-thumbnailer'])
diff --git a/debian/rules b/debian/rules
old mode 100755
new mode 100644
index 8a7ff87..655c574
--- a/debian/rules
+++ b/debian/rules
@@ -52,3 +52,9 @@ override_dh_auto_configure:
get-orig-source:
uscan --noconf --force-download --rename --download-current-version --destdir=..
+
+execute_after_dh_install:
+ install -m 0644 -D debian/apparmor-profile debian/atril/etc/apparmor.d/usr.bin.atril
+ install -m 0644 -D debian/apparmor-profile.abstraction debian/atril/etc/apparmor.d/abstractions/atril
+ install -m 0644 -D debian/atril.apport debian/atril/usr/share/apport/package-hooks/source_atril.py
+ dh_apparmor --profile-name=usr.bin.atril -patril
diff --git a/debian/control b/debian/control
index f5bda53..6d72cc9 100644
--- a/debian/control
+++ b/debian/control
@@ -9,6 +9,7 @@ Uploaders: Mike Gabriel <sunweaver@debian.org>,
Vangelis Mouhtsis <vangelis@gnugr.org>,
Martin Wimpress <code@flexion.org>,
Build-Depends: debhelper-compat (= 13),
+ dh-apparmor,
dpkg-dev (>= 1.16.1.1),
gobject-introspection,
intltool,
Patch based on https://github.com/AyatanaIndicators/ayatana-indicator-sound/pull/92
For Trisquel 11.0, Aramo - ayatana-indicator-sound - 22.2.0-2
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ac370b2..095c953 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
-project(ayatana-indicator-sound C CXX)
-cmake_minimum_required(VERSION 3.13)
+cmake_minimum_required (VERSION 3.13)
+project (ayatana-indicator-sound VERSION 22.2.0 LANGUAGES C CXX)
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
SET(CMAKE_INSTALL_PREFIX "/usr" CACHE PATH "..." FORCE)
@@ -7,8 +7,6 @@ endif(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake" "${CMAKE_MODULE_PATH}")
-set(PACKAGE ${CMAKE_PROJECT_NAME})
-set(PROJECT_VERSION 22.2.0)
find_package(PkgConfig REQUIRED)
include(GNUInstallDirs)
include(UseVala)
diff --git a/src/info-notification.vala b/src/info-notification.vala
index ce92a2a..3a36e52 100644
--- a/src/info-notification.vala
+++ b/src/info-notification.vala
@@ -1,6 +1,6 @@
/*
* Copyright 2015 Canonical Ltd.
- * Copyright 2021 Robert Tari
+ * Copyright 2021-2023 Robert Tari
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -30,22 +30,26 @@ public class IndicatorSound.InfoNotification: Notification
public void show (VolumeControl.ActiveOutput active_output,
double volume,
bool is_high_volume) {
- if (!notify_server_supports ("x-canonical-private-synchronous"))
- return;
/* Determine Label */
- unowned string volume_label = get_notification_label (active_output);
+ string volume_label = get_notification_label (active_output);
/* Choose an icon */
unowned string icon = get_volume_notification_icon (active_output, volume, is_high_volume);
/* Reset the notification */
var n = _notification;
+
+ uint nChars = ((int32)((volume * 20) + 0.5)).clamp(0, 20);
+ volume_label += "\n";
+
+ for (uint nChar = 0; nChar < nChars; nChar++)
+ {
+ volume_label += "◼";
+ }
+
n.update (_("Volume"), volume_label, icon);
n.clear_hints();
- n.set_hint ("x-lomiri-non-shaped-icon", "true");
- n.set_hint ("x-canonical-private-synchronous", "true");
- n.set_hint ("x-lomiri-value-bar-tint", is_high_volume ? "true" : "false");
n.set_hint ("value", ((int32)((volume * 100.0) + 0.5)).clamp(0, 100));
show_notification ();
}
diff --git a/src/warn-notification.vala b/src/warn-notification.vala
index 6a08431..203758e 100644
--- a/src/warn-notification.vala
+++ b/src/warn-notification.vala
@@ -1,5 +1,6 @@
/*
* Copyright 2015 Canonical Ltd.
+ * Copyright 2021-2023 Robert Tari
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -15,6 +16,7 @@
*
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
+ * Robert Tari <robert@tari.in>
*/
public class IndicatorSound.WarnNotification: Notification
@@ -31,9 +33,6 @@ public class IndicatorSound.WarnNotification: Notification
_("Volume"),
_("Allow volume above safe level?\nHigh volume can damage your hearing."),
"audio-volume-high");
- n.set_hint ("x-lomiri-non-shaped-icon", "true");
- n.set_hint ("x-lomiri-snap-decisions", "true");
- n.set_hint ("x-lomiri-private-affirmative-tint", "true");
n.closed.connect ((n) => {
n.clear_actions ();
});
diff --git a/tests/integration/indicator-sound-test-base.cpp b/tests/integration/indicator-sound-test-base.cpp
index 3ecd856..eb4ee8c 100644
--- a/tests/integration/indicator-sound-test-base.cpp
+++ b/tests/integration/indicator-sound-test-base.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2015 Canonical Ltd.
- * Copyright 2021 Robert Tari
+ * Copyright 2021-2023 Robert Tari
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
@@ -72,7 +72,7 @@ void IndicatorSoundTestBase::SetUp()
"GetCapabilities",
"",
"as",
- "ret = ['actions', 'body', 'body-markup', 'icon-static', 'image/svg+xml', 'x-canonical-private-synchronous', 'x-canonical-append', 'x-canonical-private-icon-only', 'x-canonical-truncation', 'private-synchronous', 'append', 'private-icon-only', 'truncation']"
+ "ret = ['actions', 'body', 'body-markup', 'icon-static', 'image/svg+xml', 'private-synchronous', 'append', 'private-icon-only', 'truncation']"
).waitForFinished();
int waitedTime = 0;
@@ -647,14 +647,8 @@ void IndicatorSoundTestBase::checkVolumeNotification(double volume, QString cons
QVariantMap hints;
ASSERT_TRUE(qDBusArgumentToMap(args.at(6), hints));
ASSERT_TRUE(hints.contains("value"));
- ASSERT_TRUE(hints.contains("x-lomiri-non-shaped-icon"));
- ASSERT_TRUE(hints.contains("x-lomiri-value-bar-tint"));
- ASSERT_TRUE(hints.contains("x-canonical-private-synchronous"));
EXPECT_EQ(volume*100, hints["value"]);
- EXPECT_EQ(true, hints["x-lomiri-non-shaped-icon"]);
- EXPECT_EQ(isLoud, hints["x-lomiri-value-bar-tint"]);
- EXPECT_EQ(true, hints["x-canonical-private-synchronous"]);
}
void IndicatorSoundTestBase::checkHighVolumeNotification(QVariantList call)
diff --git a/tests/notifications-mock.h b/tests/notifications-mock.h
index 49b2e66..3ae8da5 100644
--- a/tests/notifications-mock.h
+++ b/tests/notifications-mock.h
@@ -1,6 +1,6 @@
/*
* Copyright 2015 Canonical Ltd.
- * Copyright 2021 Robert Tari
+ * Copyright 2021-2023 Robert Tari
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -31,7 +31,7 @@ class NotificationsMock
DbusTestDbusMockObject * baseobj = nullptr;
public:
- NotificationsMock (const std::vector<std::string>& capabilities = {"actions", "body", "body-markup", "icon-static", "image/svg+xml", "x-canonical-private-synchronous", "x-canonical-append", "x-canonical-private-icon-only", "x-canonical-truncation", "private-synchronous", "append", "private-icon-only", "truncation"}) {
+ NotificationsMock (const std::vector<std::string>& capabilities = {"actions", "body", "body-markup", "icon-static", "image/svg+xml", "private-synchronous", "append", "private-icon-only", "truncation"}) {
mock = dbus_test_dbus_mock_new("org.freedesktop.Notifications");
dbus_test_task_set_bus(DBUS_TEST_TASK(mock), DBUS_TEST_SERVICE_BUS_SESSION);
dbus_test_task_set_name(DBUS_TEST_TASK(mock), "Notify");
diff --git a/tests/notifications-test.cc b/tests/notifications-test.cc
index a9fa55d..92f4672 100644
--- a/tests/notifications-test.cc
+++ b/tests/notifications-test.cc
@@ -1,6 +1,6 @@
/*
* Copyright 2015-2016 Canonical Ltd.
- * Copyright 2021 Robert Tari
+ * Copyright 2021-2023 Robert Tari
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -259,7 +259,6 @@ TEST_F(NotificationsTest, VolumeChanges) {
EXPECT_EQ("ayatana-indicator-sound", notev[0].app_name);
EXPECT_EQ("Volume", notev[0].summary);
EXPECT_EQ(0, notev[0].actions.size());
- EXPECT_GVARIANT_EQ("@s 'true'", notev[0].hints["x-canonical-private-synchronous"]);
EXPECT_GVARIANT_EQ("@i 50", notev[0].hints["value"]);
/* Set a different volume */
@@ -432,7 +431,6 @@ TEST_F(NotificationsTest, DISABLED_HighVolume) {
ASSERT_EQ(1, notev.size());
EXPECT_EQ("Volume", notev[0].summary);
EXPECT_EQ("Speakers", notev[0].body);
- EXPECT_GVARIANT_EQ("@s 'false'", notev[0].hints["x-lomiri-value-bar-tint"]);
/* Set high volume with volume change */
notifications->clearNotifications();
@@ -443,7 +441,6 @@ TEST_F(NotificationsTest, DISABLED_HighVolume) {
ASSERT_LT(0, notev.size()); /* This passes with one or two since it would just be an update to the first if a second was sent */
EXPECT_EQ("Volume", notev[0].summary);
EXPECT_EQ("Speakers", notev[0].body);
- EXPECT_GVARIANT_EQ("@s 'true'", notev[0].hints["x-lomiri-value-bar-tint"]);
/* Move it back */
volume_warning_mock_set_high_volume(VOLUME_WARNING_MOCK(volumeWarning.get()), false);
@@ -513,7 +510,6 @@ TEST_F(NotificationsTest, DISABLED_ExtendendVolumeNotification) {
EXPECT_EQ("ayatana-indicator-sound", notev[0].app_name);
EXPECT_EQ("Volume", notev[0].summary);
EXPECT_EQ(0, notev[0].actions.size());
- EXPECT_GVARIANT_EQ("@s 'true'", notev[0].hints["x-canonical-private-synchronous"]);
EXPECT_GVARIANT_EQ("@i 50", notev[0].hints["value"]);
/* Allow an amplified volume */
@@ -628,14 +624,10 @@ TEST_F(NotificationsTest, DISABLED_TriggerWarning) {
if (warning_expected) {
EXPECT_TRUE(volume_warning_get_active(volumeWarning.get()));
ASSERT_EQ(1, notev.size());
- EXPECT_GVARIANT_EQ("@s 'true'", notev[0].hints["x-lomiri-snap-decisions"]);
- EXPECT_GVARIANT_EQ(nullptr, notev[0].hints["x-canonical-private-synchronous"]);
}
else {
EXPECT_FALSE(volume_warning_get_active(volumeWarning.get()));
ASSERT_EQ(1, notev.size());
- EXPECT_GVARIANT_EQ(nullptr, notev[0].hints["x-lomiri-snap-decisions"]);
- EXPECT_GVARIANT_EQ("@s 'true'", notev[0].hints["x-canonical-private-synchronous"]);
}
} // multimedia_active
arch_get_kernel_flavour () {
echo amd64
}
arch_check_usable_kernel () {
if echo "$1" | grep -q -e "signed" -e "edge" -e "hwe-16.04"; then return 1; fi
if echo "$1" | grep -Eq -- "-(server|generic|virtual|xen|preempt|rt)(-.*)?$"; then return 0; fi
return 1
}
arch_get_kernel () {
echo "linux-generic"
echo "linux-image-generic"
echo "linux-generic-hwe-20.04"
echo "linux-image-generic-hwe-20.04"
echo "linux-lowlatency"
echo "linux-image-lowlatency"
echo "linux-lowlatency-hwe-20.04"
echo "linux-image-lowlatency-hwe-20.04"
echo "linux-oem-20.04"
echo "linux-image-oem-20.04"
echo "linux-virtual"
echo "linux-image-virtual"
echo "linux-image-extra-virtual"
echo "linux-virtual-hwe-20.04"
echo "linux-image-virtual-hwe-20.04"
echo "linux-image-extra-virtual-hwe-20.04"
}
arch_get_kernel_flavour () {
# Should we offer an amd64 kernel?
if grep -q '^flags.*\blm\b' "$CPUINFO"; then
echo 686-pae amd64 686 586
# Should we offer a PAE kernel?
elif grep -q '^flags.*\bpae\b' "$CPUINFO"; then
echo 686-pae 686 586
# Should we offer a 686 kernel?
elif grep -q '^flags.*\bfpu\b.*\btsc\b.*\bcx8\b.*\bcmov\b' "$CPUINFO"; then
echo 686 586
else
echo 586
fi
}
arch_check_usable_kernel () {
if echo "$1" | grep -q -e "signed" -e "edge" -e "hwe-16.04"; then return 1; fi
local NAME="$1"
set -- $2
while [ $# -ge 1 ]; do
case "$1:$NAME" in
*-dbg)
return 1
;;
*-"$1"-pae)
# Don't allow -pae suffix, as this requires an
# extra CPU feature
;;
*:*-"$1" | *:*-"$1"-*)
# Allow any other hyphenated suffix
return 0
;;
686-*:*-generic | 686-*:*-generic-*)
return 0
;;
686-*:*-virtual | 686-*:*-virtual-*)
return 0
;;
esac
shift
done
return 1
}
arch_get_kernel () {
imgbase="linux-image"
set -- $1
while [ $# -ge 1 ]; do
case $1 in
686-*)
echo "linux-generic"
echo "linux-image-generic"
echo "linux-virtual"
echo "linux-image-virtual"
break
;;
esac
shift
done
}
--- source/library.sh 2022-07-14 15:09:08.482389439 -0500
+++ source/library.sh_upd 2022-07-14 15:19:40.056073944 -0500
@@ -345,9 +345,15 @@
kernel_update_list () {
# Use 'uniq' to avoid listing the same kernel more then once
- chroot /target apt-cache search "^(kernel|$KERNEL_NAME)-image" | \
- cut -d" " -f1 | grep -v "linux-image-2.6" | uniq > "$KERNEL_LIST.unfiltered"
- kernels=`sort -r "$KERNEL_LIST.unfiltered" | tr '\n' ' ' | sed -e 's/ $//'`
+ (set +e;
+ # Hack to get the metapackages in the right order; should be
+ # replaced by something better at some point.
+ chroot /target apt-cache search ^linux- | grep '^linux-\(amd64\|686\|k7\|generic\|lowlatency\|server\|virtual\|preempt\|rt\|xen\|oem-20.04\|power\|cell\|omap\|omap4\|keystone\)';
+ chroot /target apt-cache search ^linux-image- | grep -v '^linux-image-[2-9]\.';
+ chroot /target apt-cache search ^kfreebsd-image;
+ chroot /target apt-cache search ^gnumach-image) | \
+ cut -d" " -f1 | uniq > "$KERNEL_LIST.unfiltered"
+ kernels=`< "$KERNEL_LIST.unfiltered" tr '\n' ' ' | sed -e 's/ $//'`
for candidate in $kernels; do
if [ -n "$FLAVOUR" ]; then
if arch_check_usable_kernel "$candidate" "$FLAVOUR"; then
helpers/DATA/birdtray/birdtray.ico

16.6 KiB

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 150.528 147.99726"
width="128"
height="128"
version="1.1"
id="svg186"
sodipodi:docname="birdtray.svg"
inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata190">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1918"
inkscape:window-height="1008"
id="namedview188"
showgrid="false"
inkscape:zoom="2.8183255"
inkscape:cx="46.30409"
inkscape:cy="87.995512"
inkscape:window-x="1366"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg186"
inkscape:showpageshadow="2"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1" />
<linearGradient
id="SVGID_1"
gradientUnits="userSpaceOnUse"
x1="199.533"
y1="201.907"
x2="39.679001"
y2="42.053001">
<stop
offset="0"
stop-color="#130036"
id="stop2" />
<stop
offset=".23"
stop-color="#18023b"
id="stop4" />
<stop
offset=".512"
stop-color="#26094a"
id="stop6" />
<stop
offset=".821"
stop-color="#3d1563"
id="stop8" />
<stop
offset="1"
stop-color="#4e1d75"
id="stop10" />
</linearGradient>
<g
transform="matrix(1.6684706,2.8398206e-4,-2.8398206e-4,1.6684706,-31.499638,-35.17469)"
mask="url(#mask27344)"
id="g27032">
<rect
width="108.20067"
height="108.20067"
x="9.8996658"
y="9.8996658"
id="rect26137"
style="fill:url(#linearGradient6151);fill-opacity:1;stroke:none" />
<g
id="g26086">
<g
transform="matrix(0.945724,0,0,0.945724,17.38005,3.769244)"
id="g3116">
<path
d="m 428.62836,222.16092 a 183.90805,183.90805 0 1 1 -367.816104,0 183.90805,183.90805 0 1 1 367.816104,0 z"
transform="matrix(0,-0.262607,0.262607,0,-9.045471,133.7106)"
id="path9557"
style="fill:#4e9a06;fill-opacity:1;stroke:#4e9a06;stroke-width:7.61594;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="m 428.62836,222.16092 a 183.90805,183.90805 0 1 1 -367.816104,0 183.90805,183.90805 0 1 1 367.816104,0 z"
transform="matrix(0,-0.262607,0.262607,0,-9.045471,133.7106)"
id="path1872"
style="fill:url(#linearGradient3333);fill-opacity:1;stroke:none" />
<path
d="m 428.62836,222.16092 a 183.90805,183.90805 0 1 1 -367.816104,0 183.90805,183.90805 0 1 1 367.816104,0 z"
transform="matrix(0,-0.262607,0.262607,0,-9.045471,133.7106)"
id="path5461"
style="fill:url(#radialGradient3920);fill-opacity:1;stroke:none" />
<path
d="m 428.62836,222.16092 a 183.90805,183.90805 0 1 1 -367.816104,0 183.90805,183.90805 0 1 1 367.816104,0 z"
transform="matrix(0,0.191202,0.191202,0,6.817809,10.5024)"
id="path6358"
style="fill:url(#radialGradient3922);fill-opacity:1;stroke:none" />
<path
d="m 428.62836,222.16092 a 183.90805,183.90805 0 1 1 -367.816104,0 183.90805,183.90805 0 1 1 367.816104,0 z"
transform="matrix(0,-0.153363,0.206196,0,3.486899,125.6807)"
id="path8142"
style="fill:url(#radialGradient3924);fill-opacity:1;stroke:none" />
<g
transform="matrix(0.262607,0,0,0.262607,-14.96973,11.1044)"
id="g11789"
style="opacity:0.5">
<path
d="m 201.58219,398.66524 c 0,0 -175.98576,-177.96619 32.57947,-358.777143 C -1.634599,220.03851 202.12567,397.72391 201.58219,398.66524 Z"
id="path8152"
style="fill:url(#linearGradient3341);fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
d="m 418.06183,185.18557 c 0,0 -177.96626,-175.9856903 -358.777135,32.57961 C 239.43502,-18.031148 417.12049,185.72905 418.06183,185.18557 Z"
id="path9971"
style="fill:url(#linearGradient3343);fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
d="m 66.93794,267.02123 c 0,0 177.96626,175.98569 358.77713,-32.57961 C 245.56475,470.23795 67.879272,266.47776 66.93794,267.02123 Z"
id="path9981"
style="fill:url(#linearGradient3345);fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
d="m 283.41758,47.541558 c 0,0 175.98575,177.966182 -32.57947,358.777142 C 486.63436,226.16829 282.8741,48.482895 283.41758,47.541558 Z"
id="path9983"
style="fill:url(#linearGradient3347);fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
d="M 92,316 C 92,316 262.42047,243.53212 400.71024,137.76606 239,206 91,316 92,316 Z"
id="path9993"
style="fill:url(#radialGradient3934);fill-opacity:1;fill-rule:evenodd;stroke:none" />
<path
d="m 335.46957,381.23563 c 0,0 -72.46788,-170.42047 -178.23394,-308.710239 68.23394,161.710239 178.23394,309.710239 178.23394,308.710239 z"
id="path10888"
style="fill:url(#radialGradient3936);fill-opacity:1;fill-rule:evenodd;stroke:none" />
</g>
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.491547,0,0,0.491547,-27.16413,-2.147156)"
id="path12694"
style="fill:url(#radialGradient3938);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.208739,0,0,0.208739,41.51777,14.9021)"
id="path12698"
style="fill:url(#radialGradient3940);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.127937,0,0,0.127937,63.87972,31.89077)"
id="path12714"
style="fill:url(#radialGradient3942);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.262607,0,0,0.262607,-6.828906,4.801832)"
id="path12726"
style="fill:url(#radialGradient3944);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.262607,0,0,0.262607,35.71347,15.30611)"
id="path12730"
style="fill:url(#radialGradient3946);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.262607,0,0,0.262607,23.37092,57.84845)"
id="path12734"
style="fill:url(#radialGradient3948);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.262607,0,0,0.262607,-20.22187,48.132)"
id="path12738"
style="fill:url(#radialGradient3950);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.208739,0,0,0.208739,40.20472,63.747)"
id="path12742"
style="fill:url(#radialGradient3952);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.127937,0,0,0.127937,46.81027,83.88695)"
id="path12746"
style="fill:url(#radialGradient3954);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.208739,0,0,0.208739,-8.114996,64.79745)"
id="path12750"
style="fill:url(#radialGradient3956);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.208739,0,0,0.208739,-8.114996,15.95252)"
id="path12754"
style="fill:url(#radialGradient3958);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.127937,0,0,0.127937,-4.923321,71.807)"
id="path12758"
style="fill:url(#radialGradient3960);fill-opacity:1;stroke:none" />
<path
d="m 176,148.5 a 19.5,19.5 0 1 1 -39,0 19.5,19.5 0 1 1 39,0 z"
transform="matrix(0.127937,0,0,0.127937,10.5705,18.49779)"
id="path12762"
style="fill:url(#radialGradient3962);fill-opacity:1;stroke:none" />
</g>
<g
transform="matrix(0.945724,0,0,0.945724,3.473691,3.769244)"
id="g25870">
<g
id="g25732">
<g
id="g25688">
<path
d="m 24.945445,51.12438 c -0.180927,0.143234 -0.381857,0.343667 -0.621334,0.611318 -3.831619,4.2824 -2.279204,12.177301 -2.279204,12.177301 -10e-7,-3e-6 -1.325979,-8.099656 -2.903706,-3.591866 -1.577727,4.507792 2.481471,11.485535 2.481471,11.485535 -2e-6,-4e-6 -4.507785,-7.666852 -3.60623,-2.933673 0.901561,4.733179 5.411559,9.685594 5.411559,9.685594 0,0 -3.837659,-4.284979 -3.386878,-0.678745 0.450781,3.606232 7.420892,6.540863 7.420892,6.540863 2e-6,0 -5.855159,1.152178 -2.023536,4.307631 3.83162,3.155452 11.731127,0.443909 11.731127,0.443909 0,0 -6.088109,4.93317 0.222797,6.510896 1.819622,0.454905 3.611746,0.48302 5.253425,0.286698 0.561044,1.114769 1.136911,2.219189 1.766746,3.310096 12.167094,21.074023 46.080386,12.069883 48.360706,-16.049302 5.828987,0.747388 16.10402,-4.179333 17.0516,-7.715765 0.89205,-3.329182 -4.48754,-1.321557 -6.01038,-0.535276 1.41028,-0.785853 7.28379,-3.795501 5.16647,-7.926421 -1.45105,-2.831018 -4.36367,-0.449269 -6.49161,1.94371 -1.23757,1.852217 -2.547533,3.27504 -2.547533,3.27504 -3e-6,10e-7 1.091573,-1.637743 2.547533,-3.27504 1.84073,-2.754945 3.49265,-6.485343 0.25149,-7.939421 -2.06699,-0.927314 -3.618394,0.391367 -4.745578,2.342928 -0.461377,3.43484 -2.380889,6.751181 -2.380889,6.751181 2e-6,-10e-7 0.552253,-3.585156 2.380889,-6.751181 0.298532,-2.222543 -0.119102,-4.130467 -2.17494,-3.579606 -0.800922,0.214607 -1.726468,0.402492 -2.679567,0.608854 0.932364,-1.293045 4.886805,-7.083605 3.39471,-10.62019 -1.677041,-3.97496 -3.057851,2.703648 -3.057852,2.703645 -3e-6,2e-6 1.680484,-7.761336 -0.202025,-13.162417 -1.882518,-5.401077 -1.973296,5.144651 -1.973296,5.144651 -3e-6,10e-7 0.02902,-9.570553 -4.26855,-13.268346 -4.297574,-3.697795 -0.863405,5.442046 -0.863401,5.442046 -3e-6,10e-7 -3.080904,-9.058263 -9.561818,-11.186555 -1.012646,-0.332544 -1.570118,-0.379928 -1.814663,-0.143089 -1.320548,1.278935 6.865693,10.554568 6.283515,24.445868 C 80.414877,65.593189 57.449104,66.303484 59.954817,82.51239 57.558953,81.69397 56.256343,78.955671 56.830558,72.913514 57.791587,62.801122 47.870898,60.36894 43.935467,62.641062 39.195752,65.377537 37.218745,70.332572 37.220646,76.260651 34.926189,75.309907 32.88081,73.810967 31.310891,71.337155 24.337905,60.349417 27.659364,48.975861 24.945445,51.12438 Z"
id="path14069"
style="fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 61.056745,88.034147 C 56.931179,72.637329 38.743181,83.075578 31.305326,71.355322 23.867471,59.635066 28.149872,47.464032 24.318251,51.746433 c -3.831622,4.282401 -2.253896,12.171034 -2.253896,12.171034 0,0 -1.352334,-8.114023 -2.930061,-3.606232 -1.577727,4.50779 2.479281,11.494866 2.479281,11.494866 0,0 -4.50779,-7.663244 -3.606235,-2.930064 0.901563,4.73318 5.409352,9.691751 5.409352,9.691751 0,0 -3.831625,-4.282402 -3.380844,-0.676168 0.450782,3.606232 7.437855,6.536295 7.437855,6.536295 0,0 -5.860128,1.126948 -2.028505,4.282401 3.831622,3.155454 11.720256,0.450779 11.720256,0.450779 0,0 -6.085518,4.95857 0.225388,6.536297 6.310908,1.577726 12.396425,-2.028506 12.396425,-2.028506 0,0 -2.479284,5.860129 3.831622,5.409349 6.310911,-0.450777 8.959935,-5.363609 7.437856,-11.044088 z"
id="path10520"
style="fill:url(#linearGradient6199);fill-opacity:1;fill-rule:evenodd;stroke:#729fcf;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 74.801332,25.332661 c -1.320545,1.278933 6.865694,10.554568 6.283516,24.445868 C 80.422342,65.586466 57.456567,66.296762 59.96228,82.505668 57.566415,81.687249 56.263806,78.948949 56.83802,72.906792 57.799049,62.7944 47.87836,60.362218 43.94293,62.63434 33.595569,68.60839 36.288537,85.189043 44.420037,99.273215 56.587131,120.34724 90.500423,111.3431 92.780743,83.223913 c 5.828989,0.747386 16.108417,-4.179456 17.055997,-7.715889 0.89205,-3.329184 -4.49722,-1.322852 -6.02006,-0.536567 1.41028,-0.785858 7.28907,-3.794081 5.17175,-7.925004 -1.45105,-2.831016 -4.36366,-0.449268 -6.4916,1.943708 -1.23757,1.852219 -2.54754,3.27504 -2.54754,3.27504 0,10e-7 1.09158,-1.637741 2.54754,-3.27504 1.84073,-2.754945 3.49264,-6.485338 0.25147,-7.939419 -2.06699,-0.927317 -3.618381,0.391365 -4.745566,2.342926 -0.461372,3.434842 -2.380888,6.751181 -2.380888,6.751181 7e-6,1e-6 0.552252,-3.585157 2.380888,-6.751181 0.298535,-2.222545 -0.119101,-4.130467 -2.17494,-3.579606 -0.800919,0.214605 -1.726467,0.402492 -2.679566,0.608854 0.932367,-1.293047 4.886802,-7.083603 3.394706,-10.620188 -1.677041,-3.97496 -3.057848,2.703646 -3.057848,2.703643 0,0 1.680481,-7.761334 -0.202028,-13.162415 -1.882519,-5.401077 -1.973293,5.144649 -1.973293,5.144649 0,0 0.02902,-9.570551 -4.268554,-13.268344 -4.297573,-3.697795 -0.863401,5.442044 -0.863397,5.442044 0,0 -3.080908,-9.058261 -9.561819,-11.186555 -1.012643,-0.332545 -1.570117,-0.379928 -1.814663,-0.143089 z"
id="path10522"
style="fill:url(#radialGradient3966);fill-opacity:1;fill-rule:evenodd;stroke:#729fcf;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 60.400431,84.588774 C 55.502998,66.311305 80.396822,66.246952 81.086813,49.783187 81.776803,33.319422 70.150186,23.348755 76.631104,25.477044 c 6.480913,2.128293 9.541205,11.174681 9.541205,11.174681 0,0 -3.425785,-9.144321 0.871788,-5.446526 4.297572,3.697794 4.273912,13.288905 4.273912,13.288905 0,0 0.08575,-10.553808 1.968268,-5.152731 1.88251,5.401082 0.191409,13.17434 0.191409,13.17434 0,0 1.397306,-6.676785 3.074347,-2.701826 1.677041,3.974961 -3.766911,11.134376 -3.766911,11.134376 0,0 6.693422,-2.319698 4.627219,3.198524 -2.066202,5.518223 -11.781491,7.419947 -11.781491,7.419947 0,0 9.199381,1.485635 3.647887,6.853441 -5.551495,5.367807 -13.9482,5.272447 -13.9482,5.272447"
id="path10524"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#729fcf;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 46.322278,72.009213 c -0.648374,0.05705 -1.355933,0.175486 -2.200681,0.418367 1.230234,0.396327 2.156324,1.466447 2.636211,2.430069 1.148223,-1.096589 1.039806,-1.782352 2.777448,-2.157329 -0.633705,-0.394512 -1.299037,-0.655602 -2.081957,-0.728091 -0.522156,-0.68171 -0.560353,-0.11324 -1.131021,0.03698 z"
id="path15842"
style="fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:#729fcf;stroke-width:0.25;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 41.722024,65.586999 c 0,0 4.326779,1.068185 2.593903,5.233683 -3.950258,-1.643336 1.430014,-3.559705 -2.593903,-5.233683 z"
id="path6450"
style="display:inline;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<g
transform="matrix(0.133747,0.05563981,-0.05563981,0.133747,27.2196,35.07171)"
id="g9129"
style="display:inline">
<path
d="m 193.49611,170.55585 a 8.31169,8.31169 0 1 1 -16.62338,0 8.31169,8.31169 0 1 1 16.62338,0 z"
transform="matrix(1.396026,0,0,1.396026,-71.55557,-66.82562)"
id="path7337"
style="fill:#000000;fill-opacity:1;stroke:none" />
<path
d="m 193.49611,170.55585 a 8.31169,8.31169 0 1 1 -16.62338,0 8.31169,8.31169 0 1 1 16.62338,0 z"
transform="matrix(0.550417,0,0,0.256292,85.03803,134.2209)"
id="path8224"
style="fill:url(#linearGradient970);fill-opacity:1;stroke:none" />
<path
d="m 193.49611,170.55585 a 8.31169,8.31169 0 1 1 -16.62338,0 8.31169,8.31169 0 1 1 16.62338,0 z"
transform="matrix(0.869052,0,0,0.489141,26.03174,83.32977)"
id="path9119"
style="fill:url(#radialGradient3970);fill-opacity:1;stroke:none" />
</g>
<path
d="m 54.198937,67.249037 c 0,0 -4.455524,-0.101697 -3.873488,4.372167 4.242691,-0.55196 -0.448314,-3.809915 3.873488,-4.372167 z"
id="path18554"
style="display:inline;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<g
transform="matrix(-0.143648,0.0186882,0.0186882,0.143648,76.18374,41.59418)"
id="g18556"
style="display:inline">
<path
d="m 193.49611,170.55585 a 8.31169,8.31169 0 1 1 -16.62338,0 8.31169,8.31169 0 1 1 16.62338,0 z"
transform="matrix(1.396026,0,0,1.396026,-71.55557,-66.82562)"
id="path18558"
style="fill:#000000;fill-opacity:1;stroke:none" />
<path
d="m 193.49611,170.55585 a 8.31169,8.31169 0 1 1 -16.62338,0 8.31169,8.31169 0 1 1 16.62338,0 z"
transform="matrix(0.550417,0,0,0.256292,85.03803,134.2209)"
id="path18560"
style="fill:url(#linearGradient6203);fill-opacity:1;stroke:none" />
<path
d="m 193.49611,170.55585 a 8.31169,8.31169 0 1 1 -16.62338,0 8.31169,8.31169 0 1 1 16.62338,0 z"
transform="matrix(0.869052,0,0,0.489141,26.03174,83.32977)"
id="path18562"
style="fill:url(#radialGradient3974);fill-opacity:1;stroke:none" />
</g>
<path
d="m 46.420697,72.531746 a 0.28773159,0.35167193 0 1 1 -0.575463,0 0.28773159,0.35167193 0 1 1 0.575463,0 z"
transform="rotate(-5.0573671,45.563093,69.740886)"
id="path20338"
style="fill:url(#radialGradient3976);fill-opacity:1;stroke:none" />
<path
d="m 46.420697,72.531746 a 0.28773159,0.35167193 0 1 1 -0.575463,0 0.28773159,0.35167193 0 1 1 0.575463,0 z"
transform="rotate(9.3408311,46.870875,81.569693)"
id="path21225"
style="fill:url(#radialGradient3978);fill-opacity:1;stroke:none" />
<path
d="m 47.795793,72.858513 a 0.50028783,0.50028783 0 1 1 -1.000575,0 0.50028783,0.50028783 0 1 1 1.000575,0 z"
transform="matrix(0.632402,0.04700127,-0.109853,1.478076,25.07223,-37.29287)"
id="path23007"
style="fill:url(#radialGradient3980);fill-opacity:1;stroke:none" />
</g>
<path
d="m 70.367893,108.73579 c 9.826066,-2.78781 14.983278,-8.02676 18.19398,-14.983282 3.210702,-6.956521 -8.294314,8.829432 -8.294314,8.829432 0,0 4.816053,-12.307693 1.872909,-10.702341 -2.943144,1.605351 -6.153846,12.575251 -6.153846,12.575251 0,0 0.535117,-13.377927 -1.337793,-10.434783 -1.872909,2.943144 -3.745819,12.307693 -3.745819,12.307693 0,0 -1.872909,-13.377927 -3.745819,-9.899666 -1.87291,3.478261 -0.535118,10.969906 -0.535118,10.969906 0,0 -6.688963,-14.180608 -6.688963,-10.434789 0,3.745819 1.87291,10.434789 1.87291,10.434789 0,0 -7.759198,-12.842816 -8.294315,-10.702348 -0.535117,2.140468 2.675586,9.096998 2.675586,9.096998 0,0 -9.899666,-12.040142 -9.632107,-8.561881 0.267558,3.478261 9.59544,15.538691 23.812709,11.505021 z"
id="path25720"
style="fill:url(#radialGradient3982);fill-opacity:1;fill-rule:evenodd;stroke:none" />
</g>
<path
d="m 67.692308,81.712375 c 0,0 -1.87291,-4.013378 3.745819,-8.829432 5.618729,-4.816053 9.899666,-7.22408 10.9699,-9.899665 -5.351171,8.561873 -13.110368,11.772575 -12.040134,14.715719 1.070234,2.943143 -2.408027,4.013378 -2.675585,4.013378 z"
id="path25708"
style="fill:url(#linearGradient6219);fill-opacity:1;fill-rule:evenodd;stroke:none" />
</g>
</g>
</g>
<rect
width="148.83421"
height="148.83421"
x="0.85935098"
y="-1.2419163"
transform="rotate(0.00975203)"
id="rect25916"
style="fill:none;stroke:#3465a4;stroke-width:1.66846;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<linearGradient
id="SVGID_2"
gradientUnits="userSpaceOnUse"
x1="10.243"
y1="95.310997"
x2="57.703999"
y2="95.310997">
<stop
offset="0"
stop-color="#3156a8"
id="stop23" />
<stop
offset=".247"
stop-color="#3351a4"
id="stop25" />
<stop
offset=".536"
stop-color="#3b4397"
id="stop27" />
<stop
offset=".845"
stop-color="#472c82"
id="stop29" />
<stop
offset="1"
stop-color="#4e1d75"
id="stop31" />
</linearGradient>
<radialGradient
id="SVGID_3"
cx="59.073002"
cy="113.923"
r="85.247002"
gradientTransform="matrix(1,0,0,1.45,0,-51.265)"
gradientUnits="userSpaceOnUse">
<stop
offset=".165"
stop-color="#14cdda"
id="stop36" />
<stop
offset=".548"
stop-color="#2061bd"
id="stop38" />
<stop
offset=".655"
stop-color="#2658ac"
id="stop40" />
<stop
offset=".864"
stop-color="#373f81"
id="stop42" />
<stop
offset="1"
stop-color="#432d62"
id="stop44" />
</radialGradient>
<linearGradient
id="SVGID_4"
gradientUnits="userSpaceOnUse"
x1="44.539001"
y1="57.897999"
x2="191.515"
y2="57.897999">
<stop
offset="0"
stop-color="#2061bd"
id="stop49" />
<stop
offset=".185"
stop-color="#2b51ac"
id="stop51" />
<stop
offset=".683"
stop-color="#442c84"
id="stop53" />
<stop
offset=".941"
stop-color="#4e1d75"
id="stop55" />
</linearGradient>
<linearGradient
id="SVGID_5"
gradientUnits="userSpaceOnUse"
x1="66.174004"
y1="23.205999"
x2="167.26401"
y2="111.082">
<stop
offset=".02"
stop-color="#48a8e0"
id="stop62" />
<stop
offset=".388"
stop-color="#2061bd"
id="stop64" />
<stop
offset=".497"
stop-color="#2b51ac"
id="stop66" />
<stop
offset=".789"
stop-color="#442c84"
id="stop68" />
<stop
offset=".941"
stop-color="#4e1d75"
id="stop70" />
</linearGradient>
<linearGradient
id="SVGID_6"
gradientUnits="userSpaceOnUse"
x1="19.676001"
y1="337.414"
x2="217.83501"
y2="43.631001">
<stop
offset=".379"
stop-color="#3156a8"
id="stop75" />
<stop
offset="1"
stop-color="#4e1d75"
id="stop77" />
</linearGradient>
<linearGradient
id="SVGID_7"
gradientUnits="userSpaceOnUse"
x1="96.745003"
y1="278.646"
x2="206.317"
y2="32.542">
<stop
offset="0"
stop-color="#29abe2"
id="stop82" />
<stop
offset=".773"
stop-color="#385aa6"
id="stop84" />
<stop
offset=".858"
stop-color="#414293"
id="stop86" />
<stop
offset="1"
stop-color="#4e1d75"
id="stop88" />
</linearGradient>
<linearGradient
id="SVGID_8"
gradientUnits="userSpaceOnUse"
x1="48.269001"
y1="92.033997"
x2="54.241001"
y2="95.468002">
<stop
offset="0"
stop-color="#b0dcd6"
id="stop93" />
<stop
offset="1"
stop-color="#53ace0"
id="stop95" />
</linearGradient>
<defs
id="defs103">
<filter
id="MaskFilter"
filterUnits="userSpaceOnUse"
x="162.67999"
y="18.355"
width="14.927"
height="6.6290002">
<feColorMatrix
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"
id="feColorMatrix100" />
</filter>
<linearGradient
id="linearGradient9111">
<stop
id="stop9113"
style="stop-color:#729fcf;stop-opacity:1"
offset="0" />
<stop
id="stop9115"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient22783">
<stop
id="stop22785"
style="stop-color:#000000;stop-opacity:1"
offset="0" />
<stop
id="stop22787"
style="stop-color:#ffffff;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient12684">
<stop
id="stop12686"
style="stop-color:#ffffff;stop-opacity:1"
offset="0" />
<stop
id="stop12692"
style="stop-color:#ffffff;stop-opacity:0.84536082"
offset="0.34999999" />
<stop
id="stop12688"
style="stop-color:#ffffff;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3657">
<stop
id="stop3659"
style="stop-color:#ffffff;stop-opacity:1"
offset="0" />
<stop
id="stop3661"
style="stop-color:#ffffff;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient6348">
<stop
id="stop6350"
style="stop-color:#ffffff;stop-opacity:0.70103091"
offset="0" />
<stop
id="stop6356"
style="stop-color:#4e9a06;stop-opacity:0"
offset="0.80000001" />
<stop
id="stop6352"
style="stop-color:#8ae234;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3645">
<stop
id="stop3647"
style="stop-color:#8ae234;stop-opacity:1"
offset="0" />
<stop
id="stop3649"
style="stop-color:#4e9a06;stop-opacity:1"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient2762">
<stop
id="stop2764"
style="stop-color:#000000;stop-opacity:0.70588237"
offset="0" />
<stop
id="stop4540"
style="stop-color:#000000;stop-opacity:0.35294119"
offset="0.40000001" />
<stop
id="stop2766"
style="stop-color:#000000;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
x1="60.812256"
y1="222.16092"
x2="428.62836"
y2="222.16092"
id="linearGradient3333"
xlink:href="#linearGradient3645"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="244.72031"
cy="222.16092"
r="183.90805"
fx="244.72031"
fy="222.16092"
id="radialGradient3335"
xlink:href="#linearGradient6348"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="49.709621"
cy="222.16092"
r="183.90805"
fx="49.709621"
fy="222.16092"
id="radialGradient3337"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.353938,0,0,1.353938,-33.88875,-78.63119)" />
<radialGradient
cx="69.944862"
cy="222.16092"
r="183.90805"
fx="69.944862"
fy="222.16092"
id="radialGradient3339"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.353938,0,0,1.353938,-33.88875,-78.63119)" />
<linearGradient
x1="98"
y1="240.92043"
x2="420"
y2="240.92043"
id="linearGradient3341"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.543478,-0.941332,0.941332,0.543478,-156.6701,314.8289)" />
<linearGradient
x1="98"
y1="240.92043"
x2="420"
y2="240.92043"
id="linearGradient3343"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.941332,0.543478,0.543478,0.941332,334.2253,-173.0667)" />
<linearGradient
x1="98"
y1="240.92043"
x2="420"
y2="240.92043"
id="linearGradient3345"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.941332,-0.543478,-0.543478,-0.941332,150.7744,625.2735)" />
<linearGradient
x1="98"
y1="240.92043"
x2="420"
y2="240.92043"
id="linearGradient3347"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.543478,0.941332,-0.941332,-0.543478,641.6699,131.3779)" />
<radialGradient
cx="246.35255"
cy="226.88303"
r="154.3577"
fx="246.35255"
fy="226.88303"
id="radialGradient3349"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,-0.57734,0.12401,0.214795,-28.13556,320.3787)" />
<radialGradient
cx="246.35255"
cy="226.88303"
r="154.3577"
fx="246.35255"
fy="226.88303"
id="radialGradient3351"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.57734,-1,0.214795,-0.12401,339.8483,501.3712)" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3353"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3355"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3357"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3359"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3361"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3363"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3365"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3367"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3369"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3371"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3373"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3375"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3377"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<mask
id="mask27344">
<rect
width="89.20401"
height="89.20401"
x="19.397995"
y="20.334448"
id="rect27338"
style="fill:#ffffff;fill-opacity:1;stroke:none" />
</mask>
<radialGradient
cx="65.329872"
cy="63.501297"
r="57.350651"
fx="65.329872"
fy="31.0061"
id="radialGradient5696"
xlink:href="#linearGradient2762"
gradientUnits="userSpaceOnUse" />
<linearGradient
x1="62.618664"
y1="119.48166"
x2="62.618664"
y2="-1.8272629"
id="linearGradient6151"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="244.72031"
cy="222.16092"
r="183.90805"
fx="244.72031"
fy="222.16092"
id="radialGradient6155"
xlink:href="#linearGradient6348"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="49.709621"
cy="222.16092"
r="183.90805"
fx="49.709621"
fy="222.16092"
id="radialGradient6157"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.353938,0,0,1.353938,-33.88875,-78.63119)" />
<radialGradient
cx="69.944862"
cy="222.16092"
r="183.90805"
fx="69.944862"
fy="222.16092"
id="radialGradient6159"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.353938,0,0,1.353938,-33.88875,-78.63119)" />
<radialGradient
cx="246.35255"
cy="226.88303"
r="154.3577"
fx="246.35255"
fy="226.88303"
id="radialGradient6169"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,-0.57734,0.12401,0.214795,-28.13556,320.3787)" />
<radialGradient
cx="246.35255"
cy="226.88303"
r="154.3577"
fx="246.35255"
fy="226.88303"
id="radialGradient6171"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.57734,-1,0.214795,-0.12401,339.8483,501.3712)" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6173"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6175"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6177"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6179"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6181"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6183"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6185"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6187"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6189"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6191"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6193"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6195"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient6197"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<linearGradient
x1="70.079597"
y1="104.14981"
x2="30.154556"
y2="72.577919"
id="linearGradient6199"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="78.836967"
cy="65.425926"
r="36.617115"
fx="78.836967"
fy="65.425926"
id="radialGradient6201"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.784681,-0.354989,0.14614,0.323033,8.299292,73.27385)"
spreadMethod="pad" />
<linearGradient
x1="185.18442"
y1="178.86754"
x2="185.18442"
y2="162.24416"
id="linearGradient6203"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="185.18442"
cy="162.24416"
r="8.3116884"
fx="185.18442"
fy="162.24416"
id="radialGradient6205"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.765929,0,0,3.004776,-141.8381,-325.2632)" />
<radialGradient
cx="185.18442"
cy="162.24416"
r="8.3116884"
fx="185.18442"
fy="162.24416"
id="radialGradient6209"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.765929,0,0,3.004776,-141.8381,-325.2632)" />
<radialGradient
cx="46.132965"
cy="72.531746"
r="0.28773159"
fx="46.132965"
fy="72.531746"
id="radialGradient6211"
xlink:href="#linearGradient2762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.222222,0,-16.11816)" />
<radialGradient
cx="46.132965"
cy="72.531746"
r="0.28773159"
fx="46.132965"
fy="72.531746"
id="radialGradient6213"
xlink:href="#linearGradient2762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.222222,0,-16.11816)" />
<radialGradient
cx="47.304798"
cy="72.108414"
r="0.50028783"
fx="47.304798"
fy="72.108414"
id="radialGradient6215"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.49862,-0.01593619,0.135643,2.335053,-33.43558,-95.6548)" />
<radialGradient
cx="67.904976"
cy="141.29233"
r="21.288834"
fx="67.904976"
fy="141.29233"
id="radialGradient6217"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.29654,-0.335649,0.168235,1.652295,-177.1074,-80.32206)" />
<linearGradient
x1="32.877586"
y1="104.45485"
x2="82.408028"
y2="62.983276"
id="linearGradient6219"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="244.72031"
cy="222.16092"
r="183.90805"
fx="244.72031"
fy="222.16092"
id="radialGradient12133"
xlink:href="#linearGradient6348"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="49.709621"
cy="222.16092"
r="183.90805"
fx="49.709621"
fy="222.16092"
id="radialGradient12135"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.353938,0,0,1.353938,-33.88875,-78.63119)" />
<radialGradient
cx="69.944862"
cy="222.16092"
r="183.90805"
fx="69.944862"
fy="222.16092"
id="radialGradient12137"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.353938,0,0,1.353938,-33.88875,-78.63119)" />
<radialGradient
cx="246.35255"
cy="226.88303"
r="154.3577"
fx="246.35255"
fy="226.88303"
id="radialGradient12147"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,-0.57734,0.12401,0.214795,-28.13556,320.3787)" />
<radialGradient
cx="246.35255"
cy="226.88303"
r="154.3577"
fx="246.35255"
fy="226.88303"
id="radialGradient12149"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.57734,-1,0.214795,-0.12401,339.8483,501.3712)" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12151"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12153"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12155"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12157"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12159"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12161"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12163"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12165"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12167"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12169"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12171"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12173"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient12175"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="78.836967"
cy="65.425926"
r="36.617115"
fx="78.836967"
fy="65.425926"
id="radialGradient12179"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.784681,-0.354989,0.14614,0.323033,8.299292,73.27385)"
spreadMethod="pad" />
<radialGradient
cx="185.18442"
cy="162.24416"
r="8.3116884"
fx="185.18442"
fy="162.24416"
id="radialGradient12183"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.765929,0,0,3.004776,-141.8381,-325.2632)" />
<radialGradient
cx="185.18442"
cy="162.24416"
r="8.3116884"
fx="185.18442"
fy="162.24416"
id="radialGradient12187"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.765929,0,0,3.004776,-141.8381,-325.2632)" />
<radialGradient
cx="46.132965"
cy="72.531746"
r="0.28773159"
fx="46.132965"
fy="72.531746"
id="radialGradient12189"
xlink:href="#linearGradient2762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.222222,0,-16.11816)" />
<radialGradient
cx="46.132965"
cy="72.531746"
r="0.28773159"
fx="46.132965"
fy="72.531746"
id="radialGradient12191"
xlink:href="#linearGradient2762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.222222,0,-16.11816)" />
<radialGradient
cx="47.304798"
cy="72.108414"
r="0.50028783"
fx="47.304798"
fy="72.108414"
id="radialGradient12193"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.49862,-0.01593619,0.135643,2.335053,-33.43558,-95.6548)" />
<radialGradient
cx="67.904976"
cy="141.29233"
r="21.288834"
fx="67.904976"
fy="141.29233"
id="radialGradient12195"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.29654,-0.335649,0.168235,1.652295,-177.1074,-80.32206)" />
<linearGradient
x1="229.09253"
y1="86.978439"
x2="229.09253"
y2="56.824593"
id="linearGradient13153"
xlink:href="#linearGradient22783"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.954268,0,0,0.959649,9.076597,-0.01727395)" />
<linearGradient
x1="229.09253"
y1="86.978439"
x2="229.09253"
y2="56.824593"
id="linearGradient14041"
xlink:href="#linearGradient22783"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.954268,0,0,0.959649,29.0766,-0.01727395)" />
<linearGradient
x1="229.09253"
y1="86.978439"
x2="229.09253"
y2="56.824593"
id="linearGradient14046"
xlink:href="#linearGradient22783"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.954268,0,0,0.959649,9.0766,-0.01727395)" />
<mask
id="mask14043">
<path
d="m 148.21875,-0.4375 v 146.375 h 167.5 V -0.4375 Z M 230.625,49.75 c 1.98848,-0.02184 4.7236,0.663877 6.0625,0.1875 0,9.635417 0,19.270833 0,28.90625 1.11657,7.23115 0.023,12.252206 -8.34375,10 0.19159,-2.392331 -3.36318,1.1924 -5.1875,0.53125 -8.50182,1.015102 -13.36726,-8.401246 -12.09375,-15.8125 -0.0165,-7.696054 7.10964,-15.418471 15.1875,-12.875 4.46211,2.390819 1.01672,-6.284791 2.09375,-8.75 -0.35922,-1.719355 0.73465,-2.17051 2.28125,-2.1875 z m -75.46875,1.9375 c 3.09693,-0.173975 6.68685,1.655853 4.625,5.8125 0.13967,2.162005 -1.49352,3.247592 -3.40625,3.40625 0.95833,0.08883 1.83896,0.147287 2.40625,-0.0625 2.31509,4.01824 0.34697,12.319697 1,18 1.11657,7.23115 0.023,12.252206 -8.34375,10 0,-8.666667 0,-17.333333 0,-26 -0.61322,-2.103565 1.06477,-2.247317 3.03125,-2.09375 -2.72502,-0.609775 -5.07666,-2.93685 -3.03125,-6.65625 0.18487,-1.474559 1.86059,-2.301865 3.71875,-2.40625 z m 43.875,8.5625 c 6.98985,0.196329 10.86287,7.325991 10.375,13.90625 0.6697,6.711362 -10.14128,1.942055 -14.75,3.375 0.59033,4.189945 5.72389,5.519142 9.28125,4.03125 5.61086,-3.191786 6.071,0.49678 5.375,6.03125 -5.27294,1.631663 -11.4292,2.974185 -16.5,0.09375 -11.22384,-5.741456 -8.60822,-26.771052 4.78125,-27.375 0.49334,-0.05069 0.97151,-0.07559 1.4375,-0.0625 z m 104.875,0 c 6.9649,0.177471 10.95148,7.370425 10.375,13.90625 0.6697,6.711362 -10.14128,1.942055 -14.75,3.375 0.6795,4.267846 5.75208,5.468895 9.3125,4.03125 5.63266,-3.150837 6.0036,0.453882 5.34375,6 -5.01782,1.609979 -10.73884,2.859265 -15.71875,0.53125 -12.01787,-5.155343 -9.72816,-27.149655 4,-27.78125 0.49028,-0.05278 0.97317,-0.07433 1.4375,-0.0625 z m -50.96875,0.03125 c 0.25546,-4.33e-4 0.49531,0.0093 0.75,0.03125 10.41417,-0.19187 15.1914,12.213535 11.6875,20.8125 -3.52793,11.257989 -22.23949,10.905066 -25.0625,-0.65625 -3.21326,-8.422972 1.74493,-20.383051 11.84375,-20.15625 0.25472,-0.02017 0.52579,-0.03082 0.78125,-0.03125 z M 175,60.3125 c 0.27433,-0.0046 0.56339,-0.01434 0.84375,0 2.51836,0.307518 10.25424,-0.501947 9.0625,3.40625 1.60282,6.314471 -1.89506,5.335862 -6.3125,4.09375 -5.77182,-1.744673 -8.49633,5.805968 -6.5625,10.21875 1.64835,6.113164 9.60793,3.494617 13.15625,1.3125 0.11864,4.374539 1.25434,9.710269 -4.53125,9.46875 -7.93457,2.789713 -17.04896,-2.855892 -17.8125,-11.28125 C 160.97452,69.546203 166.49588,60.456537 175,60.3125 Z m 93.28125,0.09375 c 3.16583,-0.01303 7.25547,1.69276 6.4375,5.1875 2.18424,6.969216 4.38574,13.841246 6.75,3 0.97108,-6.769895 4.79582,-9.325412 11.4375,-7.75 -2.49861,6.453124 -5.09002,12.873606 -7.625,19.3125 -1.51636,5.796246 -3.60595,10.845651 -10.53125,8.6875 -3.16564,-8.430038 -6.28831,-16.876265 -9.4375,-25.3125 -1.39418,-2.06044 0.50644,-3.114866 2.96875,-3.125 z m -69.75,7.125 c -0.16494,-0.01326 -0.32177,0.0058 -0.5,0.03125 -2.61501,-0.25401 -5.42748,4.184057 -0.125,2.6875 3.98536,1.720476 3.09913,-2.519924 0.625,-2.71875 z m 104.90625,0 c -0.16579,-0.01149 -0.35186,0.0031 -0.53125,0.03125 -2.56462,-0.293267 -5.24508,4.132377 -0.15625,2.6875 4.01137,1.75013 3.17439,-2.546444 0.6875,-2.71875 z m -79.96875,0.03125 c -4.83305,0.98391 -4.1215,8.686307 -3.09375,12.21875 2.51087,4.636242 10.59428,-0.704694 7.96875,-5.3125 1.46854,-3.894639 -1.01816,-7.154893 -4.875,-6.90625 z m 29.1875,0 c -4.83917,-0.0469 -4.69129,6.28134 -4.375,9.59375 -0.55884,5.172074 7.34838,6.945086 8.8125,2.15625 1.31107,-3.839954 1.51358,-12.078854 -4.4375,-11.75 z"
id="rect12260"
style="fill:url(#linearGradient14046);fill-opacity:1;stroke:none" />
</mask>
<linearGradient
x1="232"
y1="199.5"
x2="232"
y2="133"
id="linearGradient2393"
xlink:href="#linearGradient22783"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.606013,0,0,1,4.061872,-75.24342)" />
<mask
id="mask2390">
<rect
width="165.44148"
height="55"
x="144.65685"
y="84.756577"
id="rect21896"
style="fill:url(#linearGradient2393);fill-opacity:1;stroke:none" />
</mask>
<radialGradient
cx="244.72031"
cy="222.16092"
r="183.90805"
fx="244.72031"
fy="222.16092"
id="radialGradient3346"
xlink:href="#linearGradient6348"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="49.709621"
cy="222.16092"
r="183.90805"
fx="49.709621"
fy="222.16092"
id="radialGradient3348"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.353938,0,0,1.353938,-33.88875,-78.63119)" />
<radialGradient
cx="69.944862"
cy="222.16092"
r="183.90805"
fx="69.944862"
fy="222.16092"
id="radialGradient3350"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.353938,0,0,1.353938,-33.88875,-78.63119)" />
<radialGradient
cx="246.35255"
cy="226.88303"
r="154.3577"
fx="246.35255"
fy="226.88303"
id="radialGradient3360"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,-0.57734,0.12401,0.214795,-28.13556,320.3787)" />
<radialGradient
cx="246.35255"
cy="226.88303"
r="154.3577"
fx="246.35255"
fy="226.88303"
id="radialGradient3362"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.57734,-1,0.214795,-0.12401,339.8483,501.3712)" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3364"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3366"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3368"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3370"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3372"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3374"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3376"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3378"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3380"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3382"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3384"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3386"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3388"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="78.836967"
cy="65.425926"
r="36.617115"
fx="78.836967"
fy="65.425926"
id="radialGradient3392"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.784681,-0.354989,0.14614,0.323033,8.299292,73.27385)"
spreadMethod="pad" />
<radialGradient
cx="185.18442"
cy="162.24416"
r="8.3116884"
fx="185.18442"
fy="162.24416"
id="radialGradient3396"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.765929,0,0,3.004776,-141.8381,-325.2632)" />
<radialGradient
cx="185.18442"
cy="162.24416"
r="8.3116884"
fx="185.18442"
fy="162.24416"
id="radialGradient3400"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.765929,0,0,3.004776,-141.8381,-325.2632)" />
<radialGradient
cx="46.132965"
cy="72.531746"
r="0.28773159"
fx="46.132965"
fy="72.531746"
id="radialGradient3402"
xlink:href="#linearGradient2762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.222222,0,-16.11816)" />
<radialGradient
cx="46.132965"
cy="72.531746"
r="0.28773159"
fx="46.132965"
fy="72.531746"
id="radialGradient3404"
xlink:href="#linearGradient2762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.222222,0,-16.11816)" />
<radialGradient
cx="47.304798"
cy="72.108414"
r="0.50028783"
fx="47.304798"
fy="72.108414"
id="radialGradient3406"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.49862,-0.01593619,0.135643,2.335053,-33.43558,-95.6548)" />
<radialGradient
cx="67.904976"
cy="141.29233"
r="21.288834"
fx="67.904976"
fy="141.29233"
id="radialGradient3408"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.29654,-0.335649,0.168235,1.652295,-177.1074,-80.32206)" />
<radialGradient
cx="65.329872"
cy="63.501297"
r="57.350651"
fx="65.329872"
fy="31.0061"
id="radialGradient3489"
xlink:href="#linearGradient2762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1409496,0.15697131,-0.13075921,0.95042632,156.85003,-17.235299)" />
<radialGradient
cx="244.72031"
cy="222.16092"
r="183.90805"
fx="244.72031"
fy="222.16092"
id="radialGradient3920"
xlink:href="#linearGradient6348"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="49.709621"
cy="222.16092"
r="183.90805"
fx="49.709621"
fy="222.16092"
id="radialGradient3922"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.353938,0,0,1.353938,-33.88875,-78.63119)" />
<radialGradient
cx="69.944862"
cy="222.16092"
r="183.90805"
fx="69.944862"
fy="222.16092"
id="radialGradient3924"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.353938,0,0,1.353938,-33.88875,-78.63119)" />
<radialGradient
cx="246.35255"
cy="226.88303"
r="154.3577"
fx="246.35255"
fy="226.88303"
id="radialGradient3934"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,-0.57734,0.12401,0.214795,-28.13556,320.3787)" />
<radialGradient
cx="246.35255"
cy="226.88303"
r="154.3577"
fx="246.35255"
fy="226.88303"
id="radialGradient3936"
xlink:href="#linearGradient3657"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.57734,-1,0.214795,-0.12401,339.8483,501.3712)" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3938"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3940"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3942"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3944"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3946"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3948"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3950"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3952"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3954"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3956"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3958"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3960"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="156.5"
cy="148.5"
r="19.5"
fx="156.5"
fy="148.5"
id="radialGradient3962"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="78.836967"
cy="65.425926"
r="36.617115"
fx="78.836967"
fy="65.425926"
id="radialGradient3966"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.784681,-0.354989,0.14614,0.323033,8.299292,73.27385)"
spreadMethod="pad" />
<radialGradient
cx="185.18442"
cy="162.24416"
r="8.3116884"
fx="185.18442"
fy="162.24416"
id="radialGradient3970"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.765929,0,0,3.004776,-141.8381,-325.2632)" />
<radialGradient
cx="185.18442"
cy="162.24416"
r="8.3116884"
fx="185.18442"
fy="162.24416"
id="radialGradient3974"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.765929,0,0,3.004776,-141.8381,-325.2632)" />
<radialGradient
cx="46.132965"
cy="72.531746"
r="0.28773159"
fx="46.132965"
fy="72.531746"
id="radialGradient3976"
xlink:href="#linearGradient2762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.222222,0,-16.11816)" />
<radialGradient
cx="46.132965"
cy="72.531746"
r="0.28773159"
fx="46.132965"
fy="72.531746"
id="radialGradient3978"
xlink:href="#linearGradient2762"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.222222,0,-16.11816)" />
<radialGradient
cx="47.304798"
cy="72.108414"
r="0.50028783"
fx="47.304798"
fy="72.108414"
id="radialGradient3980"
xlink:href="#linearGradient12684"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.49862,-0.01593619,0.135643,2.335053,-33.43558,-95.6548)" />
<radialGradient
cx="67.904976"
cy="141.29233"
r="21.288834"
fx="67.904976"
fy="141.29233"
id="radialGradient3982"
xlink:href="#linearGradient9111"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.29654,-0.335649,0.168235,1.652295,-177.1074,-80.32206)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9111"
id="linearGradient970"
gradientUnits="userSpaceOnUse"
x1="185.18442"
y1="178.86754"
x2="185.18442"
y2="162.24416" />
</defs>
<mask
maskUnits="userSpaceOnUse"
x="162.68"
y="18.355"
width="14.927"
height="6.629"
id="SVGID_9">
<g
filter="url(#MaskFilter)"
id="g112">
<radialGradient
id="SVGID_10"
cx="154.384"
cy="67.999001"
r="51.967999"
gradientUnits="userSpaceOnUse">
<stop
offset=".868"
stop-color="#fff"
id="stop105" />
<stop
offset="1"
id="stop107" />
</radialGradient>
<path
fill="url(#SVGID_10)"
d="M 91.295,-7.218 H 191.31 V 86.121 H 91.295 Z"
id="path110" />
</g>
</mask>
<linearGradient
id="SVGID_12"
gradientUnits="userSpaceOnUse"
x1="80.783997"
y1="38.025002"
x2="90.637001"
y2="77.543999">
<stop
offset=".007"
stop-color="#1398d1"
stop-opacity="0"
id="stop130" />
<stop
offset=".248"
stop-color="#1187c2"
stop-opacity=".62"
id="stop132" />
<stop
offset=".642"
stop-color="#3f6499"
stop-opacity=".71"
id="stop134" />
<stop
offset="1"
stop-color="#2f4282"
stop-opacity=".5"
id="stop136" />
</linearGradient>
<linearGradient
id="SVGID_13"
gradientUnits="userSpaceOnUse"
x1="48.737999"
y1="14.373"
x2="43.199001"
y2="11.303"
gradientTransform="rotate(1.985,-1624.088,732.523)">
<stop
offset="0"
stop-color="#f9c21b"
id="stop145" />
<stop
offset=".148"
stop-color="#f3ba1b"
id="stop147" />
<stop
offset=".379"
stop-color="#e3a41b"
id="stop149" />
<stop
offset=".663"
stop-color="#c9801c"
id="stop151" />
<stop
offset=".988"
stop-color="#a44e1c"
id="stop153" />
<stop
offset="1"
stop-color="#a34c1c"
id="stop155" />
</linearGradient>
<linearGradient
id="SVGID_14"
gradientUnits="userSpaceOnUse"
x1="206.211"
y1="130.13901"
x2="169.42999"
y2="47.526001">
<stop
offset="0"
stop-color="#409ec3"
id="stop164" />
<stop
offset=".62"
stop-color="#2061bd"
id="stop166" />
</linearGradient>
<linearGradient
id="SVGID_15"
gradientUnits="userSpaceOnUse"
x1="176.75999"
y1="103.061"
x2="150.407"
y2="21.954">
<stop
offset="0"
stop-color="#14b2da"
id="stop171" />
<stop
offset=".403"
stop-color="#297ccc"
id="stop173" />
<stop
offset=".508"
stop-color="#256fc5"
id="stop175" />
<stop
offset=".649"
stop-color="#2164bf"
id="stop177" />
<stop
offset=".816"
stop-color="#2061bd"
id="stop179" />
<stop
offset=".984"
stop-color="#2061bd"
id="stop181" />
</linearGradient>
<g
id="g602"
transform="matrix(0.60952381,0,0,0.60952381,-1.4336015,-2.24423)">
<g
id="g132"
transform="matrix(1.2382749,0.39413843,-0.39413843,1.2382749,190.83815,156.63941)"
style="fill:#304776;fill-opacity:1">
<path
id="path109"
d="m 10.74084,32.483884 c 0,11.248047 -14.1726592,19.516082 -1.4172056,19.516082 H 54.675825 c 12.756053,0 -1.416006,-8.268035 -1.416006,-19.516082 0,-12.544652 -5.670024,-26.484111 -21.260089,-26.484111 -15.590066,0 -21.26009,13.939459 -21.26009,26.484111 z"
style="fill:#304776;fill-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path111"
d="m 22.000088,51.999966 c 1.477366,3.475015 5.373022,6.000025 10.000042,6.000025 4.627019,0 8.522635,-2.52501 10.000042,-6.000025 z"
style="fill:#304776;fill-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path113"
d="m 32,6.000188 c -15.60093,0 -21.272352,13.938322 -21.272352,26.484375 C 10.727647,39.412592 5.3622653,45.202987 4.2114739,48.633 4.1390163,48.51089 4.0913918,48.3778 4.055117,48.240422 3.955017,48.775234 3.9822842,49.246753 4.2114739,49.633 5.3622653,46.202987 10.727647,40.412592 10.727648,33.484563 10.727648,20.93851 16.39907,7.000188 32,7.000188 c 15.600729,0 21.272354,13.938322 21.272353,26.484375 0,6.928029 5.365382,12.718424 6.516173,16.148437 0.229024,-0.386247 0.256549,-0.857766 0.156357,-1.392578 C 59.908658,48.3778 59.860936,48.51089 59.788526,48.633 58.637735,45.202987 53.272353,39.412592 53.272353,32.484563 53.272354,19.93851 47.600729,6.000188 32,6.000188 Z"
style="opacity:0.1;fill:#304776;fill-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path115"
d="M 59.947616,50.240234 C 59.652602,51.373263 58.191937,52 54.696462,52 H 9.3011464 C 5.8103137,52 4.3494303,51.374576 4.0519464,50.244141 3.7235581,52.000207 4.8913583,53 9.3011464,53 H 54.696462 c 4.413231,0 5.581129,-1.001537 5.251154,-2.759766 z"
style="opacity:0.2;fill:#304776;fill-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path117"
d="m 22,53 c 1.478006,3.476014 5.37398,6 10,6 4.626019,0 8.521993,-2.523986 10,-6 H 41.486328 C 39.738253,55.948348 36.168198,58 32,58 27.831801,58 24.261746,55.948348 22.513672,53 Z"
style="opacity:0.2;fill:#304776;fill-opacity:1"
inkscape:connector-curvature="0" />
</g>
<g
aria-label="B"
transform="matrix(1.7322201,0.54448863,-0.54448863,1.7322201,86.447743,50.243467)"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:45.3573px;line-height:1.25;font-family:FreeMono;-inkscape-font-specification:'FreeMono Italic';letter-spacing:0px;word-spacing:0px;fill:#afafe9;fill-opacity:1;stroke:none;stroke-width:0.311386"
id="text888">
<path
d="m 84.801855,71.716194 4.574428,-21.571565 h -2.421755 q -1.031489,0 -1.031489,-0.762405 0,-1.076336 1.435114,-1.076336 h 11.57061 q 2.870237,0 4.619267,1.479962 1.79391,1.435115 1.79391,3.812022 0,4.125955 -5.1126,6.592557 4.48472,1.659352 4.48472,5.247138 0,3.139314 -2.78052,5.650763 -2.735693,2.466604 -6.188937,2.466604 H 81.976474 q -1.031489,0 -1.031489,-0.762405 0,-1.076335 1.435115,-1.076335 z M 103.45835,53.956651 q 0,-1.614503 -1.34542,-2.690839 -1.30058,-1.121183 -3.542944,-1.121183 h -7.354962 l -1.973283,9.373091 h 6.592556 q 3.184161,0 5.381683,-1.614504 2.24237,-1.614504 2.24237,-3.946565 z m -0.62786,11.75 q 0,-1.749045 -1.56966,-3.049618 -1.569662,-1.300573 -5.740463,-1.300573 h -6.682251 l -2.19752,10.359734 h 9.328244 q 2.735688,0 4.79867,-1.793894 2.06298,-1.83874 2.06298,-4.215649 z"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:45.3573px;font-family:FreeMono;-inkscape-font-specification:'FreeMono Italic';fill:#afafe9;fill-opacity:1;stroke-width:0.307885"
id="path852"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>
helpers/DATA/birdtray/icons/128/com.ulduzsoft.Birdtray.png

29.3 KiB

helpers/DATA/birdtray/icons/32/com.ulduzsoft.Birdtray.png

3.95 KiB

helpers/DATA/birdtray/icons/48/com.ulduzsoft.Birdtray.png

7.37 KiB

helpers/DATA/birdtray/icons/64/com.ulduzsoft.Birdtray.png

11.5 KiB

helpers/DATA/birdtray/thunderbird.png

29.3 KiB

diff -ru a/bleachbit.spec b/bleachbit.spec
--- a/bleachbit.spec 2020-03-22 21:42:04.000000000 +0100
+++ b/bleachbit.spec 2021-06-25 23:06:33.113952262 +0200
@@ -72,7 +72,7 @@
Delete traces of your activities and other junk files to free disk
space and maintain privacy. BleachBit identifies and erases
broken menu entries, cache, cookies, localizations, recent document
-lists, and temporary files in Firefox, Google Chrome, Flash, and 60
+lists, and temporary files in Firefox, LibreOffice and 60
other applications.
Shred files to prevent recovery, and wipe free disk space to
diff -ru a/cleaners/localizations.xml b/cleaners/localizations.xml
--- a/cleaners/localizations.xml 2020-03-22 21:42:04.000000000 +0100
+++ b/cleaners/localizations.xml 2021-06-25 23:06:33.117952276 +0200
@@ -6,9 +6,6 @@
the parent element, so <path location="/usr"><path location="share"/></path>
effects elements in /usr/share.-->
<path location="/usr/lib">
- <!-- This filter deletes /usr/lib/chromium/locales/*.pak, where * is every
- valid locale not specifically excluded in the configuration.-->
- <path location="chromium/locales" filter="*.pak"/>
<path location="libreoffice/share">
<path location="autocorr" filter="acor_*.dat"/>
<path location="fingerprint" filter="*.lm"/>
diff -ru a/debian/bleachbit.1 b/debian/bleachbit.1
--- a/debian/bleachbit.1 2020-04-01 06:08:31.000000000 +0200
+++ b/debian/bleachbit.1 2021-06-25 23:06:33.117952276 +0200
@@ -8,8 +8,8 @@
BleachBit deletes unnecessary files to free valuable disk space,
maintain privacy, and remove junk. Rid your system of old clutter
including cache, temporary files, cookies, and broken shortcuts.
-It wipes clean Bash, Beagle, Epiphany, Firefox, Flash, Java, KDE,
-OpenOffice.org, Opera, RealPlayer, rpmbuild, VIM, XChat, and more.
+It wipes clean Bash, Beagle, Epiphany, Firefox, Java, KDE,
+OpenOffice.org, RealPlayer, rpmbuild, VIM, XChat, and more.
.PP
This is the command line interface for BleachBit.
.SH OPTIONS
diff -ru a/debian/control b/debian/control
--- a/debian/control 2020-04-01 06:08:31.000000000 +0200
+++ b/debian/control 2021-06-25 23:06:33.117952276 +0200
@@ -29,8 +29,8 @@
privacy, and remove junk. It removes cache, Internet history, temporary files,
cookies, and broken shortcuts.
.
- It handles cleaning of Adobe Reader, Bash, Beagle, Epiphany, Firefox, Flash,
- GIMP, Google Earth, Java, KDE, OpenOffice.org, Opera, RealPlayer, rpmbuild,
+ It handles cleaning of Bash, Beagle, Epiphany, Firefox,
+ GIMP, Java, KDE, OpenOffice.org, RealPlayer, rpmbuild,
Second Life Viewer, VIM, XChat, and more.
.
Beyond simply erasing junk files, BleachBit wipes free disk space (to hide
diff -ru a/doc/cleaner_markup_language.xsd b/doc/cleaner_markup_language.xsd
--- a/doc/cleaner_markup_language.xsd 2020-03-22 21:42:04.000000000 +0100
+++ b/doc/cleaner_markup_language.xsd 2021-06-25 23:06:33.117952276 +0200
@@ -125,11 +125,6 @@
<xs:enumeration value="apt.clean"/>
<xs:enumeration value="apt.autoclean"/>
<xs:enumeration value="apt.autoremove"/>
- <xs:enumeration value="chrome.autofill"/>
- <xs:enumeration value="chrome.databases_db"/>
- <xs:enumeration value="chrome.favicons"/>
- <xs:enumeration value="chrome.history"/>
- <xs:enumeration value="chrome.keywords"/>
<xs:enumeration value="delete"/>
<xs:enumeration value="dnf.autoremove"/>
<xs:enumeration value="dnf.clean_all"/>
diff -ru source/PKG-INFO source_fix/PKG-INFO
--- a/PKG-INFO 2021-11-13 15:05:48.000000000 -0600
+++ b/PKG-INFO 2022-04-10 16:28:47.450145458 -0500
@@ -7,5 +7,5 @@
Author-email: andrew@bleachbit.org
License: GPLv3
Download-URL: https://www.bleachbit.org/download
-Description: BleachBit frees space and maintains privacy by quickly wiping files you don't need and didn't know you had. Supported applications include Edge, Firefox, Google Chrome, VLC, and many others.
+Description: BleachBit frees space and maintains privacy by quickly wiping files you don't need and didn't know you had. Supported applications include Firefox, VLC, and many others.
Platform: Linux and Windows; Python v2.6 and 2.7; GTK v3.12+
diff -ru source/setup.py source_fix/setup.py
--- a/setup.py 2021-11-13 15:05:47.000000000 -0600
+++ b/setup.py 2022-04-10 16:34:51.418739031 -0500
@@ -47,7 +47,7 @@
import bleachbit.FileUtilities
APP_NAME = "BleachBit - Free space and maintain privacy"
-APP_DESCRIPTION = "BleachBit frees space and maintains privacy by quickly wiping files you don't need and didn't know you had. Supported applications include Edge, Firefox, Google Chrome, VLC, and many others."
+APP_DESCRIPTION = "BleachBit frees space and maintains privacy by quickly wiping files you don't need and didn't know you had. Supported applications include Firefox, VLC, and many others."
#
# begin win32com.shell workaround for py2exe
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="24"
height="24"
enable-background="new"
version="1.0"
id="svg6"
sodipodi:docname="logo-trisquel.svg"
inkscape:version="1.2.1 (1:1.2.1+202210291243+9c6d41e410)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs10">
<linearGradient
id="vlpc"
x1="33.110001"
x2="25.370001"
y1="43.540001"
y2="2.4400001"
gradientUnits="userSpaceOnUse"
xlink:href="#vlpa" />
<linearGradient
id="vlpa">
<stop
style="stop-color:#fff"
offset="0"
id="stop497" />
<stop
style="stop-color:#fff;stop-opacity:0"
offset="1"
id="stop499" />
</linearGradient>
<linearGradient
id="vlpb"
x1="29.85"
x2="21.799999"
y1="50.400002"
y2="15.47"
gradientUnits="userSpaceOnUse"
xlink:href="#vlpa" />
</defs>
<sodipodi:namedview
id="namedview8"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="24.513035"
inkscape:cx="15.09401"
inkscape:cy="12.401565"
inkscape:window-width="1918"
inkscape:window-height="1008"
inkscape:window-x="1366"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg6" />
<g
transform="matrix(0.36908776,0,0,0.36908776,3.161044,3.4564951)"
id="g514">
<path
d="m 27.87,43.71 c -1.113,-0.1508 -2.337,-0.4496 -2.88,-0.7032 -1.256,-0.5861 -2.457,-1.418 -2.886,-1.999 -0.1122,-0.1521 -0.3907,-0.4236 -0.6189,-0.6033 -0.9071,-0.7146 -1.437,-1.467 -2.518,-3.576 -0.1228,-0.2396 -0.5067,-2.179 -0.6479,-3.275 -0.1116,-0.8656 -0.1027,-2.595 0.01758,-3.386 0.1492,-0.9822 0.454,-2.274 0.6016,-2.55 0.1243,-0.2322 0.433,-1.232 0.529,-1.713 0.03626,-0.1818 0.1176,-0.3943 0.1807,-0.4722 0.06314,-0.07791 0.1935,-0.4179 0.2896,-0.7555 0.09614,-0.3376 0.3202,-0.9081 0.498,-1.268 0.3981,-0.8055 0.5852,-1.406 0.5866,-1.881 5.72e-4,-0.1998 0.07085,-0.6034 0.1562,-0.897 0.209,-0.7188 0.1284,-2.743 -0.1396,-3.509 -0.2036,-0.5819 -0.7008,-1.559 -1.223,-2.404 -1.082,-1.751 -4.176,-3.905 -6.017,-4.19 -0.7057,-0.1092 -3.042,0.01163 -4.046,0.2092 -0.8596,0.1691 -1.669,0.5453 -2.084,0.9685 -1.065,1.085 -1.687,1.818 -1.932,2.276 -0.3536,0.6608 -0.5729,1.674 -0.6331,2.926 -0.06837,1.423 -0.00892,1.72 0.6221,3.112 0.5325,1.174 1.965,2.361 3.54,2.933 0.7354,0.2671 1.015,0.3166 2.078,0.3675 1.465,0.07027 2.089,-0.03592 2.746,-0.467 0.2558,-0.1679 0.6563,-0.4177 0.8901,-0.5549 1.067,-0.6266 1.624,-1.808 1.62,-3.435 -0.0028,-1.008 -0.3621,-1.919 -0.9709,-2.462 -0.3786,-0.3374 -1.714,-1.141 -2.102,-1.265 -0.6762,-0.2158 -1.548,-0.07892 -2.479,0.3891 -0.4531,0.2278 -0.9044,0.5245 -1.003,0.6593 -0.09841,0.1348 -0.3213,0.6235 -0.4953,1.086 -0.174,0.4626 -0.3513,0.8411 -0.3939,0.8411 -0.1692,0 -0.1258,-0.7336 0.07669,-1.297 0.2897,-0.806 0.5806,-1.225 1.154,-1.664 0.6469,-0.4944 1.281,-0.7389 2.138,-0.8243 1.115,-0.111 1.289,-0.0798 2.253,0.4032 1.122,0.5619 1.461,0.8933 2.014,1.969 0.661,1.284 0.742,1.638 0.5954,2.599 -0.1666,1.093 -0.541,2.197 -0.977,2.88 -0.3975,0.6233 -1.138,1.191 -2.47,1.893 -0.9548,0.5031 -1.281,0.5909 -2.55,0.6869 -1.389,0.105 -2.198,0.01486 -3.258,-0.3629 -0.4675,-0.1666 -1.049,-0.3599 -1.292,-0.4294 -0.3241,-0.09271 -0.7433,-0.3804 -1.571,-1.078 -1.421,-1.197 -1.649,-1.585 -1.925,-3.265 -0.1024,-0.6233 -0.1996,-1.439 -0.216,-1.812 -0.01637,-0.3733 -0.05626,-0.7215 -0.08866,-0.7739 -0.06776,-0.1096 0.08948,-2.008 0.2473,-2.986 0.1301,-0.806 0.1896,-0.9285 1.119,-2.305 0.5517,-0.817 0.9145,-1.24 1.43,-1.668 1.667,-1.384 2.756,-1.958 4.649,-2.45 1.313,-0.341 1.316,-0.3414 2.928,-0.2986 1.704,0.04528 2.612,0.1517 3.224,0.3783 4.143,1.532 5.777,2.874 7.9,6.485 0.6788,1.155 1.327,1.98 2.498,3.182 0.8619,0.8845 1.138,1.106 1.688,1.358 0.8872,0.4051 1.925,0.5526 3.916,0.5567 1.896,0.0038 2.614,-0.1398 3.441,-0.6886 0.2629,-0.1745 0.69,-0.4111 0.9491,-0.5256 0.2591,-0.1145 0.5565,-0.2852 0.6611,-0.3791 0.1045,-0.09396 0.4238,-0.2936 0.7095,-0.4436 0.656,-0.3444 1.422,-1.112 1.701,-1.705 0.3367,-0.7145 0.8519,-1.563 1.137,-1.874 0.1946,-0.2118 0.2843,-0.4411 0.3554,-0.9086 0.05227,-0.3439 0.1842,-0.8 0.2931,-1.014 0.2738,-0.5367 0.3664,-1.671 0.1678,-2.055 -0.08092,-0.1565 -0.208,-0.6071 -0.2825,-1.001 -0.2643,-1.4 -1.649,-3.032 -3.238,-3.817 -0.5763,-0.2848 -0.8207,-0.3455 -1.721,-0.427 -1.871,-0.1695 -3.241,0.1193 -4.32,0.9107 -1.02,0.7479 -1.46,1.117 -1.46,1.223 0,0.1117 -0.4698,0.6605 -0.6195,0.7236 -0.2073,0.08749 -0.6082,0.7537 -0.6082,1.011 0,0.1527 -0.08309,0.4654 -0.1846,0.695 -0.3872,0.8754 -0.3193,1.584 0.2924,3.054 0.348,0.8359 0.4546,1.031 0.7997,1.464 0.4626,0.5803 0.949,0.8492 1.811,1.001 1.002,0.1767 1.504,0.164 2.139,-0.05435 1.255,-0.4316 2.128,-1.168 2.579,-2.174 0.2031,-0.4528 0.2281,-0.6226 0.195,-1.324 -0.03327,-0.7054 -0.07788,-0.8748 -0.3606,-1.369 -0.1775,-0.3104 -0.4876,-0.7435 -0.6892,-0.9625 -0.2016,-0.2189 -0.3518,-0.4424 -0.3337,-0.4965 0.05236,-0.1571 1.002,0.5356 1.302,0.9495 0.4599,0.6348 0.6076,1.272 0.5402,2.331 -0.07399,1.162 -0.3913,1.842 -1.289,2.76 -0.6924,0.7082 -1.388,1.049 -2.549,1.248 -0.9447,0.162 -2.144,-0.05862 -2.902,-0.5337 -0.9182,-0.5759 -1.49,-1.166 -2.012,-2.076 -0.4286,-0.7475 -0.5091,-0.9787 -0.7073,-2.031 -0.2361,-1.253 -0.2357,-2.276 0.0012,-2.556 0.06579,-0.07791 0.1696,-0.3864 0.2308,-0.6856 0.06114,-0.2992 0.2066,-0.6604 0.3232,-0.8027 0.1166,-0.1423 0.3484,-0.5454 0.5151,-0.8956 0.2452,-0.5153 0.3747,-0.6734 0.6782,-0.8283 0.2063,-0.1053 0.3752,-0.2337 0.3752,-0.2855 0,-0.0518 0.1454,-0.1634 0.3232,-0.2482 0.1778,-0.08476 0.3439,-0.2334 0.3693,-0.3304 0.02719,-0.104 0.2721,-0.2754 0.5976,-0.4181 0.3033,-0.133 0.7828,-0.3502 1.066,-0.4827 0.2827,-0.1324 1.069,-0.378 1.747,-0.5458 1.172,-0.29 1.289,-0.3016 2.366,-0.2376 1.082,0.06427 1.158,0.08271 1.689,0.4082 0.3058,0.1875 0.7096,0.3906 0.8972,0.4513 0.1876,0.06075 0.6734,0.349 1.079,0.6405 0.4061,0.2915 0.8804,0.616 1.054,0.721 0.1736,0.105 0.596,0.4782 0.9386,0.8293 0.711,0.7287 1.457,2.087 1.702,3.101 0.08009,0.3306 0.2304,0.8986 0.3341,1.262 0.1612,0.5657 0.1802,0.8314 0.1315,1.842 -0.1517,3.146 -1.222,5.568 -3.294,7.454 -0.2597,0.2365 -0.7808,0.7367 -1.158,1.112 -0.7632,0.7586 -1.674,1.385 -2.809,1.932 -0.4155,0.2004 -0.9917,0.4883 -1.28,0.6398 -0.8821,0.4629 -2.231,0.667 -4.409,0.667 -2.13,0 -2.367,0.03229 -4.812,0.6569 -0.8747,0.2235 -1.162,0.345 -1.667,0.7053 -0.8538,0.6092 -1.839,1.878 -2.608,3.36 -0.1213,0.2337 -0.2966,0.51 -0.3894,0.6139 -0.3077,0.3444 -0.5456,1.051 -0.5621,1.669 -0.04062,1.523 0.02199,4.224 0.1058,4.564 0.13,0.5278 0.372,1.083 0.6177,1.417 0.3185,0.4325 0.8508,1.405 0.975,1.781 0.06666,0.202 0.2906,0.4866 0.561,0.713 0.2475,0.2072 0.5719,0.5526 0.7208,0.7675 0.3237,0.4671 1.494,1.102 2.195,1.19 0.2456,0.03104 0.5332,0.1102 0.6392,0.176 0.106,0.06575 0.4247,0.1676 0.7083,0.2263 0.6149,0.1273 2.007,-0.04731 2.81,-0.3525 0.4938,-0.1876 1.659,-0.8685 2.279,-1.332 0.4649,-0.3474 1.098,-1.247 1.285,-1.824 0.08794,-0.2726 0.2119,-0.5807 0.2753,-0.6845 0.3271,-0.5351 0.4039,-1.624 0.2477,-3.508 -0.05986,-0.7221 -0.1371,-1.071 -0.3134,-1.417 -0.1287,-0.252 -0.3323,-0.6631 -0.4525,-0.9135 -0.3679,-0.7664 -2.139,-2.049 -2.85,-2.063 -0.1184,-0.0024 -0.5003,-0.06373 -0.8486,-0.1362 -0.6689,-0.1391 -1.645,-0.06897 -2.049,0.1473 -0.4968,0.2659 -1.131,0.7412 -1.538,1.152 -0.361,0.3648 -0.4874,0.5887 -0.6844,1.213 -0.2262,0.7162 -0.2363,0.8276 -0.1569,1.741 0.09698,1.117 0.2873,1.633 0.8184,2.221 0.4236,0.4689 0.7845,0.6658 1.74,0.95 0.6943,0.2064 1.351,0.2198 1.96,0.04024 0.3577,-0.1055 0.236,0.109 -0.1643,0.2895 -0.5654,0.255 -1.901,0.1575 -2.783,-0.2031 -0.8817,-0.3607 -1.65,-1.073 -2.058,-1.908 -0.2943,-0.6016 -0.3069,-0.6736 -0.3069,-1.761 0,-1.081 0.01347,-1.159 0.2915,-1.7 0.1603,-0.3117 0.3895,-0.7578 0.5093,-0.9914 0.1198,-0.2336 0.4675,-0.6653 0.7726,-0.9593 0.4504,-0.4339 0.6923,-0.5821 1.285,-0.7872 1.632,-0.5646 3.618,-0.4182 4.838,0.3566 1.116,0.7085 2.094,1.533 2.467,2.078 0.6837,1.002 1.178,2.186 1.25,2.995 0.03466,0.3896 0.1015,1.081 0.1486,1.537 0.08071,0.7814 0.06696,0.9028 -0.2407,2.125 -0.4805,1.909 -0.7433,2.416 -1.677,3.236 -0.422,0.371 -0.9255,0.7558 -1.119,0.8552 -0.1933,0.09932 -0.4908,0.3004 -0.6611,0.447 -0.4616,0.3972 -1.338,0.8658 -1.619,0.8658 -0.136,0 -0.5133,0.1014 -0.8385,0.2253 -0.6424,0.2448 -1.835,0.5371 -2.116,0.5187 -0.09646,-0.0063 -0.5579,-0.0633 -1.025,-0.1266 z"
style="opacity:0.5021;fill:none;stroke:white;stroke-width:1.5;stroke-linejoin:round"
id="path506" />
<path
d="m 27.87,43.71 c -1.113,-0.1508 -2.337,-0.4496 -2.88,-0.7032 -1.256,-0.5861 -2.457,-1.418 -2.886,-1.999 -0.1122,-0.1521 -0.3907,-0.4236 -0.6189,-0.6033 -0.9071,-0.7146 -1.437,-1.467 -2.518,-3.576 -0.1228,-0.2396 -0.5067,-2.179 -0.6479,-3.275 -0.1116,-0.8656 -0.1027,-2.595 0.01758,-3.386 0.1492,-0.9822 0.454,-2.274 0.6016,-2.55 0.1243,-0.2322 0.433,-1.232 0.529,-1.713 0.03626,-0.1818 0.1176,-0.3943 0.1807,-0.4722 0.06314,-0.07791 0.1935,-0.4179 0.2896,-0.7555 0.09614,-0.3376 0.3202,-0.9081 0.498,-1.268 0.3981,-0.8055 0.5852,-1.406 0.5866,-1.881 5.72e-4,-0.1998 0.07085,-0.6034 0.1562,-0.897 0.209,-0.7188 0.1284,-2.743 -0.1396,-3.509 -0.2036,-0.5819 -0.7008,-1.559 -1.223,-2.404 -1.082,-1.751 -4.176,-3.905 -6.017,-4.19 -0.7057,-0.1092 -3.042,0.01163 -4.046,0.2092 -0.8596,0.1691 -1.669,0.5453 -2.084,0.9685 -1.065,1.085 -1.687,1.818 -1.932,2.276 -0.3536,0.6608 -0.5729,1.674 -0.6331,2.926 -0.06837,1.423 -0.00892,1.72 0.6221,3.112 0.5325,1.174 1.965,2.361 3.54,2.933 0.7354,0.2671 1.015,0.3166 2.078,0.3675 1.465,0.07027 2.089,-0.03592 2.746,-0.467 0.2558,-0.1679 0.6563,-0.4177 0.8901,-0.5549 1.067,-0.6266 1.624,-1.808 1.62,-3.435 -0.0028,-1.008 -0.3621,-1.919 -0.9709,-2.462 -0.3786,-0.3374 -1.714,-1.141 -2.102,-1.265 -0.6762,-0.2158 -1.548,-0.07892 -2.479,0.3891 -0.4531,0.2278 -0.9044,0.5245 -1.003,0.6593 -0.09841,0.1348 -0.3213,0.6235 -0.4953,1.086 -0.174,0.4626 -0.3513,0.8411 -0.3939,0.8411 -0.1692,0 -0.1258,-0.7336 0.07669,-1.297 0.2897,-0.806 0.5806,-1.225 1.154,-1.664 0.6469,-0.4944 1.281,-0.7389 2.138,-0.8243 1.115,-0.111 1.289,-0.0798 2.253,0.4032 1.122,0.5619 1.461,0.8933 2.014,1.969 0.661,1.284 0.742,1.638 0.5954,2.599 -0.1666,1.093 -0.541,2.197 -0.977,2.88 -0.3975,0.6233 -1.138,1.191 -2.47,1.893 -0.9548,0.5031 -1.281,0.5909 -2.55,0.6869 -1.389,0.105 -2.198,0.01486 -3.258,-0.3629 -0.4675,-0.1666 -1.049,-0.3599 -1.292,-0.4294 -0.3241,-0.09271 -0.7433,-0.3804 -1.571,-1.078 -1.421,-1.197 -1.649,-1.585 -1.925,-3.265 -0.1024,-0.6233 -0.1996,-1.439 -0.216,-1.812 -0.01637,-0.3733 -0.05626,-0.7215 -0.08866,-0.7739 -0.06776,-0.1096 0.08948,-2.008 0.2473,-2.986 0.1301,-0.806 0.1896,-0.9285 1.119,-2.305 0.5517,-0.817 0.9145,-1.24 1.43,-1.668 1.667,-1.384 2.756,-1.958 4.649,-2.45 1.313,-0.341 1.316,-0.3414 2.928,-0.2986 1.704,0.04528 2.612,0.1517 3.224,0.3783 4.143,1.532 5.777,2.874 7.9,6.485 0.6788,1.155 1.327,1.98 2.498,3.182 0.8619,0.8845 1.138,1.106 1.688,1.358 0.8872,0.4051 1.925,0.5526 3.916,0.5567 1.896,0.0038 2.614,-0.1398 3.441,-0.6886 0.2629,-0.1745 0.69,-0.4111 0.9491,-0.5256 0.2591,-0.1145 0.5565,-0.2852 0.6611,-0.3791 0.1045,-0.09396 0.4238,-0.2936 0.7095,-0.4436 0.656,-0.3444 1.422,-1.112 1.701,-1.705 0.3367,-0.7145 0.8519,-1.563 1.137,-1.874 0.1946,-0.2118 0.2844,-0.4411 0.3554,-0.9086 0.05227,-0.3439 0.1842,-0.8 0.2931,-1.014 0.2738,-0.5367 0.3664,-1.671 0.1678,-2.055 -0.08092,-0.1565 -0.208,-0.6071 -0.2825,-1.001 -0.2643,-1.4 -1.649,-3.032 -3.238,-3.817 -0.5763,-0.2848 -0.8208,-0.3455 -1.721,-0.427 -1.871,-0.1695 -3.241,0.1193 -4.32,0.9107 -1.02,0.7479 -1.46,1.117 -1.46,1.223 0,0.1117 -0.4698,0.6605 -0.6195,0.7236 -0.2073,0.08749 -0.6082,0.7537 -0.6082,1.011 0,0.1527 -0.08309,0.4654 -0.1846,0.695 -0.3872,0.8754 -0.3193,1.584 0.2924,3.054 0.348,0.8359 0.4546,1.031 0.7997,1.464 0.4626,0.5803 0.949,0.8492 1.811,1.001 1.002,0.1767 1.504,0.164 2.139,-0.05435 1.255,-0.4316 2.128,-1.168 2.579,-2.174 0.2031,-0.4528 0.2281,-0.6226 0.195,-1.324 -0.03327,-0.7054 -0.07788,-0.8748 -0.3606,-1.369 -0.1775,-0.3104 -0.4876,-0.7435 -0.6892,-0.9625 -0.2016,-0.2189 -0.3518,-0.4424 -0.3337,-0.4965 0.05236,-0.1571 1.002,0.5356 1.302,0.9495 0.4599,0.6348 0.6076,1.272 0.5402,2.331 -0.07398,1.162 -0.3913,1.842 -1.289,2.76 -0.6924,0.7082 -1.388,1.049 -2.549,1.248 -0.9447,0.162 -2.144,-0.05862 -2.902,-0.5337 -0.9182,-0.5759 -1.49,-1.166 -2.012,-2.076 -0.4286,-0.7475 -0.5091,-0.9787 -0.7073,-2.031 -0.2361,-1.253 -0.2357,-2.276 0.0012,-2.556 0.06579,-0.07791 0.1696,-0.3864 0.2308,-0.6856 0.06114,-0.2992 0.2066,-0.6604 0.3232,-0.8027 0.1166,-0.1423 0.3484,-0.5454 0.5151,-0.8956 0.2452,-0.5153 0.3747,-0.6734 0.6782,-0.8283 0.2063,-0.1053 0.3752,-0.2337 0.3752,-0.2855 0,-0.0518 0.1454,-0.1634 0.3232,-0.2482 0.1778,-0.08476 0.3439,-0.2334 0.3693,-0.3304 0.02719,-0.104 0.2721,-0.2754 0.5976,-0.4181 0.3033,-0.133 0.7828,-0.3502 1.066,-0.4827 0.2827,-0.1324 1.069,-0.378 1.747,-0.5458 1.172,-0.29 1.289,-0.3016 2.366,-0.2376 1.082,0.06427 1.158,0.08271 1.689,0.4082 0.3058,0.1875 0.7096,0.3906 0.8972,0.4513 0.1876,0.06075 0.6734,0.349 1.079,0.6405 0.4061,0.2915 0.8804,0.616 1.054,0.721 0.1736,0.105 0.596,0.4782 0.9386,0.8293 0.711,0.7287 1.457,2.087 1.702,3.101 0.08008,0.3306 0.2304,0.8986 0.334,1.262 0.1612,0.5657 0.1802,0.8314 0.1315,1.842 -0.1517,3.146 -1.222,5.568 -3.294,7.454 -0.2597,0.2365 -0.7808,0.7367 -1.158,1.112 -0.7632,0.7586 -1.674,1.385 -2.809,1.932 -0.4155,0.2004 -0.9916,0.4883 -1.28,0.6398 -0.8821,0.4629 -2.231,0.667 -4.409,0.667 -2.13,0 -2.367,0.03229 -4.812,0.6569 -0.8747,0.2235 -1.162,0.345 -1.667,0.7053 -0.8538,0.6092 -1.839,1.878 -2.608,3.36 -0.1213,0.2337 -0.2966,0.51 -0.3894,0.6139 -0.3077,0.3444 -0.5456,1.051 -0.5621,1.669 -0.04062,1.523 0.02199,4.224 0.1058,4.564 0.13,0.5278 0.372,1.083 0.6177,1.417 0.3185,0.4325 0.8508,1.405 0.975,1.781 0.06666,0.202 0.2906,0.4866 0.561,0.713 0.2475,0.2072 0.5719,0.5526 0.7208,0.7675 0.3237,0.4671 1.494,1.102 2.195,1.19 0.2456,0.03104 0.5332,0.1102 0.6392,0.176 0.106,0.06575 0.4247,0.1676 0.7083,0.2263 0.6149,0.1273 2.007,-0.04731 2.81,-0.3525 0.4938,-0.1876 1.659,-0.8685 2.279,-1.332 0.4649,-0.3474 1.098,-1.247 1.285,-1.824 0.08794,-0.2726 0.2119,-0.5807 0.2753,-0.6845 0.3271,-0.5351 0.4039,-1.624 0.2477,-3.508 -0.05986,-0.7221 -0.1371,-1.071 -0.3134,-1.417 -0.1287,-0.252 -0.3323,-0.6631 -0.4525,-0.9135 -0.3679,-0.7664 -2.139,-2.049 -2.85,-2.063 -0.1184,-0.0024 -0.5003,-0.06373 -0.8486,-0.1362 -0.6689,-0.1391 -1.645,-0.06897 -2.049,0.1473 -0.4968,0.2659 -1.131,0.7412 -1.538,1.152 -0.361,0.3648 -0.4874,0.5887 -0.6844,1.213 -0.2262,0.7162 -0.2363,0.8276 -0.1569,1.741 0.09698,1.117 0.2873,1.633 0.8184,2.221 0.4236,0.4689 0.7845,0.6658 1.74,0.95 0.6943,0.2064 1.351,0.2198 1.96,0.04024 0.3577,-0.1055 0.236,0.109 -0.1643,0.2895 -0.5654,0.255 -1.901,0.1575 -2.783,-0.2031 -0.8817,-0.3607 -1.65,-1.073 -2.058,-1.908 -0.2943,-0.6016 -0.3069,-0.6736 -0.3069,-1.761 0,-1.081 0.01347,-1.159 0.2915,-1.7 0.1603,-0.3117 0.3895,-0.7578 0.5093,-0.9914 0.1198,-0.2336 0.4675,-0.6653 0.7726,-0.9593 0.4504,-0.4339 0.6923,-0.5821 1.285,-0.7872 1.632,-0.5646 3.618,-0.4182 4.838,0.3566 1.116,0.7085 2.094,1.533 2.467,2.078 0.6837,1.002 1.178,2.186 1.25,2.995 0.03466,0.3896 0.1015,1.081 0.1486,1.537 0.08071,0.7814 0.06696,0.9028 -0.2407,2.125 -0.4805,1.909 -0.7433,2.416 -1.677,3.236 -0.422,0.371 -0.9255,0.7558 -1.119,0.8552 -0.1933,0.09932 -0.4908,0.3004 -0.6611,0.447 -0.4616,0.3972 -1.338,0.8658 -1.619,0.8658 -0.136,0 -0.5133,0.1014 -0.8385,0.2253 -0.6424,0.2448 -1.835,0.5371 -2.116,0.5187 -0.09646,-0.0063 -0.5579,-0.0633 -1.025,-0.1266 z"
style="fill:white"
id="path508" />
<path
d="m 20.16,24.12 21.31,-4.844 c 0.02465,-0.02278 0.07241,-0.07432 0.09375,-0.09375 2.072,-1.887 3.13,-4.291 3.281,-7.438 0.04872,-1.01 0.03622,-1.278 -0.125,-1.844 -0.1036,-0.3636 -0.2637,-0.9507 -0.3438,-1.281 -0.2455,-1.013 -0.9765,-2.365 -1.688,-3.094 -0.3426,-0.3511 -0.7639,-0.7075 -0.9375,-0.8125 -0.1736,-0.105 -0.6564,-0.4585 -1.062,-0.75 -0.4061,-0.2915 -0.8749,-0.5642 -1.062,-0.625 -0.1876,-0.06075 -0.6004,-0.25 -0.9062,-0.4375 -0.5309,-0.3255 -0.6054,-0.3732 -1.688,-0.4375 -1.078,-0.064 -1.203,-0.03996 -2.375,0.25 -0.6782,0.1677 -1.467,0.4301 -1.75,0.5625 -0.2827,0.1324 -0.7592,0.3357 -1.062,0.4688 -0.3255,0.1427 -0.5666,0.3022 -0.5938,0.4062 -0.02535,0.09693 -0.1972,0.259 -0.375,0.3438 -0.1777,0.08476 -0.3125,0.1983 -0.3125,0.25 0,0.05173 -0.1687,0.176 -0.375,0.2812 -0.3036,0.1549 -0.4423,0.3285 -0.6875,0.8438 -0.1667,0.3503 -0.3834,0.7327 -0.5,0.875 -0.1166,0.1423 -0.2826,0.5133 -0.3438,0.8125 -0.06114,0.2992 -0.153,0.6096 -0.2188,0.6875 -0.2368,0.2805 -0.2361,1.309 0,2.562 0.1982,1.052 0.2589,1.284 0.6875,2.031 0.5217,0.9098 1.113,1.487 2.031,2.062 0.7574,0.4751 1.962,0.6932 2.906,0.5312 1.161,-0.199 1.839,-0.5418 2.531,-1.25 0.8974,-0.9179 1.239,-1.588 1.312,-2.75 0.0674,-1.059 -0.1026,-1.709 -0.5625,-2.344 -0.2998,-0.4139 -1.229,-1.095 -1.281,-0.9375 -0.01805,0.05415 0.1109,0.2811 0.3125,0.5 0.2016,0.2189 0.51,0.6583 0.6875,0.9688 0.2827,0.4946 0.3417,0.6384 0.375,1.344 0.03308,0.7018 0.01561,0.8909 -0.1875,1.344 -0.4515,1.007 -1.339,1.725 -2.594,2.156 -0.6345,0.2183 -1.123,0.2392 -2.125,0.0625 -0.8615,-0.1519 -1.35,-0.4197 -1.812,-1 -0.3451,-0.4328 -0.4645,-0.6329 -0.8125,-1.469 -0.6118,-1.469 -0.6685,-2.156 -0.2812,-3.031 0.1015,-0.2296 0.1875,-0.5661 0.1875,-0.7188 0,-0.2571 0.3864,-0.9125 0.5938,-1 0.1497,-0.06315 0.625,-0.6071 0.625,-0.7188 0,-0.1066 0.4491,-0.4709 1.469,-1.219 1.079,-0.7914 2.441,-1.107 4.312,-0.9375 0.9004,0.08156 1.142,0.1527 1.719,0.4375 1.589,0.7853 2.986,2.413 3.25,3.812 0.07444,0.3943 0.2003,0.8435 0.2812,1 0.1986,0.3841 0.08631,1.526 -0.1875,2.062 -0.109,0.2136 -0.229,0.6874 -0.2812,1.031 -0.07103,0.4674 -0.1803,0.6944 -0.375,0.9062 -0.2855,0.3107 -0.7883,1.16 -1.125,1.875 -0.2796,0.5932 -1.031,1.343 -1.688,1.688 -0.2857,0.15 -0.6142,0.3435 -0.7188,0.4375 -0.1045,0.09396 -0.3972,0.2604 -0.6562,0.375 -0.2591,0.1146 -0.7058,0.3567 -0.9688,0.5312 -0.8268,0.5488 -1.541,0.6913 -3.438,0.6875 -1.991,-0.004 -3.019,-0.1574 -3.906,-0.5625 -0.5505,-0.2514 -0.8256,-0.4593 -1.688,-1.344 -1.171,-1.202 -1.821,-2.033 -2.5,-3.188 -2.123,-3.611 -3.763,-4.936 -7.906,-6.469 -0.6126,-0.2266 -1.514,-0.3297 -3.219,-0.375 -1.612,-0.04281 -1.625,-0.05978 -2.938,0.2812 -1.893,0.4919 -2.958,1.085 -4.625,2.469 -0.5156,0.428 -0.8858,0.8393 -1.438,1.656 -0.9296,1.377 -0.9949,1.507 -1.125,2.312 -0.1578,0.9776 -0.3178,2.859 -0.25,2.969 0.0324,0.05241 0.07738,0.408 0.09375,0.7812 0.01637,0.3733 0.1163,1.189 0.2188,1.812 0.2761,1.68 0.4856,2.053 1.906,3.25 0.8278,0.6977 1.27,1.001 1.594,1.094 0.2431,0.06954 0.8138,0.2709 1.281,0.4375 1.06,0.3778 1.861,0.4488 3.25,0.3438 1.269,-0.09598 1.608,-0.1844 2.562,-0.6875 1.331,-0.7014 2.071,-1.252 2.469,-1.875 0.4359,-0.6836 0.8022,-1.782 0.9688,-2.875 0.1466,-0.9615 0.06728,-1.341 -0.5938,-2.625 -0.5538,-1.076 -0.8783,-1.407 -2,-1.969 -0.9642,-0.483 -1.135,-0.486 -2.25,-0.375 -0.8573,0.0854 -1.509,0.3181 -2.156,0.8125 -0.5738,0.4386 -0.8666,0.8503 -1.156,1.656 -0.2025,0.5634 -0.2317,1.313 -0.0625,1.312 0.04264,0 0.201,-0.3812 0.375,-0.8438 0.174,-0.4626 0.4016,-0.959 0.5,-1.094 0.09842,-0.1348 0.5469,-0.4284 1,-0.6562 0.9308,-0.468 1.824,-0.6221 2.5,-0.4062 0.3881,0.1239 1.715,0.9438 2.094,1.281 0.6088,0.5426 0.9659,1.461 0.9688,2.469 0.0045,1.626 -0.5581,2.811 -1.625,3.438 -0.2337,0.1373 -0.6192,0.3633 -0.875,0.5312 -0.6566,0.4311 -1.285,0.539 -2.75,0.4688 -1.062,-0.05096 -1.358,-0.07669 -2.094,-0.3438 -1.575,-0.5721 -2.999,-1.763 -3.531,-2.938 -0.631,-1.392 -0.6934,-1.702 -0.625,-3.125 0.06018,-1.252 0.2714,-2.277 0.625,-2.938 0.2452,-0.4581 0.8728,-1.165 1.938,-2.25 0.4151,-0.4231 1.234,-0.7996 2.094,-0.9688 1.004,-0.1976 3.326,-0.3279 4.031,-0.2188 1.841,0.2848 4.949,2.437 6.031,4.188 0.5224,0.845 1.015,1.824 1.219,2.406 0.2681,0.7662 0.3652,2.781 0.1562,3.5 -0.08534,0.2936 -0.1557,0.7065 -0.1562,0.9062 -0.0013,0.4758 -0.1956,1.07 -0.5938,1.875 -0.09976,0.2018 -0.1831,0.4625 -0.2812,0.7188 z"
style="opacity:0.7975;fill:white"
id="path510" />
<path
d="m 20.16,24.12 c -0.07674,0.2003 -0.1766,0.4143 -0.2188,0.5625 -0.09614,0.3376 -0.2181,0.6721 -0.2812,0.75 -0.06315,0.07791 -0.1512,0.287 -0.1875,0.4688 -0.09597,0.4812 -0.407,1.487 -0.5312,1.719 -0.1476,0.2759 -0.4445,1.549 -0.5938,2.531 -0.1202,0.7916 -0.1429,2.541 -0.03125,3.406 0.1413,1.095 0.5334,3.042 0.6562,3.281 1.081,2.109 1.593,2.848 2.5,3.562 0.2282,0.1798 0.5128,0.4417 0.625,0.5938 0.4282,0.5804 1.65,1.414 2.906,2 0.5433,0.2536 1.762,0.568 2.875,0.7188 0.4675,0.06332 0.9035,0.1187 1,0.125 0.281,0.01842 1.483,-0.2864 2.125,-0.5312 0.3252,-0.1239 0.7078,-0.2188 0.8438,-0.2188 0.281,0 1.163,-0.4778 1.625,-0.875 0.1703,-0.1465 0.4629,-0.3382 0.6562,-0.4375 0.1933,-0.09932 0.703,-0.4727 1.125,-0.8438 0.9333,-0.8206 1.176,-1.341 1.656,-3.25 0.3077,-1.222 0.3307,-1.344 0.25,-2.125 -0.04709,-0.4558 -0.1216,-1.142 -0.1562,-1.531 -0.07193,-0.8088 -0.5663,-1.998 -1.25,-3 -0.3722,-0.5453 -1.353,-1.354 -2.469,-2.062 -1.22,-0.7748 -3.181,-0.9396 -4.812,-0.375 -0.5928,0.2051 -0.8308,0.3473 -1.281,0.7812 -0.3051,0.294 -0.6614,0.7351 -0.7812,0.9688 -0.1198,0.2337 -0.3709,0.6883 -0.5312,1 -0.278,0.5404 -0.2813,0.6066 -0.2812,1.688 0,1.087 0.01819,1.148 0.3125,1.75 0.4087,0.8355 1.181,1.577 2.062,1.938 0.8815,0.3606 2.216,0.4425 2.781,0.1875 0.4003,-0.1805 0.5139,-0.3867 0.1562,-0.2812 -0.6091,0.1796 -1.274,0.1439 -1.969,-0.0625 -0.956,-0.2842 -1.295,-0.4686 -1.719,-0.9375 -0.5311,-0.5879 -0.7155,-1.102 -0.8125,-2.219 -0.07934,-0.9137 -0.06999,-1.034 0.1562,-1.75 0.1971,-0.6239 0.2952,-0.8539 0.6562,-1.219 0.4063,-0.4106 1.066,-0.8591 1.562,-1.125 0.4041,-0.2163 1.362,-0.2954 2.031,-0.1562 0.3484,0.07246 0.7254,0.1226 0.8438,0.125 0.7112,0.01469 2.507,1.296 2.875,2.062 0.1202,0.2504 0.3088,0.6542 0.4375,0.9062 0.1763,0.3453 0.2526,0.7154 0.3125,1.438 0.1562,1.885 0.07708,2.965 -0.25,3.5 -0.06349,0.1039 -0.1933,0.4149 -0.2812,0.6875 -0.1862,0.5772 -0.8163,1.465 -1.281,1.812 -0.6203,0.4635 -1.787,1.156 -2.281,1.344 -0.8032,0.3052 -2.198,0.4711 -2.812,0.3438 -0.2836,-0.05872 -0.5815,-0.153 -0.6875,-0.2188 -0.106,-0.06575 -0.4107,-0.1565 -0.6562,-0.1875 -0.7012,-0.08862 -1.864,-0.7204 -2.188,-1.188 -0.1489,-0.2149 -0.4712,-0.5428 -0.7188,-0.75 -0.2704,-0.2264 -0.4958,-0.5168 -0.5625,-0.7188 -0.1242,-0.3763 -0.6503,-1.349 -0.9688,-1.781 -0.2456,-0.3336 -0.495,-0.8784 -0.625,-1.406 -0.08381,-0.3404 -0.1344,-3.04 -0.09375,-4.562 0.01649,-0.6183 0.2548,-1.343 0.5625,-1.688 0.09284,-0.1039 0.2537,-0.36 0.375,-0.5938 0.769,-1.481 1.771,-2.766 2.625,-3.375 0.5049,-0.3603 0.7815,-0.4953 1.656,-0.7188 2.445,-0.6246 2.682,-0.6563 4.812,-0.6562 2.178,0 3.524,-0.1933 4.406,-0.6562 0.2886,-0.1515 0.8657,-0.4246 1.281,-0.625 1.135,-0.5473 2.049,-1.179 2.812,-1.938 0.3462,-0.3441 0.7872,-0.7768 1.062,-1.031 l -21.31,4.844 z"
style="opacity:0.3629;fill:white"
id="path512" />
</g>
</svg>
helpers/DATA/budgie-artwork/trisquel-budgie-logo_128_alpha.png

7.84 KiB

helpers/DATA/budgie-artwork/trisquel-budgie-logo_128_solid.png

25.8 KiB

helpers/DATA/budgie-artwork/trisquel-budgie-logo_200_alpha.png

13.2 KiB

helpers/DATA/budgie-artwork/trisquel-budgie-logo_200_solid.png

33.4 KiB

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="256"
height="256"
enable-background="new"
version="1.0"
id="svg6"
sodipodi:docname="logo-trisquel.svg"
inkscape:version="1.2.2 (1:1.2.2+202212051552+b0a8486541)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs10">
<linearGradient
id="vlpc"
x1="33.110001"
x2="25.370001"
y1="43.540001"
y2="2.4400001"
gradientUnits="userSpaceOnUse"
xlink:href="#vlpa" />
<linearGradient
id="vlpa">
<stop
style="stop-color:#fff"
offset="0"
id="stop497" />
<stop
style="stop-color:#fff;stop-opacity:0"
offset="1"
id="stop499" />
</linearGradient>
<linearGradient
id="vlpb"
x1="29.85"
x2="21.799999"
y1="50.400002"
y2="15.47"
gradientUnits="userSpaceOnUse"
xlink:href="#vlpa" />
</defs>
<sodipodi:namedview
id="namedview8"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.76603235"
inkscape:cx="383.7958"
inkscape:cy="100.51795"
inkscape:window-width="1918"
inkscape:window-height="1008"
inkscape:window-x="1366"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg6" />
<g
transform="matrix(4.1197806,0,0,4.1647007,29.339022,31.597072)"
id="g514">
<path
d="m 27.87,43.71 c -1.113,-0.1508 -2.337,-0.4496 -2.88,-0.7032 -1.256,-0.5861 -2.457,-1.418 -2.886,-1.999 -0.1122,-0.1521 -0.3907,-0.4236 -0.6189,-0.6033 -0.9071,-0.7146 -1.437,-1.467 -2.518,-3.576 -0.1228,-0.2396 -0.5067,-2.179 -0.6479,-3.275 -0.1116,-0.8656 -0.1027,-2.595 0.01758,-3.386 0.1492,-0.9822 0.454,-2.274 0.6016,-2.55 0.1243,-0.2322 0.433,-1.232 0.529,-1.713 0.03626,-0.1818 0.1176,-0.3943 0.1807,-0.4722 0.06314,-0.07791 0.1935,-0.4179 0.2896,-0.7555 0.09614,-0.3376 0.3202,-0.9081 0.498,-1.268 0.3981,-0.8055 0.5852,-1.406 0.5866,-1.881 5.72e-4,-0.1998 0.07085,-0.6034 0.1562,-0.897 0.209,-0.7188 0.1284,-2.743 -0.1396,-3.509 -0.2036,-0.5819 -0.7008,-1.559 -1.223,-2.404 -1.082,-1.751 -4.176,-3.905 -6.017,-4.19 -0.7057,-0.1092 -3.042,0.01163 -4.046,0.2092 -0.8596,0.1691 -1.669,0.5453 -2.084,0.9685 -1.065,1.085 -1.687,1.818 -1.932,2.276 -0.3536,0.6608 -0.5729,1.674 -0.6331,2.926 -0.06837,1.423 -0.00892,1.72 0.6221,3.112 0.5325,1.174 1.965,2.361 3.54,2.933 0.7354,0.2671 1.015,0.3166 2.078,0.3675 1.465,0.07027 2.089,-0.03592 2.746,-0.467 0.2558,-0.1679 0.6563,-0.4177 0.8901,-0.5549 1.067,-0.6266 1.624,-1.808 1.62,-3.435 -0.0028,-1.008 -0.3621,-1.919 -0.9709,-2.462 -0.3786,-0.3374 -1.714,-1.141 -2.102,-1.265 -0.6762,-0.2158 -1.548,-0.07892 -2.479,0.3891 -0.4531,0.2278 -0.9044,0.5245 -1.003,0.6593 -0.09841,0.1348 -0.3213,0.6235 -0.4953,1.086 -0.174,0.4626 -0.3513,0.8411 -0.3939,0.8411 -0.1692,0 -0.1258,-0.7336 0.07669,-1.297 0.2897,-0.806 0.5806,-1.225 1.154,-1.664 0.6469,-0.4944 1.281,-0.7389 2.138,-0.8243 1.115,-0.111 1.289,-0.0798 2.253,0.4032 1.122,0.5619 1.461,0.8933 2.014,1.969 0.661,1.284 0.742,1.638 0.5954,2.599 -0.1666,1.093 -0.541,2.197 -0.977,2.88 -0.3975,0.6233 -1.138,1.191 -2.47,1.893 -0.9548,0.5031 -1.281,0.5909 -2.55,0.6869 -1.389,0.105 -2.198,0.01486 -3.258,-0.3629 -0.4675,-0.1666 -1.049,-0.3599 -1.292,-0.4294 -0.3241,-0.09271 -0.7433,-0.3804 -1.571,-1.078 -1.421,-1.197 -1.649,-1.585 -1.925,-3.265 -0.1024,-0.6233 -0.1996,-1.439 -0.216,-1.812 -0.01637,-0.3733 -0.05626,-0.7215 -0.08866,-0.7739 -0.06776,-0.1096 0.08948,-2.008 0.2473,-2.986 0.1301,-0.806 0.1896,-0.9285 1.119,-2.305 0.5517,-0.817 0.9145,-1.24 1.43,-1.668 1.667,-1.384 2.756,-1.958 4.649,-2.45 1.313,-0.341 1.316,-0.3414 2.928,-0.2986 1.704,0.04528 2.612,0.1517 3.224,0.3783 4.143,1.532 5.777,2.874 7.9,6.485 0.6788,1.155 1.327,1.98 2.498,3.182 0.8619,0.8845 1.138,1.106 1.688,1.358 0.8872,0.4051 1.925,0.5526 3.916,0.5567 1.896,0.0038 2.614,-0.1398 3.441,-0.6886 0.2629,-0.1745 0.69,-0.4111 0.9491,-0.5256 0.2591,-0.1145 0.5565,-0.2852 0.6611,-0.3791 0.1045,-0.09396 0.4238,-0.2936 0.7095,-0.4436 0.656,-0.3444 1.422,-1.112 1.701,-1.705 0.3367,-0.7145 0.8519,-1.563 1.137,-1.874 0.1946,-0.2118 0.2843,-0.4411 0.3554,-0.9086 0.05227,-0.3439 0.1842,-0.8 0.2931,-1.014 0.2738,-0.5367 0.3664,-1.671 0.1678,-2.055 -0.08092,-0.1565 -0.208,-0.6071 -0.2825,-1.001 -0.2643,-1.4 -1.649,-3.032 -3.238,-3.817 -0.5763,-0.2848 -0.8207,-0.3455 -1.721,-0.427 -1.871,-0.1695 -3.241,0.1193 -4.32,0.9107 -1.02,0.7479 -1.46,1.117 -1.46,1.223 0,0.1117 -0.4698,0.6605 -0.6195,0.7236 -0.2073,0.08749 -0.6082,0.7537 -0.6082,1.011 0,0.1527 -0.08309,0.4654 -0.1846,0.695 -0.3872,0.8754 -0.3193,1.584 0.2924,3.054 0.348,0.8359 0.4546,1.031 0.7997,1.464 0.4626,0.5803 0.949,0.8492 1.811,1.001 1.002,0.1767 1.504,0.164 2.139,-0.05435 1.255,-0.4316 2.128,-1.168 2.579,-2.174 0.2031,-0.4528 0.2281,-0.6226 0.195,-1.324 -0.03327,-0.7054 -0.07788,-0.8748 -0.3606,-1.369 -0.1775,-0.3104 -0.4876,-0.7435 -0.6892,-0.9625 -0.2016,-0.2189 -0.3518,-0.4424 -0.3337,-0.4965 0.05236,-0.1571 1.002,0.5356 1.302,0.9495 0.4599,0.6348 0.6076,1.272 0.5402,2.331 -0.07399,1.162 -0.3913,1.842 -1.289,2.76 -0.6924,0.7082 -1.388,1.049 -2.549,1.248 -0.9447,0.162 -2.144,-0.05862 -2.902,-0.5337 -0.9182,-0.5759 -1.49,-1.166 -2.012,-2.076 -0.4286,-0.7475 -0.5091,-0.9787 -0.7073,-2.031 -0.2361,-1.253 -0.2357,-2.276 0.0012,-2.556 0.06579,-0.07791 0.1696,-0.3864 0.2308,-0.6856 0.06114,-0.2992 0.2066,-0.6604 0.3232,-0.8027 0.1166,-0.1423 0.3484,-0.5454 0.5151,-0.8956 0.2452,-0.5153 0.3747,-0.6734 0.6782,-0.8283 0.2063,-0.1053 0.3752,-0.2337 0.3752,-0.2855 0,-0.0518 0.1454,-0.1634 0.3232,-0.2482 0.1778,-0.08476 0.3439,-0.2334 0.3693,-0.3304 0.02719,-0.104 0.2721,-0.2754 0.5976,-0.4181 0.3033,-0.133 0.7828,-0.3502 1.066,-0.4827 0.2827,-0.1324 1.069,-0.378 1.747,-0.5458 1.172,-0.29 1.289,-0.3016 2.366,-0.2376 1.082,0.06427 1.158,0.08271 1.689,0.4082 0.3058,0.1875 0.7096,0.3906 0.8972,0.4513 0.1876,0.06075 0.6734,0.349 1.079,0.6405 0.4061,0.2915 0.8804,0.616 1.054,0.721 0.1736,0.105 0.596,0.4782 0.9386,0.8293 0.711,0.7287 1.457,2.087 1.702,3.101 0.08009,0.3306 0.2304,0.8986 0.3341,1.262 0.1612,0.5657 0.1802,0.8314 0.1315,1.842 -0.1517,3.146 -1.222,5.568 -3.294,7.454 -0.2597,0.2365 -0.7808,0.7367 -1.158,1.112 -0.7632,0.7586 -1.674,1.385 -2.809,1.932 -0.4155,0.2004 -0.9917,0.4883 -1.28,0.6398 -0.8821,0.4629 -2.231,0.667 -4.409,0.667 -2.13,0 -2.367,0.03229 -4.812,0.6569 -0.8747,0.2235 -1.162,0.345 -1.667,0.7053 -0.8538,0.6092 -1.839,1.878 -2.608,3.36 -0.1213,0.2337 -0.2966,0.51 -0.3894,0.6139 -0.3077,0.3444 -0.5456,1.051 -0.5621,1.669 -0.04062,1.523 0.02199,4.224 0.1058,4.564 0.13,0.5278 0.372,1.083 0.6177,1.417 0.3185,0.4325 0.8508,1.405 0.975,1.781 0.06666,0.202 0.2906,0.4866 0.561,0.713 0.2475,0.2072 0.5719,0.5526 0.7208,0.7675 0.3237,0.4671 1.494,1.102 2.195,1.19 0.2456,0.03104 0.5332,0.1102 0.6392,0.176 0.106,0.06575 0.4247,0.1676 0.7083,0.2263 0.6149,0.1273 2.007,-0.04731 2.81,-0.3525 0.4938,-0.1876 1.659,-0.8685 2.279,-1.332 0.4649,-0.3474 1.098,-1.247 1.285,-1.824 0.08794,-0.2726 0.2119,-0.5807 0.2753,-0.6845 0.3271,-0.5351 0.4039,-1.624 0.2477,-3.508 -0.05986,-0.7221 -0.1371,-1.071 -0.3134,-1.417 -0.1287,-0.252 -0.3323,-0.6631 -0.4525,-0.9135 -0.3679,-0.7664 -2.139,-2.049 -2.85,-2.063 -0.1184,-0.0024 -0.5003,-0.06373 -0.8486,-0.1362 -0.6689,-0.1391 -1.645,-0.06897 -2.049,0.1473 -0.4968,0.2659 -1.131,0.7412 -1.538,1.152 -0.361,0.3648 -0.4874,0.5887 -0.6844,1.213 -0.2262,0.7162 -0.2363,0.8276 -0.1569,1.741 0.09698,1.117 0.2873,1.633 0.8184,2.221 0.4236,0.4689 0.7845,0.6658 1.74,0.95 0.6943,0.2064 1.351,0.2198 1.96,0.04024 0.3577,-0.1055 0.236,0.109 -0.1643,0.2895 -0.5654,0.255 -1.901,0.1575 -2.783,-0.2031 -0.8817,-0.3607 -1.65,-1.073 -2.058,-1.908 -0.2943,-0.6016 -0.3069,-0.6736 -0.3069,-1.761 0,-1.081 0.01347,-1.159 0.2915,-1.7 0.1603,-0.3117 0.3895,-0.7578 0.5093,-0.9914 0.1198,-0.2336 0.4675,-0.6653 0.7726,-0.9593 0.4504,-0.4339 0.6923,-0.5821 1.285,-0.7872 1.632,-0.5646 3.618,-0.4182 4.838,0.3566 1.116,0.7085 2.094,1.533 2.467,2.078 0.6837,1.002 1.178,2.186 1.25,2.995 0.03466,0.3896 0.1015,1.081 0.1486,1.537 0.08071,0.7814 0.06696,0.9028 -0.2407,2.125 -0.4805,1.909 -0.7433,2.416 -1.677,3.236 -0.422,0.371 -0.9255,0.7558 -1.119,0.8552 -0.1933,0.09932 -0.4908,0.3004 -0.6611,0.447 -0.4616,0.3972 -1.338,0.8658 -1.619,0.8658 -0.136,0 -0.5133,0.1014 -0.8385,0.2253 -0.6424,0.2448 -1.835,0.5371 -2.116,0.5187 -0.09646,-0.0063 -0.5579,-0.0633 -1.025,-0.1266 z"
style="opacity:0.5021;fill:none;stroke:#ffffff;stroke-width:1.5;stroke-linejoin:round"
id="path506" />
<path
d="m 27.87,43.71 c -1.113,-0.1508 -2.337,-0.4496 -2.88,-0.7032 -1.256,-0.5861 -2.457,-1.418 -2.886,-1.999 -0.1122,-0.1521 -0.3907,-0.4236 -0.6189,-0.6033 -0.9071,-0.7146 -1.437,-1.467 -2.518,-3.576 -0.1228,-0.2396 -0.5067,-2.179 -0.6479,-3.275 -0.1116,-0.8656 -0.1027,-2.595 0.01758,-3.386 0.1492,-0.9822 0.454,-2.274 0.6016,-2.55 0.1243,-0.2322 0.433,-1.232 0.529,-1.713 0.03626,-0.1818 0.1176,-0.3943 0.1807,-0.4722 0.06314,-0.07791 0.1935,-0.4179 0.2896,-0.7555 0.09614,-0.3376 0.3202,-0.9081 0.498,-1.268 0.3981,-0.8055 0.5852,-1.406 0.5866,-1.881 5.72e-4,-0.1998 0.07085,-0.6034 0.1562,-0.897 0.209,-0.7188 0.1284,-2.743 -0.1396,-3.509 -0.2036,-0.5819 -0.7008,-1.559 -1.223,-2.404 -1.082,-1.751 -4.176,-3.905 -6.017,-4.19 -0.7057,-0.1092 -3.042,0.01163 -4.046,0.2092 -0.8596,0.1691 -1.669,0.5453 -2.084,0.9685 -1.065,1.085 -1.687,1.818 -1.932,2.276 -0.3536,0.6608 -0.5729,1.674 -0.6331,2.926 -0.06837,1.423 -0.00892,1.72 0.6221,3.112 0.5325,1.174 1.965,2.361 3.54,2.933 0.7354,0.2671 1.015,0.3166 2.078,0.3675 1.465,0.07027 2.089,-0.03592 2.746,-0.467 0.2558,-0.1679 0.6563,-0.4177 0.8901,-0.5549 1.067,-0.6266 1.624,-1.808 1.62,-3.435 -0.0028,-1.008 -0.3621,-1.919 -0.9709,-2.462 -0.3786,-0.3374 -1.714,-1.141 -2.102,-1.265 -0.6762,-0.2158 -1.548,-0.07892 -2.479,0.3891 -0.4531,0.2278 -0.9044,0.5245 -1.003,0.6593 -0.09841,0.1348 -0.3213,0.6235 -0.4953,1.086 -0.174,0.4626 -0.3513,0.8411 -0.3939,0.8411 -0.1692,0 -0.1258,-0.7336 0.07669,-1.297 0.2897,-0.806 0.5806,-1.225 1.154,-1.664 0.6469,-0.4944 1.281,-0.7389 2.138,-0.8243 1.115,-0.111 1.289,-0.0798 2.253,0.4032 1.122,0.5619 1.461,0.8933 2.014,1.969 0.661,1.284 0.742,1.638 0.5954,2.599 -0.1666,1.093 -0.541,2.197 -0.977,2.88 -0.3975,0.6233 -1.138,1.191 -2.47,1.893 -0.9548,0.5031 -1.281,0.5909 -2.55,0.6869 -1.389,0.105 -2.198,0.01486 -3.258,-0.3629 -0.4675,-0.1666 -1.049,-0.3599 -1.292,-0.4294 -0.3241,-0.09271 -0.7433,-0.3804 -1.571,-1.078 -1.421,-1.197 -1.649,-1.585 -1.925,-3.265 -0.1024,-0.6233 -0.1996,-1.439 -0.216,-1.812 -0.01637,-0.3733 -0.05626,-0.7215 -0.08866,-0.7739 -0.06776,-0.1096 0.08948,-2.008 0.2473,-2.986 0.1301,-0.806 0.1896,-0.9285 1.119,-2.305 0.5517,-0.817 0.9145,-1.24 1.43,-1.668 1.667,-1.384 2.756,-1.958 4.649,-2.45 1.313,-0.341 1.316,-0.3414 2.928,-0.2986 1.704,0.04528 2.612,0.1517 3.224,0.3783 4.143,1.532 5.777,2.874 7.9,6.485 0.6788,1.155 1.327,1.98 2.498,3.182 0.8619,0.8845 1.138,1.106 1.688,1.358 0.8872,0.4051 1.925,0.5526 3.916,0.5567 1.896,0.0038 2.614,-0.1398 3.441,-0.6886 0.2629,-0.1745 0.69,-0.4111 0.9491,-0.5256 0.2591,-0.1145 0.5565,-0.2852 0.6611,-0.3791 0.1045,-0.09396 0.4238,-0.2936 0.7095,-0.4436 0.656,-0.3444 1.422,-1.112 1.701,-1.705 0.3367,-0.7145 0.8519,-1.563 1.137,-1.874 0.1946,-0.2118 0.2844,-0.4411 0.3554,-0.9086 0.05227,-0.3439 0.1842,-0.8 0.2931,-1.014 0.2738,-0.5367 0.3664,-1.671 0.1678,-2.055 -0.08092,-0.1565 -0.208,-0.6071 -0.2825,-1.001 -0.2643,-1.4 -1.649,-3.032 -3.238,-3.817 -0.5763,-0.2848 -0.8208,-0.3455 -1.721,-0.427 -1.871,-0.1695 -3.241,0.1193 -4.32,0.9107 -1.02,0.7479 -1.46,1.117 -1.46,1.223 0,0.1117 -0.4698,0.6605 -0.6195,0.7236 -0.2073,0.08749 -0.6082,0.7537 -0.6082,1.011 0,0.1527 -0.08309,0.4654 -0.1846,0.695 -0.3872,0.8754 -0.3193,1.584 0.2924,3.054 0.348,0.8359 0.4546,1.031 0.7997,1.464 0.4626,0.5803 0.949,0.8492 1.811,1.001 1.002,0.1767 1.504,0.164 2.139,-0.05435 1.255,-0.4316 2.128,-1.168 2.579,-2.174 0.2031,-0.4528 0.2281,-0.6226 0.195,-1.324 -0.03327,-0.7054 -0.07788,-0.8748 -0.3606,-1.369 -0.1775,-0.3104 -0.4876,-0.7435 -0.6892,-0.9625 -0.2016,-0.2189 -0.3518,-0.4424 -0.3337,-0.4965 0.05236,-0.1571 1.002,0.5356 1.302,0.9495 0.4599,0.6348 0.6076,1.272 0.5402,2.331 -0.07398,1.162 -0.3913,1.842 -1.289,2.76 -0.6924,0.7082 -1.388,1.049 -2.549,1.248 -0.9447,0.162 -2.144,-0.05862 -2.902,-0.5337 -0.9182,-0.5759 -1.49,-1.166 -2.012,-2.076 -0.4286,-0.7475 -0.5091,-0.9787 -0.7073,-2.031 -0.2361,-1.253 -0.2357,-2.276 0.0012,-2.556 0.06579,-0.07791 0.1696,-0.3864 0.2308,-0.6856 0.06114,-0.2992 0.2066,-0.6604 0.3232,-0.8027 0.1166,-0.1423 0.3484,-0.5454 0.5151,-0.8956 0.2452,-0.5153 0.3747,-0.6734 0.6782,-0.8283 0.2063,-0.1053 0.3752,-0.2337 0.3752,-0.2855 0,-0.0518 0.1454,-0.1634 0.3232,-0.2482 0.1778,-0.08476 0.3439,-0.2334 0.3693,-0.3304 0.02719,-0.104 0.2721,-0.2754 0.5976,-0.4181 0.3033,-0.133 0.7828,-0.3502 1.066,-0.4827 0.2827,-0.1324 1.069,-0.378 1.747,-0.5458 1.172,-0.29 1.289,-0.3016 2.366,-0.2376 1.082,0.06427 1.158,0.08271 1.689,0.4082 0.3058,0.1875 0.7096,0.3906 0.8972,0.4513 0.1876,0.06075 0.6734,0.349 1.079,0.6405 0.4061,0.2915 0.8804,0.616 1.054,0.721 0.1736,0.105 0.596,0.4782 0.9386,0.8293 0.711,0.7287 1.457,2.087 1.702,3.101 0.08008,0.3306 0.2304,0.8986 0.334,1.262 0.1612,0.5657 0.1802,0.8314 0.1315,1.842 -0.1517,3.146 -1.222,5.568 -3.294,7.454 -0.2597,0.2365 -0.7808,0.7367 -1.158,1.112 -0.7632,0.7586 -1.674,1.385 -2.809,1.932 -0.4155,0.2004 -0.9916,0.4883 -1.28,0.6398 -0.8821,0.4629 -2.231,0.667 -4.409,0.667 -2.13,0 -2.367,0.03229 -4.812,0.6569 -0.8747,0.2235 -1.162,0.345 -1.667,0.7053 -0.8538,0.6092 -1.839,1.878 -2.608,3.36 -0.1213,0.2337 -0.2966,0.51 -0.3894,0.6139 -0.3077,0.3444 -0.5456,1.051 -0.5621,1.669 -0.04062,1.523 0.02199,4.224 0.1058,4.564 0.13,0.5278 0.372,1.083 0.6177,1.417 0.3185,0.4325 0.8508,1.405 0.975,1.781 0.06666,0.202 0.2906,0.4866 0.561,0.713 0.2475,0.2072 0.5719,0.5526 0.7208,0.7675 0.3237,0.4671 1.494,1.102 2.195,1.19 0.2456,0.03104 0.5332,0.1102 0.6392,0.176 0.106,0.06575 0.4247,0.1676 0.7083,0.2263 0.6149,0.1273 2.007,-0.04731 2.81,-0.3525 0.4938,-0.1876 1.659,-0.8685 2.279,-1.332 0.4649,-0.3474 1.098,-1.247 1.285,-1.824 0.08794,-0.2726 0.2119,-0.5807 0.2753,-0.6845 0.3271,-0.5351 0.4039,-1.624 0.2477,-3.508 -0.05986,-0.7221 -0.1371,-1.071 -0.3134,-1.417 -0.1287,-0.252 -0.3323,-0.6631 -0.4525,-0.9135 -0.3679,-0.7664 -2.139,-2.049 -2.85,-2.063 -0.1184,-0.0024 -0.5003,-0.06373 -0.8486,-0.1362 -0.6689,-0.1391 -1.645,-0.06897 -2.049,0.1473 -0.4968,0.2659 -1.131,0.7412 -1.538,1.152 -0.361,0.3648 -0.4874,0.5887 -0.6844,1.213 -0.2262,0.7162 -0.2363,0.8276 -0.1569,1.741 0.09698,1.117 0.2873,1.633 0.8184,2.221 0.4236,0.4689 0.7845,0.6658 1.74,0.95 0.6943,0.2064 1.351,0.2198 1.96,0.04024 0.3577,-0.1055 0.236,0.109 -0.1643,0.2895 -0.5654,0.255 -1.901,0.1575 -2.783,-0.2031 -0.8817,-0.3607 -1.65,-1.073 -2.058,-1.908 -0.2943,-0.6016 -0.3069,-0.6736 -0.3069,-1.761 0,-1.081 0.01347,-1.159 0.2915,-1.7 0.1603,-0.3117 0.3895,-0.7578 0.5093,-0.9914 0.1198,-0.2336 0.4675,-0.6653 0.7726,-0.9593 0.4504,-0.4339 0.6923,-0.5821 1.285,-0.7872 1.632,-0.5646 3.618,-0.4182 4.838,0.3566 1.116,0.7085 2.094,1.533 2.467,2.078 0.6837,1.002 1.178,2.186 1.25,2.995 0.03466,0.3896 0.1015,1.081 0.1486,1.537 0.08071,0.7814 0.06696,0.9028 -0.2407,2.125 -0.4805,1.909 -0.7433,2.416 -1.677,3.236 -0.422,0.371 -0.9255,0.7558 -1.119,0.8552 -0.1933,0.09932 -0.4908,0.3004 -0.6611,0.447 -0.4616,0.3972 -1.338,0.8658 -1.619,0.8658 -0.136,0 -0.5133,0.1014 -0.8385,0.2253 -0.6424,0.2448 -1.835,0.5371 -2.116,0.5187 -0.09646,-0.0063 -0.5579,-0.0633 -1.025,-0.1266 z"
style="fill:#ffffff"
id="path508" />
<path
d="m 20.16,24.12 21.31,-4.844 c 0.02465,-0.02278 0.07241,-0.07432 0.09375,-0.09375 2.072,-1.887 3.13,-4.291 3.281,-7.438 0.04872,-1.01 0.03622,-1.278 -0.125,-1.844 -0.1036,-0.3636 -0.2637,-0.9507 -0.3438,-1.281 -0.2455,-1.013 -0.9765,-2.365 -1.688,-3.094 -0.3426,-0.3511 -0.7639,-0.7075 -0.9375,-0.8125 -0.1736,-0.105 -0.6564,-0.4585 -1.062,-0.75 -0.4061,-0.2915 -0.8749,-0.5642 -1.062,-0.625 -0.1876,-0.06075 -0.6004,-0.25 -0.9062,-0.4375 -0.5309,-0.3255 -0.6054,-0.3732 -1.688,-0.4375 -1.078,-0.064 -1.203,-0.03996 -2.375,0.25 -0.6782,0.1677 -1.467,0.4301 -1.75,0.5625 -0.2827,0.1324 -0.7592,0.3357 -1.062,0.4688 -0.3255,0.1427 -0.5666,0.3022 -0.5938,0.4062 -0.02535,0.09693 -0.1972,0.259 -0.375,0.3438 -0.1777,0.08476 -0.3125,0.1983 -0.3125,0.25 0,0.05173 -0.1687,0.176 -0.375,0.2812 -0.3036,0.1549 -0.4423,0.3285 -0.6875,0.8438 -0.1667,0.3503 -0.3834,0.7327 -0.5,0.875 -0.1166,0.1423 -0.2826,0.5133 -0.3438,0.8125 -0.06114,0.2992 -0.153,0.6096 -0.2188,0.6875 -0.2368,0.2805 -0.2361,1.309 0,2.562 0.1982,1.052 0.2589,1.284 0.6875,2.031 0.5217,0.9098 1.113,1.487 2.031,2.062 0.7574,0.4751 1.962,0.6932 2.906,0.5312 1.161,-0.199 1.839,-0.5418 2.531,-1.25 0.8974,-0.9179 1.239,-1.588 1.312,-2.75 0.0674,-1.059 -0.1026,-1.709 -0.5625,-2.344 -0.2998,-0.4139 -1.229,-1.095 -1.281,-0.9375 -0.01805,0.05415 0.1109,0.2811 0.3125,0.5 0.2016,0.2189 0.51,0.6583 0.6875,0.9688 0.2827,0.4946 0.3417,0.6384 0.375,1.344 0.03308,0.7018 0.01561,0.8909 -0.1875,1.344 -0.4515,1.007 -1.339,1.725 -2.594,2.156 -0.6345,0.2183 -1.123,0.2392 -2.125,0.0625 -0.8615,-0.1519 -1.35,-0.4197 -1.812,-1 -0.3451,-0.4328 -0.4645,-0.6329 -0.8125,-1.469 -0.6118,-1.469 -0.6685,-2.156 -0.2812,-3.031 0.1015,-0.2296 0.1875,-0.5661 0.1875,-0.7188 0,-0.2571 0.3864,-0.9125 0.5938,-1 0.1497,-0.06315 0.625,-0.6071 0.625,-0.7188 0,-0.1066 0.4491,-0.4709 1.469,-1.219 1.079,-0.7914 2.441,-1.107 4.312,-0.9375 0.9004,0.08156 1.142,0.1527 1.719,0.4375 1.589,0.7853 2.986,2.413 3.25,3.812 0.07444,0.3943 0.2003,0.8435 0.2812,1 0.1986,0.3841 0.08631,1.526 -0.1875,2.062 -0.109,0.2136 -0.229,0.6874 -0.2812,1.031 -0.07103,0.4674 -0.1803,0.6944 -0.375,0.9062 -0.2855,0.3107 -0.7883,1.16 -1.125,1.875 -0.2796,0.5932 -1.031,1.343 -1.688,1.688 -0.2857,0.15 -0.6142,0.3435 -0.7188,0.4375 -0.1045,0.09396 -0.3972,0.2604 -0.6562,0.375 -0.2591,0.1146 -0.7058,0.3567 -0.9688,0.5312 -0.8268,0.5488 -1.541,0.6913 -3.438,0.6875 -1.991,-0.004 -3.019,-0.1574 -3.906,-0.5625 -0.5505,-0.2514 -0.8256,-0.4593 -1.688,-1.344 -1.171,-1.202 -1.821,-2.033 -2.5,-3.188 -2.123,-3.611 -3.763,-4.936 -7.906,-6.469 -0.6126,-0.2266 -1.514,-0.3297 -3.219,-0.375 -1.612,-0.04281 -1.625,-0.05978 -2.938,0.2812 -1.893,0.4919 -2.958,1.085 -4.625,2.469 -0.5156,0.428 -0.8858,0.8393 -1.438,1.656 -0.9296,1.377 -0.9949,1.507 -1.125,2.312 -0.1578,0.9776 -0.3178,2.859 -0.25,2.969 0.0324,0.05241 0.07738,0.408 0.09375,0.7812 0.01637,0.3733 0.1163,1.189 0.2188,1.812 0.2761,1.68 0.4856,2.053 1.906,3.25 0.8278,0.6977 1.27,1.001 1.594,1.094 0.2431,0.06954 0.8138,0.2709 1.281,0.4375 1.06,0.3778 1.861,0.4488 3.25,0.3438 1.269,-0.09598 1.608,-0.1844 2.562,-0.6875 1.331,-0.7014 2.071,-1.252 2.469,-1.875 0.4359,-0.6836 0.8022,-1.782 0.9688,-2.875 0.1466,-0.9615 0.06728,-1.341 -0.5938,-2.625 -0.5538,-1.076 -0.8783,-1.407 -2,-1.969 -0.9642,-0.483 -1.135,-0.486 -2.25,-0.375 -0.8573,0.0854 -1.509,0.3181 -2.156,0.8125 -0.5738,0.4386 -0.8666,0.8503 -1.156,1.656 -0.2025,0.5634 -0.2317,1.313 -0.0625,1.312 0.04264,0 0.201,-0.3812 0.375,-0.8438 0.174,-0.4626 0.4016,-0.959 0.5,-1.094 0.09842,-0.1348 0.5469,-0.4284 1,-0.6562 0.9308,-0.468 1.824,-0.6221 2.5,-0.4062 0.3881,0.1239 1.715,0.9438 2.094,1.281 0.6088,0.5426 0.9659,1.461 0.9688,2.469 0.0045,1.626 -0.5581,2.811 -1.625,3.438 -0.2337,0.1373 -0.6192,0.3633 -0.875,0.5312 -0.6566,0.4311 -1.285,0.539 -2.75,0.4688 -1.062,-0.05096 -1.358,-0.07669 -2.094,-0.3438 -1.575,-0.5721 -2.999,-1.763 -3.531,-2.938 -0.631,-1.392 -0.6934,-1.702 -0.625,-3.125 0.06018,-1.252 0.2714,-2.277 0.625,-2.938 0.2452,-0.4581 0.8728,-1.165 1.938,-2.25 0.4151,-0.4231 1.234,-0.7996 2.094,-0.9688 1.004,-0.1976 3.326,-0.3279 4.031,-0.2188 1.841,0.2848 4.949,2.437 6.031,4.188 0.5224,0.845 1.015,1.824 1.219,2.406 0.2681,0.7662 0.3652,2.781 0.1562,3.5 -0.08534,0.2936 -0.1557,0.7065 -0.1562,0.9062 -0.0013,0.4758 -0.1956,1.07 -0.5938,1.875 -0.09976,0.2018 -0.1831,0.4625 -0.2812,0.7188 z"
style="opacity:0.7975;fill:#ffffff"
id="path510" />
<path
d="m 20.16,24.12 c -0.07674,0.2003 -0.1766,0.4143 -0.2188,0.5625 -0.09614,0.3376 -0.2181,0.6721 -0.2812,0.75 -0.06315,0.07791 -0.1512,0.287 -0.1875,0.4688 -0.09597,0.4812 -0.407,1.487 -0.5312,1.719 -0.1476,0.2759 -0.4445,1.549 -0.5938,2.531 -0.1202,0.7916 -0.1429,2.541 -0.03125,3.406 0.1413,1.095 0.5334,3.042 0.6562,3.281 1.081,2.109 1.593,2.848 2.5,3.562 0.2282,0.1798 0.5128,0.4417 0.625,0.5938 0.4282,0.5804 1.65,1.414 2.906,2 0.5433,0.2536 1.762,0.568 2.875,0.7188 0.4675,0.06332 0.9035,0.1187 1,0.125 0.281,0.01842 1.483,-0.2864 2.125,-0.5312 0.3252,-0.1239 0.7078,-0.2188 0.8438,-0.2188 0.281,0 1.163,-0.4778 1.625,-0.875 0.1703,-0.1465 0.4629,-0.3382 0.6562,-0.4375 0.1933,-0.09932 0.703,-0.4727 1.125,-0.8438 0.9333,-0.8206 1.176,-1.341 1.656,-3.25 0.3077,-1.222 0.3307,-1.344 0.25,-2.125 -0.04709,-0.4558 -0.1216,-1.142 -0.1562,-1.531 -0.07193,-0.8088 -0.5663,-1.998 -1.25,-3 -0.3722,-0.5453 -1.353,-1.354 -2.469,-2.062 -1.22,-0.7748 -3.181,-0.9396 -4.812,-0.375 -0.5928,0.2051 -0.8308,0.3473 -1.281,0.7812 -0.3051,0.294 -0.6614,0.7351 -0.7812,0.9688 -0.1198,0.2337 -0.3709,0.6883 -0.5312,1 -0.278,0.5404 -0.2813,0.6066 -0.2812,1.688 0,1.087 0.01819,1.148 0.3125,1.75 0.4087,0.8355 1.181,1.577 2.062,1.938 0.8815,0.3606 2.216,0.4425 2.781,0.1875 0.4003,-0.1805 0.5139,-0.3867 0.1562,-0.2812 -0.6091,0.1796 -1.274,0.1439 -1.969,-0.0625 -0.956,-0.2842 -1.295,-0.4686 -1.719,-0.9375 -0.5311,-0.5879 -0.7155,-1.102 -0.8125,-2.219 -0.07934,-0.9137 -0.06999,-1.034 0.1562,-1.75 0.1971,-0.6239 0.2952,-0.8539 0.6562,-1.219 0.4063,-0.4106 1.066,-0.8591 1.562,-1.125 0.4041,-0.2163 1.362,-0.2954 2.031,-0.1562 0.3484,0.07246 0.7254,0.1226 0.8438,0.125 0.7112,0.01469 2.507,1.296 2.875,2.062 0.1202,0.2504 0.3088,0.6542 0.4375,0.9062 0.1763,0.3453 0.2526,0.7154 0.3125,1.438 0.1562,1.885 0.07708,2.965 -0.25,3.5 -0.06349,0.1039 -0.1933,0.4149 -0.2812,0.6875 -0.1862,0.5772 -0.8163,1.465 -1.281,1.812 -0.6203,0.4635 -1.787,1.156 -2.281,1.344 -0.8032,0.3052 -2.198,0.4711 -2.812,0.3438 -0.2836,-0.05872 -0.5815,-0.153 -0.6875,-0.2188 -0.106,-0.06575 -0.4107,-0.1565 -0.6562,-0.1875 -0.7012,-0.08862 -1.864,-0.7204 -2.188,-1.188 -0.1489,-0.2149 -0.4712,-0.5428 -0.7188,-0.75 -0.2704,-0.2264 -0.4958,-0.5168 -0.5625,-0.7188 -0.1242,-0.3763 -0.6503,-1.349 -0.9688,-1.781 -0.2456,-0.3336 -0.495,-0.8784 -0.625,-1.406 -0.08381,-0.3404 -0.1344,-3.04 -0.09375,-4.562 0.01649,-0.6183 0.2548,-1.343 0.5625,-1.688 0.09284,-0.1039 0.2537,-0.36 0.375,-0.5938 0.769,-1.481 1.771,-2.766 2.625,-3.375 0.5049,-0.3603 0.7815,-0.4953 1.656,-0.7188 2.445,-0.6246 2.682,-0.6563 4.812,-0.6562 2.178,0 3.524,-0.1933 4.406,-0.6562 0.2886,-0.1515 0.8657,-0.4246 1.281,-0.625 1.135,-0.5473 2.049,-1.179 2.812,-1.938 0.3462,-0.3441 0.7872,-0.7768 1.062,-1.031 l -21.31,4.844 z"
style="opacity:0.3629;fill:#ffffff"
id="path512" />
</g>
</svg>