Devel
Threads by month
- ----- 2026 -----
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- 19 participants
- 40177 discussions
28 Feb '18
Changed in v2:
- Dropped VPATH patch, since distcheck is doing that already
- Skip pdwtags when building with clang
- Run install & dist on OS-X
- Test systemd as well as upstart
- Pass initscript configure flags to distcheck, not autogen.sh
Daniel P. Berrangé (5):
make: skip pdwtags when building with CLang
travis: drop precise distro jobs
travis: run "make distcheck" instead of just "make check"
travis: test "make install" and "make dist" on OS-X
travis: test upstart/systemd init script handling
.travis.yml | 22 +++++++++++-----------
src/Makefile.am | 10 +++++++++-
2 files changed, 20 insertions(+), 12 deletions(-)
--
2.14.3
2
13
28 Feb '18
Commit v3.7.0-14-gc57f3fd2f8 prevented adding a <boot order='x'/>
element to an inactive domain with global <boot dev='...'/> element.
However, as a result of that change updating any device with boot order
would fail with 'boot order X is already used by another device', where
"another device" is in fact the device which is being updated.
To fix this we have to ignore the device which we're about to update
when checking for boot order conflicts.
https://bugzilla.redhat.com/show_bug.cgi?id=1546971
Jiri Denemark (3):
lxc: Drop useless check in live device update
Pass oldDev to virDomainDefCompatibleDevice on device update
qemu: Fix updating device with boot order
src/conf/domain_conf.c | 30 ++++++++++++++++++++++-------
src/conf/domain_conf.h | 3 ++-
src/lxc/lxc_driver.c | 18 +++++++++---------
src/qemu/qemu_driver.c | 51 ++++++++++++++++++++++++++++++++++++++++----------
4 files changed, 75 insertions(+), 27 deletions(-)
--
2.16.2
3
5
I didn't sent a warning mail, but people reminded me that it's time to
roll the releases, so I just tagged rc1 in git head and pushed signed tarball
and rpms to the usual place:
ftp://libvirt.org/libvirt/
Looks fine with my limited testing, amazingly
https://ci.centos.org/view/libvirt/ is all green so things seems they should
go smoothly, that said the devil is in the details so please give this RC1
some testing especially on other platforms and OSes !
It all goes well I will push rc2 on Wed and the final release early Fri,
but in the meantime, please test it :-)
thanks,
Daniel
--
Daniel Veillard | Red Hat Developers Tools http://developer.redhat.com/
veillard(a)redhat.com | libxml Gnome XML XSLT toolkit http://xmlsoft.org/
http://veillard.com/ | virtualization library http://libvirt.org/
1
1
[libvirt] [PATCH] vshCommandOpt: Do more checking if skipChecks is set
by Michal Privoznik 28 Feb '18
by Michal Privoznik 28 Feb '18
28 Feb '18
Currently if cmd->skipChecks is set (done only from completers)
some basic checks are skipped because we're working over
partially parsed command. See a26ff63ae4 for more detailed
explanation. Anyway, the referenced commit was too aggressive in
disabling checks and effectively returned success even in clear
case of failure. For instance:
# domif-getlink --interface <TAB><TAB>
causes virshDomainInterfaceCompleter() to be called, which calls
virshDomainGetXML() which eventually calls
vshCommandOptStringReq(.., name = "domain"); The --domain
argument is required for the command and if not present -1 should
be returned to tell the caller the argument was not found. Well,
zero is returned meaning the argument was not found but it's not
required either.
Signed-off-by: Michal Privoznik <mprivozn(a)redhat.com>
---
tools/vsh.c | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/tools/vsh.c b/tools/vsh.c
index 37c292a03..73ec007e5 100644
--- a/tools/vsh.c
+++ b/tools/vsh.c
@@ -817,18 +817,17 @@ vshCommandOpt(const vshCmd *cmd, const char *name, vshCmdOpt **opt,
/* See if option is valid and/or required. */
*opt = NULL;
- if (!cmd->skipChecks) {
- while (valid && valid->name) {
- if (STREQ(name, valid->name))
- break;
- valid++;
- }
+ while (valid && valid->name) {
+ if (STREQ(name, valid->name))
+ break;
+ valid++;
+ }
+ if (!cmd->skipChecks)
assert(valid && (!needData || valid->type != VSH_OT_BOOL));
- if (valid->flags & VSH_OFLAG_REQ)
- ret = -1;
- }
+ if (valid && valid->flags & VSH_OFLAG_REQ)
+ ret = -1;
/* See if option is present on command line. */
while (candidate) {
@@ -1065,7 +1064,8 @@ vshCommandOptStringReq(vshControl *ctl,
error = N_("Option argument is empty");
if (error) {
- vshError(ctl, _("Failed to get option '%s': %s"), name, _(error));
+ if (!cmd->skipChecks)
+ vshError(ctl, _("Failed to get option '%s': %s"), name, _(error));
return -1;
}
--
2.16.1
2
1
[libvirt] [PATCH] vz: fix ref/unref of domain obj in vzDomainRevertToSnapshot
by Nikolay Shirokovskiy 28 Feb '18
by Nikolay Shirokovskiy 28 Feb '18
28 Feb '18
---
src/vz/vz_driver.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/vz/vz_driver.c b/src/vz/vz_driver.c
index dab1ba8..18f4b4c 100644
--- a/src/vz/vz_driver.c
+++ b/src/vz/vz_driver.c
@@ -2732,7 +2732,7 @@ vzDomainRevertToSnapshot(virDomainSnapshotPtr snapshot, unsigned int flags)
virCheckFlags(VIR_DOMAIN_SNAPSHOT_REVERT_PAUSED, -1);
- if (!(dom = vzDomObjFromDomain(snapshot->domain)))
+ if (!(dom = vzDomObjFromDomainRef(snapshot->domain)))
return -1;
if (virDomainRevertToSnapshotEnsureACL(snapshot->domain->conn, dom->def) < 0)
--
1.8.3.1
4
5
The precise distro is marked deprecated in travis and will be dropped
entirely in 2 months time.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
.travis.yml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 3f26a1eeee..9219ccd173 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,12 +4,8 @@ cache: ccache
matrix:
include:
- - compiler: gcc
- dist: precise
- compiler: gcc
dist: trusty
- - compiler: clang
- dist: precise
- compiler: clang
dist: trusty
- compiler: clang
--
2.14.3
1
0
From: root <root(a)localhost.localdomain>
qemuDomainObjExitMonitor is unsafe
domain lock released when qemuDomainObjEnterMonitor finish,
So other thread (qemuProcessStop) has chance to modify priv->mon
to NULL. qemuDomainObjExitMonitor will never release the mon->lock,
that may cause problem:
thread get monitor ptr early, and then try to get mon->lock,
it will block forerver cause mon->lock not released by
qemuDomainObjExitMonitor.
Signed-off-by: Wang Yechao <wang.yechao255(a)zte.com.cn>
Signed-off-by: Peng Hao <peng.hao2(a)zte.com.cn>
---
src/qemu/THREADS.txt | 12 +-
src/qemu/qemu_block.c | 5 +-
src/qemu/qemu_domain.c | 64 +++++----
src/qemu/qemu_domain.h | 12 +-
src/qemu/qemu_driver.c | 258 ++++++++++++++++++++--------------
src/qemu/qemu_hotplug.c | 296 ++++++++++++++++++++++-----------------
src/qemu/qemu_migration.c | 104 ++++++++------
src/qemu/qemu_migration_cookie.c | 5 +-
src/qemu/qemu_process.c | 108 ++++++++------
9 files changed, 507 insertions(+), 357 deletions(-)
mode change 100644 => 100755 src/qemu/THREADS.txt
mode change 100644 => 100755 src/qemu/qemu_block.c
mode change 100644 => 100755 src/qemu/qemu_domain.c
mode change 100644 => 100755 src/qemu/qemu_domain.h
mode change 100644 => 100755 src/qemu/qemu_driver.c
mode change 100644 => 100755 src/qemu/qemu_hotplug.c
mode change 100644 => 100755 src/qemu/qemu_migration.c
mode change 100644 => 100755 src/qemu/qemu_migration_cookie.c
mode change 100644 => 100755 src/qemu/qemu_process.c
diff --git a/src/qemu/THREADS.txt b/src/qemu/THREADS.txt
old mode 100644
new mode 100755
index 7243161..6a56003
--- a/src/qemu/THREADS.txt
+++ b/src/qemu/THREADS.txt
@@ -228,6 +228,7 @@ Design patterns
virDomainObjPtr obj;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
obj = qemuDomObjFromDomain(dom);
@@ -236,9 +237,9 @@ Design patterns
...do prep work...
if (virDomainObjIsActive(vm)) {
- qemuDomainObjEnterMonitor(obj);
+ mon = qemuDomainObjEnterMonitor(obj);
qemuMonitorXXXX(priv->mon);
- qemuDomainObjExitMonitor(obj);
+ qemuDomainObjExitMonitor(obj, mon);
}
...do final work...
@@ -251,6 +252,7 @@ Design patterns
virDomainObjPtr obj;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
obj = qemuDomObjFromDomain(dom);
@@ -260,12 +262,12 @@ Design patterns
...do prep work...
if (qemuDomainObjEnterMonitorAsync(driver, obj,
- QEMU_ASYNC_JOB_TYPE) < 0) {
+ QEMU_ASYNC_JOB_TYPE, &mon) < 0) {
/* domain died in the meantime */
goto error;
}
...start qemu job...
- qemuDomainObjExitMonitor(driver, obj);
+ qemuDomainObjExitMonitor(driver, obj, mon);
while (!finished) {
if (qemuDomainObjEnterMonitorAsync(driver, obj,
@@ -274,7 +276,7 @@ Design patterns
goto error;
}
...monitor job progress...
- qemuDomainObjExitMonitor(driver, obj);
+ qemuDomainObjExitMonitor(driver, obj, mon);
virObjectUnlock(obj);
sleep(aWhile);
diff --git a/src/qemu/qemu_block.c b/src/qemu/qemu_block.c
old mode 100644
new mode 100755
index 585f025..d437802
--- a/src/qemu/qemu_block.c
+++ b/src/qemu/qemu_block.c
@@ -327,17 +327,18 @@ qemuBlockNodeNamesDetect(virQEMUDriverPtr driver,
virDomainDiskDefPtr disk;
size_t i;
int ret = -1;
+ qemuMonitorPtr mon;
if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_QUERY_NAMED_BLOCK_NODES))
return 0;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
data = qemuMonitorQueryNamedBlockNodes(qemuDomainGetMonitor(vm));
blockstats = qemuMonitorQueryBlockstats(qemuDomainGetMonitor(vm));
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || !data || !blockstats)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || !data || !blockstats)
goto cleanup;
if (!(disktable = qemuBlockNodeNameGetBackingChain(data, blockstats)))
diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
old mode 100644
new mode 100755
index aa65295..a09235e
--- a/src/qemu/qemu_domain.c
+++ b/src/qemu/qemu_domain.c
@@ -5602,15 +5602,16 @@ qemuDomainObjEnterMonitorInternal(virQEMUDriverPtr driver,
static void ATTRIBUTE_NONNULL(1)
qemuDomainObjExitMonitorInternal(virQEMUDriverPtr driver,
- virDomainObjPtr obj)
+ virDomainObjPtr obj,
+ qemuMonitorPtr mon)
{
qemuDomainObjPrivatePtr priv = obj->privateData;
bool hasRefs;
- hasRefs = virObjectUnref(priv->mon);
+ hasRefs = virObjectUnref(mon);
if (hasRefs)
- virObjectUnlock(priv->mon);
+ virObjectUnlock(mon);
virObjectLock(obj);
VIR_DEBUG("Exited monitor (mon=%p vm=%p name=%s)",
@@ -5624,11 +5625,13 @@ qemuDomainObjExitMonitorInternal(virQEMUDriverPtr driver,
qemuDomainObjEndJob(driver, obj);
}
-void qemuDomainObjEnterMonitor(virQEMUDriverPtr driver,
+qemuMonitorPtr qemuDomainObjEnterMonitor(virQEMUDriverPtr driver,
virDomainObjPtr obj)
{
+ qemuMonitorPtr mon = qemuDomainGetMonitor(obj);
ignore_value(qemuDomainObjEnterMonitorInternal(driver, obj,
QEMU_ASYNC_JOB_NONE));
+ return mon;
}
/* obj must NOT be locked before calling
@@ -5642,9 +5645,10 @@ void qemuDomainObjEnterMonitor(virQEMUDriverPtr driver,
* from the live definition could no longer be valid.
*/
int qemuDomainObjExitMonitor(virQEMUDriverPtr driver,
- virDomainObjPtr obj)
+ virDomainObjPtr obj,
+ qemuMonitorPtr mon)
{
- qemuDomainObjExitMonitorInternal(driver, obj);
+ qemuDomainObjExitMonitorInternal(driver, obj, mon);
if (!virDomainObjIsActive(obj)) {
if (!virGetLastError())
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
@@ -5671,8 +5675,10 @@ int qemuDomainObjExitMonitor(virQEMUDriverPtr driver,
int
qemuDomainObjEnterMonitorAsync(virQEMUDriverPtr driver,
virDomainObjPtr obj,
- qemuDomainAsyncJob asyncJob)
+ qemuDomainAsyncJob asyncJob,
+ qemuMonitorPtr *mon)
{
+ *mon = qemuDomainGetMonitor(obj);
return qemuDomainObjEnterMonitorInternal(driver, obj, asyncJob);
}
@@ -6621,6 +6627,7 @@ qemuDomainSnapshotDiscard(virQEMUDriverPtr driver,
{
char *snapFile = NULL;
int ret = -1;
+ qemuMonitorPtr mon;
qemuDomainObjPrivatePtr priv;
virDomainSnapshotObjPtr parentsnap = NULL;
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
@@ -6633,10 +6640,10 @@ qemuDomainSnapshotDiscard(virQEMUDriverPtr driver,
goto cleanup;
} else {
priv = vm->privateData;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
/* we continue on even in the face of error */
qemuMonitorDeleteSnapshot(priv->mon, snap->def->name);
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
}
}
@@ -7477,14 +7484,15 @@ qemuDomainUpdateDeviceList(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
char **aliases;
int rc;
+ qemuMonitorPtr mon;
if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DEVICE_DEL_EVENT))
return 0;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
rc = qemuMonitorGetDeviceAliases(priv->mon, &aliases);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
return -1;
if (rc < 0)
return -1;
@@ -7504,16 +7512,17 @@ qemuDomainUpdateMemoryDeviceInfo(virQEMUDriverPtr driver,
virHashTablePtr meminfo = NULL;
int rc;
size_t i;
+ qemuMonitorPtr mon;
if (vm->def->nmems == 0)
return 0;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
rc = qemuMonitorGetMemoryDeviceInfo(priv->mon, &meminfo);
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
virHashFree(meminfo);
return -1;
}
@@ -8243,6 +8252,7 @@ qemuDomainUpdateCurrentMemorySize(virQEMUDriverPtr driver,
virDomainObjPtr vm)
{
qemuDomainObjPrivatePtr priv = vm->privateData;
+ qemuMonitorPtr mon;
unsigned long long balloon;
int ret = -1;
@@ -8275,9 +8285,9 @@ qemuDomainUpdateCurrentMemorySize(virQEMUDriverPtr driver,
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorGetBalloonInfo(priv->mon, &balloon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -8608,15 +8618,16 @@ qemuDomainRefreshVcpuInfo(virQEMUDriverPtr driver,
bool hotplug;
int rc;
int ret = -1;
+ qemuMonitorPtr mon;
hotplug = qemuDomainSupportsNewVcpuHotplug(vm);
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
rc = qemuMonitorGetCPUInfo(qemuDomainGetMonitor(vm), &info, maxvcpus, hotplug);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (rc < 0)
@@ -8721,6 +8732,7 @@ qemuDomainRefreshVcpuHalted(virQEMUDriverPtr driver,
virBitmapPtr haltedmap = NULL;
size_t i;
int ret = -1;
+ qemuMonitorPtr mon;
/* Not supported currently for TCG, see qemuDomainRefreshVcpuInfo */
if (vm->def->virtType == VIR_DOMAIN_VIRT_QEMU)
@@ -8731,12 +8743,12 @@ qemuDomainRefreshVcpuHalted(virQEMUDriverPtr driver,
if (!ARCH_IS_S390(vm->def->os.arch))
return 0;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
haltedmap = qemuMonitorGetCpuHalted(qemuDomainGetMonitor(vm), maxvcpus);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || !haltedmap)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || !haltedmap)
goto cleanup;
for (i = 0; i < maxvcpus; i++) {
@@ -9081,13 +9093,14 @@ qemuDomainCheckMonitor(virQEMUDriverPtr driver,
{
qemuDomainObjPrivatePtr priv = vm->privateData;
int ret;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
ret = qemuMonitorCheck(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
return -1;
return ret;
@@ -11399,13 +11412,14 @@ qemuDomainCheckMigrationCapabilities(virQEMUDriverPtr driver,
char **capStr;
int ret = -1;
int rc;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
rc = qemuMonitorGetMigrationCapabilities(priv->mon, &caps);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || rc < 0)
goto cleanup;
if (!caps) {
@@ -11429,14 +11443,14 @@ qemuDomainCheckMigrationCapabilities(virQEMUDriverPtr driver,
}
if (virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_MIGRATION_EVENT)) {
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
rc = qemuMonitorSetMigrationCapability(priv->mon,
QEMU_MONITOR_MIGRATION_CAPS_EVENTS,
true);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (rc < 0) {
diff --git a/src/qemu/qemu_domain.h b/src/qemu/qemu_domain.h
old mode 100644
new mode 100755
index f3ec5d8..ceee781
--- a/src/qemu/qemu_domain.h
+++ b/src/qemu/qemu_domain.h
@@ -517,17 +517,19 @@ void qemuDomainObjReleaseAsyncJob(virDomainObjPtr obj);
qemuMonitorPtr qemuDomainGetMonitor(virDomainObjPtr vm)
ATTRIBUTE_NONNULL(1);
-void qemuDomainObjEnterMonitor(virQEMUDriverPtr driver,
+qemuMonitorPtr qemuDomainObjEnterMonitor(virQEMUDriverPtr driver,
virDomainObjPtr obj)
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
int qemuDomainObjExitMonitor(virQEMUDriverPtr driver,
- virDomainObjPtr obj)
- ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
+ virDomainObjPtr obj,
+ qemuMonitorPtr mon)
+ ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
ATTRIBUTE_RETURN_CHECK;
int qemuDomainObjEnterMonitorAsync(virQEMUDriverPtr driver,
virDomainObjPtr obj,
- qemuDomainAsyncJob asyncJob)
- ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_RETURN_CHECK;
+ qemuDomainAsyncJob asyncJob,
+ qemuMonitorPtr *mon)
+ ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(4) ATTRIBUTE_RETURN_CHECK;
qemuAgentPtr qemuDomainObjEnterAgent(virDomainObjPtr obj)
diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
old mode 100644
new mode 100755
index 8d77d89..ef84596
--- a/src/qemu/qemu_driver.c
+++ b/src/qemu/qemu_driver.c
@@ -1987,6 +1987,7 @@ static int qemuDomainShutdownFlags(virDomainPtr dom, unsigned int flags)
{
virQEMUDriverPtr driver = dom->conn->privateData;
virDomainObjPtr vm;
+ qemuMonitorPtr mon;
int ret = -1;
qemuDomainObjPrivatePtr priv;
bool useAgent = false, agentRequested, acpiRequested;
@@ -2057,9 +2058,9 @@ static int qemuDomainShutdownFlags(virDomainPtr dom, unsigned int flags)
}
qemuDomainSetFakeReboot(driver, vm, isReboot);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorSystemPowerdown(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
}
@@ -2082,6 +2083,7 @@ qemuDomainReboot(virDomainPtr dom, unsigned int flags)
{
virQEMUDriverPtr driver = dom->conn->privateData;
virDomainObjPtr vm;
+ qemuMonitorPtr mon;
int ret = -1;
qemuDomainObjPrivatePtr priv;
bool useAgent = false, agentRequested, acpiRequested;
@@ -2159,9 +2161,9 @@ qemuDomainReboot(virDomainPtr dom, unsigned int flags)
}
#endif
qemuDomainSetFakeReboot(driver, vm, isReboot);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorSystemPowerdown(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
}
@@ -2179,6 +2181,7 @@ qemuDomainReset(virDomainPtr dom, unsigned int flags)
{
virQEMUDriverPtr driver = dom->conn->privateData;
virDomainObjPtr vm;
+ qemuMonitorPtr mon;
int ret = -1;
qemuDomainObjPrivatePtr priv;
virDomainState state;
@@ -2201,9 +2204,9 @@ qemuDomainReset(virDomainPtr dom, unsigned int flags)
}
priv = vm->privateData;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorSystemReset(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
priv->fakeReboot = false;
@@ -2360,6 +2363,7 @@ static int qemuDomainSetMemoryFlags(virDomainPtr dom, unsigned long newmem,
virDomainObjPtr vm;
virDomainDefPtr def;
virDomainDefPtr persistentDef;
+ qemuMonitorPtr mon;
int ret = -1, r;
virQEMUDriverConfigPtr cfg = NULL;
@@ -2438,9 +2442,9 @@ static int qemuDomainSetMemoryFlags(virDomainPtr dom, unsigned long newmem,
if (def) {
priv = vm->privateData;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
r = qemuMonitorSetBalloon(priv->mon, newmem);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || r < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || r < 0)
goto endjob;
/* Lack of balloon support is a fatal error */
@@ -2488,6 +2492,7 @@ static int qemuDomainSetMemoryStatsPeriod(virDomainPtr dom, int period,
virDomainObjPtr vm;
virDomainDefPtr def;
virDomainDefPtr persistentDef;
+ qemuMonitorPtr mon;
int ret = -1, r;
virQEMUDriverConfigPtr cfg = NULL;
@@ -2520,9 +2525,9 @@ static int qemuDomainSetMemoryStatsPeriod(virDomainPtr dom, int period,
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
r = qemuMonitorSetMemoryStatsPeriod(priv->mon, def->memballoon, period);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto endjob;
if (r < 0) {
virReportError(VIR_ERR_OPERATION_INVALID, "%s",
@@ -2562,6 +2567,7 @@ static int qemuDomainInjectNMI(virDomainPtr domain, unsigned int flags)
{
virQEMUDriverPtr driver = domain->conn->privateData;
virDomainObjPtr vm = NULL;
+ qemuMonitorPtr mon;
int ret = -1;
qemuDomainObjPrivatePtr priv;
@@ -2584,9 +2590,9 @@ static int qemuDomainInjectNMI(virDomainPtr domain, unsigned int flags)
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorInjectNMI(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -2608,6 +2614,7 @@ static int qemuDomainSendKey(virDomainPtr domain,
virDomainObjPtr vm = NULL;
int ret = -1;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
virCheckFlags(0, -1);
@@ -2647,9 +2654,9 @@ static int qemuDomainSendKey(virDomainPtr domain,
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorSendKey(priv->mon, holdtime, keycodes, nkeycodes);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -3806,6 +3813,7 @@ qemuDumpToFd(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
bool detach = false;
int ret = -1;
+ qemuMonitorPtr mon;
if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DUMP_GUEST_MEMORY)) {
virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
@@ -3825,7 +3833,7 @@ qemuDumpToFd(virQEMUDriverPtr driver,
priv->job.dump_memory_only = true;
}
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
if (dumpformat) {
@@ -3837,14 +3845,14 @@ qemuDumpToFd(virQEMUDriverPtr driver,
"for this QEMU binary"),
dumpformat);
ret = -1;
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto cleanup;
}
}
ret = qemuMonitorDumpToFd(priv->mon, fd, dumpformat, detach);
- if ((qemuDomainObjExitMonitor(driver, vm) < 0) || ret < 0)
+ if ((qemuDomainObjExitMonitor(driver, vm, mon) < 0) || ret < 0)
goto cleanup;
if (detach)
@@ -3961,6 +3969,7 @@ qemuDomainCoreDumpWithFormat(virDomainPtr dom,
{
virQEMUDriverPtr driver = dom->conn->privateData;
virDomainObjPtr vm;
+ qemuMonitorPtr mon;
qemuDomainObjPrivatePtr priv = NULL;
bool resume = false, paused = false;
int ret = -1;
@@ -4025,9 +4034,9 @@ qemuDomainCoreDumpWithFormat(virDomainPtr dom,
} else if (((resume && paused) || (flags & VIR_DUMP_RESET)) &&
virDomainObjIsActive(vm)) {
if ((ret == 0) && (flags & VIR_DUMP_RESET)) {
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorSystemReset(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
}
@@ -4075,6 +4084,7 @@ qemuDomainScreenshot(virDomainPtr dom,
{
virQEMUDriverPtr driver = dom->conn->privateData;
virDomainObjPtr vm;
+ qemuMonitorPtr mon;
qemuDomainObjPrivatePtr priv;
char *tmp = NULL;
int tmp_fd = -1;
@@ -4122,12 +4132,12 @@ qemuDomainScreenshot(virDomainPtr dom,
qemuSecuritySetSavedStateLabel(driver->securityManager, vm->def, tmp);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorScreendump(priv->mon, tmp) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto endjob;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto endjob;
if (VIR_CLOSE(tmp_fd) < 0) {
@@ -4603,6 +4613,7 @@ processNicRxFilterChangedEvent(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
virDomainDeviceDef dev;
virDomainNetDefPtr def;
+ qemuMonitorPtr mon;
virNetDevRxFilterPtr guestFilter = NULL;
virNetDevRxFilterPtr hostFilter = NULL;
int ret;
@@ -4648,9 +4659,9 @@ processNicRxFilterChangedEvent(virQEMUDriverPtr driver,
VIR_DEBUG("process NIC_RX_FILTER_CHANGED event for network "
"device %s in domain %s", def->info.alias, vm->def->name);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorQueryRxFilter(priv->mon, devAlias, &guestFilter);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret < 0)
goto endjob;
@@ -5552,6 +5563,7 @@ qemuDomainGetIOThreadsLive(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv;
qemuMonitorIOThreadInfoPtr *iothreads = NULL;
virDomainIOThreadInfoPtr *info_ret = NULL;
+ qemuMonitorPtr mon;
int niothreads = 0;
size_t i;
int ret = -1;
@@ -5572,9 +5584,9 @@ qemuDomainGetIOThreadsLive(virQEMUDriverPtr driver,
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
niothreads = qemuMonitorGetIOThreads(priv->mon, &iothreads);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto endjob;
if (niothreads < 0)
goto endjob;
@@ -5872,11 +5884,12 @@ qemuDomainHotplugAddIOThread(virQEMUDriverPtr driver,
int new_niothreads = 0;
qemuMonitorIOThreadInfoPtr *new_iothreads = NULL;
virDomainIOThreadIDDefPtr iothrid;
+ qemuMonitorPtr mon;
if (virAsprintf(&alias, "iothread%u", iothread_id) < 0)
return -1;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorAddObject(priv->mon, "iothread", alias, NULL);
exp_niothreads++;
@@ -5891,7 +5904,7 @@ qemuDomainHotplugAddIOThread(virQEMUDriverPtr driver,
&new_iothreads)) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (new_niothreads != exp_niothreads) {
@@ -5940,7 +5953,7 @@ qemuDomainHotplugAddIOThread(virQEMUDriverPtr driver,
return ret;
exit_monitor:
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto cleanup;
}
@@ -5958,11 +5971,12 @@ qemuDomainHotplugDelIOThread(virQEMUDriverPtr driver,
unsigned int exp_niothreads = vm->def->niothreadids;
int new_niothreads = 0;
qemuMonitorIOThreadInfoPtr *new_iothreads = NULL;
+ qemuMonitorPtr mon;
if (virAsprintf(&alias, "iothread%u", iothread_id) < 0)
return -1;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorDelObject(priv->mon, alias);
exp_niothreads--;
@@ -5973,7 +5987,7 @@ qemuDomainHotplugDelIOThread(virQEMUDriverPtr driver,
&new_iothreads)) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (new_niothreads != exp_niothreads) {
@@ -6004,7 +6018,7 @@ qemuDomainHotplugDelIOThread(virQEMUDriverPtr driver,
return ret;
exit_monitor:
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto cleanup;
}
@@ -10826,6 +10840,7 @@ qemuDomainBlockResize(virDomainPtr dom,
int ret = -1;
char *device = NULL;
virDomainDiskDefPtr disk = NULL;
+ qemuMonitorPtr mon;
virCheckFlags(VIR_DOMAIN_BLOCK_RESIZE_BYTES, -1);
@@ -10879,12 +10894,12 @@ qemuDomainBlockResize(virDomainPtr dom,
if (!(device = qemuAliasFromDisk(disk)))
goto endjob;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorBlockResize(priv->mon, device, size) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto endjob;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto endjob;
ret = 0;
@@ -10945,6 +10960,7 @@ qemuDomainBlocksStatsGather(virQEMUDriverPtr driver,
virDomainDiskDefPtr disk;
virHashTablePtr blockstats = NULL;
qemuBlockStatsPtr stats;
+ qemuMonitorPtr mon;
int nstats;
char *diskAlias = NULL;
int ret = -1;
@@ -10965,9 +10981,9 @@ qemuDomainBlocksStatsGather(virQEMUDriverPtr driver,
goto cleanup;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
nstats = qemuMonitorGetAllBlockStatsInfo(priv->mon, &blockstats, false);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || nstats < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || nstats < 0)
goto cleanup;
if (VIR_ALLOC(*retstats) < 0)
@@ -11499,6 +11515,7 @@ qemuDomainMemoryStatsInternal(virQEMUDriverPtr driver,
{
int ret = -1;
long rss;
+ qemuMonitorPtr mon;
if (!virDomainObjIsActive(vm)) {
virReportError(VIR_ERR_OPERATION_INVALID,
@@ -11508,10 +11525,10 @@ qemuDomainMemoryStatsInternal(virQEMUDriverPtr driver,
if (vm->def->memballoon &&
vm->def->memballoon->model == VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO) {
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorGetMemoryStats(qemuDomainGetMonitor(vm),
vm->def->memballoon, stats, nr_stats);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret < 0 || ret >= nr_stats)
@@ -11634,6 +11651,7 @@ qemuDomainMemoryPeek(virDomainPtr dom,
int fd = -1, ret = -1;
qemuDomainObjPrivatePtr priv;
virQEMUDriverConfigPtr cfg = NULL;
+ qemuMonitorPtr mon;
virCheckFlags(VIR_MEMORY_VIRTUAL | VIR_MEMORY_PHYSICAL, -1);
@@ -11673,19 +11691,19 @@ qemuDomainMemoryPeek(virDomainPtr dom,
qemuSecuritySetSavedStateLabel(driver->securityManager, vm->def, tmp);
priv = vm->privateData;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (flags == VIR_MEMORY_VIRTUAL) {
if (qemuMonitorSaveVirtualMemory(priv->mon, offset, size, tmp) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto endjob;
}
} else {
if (qemuMonitorSavePhysicalMemory(priv->mon, offset, size, tmp) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto endjob;
}
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto endjob;
/* Read the memory file into buffer. */
@@ -11898,6 +11916,7 @@ qemuDomainGetBlockInfo(virDomainPtr dom,
virHashTablePtr stats = NULL;
qemuBlockStats *entry;
char *alias = NULL;
+ qemuMonitorPtr mon;
virCheckFlags(0, -1);
@@ -11945,14 +11964,14 @@ qemuDomainGetBlockInfo(virDomainPtr dom,
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorGetAllBlockStatsInfo(qemuDomainGetMonitor(vm),
&stats, false);
if (rc >= 0)
rc = qemuMonitorBlockStatsUpdateCapacity(qemuDomainGetMonitor(vm),
stats, false);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || rc < 0)
goto endjob;
if (!(entry = virHashLookup(stats, alias))) {
@@ -13239,13 +13258,14 @@ qemuDomainGetJobInfoDumpStats(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
qemuMonitorDumpStats stats = { 0 };
int rc;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, QEMU_ASYNC_JOB_NONE) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, QEMU_ASYNC_JOB_NONE, &mon) < 0)
return -1;
rc = qemuMonitorQueryDump(priv->mon, &stats);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || rc < 0)
return -1;
jobInfo->stats.dump = stats;
@@ -13431,6 +13451,7 @@ static int qemuDomainAbortJob(virDomainPtr dom)
virDomainObjPtr vm;
int ret = -1;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
int reason;
if (!(vm = qemuDomObjFromDomain(dom)))
@@ -13474,9 +13495,9 @@ static int qemuDomainAbortJob(virDomainPtr dom)
VIR_DEBUG("Cancelling job at client request");
qemuDomainObjAbortAsyncJob(vm);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorMigrateCancel(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -13496,6 +13517,7 @@ qemuDomainMigrateSetMaxDowntime(virDomainPtr dom,
virQEMUDriverPtr driver = dom->conn->privateData;
virDomainObjPtr vm;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
int ret = -1;
virCheckFlags(0, -1);
@@ -13518,9 +13540,9 @@ qemuDomainMigrateSetMaxDowntime(virDomainPtr dom,
priv = vm->privateData;
VIR_DEBUG("Setting migration downtime to %llums", downtime);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorSetMigrationDowntime(priv->mon, downtime);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -13540,6 +13562,7 @@ qemuDomainMigrateGetMaxDowntime(virDomainPtr dom,
virQEMUDriverPtr driver = dom->conn->privateData;
virDomainObjPtr vm;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
qemuMonitorMigrationParams migparams = { 0 };
int ret = -1;
@@ -13561,7 +13584,7 @@ qemuDomainMigrateGetMaxDowntime(virDomainPtr dom,
}
priv = vm->privateData;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorGetMigrationParams(priv->mon, &migparams) == 0) {
if (migparams.downtimeLimit_set) {
@@ -13574,7 +13597,7 @@ qemuDomainMigrateGetMaxDowntime(virDomainPtr dom,
}
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -13594,6 +13617,7 @@ qemuDomainMigrateGetCompressionCache(virDomainPtr dom,
virQEMUDriverPtr driver = dom->conn->privateData;
virDomainObjPtr vm;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
int ret = -1;
virCheckFlags(0, -1);
@@ -13622,11 +13646,11 @@ qemuDomainMigrateGetCompressionCache(virDomainPtr dom,
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorGetMigrationCacheSize(priv->mon, cacheSize);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -13645,6 +13669,7 @@ qemuDomainMigrateSetCompressionCache(virDomainPtr dom,
virQEMUDriverPtr driver = dom->conn->privateData;
virDomainObjPtr vm;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
int ret = -1;
virCheckFlags(0, -1);
@@ -13673,12 +13698,12 @@ qemuDomainMigrateSetCompressionCache(virDomainPtr dom,
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
VIR_DEBUG("Setting compression cache to %llu B", cacheSize);
ret = qemuMonitorSetMigrationCacheSize(priv->mon, cacheSize);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -13697,6 +13722,7 @@ qemuDomainMigrateSetMaxSpeed(virDomainPtr dom,
virQEMUDriverPtr driver = dom->conn->privateData;
virDomainObjPtr vm;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
int ret = -1;
virCheckFlags(0, -1);
@@ -13727,9 +13753,9 @@ qemuDomainMigrateSetMaxSpeed(virDomainPtr dom,
}
VIR_DEBUG("Setting migration bandwidth to %luMbs", bandwidth);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorSetMigrationSpeed(priv->mon, bandwidth);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret == 0)
@@ -13782,6 +13808,7 @@ qemuDomainMigrateStartPostCopy(virDomainPtr dom,
virQEMUDriverPtr driver = dom->conn->privateData;
virDomainObjPtr vm;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
int ret = -1;
virCheckFlags(0, -1);
@@ -13818,9 +13845,9 @@ qemuDomainMigrateStartPostCopy(virDomainPtr dom,
}
VIR_DEBUG("Starting post-copy");
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorMigrateStartPostCopy(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -14018,6 +14045,7 @@ qemuDomainSnapshotCreateActiveInternal(virConnectPtr conn,
virObjectEventPtr event = NULL;
bool resume = false;
int ret = -1;
+ qemuMonitorPtr mon;
if (!qemuMigrationIsAllowed(driver, vm, false, 0))
goto cleanup;
@@ -14040,13 +14068,13 @@ qemuDomainSnapshotCreateActiveInternal(virConnectPtr conn,
}
if (qemuDomainObjEnterMonitorAsync(driver, vm,
- QEMU_ASYNC_JOB_SNAPSHOT) < 0) {
+ QEMU_ASYNC_JOB_SNAPSHOT, &mon) < 0) {
resume = false;
goto cleanup;
}
ret = qemuMonitorCreateSnapshot(priv->mon, snap->def->name);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret < 0)
goto cleanup;
@@ -14696,6 +14724,7 @@ qemuDomainSnapshotCreateSingleDiskActive(virQEMUDriverPtr driver,
char *source = NULL;
const char *formatStr = NULL;
int ret = -1, rc;
+ qemuMonitorPtr mon;
if (!(device = qemuAliasFromDisk(dd->disk)))
goto cleanup;
@@ -14728,13 +14757,13 @@ qemuDomainSnapshotCreateSingleDiskActive(virQEMUDriverPtr driver,
* Otherwise the following monitor command only constructs the command.
*/
if (!actions &&
- qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
ret = rc = qemuMonitorDiskSnapshot(priv->mon, actions, device, source,
formatStr, reuse);
if (!actions) {
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
}
@@ -14765,6 +14794,7 @@ qemuDomainSnapshotCreateDiskActive(virQEMUDriverPtr driver,
virQEMUDriverConfigPtr cfg = NULL;
qemuDomainSnapshotDiskDataPtr diskdata = NULL;
virErrorPtr orig_err = NULL;
+ qemuMonitorPtr mon;
if (!virDomainObjIsActive(vm)) {
virReportError(VIR_ERR_OPERATION_INVALID,
@@ -14812,12 +14842,12 @@ qemuDomainSnapshotCreateDiskActive(virQEMUDriverPtr driver,
}
if (actions && do_transaction) {
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
ret = qemuMonitorTransaction(priv->mon, actions);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || ret < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || ret < 0) {
ret = -1;
goto error;
}
@@ -15755,6 +15785,7 @@ qemuDomainRevertToSnapshot(virDomainSnapshotPtr snapshot,
bool was_stopped = false;
qemuDomainSaveCookiePtr cookie;
virCPUDefPtr origCPU = NULL;
+ qemuMonitorPtr mon;
virCheckFlags(VIR_DOMAIN_SNAPSHOT_REVERT_RUNNING |
VIR_DOMAIN_SNAPSHOT_REVERT_PAUSED |
@@ -15942,10 +15973,10 @@ qemuDomainRevertToSnapshot(virDomainSnapshotPtr snapshot,
}
if (qemuDomainObjEnterMonitorAsync(driver, vm,
- QEMU_ASYNC_JOB_START) < 0)
+ QEMU_ASYNC_JOB_START, &mon) < 0)
goto endjob;
rc = qemuMonitorLoadSnapshot(priv->mon, snap->def->name);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto endjob;
if (rc < 0) {
/* XXX resume domain if it was running before the
@@ -16307,6 +16338,7 @@ static int qemuDomainQemuMonitorCommand(virDomainPtr domain, const char *cmd,
virDomainObjPtr vm = NULL;
int ret = -1;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
bool hmp;
virCheckFlags(VIR_DOMAIN_QEMU_MONITOR_COMMAND_HMP, -1);
@@ -16332,9 +16364,9 @@ static int qemuDomainQemuMonitorCommand(virDomainPtr domain, const char *cmd,
hmp = !!(flags & VIR_DOMAIN_QEMU_MONITOR_COMMAND_HMP);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorArbitraryCommand(priv->mon, cmd, result, hmp);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -16608,6 +16640,7 @@ qemuDomainBlockPivot(virQEMUDriverPtr driver,
qemuMonitorBlockJobInfo info;
virStorageSourcePtr oldsrc = NULL;
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
+ qemuMonitorPtr mon;
if (!disk->mirror) {
virReportError(VIR_ERR_OPERATION_INVALID,
@@ -16618,9 +16651,9 @@ qemuDomainBlockPivot(virQEMUDriverPtr driver,
/* Probe the status, if needed. */
if (!disk->mirrorState) {
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorGetBlockJobInfo(priv->mon, disk->info.alias, &info);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (rc < 0)
goto cleanup;
@@ -16687,9 +16720,9 @@ qemuDomainBlockPivot(virQEMUDriverPtr driver,
* that pivot failed, we need to reflect that failure into the
* overall return value. */
disk->mirrorState = VIR_DOMAIN_DISK_MIRROR_STATE_PIVOT;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorDrivePivot(priv->mon, device);
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
ret = -1;
goto cleanup;
}
@@ -16729,6 +16762,7 @@ qemuDomainBlockPullCommon(virQEMUDriverPtr driver,
char *backingPath = NULL;
unsigned long long speed = bandwidth;
int ret = -1;
+ qemuMonitorPtr mon;
if (flags & VIR_DOMAIN_BLOCK_REBASE_RELATIVE && !base) {
virReportError(VIR_ERR_INVALID_ARG, "%s",
@@ -16797,14 +16831,14 @@ qemuDomainBlockPullCommon(virQEMUDriverPtr driver,
speed <<= 20;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (baseSource)
basePath = qemuMonitorDiskNameLookup(priv->mon, device, disk->src,
baseSource);
if (!baseSource || basePath)
ret = qemuMonitorBlockStream(priv->mon, device, basePath, backingPath,
speed);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret < 0)
@@ -16843,6 +16877,7 @@ qemuDomainBlockJobAbort(virDomainPtr dom,
bool async = !!(flags & VIR_DOMAIN_BLOCK_JOB_ABORT_ASYNC);
virDomainObjPtr vm;
int ret = -1;
+ qemuMonitorPtr mon;
virCheckFlags(VIR_DOMAIN_BLOCK_JOB_ABORT_ASYNC |
VIR_DOMAIN_BLOCK_JOB_ABORT_PIVOT, -1);
@@ -16891,9 +16926,9 @@ qemuDomainBlockJobAbort(virDomainPtr dom,
save = true;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorBlockJobCancel(qemuDomainGetMonitor(vm), device);
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
ret = -1;
goto endjob;
}
@@ -16994,6 +17029,7 @@ qemuDomainGetBlockJobInfo(virDomainPtr dom,
virDomainDiskDefPtr disk;
int ret = -1;
qemuMonitorBlockJobInfo rawInfo;
+ qemuMonitorPtr mon;
virCheckFlags(VIR_DOMAIN_BLOCK_JOB_INFO_BANDWIDTH_BYTES, -1);
@@ -17022,10 +17058,10 @@ qemuDomainGetBlockJobInfo(virDomainPtr dom,
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorGetBlockJobInfo(qemuDomainGetMonitor(vm),
disk->info.alias, &rawInfo);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret <= 0)
goto endjob;
@@ -17071,6 +17107,7 @@ qemuDomainBlockJobSetSpeed(virDomainPtr dom,
virDomainObjPtr vm;
const char *device;
unsigned long long speed = bandwidth;
+ qemuMonitorPtr mon;
virCheckFlags(VIR_DOMAIN_BLOCK_JOB_SPEED_BANDWIDTH_BYTES, -1);
@@ -17109,11 +17146,11 @@ qemuDomainBlockJobSetSpeed(virDomainPtr dom,
if (!(device = qemuAliasFromDisk(disk)))
goto endjob;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorBlockJobSetSpeed(qemuDomainGetMonitor(vm),
device,
speed);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -17206,6 +17243,7 @@ qemuDomainBlockCopyCommon(virDomainObjPtr vm,
const char *format = NULL;
virErrorPtr monitor_error = NULL;
bool reuse = !!(flags & VIR_DOMAIN_BLOCK_COPY_REUSE_EXT);
+ qemuMonitorPtr mon;
/* Preliminaries: find the disk we are editing, sanity checks */
virCheckFlags(VIR_DOMAIN_BLOCK_COPY_SHALLOW |
@@ -17325,13 +17363,13 @@ qemuDomainBlockCopyCommon(virDomainObjPtr vm,
}
/* Actually start the mirroring */
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
/* qemuMonitorDriveMirror needs to honor the REUSE_EXT flag as specified
* by the user regardless of how @reuse was modified */
ret = qemuMonitorDriveMirror(priv->mon, device, mirror->path, format,
bandwidth, granularity, buf_size, flags);
virDomainAuditDisk(vm, NULL, mirror, "mirror", ret >= 0);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret < 0) {
monitor_error = virSaveLastError();
@@ -17565,6 +17603,7 @@ qemuDomainBlockCommit(virDomainPtr dom,
char *backingPath = NULL;
virStorageSourcePtr mirror = NULL;
unsigned long long speed = bandwidth;
+ qemuMonitorPtr mon;
/* XXX Add support for COMMIT_DELETE */
virCheckFlags(VIR_DOMAIN_BLOCK_COMMIT_SHALLOW |
@@ -17728,7 +17767,7 @@ qemuDomainBlockCommit(virDomainPtr dom,
disk->mirror = mirror;
disk->mirrorJob = VIR_DOMAIN_BLOCK_JOB_TYPE_ACTIVE_COMMIT;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
basePath = qemuMonitorDiskNameLookup(priv->mon, device, disk->src,
baseSource);
topPath = qemuMonitorDiskNameLookup(priv->mon, device, disk->src,
@@ -17737,7 +17776,7 @@ qemuDomainBlockCommit(virDomainPtr dom,
ret = qemuMonitorBlockCommit(priv->mon, device,
topPath, basePath, backingPath,
speed);
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
ret = -1;
goto endjob;
}
@@ -17790,6 +17829,7 @@ qemuDomainOpenGraphics(virDomainPtr dom,
virDomainObjPtr vm = NULL;
int ret = -1;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
const char *protocol;
virCheckFlags(VIR_DOMAIN_OPEN_GRAPHICS_SKIPAUTH, -1);
@@ -17833,10 +17873,10 @@ qemuDomainOpenGraphics(virDomainPtr dom,
if (qemuSecuritySetImageFDLabel(driver->securityManager, vm->def, fd) < 0)
goto endjob;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorOpenGraphics(priv->mon, protocol, fd, "graphicsfd",
(flags & VIR_DOMAIN_OPEN_GRAPHICS_SKIPAUTH) != 0);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -17856,6 +17896,7 @@ qemuDomainOpenGraphicsFD(virDomainPtr dom,
virDomainObjPtr vm = NULL;
int ret = -1;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
const char *protocol;
int pair[2] = {-1, -1};
@@ -17905,10 +17946,10 @@ qemuDomainOpenGraphicsFD(virDomainPtr dom,
if (qemuDomainObjBeginJob(driver, vm, QEMU_JOB_MODIFY) < 0)
goto cleanup;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorOpenGraphics(priv->mon, protocol, pair[1], "graphicsfd",
(flags & VIR_DOMAIN_OPEN_GRAPHICS_SKIPAUTH));
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
qemuDomainObjEndJob(driver, vm);
if (ret < 0)
@@ -18023,6 +18064,7 @@ qemuDomainSetBlockIoTune(virDomainPtr dom,
virTypedParameterPtr eventParams = NULL;
int eventNparams = 0;
int eventMaxparams = 0;
+ qemuMonitorPtr mon;
virCheckFlags(VIR_DOMAIN_AFFECT_LIVE |
VIR_DOMAIN_AFFECT_CONFIG, -1);
@@ -18287,12 +18329,12 @@ qemuDomainSetBlockIoTune(virDomainPtr dom,
/* NB: Let's let QEMU decide how to handle issues with _length
* via the JSON error code from the block_set_io_throttle call */
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorSetBlockIoThrottle(priv->mon, device,
&info, supportMaxOptions,
set_fields & QEMU_BLOCK_IOTUNE_SET_GROUP_NAME,
supportMaxLengthOptions);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret < 0)
goto endjob;
@@ -18360,6 +18402,7 @@ qemuDomainGetBlockIoTune(virDomainPtr dom,
virDomainDefPtr def = NULL;
virDomainDefPtr persistentDef = NULL;
virDomainBlockIoTuneInfo reply = {0};
+ qemuMonitorPtr mon;
char *device = NULL;
int ret = -1;
int maxparams;
@@ -18423,9 +18466,9 @@ qemuDomainGetBlockIoTune(virDomainPtr dom,
if (!(device = qemuAliasFromDisk(disk)))
goto endjob;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorGetBlockIoThrottle(priv->mon, device, &reply);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto endjob;
if (ret < 0)
goto endjob;
@@ -18514,6 +18557,7 @@ qemuDomainGetDiskErrors(virDomainPtr dom,
virDomainObjPtr vm = NULL;
qemuDomainObjPrivatePtr priv;
virHashTablePtr table = NULL;
+ qemuMonitorPtr mon;
int ret = -1;
size_t i;
int n = 0;
@@ -18542,9 +18586,9 @@ qemuDomainGetDiskErrors(virDomainPtr dom,
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
table = qemuMonitorGetBlockInfo(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto endjob;
if (!table)
goto endjob;
@@ -18799,6 +18843,7 @@ qemuDomainPMWakeup(virDomainPtr dom,
virDomainObjPtr vm;
int ret = -1;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
virCheckFlags(0, -1);
@@ -18826,9 +18871,9 @@ qemuDomainPMWakeup(virDomainPtr dom,
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorSystemWakeup(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
endjob:
@@ -19206,6 +19251,7 @@ qemuDomainSetTime(virDomainPtr dom,
qemuDomainObjPrivatePtr priv;
virDomainObjPtr vm;
qemuAgentPtr agent;
+ qemuMonitorPtr mon;
bool rtcSync = flags & VIR_DOMAIN_TIME_SYNC;
int ret = -1;
int rv;
@@ -19259,9 +19305,9 @@ qemuDomainSetTime(virDomainPtr dom,
/* Don't try to call rtc-reset-reinjection if it's not available */
if (virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_RTC_RESET_REINJECTION)) {
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rv = qemuMonitorRTCResetReinjection(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto endjob;
if (rv < 0)
@@ -20062,6 +20108,7 @@ qemuDomainGetStatsBlock(virQEMUDriverPtr driver,
virHashTablePtr stats = NULL;
virHashTablePtr nodestats = NULL;
virJSONValuePtr nodedata = NULL;
+ qemuMonitorPtr mon;
qemuDomainObjPrivatePtr priv = dom->privateData;
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
bool fetchnodedata = virQEMUCapsGet(priv->qemuCaps,
@@ -20071,7 +20118,7 @@ qemuDomainGetStatsBlock(virQEMUDriverPtr driver,
bool visitBacking = !!(privflags & QEMU_DOMAIN_STATS_BACKING);
if (HAVE_JOB(privflags) && virDomainObjIsActive(dom)) {
- qemuDomainObjEnterMonitor(driver, dom);
+ mon = qemuDomainObjEnterMonitor(driver, dom);
rc = qemuMonitorGetAllBlockStatsInfo(priv->mon, &stats,
visitBacking);
if (rc >= 0)
@@ -20081,7 +20128,7 @@ qemuDomainGetStatsBlock(virQEMUDriverPtr driver,
if (fetchnodedata)
nodedata = qemuMonitorQueryNamedBlockNodes(priv->mon);
- if (qemuDomainObjExitMonitor(driver, dom) < 0)
+ if (qemuDomainObjExitMonitor(driver, dom, mon) < 0)
goto cleanup;
/* failure to retrieve stats is fine at this point */
@@ -21096,6 +21143,7 @@ qemuDomainSetBlockThreshold(virDomainPtr dom,
qemuDomainObjPrivatePtr priv;
virDomainObjPtr vm = NULL;
virStorageSourcePtr src;
+ qemuMonitorPtr mon;
char *nodename = NULL;
int rc;
int ret = -1;
@@ -21142,9 +21190,9 @@ qemuDomainSetBlockThreshold(virDomainPtr dom,
if (VIR_STRDUP(nodename, src->nodestorage) < 0)
goto endjob;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorSetBlockThreshold(priv->mon, nodename, threshold);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || rc < 0)
goto endjob;
ret = 0;
diff --git a/src/qemu/qemu_hotplug.c b/src/qemu/qemu_hotplug.c
old mode 100644
new mode 100755
index 53bfe47..6f436e0
--- a/src/qemu/qemu_hotplug.c
+++ b/src/qemu/qemu_hotplug.c
@@ -203,6 +203,7 @@ qemuHotplugWaitForTrayEject(virQEMUDriverPtr driver,
{
unsigned long long now;
int rc;
+ qemuMonitorPtr mon;
if (virTimeMillisNow(&now) < 0)
return -1;
@@ -223,9 +224,9 @@ qemuHotplugWaitForTrayEject(virQEMUDriverPtr driver,
}
/* re-issue ejection command to pop out the media */
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorEjectMedia(qemuDomainGetMonitor(vm), driveAlias, false);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || rc < 0)
return -1;
return 0;
@@ -260,6 +261,7 @@ qemuDomainChangeEjectableMedia(virQEMUDriverPtr driver,
qemuDomainDiskPrivatePtr diskPriv = QEMU_DOMAIN_DISK_PRIVATE(disk);
qemuDomainStorageSourcePrivatePtr srcPriv = QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(disk->src);
qemuDomainSecretInfoPtr secinfo = NULL;
+ qemuMonitorPtr mon;
const char *format = NULL;
char *sourcestr = NULL;
@@ -286,9 +288,9 @@ qemuDomainChangeEjectableMedia(virQEMUDriverPtr driver,
if (!(driveAlias = qemuAliasFromDisk(disk)))
goto error;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorEjectMedia(priv->mon, driveAlias, force);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
/* If the tray is present and tray change event is supported wait for it to open. */
@@ -315,12 +317,12 @@ qemuDomainChangeEjectableMedia(virQEMUDriverPtr driver,
format = virStorageFileFormatTypeToString(disk->src->format);
}
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorChangeMedia(priv->mon,
driveAlias,
sourcestr,
format);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
}
@@ -377,6 +379,7 @@ qemuDomainAttachDiskGeneric(virConnectPtr conn,
qemuDomainStorageSourcePrivatePtr srcPriv;
qemuDomainSecretInfoPtr secinfo = NULL;
qemuDomainSecretInfoPtr encinfo = NULL;
+ qemuMonitorPtr mon;
if (qemuHotplugPrepareDiskAccess(driver, vm, disk, NULL, false) < 0)
goto cleanup;
@@ -418,7 +421,7 @@ qemuDomainAttachDiskGeneric(virConnectPtr conn,
if (VIR_REALLOC_N(vm->def->disks, vm->def->ndisks+1) < 0)
goto error;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (secobjProps) {
rv = qemuMonitorAddObject(priv->mon, "secret", secinfo->s.aes.alias,
@@ -445,7 +448,7 @@ qemuDomainAttachDiskGeneric(virConnectPtr conn,
if (qemuMonitorAddDevice(priv->mon, devstr) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
ret = -2;
goto error;
}
@@ -475,7 +478,7 @@ qemuDomainAttachDiskGeneric(virConnectPtr conn,
ignore_value(qemuMonitorDelObject(priv->mon, secinfo->s.aes.alias));
if (encobjAdded)
ignore_value(qemuMonitorDelObject(priv->mon, encinfo->s.aes.alias));
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -2;
virErrorRestore(&orig_err);
@@ -523,6 +526,7 @@ int qemuDomainAttachControllerDevice(virQEMUDriverPtr driver,
virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_CONTROLLER,
{ .controller = controller } };
bool releaseaddr = false;
+ qemuMonitorPtr mon;
if (controller->type != VIR_DOMAIN_CONTROLLER_TYPE_SCSI) {
virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
@@ -561,9 +565,9 @@ int qemuDomainAttachControllerDevice(virQEMUDriverPtr driver,
if (VIR_REALLOC_N(vm->def->controllers, vm->def->ncontrollers+1) < 0)
goto cleanup;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorAddDevice(priv->mon, devstr);
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
releaseaddr = false;
ret = -1;
goto cleanup;
@@ -846,6 +850,7 @@ qemuDomainAttachNetDevice(virQEMUDriverPtr driver,
bool charDevPlugged = false;
bool netdevPlugged = false;
bool hostPlugged = false;
+ qemuMonitorPtr mon;
/* preallocate new slot for device */
if (VIR_REALLOC_N(vm->def->nets, vm->def->nnets + 1) < 0)
@@ -1081,11 +1086,11 @@ qemuDomainAttachNetDevice(virQEMUDriverPtr driver,
goto cleanup;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (actualType == VIR_DOMAIN_NET_TYPE_VHOSTUSER) {
if (qemuMonitorAttachCharDev(priv->mon, charDevAlias, net->data.vhostuser) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
virDomainAuditNet(vm, NULL, net, "attach", false);
goto cleanup;
}
@@ -1096,7 +1101,7 @@ qemuDomainAttachNetDevice(virQEMUDriverPtr driver,
if (qemuMonitorAddNetdev(priv->mon, netstr,
tapfd, tapfdName, tapfdSize,
vhostfd, vhostfdName, vhostfdSize) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
virDomainAuditNet(vm, NULL, net, "attach", false);
goto try_remove;
}
@@ -1105,14 +1110,14 @@ qemuDomainAttachNetDevice(virQEMUDriverPtr driver,
if (qemuMonitorAddHostNetwork(priv->mon, netstr,
tapfd, tapfdName, tapfdSize,
vhostfd, vhostfdName, vhostfdSize) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
virDomainAuditNet(vm, NULL, net, "attach", false);
goto try_remove;
}
hostPlugged = true;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
for (i = 0; i < tapfdSize; i++)
@@ -1124,13 +1129,13 @@ qemuDomainAttachNetDevice(virQEMUDriverPtr driver,
queueSize, priv->qemuCaps)))
goto try_remove;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorAddDevice(priv->mon, nicstr) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
virDomainAuditNet(vm, NULL, net, "attach", false);
goto try_remove;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
/* set link state */
@@ -1139,11 +1144,11 @@ qemuDomainAttachNetDevice(virQEMUDriverPtr driver,
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
_("device alias not found: cannot set link state to down"));
} else {
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_NETDEV)) {
if (qemuMonitorSetLink(priv->mon, net->info.alias, VIR_DOMAIN_NET_INTERFACE_LINK_STATE_DOWN) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
virDomainAuditNet(vm, NULL, net, "attach", false);
goto try_remove;
}
@@ -1152,7 +1157,7 @@ qemuDomainAttachNetDevice(virQEMUDriverPtr driver,
_("setting of link state not supported: Link is up"));
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
}
/* link set to down */
@@ -1220,7 +1225,7 @@ qemuDomainAttachNetDevice(virQEMUDriverPtr driver,
if (virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_NETDEV)) {
char *netdev_name;
if (virAsprintf(&netdev_name, "host%s", net->info.alias) >= 0) {
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (charDevPlugged &&
qemuMonitorDetachCharDev(priv->mon, charDevAlias) < 0)
VIR_WARN("Failed to remove associated chardev %s", charDevAlias);
@@ -1228,7 +1233,7 @@ qemuDomainAttachNetDevice(virQEMUDriverPtr driver,
qemuMonitorRemoveNetdev(priv->mon, netdev_name) < 0)
VIR_WARN("Failed to remove network backend for netdev %s",
netdev_name);
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
VIR_FREE(netdev_name);
}
} else {
@@ -1237,12 +1242,12 @@ qemuDomainAttachNetDevice(virQEMUDriverPtr driver,
} else {
char *hostnet_name;
if (virAsprintf(&hostnet_name, "host%s", net->info.alias) >= 0) {
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (hostPlugged &&
qemuMonitorRemoveHostNetwork(priv->mon, vlan, hostnet_name) < 0)
VIR_WARN("Failed to remove network backend for vlan %d, net %s",
vlan, hostnet_name);
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
VIR_FREE(hostnet_name);
}
}
@@ -1271,6 +1276,7 @@ qemuDomainAttachHostPCIDevice(virQEMUDriverPtr driver,
int backend;
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
unsigned int flags = 0;
+ qemuMonitorPtr mon;
if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs + 1) < 0)
goto cleanup;
@@ -1363,10 +1369,10 @@ qemuDomainAttachHostPCIDevice(virQEMUDriverPtr driver,
configfd_name, priv->qemuCaps)))
goto error;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorAddDeviceWithFd(priv->mon, devstr,
configfd, configfd_name);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto error;
virDomainAuditHostdev(vm, hostdev, "attach", ret == 0);
@@ -1416,13 +1422,14 @@ qemuDomainDelTLSObjects(virQEMUDriverPtr driver,
{
qemuDomainObjPrivatePtr priv = vm->privateData;
virErrorPtr orig_err;
+ qemuMonitorPtr mon;
if (!tlsAlias && !secAlias)
return;
virErrorPreserveLast(&orig_err);
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
if (tlsAlias)
@@ -1431,7 +1438,7 @@ qemuDomainDelTLSObjects(virQEMUDriverPtr driver,
if (secAlias)
ignore_value(qemuMonitorDelObject(priv->mon, secAlias));
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
cleanup:
virErrorRestore(&orig_err);
@@ -1450,11 +1457,12 @@ qemuDomainAddTLSObjects(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
int rc;
virErrorPtr orig_err;
+ qemuMonitorPtr mon;
if (!tlsAlias && !secAlias)
return 0;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
if (secAlias) {
@@ -1473,11 +1481,11 @@ qemuDomainAddTLSObjects(virQEMUDriverPtr driver,
goto error;
}
- return qemuDomainObjExitMonitor(driver, vm);
+ return qemuDomainObjExitMonitor(driver, vm, mon);
error:
virErrorPreserveLast(&orig_err);
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
virErrorRestore(&orig_err);
qemuDomainDelTLSObjects(driver, vm, asyncJob, secAlias, tlsAlias);
@@ -1588,6 +1596,7 @@ qemuDomainDelChardevTLSObjects(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
char *tlsAlias = NULL;
char *secAlias = NULL;
+ qemuMonitorPtr mon;
if (dev->type != VIR_DOMAIN_CHR_TYPE_TCP ||
dev->data.tcp.haveTLS != VIR_TRISTATE_BOOL_YES) {
@@ -1606,13 +1615,13 @@ qemuDomainDelChardevTLSObjects(virQEMUDriverPtr driver,
!(secAlias = qemuDomainGetSecretAESAlias(inAlias, false)))
goto cleanup;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ignore_value(qemuMonitorDelObject(priv->mon, tlsAlias));
if (secAlias)
ignore_value(qemuMonitorDelObject(priv->mon, secAlias));
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
ret = 0;
@@ -1640,6 +1649,7 @@ int qemuDomainAttachRedirdevDevice(virConnectPtr conn,
char *secAlias = NULL;
bool need_release = false;
virErrorPtr orig_err;
+ qemuMonitorPtr mon;
if (qemuAssignDeviceRedirdevAlias(def, redirdev, -1) < 0)
goto cleanup;
@@ -1662,7 +1672,7 @@ int qemuDomainAttachRedirdevDevice(virConnectPtr conn,
&tlsAlias, &secAlias) < 0)
goto audit;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorAttachCharDev(priv->mon,
charAlias,
@@ -1673,7 +1683,7 @@ int qemuDomainAttachRedirdevDevice(virConnectPtr conn,
if (qemuMonitorAddDevice(priv->mon, devstr) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto audit;
def->redirdevs[def->nredirdevs++] = redirdev;
@@ -1694,7 +1704,7 @@ int qemuDomainAttachRedirdevDevice(virConnectPtr conn,
/* detach associated chardev on error */
if (chardevAdded)
ignore_value(qemuMonitorDetachCharDev(priv->mon, charAlias));
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
virErrorRestore(&orig_err);
qemuDomainDelTLSObjects(driver, vm, QEMU_ASYNC_JOB_NONE,
secAlias, tlsAlias);
@@ -1882,6 +1892,7 @@ int qemuDomainAttachChrDevice(virConnectPtr conn,
char *tlsAlias = NULL;
char *secAlias = NULL;
bool need_release = false;
+ qemuMonitorPtr mon;
if (chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
qemuDomainPrepareChannel(chr, priv->channelTargetDir) < 0)
@@ -1921,7 +1932,7 @@ int qemuDomainAttachChrDevice(virConnectPtr conn,
&tlsAlias, &secAlias) < 0)
goto audit;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorAttachCharDev(priv->mon, charAlias, chr->source) < 0)
goto exit_monitor;
@@ -1930,7 +1941,7 @@ int qemuDomainAttachChrDevice(virConnectPtr conn,
if (qemuMonitorAddDevice(priv->mon, devstr) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto audit;
qemuDomainChrInsertPreAlloced(vmdef, chr);
@@ -1961,7 +1972,7 @@ int qemuDomainAttachChrDevice(virConnectPtr conn,
/* detach associated chardev on error */
if (chardevAttached)
qemuMonitorDetachCharDev(priv->mon, charAlias);
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
virErrorRestore(&orig_err);
qemuDomainDelTLSObjects(driver, vm, QEMU_ASYNC_JOB_NONE,
@@ -1993,6 +2004,7 @@ qemuDomainAttachRNGDevice(virConnectPtr conn,
const char *type;
int ret = -1;
int rv;
+ qemuMonitorPtr mon;
if (qemuAssignDeviceRNGAlias(vm->def, rng) < 0)
goto cleanup;
@@ -2033,7 +2045,7 @@ qemuDomainAttachRNGDevice(virConnectPtr conn,
goto audit;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (rng->backend == VIR_DOMAIN_RNG_BACKEND_EGD &&
qemuMonitorAttachCharDev(priv->mon, charAlias,
@@ -2050,7 +2062,7 @@ qemuDomainAttachRNGDevice(virConnectPtr conn,
if (qemuMonitorAddDevice(priv->mon, devstr) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
releaseaddr = false;
goto cleanup;
}
@@ -2085,7 +2097,7 @@ qemuDomainAttachRNGDevice(virConnectPtr conn,
ignore_value(qemuMonitorDelObject(priv->mon, objAlias));
if (rng->backend == VIR_DOMAIN_RNG_BACKEND_EGD && chardevAdded)
ignore_value(qemuMonitorDetachCharDev(priv->mon, charAlias));
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
releaseaddr = false;
virErrorRestore(&orig_err);
@@ -2127,6 +2139,7 @@ qemuDomainAttachMemory(virQEMUDriverPtr driver,
int id;
int ret = -1;
int rv;
+ qemuMonitorPtr mon;
qemuDomainMemoryDeviceAlignSize(vm->def, mem);
@@ -2172,7 +2185,7 @@ qemuDomainAttachMemory(virQEMUDriverPtr driver,
if (qemuDomainAdjustMaxMemLock(vm) < 0)
goto removedef;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rv = qemuMonitorAddObject(priv->mon, backendType, objalias, props);
props = NULL; /* qemuMonitorAddObject consumes */
if (rv < 0)
@@ -2182,7 +2195,7 @@ qemuDomainAttachMemory(virQEMUDriverPtr driver,
if (qemuMonitorAddDevice(priv->mon, devstr) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
/* we shouldn't touch mem now, as the def might be freed */
mem = NULL;
goto audit;
@@ -2227,7 +2240,7 @@ qemuDomainAttachMemory(virQEMUDriverPtr driver,
virErrorPreserveLast(&orig_err);
if (objAdded)
ignore_value(qemuMonitorDelObject(priv->mon, objalias));
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
mem = NULL;
virErrorRestore(&orig_err);
if (!mem)
@@ -2261,6 +2274,7 @@ qemuDomainAttachHostUSBDevice(virQEMUDriverPtr driver,
bool teardownlabel = false;
bool teardowndevice = false;
int ret = -1;
+ qemuMonitorPtr mon;
if (priv->usbaddrs) {
if (virDomainUSBAddressEnsure(priv->usbaddrs, hostdev->info) < 0)
@@ -2293,9 +2307,9 @@ qemuDomainAttachHostUSBDevice(virQEMUDriverPtr driver,
if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs+1) < 0)
goto cleanup;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorAddDevice(priv->mon, devstr);
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
ret = -1;
goto cleanup;
}
@@ -2348,6 +2362,7 @@ qemuDomainAttachHostSCSIDevice(virConnectPtr conn,
virJSONValuePtr secobjProps = NULL;
virDomainHostdevSubsysSCSIPtr scsisrc = &hostdev->source.subsys.u.scsi;
qemuDomainSecretInfoPtr secinfo = NULL;
+ qemuMonitorPtr mon;
if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DEVICE_SCSI_GENERIC)) {
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
@@ -2411,7 +2426,7 @@ qemuDomainAttachHostSCSIDevice(virConnectPtr conn,
if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs + 1) < 0)
goto cleanup;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (secobjProps) {
rv = qemuMonitorAddObject(priv->mon, "secret", secinfo->s.aes.alias,
@@ -2429,7 +2444,7 @@ qemuDomainAttachHostSCSIDevice(virConnectPtr conn,
if (qemuMonitorAddDevice(priv->mon, devstr) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
virDomainAuditHostdev(vm, hostdev, "attach", true);
@@ -2466,7 +2481,7 @@ qemuDomainAttachHostSCSIDevice(virConnectPtr conn,
}
if (secobjAdded)
ignore_value(qemuMonitorDelObject(priv->mon, secinfo->s.aes.alias));
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
virErrorRestore(&orig_err);
virDomainAuditHostdev(vm, hostdev, "attach", false);
@@ -2491,6 +2506,7 @@ qemuDomainAttachSCSIVHostDevice(virQEMUDriverPtr driver,
bool teardownlabel = false;
bool teardowndevice = false;
bool releaseaddr = false;
+ qemuMonitorPtr mon;
if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DEVICE_SCSI_GENERIC)) {
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
@@ -2550,11 +2566,11 @@ qemuDomainAttachSCSIVHostDevice(virQEMUDriverPtr driver,
if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs + 1) < 0)
goto cleanup;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorAddDeviceWithFd(priv->mon, devstr, vhostfd, vhostfdName);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || ret < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || ret < 0)
goto audit;
vm->def->hostdevs[vm->def->nhostdevs++] = hostdev;
@@ -2652,6 +2668,7 @@ qemuDomainAttachShmemDevice(virQEMUDriverPtr driver,
virJSONValuePtr props = NULL;
qemuDomainObjPrivatePtr priv = vm->privateData;
virDomainDeviceDef dev = { VIR_DOMAIN_DEVICE_SHMEM, { .shmem = shmem } };
+ qemuMonitorPtr mon;
switch ((virDomainShmemModel)shmem->model) {
case VIR_DOMAIN_SHMEM_MODEL_IVSHMEM_PLAIN:
@@ -2695,7 +2712,7 @@ qemuDomainAttachShmemDevice(virQEMUDriverPtr driver,
goto cleanup;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (shmem->server.enabled) {
if (qemuMonitorAttachCharDev(priv->mon, charAlias,
@@ -2715,7 +2732,7 @@ qemuDomainAttachShmemDevice(virQEMUDriverPtr driver,
if (qemuMonitorAddDevice(priv->mon, shmstr) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
release_address = false;
goto cleanup;
}
@@ -2750,7 +2767,7 @@ qemuDomainAttachShmemDevice(virQEMUDriverPtr driver,
ignore_value(qemuMonitorDelObject(priv->mon, memAlias));
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
release_address = false;
virErrorRestore(&orig_err);
@@ -2772,6 +2789,7 @@ qemuDomainAttachWatchdog(virQEMUDriverPtr driver,
char *watchdogstr = NULL;
bool releaseAddress = false;
int rv;
+ qemuMonitorPtr mon;
if (vm->def->watchdog) {
virReportError(VIR_ERR_OPERATION_INVALID, "%s",
@@ -2804,14 +2822,14 @@ qemuDomainAttachWatchdog(virQEMUDriverPtr driver,
actionStr = virDomainWatchdogActionTypeToString(actualAction);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rv = qemuMonitorSetWatchdogAction(priv->mon, actionStr);
if (rv >= 0)
rv = qemuMonitorAddDevice(priv->mon, watchdogstr);
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
releaseAddress = false;
goto cleanup;
}
@@ -2846,6 +2864,7 @@ qemuDomainAttachInputDevice(virQEMUDriverPtr driver,
bool teardowndevice = false;
bool teardownlabel = false;
bool teardowncgroup = false;
+ qemuMonitorPtr mon;
if (input->bus != VIR_DOMAIN_INPUT_BUS_USB &&
input->bus != VIR_DOMAIN_INPUT_BUS_VIRTIO) {
@@ -2887,11 +2906,11 @@ qemuDomainAttachInputDevice(virQEMUDriverPtr driver,
if (VIR_REALLOC_N(vm->def->inputs, vm->def->ninputs + 1) < 0)
goto cleanup;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorAddDevice(priv->mon, devstr) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
releaseaddr = false;
goto cleanup;
}
@@ -2921,7 +2940,7 @@ qemuDomainAttachInputDevice(virQEMUDriverPtr driver,
return ret;
exit_monitor:
- if (qemuDomainObjExitMonitor(driver, vm) < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0) {
releaseaddr = false;
goto cleanup;
}
@@ -3026,6 +3045,7 @@ int qemuDomainChangeNetLinkState(virQEMUDriverPtr driver,
{
int ret = -1;
qemuDomainObjPrivatePtr priv = vm->privateData;
+ qemuMonitorPtr mon;
if (!dev->info.alias) {
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
@@ -3035,7 +3055,7 @@ int qemuDomainChangeNetLinkState(virQEMUDriverPtr driver,
VIR_DEBUG("dev: %s, state: %d", dev->info.alias, linkstate);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorSetLink(priv->mon, dev->info.alias, linkstate);
if (ret < 0)
@@ -3045,7 +3065,7 @@ int qemuDomainChangeNetLinkState(virQEMUDriverPtr driver,
dev->linkstate = linkstate;
cleanup:
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
return -1;
return ret;
@@ -3733,6 +3753,7 @@ qemuDomainRemoveDiskDevice(virQEMUDriverPtr driver,
char *drivestr;
char *objAlias = NULL;
char *encAlias = NULL;
+ qemuMonitorPtr mon;
VIR_DEBUG("Removing disk %s from domain %p %s",
disk->info.alias, vm, vm->def->name);
@@ -3770,7 +3791,7 @@ qemuDomainRemoveDiskDevice(virQEMUDriverPtr driver,
}
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
qemuMonitorDriveDel(priv->mon, drivestr);
VIR_FREE(drivestr);
@@ -3788,7 +3809,7 @@ qemuDomainRemoveDiskDevice(virQEMUDriverPtr driver,
if (disk->src->haveTLS)
ignore_value(qemuMonitorDelObject(priv->mon, disk->src->tlsAlias));
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
return -1;
virDomainAuditDisk(vm, disk->src, NULL, "detach", true);
@@ -3867,6 +3888,7 @@ qemuDomainRemoveMemoryDevice(virQEMUDriverPtr driver,
char *backendAlias = NULL;
int rc;
int idx;
+ qemuMonitorPtr mon;
VIR_DEBUG("Removing memory device %s from domain %p %s",
mem->info.alias, vm, vm->def->name);
@@ -3874,9 +3896,9 @@ qemuDomainRemoveMemoryDevice(virQEMUDriverPtr driver,
if (virAsprintf(&backendAlias, "mem%s", mem->info.alias) < 0)
return -1;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorDelObject(priv->mon, backendAlias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
rc = -1;
VIR_FREE(backendAlias);
@@ -3963,6 +3985,7 @@ qemuDomainRemoveHostDevice(virQEMUDriverPtr driver,
char *drivealias = NULL;
char *objAlias = NULL;
bool is_vfio = false;
+ qemuMonitorPtr mon;
VIR_DEBUG("Removing host device %s from domain %p %s",
hostdev->info->alias, vm, vm->def->name);
@@ -3989,14 +4012,14 @@ qemuDomainRemoveHostDevice(virQEMUDriverPtr driver,
goto cleanup;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
qemuMonitorDriveDel(priv->mon, drivealias);
/* If it fails, then so be it - it was a best shot */
if (objAlias)
ignore_value(qemuMonitorDelObject(priv->mon, objAlias));
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
}
@@ -4086,6 +4109,7 @@ qemuDomainRemoveNetDevice(virQEMUDriverPtr driver,
size_t i;
int ret = -1;
int actualType = virDomainNetGetActualType(net);
+ qemuMonitorPtr mon;
if (actualType == VIR_DOMAIN_NET_TYPE_HOSTDEV) {
/* this function handles all hostdev and netdev cleanup */
@@ -4102,10 +4126,10 @@ qemuDomainRemoveNetDevice(virQEMUDriverPtr driver,
goto cleanup;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_NETDEV)) {
if (qemuMonitorRemoveNetdev(priv->mon, hostnet_name) < 0) {
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
virDomainAuditNet(vm, net, NULL, "detach", false);
goto cleanup;
@@ -4118,7 +4142,7 @@ qemuDomainRemoveNetDevice(virQEMUDriverPtr driver,
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
_("unable to determine original VLAN"));
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
virDomainAuditNet(vm, net, NULL, "detach", false);
goto cleanup;
@@ -4135,7 +4159,7 @@ qemuDomainRemoveNetDevice(virQEMUDriverPtr driver,
}
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
virDomainAuditNet(vm, net, NULL, "detach", true);
@@ -4192,6 +4216,7 @@ qemuDomainRemoveChrDevice(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
int ret = -1;
int rc;
+ qemuMonitorPtr mon;
VIR_DEBUG("Removing character device %s from domain %p %s",
chr->info.alias, vm, vm->def->name);
@@ -4199,10 +4224,10 @@ qemuDomainRemoveChrDevice(virQEMUDriverPtr driver,
if (!(charAlias = qemuAliasChardevFromDevAlias(chr->info.alias)))
goto cleanup;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorDetachCharDev(priv->mon, charAlias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (rc == 0 &&
@@ -4248,6 +4273,7 @@ qemuDomainRemoveRNGDevice(virQEMUDriverPtr driver,
ssize_t idx;
int ret = -1;
int rc;
+ qemuMonitorPtr mon;
VIR_DEBUG("Removing RNG device %s from domain %p %s",
rng->info.alias, vm, vm->def->name);
@@ -4259,11 +4285,11 @@ qemuDomainRemoveRNGDevice(virQEMUDriverPtr driver,
if (!(charAlias = qemuAliasChardevFromDevAlias(rng->info.alias)))
goto cleanup;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorDelObject(priv->mon, objAlias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (rng->backend == VIR_DOMAIN_RNG_BACKEND_EGD &&
@@ -4311,6 +4337,7 @@ qemuDomainRemoveShmemDevice(virQEMUDriverPtr driver,
char *memAlias = NULL;
qemuDomainObjPrivatePtr priv = vm->privateData;
virObjectEventPtr event = NULL;
+ qemuMonitorPtr mon;
VIR_DEBUG("Removing shmem device %s from domain %p %s",
shmem->info.alias, vm, vm->def->name);
@@ -4323,14 +4350,14 @@ qemuDomainRemoveShmemDevice(virQEMUDriverPtr driver,
return -1;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (shmem->server.enabled)
rc = qemuMonitorDetachCharDev(priv->mon, charAlias);
else
rc = qemuMonitorDelObject(priv->mon, memAlias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
virDomainAuditShmem(vm, shmem, "detach", rc == 0);
@@ -4418,6 +4445,7 @@ qemuDomainRemoveRedirdevDevice(virQEMUDriverPtr driver,
char *charAlias = NULL;
ssize_t idx;
int ret = -1;
+ qemuMonitorPtr mon;
VIR_DEBUG("Removing redirdev device %s from domain %p %s",
dev->info.alias, vm, vm->def->name);
@@ -4425,13 +4453,13 @@ qemuDomainRemoveRedirdevDevice(virQEMUDriverPtr driver,
if (!(charAlias = qemuAliasChardevFromDevAlias(dev->info.alias)))
goto cleanup;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
/* DeviceDel from Detach may remove chardev,
* so we cannot rely on return status to delete TLS chardevs.
*/
ignore_value(qemuMonitorDetachCharDev(priv->mon, charAlias));
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (qemuDomainDelChardevTLSObjects(driver, vm, dev->source, charAlias) < 0)
@@ -4629,6 +4657,7 @@ qemuDomainDetachVirtioDiskDevice(virQEMUDriverPtr driver,
{
int ret = -1;
qemuDomainObjPrivatePtr priv = vm->privateData;
+ qemuMonitorPtr mon;
if (qemuIsMultiFunctionDevice(vm->def, &detach->info)) {
virReportError(VIR_ERR_OPERATION_FAILED,
@@ -4644,14 +4673,14 @@ qemuDomainDetachVirtioDiskDevice(virQEMUDriverPtr driver,
qemuDomainMarkDeviceForRemoval(vm, &detach->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorDelDevice(priv->mon, detach->info.alias) < 0) {
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
virDomainAuditDisk(vm, detach->src, NULL, "detach", false);
goto cleanup;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
@@ -4669,20 +4698,21 @@ qemuDomainDetachDiskDevice(virQEMUDriverPtr driver,
{
int ret = -1;
qemuDomainObjPrivatePtr priv = vm->privateData;
+ qemuMonitorPtr mon;
if (qemuDomainDiskBlockJobIsActive(detach))
goto cleanup;
qemuDomainMarkDeviceForRemoval(vm, &detach->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorDelDevice(priv->mon, detach->info.alias) < 0) {
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
virDomainAuditDisk(vm, detach->src, NULL, "detach", false);
goto cleanup;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
@@ -4812,6 +4842,7 @@ int qemuDomainDetachControllerDevice(virQEMUDriverPtr driver,
int idx, ret = -1;
virDomainControllerDefPtr detach = NULL;
qemuDomainObjPrivatePtr priv = vm->privateData;
+ qemuMonitorPtr mon;
if ((idx = virDomainControllerFind(vm->def,
dev->data.controller->type,
@@ -4861,12 +4892,12 @@ int qemuDomainDetachControllerDevice(virQEMUDriverPtr driver,
qemuDomainMarkDeviceForRemoval(vm, &detach->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorDelDevice(priv->mon, detach->info.alias)) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto cleanup;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
@@ -4885,6 +4916,7 @@ qemuDomainDetachHostPCIDevice(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
virDomainHostdevSubsysPCIPtr pcisrc = &detach->source.subsys.u.pci;
int ret;
+ qemuMonitorPtr mon;
if (qemuIsMultiFunctionDevice(vm->def, detach->info)) {
virReportError(VIR_ERR_OPERATION_FAILED,
@@ -4896,9 +4928,9 @@ qemuDomainDetachHostPCIDevice(virQEMUDriverPtr driver,
qemuDomainMarkDeviceForRemoval(vm, detach->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorDelDevice(priv->mon, detach->info->alias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
return ret;
@@ -4911,6 +4943,7 @@ qemuDomainDetachHostUSBDevice(virQEMUDriverPtr driver,
{
qemuDomainObjPrivatePtr priv = vm->privateData;
int ret;
+ qemuMonitorPtr mon;
if (!detach->info->alias) {
virReportError(VIR_ERR_OPERATION_FAILED,
@@ -4920,9 +4953,9 @@ qemuDomainDetachHostUSBDevice(virQEMUDriverPtr driver,
qemuDomainMarkDeviceForRemoval(vm, detach->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorDelDevice(priv->mon, detach->info->alias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
return ret;
@@ -4935,6 +4968,7 @@ qemuDomainDetachHostSCSIDevice(virQEMUDriverPtr driver,
{
qemuDomainObjPrivatePtr priv = vm->privateData;
int ret = -1;
+ qemuMonitorPtr mon;
if (!detach->info->alias) {
virReportError(VIR_ERR_OPERATION_FAILED,
@@ -4944,10 +4978,10 @@ qemuDomainDetachHostSCSIDevice(virQEMUDriverPtr driver,
qemuDomainMarkDeviceForRemoval(vm, detach->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorDelDevice(priv->mon, detach->info->alias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
return -1;
return ret;
@@ -4960,6 +4994,7 @@ qemuDomainDetachSCSIVHostDevice(virQEMUDriverPtr driver,
{
qemuDomainObjPrivatePtr priv = vm->privateData;
int ret = -1;
+ qemuMonitorPtr mon;
if (!detach->info->alias) {
virReportError(VIR_ERR_OPERATION_FAILED,
@@ -4969,10 +5004,10 @@ qemuDomainDetachSCSIVHostDevice(virQEMUDriverPtr driver,
qemuDomainMarkDeviceForRemoval(vm, detach->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorDelDevice(priv->mon, detach->info->alias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
return -1;
return ret;
@@ -5107,6 +5142,7 @@ qemuDomainDetachShmemDevice(virQEMUDriverPtr driver,
ssize_t idx = -1;
virDomainShmemDefPtr shmem = NULL;
qemuDomainObjPrivatePtr priv = vm->privateData;
+ qemuMonitorPtr mon;
if ((idx = virDomainShmemDefFind(vm->def, dev)) < 0) {
virReportError(VIR_ERR_DEVICE_MISSING,
@@ -5133,11 +5169,11 @@ qemuDomainDetachShmemDevice(virQEMUDriverPtr driver,
}
qemuDomainMarkDeviceForRemoval(vm, &shmem->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorDelDevice(priv->mon, shmem->info.alias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret == 0) {
@@ -5160,6 +5196,7 @@ qemuDomainDetachWatchdog(virQEMUDriverPtr driver,
int ret = -1;
virDomainWatchdogDefPtr watchdog = vm->def->watchdog;
qemuDomainObjPrivatePtr priv = vm->privateData;
+ qemuMonitorPtr mon;
/* While domains can have up to one watchdog, the one supplied by the user
* doesn't necessarily match the one domain has. Refuse to detach in such
@@ -5183,11 +5220,11 @@ qemuDomainDetachWatchdog(virQEMUDriverPtr driver,
}
qemuDomainMarkDeviceForRemoval(vm, &watchdog->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorDelDevice(priv->mon, watchdog->info.alias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret == 0) {
@@ -5211,6 +5248,7 @@ qemuDomainDetachRedirdevDevice(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
virDomainRedirdevDefPtr tmpRedirdevDef;
ssize_t idx;
+ qemuMonitorPtr mon;
if ((idx = virDomainRedirdevDefFind(vm->def, dev)) < 0) {
virReportError(VIR_ERR_OPERATION_INVALID, "%s",
@@ -5228,12 +5266,12 @@ qemuDomainDetachRedirdevDevice(virQEMUDriverPtr driver,
qemuDomainMarkDeviceForRemoval(vm, &tmpRedirdevDef->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorDelDevice(priv->mon, tmpRedirdevDef->info.alias) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto cleanup;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
@@ -5253,6 +5291,7 @@ qemuDomainDetachNetDevice(virQEMUDriverPtr driver,
int detachidx, ret = -1;
virDomainNetDefPtr detach = NULL;
qemuDomainObjPrivatePtr priv = vm->privateData;
+ qemuMonitorPtr mon;
if ((detachidx = virDomainNetFindIdx(vm->def, dev->data.net)) < 0)
goto cleanup;
@@ -5291,14 +5330,14 @@ qemuDomainDetachNetDevice(virQEMUDriverPtr driver,
qemuDomainMarkDeviceForRemoval(vm, &detach->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorDelDevice(priv->mon, detach->info.alias) < 0) {
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
virDomainAuditNet(vm, detach, NULL, "detach", false);
goto cleanup;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
@@ -5325,6 +5364,7 @@ qemuDomainChangeGraphicsPasswords(virQEMUDriverPtr driver,
const char *password;
int ret = -1;
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
+ qemuMonitorPtr mon;
if (!auth->passwd && !defaultPasswd) {
ret = 0;
@@ -5335,7 +5375,7 @@ qemuDomainChangeGraphicsPasswords(virQEMUDriverPtr driver,
if (auth->connected)
connected = virDomainGraphicsAuthConnectedTypeToString(auth->connected);
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
ret = qemuMonitorSetPassword(priv->mon, type, password, connected);
@@ -5376,7 +5416,7 @@ qemuDomainChangeGraphicsPasswords(virQEMUDriverPtr driver,
}
end_job:
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
cleanup:
VIR_FREE(validTo);
@@ -5439,6 +5479,7 @@ int qemuDomainDetachChrDevice(virQEMUDriverPtr driver,
virDomainDefPtr vmdef = vm->def;
virDomainChrDefPtr tmpChr;
char *devstr = NULL;
+ qemuMonitorPtr mon;
if (!(tmpChr = virDomainChrFind(vmdef, chr))) {
virReportError(VIR_ERR_DEVICE_MISSING,
@@ -5458,12 +5499,12 @@ int qemuDomainDetachChrDevice(virQEMUDriverPtr driver,
qemuDomainMarkDeviceForRemoval(vm, &tmpChr->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (devstr && qemuMonitorDelDevice(priv->mon, tmpChr->info.alias) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto cleanup;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1) {
@@ -5488,6 +5529,7 @@ qemuDomainDetachRNGDevice(virQEMUDriverPtr driver,
virDomainRNGDefPtr tmpRNG;
int rc;
int ret = -1;
+ qemuMonitorPtr mon;
if ((idx = virDomainRNGFind(vm->def, rng)) < 0) {
virReportError(VIR_ERR_DEVICE_MISSING,
@@ -5507,9 +5549,9 @@ qemuDomainDetachRNGDevice(virQEMUDriverPtr driver,
qemuDomainMarkDeviceForRemoval(vm, &tmpRNG->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorDelDevice(priv->mon, tmpRNG->info.alias);
- if (qemuDomainObjExitMonitor(driver, vm) || rc < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) || rc < 0)
goto cleanup;
if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
@@ -5531,6 +5573,7 @@ qemuDomainDetachMemoryDevice(virQEMUDriverPtr driver,
int idx;
int rc;
int ret = -1;
+ qemuMonitorPtr mon;
qemuDomainMemoryDeviceAlignSize(vm->def, memdef);
@@ -5552,9 +5595,9 @@ qemuDomainDetachMemoryDevice(virQEMUDriverPtr driver,
qemuDomainMarkDeviceForRemoval(vm, &mem->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorDelDevice(priv->mon, mem->info.alias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || rc < 0)
goto cleanup;
if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
@@ -5645,6 +5688,7 @@ qemuDomainHotplugDelVcpu(virQEMUDriverPtr driver,
unsigned int nvcpus = vcpupriv->vcpus;
int rc;
int ret = -1;
+ qemuMonitorPtr mon;
if (!vcpupriv->alias) {
virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
@@ -5654,11 +5698,11 @@ qemuDomainHotplugDelVcpu(virQEMUDriverPtr driver,
qemuDomainMarkDeviceAliasForRemoval(vm, vcpupriv->alias);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorDelDevice(qemuDomainGetMonitor(vm), vcpupriv->alias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (rc < 0) {
@@ -5705,6 +5749,7 @@ qemuDomainHotplugAddVcpu(virQEMUDriverPtr driver,
int rc;
int oldvcpus = virDomainDefGetVcpus(vm->def);
size_t i;
+ qemuMonitorPtr mon;
if (newhotplug) {
if (virAsprintf(&vcpupriv->alias, "vcpu%u", vcpu) < 0)
@@ -5714,7 +5759,7 @@ qemuDomainHotplugAddVcpu(virQEMUDriverPtr driver,
goto cleanup;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (newhotplug) {
rc = qemuMonitorAddDeviceArgs(qemuDomainGetMonitor(vm), vcpuprops);
@@ -5723,7 +5768,7 @@ qemuDomainHotplugAddVcpu(virQEMUDriverPtr driver,
rc = qemuMonitorSetCPU(qemuDomainGetMonitor(vm), vcpu, true);
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
virDomainAuditVcpu(vm, oldvcpus, oldvcpus + nvcpus, "update", rc == 0);
@@ -6236,6 +6281,7 @@ qemuDomainDetachInputDevice(virDomainObjPtr vm,
virDomainInputDefPtr input;
int ret = -1;
int idx;
+ qemuMonitorPtr mon;
if ((idx = virDomainInputDefFind(vm->def, def)) < 0) {
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
@@ -6261,12 +6307,12 @@ qemuDomainDetachInputDevice(virDomainObjPtr vm,
qemuDomainMarkDeviceForRemoval(vm, &input->info);
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorDelDevice(priv->mon, input->info.alias)) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto cleanup;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if ((ret = qemuDomainWaitForDeviceRemoval(vm)) == 1)
diff --git a/src/qemu/qemu_migration.c b/src/qemu/qemu_migration.c
old mode 100644
new mode 100755
index 5ee9e5c..9acff21
--- a/src/qemu/qemu_migration.c
+++ b/src/qemu/qemu_migration.c
@@ -106,8 +106,9 @@ qemuMigrationCheckTLSCreds(virQEMUDriverPtr driver,
int ret = -1;
qemuDomainObjPrivatePtr priv = vm->privateData;
qemuMonitorMigrationParams migParams = { 0 };
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
if (qemuMonitorGetMigrationParams(priv->mon, &migParams) < 0)
@@ -119,7 +120,7 @@ qemuMigrationCheckTLSCreds(virQEMUDriverPtr driver,
ret = 0;
cleanup:
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
qemuMigrationParamsClear(&migParams);
@@ -501,6 +502,7 @@ qemuMigrationStartNBDServer(virQEMUDriverPtr driver,
unsigned short port = 0;
char *diskAlias = NULL;
size_t i;
+ qemuMonitorPtr mon;
if (nbdPort < 0 || nbdPort > USHRT_MAX) {
virReportError(VIR_ERR_INVALID_ARG, "%s",
@@ -527,7 +529,7 @@ qemuMigrationStartNBDServer(virQEMUDriverPtr driver,
goto cleanup;
if (qemuDomainObjEnterMonitorAsync(driver, vm,
- QEMU_ASYNC_JOB_MIGRATION_IN) < 0)
+ QEMU_ASYNC_JOB_MIGRATION_IN, &mon) < 0)
goto cleanup;
if (port == 0) {
@@ -542,7 +544,7 @@ qemuMigrationStartNBDServer(virQEMUDriverPtr driver,
if (qemuMonitorNBDServerAdd(priv->mon, diskAlias, true) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
}
@@ -556,7 +558,7 @@ qemuMigrationStartNBDServer(virQEMUDriverPtr driver,
return ret;
exit_monitor:
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto cleanup;
}
@@ -567,17 +569,18 @@ qemuMigrationStopNBDServer(virQEMUDriverPtr driver,
qemuMigrationCookiePtr mig)
{
qemuDomainObjPrivatePtr priv = vm->privateData;
+ qemuMonitorPtr mon;
if (!mig->nbd)
return 0;
if (qemuDomainObjEnterMonitorAsync(driver, vm,
- QEMU_ASYNC_JOB_MIGRATION_IN) < 0)
+ QEMU_ASYNC_JOB_MIGRATION_IN, &mon) < 0)
return -1;
if (qemuMonitorNBDServerStop(priv->mon) < 0)
VIR_WARN("Unable to stop NBD server");
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
return -1;
virPortAllocatorRelease(driver->migrationPorts, priv->nbdPort);
@@ -756,6 +759,7 @@ qemuMigrationCancelOneDriveMirror(virQEMUDriverPtr driver,
int ret = -1;
int status;
int rv;
+ qemuMonitorPtr mon;
status = qemuBlockJobUpdate(driver, vm, asyncJob, disk, &error);
switch (status) {
@@ -781,12 +785,12 @@ qemuMigrationCancelOneDriveMirror(virQEMUDriverPtr driver,
if (!(diskAlias = qemuAliasFromDisk(disk)))
return -1;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
rv = qemuMonitorBlockJobCancel(priv->mon, diskAlias);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || rv < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || rv < 0)
goto cleanup;
ret = 0;
@@ -920,6 +924,7 @@ qemuMigrationDriveMirror(virQEMUDriverPtr driver,
unsigned int mirror_flags = VIR_DOMAIN_BLOCK_REBASE_REUSE_EXT;
int rv;
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
+ qemuMonitorPtr mon;
VIR_DEBUG("Starting drive mirrors for domain %s", vm->def->name);
@@ -961,7 +966,7 @@ qemuMigrationDriveMirror(virQEMUDriverPtr driver,
goto cleanup;
if (qemuDomainObjEnterMonitorAsync(driver, vm,
- QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
+ QEMU_ASYNC_JOB_MIGRATION_OUT, &mon) < 0)
goto cleanup;
qemuBlockJobSyncBegin(disk);
@@ -971,7 +976,7 @@ qemuMigrationDriveMirror(virQEMUDriverPtr driver,
VIR_FREE(diskAlias);
VIR_FREE(nbd_dest);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || mon_ret < 0) {
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || mon_ret < 0) {
qemuBlockJobSyncEnd(driver, vm, QEMU_ASYNC_JOB_MIGRATION_OUT, disk);
goto cleanup;
}
@@ -1296,6 +1301,7 @@ qemuMigrationSetOption(virQEMUDriverPtr driver,
{
qemuDomainObjPrivatePtr priv = vm->privateData;
int ret;
+ qemuMonitorPtr mon;
if (!qemuMigrationCapsGet(vm, capability)) {
if (!state) {
@@ -1317,12 +1323,12 @@ qemuMigrationSetOption(virQEMUDriverPtr driver,
return -1;
}
- if (qemuDomainObjEnterMonitorAsync(driver, vm, job) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, job, &mon) < 0)
return -1;
ret = qemuMonitorSetMigrationCapability(priv->mon, capability, state);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
return ret;
@@ -1416,13 +1422,14 @@ qemuMigrationFetchStats(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
qemuMonitorMigrationStats stats;
int rv;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
rv = qemuMonitorGetMigrationStats(priv->mon, &stats, error);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || rv < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || rv < 0)
return -1;
jobInfo->stats.mig = stats;
@@ -1702,6 +1709,7 @@ qemuDomainMigrateGraphicsRelocate(virQEMUDriverPtr driver,
int port = -1;
int tlsPort = -1;
const char *tlsSubject = NULL;
+ qemuMonitorPtr mon;
if (!cookie || (!cookie->graphics && !graphicsuri))
return 0;
@@ -1772,11 +1780,11 @@ qemuDomainMigrateGraphicsRelocate(virQEMUDriverPtr driver,
}
if (qemuDomainObjEnterMonitorAsync(driver, vm,
- QEMU_ASYNC_JOB_MIGRATION_OUT) == 0) {
+ QEMU_ASYNC_JOB_MIGRATION_OUT, &mon) == 0) {
ret = qemuMonitorGraphicsRelocate(priv->mon, type, listenAddress,
port, tlsPort, tlsSubject);
priv->job.spiceMigration = !ret;
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
}
@@ -1872,15 +1880,16 @@ qemuMigrationRunIncoming(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
int ret = -1;
int rv;
+ qemuMonitorPtr mon;
VIR_DEBUG("Setting up incoming migration with URI %s", uri);
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
rv = qemuMonitorMigrateIncoming(priv->mon, uri);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || rv < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || rv < 0)
goto cleanup;
if (asyncJob == QEMU_ASYNC_JOB_MIGRATION_IN) {
@@ -2326,6 +2335,7 @@ qemuMigrationSetCompression(virQEMUDriverPtr driver,
{
int ret = -1;
qemuDomainObjPrivatePtr priv = vm->privateData;
+ qemuMonitorPtr mon;
if (qemuMigrationSetOption(driver, vm,
QEMU_MONITOR_MIGRATION_CAPS_XBZRLE,
@@ -2341,7 +2351,7 @@ qemuMigrationSetCompression(virQEMUDriverPtr driver,
job) < 0)
return -1;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, job) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, job, &mon) < 0)
return -1;
migParams->compressLevel_set = compression->level_set;
@@ -2361,7 +2371,7 @@ qemuMigrationSetCompression(virQEMUDriverPtr driver,
ret = 0;
cleanup:
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
return ret;
@@ -2478,8 +2488,9 @@ qemuMigrationSetParams(virQEMUDriverPtr driver,
{
qemuDomainObjPrivatePtr priv = vm->privateData;
int ret = -1;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, job) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, job, &mon) < 0)
return -1;
if (qemuMonitorSetMigrationParams(priv->mon, migParams) < 0)
@@ -2488,7 +2499,7 @@ qemuMigrationSetParams(virQEMUDriverPtr driver,
ret = 0;
cleanup:
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
return ret;
@@ -3644,13 +3655,14 @@ qemuMigrationContinue(virQEMUDriverPtr driver,
{
qemuDomainObjPrivatePtr priv = vm->privateData;
int ret;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
ret = qemuMonitorMigrateContinue(priv->mon, status);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
return ret;
@@ -3694,6 +3706,7 @@ qemuMigrationRun(virQEMUDriverPtr driver,
virDomainDefPtr persistDef = NULL;
char *timestamp;
int rc;
+ qemuMonitorPtr mon;
VIR_DEBUG("driver=%p, vm=%p, cookiein=%s, cookieinlen=%d, "
"cookieout=%p, cookieoutlen=%p, flags=0x%lx, resource=%lu, "
@@ -3836,7 +3849,7 @@ qemuMigrationRun(virQEMUDriverPtr driver,
goto error;
if (qemuDomainObjEnterMonitorAsync(driver, vm,
- QEMU_ASYNC_JOB_MIGRATION_OUT) < 0)
+ QEMU_ASYNC_JOB_MIGRATION_OUT, &mon) < 0)
goto error;
if (priv->job.abortJob) {
@@ -3893,7 +3906,7 @@ qemuMigrationRun(virQEMUDriverPtr driver,
break;
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || rc < 0)
goto error;
/* From this point onwards we *must* call cancel to abort the
@@ -4026,9 +4039,9 @@ qemuMigrationRun(virQEMUDriverPtr driver,
priv->job.current->status != QEMU_DOMAIN_JOB_STATUS_QEMU_COMPLETED &&
virDomainObjIsActive(vm) &&
qemuDomainObjEnterMonitorAsync(driver, vm,
- QEMU_ASYNC_JOB_MIGRATION_OUT) == 0) {
+ QEMU_ASYNC_JOB_MIGRATION_OUT, &mon) == 0) {
qemuMonitorMigrateCancel(priv->mon);
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
}
/* cancel any outstanding NBD jobs */
@@ -4046,7 +4059,7 @@ qemuMigrationRun(virQEMUDriverPtr driver,
goto cleanup;
exit_monitor:
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto error;
}
@@ -5550,14 +5563,15 @@ qemuMigrationToFile(virQEMUDriverPtr driver, virDomainObjPtr vm,
unsigned long saveMigBandwidth = priv->migMaxBandwidth;
char *errbuf = NULL;
virErrorPtr orig_err = NULL;
+ qemuMonitorPtr mon;
/* Increase migration bandwidth to unlimited since target is a file.
* Failure to change migration speed is not fatal. */
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) == 0) {
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) == 0) {
qemuMonitorSetMigrationSpeed(priv->mon,
QEMU_DOMAIN_MIG_BANDWIDTH_MAX);
priv->migMaxBandwidth = QEMU_DOMAIN_MIG_BANDWIDTH_MAX;
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
return -1;
}
@@ -5582,7 +5596,7 @@ qemuMigrationToFile(virQEMUDriverPtr driver, virDomainObjPtr vm,
compressor ? pipeFD[1] : fd) < 0)
goto cleanup;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
if (!compressor) {
@@ -5605,11 +5619,11 @@ qemuMigrationToFile(virQEMUDriverPtr driver, virDomainObjPtr vm,
if (virSetCloseExec(pipeFD[1]) < 0) {
virReportSystemError(errno, "%s",
_("Unable to set cloexec flag"));
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto cleanup;
}
if (virCommandRunAsync(cmd, NULL) < 0) {
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
goto cleanup;
}
rc = qemuMonitorMigrateToFd(priv->mon,
@@ -5619,7 +5633,7 @@ qemuMigrationToFile(virQEMUDriverPtr driver, virDomainObjPtr vm,
VIR_CLOSE(pipeFD[1]) < 0)
VIR_WARN("failed to close intermediate pipe");
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (rc < 0)
goto cleanup;
@@ -5631,9 +5645,9 @@ qemuMigrationToFile(virQEMUDriverPtr driver, virDomainObjPtr vm,
orig_err = virSaveLastError();
virCommandAbort(cmd);
if (virDomainObjIsActive(vm) &&
- qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) == 0) {
+ qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) == 0) {
qemuMonitorMigrateCancel(priv->mon);
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
}
}
goto cleanup;
@@ -5651,10 +5665,10 @@ qemuMigrationToFile(virQEMUDriverPtr driver, virDomainObjPtr vm,
/* Restore max migration bandwidth */
if (virDomainObjIsActive(vm) &&
- qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) == 0) {
+ qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) == 0) {
qemuMonitorSetMigrationSpeed(priv->mon, saveMigBandwidth);
priv->migMaxBandwidth = saveMigBandwidth;
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
}
VIR_FORCE_CLOSE(pipeFD[0]);
@@ -5683,6 +5697,7 @@ qemuMigrationCancel(virQEMUDriverPtr driver,
bool storage = false;
size_t i;
int ret = -1;
+ qemuMonitorPtr mon;
VIR_DEBUG("Canceling unfinished outgoing migration of domain %s",
vm->def->name);
@@ -5695,13 +5710,13 @@ qemuMigrationCancel(virQEMUDriverPtr driver,
}
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ignore_value(qemuMonitorMigrateCancel(priv->mon));
if (storage)
blockJobs = qemuMonitorGetAllBlockJobInfo(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || (storage && !blockJobs))
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || (storage && !blockJobs))
goto endsyncjob;
if (!storage) {
@@ -6071,6 +6086,7 @@ qemuMigrationFetchMirrorStats(virQEMUDriverPtr driver,
bool nbd = false;
virHashTablePtr blockinfo = NULL;
qemuDomainMirrorStatsPtr stats = &jobInfo->mirrorStats;
+ qemuMonitorPtr mon;
for (i = 0; i < vm->def->ndisks; i++) {
virDomainDiskDefPtr disk = vm->def->disks[i];
@@ -6083,12 +6099,12 @@ qemuMigrationFetchMirrorStats(virQEMUDriverPtr driver,
if (!nbd)
return 0;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
blockinfo = qemuMonitorGetAllBlockJobInfo(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || !blockinfo)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || !blockinfo)
return -1;
memset(stats, 0, sizeof(*stats));
diff --git a/src/qemu/qemu_migration_cookie.c b/src/qemu/qemu_migration_cookie.c
old mode 100644
new mode 100755
index 945530c..27003c6
--- a/src/qemu/qemu_migration_cookie.c
+++ b/src/qemu/qemu_migration_cookie.c
@@ -452,6 +452,7 @@ qemuMigrationCookieAddNBD(qemuMigrationCookiePtr mig,
virHashTablePtr stats = NULL;
size_t i;
int ret = -1, rc;
+ qemuMonitorPtr mon;
/* It is not a bug if there already is a NBD data */
qemuMigrationCookieNBDFree(mig->nbd);
@@ -473,10 +474,10 @@ qemuMigrationCookieAddNBD(qemuMigrationCookiePtr mig,
goto cleanup;
if (qemuDomainObjEnterMonitorAsync(driver, vm,
- priv->job.asyncJob) < 0)
+ priv->job.asyncJob, &mon) < 0)
goto cleanup;
rc = qemuMonitorBlockStatsUpdateCapacity(priv->mon, stats, false);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (rc < 0)
goto cleanup;
diff --git a/src/qemu/qemu_process.c b/src/qemu/qemu_process.c
old mode 100644
new mode 100755
index c1da3bb..6961348
--- a/src/qemu/qemu_process.c
+++ b/src/qemu/qemu_process.c
@@ -543,6 +543,7 @@ qemuProcessFakeReboot(void *opaque)
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
virDomainRunningReason reason = VIR_DOMAIN_RUNNING_BOOTED;
int ret = -1, rc;
+ qemuMonitorPtr mon;
VIR_DEBUG("vm=%p", vm);
virObjectLock(vm);
@@ -555,10 +556,10 @@ qemuProcessFakeReboot(void *opaque)
goto endjob;
}
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
rc = qemuMonitorSystemReset(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto endjob;
if (rc < 0)
@@ -1767,13 +1768,14 @@ qemuProcessInitMonitor(virQEMUDriverPtr driver,
qemuDomainAsyncJob asyncJob)
{
int ret;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
ret = qemuMonitorSetCapabilities(QEMU_DOMAIN_PRIVATE(vm)->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
return ret;
@@ -2094,12 +2096,13 @@ qemuRefreshVirtioChannelState(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
virHashTablePtr info = NULL;
int ret = -1;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
ret = qemuMonitorGetChardevInfo(priv->mon, &info);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret < 0)
@@ -2121,15 +2124,16 @@ qemuRefreshRTC(virQEMUDriverPtr driver,
struct tm thenbits;
long localOffset;
int rv;
+ qemuMonitorPtr mon;
if (vm->def->clock.offset != VIR_DOMAIN_CLOCK_OFFSET_VARIABLE)
return;
memset(&thenbits, 0, sizeof(thenbits));
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
now = time(NULL);
rv = qemuMonitorGetRTCTime(priv->mon, &thenbits);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
rv = -1;
if (rv < 0)
@@ -2156,6 +2160,7 @@ qemuProcessRefreshBalloonState(virQEMUDriverPtr driver,
{
unsigned long long balloon;
int rc;
+ qemuMonitorPtr mon;
/* if no ballooning is available, the current size equals to the current
* full memory size */
@@ -2164,11 +2169,11 @@ qemuProcessRefreshBalloonState(virQEMUDriverPtr driver,
return 0;
}
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
rc = qemuMonitorGetBalloonInfo(qemuDomainGetMonitor(vm), &balloon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0 || rc < 0)
return -1;
vm->def->mem.cur_balloon = balloon;
@@ -2186,6 +2191,7 @@ qemuProcessWaitForMonitor(virQEMUDriverPtr driver,
int ret = -1;
virHashTablePtr info = NULL;
qemuDomainObjPrivatePtr priv;
+ qemuMonitorPtr mon;
VIR_DEBUG("Connect monitor to %p '%s'", vm, vm->def->name);
if (qemuConnectMonitor(driver, vm, asyncJob, logCtxt) < 0)
@@ -2196,11 +2202,11 @@ qemuProcessWaitForMonitor(virQEMUDriverPtr driver,
* Note that the monitor itself can be on a pty, so we still need to try the
* log output method. */
priv = vm->privateData;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
ret = qemuMonitorGetChardevInfo(priv->mon, &info);
VIR_DEBUG("qemuMonitorGetChardevInfo returned %i", ret);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret == 0) {
@@ -2235,6 +2241,7 @@ qemuProcessDetectIOThreadPIDs(virQEMUDriverPtr driver,
int niothreads = 0;
int ret = -1;
size_t i;
+ qemuMonitorPtr mon;
if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_OBJECT_IOTHREAD)) {
ret = 0;
@@ -2242,10 +2249,10 @@ qemuProcessDetectIOThreadPIDs(virQEMUDriverPtr driver,
}
/* Get the list of IOThreads from qemu */
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
niothreads = qemuMonitorGetIOThreads(priv->mon, &iothreads);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (niothreads < 0)
goto cleanup;
@@ -2374,8 +2381,9 @@ qemuProcessSetLinkStates(virQEMUDriverPtr driver,
size_t i;
int ret = -1;
int rv;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
for (i = 0; i < def->nnets; i++) {
@@ -2409,7 +2417,7 @@ qemuProcessSetLinkStates(virQEMUDriverPtr driver,
ret = 0;
cleanup:
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
return ret;
}
@@ -2578,6 +2586,7 @@ qemuProcessInitPasswords(virConnectPtr conn,
size_t i;
char *alias = NULL;
char *secret = NULL;
+ qemuMonitorPtr mon;
for (i = 0; i < vm->def->ngraphics; ++i) {
virDomainGraphicsDefPtr graphics = vm->def->graphics[i];
@@ -2621,10 +2630,10 @@ qemuProcessInitPasswords(virConnectPtr conn,
VIR_FREE(alias);
if (!(alias = qemuAliasFromDisk(vm->def->disks[i])))
goto cleanup;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
ret = qemuMonitorSetDrivePassphrase(priv->mon, alias, secret);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret < 0)
goto cleanup;
@@ -2695,8 +2704,9 @@ qemuProcessUpdateVideoRamSize(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
virDomainVideoDefPtr video = NULL;
virQEMUDriverConfigPtr cfg = NULL;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
for (i = 0; i < vm->def->nvideos; i++) {
@@ -2748,7 +2758,7 @@ qemuProcessUpdateVideoRamSize(virQEMUDriverPtr driver,
}
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
return -1;
cfg = virQEMUDriverGetConfig(driver);
@@ -2758,7 +2768,7 @@ qemuProcessUpdateVideoRamSize(virQEMUDriverPtr driver,
return ret;
error:
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
return -1;
}
@@ -2862,6 +2872,7 @@ qemuProcessStartCPUs(virQEMUDriverPtr driver, virDomainObjPtr vm,
int ret = -1;
qemuDomainObjPrivatePtr priv = vm->privateData;
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
+ qemuMonitorPtr mon;
/* Bring up netdevs before starting CPUs */
if (qemuInterfaceStartDevices(vm->def) < 0)
@@ -2878,11 +2889,11 @@ qemuProcessStartCPUs(virQEMUDriverPtr driver, virDomainObjPtr vm,
}
VIR_FREE(priv->lockState);
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto release;
ret = qemuMonitorStartCPUs(priv->mon, conn);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret < 0)
@@ -2909,14 +2920,15 @@ int qemuProcessStopCPUs(virQEMUDriverPtr driver,
{
int ret = -1;
qemuDomainObjPrivatePtr priv = vm->privateData;
+ qemuMonitorPtr mon;
VIR_FREE(priv->lockState);
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
ret = qemuMonitorStopCPUs(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
if (ret < 0)
@@ -2986,10 +2998,11 @@ qemuProcessUpdateState(virQEMUDriverPtr driver, virDomainObjPtr vm)
bool running;
char *msg = NULL;
int ret;
+ qemuMonitorPtr mon;
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorGetStatus(priv->mon, &running, &reason);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
return -1;
if (ret < 0)
@@ -3203,6 +3216,7 @@ qemuProcessRecoverJob(virQEMUDriverPtr driver,
qemuDomainObjPrivatePtr priv = vm->privateData;
virDomainState state;
int reason;
+ qemuMonitorPtr mon;
state = virDomainObjGetState(vm, &reason);
@@ -3222,9 +3236,9 @@ qemuProcessRecoverJob(virQEMUDriverPtr driver,
case QEMU_ASYNC_JOB_SAVE:
case QEMU_ASYNC_JOB_DUMP:
case QEMU_ASYNC_JOB_SNAPSHOT:
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
ignore_value(qemuMonitorMigrateCancel(priv->mon));
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
return -1;
/* resume the domain but only if it was paused as a result of
* running a migration-to-file operation. Although we are
@@ -3814,6 +3828,7 @@ qemuProcessFetchGuestCPU(virQEMUDriverPtr driver,
virCPUDataPtr dataEnabled = NULL;
virCPUDataPtr dataDisabled = NULL;
int rc;
+ qemuMonitorPtr mon;
*enabled = NULL;
*disabled = NULL;
@@ -3821,13 +3836,13 @@ qemuProcessFetchGuestCPU(virQEMUDriverPtr driver,
if (!ARCH_IS_X86(vm->def->os.arch))
return 0;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto error;
rc = qemuMonitorGetGuestCPU(priv->mon, vm->def->os.arch,
&dataEnabled, &dataDisabled);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto error;
if (rc == -1)
@@ -3945,13 +3960,14 @@ qemuProcessFetchCPUDefinitions(virQEMUDriverPtr driver,
{
qemuDomainObjPrivatePtr priv = vm->privateData;
virDomainCapsCPUModelsPtr models = NULL;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto error;
models = virQEMUCapsFetchCPUDefinitions(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto error;
return models;
@@ -4569,11 +4585,12 @@ qemuProcessSetupBalloon(virQEMUDriverPtr driver,
unsigned long long balloon = vm->def->mem.cur_balloon;
qemuDomainObjPrivatePtr priv = vm->privateData;
int ret = -1;
+ qemuMonitorPtr mon;
if (!virDomainDefHasMemballoon(vm->def))
return 0;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
return -1;
if (vm->def->memballoon->period)
@@ -4585,7 +4602,7 @@ qemuProcessSetupBalloon(virQEMUDriverPtr driver,
ret = 0;
cleanup:
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
ret = -1;
return ret;
}
@@ -5322,6 +5339,7 @@ qemuProcessSetupHotpluggableVcpus(virQEMUDriverPtr driver,
size_t i;
int ret = -1;
int rc;
+ qemuMonitorPtr mon;
virDomainVcpuDefPtr *bootHotplug = NULL;
size_t nbootHotplug = 0;
@@ -5357,13 +5375,13 @@ qemuProcessSetupHotpluggableVcpus(virQEMUDriverPtr driver,
if (!(vcpuprops = qemuBuildHotpluggableCPUProps(vcpu)))
goto cleanup;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) < 0)
goto cleanup;
rc = qemuMonitorAddDeviceArgs(qemuDomainGetMonitor(vm), vcpuprops);
vcpuprops = NULL;
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
if (rc < 0)
@@ -6765,6 +6783,7 @@ int qemuProcessAttach(virConnectPtr conn ATTRIBUTE_UNUSED,
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
virCapsPtr caps = NULL;
bool active = false;
+ qemuMonitorPtr mon;
VIR_DEBUG("Beginning VM attach process");
@@ -6911,14 +6930,14 @@ int qemuProcessAttach(virConnectPtr conn ATTRIBUTE_UNUSED,
goto error;
VIR_DEBUG("Getting initial memory amount");
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
if (qemuMonitorGetBalloonInfo(priv->mon, &vm->def->mem.cur_balloon) < 0)
goto exit_monitor;
if (qemuMonitorGetStatus(priv->mon, &running, &reason) < 0)
goto exit_monitor;
if (qemuMonitorGetVirtType(priv->mon, &vm->def->virtType) < 0)
goto exit_monitor;
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto error;
if (running) {
@@ -6927,10 +6946,10 @@ int qemuProcessAttach(virConnectPtr conn ATTRIBUTE_UNUSED,
if (vm->def->memballoon &&
vm->def->memballoon->model == VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO &&
vm->def->memballoon->period) {
- qemuDomainObjEnterMonitor(driver, vm);
+ mon = qemuDomainObjEnterMonitor(driver, vm);
qemuMonitorSetMemoryStatsPeriod(priv->mon, vm->def->memballoon,
vm->def->memballoon->period);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto error;
}
} else {
@@ -6967,7 +6986,7 @@ int qemuProcessAttach(virConnectPtr conn ATTRIBUTE_UNUSED,
return 0;
exit_monitor:
- ignore_value(qemuDomainObjExitMonitor(driver, vm));
+ ignore_value(qemuDomainObjExitMonitor(driver, vm, mon));
error:
/* We jump here if we failed to attach to the VM for any reason.
* Leave the domain running, but pretend we never attempted to
@@ -7075,10 +7094,11 @@ qemuProcessRefreshDisks(virQEMUDriverPtr driver,
virHashTablePtr table = NULL;
int ret = -1;
size_t i;
+ qemuMonitorPtr mon;
- if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) == 0) {
+ if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob, &mon) == 0) {
table = qemuMonitorGetBlockInfo(priv->mon);
- if (qemuDomainObjExitMonitor(driver, vm) < 0)
+ if (qemuDomainObjExitMonitor(driver, vm, mon) < 0)
goto cleanup;
}
--
1.8.3.1
4
3
28 Feb '18
This patch series provides support for launching an encrypted guest using
AMD's new Secure Encrypted Virtualization (SEV) feature.
SEV is an extension to the AMD-V architecture which supports running
multiple VMs under the control of a hypervisor. When enabled, SEV feature
allows the memory contents of a virtual machine (VM) to be transparently
encrypted with a key unique to the guest VM.
In order to launch SEV guest we need QEMU SEV patch [1].
[1] https://marc.info/?l=kvm&m=151871349515849&w=2
The patch series implements some of recommendation from Daniel [2]
[2] https://www.redhat.com/archives/libvir-list/2017-September/msg00197.html
At very high level the flow looks this:
1. mgmt tool calls virConnectGetDomainCapabilities. This returns an XML document
that includes the following
<feature>
...
<sev supported='yes'>
<cbitpos> </cbitpos>
<reduced-phys-bits> </reduced-phys-bits>
<pdh> </pdh>
<cert-chain> </cert-chain>
</feature>
If <sev> is provided then we indicate that hypervisor is capable of launching
SEV guest.
2. (optional) mgmt tool can provide the PDH and Cert-chain to guest owner in case
if guest owner wish to establish a secure connection with SEV firmware to
negotiate a key used for validating the measurement.
3. mgmt tool requests to start a guest calling virCreateXML(), passing VIR_DOMAIN_START_PAUSED.
The xml would include
<sev>
<cbitpos> </cbitpos> /* the value is same as what is obtained via virConnectGetDomainCapabilities()
<reduced-phys-bits> </reduced-phys-bits> /* the value is same as what is obtained via virConnectGetDomainCapabilities()
<dh-cert> .. </dh> /* guest owners diffie-hellman key */ (optional)
<session> ..</session> /* guest owners session blob */ (optional)
<policy> ..</policy> /* guest policy */ (optional)
4. Libvirt generate the QEMU cli arg to enable the SEV feature, a typical
args looks like this:
# $QEMU ..
-machine memory-encryption=sev0 \
-object sev-guest,id=sev0,dh-cert-file=<file>....
5. Libvirt generates lifecycle VIR_DOMAIN_EVENT_SUSPENDED_PAUSED event
6. mgmt tool gets the VIR_DOMAIN_EVENT_SUSPENDED_PAUSED and calls virDomainGetSevVmMeasurement()
to retrieve the measurement of encrypted memory.
7. (optional) mgmt tool can provide the measurement value to guest owner, which can
validate the measurement and gives GO/NO-GO answer. If mgmt tool gets GO then
it resumes the guest otherwise it calls destroy() to kill the guest.
8. mgmt tool resumes the guest
TODO:
* SEV guest require to use DMA apis for the virtio devices. In order to use the DMA
apis the virtio devices must have this tag
<driver iommu=on ats=on>
It is a bit unclear to me where these changes need to go. Do we need to
modify the libvirt to automatically add these when SEV is enabled or
we ask mgmt tool to make sure that it creates XML with right tag to enable
the DMA APIs for virtio devices. I am looking for some suggestions.
Using these patches we have succesfully booted and tested a guest both with and
without SEV enabled.
SEV Firmware API spec is available at:
https://support.amd.com/TechDocs/55766_SEV-KM%20API_Specification.pdf
Brijesh Singh (4):
qemu: provide support to query the SEV capability
qemu: introduce SEV feature in hypervisor capabilities
conf: introduce sev element in domain
libvirt-domain: add new virDomainGetSevVmMeasurement() API
docs/formatdomain.html.in | 71 ++++++++++++++++++++++
docs/formatdomaincaps.html.in | 31 ++++++++++
docs/schemas/domaincaps.rng | 10 ++++
include/libvirt/libvirt-domain.h | 4 ++
src/conf/domain_capabilities.c | 19 ++++++
src/conf/domain_capabilities.h | 25 ++++++++
src/conf/domain_conf.c | 64 ++++++++++++++++++++
src/conf/domain_conf.h | 18 ++++++
src/driver-hypervisor.h | 4 ++
src/libvirt-domain.c | 41 +++++++++++++
src/libvirt_public.syms | 1 +
src/qemu/qemu_capabilities.c | 69 +++++++++++++++++++++-
src/qemu/qemu_capspriv.h | 4 ++
src/qemu/qemu_command.c | 77 ++++++++++++++++++++++++
src/qemu/qemu_driver.c | 51 ++++++++++++++++
src/qemu/qemu_monitor.c | 17 ++++++
src/qemu/qemu_monitor.h | 6 ++
src/qemu/qemu_monitor_json.c | 124 +++++++++++++++++++++++++++++++++++++++
src/qemu/qemu_monitor_json.h | 5 ++
19 files changed, 640 insertions(+), 1 deletion(-)
--
2.14.3
5
22
[libvirt] [PATCH] virsh: fixing segfault by pool autocompleter function.
by Julio Faracco 28 Feb '18
by Julio Faracco 28 Feb '18
28 Feb '18
The commands which requires a pool to perform any action for a volume is
throwing a segfault when you pass the volume name before a pool name or
without the argument '--pool'.
An example that works:
virsh # vol-list loops-pool
Name Path
-------------------------------------------------------------------
loop0 /mnt/loop0
virsh # vol-info --pool loops-pool lo<TAB>
An example that does not work:
virsh # vol-list loops-pool
Name Path
-------------------------------------------------------------------
loop0 /mnt/loop0
virsh # vol-info lo<TAB>
Segmentation Fault
The example 'vol-info' can be executed as 'vol-info loop0 --pool
loops-pool'. So, this commit fixes this problem when the arguments are
inverted and avoids the segfault.
Signed-off-by: Julio Faracco <jcfaracco(a)gmail.com>
---
tools/virsh-pool.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tools/virsh-pool.c b/tools/virsh-pool.c
index 56b6cfc73..24a4d1ee7 100644
--- a/tools/virsh-pool.c
+++ b/tools/virsh-pool.c
@@ -143,6 +143,9 @@ virshCommandOptPoolBy(vshControl *ctl, const vshCmd *cmd, const char *optname,
if (vshCommandOptStringReq(ctl, cmd, optname, &n) < 0)
return NULL;
+ if (!n)
+ return NULL;
+
vshDebug(ctl, VSH_ERR_INFO, "%s: found option <%s>: %s\n",
cmd->def->name, optname, n);
--
2.14.1
2
1
28 Feb '18
12 bytes in 1 blocks are definitely lost in loss record 188 of 1,145
at 0x4C2B6CD: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
by 0x5D2CD77: xmlStrndup (in /lib/x86_64-linux-gnu/libxml2.so.2.7.8)
by 0x514E137: virXMLPropString (virxml.c:506)
by 0x234F51: qemuMigrationCookieNetworkXMLParse qemu_migration.c:1001)
by 0x235FF8: qemuMigrationCookieXMLParse (qemu_migration.c:1333)
by 0x236214: qemuMigrationCookieXMLParseStr (qemu_migration.c:1372)
by 0x2365D2: qemuMigrationEatCookie (qemu_migration.c:1456)
by 0x243DBA: qemuMigrationFinish (qemu_migration.c:6381)
by 0x204032: qemuDomainMigrateFinish3 (qemu_driver.c:13228)
by 0x521CCBB: virDomainMigrateFinish3 (libvirt-domain.c:4788)
by 0x1936DE: remoteDispatchDomainMigrateFinish3 (remote.c:4580)
by 0x16DBB1: remoteDispatchDomainMigrateFinish3Helper(remote_dispatch.h:7582)
Signed-off-by: ZhangZijian <zhang.zijian(a)h3c.com>
---
src/qemu/qemu_migration_cookie.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/qemu/qemu_migration_cookie.c b/src/qemu/qemu_migration_cookie.c
index 945530c..5a1e299 100644
--- a/src/qemu/qemu_migration_cookie.c
+++ b/src/qemu/qemu_migration_cookie.c
@@ -900,6 +900,7 @@ qemuMigrationCookieNetworkXMLParse(xmlXPathContextPtr ctxt)
goto error;
}
optr->net[i].vporttype = virNetDevVPortTypeFromString(vporttype);
+ VIR_FREE(vporttype);
}
VIR_FREE(interfaces);
--
2.9.5
2
1
[CC +libvirt]
On Tue, 27 Feb 2018 09:52:02 +0100
Gerd Hoffmann <kraxel(a)redhat.com> wrote:
> This series adds support for a vgpu display to the qemu vfio code.
>
> v5:
> - rebase to latest master
> - drop DeviceState->hotpluggable patch, use separate vfio-pci-display
> device instead so we can use DeviceClass->hotpluggable.
I can't imagine that management layers are going to be happy with this
approach, it's one thing to have certain USB controllers where the
version intimately tied to the machine chipset is not hotpluggable,
while standalone versions are, but having a fork of an entirely
standalone device for this purpose sounds very invasive. What does the
XML look like that would make libvirt select this option? I'm still
thinking that a separate display device, which vfio-pci can bind to as
a device option, not affecting the hotplug-ability of the vfio-pci
device itself is the correct, but clearly difficult, approach to this.
I can't agree to a separate device unless libvirt is willing to sign up
for enabling it.
Furthermore, if we take the separate device approach, shouldn't it be
something like vfio-pci-nohotplug, where display is an option only for
this version of the DeviceClass? Thanks,
Alex
> - add vfio dma-buf patch. Right now this can be tested with '-display
> egl-headless' only. gtk and spice support is almost ready for merge
> and should follow soon.
>
> cheers,
> Gerd
>
> Gerd Hoffmann (7):
> linux-headers: update to 4.16-rc1
> standard-headers: add drm/drm_fourcc.h
> ui/pixman: add qemu_drm_format_to_pixman()
> vfio/common: cleanup in vfio_region_finalize
> vfio/display: core & wireup
> vfio/display: adding region support
> vfio/display: adding dmabuf support
>
> hw/vfio/pci.h | 4 +
> include/hw/vfio/vfio-common.h | 22 ++
> include/standard-headers/drm/drm_fourcc.h | 411 +++++++++++++++++++++
> include/standard-headers/linux/input-event-codes.h | 1 +
> include/standard-headers/linux/input.h | 11 +
> include/standard-headers/linux/pci_regs.h | 30 +-
> include/standard-headers/linux/virtio_net.h | 13 +
> include/ui/qemu-pixman.h | 5 +
> linux-headers/asm-powerpc/kvm.h | 2 +
> linux-headers/asm-powerpc/unistd.h | 3 +
> linux-headers/asm-s390/unistd.h | 401 +-------------------
> linux-headers/asm-s390/unistd_32.h | 364 ++++++++++++++++++
> linux-headers/asm-s390/unistd_64.h | 331 +++++++++++++++++
> linux-headers/asm-x86/kvm_para.h | 4 +
> linux-headers/linux/kvm.h | 90 +++++
> linux-headers/linux/psci.h | 3 +
> linux-headers/linux/vfio.h | 72 ++++
> hw/vfio/common.c | 7 +
> hw/vfio/display.c | 286 ++++++++++++++
> hw/vfio/pci.c | 30 ++
> ui/qemu-pixman.c | 22 ++
> hw/vfio/Makefile.objs | 2 +-
> scripts/update-linux-headers.sh | 7 +
> 23 files changed, 1710 insertions(+), 411 deletions(-)
> create mode 100644 include/standard-headers/drm/drm_fourcc.h
> create mode 100644 linux-headers/asm-s390/unistd_32.h
> create mode 100644 linux-headers/asm-s390/unistd_64.h
> create mode 100644 hw/vfio/display.c
>
1
0
Various improvements to travis coverage. The first patch was posted
separately yesterday too.
Daniel P. Berrangé (4):
travis: add a scenario for running make distcheck
travis: make all builds use VPATH
travis: test upstart script handling on precise distro scenario
travis: run 'make install' during build tests
.travis.yml | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
--
2.14.3
2
20
27 Feb '18
Applies cleanly on top of e1ab81b339c4d631b704290c26caa0af6882527c.
Changes from [v3]:
* don't introduce new test cases that won't be able to provide
full test coverage anyway, as suggested by laine.
Changes from [v2]:
* replace the old implementation bit by bit using a clever trick
suggested by pkrempa;
* don't move QEMU capability validation;
* add a default: label to all switch statements as recommended
by danpb.
Changes from [v1]:
* error out instead of silently accept invalid options;
* shave quite a lot of yaks.
[v3] https://www.redhat.com/archives/libvir-list/2018-February/msg00996.html
[v2] https://www.redhat.com/archives/libvir-list/2018-February/msg00813.html
[v1] https://www.redhat.com/archives/libvir-list/2018-February/msg00244.html
Andrea Bolognani (11):
qemu: Create new qemuDomainDeviceDefValidateControllerPCI()
qemu: Validate PCI controller options (modelName)
qemu: Validate PCI controller options (index)
qemu: Validate PCI controller options (targetIndex)
qemu: Validate PCI controller options (pcihole64)
qemu: Validate PCI controller options (busNr)
qemu: Validate PCI controller options (numaNode)
qemu: Validate PCI controller options (chassisNr)
qemu: Validate PCI controller options (chassis and port)
qemu: Validate PCI controllers (QEMU capabilities)
qemu: Remove old qemuDomainDeviceDefValidateControllerPCI()
src/qemu/qemu_domain.c | 594 ++++++++++++++++++-------
tests/qemuxml2argvdata/pcie-expander-bus.xml | 3 -
tests/qemuxml2xmloutdata/pcie-expander-bus.xml | 4 +-
3 files changed, 440 insertions(+), 161 deletions(-)
--
2.14.3
1
11
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
Pushed under the "no one wants to review translations, we just
blindly trust the Fedora translators" rule ;-)
BTW, these translation refreshes are insanely huge each time I
do it, and I can't help thinking it is largely a waste of time
storing it all in GIT.... I naively wondered if we could just
have 'make dist' pull down the translations from zanata when
needed, but it would massively slow down 'make dist'. Another
idea would be to just grab latest translations when making a
formal release and provide a separate tar.xz file for them
on the download site.
po/af.po | 12979 ++++++++++++++++++++++++++------------------------
po/am.po | 12979 ++++++++++++++++++++++++++------------------------
po/anp.po | 12979 ++++++++++++++++++++++++++------------------------
po/ar.po | 13018 ++++++++++++++++++++++++++------------------------
po/as.po | 13660 +++++++++++++++++++++++++++-------------------------
po/ast.po | 12979 ++++++++++++++++++++++++++------------------------
po/bal.po | 12979 ++++++++++++++++++++++++++------------------------
po/be.po | 12979 ++++++++++++++++++++++++++------------------------
po/bg.po | 13021 ++++++++++++++++++++++++++------------------------
po/bn.po | 13018 ++++++++++++++++++++++++++------------------------
po/bn_IN.po | 13071 ++++++++++++++++++++++++++------------------------
po/bo.po | 12979 ++++++++++++++++++++++++++------------------------
po/br.po | 12979 ++++++++++++++++++++++++++------------------------
po/brx.po | 12979 ++++++++++++++++++++++++++------------------------
po/bs.po | 13018 ++++++++++++++++++++++++++------------------------
po/ca.po | 13094 ++++++++++++++++++++++++++------------------------
po/cs.po | 13026 ++++++++++++++++++++++++++------------------------
po/cy.po | 13020 ++++++++++++++++++++++++++------------------------
po/da.po | 13021 ++++++++++++++++++++++++++------------------------
po/de.po | 13547 +++++++++++++++++++++++++++-------------------------
po/de_CH.po | 12979 ++++++++++++++++++++++++++------------------------
po/el.po | 13040 ++++++++++++++++++++++++++------------------------
po/en_GB.po | 13629 +++++++++++++++++++++++++++-------------------------
po/eo.po | 12979 ++++++++++++++++++++++++++------------------------
po/es.po | 13115 ++++++++++++++++++++++++++------------------------
po/et.po | 13018 ++++++++++++++++++++++++++------------------------
po/eu.po | 13018 ++++++++++++++++++++++++++------------------------
po/fa.po | 12979 ++++++++++++++++++++++++++------------------------
po/fi.po | 13023 ++++++++++++++++++++++++++------------------------
po/fr.po | 13067 ++++++++++++++++++++++++++------------------------
po/gl.po | 13022 ++++++++++++++++++++++++++------------------------
po/gu.po | 13620 +++++++++++++++++++++++++++-------------------------
po/he.po | 13018 ++++++++++++++++++++++++++------------------------
po/hi.po | 13102 ++++++++++++++++++++++++++------------------------
po/hr.po | 12979 ++++++++++++++++++++++++++------------------------
po/hu.po | 13021 ++++++++++++++++++++++++++------------------------
po/ia.po | 12979 ++++++++++++++++++++++++++------------------------
po/id.po | 13014 ++++++++++++++++++++++++++------------------------
po/ilo.po | 12979 ++++++++++++++++++++++++++------------------------
po/is.po | 13018 ++++++++++++++++++++++++++------------------------
po/it.po | 13045 ++++++++++++++++++++++++++------------------------
po/ja.po | 13676 +++++++++++++++++++++++++++-------------------------
po/ka.po | 13018 ++++++++++++++++++++++++++------------------------
po/kk.po | 12979 ++++++++++++++++++++++++++------------------------
po/km.po | 12979 ++++++++++++++++++++++++++------------------------
po/kn.po | 13656 +++++++++++++++++++++++++++-------------------------
po/ko.po | 13083 ++++++++++++++++++++++++++------------------------
po/kw.po | 12979 ++++++++++++++++++++++++++------------------------
po/kw(a)kkcor.po | 12979 ++++++++++++++++++++++++++------------------------
po/kw(a)uccor.po | 12979 ++++++++++++++++++++++++++------------------------
po/kw_GB.po | 12979 ++++++++++++++++++++++++++------------------------
po/ky.po | 12979 ++++++++++++++++++++++++++------------------------
po/libvirt.pot | 12981 ++++++++++++++++++++++++++------------------------
po/lt.po | 13018 ++++++++++++++++++++++++++------------------------
po/lv.po | 13018 ++++++++++++++++++++++++++------------------------
po/mai.po | 12979 ++++++++++++++++++++++++++------------------------
po/mk.po | 13021 ++++++++++++++++++++++++++------------------------
po/ml.po | 13652 +++++++++++++++++++++++++++-------------------------
po/mn.po | 12979 ++++++++++++++++++++++++++------------------------
po/mr.po | 13622 +++++++++++++++++++++++++++-------------------------
po/ms.po | 13004 ++++++++++++++++++++++++++------------------------
po/nb.po | 13011 ++++++++++++++++++++++++++------------------------
po/nds.po | 12979 ++++++++++++++++++++++++++------------------------
po/ne.po | 12979 ++++++++++++++++++++++++++------------------------
po/nl.po | 13052 ++++++++++++++++++++++++++------------------------
po/nn.po | 13018 ++++++++++++++++++++++++++------------------------
po/nso.po | 13018 ++++++++++++++++++++++++++------------------------
po/or.po | 13650 +++++++++++++++++++++++++++-------------------------
po/pa.po | 13646 +++++++++++++++++++++++++++-------------------------
po/pl.po | 13050 ++++++++++++++++++++++++++------------------------
po/pt.po | 13008 ++++++++++++++++++++++++++------------------------
po/pt_BR.po | 13549 +++++++++++++++++++++++++++-------------------------
po/ro.po | 13018 ++++++++++++++++++++++++++------------------------
po/ru.po | 13652 +++++++++++++++++++++++++++-------------------------
po/si.po | 13018 ++++++++++++++++++++++++++------------------------
po/sk.po | 13018 ++++++++++++++++++++++++++------------------------
po/sl.po | 13018 ++++++++++++++++++++++++++------------------------
po/sq.po | 12981 ++++++++++++++++++++++++++------------------------
po/sr.po | 13051 ++++++++++++++++++++++++++------------------------
po/sr(a)latin.po | 13051 ++++++++++++++++++++++++++------------------------
po/sv.po | 13701 +++++++++++++++++++++++++++-------------------------
po/ta.po | 13606 +++++++++++++++++++++++++++-------------------------
po/te.po | 13100 ++++++++++++++++++++++++++------------------------
po/tg.po | 12979 ++++++++++++++++++++++++++------------------------
po/th.po | 13018 ++++++++++++++++++++++++++------------------------
po/tr.po | 13018 ++++++++++++++++++++++++++------------------------
po/tw.po | 12979 ++++++++++++++++++++++++++------------------------
po/uk.po | 14243 +++++++++++++++++++++++++++++--------------------------
po/ur.po | 13018 ++++++++++++++++++++++++++------------------------
po/vi.po | 13055 ++++++++++++++++++++++++++------------------------
po/wba.po | 12979 ++++++++++++++++++++++++++------------------------
po/yo.po | 12979 ++++++++++++++++++++++++++------------------------
po/zh_CN.po | 13674 +++++++++++++++++++++++++++-------------------------
po/zh_HK.po | 12979 ++++++++++++++++++++++++++------------------------
po/zh_TW.po | 13029 ++++++++++++++++++++++++++------------------------
po/zu.po | 13018 ++++++++++++++++++++++++++------------------------
96 files changed, 658398 insertions(+), 601273 deletions(-)
Regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
2
1
[libvirt] [PATCH] storage: fix sheepdog driver / test linking to avoid duplicating source
by Daniel P. Berrangé 27 Feb '18
by Daniel P. Berrangé 27 Feb '18
27 Feb '18
The libvirt_storage_backend_sheepdog_priv.la library depends on symbols
provided in the libvirt_driver_storage_impl.la library. As such the
latter must be listed 2nd when passed to the linker to avoid symbol
resolution problems. This mistake is being masked by the sheepdog
driver linking in a second copy of the storage driver code. Remove
this duplicate linkage of backend source and fix the test link order.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
src/Makefile.am | 3 +--
tests/Makefile.am | 2 +-
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index d3a01dbbe7..8d72f2f1e5 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1359,8 +1359,7 @@ libvirt_storage_backend_sheepdog_la_CFLAGS = \
$(AM_CFLAGS)
libvirt_storage_backend_sheepdog_priv_la_SOURCES = \
- $(STORAGE_DRIVER_SHEEPDOG_SOURCES) \
- $(STORAGE_DRIVER_BACKEND_SOURCES)
+ $(STORAGE_DRIVER_SHEEPDOG_SOURCES)
libvirt_storage_backend_sheepdog_priv_la_CFLAGS = \
-I$(srcdir)/conf \
$(AM_CFLAGS)
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 09647a959d..d794df3e5c 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -842,8 +842,8 @@ storagebackendsheepdogtest_SOURCES = \
storagebackendsheepdogtest.c \
testutils.c testutils.h
storagebackendsheepdogtest_LDADD = \
- ../src/libvirt_driver_storage_impl.la \
../src/libvirt_storage_backend_sheepdog_priv.la \
+ ../src/libvirt_driver_storage_impl.la \
$(LDADDS)
else ! WITH_STORAGE_SHEEPDOG
EXTRA_DIST += storagebackendsheepdogtest.c
--
2.14.3
2
1
27 Feb '18
A typo in the uninstall-data-extra rule expansion meant we just called
the install rule again, instead of the uninstall rule. While fixing
this, just inline the dependancy, since the intermediate
install-data-extra rule adds no value.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
src/Makefile.am | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index 46724673d2..d3a01dbbe7 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -99,9 +99,6 @@ include xenapi/Makefile.inc.am
include vz/Makefile.inc.am
include lxc/Makefile.inc.am
-install-data-extra: $(INSTALL_DATA_DIRS:%=install-data-%)
-uninstall-data-extra: $(INSTALL_DATA_DIRS:%=install-data-%)
-
THREAD_LIBS = $(LIB_PTHREAD) $(LTLIBMULTITHREAD)
@@ -2863,7 +2860,7 @@ endif WITH_NSS
install-data-local: install-init install-systemd install-upstart \
install-sysctl install-polkit install-sasl \
- install-logrotate install-data-extra
+ install-logrotate $(INSTALL_DATA_DIRS:%=install-data-%)
if WITH_LIBVIRTD
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/log/libvirt"
$(MKDIR_P) "$(DESTDIR)$(localstatedir)/lib/libvirt/lockd"
@@ -2899,7 +2896,7 @@ endif WITH_NETWORK
uninstall-local:: uninstall-init uninstall-systemd uninstall-upstart \
uninstall-sysctl uninstall-polkit uninstall-sasl \
- uninstall-logrotate uninstall-data-extra
+ uninstall-logrotate $(INSTALL_DATA_DIRS:%=uninstall-data-%)
if WITH_LIBVIRTD
rmdir "$(DESTDIR)$(localstatedir)/log/libvirt" ||:
rmdir "$(DESTDIR)$(localstatedir)/lib/libvirt/lockd/files" ||:
--
2.14.3
2
1
[libvirt] [PATCH v4 0/8] Add setting CPU features (CPUID) with libxenlight driver.
by Marek Marczykowski-GĂłrecki 27 Feb '18
by Marek Marczykowski-GĂłrecki 27 Feb '18
27 Feb '18
Add support for CPUID setting based on <cpu> element. Since libxl format
support only adjusting specific bits over host CPU, only
mode='host-passthrough' is supported - other values are rejected (including
default 'custom'). This will break some configurations working before (bare
<cpu> element with for example NUMA configuration), but libxl driver never
supported full 'custom' mode - it was silently ignored, which might lead to
some unexpected effects.
Since mode='host-passthrough' is now necessary to specify CPU options, do not
enable nested HVM feature by mere presence of this element, require also
enabling it in libxl.conf. Nested HVM is still in "preview" state, so better be
explicit here.
v2 of this patch series:
https://www.redhat.com/archives/libvir-list/2017-July/msg00050.html
v3 of this patch series:
https://www.redhat.com/archives/libvir-list/2017-December/msg00314.html
Marek Marczykowski-GĂłrecki (8):
libxl: fix libxlDriverConfigDispose for partially constructed object
libxl: pass driver config to libxlMakeDomBuildInfo
libxl: error out on not supported CPU mode, instead of silently ignoring
libxl: do not enable nested HVM unless global nested_hvm option enabled
libxl: add support for CPUID features policy
tests: check CPU features handling in libxl driver
xenconfig: add CPUID handling to domXML <-> xl.cfg conversion
tests: add test case for CPUID in xenconfig driver
src/libxl/libxl.conf | 6 +-
src/libxl/libxl_conf.c | 63 +-
src/libxl/libxl_conf.h | 4 +-
src/libxl/libxl_domain.c | 2 +-
src/xenconfig/xen_xl.c | 237 ++++++++-
src/xenconfig/xen_xl.h | 2 +-
tests/libxlxml2domconfigdata/fullvirt-cpuid.json | 64 ++-
tests/libxlxml2domconfigdata/fullvirt-cpuid.xml | 37 +-
tests/libxlxml2domconfigtest.c | 24 +-
tests/virmocklibxl.c | 25 +-
tests/xlconfigdata/test-fullvirt-cpuid.cfg | 25 +-
tests/xlconfigdata/test-fullvirt-cpuid.xml | 35 +-
tests/xlconfigdata/test-fullvirt-vnuma-autocomplete.cfg | 1 +-
tests/xlconfigdata/test-fullvirt-vnuma-autocomplete.xml | 2 +-
tests/xlconfigdata/test-fullvirt-vnuma-nodistances.cfg | 1 +-
tests/xlconfigdata/test-fullvirt-vnuma-nodistances.xml | 2 +-
tests/xlconfigdata/test-fullvirt-vnuma-partialdist.cfg | 1 +-
tests/xlconfigdata/test-fullvirt-vnuma-partialdist.xml | 2 +-
tests/xlconfigdata/test-fullvirt-vnuma.cfg | 1 +-
tests/xlconfigdata/test-fullvirt-vnuma.xml | 2 +-
tests/xlconfigtest.c | 1 +-
21 files changed, 491 insertions(+), 46 deletions(-)
create mode 100644 tests/libxlxml2domconfigdata/fullvirt-cpuid.json
create mode 100644 tests/libxlxml2domconfigdata/fullvirt-cpuid.xml
create mode 100644 tests/xlconfigdata/test-fullvirt-cpuid.cfg
create mode 100644 tests/xlconfigdata/test-fullvirt-cpuid.xml
base-commit: 6ce3acc129bfdbe7fd02bcb8bbe8af6d13903684
--
git-series 0.9.1
3
27
27 Feb '18
Since QEMU 2.12 guest crash information for S390 is available in the
QEMU monitor, e.g.:
{
"timestamp": {
"seconds": 1518004739,
"microseconds": 552563
},
"event": "GUEST_PANICKED",
"data": {
"action": "pause",
"info": {
"core": 0,
"psw-addr": 1102832,
"reason": "disabled-wait",
"psw-mask": 562956395872256,
"type": "s390"
}
}
}
Let's log this information into the domain log file, e.g.:
2018-02-08 13:11:26.075+0000: panic s390: core='0' psw-mask='0x0002000180000000' psw-addr='0x000000000010f146' reason='disabled-wait'
Reviewed-by: Boris Fiuczynski <fiuczy(a)linux.vnet.ibm.com>
Signed-off-by: Bjoern Walk <bwalk(a)linux.vnet.ibm.com>
---
src/qemu/qemu_monitor.c | 19 ++++++++++++++++++-
src/qemu/qemu_monitor.h | 12 ++++++++++++
src/qemu/qemu_monitor_json.c | 40 ++++++++++++++++++++++++++++++++++++++++
3 files changed, 70 insertions(+), 1 deletion(-)
diff --git a/src/qemu/qemu_monitor.c b/src/qemu/qemu_monitor.c
index 9b5ad72c..8c394583 100644
--- a/src/qemu/qemu_monitor.c
+++ b/src/qemu/qemu_monitor.c
@@ -4363,7 +4363,14 @@ qemuMonitorGuestPanicEventInfoFormatMsg(qemuMonitorEventPanicInfoPtr info)
info->data.hyperv.arg3, info->data.hyperv.arg4,
info->data.hyperv.arg5));
break;
-
+ case QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_S390:
+ ignore_value(virAsprintf(&ret, "s390: core='%d' psw-mask='0x%016llx' "
+ "psw-addr='0x%016llx' reason='%s'",
+ info->data.s390.core,
+ info->data.s390.psw_mask,
+ info->data.s390.psw_addr,
+ info->data.s390.reason));
+ break;
case QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_NONE:
case QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_LAST:
break;
@@ -4379,6 +4386,16 @@ qemuMonitorEventPanicInfoFree(qemuMonitorEventPanicInfoPtr info)
if (!info)
return;
+ switch (info->type) {
+ case QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_S390:
+ VIR_FREE(info->data.s390.reason);
+ break;
+ case QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_NONE:
+ case QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_HYPERV:
+ case QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_LAST:
+ break;
+ }
+
VIR_FREE(info);
}
diff --git a/src/qemu/qemu_monitor.h b/src/qemu/qemu_monitor.h
index ea0c01ae..4b3a5e21 100644
--- a/src/qemu/qemu_monitor.h
+++ b/src/qemu/qemu_monitor.h
@@ -73,6 +73,7 @@ struct _qemuMonitorMessage {
typedef enum {
QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_NONE = 0,
QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_HYPERV,
+ QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_S390,
QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_LAST
} qemuMonitorEventPanicInfoType;
@@ -88,12 +89,23 @@ struct _qemuMonitorEventPanicInfoHyperv {
unsigned long long arg5;
};
+typedef struct _qemuMonitorEventPanicInfoS390 qemuMonitorEventPanicInfoS390;
+typedef qemuMonitorEventPanicInfoS390 *qemuMonitorEventPanicInfoS390Ptr;
+struct _qemuMonitorEventPanicInfoS390 {
+ /* S390 specific guest panic information */
+ int core;
+ unsigned long long psw_mask;
+ unsigned long long psw_addr;
+ char *reason;
+};
+
typedef struct _qemuMonitorEventPanicInfo qemuMonitorEventPanicInfo;
typedef qemuMonitorEventPanicInfo *qemuMonitorEventPanicInfoPtr;
struct _qemuMonitorEventPanicInfo {
qemuMonitorEventPanicInfoType type;
union {
qemuMonitorEventPanicInfoHyperv hyperv;
+ qemuMonitorEventPanicInfoS390 s390;
} data;
};
diff --git a/src/qemu/qemu_monitor_json.c b/src/qemu/qemu_monitor_json.c
index 242b92ea..5c1f6836 100644
--- a/src/qemu/qemu_monitor_json.c
+++ b/src/qemu/qemu_monitor_json.c
@@ -576,6 +576,44 @@ qemuMonitorJSONGuestPanicExtractInfoHyperv(virJSONValuePtr data)
return NULL;
}
+static qemuMonitorEventPanicInfoPtr
+qemuMonitorJSONGuestPanicExtractInfoS390(virJSONValuePtr data)
+{
+ qemuMonitorEventPanicInfoPtr ret;
+ int core;
+ unsigned long long psw_mask, psw_addr;
+ const char *reason = NULL;
+
+ if (VIR_ALLOC(ret) < 0)
+ return NULL;
+
+ ret->type = QEMU_MONITOR_EVENT_PANIC_INFO_TYPE_S390;
+
+ if (virJSONValueObjectGetNumberInt(data, "core", &core) < 0 ||
+ virJSONValueObjectGetNumberUlong(data, "psw-mask", &psw_mask) < 0 ||
+ virJSONValueObjectGetNumberUlong(data, "psw-addr", &psw_addr) < 0) {
+ goto error;
+ }
+
+ ret->data.s390.core = core;
+ ret->data.s390.psw_mask = psw_mask;
+ ret->data.s390.psw_addr = psw_addr;
+
+ reason = virJSONValueObjectGetString(data, "reason");
+ if (!reason)
+ goto error;
+
+ if (VIR_STRDUP(ret->data.s390.reason, reason) < 0)
+ goto no_memory;
+
+ return ret;
+
+ error:
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("malformed s390 panic data"));
+ no_memory:
+ qemuMonitorEventPanicInfoFree(ret);
+ return NULL;
+}
static qemuMonitorEventPanicInfoPtr
qemuMonitorJSONGuestPanicExtractInfo(virJSONValuePtr data)
@@ -584,6 +622,8 @@ qemuMonitorJSONGuestPanicExtractInfo(virJSONValuePtr data)
if (STREQ_NULLABLE(type, "hyper-v"))
return qemuMonitorJSONGuestPanicExtractInfoHyperv(data);
+ else if (STREQ_NULLABLE(type, "s390"))
+ return qemuMonitorJSONGuestPanicExtractInfoS390(data);
virReportError(VIR_ERR_INTERNAL_ERROR,
_("unknown panic info type '%s'"), NULLSTR(type));
--
2.13.4
3
4
Use the templates at https://github.com/terinjokes/StickerConstructorSpec
to provide square and hexagon logos for libvirt, suitable for printing
as stickers.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
GIT complained about long lines in the SVG files, so this patch may be
mangled. If so, it is also at
https://github.com/berrange/libvirt/tree/stickers
Anyone know if its possible to easily line-wrap SVG files generated by
inkscape ?
The rendered SVG is here
http://people.redhat.com/berrange/logo-sticker-hexagon.png
http://people.redhat.com/berrange/logo-sticker-square.png
Note the borders would not actually be this thick in a printed sticker,
as this is including the bleed area.
docs/logos/README | 12 +
docs/logos/logo-sticker-hexagon.svg | 2479 +++++++++++++++++++++++++++++++++++
docs/logos/logo-sticker-square.svg | 2380 +++++++++++++++++++++++++++++++++
3 files changed, 4871 insertions(+)
create mode 100644 docs/logos/logo-sticker-hexagon.svg
create mode 100644 docs/logos/logo-sticker-square.svg
diff --git a/docs/logos/README b/docs/logos/README
index 872bd0f78b..bd37f5470f 100644
--- a/docs/logos/README
+++ b/docs/logos/README
@@ -62,6 +62,18 @@ format:
Bitmap sizes: 257x92, 800x286 px
+ - logo-sticker-square.svg
+
+ A logo formatted into a square shape with outline, suitable for printing
+ as a sticker. See https://github.com/terinjokes/StickerConstructorSpec
+
+
+ - logo-sticker-hexagon.svg
+
+ A logo formatted into a hexagon shape with outline, suitable for printing
+ as a sticker. See https://github.com/terinjokes/StickerConstructorSpec
+
+
PNG file creation
=================
diff --git a/docs/logos/logo-sticker-hexagon.svg b/docs/logos/logo-sticker-hexagon.svg
new file mode 100644
index 0000000000..db39a6cb9d
--- /dev/null
+++ b/docs/logos/logo-sticker-hexagon.svg
@@ -0,0 +1,2479 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="8.5in"
+ height="11in"
+ viewBox="0 0 765.00001 990.00003"
+ id="svg7307"
+ version="1.1"
+ inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
+ sodipodi:docname="logo-hexagon-sticker.svg">
+ <defs
+ id="defs7309">
+ <filter
+ style="color-interpolation-filters:sRGB"
+ inkscape:label="Drop Shadow"
+ id="filter5799">
+ <feFlood
+ flood-opacity="1"
+ flood-color="rgb(0,0,0)"
+ result="flood"
+ id="feFlood5801" />
+ <feComposite
+ in="flood"
+ in2="SourceGraphic"
+ operator="in"
+ result="composite1"
+ id="feComposite5803" />
+ <feGaussianBlur
+ in="composite1"
+ stdDeviation="6"
+ result="blur"
+ id="feGaussianBlur5805" />
+ <feOffset
+ dx="6"
+ dy="6"
+ result="offset"
+ id="feOffset5807" />
+ <feComposite
+ in="SourceGraphic"
+ in2="offset"
+ operator="over"
+ result="composite2"
+ id="feComposite5809" />
+ </filter>
+ <mask
+ maskUnits="userSpaceOnUse"
+ id="mask3913">
+ <path
+ style="fill:#2f6962"
+ id="path3915"
+ d="M 95.108,61.776 244.59,10.309 c 15.666,-5.394 32.738,2.933 38.132,18.599 l 39.799,115.58 c 5.394,15.666 -2.932,32.738 -18.598,38.131 l -103.98,35.801 z"
+ inkscape:connector-curvature="0" />
+ </mask>
+ <mask
+ maskUnits="userSpaceOnUse"
+ id="mask4168">
+ <path
+ style="fill:#7c858c"
+ id="path4170"
+ d="m 113.124,36.661 c 17.233,36.62 75.371,131.675 105.366,171.054 -4.069,13.505 -18.428,20.812 -30.299,17.44 L 72.849,58.555 C 72.779,46.208 95.748,31.956 113.124,36.661 Z"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ </mask>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3821"
+ id="linearGradient7006"
+ gradientUnits="userSpaceOnUse"
+ x1="128.61047"
+ y1="239.37396"
+ x2="138.61214"
+ y2="267.79517" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3821">
+ <stop
+ style="stop-color:#3e3e3e;stop-opacity:1;"
+ offset="0"
+ id="stop3823" />
+ <stop
+ style="stop-color:#3e3e3e;stop-opacity:0;"
+ offset="1"
+ id="stop3825" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3985"
+ id="linearGradient7008"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,-2)"
+ x1="173.70392"
+ y1="267.11093"
+ x2="166.66296"
+ y2="246.63959" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3985">
+ <stop
+ style="stop-color:#c8c7c5;stop-opacity:1;"
+ offset="0"
+ id="stop3987" />
+ <stop
+ style="stop-color:#c8c7c5;stop-opacity:0;"
+ offset="1"
+ id="stop3989" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4501"
+ id="radialGradient3548"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.5433331,-0.1032133,0.09131267,1.3653854,-130.42141,-95.005447)"
+ cx="197.5676"
+ cy="252.71837"
+ fx="197.5676"
+ fy="252.71837"
+ r="166.51035" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4501">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop4503" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop4505" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4501"
+ id="radialGradient3552"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.870471,-0.6430111,0.256613,0.7464679,-116.69068,109.71214)"
+ cx="135.63954"
+ cy="12.000564"
+ fx="135.63954"
+ fy="12.000564"
+ r="161.65305" />
+ <filter
+ inkscape:label="Ridged Border"
+ inkscape:menu="Bevels"
+ inkscape:menu-tooltip="Ridged border with inner bevel"
+ style="color-interpolation-filters:sRGB"
+ id="filter5576">
+ <feMorphology
+ radius="4.3"
+ in="SourceAlpha"
+ result="result91"
+ id="feMorphology5578" />
+ <feComposite
+ operator="out"
+ in="SourceGraphic"
+ in2="result91"
+ id="feComposite5580" />
+ <feGaussianBlur
+ result="result0"
+ stdDeviation="1.2"
+ id="feGaussianBlur5582" />
+ <feDiffuseLighting
+ diffuseConstant="1"
+ id="feDiffuseLighting5584">
+ <feDistantLight
+ elevation="66"
+ azimuth="225"
+ id="feDistantLight5586" />
+ </feDiffuseLighting>
+ <feBlend
+ mode="multiply"
+ in2="SourceGraphic"
+ id="feBlend5588" />
+ <feComposite
+ operator="in"
+ in2="SourceAlpha"
+ id="feComposite5590" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3301"
+ id="linearGradient7010"
+ gradientUnits="userSpaceOnUse"
+ x1="227.66476"
+ y1="217.85138"
+ x2="227.66476"
+ y2="275.00342" />
+ <linearGradient
+ id="linearGradient3301">
+ <stop
+ id="stop3303"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3305"
+ offset="1"
+ style="stop-color:#868686;stop-opacity:1;" />
+ </linearGradient>
+ <mask
+ maskUnits="userSpaceOnUse"
+ id="mask4481">
+ <path
+ style="clip-rule:evenodd;fill:#aaaaaa;fill-rule:evenodd"
+ id="path4483"
+ d="m 213.96734,236.83626 c -1.97572,1.50086 -5.71734,14.75814 -3.57441,17.84065 3.18643,4.58465 22.42412,-12.69851 20.66112,-17.24646 -1.81294,-4.67518 -15.35694,-1.41227 -17.08671,-0.59419 z m -9.6286,-7.34722 2.48938,3.78195 c 0,0 0.69017,1.04372 0.29628,3.40302 -0.6156,3.68976 -3.17495,13.25876 -3.32578,21.12255 -0.0183,0.94976 -0.91914,9.5039 7.21943,7.07006 8.1393,-2.43309 24.96824,-17.85854 28.33195,-24.69252 3.36372,-6.83399 -0.96483,-10.63865 -6.21591,-10.98709 -5.2511,-0.34921 -13.3456,0.21962 -17.06874,0.84795 -3.72313,0.62832 -3.49361,-0.75818 -6.67723,-4.3506 -0.23896,-0.26961 -5.04938,3.80468 -5.04938,3.80468 z"
+ inkscape:connector-curvature="0" />
+ </mask>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4501"
+ id="radialGradient4507"
+ cx="143.59599"
+ cy="139.937"
+ fx="143.59599"
+ fy="139.937"
+ r="68.377998"
+ gradientTransform="matrix(1.3366435,0.07829819,-0.1078591,1.8412818,-33.247188,-128.96975)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.2060606"
+ inkscape:cx="540.74989"
+ inkscape:cy="656.96993"
+ inkscape:document-units="px"
+ inkscape:current-layer="g3051"
+ showgrid="false"
+ units="in"
+ fit-margin-top="1"
+ fit-margin-bottom="1"
+ fit-margin-right="1"
+ fit-margin-left="1"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1136"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1">
+ <sodipodi:guide
+ position="526.50754,705.18846"
+ orientation="0,1"
+ id="guide8412"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="562.98996,525.67841"
+ orientation="0,1"
+ id="guide8414"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7312">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Template Text"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ style="font-style:normal;font-weight:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8212">
+ <path
+ d="m 52.787113,86.295895 q 3.519771,0 5.595108,1.975721 2.091939,1.97572 2.091939,5.412478 0,4.06766 -2.507007,6.259215 -2.507006,2.191551 -7.172363,2.191551 -4.051057,0 -6.541461,-1.31161 v -4.432917 q 1.311613,0.697313 3.054895,1.145586 1.743283,0.43167 3.303936,0.43167 4.698562,0 4.698562,-3.851825 0,-3.669195 -4.864589,-3.669195 -0.879942,0 -1.942515,0.182629 -1.062572,0.166027 -1.72668,0.365259 L 44.734807,89.89868 45.647955,77.529673 h 13.165936 v 4.349906 h -8.666606 l -0.448273,4.764973 0.581094,-0.116219 q 1.012765,-0.232438 2.507007,-0.232438 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5249"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 63.92752,99.428626 q 0,-1.394627 0.747121,-2.108542 0.747121,-0.713916 2.174953,-0.713916 1.378023,0 2.125144,0.730518 0.763724,0.730519 0.763724,2.09194 0,1.311614 -0.763724,2.075334 -0.763724,0.74712 -2.125144,0.74712 -1.394627,0 -2.158351,-0.73052 -0.763723,-0.74712 -0.763723,-2.091934 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5251"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 89.877529,89.666242 q 0,6.358831 -2.09194,9.413727 -2.075336,3.054891 -6.408639,3.054891 -4.200482,0 -6.342229,-3.154507 -2.125145,-3.154512 -2.125145,-9.314111 0,-6.425242 2.075337,-9.463535 2.075336,-3.054896 6.392037,-3.054896 4.200481,0 6.342228,3.187717 2.158351,3.187718 2.158351,9.330714 z m -11.870926,0 q 0,4.466124 0.763724,6.40864 0.780326,1.925912 2.606623,1.925912 1.793091,0 2.59002,-1.959118 0.796929,-1.959118 0.796929,-6.375434 0,-4.466124 -0.813532,-6.40864 -0.796929,-1.959117 -2.573417,-1.959117 -1.809694,0 -2.59002,1.959117 -0.780327,1.942516 -0.780327,6.40864 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5253"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 100.8021,77.214222 q 3.48657,0 5.61171,1.593859 2.14175,1.577256 2.14175,4.266892 0,1.859501 -1.02937,3.320538 -1.02937,1.444435 -3.32054,2.590021 2.72284,1.461037 3.90163,3.054895 1.1954,1.577256 1.1954,3.469963 0,2.988485 -2.34098,4.81478 -2.34098,1.80969 -6.1596,1.80969 -3.984646,0 -6.259215,-1.69347 -2.274569,-1.693475 -2.274569,-4.798178 0,-2.075337 1.095777,-3.685798 1.112381,-1.610462 3.552977,-2.839061 -2.075337,-1.311613 -2.988485,-2.805855 -0.913148,-1.494242 -0.913148,-3.270731 0,-2.606622 2.15835,-4.217084 2.15835,-1.610461 5.628313,-1.610461 z m -3.785414,18.130141 q 0,1.427832 0.996161,2.224761 0.996162,0.796929 2.722843,0.796929 1.90931,0 2.85566,-0.813532 0.94636,-0.830134 0.94636,-2.174953 0,-1.11238 -0.94636,-2.075336 -0.92975,-0.979559 -3.03829,-2.075337 -3.536374,1.627064 -3.536374,4.117468 z m 3.752204,-14.377932 q -1.311608,0 -2.12514,0.68071 -0.796929,0.664108 -0.796929,1.793091 0,0.996162 0.630902,1.793091 0.647505,0.780327 2.324377,1.610461 1.62706,-0.763724 2.27457,-1.560653 0.6475,-0.796929 0.6475,-1.842899 0,-1.145586 -0.83013,-1.809693 -0.83014,-0.664108 -2.12515,-0.664108 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5255"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 129.49155,102.13486 q -8.66661,0 -8.66661,-9.513339 0,-4.731767 2.35759,-7.222171 2.35758,-2.507007 6.75729,-2.507007 3.22093,0 5.77774,1.261805 l -1.49424,3.918235 q -1.1954,-0.481478 -2.22476,-0.780326 -1.02937,-0.315451 -2.05874,-0.315451 -3.95144,0 -3.95144,5.61171 0,5.445683 3.95144,5.445683 1.46104,0 2.70624,-0.381862 1.2452,-0.398464 2.49041,-1.228599 v 4.333302 q -1.2286,0.78033 -2.49041,1.07918 -1.2452,0.29884 -3.15451,0.29884 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5257"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 156.03926,101.80281 h -5.06382 V 90.961252 q 0,-2.008926 -0.68071,-3.005087 -0.66411,-1.012765 -2.10855,-1.012765 -1.94251,0 -2.82245,1.427832 -0.87995,1.427832 -0.87995,4.698562 v 8.733016 h -5.06382 V 83.241 h 3.86843 l 0.68071,2.374185 h 0.28225 q 0.74712,-1.278407 2.15835,-1.992323 1.41122,-0.730519 3.23752,-0.730519 4.16728,0 5.64492,2.722842 h 0.44827 q 0.74712,-1.29501 2.19155,-2.008926 1.46104,-0.713916 3.28734,-0.713916 3.15451,0 4.76497,1.627064 1.62706,1.610461 1.62706,5.18004 v 12.103363 h -5.08042 V 90.961252 q 0,-2.008926 -0.68071,-3.005087 -0.66411,-1.012765 -2.10854,-1.012765 -1.8595,0 -2.78925,1.328216 -0.91315,1.328215 -0.91315,4.217084 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5259"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 192.88064,77.529673 -9.04847,24.273137 h -4.59894 l 9.04847,-24.273137 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5261"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 220.24188,101.80281 h -16.96796 v -3.569578 l 6.09319,-6.1596 q 2.70624,-2.772649 3.53638,-3.835222 0.83013,-1.079175 1.19539,-1.992323 0.36526,-0.913148 0.36526,-1.892707 0,-1.461037 -0.81353,-2.174953 -0.79693,-0.713915 -2.14175,-0.713915 -1.41123,0 -2.73945,0.647505 -1.32821,0.647505 -2.77265,1.842899 l -2.78925,-3.303936 q 1.79309,-1.527448 2.97188,-2.15835 1.1788,-0.630903 2.57342,-0.962957 1.39463,-0.348656 3.12131,-0.348656 2.27457,0 4.01785,0.830134 1.74328,0.830135 2.70624,2.324377 0.96296,1.494243 0.96296,3.420155 0,1.676872 -0.5977,3.154512 -0.5811,1.461037 -1.8263,3.005087 -1.2286,1.544051 -4.3499,4.399714 l -3.12131,2.938677 v 0.232437 h 10.57592 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5263"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 228.14475,77.529673 -0.68071,8.766222 h -3.27073 l -0.68071,-8.766222 z m 7.00634,0 -0.68071,8.766222 h -3.27074 l -0.68071,-8.766222 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5265"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 269.15341,101.80281 h -5.13023 V 91.326511 h -9.61296 v 10.476299 h -5.14683 V 77.529673 h 5.14683 v 9.513343 h 9.61296 v -9.513343 h 5.13023 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5267"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 282.58499,86.495128 q -1.61046,0 -2.52361,1.029367 -0.91315,1.012764 -1.04597,2.888868 h 7.10595 q -0.0332,-1.876104 -0.97956,-2.888868 -0.94635,-1.029367 -2.55681,-1.029367 z m 0.71392,15.639732 q -4.48273,0 -7.00634,-2.473797 -2.52361,-2.473801 -2.52361,-7.006336 0,-4.665357 2.32438,-7.205569 2.34098,-2.556815 6.45844,-2.556815 3.93484,0 6.1264,2.241364 2.19155,2.241363 2.19155,6.192804 v 2.457199 h -11.97054 q 0.083,2.15835 1.27841,3.370347 1.19539,1.211996 3.35374,1.211996 1.67688,0 3.17112,-0.348656 1.49424,-0.348657 3.1213,-1.112381 v 3.918234 q -1.32821,0.66411 -2.83906,0.97956 -1.51084,0.33205 -3.68579,0.33205 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5269"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 298.82241,92.322673 292.84544,83.241 h 5.74453 l 3.60279,5.910559 3.63599,-5.910559 h 5.74453 l -6.04338,9.081673 6.32563,9.480137 h -5.76114 l -3.90163,-6.358831 -3.91824,6.358831 h -5.74453 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5271"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 326.4659,101.80281 -0.97956,-2.523609 h -0.13282 q -1.27841,1.610459 -2.63983,2.241359 -1.34482,0.6143 -3.51977,0.6143 -2.67303,0 -4.21708,-1.52744 -1.52745,-1.527451 -1.52745,-4.349909 0,-2.955279 2.05873,-4.349905 2.07534,-1.411229 6.24262,-1.560654 l 3.22092,-0.09962 V 89.4338 q 0,-2.822458 -2.88887,-2.822458 -2.22476,0 -5.22985,1.344819 l -1.67687,-3.420155 q 3.20432,-1.676872 7.10595,-1.676872 3.73561,0 5.72793,1.627064 1.99232,1.627064 1.99232,4.947602 v 12.36901 z m -1.49424,-8.600194 -1.95912,0.06641 q -2.20816,0.06641 -3.28733,0.79693 -1.07918,0.730518 -1.07918,2.224761 0,2.141747 2.4572,2.141747 1.75989,0 2.80586,-1.012764 1.06257,-1.012765 1.06257,-2.689637 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5273"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 351.35334,83.241 v 2.573417 l -2.90547,0.747121 q 0.79693,1.245202 0.79693,2.789253 0,2.988485 -2.09194,4.665357 -2.07533,1.660269 -5.77774,1.660269 l -0.91314,-0.04981 -0.74712,-0.08301 q -0.78033,0.597697 -0.78033,1.328216 0,1.095778 2.78925,1.095778 h 3.15451 q 3.0549,0 4.64876,1.311612 1.61046,1.311607 1.61046,3.851827 0,3.25412 -2.72284,5.04721 -2.70624,1.7931 -7.78667,1.7931 -3.88503,0 -5.94376,-1.36143 -2.04213,-1.34481 -2.04213,-3.78541 0,-1.67687 1.04597,-2.80585 1.04597,-1.12899 3.0715,-1.61047 -0.78033,-0.33205 -1.36142,-1.079169 -0.5811,-0.763723 -0.5811,-1.610461 0,-1.062572 0.6143,-1.759885 0.6143,-0.713916 1.77649,-1.394627 -1.46104,-0.630902 -2.32438,-2.025528 -0.84674,-1.394626 -0.84674,-3.287333 0,-3.038293 1.97572,-4.698562 1.97573,-1.66027 5.64492,-1.66027 0.78033,0 1.8429,0.149424 1.07917,0.132822 1.37802,0.199233 h 6.47505 z m -14.32812,21.18504 q 0,1.04597 0.99616,1.64366 1.01276,0.5977 2.82246,0.5977 2.72284,0 4.26689,-0.74712 1.54405,-0.74712 1.54405,-2.04213 0,-1.04597 -0.91315,-1.44444 -0.91315,-0.39846 -2.82245,-0.39846 h -2.62323 q -1.39463,0 -2.34098,0.6475 -0.92975,0.66411 -0.92975,1.74329 z m 1.8429,-15.108455 q 0,1.510846 0.68071,2.390788 0.69731,0.879943 2.10854,0.879943 1.42783,0 2.09194,-0.879943 0.66411,-0.879942 0.66411,-2.390788 0,-3.353744 -2.75605,-3.353744 -2.78925,0 -2.78925,3.353744 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5275"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 358.4261,92.4887 q 0,2.756047 0.89654,4.167276 0.91315,1.411229 2.95528,1.411229 2.02553,0 2.90547,-1.394627 0.89655,-1.411228 0.89655,-4.183878 0,-2.756047 -0.89655,-4.134071 -0.89654,-1.378023 -2.93867,-1.378023 -2.02553,0 -2.92208,1.378023 -0.89654,1.361421 -0.89654,4.134071 z m 12.83388,0 q 0,4.532535 -2.39079,7.08935 -2.39079,2.55681 -6.65768,2.55681 -2.67303,0 -4.71517,-1.16218 -2.04213,-1.178795 -3.1379,-3.370351 -1.09578,-2.191555 -1.09578,-5.113629 0,-4.549138 2.37418,-7.072747 2.37419,-2.52361 6.67429,-2.52361 2.67303,0 4.71516,1.162189 2.04213,1.162188 3.13791,3.337141 1.09578,2.174953 1.09578,5.097027 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5277"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 392.57784,101.80281 h -5.06383 V 90.961252 q 0,-2.008926 -0.71391,-3.005087 -0.71392,-1.012765 -2.27457,-1.012765 -2.12514,0 -3.0715,1.427832 -0.94635,1.411229 -0.94635,4.698562 v 8.733016 h -5.06382 V 83.241 h 3.86842 l 0.68071,2.374185 h 0.28225 q 0.84674,-1.344818 2.32438,-2.025529 1.49424,-0.697313 3.38695,-0.697313 3.23752,0 4.91439,1.759886 1.67688,1.743282 1.67688,5.047218 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5279"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 409.6122,101.80281 -0.97956,-2.523609 h -0.13282 q -1.27841,1.610459 -2.63983,2.241359 -1.34482,0.6143 -3.51977,0.6143 -2.67303,0 -4.21708,-1.52744 -1.52745,-1.527451 -1.52745,-4.349909 0,-2.955279 2.05873,-4.349905 2.07534,-1.411229 6.24262,-1.560654 l 3.22092,-0.09962 V 89.4338 q 0,-2.822458 -2.88887,-2.822458 -2.22476,0 -5.22985,1.344819 l -1.67687,-3.420155 q 3.20432,-1.676872 7.10595,-1.676872 3.73561,0 5.72793,1.627064 1.99232,1.627064 1.99232,4.947602 v 12.36901 z m -1.49424,-8.600194 -1.95912,0.06641 q -2.20816,0.06641 -3.28733,0.79693 -1.07918,0.730518 -1.07918,2.224761 0,2.141747 2.4572,2.141747 1.75989,0 2.80586,-1.012764 1.06257,-1.012765 1.06257,-2.689637 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5281"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 423.40901,101.80281 h -5.06382 V 75.96902 h 5.06382 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5283"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 452.2645,95.062117 q 0,3.287333 -2.37418,5.180043 -2.35759,1.8927 -6.57467,1.8927 -3.88503,0 -6.87352,-1.46103 v -4.781578 q 2.4572,1.095778 4.15068,1.54405 1.71007,0.448273 3.1213,0.448273 1.69348,0 2.59002,-0.647505 0.91315,-0.647505 0.91315,-1.925912 0,-0.713916 -0.39846,-1.261805 -0.39847,-0.564492 -1.17879,-1.079175 -0.76373,-0.514684 -3.13791,-1.643667 -2.22476,-1.045969 -3.33714,-2.008926 -1.11238,-0.962956 -1.77649,-2.241363 -0.66411,-1.278408 -0.66411,-2.988485 0,-3.220922 2.17495,-5.063821 2.19156,-1.842899 6.04338,-1.842899 1.89271,0 3.60279,0.448272 1.72668,0.448273 3.60278,1.261805 l -1.66027,4.001249 q -1.94251,-0.796929 -3.22092,-1.11238 -1.2618,-0.315451 -2.4904,-0.315451 -1.46104,0 -2.24137,0.68071 -0.78032,0.68071 -0.78032,1.776488 0,0.680711 0.31545,1.195394 0.31545,0.498081 0.99616,0.979559 0.69731,0.464875 3.27073,1.693475 3.40355,1.627064 4.66536,3.27073 1.2618,1.627064 1.2618,4.001249 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5285"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 464.08562,98.10041 q 1.32822,0 3.18772,-0.581094 v 3.768814 q -1.89271,0.84673 -4.64875,0.84673 -3.0383,0 -4.43292,-1.52744 -1.37802,-1.544054 -1.37802,-4.615552 v -8.948852 h -2.424 v -2.141747 l 2.78925,-1.693475 1.46104,-3.918235 h 3.23753 V 83.241 h 5.19664 v 3.802016 h -5.19664 v 8.948852 q 0,1.079175 0.59769,1.593859 0.6143,0.514683 1.61046,0.514683 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5287"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 470.79312,78.442821 q 0,-2.473801 2.75604,-2.473801 2.75605,0 2.75605,2.473801 0,1.178792 -0.69731,1.842899 -0.68071,0.647505 -2.05874,0.647505 -2.75604,0 -2.75604,-2.490404 z m 5.27965,23.359989 h -5.06382 V 83.241 h 5.06382 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5289"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 488.90665,102.13486 q -8.66661,0 -8.66661,-9.513339 0,-4.731767 2.35759,-7.222171 2.35758,-2.507007 6.75729,-2.507007 3.22093,0 5.77774,1.261805 l -1.49424,3.918235 q -1.1954,-0.481478 -2.22476,-0.780326 -1.02937,-0.315451 -2.05874,-0.315451 -3.95144,0 -3.95144,5.61171 0,5.445683 3.95144,5.445683 1.46104,0 2.70624,-0.381862 1.2452,-0.398464 2.49041,-1.228599 v 4.333302 q -1.2286,0.78033 -2.49041,1.07918 -1.2452,0.29884 -3.15451,0.29884 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5291"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 503.69965,91.708373 2.20816,-2.822458 5.19664,-5.644915 h 5.71133 l -7.3716,8.052306 7.81987,10.509504 h -5.84415 l -5.34606,-7.521019 -2.17496,1.743282 v 5.777737 h -5.06382 V 75.96902 h 5.06382 v 11.522269 l -0.26564,4.217084 h 0.0664 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5293"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 527.64073,86.495128 q -1.61046,0 -2.52361,1.029367 -0.91315,1.012764 -1.04597,2.888868 h 7.10595 q -0.0332,-1.876104 -0.97955,-2.888868 -0.94636,-1.029367 -2.55682,-1.029367 z m 0.71392,15.639732 q -4.48273,0 -7.00634,-2.473797 -2.52361,-2.473801 -2.52361,-7.006336 0,-4.665357 2.32438,-7.205569 2.34098,-2.556815 6.45845,-2.556815 3.93483,0 6.12639,2.241364 2.19155,2.241363 2.19155,6.192804 v 2.457199 h -11.97054 q 0.083,2.15835 1.27841,3.370347 1.19539,1.211996 3.35374,1.211996 1.67688,0 3.17112,-0.348656 1.49424,-0.348657 3.1213,-1.112381 v 3.918234 q -1.32821,0.66411 -2.83906,0.97956 -1.51084,0.33205 -3.68579,0.33205 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5295"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 550.43623,82.892343 q 1.02937,0 1.71008,0.149424 l -0.38186,4.748371 q -0.6143,-0.166027 -1.49425,-0.166027 -2.42399,0 -3.78541,1.245202 -1.34482,1.245202 -1.34482,3.486565 v 9.446932 h -5.06382 V 83.241 h 3.83522 l 0.74712,3.121306 h 0.24904 q 0.86334,-1.560653 2.32438,-2.507007 1.47764,-0.962956 3.20432,-0.962956 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5297"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 574.14487,101.80281 h -5.14684 V 81.813168 h -6.59126 v -4.283495 h 18.32937 v 4.283495 h -6.59127 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5299"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 591.79353,86.495128 q -1.61046,0 -2.52361,1.029367 -0.91315,1.012764 -1.04597,2.888868 h 7.10596 q -0.0332,-1.876104 -0.97956,-2.888868 -0.94636,-1.029367 -2.55682,-1.029367 z m 0.71392,15.639732 q -4.48273,0 -7.00634,-2.473797 -2.52361,-2.473801 -2.52361,-7.006336 0,-4.665357 2.32438,-7.205569 2.34098,-2.556815 6.45845,-2.556815 3.93483,0 6.12639,2.241364 2.19156,2.241363 2.19156,6.192804 v 2.457199 h -11.97055 q 0.083,2.15835 1.27841,3.370347 1.1954,1.211996 3.35375,1.211996 1.67687,0 3.17111,-0.348656 1.49424,-0.348657 3.12131,-1.112381 v 3.918234 q -1.32822,0.66411 -2.83906,0.97956 -1.51085,0.33205 -3.6858,0.33205 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5301"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 620.84828,101.80281 h -5.06382 V 90.961252 q 0,-2.008926 -0.68071,-3.005087 -0.66411,-1.012765 -2.10855,-1.012765 -1.94251,0 -2.82245,1.427832 -0.87995,1.427832 -0.87995,4.698562 v 8.733016 h -5.06382 V 83.241 h 3.86843 l 0.68071,2.374185 h 0.28225 q 0.74712,-1.278407 2.15835,-1.992323 1.41123,-0.730519 3.23752,-0.730519 4.16728,0 5.64492,2.722842 h 0.44827 q 0.74712,-1.29501 2.19156,-2.008926 1.46103,-0.713916 3.28733,-0.713916 3.15451,0 4.76497,1.627064 1.62707,1.610461 1.62707,5.18004 v 12.103363 h -5.08043 V 90.961252 q 0,-2.008926 -0.68071,-3.005087 -0.66411,-1.012765 -2.10854,-1.012765 -1.8595,0 -2.78925,1.328216 -0.91315,1.328215 -0.91315,4.217084 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5303"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 647.82764,102.13486 q -3.27073,0 -5.13023,-2.374181 h -0.26565 q 0.26565,2.324381 0.26565,2.689641 v 7.52102 h -5.06383 V 83.241 h 4.11747 l 0.71392,2.40739 h 0.23244 q 1.77648,-2.756047 5.26305,-2.756047 3.28733,0 5.14683,2.540212 1.85951,2.540212 1.85951,7.056145 0,2.971882 -0.87995,5.163437 -0.86334,2.191556 -2.4738,3.337143 -1.61046,1.14558 -3.78541,1.14558 z M 646.3334,86.9434 q -1.87611,0 -2.73945,1.162189 -0.86334,1.145586 -0.89654,3.802017 v 0.547888 q 0,2.988485 0.87994,4.283495 0.89654,1.29501 2.82246,1.29501 3.40355,0 3.40355,-5.61171 0,-2.739444 -0.84674,-4.100865 Q 648.12649,86.9434 646.3334,86.9434 Z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5305"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 664.2145,101.80281 h -5.06383 V 75.96902 h 5.06383 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5307"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 681.29863,101.80281 -0.97956,-2.523609 h -0.13282 q -1.2784,1.610459 -2.63983,2.241359 -1.34481,0.6143 -3.51977,0.6143 -2.67303,0 -4.21708,-1.52744 -1.52745,-1.527451 -1.52745,-4.349909 0,-2.955279 2.05874,-4.349905 2.07533,-1.411229 6.24261,-1.560654 l 3.22092,-0.09962 V 89.4338 q 0,-2.822458 -2.88887,-2.822458 -2.22476,0 -5.22985,1.344819 L 670.0088,84.53601 q 3.20432,-1.676872 7.10595,-1.676872 3.73561,0 5.72793,1.627064 1.99233,1.627064 1.99233,4.947602 v 12.369006 z m -1.49424,-8.600194 -1.95912,0.06641 q -2.20816,0.06641 -3.28733,0.79693 -1.07918,0.730518 -1.07918,2.224761 0,2.141747 2.4572,2.141747 1.75989,0 2.80586,-1.012764 1.06257,-1.012765 1.06257,-2.689637 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5309"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 697.85152,98.10041 q 1.32822,0 3.18772,-0.581094 v 3.768814 q -1.89271,0.84673 -4.64875,0.84673 -3.0383,0 -4.43292,-1.52744 -1.37803,-1.544054 -1.37803,-4.615552 v -8.948852 h -2.42399 v -2.141747 l 2.78925,-1.693475 1.46104,-3.918235 h 3.23753 V 83.241 h 5.19664 v 3.802016 h -5.19664 v 8.948852 q 0,1.079175 0.59769,1.593859 0.6143,0.514683 1.61046,0.514683 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5311"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 712.46193,86.495128 q -1.61046,0 -2.52361,1.029367 -0.91315,1.012764 -1.04597,2.888868 h 7.10595 q -0.0332,-1.876104 -0.97956,-2.888868 -0.94635,-1.029367 -2.55681,-1.029367 z m 0.71391,15.639732 q -4.48272,0 -7.00633,-2.473797 -2.52361,-2.473801 -2.52361,-7.006336 0,-4.665357 2.32437,-7.205569 2.34098,-2.556815 6.45845,-2.556815 3.93484,0 6.1264,2.241364 2.19155,2.241363 2.19155,6.192804 v 2.457199 h -11.97054 q 0.083,2.15835 1.27841,3.370347 1.19539,1.211996 3.35374,1.211996 1.67687,0 3.17112,-0.348656 1.49424,-0.348657 3.1213,-1.112381 v 3.918234 q -1.32821,0.66411 -2.83906,0.97956 -1.51084,0.33205 -3.6858,0.33205 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5313"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(178.67433,582.63783)"
+ style="font-style:normal;font-weight:normal;font-size:29.74009705px;line-height:120.00000477%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8216">
+ <path
+ d="m -85.433484,-457.63349 q 0,-1.62412 0.471914,-3.03986 0.478044,-1.41575 1.372843,-2.48215 h 0.992859 q -0.882541,1.18285 -1.329941,2.59859 -0.441271,1.41575 -0.441271,2.91117 0,1.4709 0.453528,2.87438 0.453529,1.40349 1.305427,2.56183 h -0.980602 q -0.900928,-1.04189 -1.372843,-2.43312 -0.471914,-1.39123 -0.471914,-2.99084 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5064"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -78.219932,-454.19525 h -1.04189 v -8.03481 h -2.837616 v -0.92544 h 6.717122 v 0.92544 h -2.837616 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5066"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -69.596764,-454.19525 v -4.34529 q 0,-0.82126 -0.373855,-1.22576 -0.373854,-0.40449 -1.170593,-0.40449 -1.060276,0 -1.550577,0.5761 -0.484172,0.5761 -0.484172,1.88766 v 3.51178 h -1.017374 v -9.53635 h 1.017374 v 2.88664 q 0,0.52095 -0.04903,0.86416 h 0.06129 q 0.30031,-0.48417 0.851898,-0.75997 0.557718,-0.28192 1.268654,-0.28192 1.231881,0 1.844757,0.58836 0.619005,0.58223 0.619005,1.85701 v 4.38207 h -1.017374 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5068"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -65.478238,-454.19525 h -1.017374 v -6.71712 h 1.017374 z m -1.103177,-8.53737 q 0,-0.34934 0.171606,-0.50868 0.171605,-0.16548 0.429013,-0.16548 0.24515,0 0.422884,0.16548 0.177735,0.16547 0.177735,0.50868 0,0.34321 -0.177735,0.51482 -0.177734,0.16548 -0.422884,0.16548 -0.257408,0 -0.429013,-0.16548 -0.171606,-0.17161 -0.171606,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5070"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -58.975621,-456.02775 q 0,0.9377 -0.698679,1.44639 -0.698679,0.50868 -1.961204,0.50868 -1.33607,0 -2.083779,-0.42288 v -0.94383 q 0.484172,0.24515 1.035761,0.38611 0.557717,0.14096 1.072533,0.14096 0.796739,0 1.225753,-0.25128 0.429013,-0.2574 0.429013,-0.77835 0,-0.39224 -0.343211,-0.66803 -0.337082,-0.28193 -1.323812,-0.66191 -0.937701,-0.34934 -1.33607,-0.60675 -0.392241,-0.26353 -0.588361,-0.59449 -0.189992,-0.33095 -0.189992,-0.79061 0,-0.82125 0.668035,-1.29317 0.668035,-0.47804 1.8325,-0.47804 1.084791,0 2.120551,0.44127 l -0.361597,0.82738 q -1.011245,-0.41675 -1.832499,-0.41675 -0.723194,0 -1.09092,0.22676 -0.367726,0.22677 -0.367726,0.62514 0,0.26966 0.134833,0.45965 0.140962,0.19 0.4474,0.3616 0.306438,0.17161 1.176722,0.49643 1.195108,0.43514 1.611864,0.87641 0.422885,0.44127 0.422885,1.10931 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5072"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -51.896902,-454.91232 q 0.269666,0 0.520945,-0.0368 0.251279,-0.0429 0.398369,-0.0858 v 0.77835 q -0.165476,0.0797 -0.490301,0.1287 -0.318695,0.0552 -0.576103,0.0552 -1.948946,0 -1.948946,-2.05313 v -3.99595 h -0.962216 v -0.4903 l 0.962216,-0.42289 0.429013,-1.43413 h 0.588361 v 1.55671 h 1.948946 v 0.79061 h -1.948946 v 3.95305 q 0,0.60674 0.288052,0.93157 0.288052,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5074"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -46.791642,-454.07268 q -1.489289,0 -2.353444,-0.90705 -0.858027,-0.90706 -0.858027,-2.51892 0,-1.62413 0.796739,-2.58021 0.802868,-0.95609 2.151196,-0.95609 1.262525,0 1.997976,0.83351 0.735451,0.82739 0.735451,2.18797 v 0.64352 h -4.627215 q 0.03064,1.18285 0.59449,1.79573 0.569975,0.61287 1.599607,0.61287 1.084791,0 2.145067,-0.45352 v 0.90705 q -0.539331,0.23289 -1.023504,0.33095 -0.478043,0.10419 -1.158336,0.10419 z m -0.275794,-6.11037 q -0.808996,0 -1.293168,0.52707 -0.478044,0.52708 -0.563846,1.45865 h 3.51178 q 0,-0.96222 -0.429013,-1.47091 -0.429014,-0.51481 -1.225753,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5076"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -34.031562,-454.19525 v -4.36981 q 0,-0.80287 -0.343211,-1.20124 -0.34321,-0.40449 -1.066404,-0.40449 -0.949958,0 -1.403487,0.54546 -0.453528,0.54546 -0.453528,1.67928 v 3.7508 h -1.017374 v -4.36981 q 0,-0.80287 -0.343211,-1.20124 -0.343211,-0.40449 -1.072533,-0.40449 -0.956087,0 -1.403487,0.5761 -0.44127,0.56997 -0.44127,1.8754 v 3.52404 h -1.017375 v -6.71712 h 0.827383 l 0.165476,0.91931 h 0.04903 q 0.288051,-0.4903 0.808996,-0.76609 0.527074,-0.2758 1.176722,-0.2758 1.575092,0 2.059264,1.13995 h 0.04903 q 0.30031,-0.52707 0.870284,-0.83351 0.569975,-0.30644 1.299298,-0.30644 1.139949,0 1.703795,0.58836 0.569975,0.58223 0.569975,1.86927 v 4.38207 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5078"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -27.798611,-454.07268 q -0.655777,0 -1.201237,-0.23902 -0.539331,-0.24515 -0.907057,-0.74771 h -0.07355 q 0.07355,0.58836 0.07355,1.11544 v 2.76407 h -1.017374 v -9.73247 h 0.827383 l 0.140961,0.91931 h 0.04903 q 0.392241,-0.55159 0.913186,-0.79674 0.520944,-0.24515 1.195108,-0.24515 1.33607,0 2.059264,0.91319 0.729323,0.91318 0.729323,2.56182 0,1.65476 -0.74158,2.57408 -0.735452,0.91318 -2.047007,0.91318 z m -0.14709,-6.09811 q -1.029632,0 -1.489289,0.56997 -0.459657,0.56998 -0.471915,1.81411 v 0.22677 q 0,1.41574 0.471915,2.02862 0.471915,0.60675 1.513804,0.60675 0.870284,0 1.360585,-0.70481 0.49643,-0.70481 0.49643,-1.94282 0,-1.2564 -0.49643,-1.92443 -0.490301,-0.67416 -1.3851,-0.67416 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5080"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -22.209181,-454.19525 h -1.017375 v -9.53635 h 1.017375 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5082"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -15.908816,-454.19525 -0.202249,-0.95609 h -0.04903 q -0.502559,0.63126 -1.005117,0.85803 -0.49643,0.22063 -1.244139,0.22063 -0.998988,0 -1.568963,-0.51481 -0.563846,-0.51482 -0.563846,-1.46478 0,-2.03474 3.254373,-2.13281 l 1.139949,-0.0368 v -0.41675 q 0,-0.79061 -0.34321,-1.16447 -0.337082,-0.37998 -1.084791,-0.37998 -0.83964,0 -1.899916,0.51481 l -0.312567,-0.77835 q 0.49643,-0.26966 1.084791,-0.42288 0.59449,-0.15322 1.188979,-0.15322 1.201238,0 1.777341,0.5332 0.582233,0.5332 0.582233,1.70992 v 4.58432 h -0.753838 z m -2.298286,-0.71707 q 0.949958,0 1.489289,-0.52094 0.54546,-0.52095 0.54546,-1.45865 v -0.60674 l -1.017374,0.0429 q -1.213495,0.0429 -1.752826,0.37998 -0.533202,0.33095 -0.533202,1.03576 0,0.55159 0.330953,0.83964 0.337082,0.28805 0.9377,0.28805 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5084"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -10.883226,-454.91232 q 0.269665,0 0.520945,-0.0368 0.251279,-0.0429 0.3983691,-0.0858 v 0.77835 q -0.1654761,0.0797 -0.4903011,0.1287 -0.318695,0.0552 -0.576103,0.0552 -1.948947,0 -1.948947,-2.05313 v -3.99595 h -0.962215 v -0.4903 l 0.962215,-0.42289 0.429014,-1.43413 h 0.588361 v 1.55671 h 1.948946 v 0.79061 h -1.948946 v 3.95305 q 0,0.60674 0.288052,0.93157 0.288051,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5086"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -5.7779734,-454.07268 q -1.4892891,0 -2.3534444,-0.90705 -0.8580266,-0.90706 -0.8580266,-2.51892 0,-1.62413 0.7967389,-2.58021 0.8028678,-0.95609 2.1511953,-0.95609 1.2625249,0 1.9979762,0.83351 0.7354514,0.82739 0.7354514,2.18797 v 0.64352 h -4.6272149 q 0.030644,1.18285 0.5944899,1.79573 0.5699748,0.61287 1.5996067,0.61287 1.0847908,0 2.1450665,-0.45352 v 0.90705 q -0.539331,0.23289 -1.0235031,0.33095 -0.4780434,0.10419 -1.1583359,0.10419 z m -0.2757943,-6.11037 q -0.8089965,0 -1.2931687,0.52707 -0.4780434,0.52708 -0.563846,1.45865 h 3.5117803 q 0,-0.96222 -0.4290133,-1.47091 -0.4290133,-0.51481 -1.2257523,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5088"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 4.7083362,-460.12176 H 2.9984118 v 5.92651 H 1.9810374 v -5.92651 H 0.77980012 v -0.45966 l 1.20123728,-0.36773 v -0.37385 q 0,-2.47602 2.1634528,-2.47602 0.5332022,0 1.2502673,0.21451 l -0.2635367,0.81512 q -0.5883611,-0.18999 -1.0051169,-0.18999 -0.5761036,0 -0.8518979,0.38611 -0.2757942,0.37998 -0.2757942,1.22575 v 0.43515 h 1.7099244 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5090"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 11.744154,-457.55994 q 0,1.64251 -0.827383,2.56795 -0.827383,0.91931 -2.2860281,0.91931 -0.9009279,0 -1.5996067,-0.42288 -0.6986788,-0.42289 -1.078662,-1.2135 -0.3799832,-0.79061 -0.3799832,-1.85088 0,-1.64251 0.821254,-2.5557 0.821254,-0.91931 2.2798993,-0.91931 1.4096147,0 2.2369977,0.9377 0.833512,0.9377 0.833512,2.53731 z m -5.1175161,0 q 0,1.28704 0.514816,1.9612 0.514816,0.67417 1.5138041,0.67417 0.9989881,0 1.513804,-0.66804 0.520945,-0.67416 0.520945,-1.96733 0,-1.28091 -0.520945,-1.94282 -0.5148159,-0.66803 -1.5260615,-0.66803 -0.9989882,0 -1.5076754,0.65577 -0.5086872,0.65578 -0.5086872,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5092"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 14.538869,-454.19525 h -1.017374 v -9.53635 h 1.017374 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5094"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 17.725828,-454.19525 h -1.017375 v -9.53635 h 1.017375 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5096"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 25.69322,-457.55994 q 0,1.64251 -0.827383,2.56795 -0.827383,0.91931 -2.286028,0.91931 -0.900928,0 -1.599607,-0.42288 -0.698678,-0.42289 -1.078662,-1.2135 -0.379983,-0.79061 -0.379983,-1.85088 0,-1.64251 0.821254,-2.5557 0.821254,-0.91931 2.279899,-0.91931 1.409616,0 2.236998,0.9377 0.833512,0.9377 0.833512,2.53731 z m -5.117516,0 q 0,1.28704 0.514816,1.9612 0.514816,0.67417 1.513804,0.67417 0.998988,0 1.513804,-0.66804 0.520945,-0.67416 0.520945,-1.96733 0,-1.28091 -0.520945,-1.94282 -0.514816,-0.66803 -1.526061,-0.66803 -0.998988,0 -1.507676,0.65577 -0.508687,0.65578 -0.508687,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5098"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32.955803,-454.19525 -1.231881,-3.9408 q -0.116447,-0.36159 -0.435142,-1.6425 h -0.04903 q -0.24515,1.07253 -0.429013,1.65476 l -1.268654,3.92854 h -1.176722 l -1.832499,-6.71712 h 1.066404 q 0.649649,2.53117 0.986731,3.85499 0.34321,1.32381 0.39224,1.78347 h 0.04903 q 0.06742,-0.34934 0.214506,-0.90093 0.153219,-0.55772 0.263537,-0.88254 l 1.231881,-3.85499 h 1.103177 l 1.201237,3.85499 q 0.343211,1.05414 0.465786,1.77121 h 0.04903 q 0.02452,-0.22064 0.128704,-0.68029 0.110318,-0.45966 1.280911,-4.94591 h 1.054147 l -1.857014,6.71712 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5100"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 41.560584,-456.02775 q 0,0.9377 -0.698679,1.44639 -0.698679,0.50868 -1.961203,0.50868 -1.33607,0 -2.083779,-0.42288 v -0.94383 q 0.484172,0.24515 1.03576,0.38611 0.557718,0.14096 1.072534,0.14096 0.796739,0 1.225752,-0.25128 0.429013,-0.2574 0.429013,-0.77835 0,-0.39224 -0.34321,-0.66803 -0.337082,-0.28193 -1.323813,-0.66191 -0.9377,-0.34934 -1.33607,-0.60675 -0.392241,-0.26353 -0.588361,-0.59449 -0.189992,-0.33095 -0.189992,-0.79061 0,-0.82125 0.668035,-1.29317 0.668035,-0.47804 1.8325,-0.47804 1.084791,0 2.120551,0.44127 l -0.361596,0.82738 q -1.011246,-0.41675 -1.8325,-0.41675 -0.723194,0 -1.09092,0.22676 -0.367725,0.22677 -0.367725,0.62514 0,0.26966 0.134832,0.45965 0.140962,0.19 0.4474,0.3616 0.306438,0.17161 1.176722,0.49643 1.195109,0.43514 1.611864,0.87641 0.422885,0.44127 0.422885,1.10931 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5102"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 48.639303,-454.91232 q 0.269666,0 0.520945,-0.0368 0.251279,-0.0429 0.39837,-0.0858 v 0.77835 q -0.165477,0.0797 -0.490301,0.1287 -0.318696,0.0552 -0.576104,0.0552 -1.948946,0 -1.948946,-2.05313 v -3.99595 h -0.962216 v -0.4903 l 0.962216,-0.42289 0.429013,-1.43413 h 0.588361 v 1.55671 h 1.948947 v 0.79061 h -1.948947 v 3.95305 q 0,0.60674 0.288052,0.93157 0.288052,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5104"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 55.503518,-454.19525 v -4.34529 q 0,-0.82126 -0.373854,-1.22576 -0.373855,-0.40449 -1.170594,-0.40449 -1.060275,0 -1.550576,0.5761 -0.484172,0.5761 -0.484172,1.88766 v 3.51178 h -1.017375 v -9.53635 h 1.017375 v 2.88664 q 0,0.52095 -0.04903,0.86416 h 0.06129 q 0.300309,-0.48417 0.851898,-0.75997 0.557717,-0.28192 1.268654,-0.28192 1.231881,0 1.844757,0.58836 0.619005,0.58223 0.619005,1.85701 v 4.38207 h -1.017375 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5106"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 61.442287,-454.07268 q -1.489289,0 -2.353444,-0.90705 -0.858027,-0.90706 -0.858027,-2.51892 0,-1.62413 0.796739,-2.58021 0.802868,-0.95609 2.151195,-0.95609 1.262525,0 1.997977,0.83351 0.735451,0.82739 0.735451,2.18797 v 0.64352 h -4.627215 q 0.03064,1.18285 0.59449,1.79573 0.569975,0.61287 1.599607,0.61287 1.084791,0 2.145066,-0.45352 v 0.90705 q -0.539331,0.23289 -1.023503,0.33095 -0.478043,0.10419 -1.158336,0.10419 z m -0.275794,-6.11037 q -0.808997,0 -1.293169,0.52707 -0.478043,0.52708 -0.563846,1.45865 h 3.511781 q 0,-0.96222 -0.429014,-1.47091 -0.429013,-0.51481 -1.225752,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5108"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 74.110428,-456.57934 q 0,1.18285 -0.858026,1.84476 -0.858027,0.6619 -2.32893,0.6619 -1.593478,0 -2.451504,-0.41062 v -1.00512 q 0.551588,0.23289 1.201237,0.36773 0.649649,0.13483 1.28704,0.13483 1.041889,0 1.568963,-0.39224 0.527073,-0.39837 0.527073,-1.10318 0,-0.46579 -0.189991,-0.75997 -0.183863,-0.30031 -0.625134,-0.55158 -0.435142,-0.25128 -1.329941,-0.56998 -1.250268,-0.4474 -1.789599,-1.06027 -0.533202,-0.61288 -0.533202,-1.59961 0,-1.03576 0.778353,-1.64864 0.778353,-0.61287 2.059264,-0.61287 1.33607,0 2.457633,0.4903 l -0.324824,0.90705 q -1.109306,-0.46578 -2.157324,-0.46578 -0.827383,0 -1.293169,0.35547 -0.465786,0.35546 -0.465786,0.98673 0,0.46578 0.171606,0.76609 0.171605,0.29418 0.576103,0.54546 0.410627,0.24515 1.250267,0.54546 1.409616,0.50256 1.936689,1.07866 0.533202,0.57611 0.533202,1.49542 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5110"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 77.959296,-454.91232 q 0.269665,0 0.520944,-0.0368 0.251279,-0.0429 0.39837,-0.0858 v 0.77835 q -0.165477,0.0797 -0.490301,0.1287 -0.318696,0.0552 -0.576104,0.0552 -1.948946,0 -1.948946,-2.05313 v -3.99595 h -0.962215 v -0.4903 l 0.962215,-0.42289 0.429013,-1.43413 h 0.588361 v 1.55671 h 1.948947 v 0.79061 h -1.948947 v 3.95305 q 0,0.60674 0.288052,0.93157 0.288052,0.32482 0.790611,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5112"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 81.244314,-454.19525 h -1.017375 v -6.71712 h 1.017375 z m -1.103177,-8.53737 q 0,-0.34934 0.171605,-0.50868 0.171605,-0.16548 0.429013,-0.16548 0.245151,0 0.422885,0.16548 0.177734,0.16547 0.177734,0.50868 0,0.34321 -0.177734,0.51482 -0.177734,0.16548 -0.422885,0.16548 -0.257408,0 -0.429013,-0.16548 -0.171605,-0.17161 -0.171605,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5114"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 86.098287,-454.07268 q -1.458645,0 -2.261512,-0.8948 -0.796739,-0.90092 -0.796739,-2.54343 0,-1.68541 0.808996,-2.60473 0.815125,-0.91931 2.316672,-0.91931 0.484172,0 0.968344,0.10419 0.484172,0.10419 0.759967,0.24515 l -0.312567,0.86416 q -0.337082,-0.13484 -0.735452,-0.22064 -0.398369,-0.0919 -0.704807,-0.0919 -2.047006,0 -2.047006,2.61085 0,1.23801 0.496429,1.89992 0.502559,0.6619 1.48316,0.6619 0.839641,0 1.722182,-0.36159 v 0.90092 q -0.674163,0.34934 -1.697667,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5116"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 90.400681,-457.63349 q 0.263537,-0.37385 0.802868,-0.9806 l 2.169581,-2.29828 h 1.207366 l -2.72117,2.86213 2.911162,3.85499 h -1.231881 l -2.371831,-3.1747 -0.766095,0.66191 v 2.51279 h -1.005117 v -9.53635 h 1.005117 v 5.05622 q 0,0.33709 -0.04903,1.04189 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5118"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 98.827724,-454.07268 q -1.489289,0 -2.353444,-0.90705 -0.858027,-0.90706 -0.858027,-2.51892 0,-1.62413 0.796739,-2.58021 0.802868,-0.95609 2.151195,-0.95609 1.262525,0 1.997973,0.83351 0.73546,0.82739 0.73546,2.18797 v 0.64352 H 96.6704 q 0.03064,1.18285 0.59449,1.79573 0.569975,0.61287 1.599607,0.61287 1.084791,0 2.145063,-0.45352 v 0.90705 q -0.53933,0.23289 -1.0235,0.33095 -0.478043,0.10419 -1.158336,0.10419 z m -0.275794,-6.11037 q -0.808997,0 -1.293169,0.52707 -0.478043,0.52708 -0.563846,1.45865 h 3.511785 q 0,-0.96222 -0.429018,-1.47091 -0.429013,-0.51481 -1.225752,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5120"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 106.09032,-461.03495 q 0.4474,0 0.80286,0.0735 l -0.14096,0.94383 q -0.41675,-0.0919 -0.73545,-0.0919 -0.81512,0 -1.39736,0.66191 -0.5761,0.66191 -0.5761,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11644,1.24413 h 0.049 q 0.37386,-0.65577 0.90093,-1.01124 0.52707,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5122"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 112.1394,-462.35263 q -1.47703,0 -2.33506,0.98673 -0.8519,0.9806 -0.8519,2.69052 0,1.75896 0.82126,2.72117 0.82738,0.95609 2.35344,0.95609 0.9377,0 2.13894,-0.33708 v 0.91318 q -0.93157,0.34934 -2.29828,0.34934 -1.97959,0 -3.05826,-1.20123 -1.07253,-1.20124 -1.07253,-3.41372 0,-1.3851 0.51482,-2.42699 0.52094,-1.04189 1.49541,-1.60574 0.98061,-0.56384 2.30442,-0.56384 1.40961,0 2.46376,0.51481 l -0.44127,0.8948 q -1.01737,-0.47804 -2.03475,-0.47804 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5124"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 121.86575,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82738,0.91931 -2.28603,0.91931 -0.90093,0 -1.59961,-0.42288 -0.69868,-0.42289 -1.07866,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82126,-0.91931 2.2799,-0.91931 1.40962,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11751,0 q 0,1.28704 0.51481,1.9612 0.51482,0.67417 1.51381,0.67417 0.99898,0 1.5138,-0.66804 0.52094,-0.67416 0.52094,-1.96733 0,-1.28091 -0.52094,-1.94282 -0.51482,-0.66803 -1.52606,-0.66803 -0.99899,0 -1.50768,0.65577 -0.50868,0.65578 -0.50868,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5126"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128.23965,-454.19525 v -4.34529 q 0,-0.82126 -0.37386,-1.22576 -0.37385,-0.40449 -1.17059,-0.40449 -1.05415,0 -1.54445,0.56997 -0.4903,0.56998 -0.4903,1.88153 v 3.52404 h -1.01737 v -6.71712 h 0.82738 l 0.16548,0.91931 h 0.049 q 0.31256,-0.49643 0.87641,-0.76609 0.56385,-0.2758 1.2564,-0.2758 1.21349,0 1.82637,0.58836 0.61287,0.58223 0.61287,1.86927 v 4.38207 h -1.01737 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5128"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 135.67385,-456.02775 q 0,0.9377 -0.69868,1.44639 -0.69868,0.50868 -1.9612,0.50868 -1.33607,0 -2.08378,-0.42288 v -0.94383 q 0.48417,0.24515 1.03576,0.38611 0.55772,0.14096 1.07253,0.14096 0.79674,0 1.22575,-0.25128 0.42902,-0.2574 0.42902,-0.77835 0,-0.39224 -0.34321,-0.66803 -0.33708,-0.28193 -1.32381,-0.66191 -0.93771,-0.34934 -1.33607,-0.60675 -0.39225,-0.26353 -0.58837,-0.59449 -0.18999,-0.33095 -0.18999,-0.79061 0,-0.82125 0.66804,-1.29317 0.66803,-0.47804 1.8325,-0.47804 1.08479,0 2.12055,0.44127 l -0.3616,0.82738 q -1.01124,-0.41675 -1.8325,-0.41675 -0.72319,0 -1.09092,0.22676 -0.36772,0.22677 -0.36772,0.62514 0,0.26966 0.13483,0.45965 0.14096,0.19 0.4474,0.3616 0.30644,0.17161 1.17672,0.49643 1.19511,0.43514 1.61187,0.87641 0.42288,0.44127 0.42288,1.10931 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5130"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 139.49206,-454.91232 q 0.26966,0 0.52094,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.4903,0.1287 -0.3187,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96222 v -0.4903 l 0.96222,-0.42289 0.42901,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28806,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5132"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 144.82408,-461.03495 q 0.4474,0 0.80287,0.0735 l -0.14096,0.94383 q -0.41676,-0.0919 -0.73545,-0.0919 -0.81513,0 -1.39736,0.66191 -0.57611,0.66191 -0.57611,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11645,1.24413 h 0.049 q 0.37385,-0.65577 0.90092,-1.01124 0.52708,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5134"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 147.83943,-460.91237 v 4.35755 q 0,0.82125 0.37385,1.22575 0.37386,0.4045 1.1706,0.4045 1.05414,0 1.53832,-0.57611 0.4903,-0.5761 0.4903,-1.88153 v -3.53016 h 1.01737 v 6.71712 h -0.83964 l -0.14709,-0.90093 h -0.0552 q -0.31257,0.49643 -0.87028,0.75997 -0.55159,0.26353 -1.26253,0.26353 -1.22575,0 -1.83863,-0.58223 -0.60674,-0.58223 -0.60674,-1.86314 v -4.39432 h 1.02963 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5136"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 157.26546,-454.07268 q -1.45864,0 -2.26151,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81512,-0.91931 2.31667,-0.91931 0.48417,0 0.96834,0.10419 0.48418,0.10419 0.75997,0.24515 l -0.31257,0.86416 q -0.33708,-0.13484 -0.73545,-0.22064 -0.39837,-0.0919 -0.70481,-0.0919 -2.047,0 -2.047,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69767,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5138"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 162.73232,-454.91232 q 0.26967,0 0.52095,-0.0368 0.25127,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.49031,0.1287 -0.31869,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96221 v -0.4903 l 0.96221,-0.42289 0.42902,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28805,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5140"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 170.79777,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82738,0.91931 -2.28603,0.91931 -0.90093,0 -1.5996,-0.42288 -0.69868,-0.42289 -1.07867,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82126,-0.91931 2.2799,-0.91931 1.40962,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11751,0 q 0,1.28704 0.51481,1.9612 0.51482,0.67417 1.51381,0.67417 0.99899,0 1.5138,-0.66804 0.52095,-0.67416 0.52095,-1.96733 0,-1.28091 -0.52095,-1.94282 -0.51481,-0.66803 -1.52606,-0.66803 -0.99899,0 -1.50768,0.65577 -0.50868,0.65578 -0.50868,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5142"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 175.6395,-461.03495 q 0.44739,0 0.80286,0.0735 l -0.14096,0.94383 q -0.41675,-0.0919 -0.73545,-0.0919 -0.81513,0 -1.39736,0.66191 -0.5761,0.66191 -0.5761,1.64864 v 3.60371 h -1.01738 v -6.71712 h 0.83964 l 0.11645,1.24413 h 0.049 q 0.37386,-0.65577 0.90093,-1.01124 0.52707,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5144"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 182.90822,-456.57934 q 0,1.18285 -0.85803,1.84476 -0.85802,0.6619 -2.32893,0.6619 -1.59348,0 -2.4515,-0.41062 v -1.00512 q 0.55159,0.23289 1.20124,0.36773 0.64964,0.13483 1.28704,0.13483 1.04188,0 1.56896,-0.39224 0.52707,-0.39837 0.52707,-1.10318 0,-0.46579 -0.18999,-0.75997 -0.18386,-0.30031 -0.62513,-0.55158 -0.43515,-0.25128 -1.32994,-0.56998 -1.25027,-0.4474 -1.7896,-1.06027 -0.53321,-0.61288 -0.53321,-1.59961 0,-1.03576 0.77836,-1.64864 0.77835,-0.61287 2.05926,-0.61287 1.33607,0 2.45763,0.4903 l -0.32482,0.90705 q -1.10931,-0.46578 -2.15732,-0.46578 -0.82739,0 -1.29317,0.35547 -0.46579,0.35546 -0.46579,0.98673 0,0.46578 0.17161,0.76609 0.1716,0.29418 0.5761,0.54546 0.41063,0.24515 1.25027,0.54546 1.40961,0.50256 1.93669,1.07866 0.5332,0.57611 0.5332,1.49542 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5146"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 187.71314,-454.07268 q -0.65578,0 -1.20123,-0.23902 -0.53934,-0.24515 -0.90706,-0.74771 h -0.0736 q 0.0736,0.58836 0.0736,1.11544 v 2.76407 h -1.01738 v -9.73247 h 0.82739 l 0.14096,0.91931 h 0.049 q 0.39224,-0.55159 0.91318,-0.79674 0.52095,-0.24515 1.19511,-0.24515 1.33607,0 2.05927,0.91319 0.72932,0.91318 0.72932,2.56182 0,1.65476 -0.74158,2.57408 -0.73545,0.91318 -2.04701,0.91318 z m -0.14709,-6.09811 q -1.02963,0 -1.48929,0.56997 -0.45965,0.56998 -0.47191,1.81411 v 0.22677 q 0,1.41574 0.47191,2.02862 0.47192,0.60675 1.51381,0.60675 0.87028,0 1.36058,-0.70481 0.49643,-0.70481 0.49643,-1.94282 0,-1.2564 -0.49643,-1.92443 -0.4903,-0.67416 -1.3851,-0.67416 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5148"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 195.12281,-454.07268 q -1.48929,0 -2.35344,-0.90705 -0.85803,-0.90706 -0.85803,-2.51892 0,-1.62413 0.79674,-2.58021 0.80287,-0.95609 2.1512,-0.95609 1.26252,0 1.99797,0.83351 0.73545,0.82739 0.73545,2.18797 v 0.64352 h -4.62721 q 0.0306,1.18285 0.59449,1.79573 0.56997,0.61287 1.59961,0.61287 1.08479,0 2.14506,-0.45352 v 0.90705 q -0.53933,0.23289 -1.0235,0.33095 -0.47804,0.10419 -1.15834,0.10419 z m -0.27579,-6.11037 q -0.809,0 -1.29317,0.52707 -0.47804,0.52708 -0.56385,1.45865 h 3.51179 q 0,-0.96222 -0.42902,-1.47091 -0.42901,-0.51481 -1.22575,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5150"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 202.00542,-454.07268 q -1.45864,0 -2.26151,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81512,-0.91931 2.31667,-0.91931 0.48417,0 0.96834,0.10419 0.48418,0.10419 0.75997,0.24515 l -0.31257,0.86416 q -0.33708,-0.13484 -0.73545,-0.22064 -0.39837,-0.0919 -0.70481,-0.0919 -2.047,0 -2.047,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69767,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5152"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 212.694,-454.19525 -0.20225,-0.95609 h -0.049 q -0.50256,0.63126 -1.00512,0.85803 -0.49643,0.22063 -1.24414,0.22063 -0.99899,0 -1.56896,-0.51481 -0.56385,-0.51482 -0.56385,-1.46478 0,-2.03474 3.25438,-2.13281 l 1.13995,-0.0368 v -0.41675 q 0,-0.79061 -0.34321,-1.16447 -0.33709,-0.37998 -1.0848,-0.37998 -0.83964,0 -1.89991,0.51481 l -0.31257,-0.77835 q 0.49643,-0.26966 1.08479,-0.42288 0.59449,-0.15322 1.18898,-0.15322 1.20124,0 1.77734,0.5332 0.58224,0.5332 0.58224,1.70992 v 4.58432 h -0.75384 z m -2.29829,-0.71707 q 0.94996,0 1.48929,-0.52094 0.54546,-0.52095 0.54546,-1.45865 v -0.60674 l -1.01737,0.0429 q -1.2135,0.0429 -1.75283,0.37998 -0.5332,0.33095 -0.5332,1.03576 0,0.55159 0.33095,0.83964 0.33708,0.28805 0.9377,0.28805 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5154"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 217.71958,-454.91232 q 0.26967,0 0.52094,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16547,0.0797 -0.4903,0.1287 -0.31869,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96221 v -0.4903 l 0.96221,-0.42289 0.42902,-1.43413 h 0.58836 v 1.55671 h 1.94894 v 0.79061 h -1.94894 v 3.95305 q 0,0.60674 0.28805,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5156"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 228.74522,-460.91237 v 0.64352 l -1.24414,0.14709 q 0.17161,0.2145 0.30644,0.56384 0.13483,0.34321 0.13483,0.77835 0,0.98674 -0.67416,1.5751 -0.67416,0.58836 -1.85089,0.58836 -0.30031,0 -0.56384,-0.049 -0.64965,0.34321 -0.64965,0.86415 0,0.2758 0.22676,0.41063 0.22677,0.1287 0.77836,0.1287 h 1.18898 q 1.09091,0 1.67315,0.45966 0.58836,0.45966 0.58836,1.33607 0,1.11544 -0.8948,1.69767 -0.8948,0.58836 -2.61085,0.58836 -1.31769,0 -2.03475,-0.4903 -0.71094,-0.4903 -0.71094,-1.3851 0,-0.61288 0.39224,-1.06028 0.39224,-0.4474 1.10318,-0.60674 -0.25741,-0.11645 -0.43514,-0.3616 -0.17161,-0.24515 -0.17161,-0.56998 0,-0.36772 0.19612,-0.64352 0.19612,-0.27579 0.61901,-0.5332 -0.52095,-0.21451 -0.8519,-0.72932 -0.32483,-0.51482 -0.32483,-1.17672 0,-1.10318 0.66191,-1.69767 0.66191,-0.60062 1.8754,-0.60062 0.52708,0 0.94996,0.12258 h 2.3228 z m -5.35654,7.84481 q 0,0.54546 0.45966,0.82738 0.45966,0.28193 1.31768,0.28193 1.28092,0 1.89379,-0.38612 0.61901,-0.37998 0.61901,-1.03576 0,-0.54546 -0.33709,-0.75996 -0.33708,-0.20838 -1.26865,-0.20838 h -1.21962 q -0.69255,0 -1.07866,0.33095 -0.38612,0.33096 -0.38612,0.94996 z m 0.55159,-5.69362 q 0,0.70481 0.39837,1.06641 0.39837,0.36159 1.10931,0.36159 1.48929,0 1.48929,-1.44639 0,-1.5138 -1.50768,-1.5138 -0.71706,0 -1.10318,0.38611 -0.38611,0.38611 -0.38611,1.14608 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5158"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 231.15383,-454.19525 h -1.01738 v -6.71712 h 1.01738 z m -1.10318,-8.53737 q 0,-0.34934 0.17161,-0.50868 0.1716,-0.16548 0.42901,-0.16548 0.24515,0 0.42289,0.16548 0.17773,0.16547 0.17773,0.50868 0,0.34321 -0.17773,0.51482 -0.17774,0.16548 -0.42289,0.16548 -0.25741,0 -0.42901,-0.16548 -0.17161,-0.17161 -0.17161,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5160"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 235.49299,-454.91232 q 0.26966,0 0.52094,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.4903,0.1287 -0.3187,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96222 v -0.4903 l 0.96222,-0.42289 0.42901,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28806,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5162"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 242.3572,-454.19525 v -4.34529 q 0,-0.82126 -0.37385,-1.22576 -0.37386,-0.40449 -1.1706,-0.40449 -1.06027,0 -1.55057,0.5761 -0.48417,0.5761 -0.48417,1.88766 v 3.51178 h -1.01738 v -9.53635 h 1.01738 v 2.88664 q 0,0.52095 -0.049,0.86416 h 0.0613 q 0.30031,-0.48417 0.8519,-0.75997 0.55772,-0.28192 1.26865,-0.28192 1.23189,0 1.84476,0.58836 0.61901,0.58223 0.61901,1.85701 v 4.38207 h -1.01738 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5164"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 246.41444,-460.91237 v 4.35755 q 0,0.82125 0.37386,1.22575 0.37385,0.4045 1.17059,0.4045 1.05415,0 1.53832,-0.57611 0.4903,-0.5761 0.4903,-1.88153 v -3.53016 h 1.01737 v 6.71712 h -0.83964 l -0.14709,-0.90093 h -0.0552 q -0.31256,0.49643 -0.87028,0.75997 -0.55159,0.26353 -1.26253,0.26353 -1.22575,0 -1.83862,-0.58223 -0.60675,-0.58223 -0.60675,-1.86314 v -4.39432 h 1.02963 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5166"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 256.28175,-461.02269 q 1.32381,0 2.05313,0.90705 0.73545,0.90093 0.73545,2.5557 0,1.65476 -0.74158,2.57408 -0.73545,0.91318 -2.047,0.91318 -0.65578,0 -1.20124,-0.23902 -0.53933,-0.24515 -0.90706,-0.74771 h -0.0735 l -0.21451,0.86416 h -0.72932 v -9.53635 h 1.01737 v 2.31667 q 0,0.77835 -0.049,1.39736 h 0.049 q 0.71094,-1.00512 2.1083,-1.00512 z m -0.14709,0.8519 q -1.04189,0 -1.50155,0.60061 -0.45966,0.59449 -0.45966,2.01024 0,1.41574 0.47192,2.02862 0.47191,0.60675 1.5138,0.60675 0.9377,0 1.39736,-0.6803 0.45966,-0.68642 0.45966,-1.96733 0,-1.31155 -0.45966,-1.95507 -0.45966,-0.64352 -1.42187,-0.64352 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5168"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 260.70671,-454.8449 q 0,-0.41063 0.18386,-0.61901 0.19,-0.2145 0.53933,-0.2145 0.35547,0 0.55159,0.2145 0.20225,0.20838 0.20225,0.61901 0,0.39837 -0.20225,0.61288 -0.20225,0.2145 -0.55159,0.2145 -0.31256,0 -0.52094,-0.18999 -0.20225,-0.19612 -0.20225,-0.63739 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5170"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 266.87224,-454.07268 q -1.45864,0 -2.26151,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81512,-0.91931 2.31667,-0.91931 0.48417,0 0.96834,0.10419 0.48418,0.10419 0.75997,0.24515 l -0.31257,0.86416 q -0.33708,-0.13484 -0.73545,-0.22064 -0.39837,-0.0919 -0.7048,-0.0919 -2.04701,0 -2.04701,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69767,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5172"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 275.96731,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82738,0.91931 -2.28603,0.91931 -0.90093,0 -1.5996,-0.42288 -0.69868,-0.42289 -1.07867,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82126,-0.91931 2.2799,-0.91931 1.40962,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11751,0 q 0,1.28704 0.51481,1.9612 0.51482,0.67417 1.51381,0.67417 0.99899,0 1.5138,-0.66804 0.52095,-0.67416 0.52095,-1.96733 0,-1.28091 -0.52095,-1.94282 -0.51481,-0.66803 -1.52606,-0.66803 -0.99899,0 -1.50768,0.65577 -0.50868,0.65578 -0.50868,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5174"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 286.30655,-454.19525 v -4.36981 q 0,-0.80287 -0.34321,-1.20124 -0.34321,-0.40449 -1.06641,-0.40449 -0.94995,0 -1.40348,0.54546 -0.45353,0.54546 -0.45353,1.67928 v 3.7508 h -1.01737 v -4.36981 q 0,-0.80287 -0.34322,-1.20124 -0.34321,-0.40449 -1.07253,-0.40449 -0.95609,0 -1.40348,0.5761 -0.44128,0.56997 -0.44128,1.8754 v 3.52404 h -1.01737 v -6.71712 h 0.82738 l 0.16548,0.91931 h 0.049 q 0.28805,-0.4903 0.809,-0.76609 0.52707,-0.2758 1.17672,-0.2758 1.57509,0 2.05926,1.13995 h 0.049 q 0.30031,-0.52707 0.87029,-0.83351 0.56997,-0.30644 1.29929,-0.30644 1.13995,0 1.7038,0.58836 0.56997,0.58223 0.56997,1.86927 v 4.38207 h -1.01737 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5176"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 292.81529,-463.1555 -3.34017,8.96025 h -1.01738 l 3.34018,-8.96025 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5178"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 296.19224,-454.91232 q 0.26966,0 0.52094,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.4903,0.1287 -0.3187,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96222 v -0.4903 l 0.96222,-0.42289 0.42901,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28806,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5180"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 301.2975,-454.07268 q -1.48929,0 -2.35345,-0.90705 -0.85802,-0.90706 -0.85802,-2.51892 0,-1.62413 0.79673,-2.58021 0.80287,-0.95609 2.1512,-0.95609 1.26252,0 1.99798,0.83351 0.73545,0.82739 0.73545,2.18797 v 0.64352 h -4.62722 q 0.0306,1.18285 0.59449,1.79573 0.56998,0.61287 1.59961,0.61287 1.08479,0 2.14507,-0.45352 v 0.90705 q -0.53934,0.23289 -1.02351,0.33095 -0.47804,0.10419 -1.15833,0.10419 z m -0.2758,-6.11037 q -0.80899,0 -1.29317,0.52707 -0.47804,0.52708 -0.56384,1.45865 h 3.51178 q 0,-0.96222 -0.42902,-1.47091 -0.42901,-0.51481 -1.22575,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5182"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 308.56009,-461.03495 q 0.4474,0 0.80287,0.0735 l -0.14097,0.94383 q -0.41675,-0.0919 -0.73545,-0.0919 -0.81512,0 -1.39735,0.66191 -0.57611,0.66191 -0.57611,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11644,1.24413 h 0.049 q 0.37386,-0.65577 0.90093,-1.01124 0.52708,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5184"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 311.63671,-454.19525 h -1.01738 v -6.71712 h 1.01738 z m -1.10318,-8.53737 q 0,-0.34934 0.17161,-0.50868 0.1716,-0.16548 0.42901,-0.16548 0.24515,0 0.42288,0.16548 0.17774,0.16547 0.17774,0.50868 0,0.34321 -0.17774,0.51482 -0.17773,0.16548 -0.42288,0.16548 -0.25741,0 -0.42901,-0.16548 -0.17161,-0.17161 -0.17161,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5186"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 318.40286,-454.19525 v -4.34529 q 0,-0.82126 -0.37386,-1.22576 -0.37385,-0.40449 -1.17059,-0.40449 -1.05415,0 -1.54445,0.56997 -0.4903,0.56998 -0.4903,1.88153 v 3.52404 h -1.01737 v -6.71712 h 0.82738 l 0.16547,0.91931 h 0.049 q 0.31257,-0.49643 0.87642,-0.76609 0.56384,-0.2758 1.25639,-0.2758 1.2135,0 1.82637,0.58836 0.61288,0.58223 0.61288,1.86927 v 4.38207 h -1.01737 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5188"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 320.68888,-451.1799 q -0.58223,0 -0.94383,-0.15322 v -0.82738 q 0.42289,0.12257 0.83352,0.12257 0.47804,0 0.69867,-0.26353 0.22677,-0.25741 0.22677,-0.79061 v -7.8203 h 1.01737 v 7.74675 q 0,1.98572 -1.8325,1.98572 z m 0.72933,-11.55272 q 0,-0.34934 0.1716,-0.50868 0.17161,-0.16548 0.42901,-0.16548 0.24515,0 0.42289,0.16548 0.17773,0.16547 0.17773,0.50868 0,0.34321 -0.17773,0.51482 -0.17774,0.16548 -0.42289,0.16548 -0.2574,0 -0.42901,-0.16548 -0.1716,-0.17161 -0.1716,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5190"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 330.4888,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82739,0.91931 -2.28603,0.91931 -0.90093,0 -1.59961,-0.42288 -0.69868,-0.42289 -1.07866,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82125,-0.91931 2.2799,-0.91931 1.40961,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11752,0 q 0,1.28704 0.51482,1.9612 0.51481,0.67417 1.5138,0.67417 0.99899,0 1.51381,-0.66804 0.52094,-0.67416 0.52094,-1.96733 0,-1.28091 -0.52094,-1.94282 -0.51482,-0.66803 -1.52607,-0.66803 -0.99898,0 -1.50767,0.65577 -0.50869,0.65578 -0.50869,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5192"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 333.27124,-457.63349 q 0.26354,-0.37385 0.80287,-0.9806 l 2.16958,-2.29828 h 1.20737 l -2.72117,2.86213 2.91116,3.85499 h -1.23188 l -2.37183,-3.1747 -0.7661,0.66191 v 2.51279 h -1.00512 v -9.53635 h 1.00512 v 5.05622 q 0,0.33709 -0.049,1.04189 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5194"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 341.69828,-454.07268 q -1.48929,0 -2.35344,-0.90705 -0.85803,-0.90706 -0.85803,-2.51892 0,-1.62413 0.79674,-2.58021 0.80287,-0.95609 2.1512,-0.95609 1.26252,0 1.99797,0.83351 0.73545,0.82739 0.73545,2.18797 v 0.64352 h -4.62721 q 0.0306,1.18285 0.59449,1.79573 0.56997,0.61287 1.59961,0.61287 1.08479,0 2.14506,-0.45352 v 0.90705 q -0.53933,0.23289 -1.0235,0.33095 -0.47804,0.10419 -1.15834,0.10419 z m -0.27579,-6.11037 q -0.809,0 -1.29317,0.52707 -0.47804,0.52708 -0.56385,1.45865 h 3.51179 q 0,-0.96222 -0.42902,-1.47091 -0.42901,-0.51481 -1.22575,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5196"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 350.22953,-456.02775 q 0,0.9377 -0.69868,1.44639 -0.69868,0.50868 -1.9612,0.50868 -1.33607,0 -2.08378,-0.42288 v -0.94383 q 0.48417,0.24515 1.03576,0.38611 0.55772,0.14096 1.07253,0.14096 0.79674,0 1.22575,-0.25128 0.42902,-0.2574 0.42902,-0.77835 0,-0.39224 -0.34321,-0.66803 -0.33709,-0.28193 -1.32382,-0.66191 -0.9377,-0.34934 -1.33607,-0.60675 -0.39224,-0.26353 -0.58836,-0.59449 -0.18999,-0.33095 -0.18999,-0.79061 0,-0.82125 0.66804,-1.29317 0.66803,-0.47804 1.8325,-0.47804 1.08479,0 2.12055,0.44127 l -0.3616,0.82738 q -1.01124,-0.41675 -1.8325,-0.41675 -0.72319,0 -1.09092,0.22676 -0.36772,0.22677 -0.36772,0.62514 0,0.26966 0.13483,0.45965 0.14096,0.19 0.4474,0.3616 0.30644,0.17161 1.17672,0.49643 1.19511,0.43514 1.61186,0.87641 0.42289,0.44127 0.42289,1.10931 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5198"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 355.27962,-463.1555 -3.34018,8.96025 h -1.01737 l 3.34017,-8.96025 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5200"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 361.69643,-456.57934 q 0,1.18285 -0.85803,1.84476 -0.85803,0.6619 -2.32893,0.6619 -1.59348,0 -2.4515,-0.41062 v -1.00512 q 0.55158,0.23289 1.20123,0.36773 0.64965,0.13483 1.28704,0.13483 1.04189,0 1.56897,-0.39224 0.52707,-0.39837 0.52707,-1.10318 0,-0.46579 -0.18999,-0.75997 -0.18386,-0.30031 -0.62514,-0.55158 -0.43514,-0.25128 -1.32994,-0.56998 -1.25026,-0.4474 -1.7896,-1.06027 -0.5332,-0.61288 -0.5332,-1.59961 0,-1.03576 0.77836,-1.64864 0.77835,-0.61287 2.05926,-0.61287 1.33607,0 2.45763,0.4903 l -0.32482,0.90705 q -1.10931,-0.46578 -2.15733,-0.46578 -0.82738,0 -1.29316,0.35547 -0.46579,0.35546 -0.46579,0.98673 0,0.46578 0.17161,0.76609 0.1716,0.29418 0.5761,0.54546 0.41063,0.24515 1.25027,0.54546 1.40961,0.50256 1.93668,1.07866 0.53321,0.57611 0.53321,1.49542 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5202"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 365.54529,-454.91232 q 0.26967,0 0.52095,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.4903,0.1287 -0.3187,0.0552 -0.57611,0.0552 -1.94894,0 -1.94894,-2.05313 v -3.99595 h -0.96222 v -0.4903 l 0.96222,-0.42289 0.42901,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28805,0.93157 0.28806,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5204"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 368.83031,-454.19525 h -1.01737 v -6.71712 h 1.01737 z m -1.10317,-8.53737 q 0,-0.34934 0.1716,-0.50868 0.17161,-0.16548 0.42901,-0.16548 0.24515,0 0.42289,0.16548 0.17773,0.16547 0.17773,0.50868 0,0.34321 -0.17773,0.51482 -0.17774,0.16548 -0.42289,0.16548 -0.2574,0 -0.42901,-0.16548 -0.1716,-0.17161 -0.1716,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5206"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 373.68429,-454.07268 q -1.45865,0 -2.26152,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81513,-0.91931 2.31667,-0.91931 0.48417,0 0.96835,0.10419 0.48417,0.10419 0.75996,0.24515 l -0.31256,0.86416 q -0.33709,-0.13484 -0.73546,-0.22064 -0.39836,-0.0919 -0.7048,-0.0919 -2.04701,0 -2.04701,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69766,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5208"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 377.98669,-457.63349 q 0.26354,-0.37385 0.80287,-0.9806 l 2.16958,-2.29828 h 1.20737 l -2.72117,2.86213 2.91116,3.85499 h -1.23188 l -2.37183,-3.1747 -0.7661,0.66191 v 2.51279 h -1.00511 v -9.53635 h 1.00511 v 5.05622 q 0,0.33709 -0.049,1.04189 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5210"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 386.41374,-454.07268 q -1.48929,0 -2.35345,-0.90705 -0.85802,-0.90706 -0.85802,-2.51892 0,-1.62413 0.79674,-2.58021 0.80286,-0.95609 2.15119,-0.95609 1.26253,0 1.99798,0.83351 0.73545,0.82739 0.73545,2.18797 v 0.64352 h -4.62722 q 0.0306,1.18285 0.59449,1.79573 0.56998,0.61287 1.59961,0.61287 1.08479,0 2.14507,-0.45352 v 0.90705 q -0.53933,0.23289 -1.02351,0.33095 -0.47804,0.10419 -1.15833,0.10419 z m -0.2758,-6.11037 q -0.80899,0 -1.29316,0.52707 -0.47805,0.52708 -0.56385,1.45865 h 3.51178 q 0,-0.96222 -0.42901,-1.47091 -0.42902,-0.51481 -1.22576,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5212"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 393.6763,-461.03495 q 0.4474,0 0.80287,0.0735 l -0.14096,0.94383 q -0.41676,-0.0919 -0.73546,-0.0919 -0.81512,0 -1.39735,0.66191 -0.57611,0.66191 -0.57611,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11645,1.24413 h 0.049 q 0.37385,-0.65577 0.90092,-1.01124 0.52708,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5214"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 398.41997,-454.07268 q -1.45864,0 -2.26151,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81512,-0.91931 2.31667,-0.91931 0.48417,0 0.96834,0.10419 0.48418,0.10419 0.75997,0.24515 l -0.31257,0.86416 q -0.33708,-0.13484 -0.73545,-0.22064 -0.39837,-0.0919 -0.70481,-0.0919 -2.047,0 -2.047,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69767,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5216"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 407.51504,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82738,0.91931 -2.28603,0.91931 -0.90093,0 -1.5996,-0.42288 -0.69868,-0.42289 -1.07867,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82126,-0.91931 2.2799,-0.91931 1.40962,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11751,0 q 0,1.28704 0.51481,1.9612 0.51482,0.67417 1.51381,0.67417 0.99899,0 1.5138,-0.66804 0.52095,-0.67416 0.52095,-1.96733 0,-1.28091 -0.52095,-1.94282 -0.51481,-0.66803 -1.52606,-0.66803 -0.99899,0 -1.50768,0.65577 -0.50868,0.65578 -0.50868,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5218"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 413.88897,-454.19525 v -4.34529 q 0,-0.82126 -0.37385,-1.22576 -0.37386,-0.40449 -1.1706,-0.40449 -1.05414,0 -1.54445,0.56997 -0.4903,0.56998 -0.4903,1.88153 v 3.52404 h -1.01737 v -6.71712 h 0.82738 l 0.16548,0.91931 h 0.049 q 0.31257,-0.49643 0.87641,-0.76609 0.56385,-0.2758 1.2564,-0.2758 1.21349,0 1.82637,0.58836 0.61287,0.58223 0.61287,1.86927 v 4.38207 h -1.01737 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5220"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 421.32316,-456.02775 q 0,0.9377 -0.69868,1.44639 -0.69868,0.50868 -1.96121,0.50868 -1.33607,0 -2.08377,-0.42288 v -0.94383 q 0.48417,0.24515 1.03576,0.38611 0.55771,0.14096 1.07253,0.14096 0.79674,0 1.22575,-0.25128 0.42902,-0.2574 0.42902,-0.77835 0,-0.39224 -0.34322,-0.66803 -0.33708,-0.28193 -1.32381,-0.66191 -0.9377,-0.34934 -1.33607,-0.60675 -0.39224,-0.26353 -0.58836,-0.59449 -0.18999,-0.33095 -0.18999,-0.79061 0,-0.82125 0.66803,-1.29317 0.66804,-0.47804 1.8325,-0.47804 1.0848,0 2.12056,0.44127 l -0.3616,0.82738 q -1.01125,-0.41675 -1.8325,-0.41675 -0.72319,0 -1.09092,0.22676 -0.36773,0.22677 -0.36773,0.62514 0,0.26966 0.13484,0.45965 0.14096,0.19 0.4474,0.3616 0.30643,0.17161 1.17672,0.49643 1.19511,0.43514 1.61186,0.87641 0.42289,0.44127 0.42289,1.10931 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5222"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 425.14136,-454.91232 q 0.26967,0 0.52095,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.4903,0.1287 -0.3187,0.0552 -0.57611,0.0552 -1.94894,0 -1.94894,-2.05313 v -3.99595 h -0.96222 v -0.4903 l 0.96222,-0.42289 0.42901,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28805,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5224"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 430.47342,-461.03495 q 0.4474,0 0.80287,0.0735 l -0.14097,0.94383 q -0.41675,-0.0919 -0.73545,-0.0919 -0.81512,0 -1.39735,0.66191 -0.57611,0.66191 -0.57611,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11644,1.24413 h 0.049 q 0.37386,-0.65577 0.90093,-1.01124 0.52708,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5226"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 433.48872,-460.91237 v 4.35755 q 0,0.82125 0.37386,1.22575 0.37385,0.4045 1.17059,0.4045 1.05415,0 1.53832,-0.57611 0.4903,-0.5761 0.4903,-1.88153 v -3.53016 h 1.01737 v 6.71712 h -0.83964 l -0.14709,-0.90093 h -0.0552 q -0.31256,0.49643 -0.87028,0.75997 -0.55159,0.26353 -1.26253,0.26353 -1.22575,0 -1.83862,-0.58223 -0.60675,-0.58223 -0.60675,-1.86314 v -4.39432 h 1.02963 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5228"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 442.91479,-454.07268 q -1.45865,0 -2.26152,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81513,-0.91931 2.31667,-0.91931 0.48417,0 0.96835,0.10419 0.48417,0.10419 0.75996,0.24515 l -0.31256,0.86416 q -0.33709,-0.13484 -0.73546,-0.22064 -0.39837,-0.0919 -0.7048,-0.0919 -2.04701,0 -2.04701,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69766,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5230"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 448.38166,-454.91232 q 0.26966,0 0.52094,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16547,0.0797 -0.4903,0.1287 -0.31869,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96221 v -0.4903 l 0.96221,-0.42289 0.42902,-1.43413 h 0.58836 v 1.55671 h 1.94894 v 0.79061 H 447.303 v 3.95305 q 0,0.60674 0.28805,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5232"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 456.44708,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82739,0.91931 -2.28603,0.91931 -0.90093,0 -1.59961,-0.42288 -0.69868,-0.42289 -1.07866,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82126,-0.91931 2.2799,-0.91931 1.40962,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11752,0 q 0,1.28704 0.51482,1.9612 0.51482,0.67417 1.5138,0.67417 0.99899,0 1.51381,-0.66804 0.52094,-0.67416 0.52094,-1.96733 0,-1.28091 -0.52094,-1.94282 -0.51482,-0.66803 -1.52606,-0.66803 -0.99899,0 -1.50768,0.65577 -0.50869,0.65578 -0.50869,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5234"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 461.28879,-461.03495 q 0.4474,0 0.80286,0.0735 l -0.14096,0.94383 q -0.41675,-0.0919 -0.73545,-0.0919 -0.81512,0 -1.39736,0.66191 -0.5761,0.66191 -0.5761,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11644,1.24413 h 0.049 q 0.37386,-0.65577 0.90093,-1.01124 0.52707,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5236"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 468.55751,-456.57934 q 0,1.18285 -0.85803,1.84476 -0.85802,0.6619 -2.32893,0.6619 -1.59347,0 -2.4515,-0.41062 v -1.00512 q 0.55159,0.23289 1.20124,0.36773 0.64965,0.13483 1.28704,0.13483 1.04189,0 1.56896,-0.39224 0.52707,-0.39837 0.52707,-1.10318 0,-0.46579 -0.18999,-0.75997 -0.18386,-0.30031 -0.62513,-0.55158 -0.43514,-0.25128 -1.32994,-0.56998 -1.25027,-0.4474 -1.7896,-1.06027 -0.5332,-0.61288 -0.5332,-1.59961 0,-1.03576 0.77835,-1.64864 0.77835,-0.61287 2.05926,-0.61287 1.33607,0 2.45764,0.4903 l -0.32483,0.90705 q -1.1093,-0.46578 -2.15732,-0.46578 -0.82738,0 -1.29317,0.35547 -0.46579,0.35546 -0.46579,0.98673 0,0.46578 0.17161,0.76609 0.1716,0.29418 0.5761,0.54546 0.41063,0.24515 1.25027,0.54546 1.40962,0.50256 1.93669,1.07866 0.5332,0.57611 0.5332,1.49542 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5238"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 473.36246,-454.07268 q -0.65577,0 -1.20123,-0.23902 -0.53933,-0.24515 -0.90706,-0.74771 h -0.0735 q 0.0735,0.58836 0.0735,1.11544 v 2.76407 h -1.01737 v -9.73247 h 0.82738 l 0.14096,0.91931 h 0.049 q 0.39224,-0.55159 0.91319,-0.79674 0.52094,-0.24515 1.1951,-0.24515 1.33607,0 2.05927,0.91319 0.72932,0.91318 0.72932,2.56182 0,1.65476 -0.74158,2.57408 -0.73545,0.91318 -2.04701,0.91318 z m -0.14709,-6.09811 q -1.02963,0 -1.48928,0.56997 -0.45966,0.56998 -0.47192,1.81411 v 0.22677 q 0,1.41574 0.47192,2.02862 0.47191,0.60675 1.5138,0.60675 0.87028,0 1.36058,-0.70481 0.49643,-0.70481 0.49643,-1.94282 0,-1.2564 -0.49643,-1.92443 -0.4903,-0.67416 -1.3851,-0.67416 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5240"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 480.77217,-454.07268 q -1.48929,0 -2.35345,-0.90705 -0.85802,-0.90706 -0.85802,-2.51892 0,-1.62413 0.79673,-2.58021 0.80287,-0.95609 2.1512,-0.95609 1.26253,0 1.99798,0.83351 0.73545,0.82739 0.73545,2.18797 v 0.64352 h -4.62722 q 0.0306,1.18285 0.59449,1.79573 0.56998,0.61287 1.59961,0.61287 1.08479,0 2.14507,-0.45352 v 0.90705 q -0.53933,0.23289 -1.02351,0.33095 -0.47804,0.10419 -1.15833,0.10419 z m -0.2758,-6.11037 q -0.80899,0 -1.29317,0.52707 -0.47804,0.52708 -0.56384,1.45865 h 3.51178 q 0,-0.96222 -0.42902,-1.47091 -0.42901,-0.51481 -1.22575,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5242"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 487.65471,-454.07268 q -1.45864,0 -2.26151,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81512,-0.91931 2.31667,-0.91931 0.48417,0 0.96835,0.10419 0.48417,0.10419 0.75996,0.24515 l -0.31257,0.86416 q -0.33708,-0.13484 -0.73545,-0.22064 -0.39837,-0.0919 -0.7048,-0.0919 -2.04701,0 -2.04701,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69767,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5244"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 493.08482,-457.63349 q 0,1.61187 -0.47805,3.0031 -0.47191,1.39123 -1.36671,2.42086 h -0.9806 q 0.85189,-1.15221 1.30542,-2.5557 0.45353,-1.40961 0.45353,-2.88051 0,-1.49542 -0.4474,-2.91117 -0.44127,-1.41574 -1.32381,-2.59859 h 0.99286 q 0.90093,1.07253 1.37284,2.49441 0.47192,1.41574 0.47192,3.0276 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5246"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ transform="translate(178.67433,582.63783)"
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#0093d9;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.00000003, 4.00000005;stroke-dashoffset:6.5;stroke-opacity:1"
+ id="rect8406"
+ width="21.230001"
+ height="21.23"
+ x="38.762836"
+ y="25.453775" />
+ <rect
+ transform="translate(178.67433,582.63783)"
+ y="-18.546227"
+ x="38.762836"
+ height="21.23"
+ width="21.230001"
+ id="rect8408"
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#db3279;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6.5;stroke-opacity:1" />
+ <rect
+ transform="translate(178.67433,582.63783)"
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6.5;stroke-opacity:1"
+ id="rect8426"
+ width="21.230001"
+ height="21.23"
+ x="38.762836"
+ y="69.453773" />
+ <g
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8536">
+ <path
+ d="m 263.32035,577.19507 q 0,1.41468 -1.02172,2.2292 -1.01457,0.81451 -2.82937,0.81451 -1.6719,0 -2.95798,-0.62875 v -2.05772 q 1.05744,0.47156 1.78622,0.66447 0.73592,0.19292 1.34323,0.19292 0.72878,0 1.1146,-0.27865 0.39297,-0.27865 0.39297,-0.82881 0,-0.30723 -0.17147,-0.54301 -0.17148,-0.24293 -0.50729,-0.46442 -0.32866,-0.22149 -1.35038,-0.70734 -0.95741,-0.45013 -1.43612,-0.86453 -0.47871,-0.4144 -0.7645,-0.96456 -0.2858,-0.55015 -0.2858,-1.28608 0,-1.3861 0.93598,-2.17918 0.94312,-0.79308 2.60074,-0.79308 0.81451,0 1.55043,0.19291 0.74307,0.19291 1.55044,0.54301 l -0.71449,1.72191 q -0.83595,-0.34295 -1.3861,-0.4787 -0.54301,-0.13576 -1.07173,-0.13576 -0.62875,0 -0.96456,0.29294 -0.33581,0.29294 -0.33581,0.76451 0,0.29294 0.13575,0.51443 0.13575,0.21434 0.42869,0.42154 0.30009,0.20006 1.40754,0.72878 1.4647,0.7002 2.00771,1.40754 0.54302,0.7002 0.54302,1.72192 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4978"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 270.11512,580.09589 -0.42155,-1.08602 h -0.0572 q -0.55016,0.69305 -1.13604,0.96455 -0.57873,0.26436 -1.51471,0.26436 -1.15033,0 -1.8148,-0.65732 -0.65733,-0.65733 -0.65733,-1.87196 0,-1.27179 0.88596,-1.87196 0.89311,-0.60731 2.68648,-0.67162 l 1.3861,-0.0429 v -0.3501 q 0,-1.21462 -1.24321,-1.21462 -0.95741,0 -2.25063,0.57873 l -0.72163,-1.47184 q 1.37896,-0.72164 3.058,-0.72164 1.6076,0 2.46499,0.7002 0.85738,0.7002 0.85738,2.12917 v 5.32294 h -1.52186 z m -0.64304,-3.70105 -0.84309,0.0286 q -0.95027,0.0286 -1.41469,0.34295 -0.46441,0.31438 -0.46441,0.95742 0,0.92169 1.05744,0.92169 0.75735,0 1.20748,-0.43584 0.45727,-0.43584 0.45727,-1.15747 v -0.65733 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4980"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 278.28886,573.74409 h -1.88625 v 6.3518 h -2.17918 v -6.3518 h -1.20034 v -1.05029 l 1.20034,-0.58588 v -0.58588 q 0,-1.36468 0.67161,-1.99342 0.67162,-0.62875 2.15061,-0.62875 1.12889,0 2.00771,0.33581 l -0.5573,1.60045 q -0.65733,-0.2072 -1.21463,-0.2072 -0.46441,0 -0.67162,0.27865 -0.2072,0.2715 -0.2072,0.70019 v 0.50015 h 1.88625 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4982"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 282.84014,573.50831 q -0.69305,0 -1.08602,0.44298 -0.39296,0.43584 -0.45012,1.24321 h 3.058 q -0.0143,-0.80737 -0.42154,-1.24321 -0.40726,-0.44298 -1.10032,-0.44298 z m 0.30723,6.73047 q -1.92911,0 -3.01513,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00028,-3.10088 1.00743,-1.10031 2.77936,-1.10031 1.69333,0 2.63645,0.96456 0.94313,0.96456 0.94313,2.66504 v 1.05744 h -5.15146 q 0.0357,0.92884 0.55016,1.45041 0.51443,0.52158 1.44326,0.52158 0.72164,0 1.36467,-0.15005 0.64304,-0.15004 1.34324,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22177,0.42155 -0.65019,0.14289 -1.58617,0.14289 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4984"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 297.06559,580.09589 -0.42154,-1.08602 h -0.0572 q -0.55016,0.69305 -1.13604,0.96455 -0.57873,0.26436 -1.51471,0.26436 -1.15033,0 -1.8148,-0.65732 -0.65733,-0.65733 -0.65733,-1.87196 0,-1.27179 0.88597,-1.87196 0.89311,-0.60731 2.68647,-0.67162 l 1.3861,-0.0429 v -0.3501 q 0,-1.21462 -1.2432,-1.21462 -0.95742,0 -2.25064,0.57873 l -0.72163,-1.47184 q 1.37896,-0.72164 3.05801,-0.72164 1.60759,0 2.46498,0.7002 0.85738,0.7002 0.85738,2.12917 v 5.32294 h -1.52186 z m -0.64304,-3.70105 -0.84309,0.0286 q -0.95027,0.0286 -1.41469,0.34295 -0.46441,0.31438 -0.46441,0.95742 0,0.92169 1.05744,0.92169 0.75736,0 1.20748,-0.43584 0.45727,-0.43584 0.45727,-1.15747 v -0.65733 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4986"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 305.2822,571.95787 q 0.44298,0 0.73592,0.0643 l -0.16433,2.04343 q -0.26436,-0.0715 -0.64304,-0.0715 -1.04315,0 -1.62903,0.53587 -0.57873,0.53586 -0.57873,1.50042 v 4.06544 h -2.17919 v -7.98797 h 1.65046 l 0.32152,1.34323 h 0.10718 q 0.37153,-0.67162 1.00028,-1.07887 0.63589,-0.41441 1.37896,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4988"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 310.7909,573.50831 q -0.69305,0 -1.08602,0.44298 -0.39297,0.43584 -0.45013,1.24321 h 3.05801 q -0.0143,-0.80737 -0.42155,-1.24321 -0.40726,-0.44298 -1.10031,-0.44298 z m 0.30723,6.73047 q -1.92912,0 -3.01514,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00028,-3.10088 1.00743,-1.10031 2.77936,-1.10031 1.69333,0 2.63646,0.96456 0.94312,0.96456 0.94312,2.66504 v 1.05744 h -5.15145 q 0.0357,0.92884 0.55015,1.45041 0.51443,0.52158 1.44327,0.52158 0.72163,0 1.36467,-0.15005 0.64304,-0.15004 1.34323,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22177,0.42155 -0.65018,0.14289 -1.58616,0.14289 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4990"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 321.21527,580.09589 -0.42155,-1.08602 h -0.0572 q -0.55015,0.69305 -1.13603,0.96455 -0.57874,0.26436 -1.51471,0.26436 -1.15033,0 -1.8148,-0.65732 -0.65733,-0.65733 -0.65733,-1.87196 0,-1.27179 0.88596,-1.87196 0.89311,-0.60731 2.68648,-0.67162 l 1.3861,-0.0429 v -0.3501 q 0,-1.21462 -1.24321,-1.21462 -0.95741,0 -2.25063,0.57873 l -0.72163,-1.47184 q 1.37896,-0.72164 3.058,-0.72164 1.6076,0 2.46498,0.7002 0.85739,0.7002 0.85739,2.12917 v 5.32294 h -1.52186 z m -0.64304,-3.70105 -0.84309,0.0286 q -0.95027,0.0286 -1.41469,0.34295 -0.46442,0.31438 -0.46442,0.95742 0,0.92169 1.05745,0.92169 0.75735,0 1.20748,-0.43584 0.45727,-0.43584 0.45727,-1.15747 v -0.65733 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4992"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 328.23154,576.71636 v -1.08602 h 3.50813 v 1.08602 z"
+ style="font-weight:normal"
+ id="path4994"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 345.12917,580.09589 h -1.42897 l -3.80822,-5.06572 -1.09317,0.9717 v 4.09402 h -1.21463 v -10.44581 h 1.21463 v 5.18003 l 4.73705,-5.18003 h 1.43612 l -4.20118,4.53699 z"
+ style="font-weight:normal"
+ id="path4996"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 349.6876,580.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.1932,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50014,-1.71477 -0.50015,-0.60017 -1.42898,-0.60017 z"
+ style="font-weight:normal"
+ id="path4998"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 357.88992,580.23878 q -1.73621,0 -2.74364,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92884,-3.00799 0.93597,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66448,0.71449 1.86482,0.71449 1.26464,0 2.5007,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path5000"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 366.42804,580.23878 q -0.7645,0 -1.40039,-0.27865 -0.62875,-0.28579 -1.05745,-0.87167 h -0.0857 q 0.0857,0.68591 0.0857,1.30037 v 3.22233 h -1.18604 V 572.2651 h 0.96455 l 0.16434,1.07173 h 0.0571 q 0.45728,-0.64303 1.06459,-0.92883 0.60732,-0.28579 1.39325,-0.28579 1.55758,0 2.40068,1.06458 0.85024,1.06459 0.85024,2.98656 0,1.92912 -0.86453,3.00085 -0.85739,1.06458 -2.38639,1.06458 z m -0.17148,-7.10915 q -1.20033,0 -1.7362,0.66448 -0.53587,0.66447 -0.55016,2.11488 v 0.26436 q 0,1.65047 0.55016,2.36495 0.55016,0.70735 1.76478,0.70735 1.01458,0 1.58617,-0.82166 0.57873,-0.82167 0.57873,-2.26493 0,-1.4647 -0.57873,-2.24349 -0.57159,-0.78594 -1.61475,-0.78594 z"
+ style="font-weight:normal"
+ id="path5002"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 380.37484,580.09589 -0.23578,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57873,0.25721 -1.45041,0.25721 -1.16461,0 -1.82909,-0.60017 -0.65732,-0.60017 -0.65732,-1.70762 0,-2.3721 3.79392,-2.48642 l 1.32895,-0.0429 v -0.48585 q 0,-0.92169 -0.40011,-1.35752 -0.39297,-0.44299 -1.26465,-0.44299 -0.97884,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57874,-0.31437 1.26465,-0.49299 0.69305,-0.17862 1.3861,-0.17862 1.4004,0 2.07202,0.6216 0.67876,0.6216 0.67876,1.99342 v 5.34437 h -0.87882 z m -2.67933,-0.83595 q 1.10746,0 1.73621,-0.60732 0.63589,-0.60731 0.63589,-1.70048 v -0.70734 l -1.18605,0.05 q -1.41468,0.05 -2.04343,0.44298 -0.62161,0.38583 -0.62161,1.20749 0,0.64304 0.38583,0.97885 0.39296,0.33581 1.09316,0.33581 z"
+ style="font-weight:normal"
+ id="path5004"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 384.8904,580.09589 h -1.18605 v -11.11743 h 1.18605 z"
+ style="font-weight:normal"
+ id="path5006"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.60573,580.09589 h -1.18605 v -11.11743 h 1.18605 z"
+ style="font-weight:normal"
+ id="path5008"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 397.46539,579.25994 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.49299 0.50014,-1.67191 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-weight:normal"
+ id="path5010"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 403.41706,580.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.1932,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-weight:normal"
+ id="path5012"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 410.19755,576.08761 -2.7222,-3.82251 h 1.35038 l 2.06487,3.00085 2.05772,-3.00085 h 1.3361 l -2.7222,3.82251 2.86509,4.00828 h -1.34323 l -2.19348,-3.17233 -2.21491,3.17233 h -1.34324 z"
+ style="font-weight:normal"
+ id="path5014"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 418.49989,579.25994 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.49299 0.50014,-1.67191 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-weight:normal"
+ id="path5016"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 426.13062,580.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20006,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.493,0.19292 -0.30008,0 -0.50014,-0.19292 -0.20006,-0.20005 -0.20006,-0.60017 z"
+ style="font-weight:normal"
+ id="path5018"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 434.01856,580.09589 v -5.06572 q 0,-0.95741 -0.43584,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.22892,0 -1.80051,0.66448 -0.57159,0.66447 -0.57159,2.19347 v 4.10831 h -1.18605 v -7.83079 h 0.96456 l 0.19291,1.07173 h 0.0572 q 0.36439,-0.57873 1.02172,-0.89311 0.65733,-0.32151 1.4647,-0.32151 1.41468,0 2.12917,0.6859 0.71449,0.67877 0.71449,2.17919 v 5.10859 h -1.18605 z"
+ style="font-weight:normal"
+ id="path5020"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 442.6853,577.95957 q 0,1.09316 -0.81452,1.68619 -0.81451,0.59302 -2.28636,0.59302 -1.55758,0 -2.42926,-0.49299 v -1.10031 q 0.56445,0.28579 1.20749,0.45012 0.65018,0.16434 1.25035,0.16434 0.92884,0 1.42898,-0.29294 0.50014,-0.30009 0.50014,-0.9074 0,-0.45728 -0.40011,-0.77879 -0.39297,-0.32867 -1.5433,-0.77165 -1.09316,-0.40726 -1.55758,-0.70734 -0.45727,-0.30723 -0.68591,-0.69306 -0.22149,-0.38582 -0.22149,-0.92169 0,-0.95741 0.77879,-1.50756 0.77879,-0.5573 2.13632,-0.5573 1.26464,0 2.47213,0.51443 l -0.42155,0.96455 q -1.17891,-0.48585 -2.13632,-0.48585 -0.84309,0 -1.27179,0.26436 -0.42869,0.26436 -0.42869,0.72878 0,0.31438 0.15719,0.53587 0.16433,0.22149 0.52157,0.42154 0.35725,0.20006 1.37182,0.57874 1.39325,0.50729 1.8791,1.02172 0.493,0.51443 0.493,1.29322 z"
+ style="font-weight:normal"
+ id="path5022"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 445.79332,580.09589 h -1.18604 v -7.83079 h 1.18604 z m -1.28607,-9.95282 q 0,-0.40725 0.20005,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.493,0.19292 -0.30008,0 -0.50014,-0.19292 -0.20005,-0.20005 -0.20005,-0.60017 z"
+ style="font-weight:normal"
+ id="path5024"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 453.65268,579.04559 h -0.0643 q -0.82166,1.19319 -2.45784,1.19319 -1.53614,0 -2.39353,-1.05029 -0.85024,-1.0503 -0.85024,-2.98656 0,-1.93626 0.85738,-3.00799 0.85739,-1.07173 2.38639,-1.07173 1.59331,0 2.44355,1.15747 h 0.0929 l -0.05,-0.56445 -0.0286,-0.55016 v -3.18661 h 1.18605 v 11.11743 h -0.96456 l -0.15719,-1.0503 z m -2.37209,0.20006 q 1.21462,0 1.75764,-0.65733 0.55015,-0.66448 0.55015,-2.13632 v -0.25007 q 0,-1.66476 -0.5573,-2.3721 -0.55016,-0.71449 -1.76478,-0.71449 -1.04316,0 -1.60046,0.81452 -0.55015,0.80737 -0.55015,2.28636 0,1.50042 0.55015,2.26492 0.55016,0.76451 1.61475,0.76451 z"
+ style="font-weight:normal"
+ id="path5026"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 460.60465,580.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.1932,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50756,0.61446 -0.55731,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-weight:normal"
+ id="path5028"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 471.82925,579.25994 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.49299 0.50014,-1.67191 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-weight:normal"
+ id="path5030"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 479.8315,580.09589 v -5.06572 q 0,-0.95741 -0.43584,-1.42898 -0.43583,-0.47156 -1.36467,-0.47156 -1.23606,0 -1.80765,0.67162 -0.56445,0.67162 -0.56445,2.20062 v 4.09402 h -1.18604 v -11.11743 h 1.18604 v 3.36524 q 0,0.60731 -0.0571,1.00742 h 0.0714 q 0.3501,-0.56444 0.99314,-0.88596 0.65019,-0.32866 1.47899,-0.32866 1.43612,0 2.15061,0.6859 0.72163,0.67877 0.72163,2.1649 v 5.10859 h -1.18605 z"
+ style="font-weight:normal"
+ id="path5032"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 484.63286,580.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28607,-9.95282 q 0,-0.40725 0.20005,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.493,0.19292 -0.30008,0 -0.50014,-0.19292 -0.20005,-0.20005 -0.20005,-0.60017 z"
+ style="font-weight:normal"
+ id="path5034"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 492.21357,577.95957 q 0,1.09316 -0.81451,1.68619 -0.81452,0.59302 -2.28636,0.59302 -1.55759,0 -2.42926,-0.49299 v -1.10031 q 0.56444,0.28579 1.20748,0.45012 0.65019,0.16434 1.25036,0.16434 0.92883,0 1.42897,-0.29294 0.50014,-0.30009 0.50014,-0.9074 0,-0.45728 -0.40011,-0.77879 -0.39297,-0.32867 -1.54329,-0.77165 -1.09317,-0.40726 -1.55759,-0.70734 -0.45727,-0.30723 -0.6859,-0.69306 -0.2215,-0.38582 -0.2215,-0.92169 0,-0.95741 0.7788,-1.50756 0.77879,-0.5573 2.13631,-0.5573 1.26465,0 2.47213,0.51443 l -0.42155,0.96455 q -1.1789,-0.48585 -2.13631,-0.48585 -0.8431,0 -1.27179,0.26436 -0.4287,0.26436 -0.4287,0.72878 0,0.31438 0.15719,0.53587 0.16433,0.22149 0.52158,0.42154 0.35724,0.20006 1.37181,0.57874 1.39325,0.50729 1.87911,1.02172 0.49299,0.51443 0.49299,1.29322 z"
+ style="font-weight:normal"
+ id="path5036"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 501.58051,572.1365 q 1.54329,0 2.39353,1.05744 0.85739,1.05029 0.85739,2.97941 0,1.92912 -0.86453,3.00085 -0.85739,1.06458 -2.38639,1.06458 -0.7645,0 -1.4004,-0.27865 -0.62875,-0.28579 -1.05744,-0.87167 h -0.0857 l -0.25007,1.00743 h -0.85024 v -11.11743 h 1.18605 v 2.70076 q 0,0.9074 -0.0572,1.62903 h 0.0572 q 0.82881,-1.17175 2.45784,-1.17175 z m -0.17148,0.99313 q -1.21463,0 -1.75049,0.7002 -0.53587,0.69305 -0.53587,2.34352 0,1.65047 0.55016,2.36495 0.55015,0.70735 1.76478,0.70735 1.09317,0 1.62903,-0.79309 0.53587,-0.80022 0.53587,-2.2935 0,-1.529 -0.53587,-2.27922 -0.53586,-0.75021 -1.65761,-0.75021 z"
+ style="font-weight:normal"
+ id="path5038"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 513.66964,576.17335 q 0,1.91483 -0.96456,2.9937 -0.96455,1.07173 -2.66504,1.07173 -1.05029,0 -1.86481,-0.49299 -0.81451,-0.493 -1.2575,-1.41469 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95742,-2.97941 0.95741,-1.07173 2.65789,-1.07173 1.64332,0 2.60788,1.09316 0.9717,1.09317 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76478,0.78594 1.16462,0 1.76479,-0.7788 0.60731,-0.78593 0.60731,-2.2935 0,-1.49328 -0.60731,-2.26493 -0.60017,-0.77879 -1.77908,-0.77879 -1.16461,0 -1.75763,0.7645 -0.59303,0.76451 -0.59303,2.27922 z"
+ style="font-weight:normal"
+ id="path5040"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 519.3141,572.12221 q 0.52157,0 0.93598,0.0857 l -0.16434,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61445,-0.4144 1.35038,-0.4144 z"
+ style="font-weight:normal"
+ id="path5042"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 527.04485,579.04559 h -0.0643 q -0.82166,1.19319 -2.45784,1.19319 -1.53615,0 -2.39353,-1.05029 -0.85024,-1.0503 -0.85024,-2.98656 0,-1.93626 0.85738,-3.00799 0.85739,-1.07173 2.38639,-1.07173 1.59331,0 2.44355,1.15747 h 0.0929 l -0.05,-0.56445 -0.0286,-0.55016 v -3.18661 h 1.18605 v 11.11743 h -0.96456 l -0.15719,-1.0503 z m -2.3721,0.20006 q 1.21463,0 1.75764,-0.65733 0.55016,-0.66448 0.55016,-2.13632 v -0.25007 q 0,-1.66476 -0.5573,-2.3721 -0.55016,-0.71449 -1.76479,-0.71449 -1.04315,0 -1.60045,0.81452 -0.55016,0.80737 -0.55016,2.28636 0,1.50042 0.55016,2.26492 0.55016,0.76451 1.61474,0.76451 z"
+ style="font-weight:normal"
+ id="path5044"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 533.99682,580.23878 q -1.73621,0 -2.74363,-1.05744 -1.00029,-1.05744 -1.00029,-2.93654 0,-1.89339 0.92884,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.5007,-0.52872 v 1.05744 q -0.62874,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50015,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path5046"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 542.46348,572.12221 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85739,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61446,-0.4144 1.35038,-0.4144 z"
+ style="font-weight:normal"
+ id="path5048"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8542">
+ <path
+ d="m 261.18403,624.09589 h -2.21491 v -8.60243 h -2.83652 v -1.84338 h 7.88794 v 1.84338 h -2.83651 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4931"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 269.92935,615.95787 q 0.44299,0 0.73593,0.0643 l -0.16434,2.04343 q -0.26436,-0.0715 -0.64303,-0.0715 -1.04316,0 -1.62904,0.53587 -0.57873,0.53586 -0.57873,1.50042 v 4.06544 h -2.17919 v -7.98797 h 1.65047 l 0.32152,1.34323 h 0.10717 q 0.37153,-0.67162 1.00028,-1.07887 0.6359,-0.41441 1.37896,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4933"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 272.03709,614.04305 q 0,-1.06459 1.18605,-1.06459 1.18605,0 1.18605,1.06459 0,0.50728 -0.30008,0.79308 -0.29294,0.27865 -0.88597,0.27865 -1.18605,0 -1.18605,-1.07173 z m 2.27207,10.05284 h -2.17918 v -7.98797 h 2.17918 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4935"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 283.7404,624.09589 h -2.17919 v -4.66561 q 0,-0.86453 -0.29294,-1.29322 -0.28579,-0.43584 -0.9074,-0.43584 -0.83595,0 -1.21463,0.61446 -0.37867,0.61446 -0.37867,2.022 v 3.75821 h -2.17919 v -7.98797 h 1.66475 l 0.29294,1.02171 h 0.12147 q 0.32152,-0.55015 0.92883,-0.85738 0.60732,-0.31438 1.39325,-0.31438 1.79337,0 2.42926,1.17176 h 0.19291 q 0.32152,-0.5573 0.94312,-0.86453 0.62875,-0.30723 1.41469,-0.30723 1.35753,0 2.05058,0.7002 0.7002,0.69305 0.7002,2.2292 v 5.20862 h -2.18634 v -4.66561 q 0,-0.86453 -0.29294,-1.29322 -0.28579,-0.43584 -0.90739,-0.43584 -0.80023,0 -1.20034,0.57159 -0.39297,0.57159 -0.39297,1.8148 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4937"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 294.22193,620.71636 v -1.08602 h 3.50813 v 1.08602 z"
+ style="font-weight:normal"
+ id="path4939"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 312.64142,618.85869 q 0,2.50785 -1.27179,3.94397 -1.26464,1.43612 -3.52242,1.43612 -2.3078,0 -3.5653,-1.40754 -1.25035,-1.41468 -1.25035,-3.98684 0,-2.55072 1.2575,-3.95111 1.2575,-1.40754 3.57244,-1.40754 2.25063,0 3.51527,1.42897 1.26465,1.42898 1.26465,3.94397 z m -8.32378,0 q 0,2.12203 0.90025,3.22234 0.9074,1.09317 2.62932,1.09317 1.7362,0 2.62217,-1.09317 0.88596,-1.09316 0.88596,-3.22234 0,-2.10774 -0.88596,-3.19376 -0.87882,-1.09316 -2.60788,-1.09316 -1.73621,0 -2.64361,1.10031 -0.90025,1.09316 -0.90025,3.18661 z"
+ style="font-weight:normal"
+ id="path4941"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 315.91377,616.2651 v 5.08001 q 0,0.95741 0.43584,1.42897 0.43584,0.47157 1.36467,0.47157 1.22892,0 1.79336,-0.67162 0.57159,-0.67162 0.57159,-2.19348 v -4.11545 h 1.18605 v 7.83079 h -0.97885 l -0.17147,-1.0503 h -0.0643 q -0.36439,0.57873 -1.01457,0.88596 -0.64304,0.30723 -1.47184,0.30723 -1.42898,0 -2.14347,-0.67876 -0.70734,-0.67876 -0.70734,-2.17204 v -5.12288 h 1.20034 z"
+ style="font-weight:normal"
+ id="path4943"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 326.30242,623.25994 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19292,0.0929 -0.57159,0.15004 -0.37154,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.49299 0.50014,-1.67191 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.3358,0.37868 0.92168,0.37868 z"
+ style="font-weight:normal"
+ id="path4945"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 332.25411,624.23878 q -1.73621,0 -2.74364,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50786,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66448,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path4947"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 340.72078,616.12221 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85739,-0.10717 -0.95026,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61446,-0.4144 1.35038,-0.4144 z"
+ style="font-weight:normal"
+ id="path4949"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 350.23061,624.23878 q -1.73621,0 -2.74364,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92884,-3.00799 0.93597,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66448,0.71449 1.86482,0.71449 1.26464,0 2.5007,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path4951"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 360.45492,623.04559 h -0.0643 q -0.82166,1.19319 -2.45784,1.19319 -1.53615,0 -2.39353,-1.05029 -0.85024,-1.0503 -0.85024,-2.98656 0,-1.93626 0.85738,-3.00799 0.85739,-1.07173 2.38639,-1.07173 1.59331,0 2.44355,1.15747 h 0.0929 l -0.05,-0.56445 -0.0286,-0.55016 v -3.18661 h 1.18605 v 11.11743 h -0.96456 l -0.15719,-1.0503 z m -2.3721,0.20006 q 1.21463,0 1.75764,-0.65733 0.55016,-0.66448 0.55016,-2.13632 v -0.25007 q 0,-1.66476 -0.5573,-2.3721 -0.55016,-0.71449 -1.76479,-0.71449 -1.04315,0 -1.60045,0.81452 -0.55015,0.80737 -0.55015,2.28636 0,1.50042 0.55015,2.26492 0.55016,0.76451 1.61474,0.76451 z"
+ style="font-weight:normal"
+ id="path4953"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 370.50777,616.2651 v 0.75021 l -1.45041,0.17148 q 0.20005,0.25007 0.35724,0.65733 0.15719,0.40011 0.15719,0.9074 0,1.15032 -0.78594,1.83623 -0.78593,0.68591 -2.15775,0.68591 -0.3501,0 -0.65733,-0.0572 -0.75736,0.40011 -0.75736,1.00743 0,0.32152 0.26437,0.47871 0.26436,0.15004 0.90739,0.15004 h 1.38611 q 1.27179,0 1.95055,0.53586 0.68591,0.53587 0.68591,1.55759 0,1.30036 -1.04315,1.97913 -1.04315,0.6859 -3.04372,0.6859 -1.53615,0 -2.3721,-0.57159 -0.8288,-0.57159 -0.8288,-1.61474 0,-0.71448 0.45727,-1.23606 0.45727,-0.52158 1.28608,-0.70734 -0.30009,-0.13576 -0.50729,-0.42155 -0.20006,-0.2858 -0.20006,-0.66447 0,-0.4287 0.22864,-0.75022 0.22864,-0.32152 0.72163,-0.6216 -0.60731,-0.25007 -0.99314,-0.85024 -0.37867,-0.60017 -0.37867,-1.37182 0,-1.28607 0.77164,-1.97913 0.77165,-0.70019 2.18633,-0.70019 0.61446,0 1.10746,0.14289 h 2.70791 z m -6.24462,9.14544 q 0,0.6359 0.53586,0.96456 0.53587,0.32867 1.53615,0.32867 1.49328,0 2.20777,-0.45013 0.72163,-0.44298 0.72163,-1.20749 0,-0.63589 -0.39297,-0.88596 -0.39297,-0.24293 -1.47899,-0.24293 h -1.42183 q -0.80737,0 -1.2575,0.38583 -0.45012,0.38582 -0.45012,1.10745 z m 0.64304,-6.63759 q 0,0.82166 0.46441,1.24321 0.46442,0.42155 1.29322,0.42155 1.73621,0 1.73621,-1.68619 0,-1.76478 -1.75764,-1.76478 -0.83595,0 -1.28608,0.45012 -0.45012,0.45013 -0.45012,1.33609 z"
+ style="font-weight:normal"
+ id="path4955"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 375.43773,624.23878 q -1.73621,0 -2.74363,-1.05744 -1.00029,-1.05744 -1.00029,-2.93654 0,-1.89339 0.92884,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.1932,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50014,-1.71477 -0.50015,-0.60017 -1.42898,-0.60017 z"
+ style="font-weight:normal"
+ id="path4957"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 390.8921,620.17335 q 0,1.91483 -0.96456,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.05029,0 -1.86481,-0.49299 -0.81452,-0.493 -1.2575,-1.41469 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95741,-2.97941 0.95742,-1.07173 2.6579,-1.07173 1.64332,0 2.60788,1.09316 0.9717,1.09317 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76478,0.78594 1.16462,0 1.76479,-0.7788 0.60731,-0.78593 0.60731,-2.2935 0,-1.49328 -0.60731,-2.26493 -0.60017,-0.77879 -1.77908,-0.77879 -1.16461,0 -1.75764,0.7645 -0.59302,0.76451 -0.59302,2.27922 z"
+ style="font-weight:normal"
+ id="path4959"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 396.49369,617.18679 h -1.99342 v 6.9091 h -1.18605 v -6.9091 h -1.4004 v -0.53586 l 1.4004,-0.4287 v -0.43583 q 0,-2.88653 2.52214,-2.88653 0.6216,0 1.45755,0.25007 l -0.30723,0.95027 q -0.68591,-0.2215 -1.17176,-0.2215 -0.67162,0 -0.99314,0.45013 -0.32151,0.44298 -0.32151,1.42898 v 0.50728 h 1.99342 z"
+ style="font-weight:normal"
+ id="path4961"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 406.78944,621.95957 q 0,1.09316 -0.81452,1.68619 -0.81451,0.59302 -2.28636,0.59302 -1.55758,0 -2.42925,-0.49299 v -1.10031 q 0.56444,0.28579 1.20748,0.45012 0.65018,0.16434 1.25035,0.16434 0.92884,0 1.42898,-0.29294 0.50014,-0.30009 0.50014,-0.9074 0,-0.45728 -0.40011,-0.77879 -0.39297,-0.32867 -1.5433,-0.77165 -1.09316,-0.40726 -1.55758,-0.70734 -0.45727,-0.30723 -0.68591,-0.69306 -0.22149,-0.38582 -0.22149,-0.92169 0,-0.95741 0.77879,-1.50756 0.77879,-0.5573 2.13632,-0.5573 1.26464,0 2.47213,0.51443 l -0.42155,0.96455 q -1.1789,-0.48585 -2.13632,-0.48585 -0.84309,0 -1.27179,0.26436 -0.42869,0.26436 -0.42869,0.72878 0,0.31438 0.15719,0.53587 0.16433,0.22149 0.52157,0.42154 0.35725,0.20006 1.37182,0.57874 1.39325,0.50729 1.8791,1.02172 0.493,0.51443 0.493,1.29322 z"
+ style="font-weight:normal"
+ id="path4963"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 411.2407,623.25994 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67161,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.49299 0.50014,-1.67191 h 0.6859 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-weight:normal"
+ id="path4965"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 415.07035,624.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20006,-0.59302 0.20005,-0.19291 0.50014,-0.19291 0.28579,0 0.49299,0.19291 0.20721,0.19291 0.20721,0.59302 0,0.40012 -0.20721,0.60017 -0.2072,0.19292 -0.49299,0.19292 -0.30009,0 -0.50014,-0.19292 -0.20006,-0.20005 -0.20006,-0.60017 z"
+ style="font-weight:normal"
+ id="path4967"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 420.7291,624.23878 q -1.70048,0 -2.63646,-1.04315 -0.92883,-1.05029 -0.92883,-2.96512 0,-1.96484 0.94312,-3.03657 0.95027,-1.07173 2.70076,-1.07173 0.56445,0 1.1289,0.12146 0.56444,0.12146 0.88596,0.28579 l -0.36439,1.00743 q -0.39297,-0.15719 -0.85738,-0.25721 -0.46442,-0.10718 -0.82166,-0.10718 -2.38639,0 -2.38639,3.04372 0,1.44326 0.57873,2.21491 0.58588,0.77165 1.72906,0.77165 0.97885,0 2.00771,-0.42155 v 1.0503 q -0.78593,0.40725 -1.97913,0.40725 z"
+ style="font-weight:normal"
+ id="path4969"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 425.74479,620.08761 q 0.30723,-0.43584 0.93598,-1.14318 l 2.52929,-2.67933 h 1.40754 l -3.17233,3.33666 3.39382,4.49413 h -1.43612 l -2.76507,-3.70105 -0.89311,0.77165 v 2.9294 h -1.17176 v -11.11743 h 1.17176 v 5.89452 q 0,0.39297 -0.0572,1.21463 z"
+ style="font-weight:normal"
+ id="path4971"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 435.56901,624.23878 q -1.73621,0 -2.74363,-1.05744 -1.00029,-1.05744 -1.00029,-2.93654 0,-1.89339 0.92884,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.5007,-0.52872 v 1.05744 q -0.62874,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50015,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path4973"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 444.03569,616.12221 q 0.52157,0 0.93597,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43583,-0.7645 1.05029,-1.1789 0.61446,-0.4144 1.35039,-0.4144 z"
+ style="font-weight:normal"
+ id="path4975"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8548">
+ <path
+ d="m 257.15432,657.65008 h 3.25092 q 2.22205,0 3.22233,0.63589 1.00743,0.62875 1.00743,2.00771 0,0.93598 -0.44298,1.53615 -0.43584,0.60017 -1.16461,0.72163 v 0.0715 q 0.99313,0.22149 1.42897,0.82881 0.44298,0.60731 0.44298,1.61474 0,1.42897 -1.036,2.2292 -1.02887,0.80023 -2.8008,0.80023 h -3.90824 v -10.44581 z m 2.21491,4.13688 h 1.28608 q 0.90025,0 1.30036,-0.27865 0.40726,-0.27865 0.40726,-0.92169 0,-0.60017 -0.44298,-0.85738 -0.43584,-0.26436 -1.38611,-0.26436 h -1.16461 z m 0,1.75764 v 2.7222 h 1.44326 q 0.91455,0 1.35039,-0.3501 0.43583,-0.3501 0.43583,-1.07173 0,-1.30037 -1.85766,-1.30037 z"
+ style="font-weight:bold"
+ id="path4872"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 268.99338,668.09589 h -2.17919 v -11.11743 h 2.17919 z"
+ style="font-weight:bold"
+ id="path4874"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 274.58067,661.50831 q -0.69305,0 -1.08602,0.44298 -0.39297,0.43584 -0.45013,1.24321 h 3.05801 q -0.0143,-0.80737 -0.42155,-1.24321 -0.40726,-0.44298 -1.10031,-0.44298 z m 0.30723,6.73047 q -1.92912,0 -3.01514,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00028,-3.10088 1.00743,-1.10031 2.77936,-1.10031 1.69333,0 2.63646,0.96456 0.94312,0.96456 0.94312,2.66504 v 1.05744 h -5.15145 q 0.0357,0.92884 0.55015,1.45041 0.51443,0.52158 1.44327,0.52158 0.72163,0 1.36467,-0.15005 0.64304,-0.15004 1.34323,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22177,0.42155 -0.65018,0.14289 -1.58616,0.14289 z"
+ style="font-weight:bold"
+ id="path4876"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 283.24026,661.50831 q -0.69306,0 -1.08602,0.44298 -0.39297,0.43584 -0.45013,1.24321 h 3.05801 q -0.0143,-0.80737 -0.42155,-1.24321 -0.40726,-0.44298 -1.10031,-0.44298 z m 0.30723,6.73047 q -1.92912,0 -3.01514,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00028,-3.10088 1.00743,-1.10031 2.77936,-1.10031 1.69333,0 2.63646,0.96456 0.94312,0.96456 0.94312,2.66504 v 1.05744 h -5.15146 q 0.0357,0.92884 0.55016,1.45041 0.51443,0.52158 1.44326,0.52158 0.72164,0 1.36468,-0.15005 0.64303,-0.15004 1.34323,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22177,0.42155 -0.65018,0.14289 -1.58616,0.14289 z"
+ style="font-weight:bold"
+ id="path4878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 291.12106,668.23878 q -1.40755,0 -2.21492,-1.09316 -0.80022,-1.09317 -0.80022,-3.02943 0,-1.96484 0.81451,-3.05801 0.82166,-1.10031 2.25778,-1.10031 1.50757,0 2.30065,1.17176 h 0.0715 q -0.16433,-0.89311 -0.16433,-1.5933 v -2.55787 h 2.18633 v 11.11743 h -1.6719 l -0.42155,-1.03601 h -0.0929 q -0.74307,1.1789 -2.26492,1.1789 z m 0.7645,-1.7362 q 0.83595,0 1.22177,-0.48585 0.39297,-0.48585 0.42869,-1.65047 v -0.23578 q 0,-1.28608 -0.40011,-1.84338 -0.39297,-0.5573 -1.28608,-0.5573 -0.72877,0 -1.13603,0.62161 -0.40012,0.61446 -0.40012,1.79336 0,1.1789 0.40726,1.77193 0.40726,0.58588 1.16462,0.58588 z"
+ style="font-weight:bold"
+ id="path4880"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 301.10959,664.71636 v -1.08602 h 3.50814 v 1.08602 z"
+ style="font-weight:normal"
+ id="path4882"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 313.67743,668.09589 h -1.21463 v -9.36694 h -3.30808 v -1.07887 h 7.83078 v 1.07887 h -3.30807 z"
+ style="font-weight:normal"
+ id="path4884"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 323.73027,668.09589 v -5.06572 q 0,-0.95741 -0.43584,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.23606,0 -1.80765,0.67162 -0.56445,0.67162 -0.56445,2.20062 v 4.09402 h -1.18605 v -11.11743 h 1.18605 v 3.36524 q 0,0.60731 -0.0572,1.00742 h 0.0715 q 0.3501,-0.56444 0.99314,-0.88596 0.65018,-0.32866 1.47899,-0.32866 1.43612,0 2.1506,0.6859 0.72164,0.67877 0.72164,2.1649 v 5.10859 h -1.18605 z"
+ style="font-weight:normal"
+ id="path4886"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 328.53162,668.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20006,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.493,0.19292 -0.30008,0 -0.50014,-0.19292 -0.20006,-0.20005 -0.20006,-0.60017 z"
+ style="font-weight:normal"
+ id="path4888"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 336.11234,665.95957 q 0,1.09316 -0.81452,1.68619 -0.81451,0.59302 -2.28636,0.59302 -1.55758,0 -2.42926,-0.49299 v -1.10031 q 0.56445,0.28579 1.20749,0.45012 0.65018,0.16434 1.25035,0.16434 0.92884,0 1.42898,-0.29294 0.50014,-0.30009 0.50014,-0.9074 0,-0.45728 -0.40011,-0.77879 -0.39297,-0.32867 -1.5433,-0.77165 -1.09316,-0.40726 -1.55758,-0.70734 -0.45727,-0.30723 -0.68591,-0.69306 -0.22149,-0.38582 -0.22149,-0.92169 0,-0.95741 0.77879,-1.50756 0.77879,-0.5573 2.13632,-0.5573 1.26464,0 2.47213,0.51443 l -0.42155,0.96455 q -1.17891,-0.48585 -2.13632,-0.48585 -0.84309,0 -1.27179,0.26436 -0.42869,0.26436 -0.42869,0.72878 0,0.31438 0.15719,0.53587 0.16433,0.22149 0.52157,0.42154 0.35725,0.20006 1.37182,0.57874 1.39325,0.50729 1.8791,1.02172 0.493,0.51443 0.493,1.29322 z"
+ style="font-weight:normal"
+ id="path4890"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 346.65102,668.09589 -0.23578,-1.1146 h -0.0571 q -0.58588,0.73592 -1.17176,1.00028 -0.57874,0.25721 -1.45041,0.25721 -1.16462,0 -1.82909,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32894,-0.0429 v -0.48585 q 0,-0.92169 -0.40011,-1.35752 -0.39297,-0.44299 -1.26464,-0.44299 -0.97885,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57873,-0.31437 1.26464,-0.49299 0.69305,-0.17862 1.38611,-0.17862 1.40039,0 2.07201,0.6216 0.67876,0.6216 0.67876,1.99342 v 5.34437 h -0.87882 z m -2.67932,-0.83595 q 1.10745,0 1.7362,-0.60732 0.6359,-0.60731 0.6359,-1.70048 v -0.70734 l -1.18605,0.05 q -1.41469,0.05 -2.04344,0.44298 -0.6216,0.38583 -0.6216,1.20749 0,0.64304 0.38582,0.97885 0.39297,0.33581 1.09317,0.33581 z"
+ style="font-weight:normal"
+ id="path4892"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 353.55297,660.12221 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85739,-0.10717 -0.95026,0 -1.62903,0.77165 -0.67161,0.77164 -0.67161,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97884 l 0.13576,1.45041 h 0.0572 q 0.43583,-0.7645 1.05029,-1.1789 0.61446,-0.4144 1.35038,-0.4144 z"
+ style="font-weight:normal"
+ id="path4894"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 359.26173,668.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50786,-1.1146 1.47184,0 2.32922,0.9717 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35039,0.12146 z m -0.32151,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path4896"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 368.97162,668.09589 -0.23578,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57873,0.25721 -1.45041,0.25721 -1.16461,0 -1.82909,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32895,-0.0429 v -0.48585 q 0,-0.92169 -0.40011,-1.35752 -0.39297,-0.44299 -1.26465,-0.44299 -0.97884,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57874,-0.31437 1.26465,-0.49299 0.69305,-0.17862 1.3861,-0.17862 1.4004,0 2.07202,0.6216 0.67876,0.6216 0.67876,1.99342 v 5.34437 h -0.87882 z m -2.67933,-0.83595 q 1.10746,0 1.73621,-0.60732 0.63589,-0.60731 0.63589,-1.70048 v -0.70734 l -1.18605,0.05 q -1.41468,0.05 -2.04343,0.44298 -0.62161,0.38583 -0.62161,1.20749 0,0.64304 0.38583,0.97885 0.39296,0.33581 1.09316,0.33581 z"
+ style="font-weight:normal"
+ id="path4898"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 382.49687,668.09589 -1.43612,-4.59416 q -0.13576,-0.42155 -0.50729,-1.91483 h -0.0572 q -0.28579,1.25036 -0.50014,1.92912 l -1.47899,4.57987 h -1.37182 L 375.009,660.2651 h 1.2432 q 0.75736,2.95084 1.15033,4.49413 0.40011,1.54329 0.45727,2.07916 h 0.0572 q 0.0786,-0.40726 0.25007,-1.0503 0.17862,-0.65018 0.30723,-1.02886 l 1.43612,-4.49413 h 1.28608 l 1.40039,4.49413 q 0.40012,1.22892 0.54301,2.06487 h 0.0572 q 0.0286,-0.25722 0.15005,-0.79308 0.1286,-0.53587 1.49327,-5.76592 h 1.22892 l -2.16489,7.83079 h -1.40754 z"
+ style="font-weight:normal"
+ id="path4900"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.66289,668.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20006,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.493,0.19292 -0.30008,0 -0.50014,-0.19292 -0.20006,-0.20005 -0.20006,-0.60017 z"
+ style="font-weight:normal"
+ id="path4902"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 392.37822,668.09589 h -1.18604 v -11.11743 h 1.18604 z"
+ style="font-weight:normal"
+ id="path4904"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 396.09356,668.09589 h -1.18605 v -11.11743 h 1.18605 z"
+ style="font-weight:normal"
+ id="path4906"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 406.06781,660.1365 q 1.5433,0 2.39354,1.05744 0.85738,1.05029 0.85738,2.97941 0,1.92912 -0.86453,3.00085 -0.85738,1.06458 -2.38639,1.06458 -0.7645,0 -1.40039,-0.27865 -0.62875,-0.28579 -1.05745,-0.87167 h -0.0857 l -0.25007,1.00743 h -0.85024 V 656.97846 H 403.61 v 2.70076 q 0,0.9074 -0.0571,1.62903 h 0.0571 q 0.82881,-1.17175 2.45784,-1.17175 z m -0.17147,0.99313 q -1.21463,0 -1.7505,0.7002 -0.53587,0.69305 -0.53587,2.34352 0,1.65047 0.55016,2.36495 0.55016,0.70735 1.76478,0.70735 1.09317,0 1.62904,-0.79309 0.53586,-0.80022 0.53586,-2.2935 0,-1.529 -0.53586,-2.27922 -0.53587,-0.75021 -1.65761,-0.75021 z"
+ style="font-weight:normal"
+ id="path4908"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 414.70597,668.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.1932,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-weight:normal"
+ id="path4910"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 425.93057,667.25994 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.49299 0.50014,-1.67191 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-weight:normal"
+ id="path4912"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 432.1466,660.12221 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85739,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61446,-0.4144 1.35038,-0.4144 z"
+ style="font-weight:normal"
+ id="path4914"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 435.73333,668.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20006,-0.59302 0.20005,-0.19291 0.50014,-0.19291 0.28579,0 0.49299,0.19291 0.20721,0.19291 0.20721,0.59302 0,0.40012 -0.20721,0.60017 -0.2072,0.19292 -0.49299,0.19292 -0.30009,0 -0.50014,-0.19292 -0.20006,-0.20005 -0.20006,-0.60017 z"
+ style="font-weight:normal"
+ id="path4916"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 448.24402,668.09589 v -5.0943 q 0,-0.93598 -0.40012,-1.4004 -0.40011,-0.47156 -1.24321,-0.47156 -1.10745,0 -1.63617,0.6359 -0.52872,0.63589 -0.52872,1.95769 v 4.37267 h -1.18605 v -5.0943 q 0,-0.93598 -0.40012,-1.4004 -0.40011,-0.47156 -1.25035,-0.47156 -1.1146,0 -1.63617,0.67162 -0.51444,0.66447 -0.51444,2.18633 v 4.10831 h -1.18604 v -7.83079 h 0.96455 l 0.19291,1.07173 h 0.0572 q 0.33581,-0.57159 0.94313,-0.89311 0.61446,-0.32151 1.37181,-0.32151 1.83624,0 2.40068,1.32894 h 0.0572 q 0.3501,-0.61446 1.01457,-0.9717 0.66448,-0.35724 1.51472,-0.35724 1.32894,0 1.98627,0.6859 0.66448,0.67877 0.66448,2.17919 v 5.10859 h -1.18605 z"
+ style="font-weight:normal"
+ id="path4918"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 461.84785,668.09589 v -5.0943 q 0,-0.93598 -0.40011,-1.4004 -0.40011,-0.47156 -1.24321,-0.47156 -1.10746,0 -1.63618,0.6359 -0.52872,0.63589 -0.52872,1.95769 v 4.37267 h -1.18605 v -5.0943 q 0,-0.93598 -0.40011,-1.4004 -0.40011,-0.47156 -1.25035,-0.47156 -1.1146,0 -1.63618,0.67162 -0.51443,0.66447 -0.51443,2.18633 v 4.10831 h -1.18605 v -7.83079 h 0.96456 l 0.19291,1.07173 h 0.0572 q 0.33581,-0.57159 0.94312,-0.89311 0.61446,-0.32151 1.37182,-0.32151 1.83623,0 2.40068,1.32894 h 0.0572 q 0.3501,-0.61446 1.01457,-0.9717 0.66447,-0.35724 1.51471,-0.35724 1.32895,0 1.98628,0.6859 0.66447,0.67877 0.66447,2.17919 v 5.10859 h -1.18605 z"
+ style="font-weight:normal"
+ id="path4920"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 468.77837,668.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35039,0.12146 z m -0.32151,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path4922"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 479.00271,667.04559 h -0.0643 q -0.82166,1.19319 -2.45784,1.19319 -1.53614,0 -2.39353,-1.05029 -0.85024,-1.0503 -0.85024,-2.98656 0,-1.93626 0.85739,-3.00799 0.85738,-1.07173 2.38638,-1.07173 1.59331,0 2.44355,1.15747 h 0.0929 l -0.05,-0.56445 -0.0286,-0.55016 v -3.18661 h 1.18605 v 11.11743 h -0.96456 l -0.15718,-1.0503 z m -2.3721,0.20006 q 1.21463,0 1.75764,-0.65733 0.55015,-0.66448 0.55015,-2.13632 v -0.25007 q 0,-1.66476 -0.5573,-2.3721 -0.55015,-0.71449 -1.76478,-0.71449 -1.04315,0 -1.60045,0.81452 -0.55016,0.80737 -0.55016,2.28636 0,1.50042 0.55016,2.26492 0.55015,0.76451 1.61474,0.76451 z"
+ style="font-weight:normal"
+ id="path4924"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 493.20671,664.17335 q 0,1.91483 -0.96456,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.0503,0 -1.86481,-0.49299 -0.81452,-0.493 -1.2575,-1.41469 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95741,-2.97941 0.95741,-1.07173 2.65789,-1.07173 1.64332,0 2.60788,1.09316 0.97171,1.09317 0.97171,2.95798 z m -5.96598,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76479,0.78594 1.16461,0 1.76478,-0.7788 0.60732,-0.78593 0.60732,-2.2935 0,-1.49328 -0.60732,-2.26493 -0.60017,-0.77879 -1.77907,-0.77879 -1.16462,0 -1.75764,0.7645 -0.59303,0.76451 -0.59303,2.27922 z"
+ style="font-weight:normal"
+ id="path4926"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 503.76683,661.18679 h -1.99342 v 6.9091 h -1.18604 v -6.9091 h -1.4004 v -0.53586 l 1.4004,-0.4287 v -0.43583 q 0,-2.88653 2.52214,-2.88653 0.6216,0 1.45755,0.25007 l -0.30723,0.95027 q -0.68591,-0.2215 -1.17176,-0.2215 -0.67162,0 -0.99314,0.45013 -0.32152,0.44298 -0.32152,1.42898 v 0.50728 h 1.99342 z m -4.95854,0 h -1.99342 v 6.9091 h -1.18605 v -6.9091 h -1.40039 v -0.53586 l 1.40039,-0.4287 v -0.43583 q 0,-2.88653 2.52214,-2.88653 0.62161,0 1.45756,0.25007 l -0.30723,0.95027 q -0.68591,-0.2215 -1.17176,-0.2215 -0.67162,0 -0.99314,0.45013 -0.32152,0.44298 -0.32152,1.42898 v 0.50728 h 1.99342 z"
+ style="font-weight:normal"
+ id="path4928"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8556">
+ <path
+ d="m 332.29654,748.41248 -2.515,-8.19518 h -0.0643 q 0.13575,2.50071 0.13575,3.33666 v 4.85852 h -1.97913 v -10.44581 h 3.01514 l 2.47213,7.98797 h 0.0429 l 2.62217,-7.98797 h 3.01514 v 10.44581 h -2.06487 v -4.94426 q 0,-0.3501 0.007,-0.80737 0.0143,-0.45727 0.10003,-2.42926 h -0.0643 l -2.69362,8.18089 h -2.02914 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4847"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 346.57914,748.41248 -0.42154,-1.08603 h -0.0572 q -0.55016,0.69306 -1.13604,0.96456 -0.57873,0.26436 -1.51471,0.26436 -1.15033,0 -1.8148,-0.65733 -0.65733,-0.65732 -0.65733,-1.87195 0,-1.27179 0.88597,-1.87196 0.89311,-0.60731 2.68647,-0.67162 l 1.38611,-0.0429 v -0.3501 q 0,-1.21463 -1.24321,-1.21463 -0.95742,0 -2.25064,0.57874 l -0.72163,-1.47184 q 1.37896,-0.72164 3.05801,-0.72164 1.60759,0 2.46498,0.7002 0.85738,0.7002 0.85738,2.12917 v 5.32294 h -1.52186 z m -0.64303,-3.70105 -0.8431,0.0286 q -0.95027,0.0286 -1.41468,0.34295 -0.46442,0.31438 -0.46442,0.95742 0,0.92169 1.05744,0.92169 0.75736,0 1.20748,-0.43584 0.45728,-0.43584 0.45728,-1.15747 v -0.65733 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4849"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 352.4308,744.06839 0.95027,-1.21463 2.23634,-2.42926 h 2.45784 l -3.17233,3.46527 3.36524,4.52271 h -2.515 l -2.30065,-3.23663 -0.93597,0.75021 v 2.48642 h -2.17919 v -11.11743 h 2.17919 v 4.95854 l -0.11432,1.8148 h 0.0286 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4851"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 362.73371,741.8249 q -0.69305,0 -1.08602,0.44298 -0.39297,0.43584 -0.45013,1.24321 h 3.05801 q -0.0143,-0.80737 -0.42155,-1.24321 -0.40726,-0.44298 -1.10031,-0.44298 z m 0.30723,6.73047 q -1.92912,0 -3.01514,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00028,-3.10088 1.00743,-1.10031 2.77936,-1.10031 1.69333,0 2.63646,0.96456 0.94312,0.96456 0.94312,2.66504 v 1.05744 h -5.15145 q 0.0357,0.92883 0.55015,1.45041 0.51443,0.52158 1.44327,0.52158 0.72163,0 1.36467,-0.15005 0.64304,-0.15004 1.34323,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22177,0.42155 -0.65018,0.14289 -1.58616,0.14289 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4853"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 377.4593,746.04038 q 0,1.22892 -0.85739,1.87195 -0.85024,0.64304 -2.55072,0.64304 -0.87167,0 -1.48613,-0.12146 -0.61446,-0.11432 -1.15033,-0.34295 v -1.80051 q 0.60732,0.28579 1.36467,0.4787 0.76451,0.19292 1.34324,0.19292 1.18605,0 1.18605,-0.68591 0,-0.25722 -0.15719,-0.4144 -0.15718,-0.16434 -0.54301,-0.36439 -0.38582,-0.2072 -1.02886,-0.47871 -0.92169,-0.38582 -1.35753,-0.71449 -0.42869,-0.32866 -0.62875,-0.75021 -0.19291,-0.42869 -0.19291,-1.0503 0,-1.06458 0.82166,-1.64332 0.82881,-0.58588 2.34352,-0.58588 1.44327,0 2.80794,0.62875 l -0.65733,1.57187 q -0.60017,-0.25721 -1.12175,-0.42154 -0.52157,-0.16434 -1.06458,-0.16434 -0.96456,0 -0.96456,0.52158 0,0.29294 0.30723,0.50729 0.31437,0.21434 1.36467,0.63589 0.93598,0.37868 1.37182,0.70734 0.43583,0.32867 0.64304,0.75736 0.2072,0.42869 0.2072,1.02172 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4855"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 384.83281,748.41248 -0.29294,-1.02172 h -0.11432 q -0.3501,0.5573 -0.99314,0.86453 -0.64304,0.30008 -1.4647,0.30008 -1.40754,0 -2.12202,-0.75021 -0.71449,-0.75736 -0.71449,-2.17204 v -5.20862 h 2.17919 v 4.66561 q 0,0.86453 0.30723,1.30037 0.30722,0.42869 0.97884,0.42869 0.91455,0 1.3218,-0.60732 0.40726,-0.61446 0.40726,-2.02914 v -3.75821 h 2.17919 v 7.98798 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4857"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 393.26376,740.27446 q 0.44298,0 0.73592,0.0643 l -0.16433,2.04343 q -0.26436,-0.0715 -0.64304,-0.0715 -1.04315,0 -1.62903,0.53587 -0.57873,0.53586 -0.57873,1.50042 v 4.06544 h -2.17919 v -7.98798 h 1.65046 l 0.32152,1.34324 h 0.10718 q 0.37153,-0.67162 1.00028,-1.07887 0.63589,-0.41441 1.37896,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4859"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 398.77246,741.8249 q -0.69305,0 -1.08602,0.44298 -0.39297,0.43584 -0.45013,1.24321 h 3.05801 q -0.0143,-0.80737 -0.42155,-1.24321 -0.40725,-0.44298 -1.10031,-0.44298 z m 0.30723,6.73047 q -1.92911,0 -3.01514,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00029,-3.10088 1.00742,-1.10031 2.77935,-1.10031 1.69334,0 2.63646,0.96456 0.94313,0.96456 0.94313,2.66504 v 1.05744 h -5.15146 q 0.0357,0.92883 0.55016,1.45041 0.51443,0.52158 1.44326,0.52158 0.72163,0 1.36467,-0.15005 0.64304,-0.15004 1.34324,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22178,0.42155 -0.65018,0.14289 -1.58616,0.14289 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4861"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 406.78187,740.4245 h 2.38639 l 1.50757,4.49413 q 0.19291,0.58588 0.26436,1.38611 h 0.0429 q 0.0786,-0.73592 0.30723,-1.38611 l 1.47899,-4.49413 h 2.33638 l -3.37953,9.00969 q -0.46442,1.25036 -1.32895,1.87196 -0.85738,0.6216 -2.00771,0.6216 -0.56444,0 -1.10745,-0.12146 v -1.72906 q 0.39297,0.0929 0.85738,0.0929 0.57874,0 1.00743,-0.35724 0.43584,-0.3501 0.67876,-1.06459 l 0.12861,-0.39296 -3.17232,-7.93082 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4863"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 417.97789,744.4042 q 0,1.18605 0.38582,1.79336 0.39297,0.60732 1.27179,0.60732 0.87167,0 1.25035,-0.60017 0.38583,-0.60732 0.38583,-1.80051 0,-1.18605 -0.38583,-1.77907 -0.38582,-0.59303 -1.26464,-0.59303 -0.87168,0 -1.2575,0.59303 -0.38582,0.58588 -0.38582,1.77907 z m 5.52299,0 q 0,1.95055 -1.02887,3.05086 -1.02886,1.10031 -2.86509,1.10031 -1.15033,0 -2.02915,-0.50014 -0.87881,-0.50728 -1.35038,-1.45041 -0.47156,-0.94312 -0.47156,-2.20062 0,-1.9577 1.02172,-3.04372 1.02172,-1.08602 2.87224,-1.08602 1.15032,0 2.02914,0.50014 0.87882,0.50015 1.35038,1.43612 0.47157,0.93598 0.47157,2.19348 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4865"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 430.96012,748.41248 -0.29294,-1.02172 h -0.11431 q -0.3501,0.5573 -0.99314,0.86453 -0.64304,0.30008 -1.4647,0.30008 -1.40754,0 -2.12203,-0.75021 -0.71449,-0.75736 -0.71449,-2.17204 v -5.20862 h 2.17919 v 4.66561 q 0,0.86453 0.30723,1.30037 0.30723,0.42869 0.97885,0.42869 0.91454,0 1.3218,-0.60732 0.40726,-0.61446 0.40726,-2.02914 v -3.75821 h 2.17919 v 7.98798 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4867"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 434.62545,747.39076 q 0,-0.60017 0.32152,-0.9074 0.32152,-0.30723 0.93598,-0.30723 0.59302,0 0.91454,0.31437 0.32866,0.31438 0.32866,0.90026 0,0.56444 -0.32866,0.89311 -0.32866,0.32152 -0.91454,0.32152 -0.60017,0 -0.92884,-0.31438 -0.32866,-0.32152 -0.32866,-0.90025 z m 0,-5.90167 q 0,-0.60017 0.32152,-0.9074 0.32152,-0.30723 0.93598,-0.30723 0.59302,0 0.91454,0.31438 0.32866,0.31437 0.32866,0.90025 0,0.57874 -0.3358,0.90026 -0.32867,0.31437 -0.9074,0.31437 -0.60017,0 -0.92884,-0.31437 -0.32866,-0.31438 -0.32866,-0.90026 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4869"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:150%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8562">
+ <path
+ d="m 182.35059,788.41248 h -2.20776 v -6.04457 l 0.0214,-0.99314 0.0357,-1.08602 q -0.55016,0.55016 -0.7645,0.72163 l -1.20034,0.96456 -1.06459,-1.32894 3.36524,-2.67933 h 1.81479 v 10.44581 z"
+ style="font-weight:bold;line-height:150%"
+ id="path4668"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 185.4872,787.39076 q 0,-0.60017 0.32151,-0.9074 0.32152,-0.30723 0.93598,-0.30723 0.59303,0 0.91455,0.31437 0.32866,0.31438 0.32866,0.90026 0,0.56444 -0.32866,0.89311 -0.32867,0.32152 -0.91455,0.32152 -0.60017,0 -0.92883,-0.31438 -0.32866,-0.32152 -0.32866,-0.90025 z"
+ style="font-weight:bold;line-height:150%"
+ id="path4670"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 200.68435,781.01038 q 0,1.58617 -1.08603,2.44355 -1.07887,0.85024 -3.09373,0.85024 h -1.22892 v 4.10831 h -1.21462 v -10.44581 h 2.7079 q 3.9154,0 3.9154,3.04371 z m -5.40868,2.25064 h 1.09317 q 1.61474,0 2.33637,-0.52158 0.72164,-0.52157 0.72164,-1.6719 0,-1.036 -0.67877,-1.54329 -0.67876,-0.50729 -2.11488,-0.50729 h -1.35753 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4672"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 203.79951,780.58169 v 5.08001 q 0,0.95741 0.43584,1.42897 0.43584,0.47157 1.36467,0.47157 1.22892,0 1.79336,-0.67162 0.57159,-0.67162 0.57159,-2.19348 v -4.11545 h 1.18605 v 7.83079 h -0.97885 l -0.17147,-1.0503 h -0.0643 q -0.36439,0.57873 -1.01457,0.88596 -0.64304,0.30723 -1.47184,0.30723 -1.42898,0 -2.14347,-0.67876 -0.70734,-0.67876 -0.70734,-2.17204 v -5.12288 h 1.20034 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4674"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 214.18816,787.57653 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4676"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 219.38963,780.58169 h 1.27179 l 1.71477,4.46555 q 0.56444,1.529 0.70019,2.20777 h 0.0572 q 0.0929,-0.36439 0.38583,-1.24321 0.30008,-0.88597 1.9434,-5.43011 h 1.27179 l -3.36524,8.91681 q -0.50014,1.3218 -1.17175,1.87195 -0.66448,0.5573 -1.63618,0.5573 -0.54301,0 -1.07173,-0.12146 v -0.95027 q 0.39297,0.0857 0.87882,0.0857 1.22177,0 1.74335,-1.37181 l 0.43583,-1.11461 -3.15803,-7.87365 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4678"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 234.7654,784.48994 q 0,1.91483 -0.96456,2.9937 -0.96455,1.07173 -2.66503,1.07173 -1.0503,0 -1.86482,-0.49299 -0.81451,-0.493 -1.2575,-1.41469 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95742,-2.97941 0.95741,-1.07174 2.65789,-1.07174 1.64332,0 2.60788,1.09317 0.9717,1.09317 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76478,0.78594 1.16462,0 1.76479,-0.7788 0.60731,-0.78593 0.60731,-2.2935 0,-1.49328 -0.60731,-2.26493 -0.60017,-0.77879 -1.77908,-0.77879 -1.16461,0 -1.75763,0.7645 -0.59303,0.76451 -0.59303,2.27922 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4680"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 237.95202,780.58169 v 5.08001 q 0,0.95741 0.43583,1.42897 0.43584,0.47157 1.36468,0.47157 1.22891,0 1.79336,-0.67162 0.57159,-0.67162 0.57159,-2.19348 v -4.11545 h 1.18605 v 7.83079 h -0.97885 l -0.17148,-1.0503 h -0.0643 q -0.36439,0.57873 -1.01457,0.88596 -0.64304,0.30723 -1.47185,0.30723 -1.42897,0 -2.14346,-0.67876 -0.70734,-0.67876 -0.70734,-2.17204 v -5.12288 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4682"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 249.38381,780.43879 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62904,0.77165 -0.67161,0.77164 -0.67161,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97884 l 0.13576,1.45041 h 0.0572 q 0.43583,-0.7645 1.05029,-1.1789 0.61446,-0.41441 1.35038,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4684"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 260.40122,788.41248 -0.23579,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57874,0.25721 -1.45041,0.25721 -1.16462,0 -1.82909,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32895,-0.0429 v -0.48585 q 0,-0.92169 -0.40012,-1.35753 -0.39297,-0.44298 -1.26464,-0.44298 -0.97885,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57873,-0.31437 1.26464,-0.49299 0.69306,-0.17863 1.38611,-0.17863 1.40039,0 2.07201,0.62161 0.67877,0.6216 0.67877,1.99342 v 5.34437 h -0.87882 z m -2.67933,-0.83595 q 1.10745,0 1.7362,-0.60732 0.6359,-0.60731 0.6359,-1.70048 v -0.70734 l -1.18605,0.05 q -1.41469,0.05 -2.04344,0.44298 -0.6216,0.38583 -0.6216,1.20749 0,0.64304 0.38582,0.97885 0.39297,0.33581 1.09317,0.33581 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4686"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 267.30316,780.43879 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62904,0.77165 -0.67161,0.77164 -0.67161,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97884 l 0.13576,1.45041 h 0.0572 q 0.43583,-0.7645 1.05029,-1.1789 0.61446,-0.41441 1.35038,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4688"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 272.23313,787.57653 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37154,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4690"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 281.27139,788.41248 -1.43612,-4.59416 q -0.13575,-0.42155 -0.50728,-1.91483 h -0.0572 q -0.2858,1.25036 -0.50014,1.92912 l -1.47899,4.57987 h -1.37182 l -2.13632,-7.83079 h 1.24321 q 0.75736,2.95084 1.15033,4.49413 0.40011,1.54329 0.45727,2.07916 h 0.0572 q 0.0786,-0.40726 0.25007,-1.0503 0.17862,-0.65018 0.30723,-1.02886 l 1.43612,-4.49413 h 1.28608 l 1.40039,4.49413 q 0.40011,1.22892 0.54301,2.06487 h 0.0572 q 0.0286,-0.25722 0.15004,-0.79308 0.12861,-0.53587 1.49328,-5.76592 h 1.22892 l -2.1649,7.83079 h -1.40754 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4692"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 293.01042,784.48994 q 0,1.91483 -0.96455,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.0503,0 -1.86482,-0.49299 -0.81451,-0.493 -1.25749,-1.41469 -0.44299,-0.92169 -0.44299,-2.15775 0,-1.91483 0.95742,-2.97941 0.95741,-1.07174 2.65789,-1.07174 1.64332,0 2.60788,1.09317 0.9717,1.09317 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76479,0.78594 1.16461,0 1.76478,-0.7788 0.60732,-0.78593 0.60732,-2.2935 0,-1.49328 -0.60732,-2.26493 -0.60017,-0.77879 -1.77907,-0.77879 -1.16462,0 -1.75764,0.7645 -0.59303,0.76451 -0.59303,2.27922 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4694"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 298.65488,780.43879 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48586,-0.10717 -0.85739,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61446,-0.41441 1.35038,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4696"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 302.22732,784.4042 q 0.30722,-0.43584 0.93597,-1.14318 l 2.52929,-2.67933 h 1.40754 l -3.17232,3.33666 3.39381,4.49413 h -1.43612 l -2.76507,-3.70105 -0.8931,0.77165 v 2.9294 h -1.17176 v -11.11743 h 1.17176 v 5.89452 q 0,0.39297 -0.0572,1.21463 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4698"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 313.73057,788.41248 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20005,-0.59302 0.20006,-0.19291 0.50015,-0.19291 0.28579,0 0.49299,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.49299,0.19292 -0.30009,0 -0.50015,-0.19292 -0.20005,-0.20005 -0.20005,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4700"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 321.6185,788.41248 v -5.06572 q 0,-0.95741 -0.43583,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.22892,0 -1.80051,0.66448 -0.57159,0.66447 -0.57159,2.19347 v 4.10831 h -1.18605 v -7.83079 h 0.96456 l 0.19291,1.07173 h 0.0572 q 0.36439,-0.57873 1.02171,-0.89311 0.65733,-0.32152 1.4647,-0.32152 1.41469,0 2.12918,0.68591 0.71448,0.67877 0.71448,2.17919 v 5.10859 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4702"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 331.56417,787.57653 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67161,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.3358,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4704"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 339.56644,788.41248 v -5.06572 q 0,-0.95741 -0.43584,-1.42898 -0.43583,-0.47156 -1.36467,-0.47156 -1.23606,0 -1.80765,0.67162 -0.56445,0.67162 -0.56445,2.20062 v 4.09402 h -1.18605 v -11.11743 h 1.18605 v 3.36524 q 0,0.60731 -0.0571,1.00742 h 0.0714 q 0.3501,-0.56444 0.99314,-0.88596 0.65019,-0.32867 1.47899,-0.32867 1.43612,0 2.15061,0.68591 0.72163,0.67877 0.72163,2.1649 v 5.10859 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4706"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 346.48982,788.55537 q -1.73621,0 -2.74364,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.11461 2.50786,-1.11461 1.47184,0 2.32923,0.97171 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66448,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4708"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 356.20684,777.96667 -0.28579,3.77249 h -0.75021 l -0.29294,-3.77249 z m 2.63646,0 -0.29294,3.77249 h -0.74307 l -0.29294,-3.77249 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4710"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 367.7887,788.41248 -1.30037,-3.32237 h -4.1869 l -1.28607,3.32237 h -1.22892 l 4.12974,-10.48868 h 1.02171 l 4.10831,10.48868 z m -1.67905,-4.41554 -1.21463,-3.23663 q -0.23578,-0.61446 -0.48585,-1.50756 -0.15718,0.6859 -0.45012,1.50756 l -1.22892,3.23663 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4712"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 373.87612,780.43879 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62904,0.77165 -0.67161,0.77164 -0.67161,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97884 l 0.13576,1.45041 h 0.0572 q 0.43583,-0.7645 1.05029,-1.1789 0.61446,-0.41441 1.35038,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4714"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 378.80609,787.57653 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37154,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4716"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 387.84436,788.41248 -1.43612,-4.59416 q -0.13575,-0.42155 -0.50728,-1.91483 h -0.0572 q -0.2858,1.25036 -0.50015,1.92912 l -1.47898,4.57987 h -1.37182 l -2.13632,-7.83079 h 1.24321 q 0.75736,2.95084 1.15033,4.49413 0.40011,1.54329 0.45727,2.07916 h 0.0572 q 0.0786,-0.40726 0.25007,-1.0503 0.17862,-0.65018 0.30723,-1.02886 l 1.43612,-4.49413 h 1.28607 l 1.4004,4.49413 q 0.40011,1.22892 0.54301,2.06487 h 0.0572 q 0.0286,-0.25722 0.15004,-0.79308 0.12861,-0.53587 1.49328,-5.76592 h 1.22892 l -2.1649,7.83079 h -1.40754 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4718"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 399.58338,784.48994 q 0,1.91483 -0.96455,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.0503,0 -1.86482,-0.49299 -0.81451,-0.493 -1.25749,-1.41469 -0.44299,-0.92169 -0.44299,-2.15775 0,-1.91483 0.95742,-2.97941 0.95741,-1.07174 2.65789,-1.07174 1.64332,0 2.60788,1.09317 0.9717,1.09317 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76479,0.78594 1.16461,0 1.76478,-0.7788 0.60732,-0.78593 0.60732,-2.2935 0,-1.49328 -0.60732,-2.26493 -0.60017,-0.77879 -1.77907,-0.77879 -1.16462,0 -1.75764,0.7645 -0.59303,0.76451 -0.59303,2.27922 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4720"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 405.22784,780.43879 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48586,-0.10717 -0.85739,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61446,-0.41441 1.35038,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4722"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 408.80028,784.4042 q 0.30722,-0.43584 0.93597,-1.14318 l 2.52929,-2.67933 h 1.40754 l -3.17232,3.33666 3.39381,4.49413 h -1.43612 l -2.76507,-3.70105 -0.8931,0.77165 v 2.9294 h -1.17176 v -11.11743 h 1.17176 v 5.89452 q 0,0.39297 -0.0572,1.21463 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4724"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 416.33811,777.96667 -0.28579,3.77249 h -0.75021 l -0.29294,-3.77249 z m 2.63646,0 -0.29294,3.77249 h -0.74306 l -0.29294,-3.77249 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4726"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 426.16233,788.41248 h -1.18605 v -11.11743 h 1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4728"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 433.50726,788.41248 -0.23578,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57874,0.25721 -1.45041,0.25721 -1.16462,0 -1.82909,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32895,-0.0429 v -0.48585 q 0,-0.92169 -0.40012,-1.35753 -0.39296,-0.44298 -1.26464,-0.44298 -0.97885,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57874,-0.31437 1.26464,-0.49299 0.69306,-0.17863 1.38611,-0.17863 1.40039,0 2.07201,0.62161 0.67877,0.6216 0.67877,1.99342 v 5.34437 h -0.87882 z m -2.67933,-0.83595 q 1.10745,0 1.7362,-0.60732 0.6359,-0.60731 0.6359,-1.70048 v -0.70734 l -1.18605,0.05 q -1.41469,0.05 -2.04344,0.44298 -0.6216,0.38583 -0.6216,1.20749 0,0.64304 0.38582,0.97885 0.39297,0.33581 1.09317,0.33581 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4730"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 435.59357,780.58169 h 1.27179 l 1.71477,4.46555 q 0.56445,1.529 0.7002,2.20777 h 0.0572 q 0.0929,-0.36439 0.38582,-1.24321 0.30009,-0.88597 1.94341,-5.43011 h 1.27179 l -3.36524,8.91681 q -0.50014,1.3218 -1.17176,1.87195 -0.66447,0.5573 -1.63618,0.5573 -0.54301,0 -1.07173,-0.12146 v -0.95027 q 0.39297,0.0857 0.87882,0.0857 1.22178,0 1.74335,-1.37181 l 0.43584,-1.11461 -3.15804,-7.87365 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4732"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 447.51836,788.55537 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.11461 2.50786,-1.11461 1.47184,0 2.32922,0.97171 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35039,0.12146 z m -0.32151,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4734"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 455.98503,780.43879 q 0.52157,0 0.93597,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.05029,-1.1789 0.61446,-0.41441 1.35039,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4736"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 458.21423,787.65512 q 0,-0.47871 0.21434,-0.72163 0.22149,-0.25007 0.62875,-0.25007 0.4144,0 0.64304,0.25007 0.23578,0.24292 0.23578,0.72163 0,0.46442 -0.23578,0.71449 -0.23578,0.25007 -0.64304,0.25007 -0.36439,0 -0.60731,-0.22149 -0.23578,-0.22864 -0.23578,-0.74307 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4738"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 184.19397,810.36153 h -7.30206 v -1.53615 l 2.62217,-2.65074 q 1.16461,-1.1932 1.52186,-1.65047 0.35724,-0.46442 0.51443,-0.85739 0.15719,-0.39296 0.15719,-0.81451 0,-0.62875 -0.3501,-0.93598 -0.34296,-0.30723 -0.92169,-0.30723 -0.60732,0 -1.17891,0.27865 -0.57159,0.27865 -1.19319,0.79308 l -1.20034,-1.42183 q 0.77165,-0.65733 1.27893,-0.92883 0.50729,-0.27151 1.10746,-0.41441 0.60017,-0.15004 1.34324,-0.15004 0.97884,0 1.72906,0.35725 0.75021,0.35724 1.16461,1.00028 0.4144,0.64304 0.4144,1.47184 0,0.72164 -0.25721,1.35753 -0.25007,0.62875 -0.78594,1.29322 -0.52872,0.66448 -1.87196,1.89339 l -1.34323,1.26465 v 0.10003 h 4.55128 z"
+ style="font-weight:bold;line-height:150%"
+ id="path4740"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 185.4872,809.33982 q 0,-0.60017 0.32151,-0.9074 0.32152,-0.30723 0.93598,-0.30723 0.59303,0 0.91455,0.31437 0.32866,0.31438 0.32866,0.90026 0,0.56444 -0.32866,0.8931 -0.32867,0.32152 -0.91455,0.32152 -0.60017,0 -0.92883,-0.31437 -0.32866,-0.32152 -0.32866,-0.90025 z"
+ style="font-weight:bold;line-height:150%"
+ id="path4742"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 203.12789,805.12434 q 0,2.50785 -1.27179,3.94397 -1.26464,1.43612 -3.52242,1.43612 -2.30779,0 -3.56529,-1.40754 -1.25035,-1.41469 -1.25035,-3.98684 0,-2.55072 1.25749,-3.95112 1.2575,-1.40754 3.57244,-1.40754 2.25064,0 3.51528,1.42898 1.26464,1.42897 1.26464,3.94397 z m -8.32378,0 q 0,2.12203 0.90026,3.22234 0.9074,1.09316 2.62931,1.09316 1.73621,0 2.62217,-1.09316 0.88596,-1.09317 0.88596,-3.22234 0,-2.10774 -0.88596,-3.19376 -0.87882,-1.09317 -2.60788,-1.09317 -1.7362,0 -2.6436,1.10031 -0.90026,1.09317 -0.90026,3.18662 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4744"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 206.40025,802.53075 v 5.08001 q 0,0.95741 0.43583,1.42897 0.43584,0.47156 1.36467,0.47156 1.22892,0 1.79337,-0.67162 0.57159,-0.67161 0.57159,-2.19347 v -4.11545 h 1.18605 v 7.83078 h -0.97885 l -0.17148,-1.05029 h -0.0643 q -0.36439,0.57873 -1.01457,0.88596 -0.64304,0.30723 -1.47185,0.30723 -1.42897,0 -2.14346,-0.67876 -0.70734,-0.67877 -0.70734,-2.17205 v -5.12287 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4746"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 216.78889,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67161,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.3358,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4748"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 220.61855,810.36153 h -1.18605 v -11.11742 h 1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4750"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 224.33388,810.36153 h -1.18605 v -7.83078 h 1.18605 z m -1.28608,-9.95281 q 0,-0.40726 0.20006,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40011 -0.2072,0.60017 -0.2072,0.19291 -0.493,0.19291 -0.30008,0 -0.50014,-0.19291 -0.20006,-0.20006 -0.20006,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4752"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 232.22183,810.36153 v -5.06571 q 0,-0.95742 -0.43584,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.22892,0 -1.80051,0.66447 -0.57159,0.66448 -0.57159,2.19348 v 4.1083 h -1.18605 v -7.83078 h 0.96456 l 0.19291,1.07173 h 0.0572 q 0.36439,-0.57873 1.02171,-0.89311 0.65733,-0.32152 1.4647,-0.32152 1.41469,0 2.12918,0.68591 0.71448,0.67876 0.71448,2.17919 v 5.10858 h -1.18604 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4754"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 239.14521,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39439 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71448 1.86481,0.71448 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.1932,0.38583 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4756"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 246.59731,802.53075 h 1.27179 l 1.71477,4.46555 q 0.56445,1.529 0.7002,2.20776 h 0.0572 q 0.0929,-0.36439 0.38582,-1.24321 0.30009,-0.88596 1.94341,-5.4301 h 1.27178 l -3.36523,8.9168 q -0.50014,1.32181 -1.17176,1.87196 -0.66447,0.5573 -1.63618,0.5573 -0.54301,0 -1.07173,-0.12146 v -0.95027 q 0.39297,0.0857 0.87882,0.0857 1.22177,0 1.74335,-1.37182 l 0.43584,-1.1146 -3.15804,-7.87365 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4758"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 261.97309,806.439 q 0,1.91482 -0.96456,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.0503,0 -1.86481,-0.493 -0.81452,-0.49299 -1.2575,-1.41468 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95741,-2.97942 0.95741,-1.07173 2.65789,-1.07173 1.64332,0 2.60788,1.09317 0.97171,1.09316 0.97171,2.95798 z m -5.96598,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78593 1.76479,0.78593 1.16461,0 1.76478,-0.77879 0.60732,-0.78594 0.60732,-2.2935 0,-1.49328 -0.60732,-2.26493 -0.60017,-0.77879 -1.77907,-0.77879 -1.16462,0 -1.75764,0.7645 -0.59303,0.7645 -0.59303,2.27922 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4760"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 265.1597,802.53075 v 5.08001 q 0,0.95741 0.43584,1.42897 0.43584,0.47156 1.36467,0.47156 1.22892,0 1.79337,-0.67162 0.57159,-0.67161 0.57159,-2.19347 v -4.11545 h 1.18605 v 7.83078 h -0.97885 l -0.17148,-1.05029 h -0.0643 q -0.36439,0.57873 -1.01458,0.88596 -0.64303,0.30723 -1.47184,0.30723 -1.42897,0 -2.14346,-0.67876 -0.70735,-0.67877 -0.70735,-2.17205 v -5.12287 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4762"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 276.5915,802.38785 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85739,-0.10717 -0.95027,0 -1.62903,0.77164 -0.67162,0.77165 -0.67162,1.92198 v 4.20118 h -1.18605 v -7.83078 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.17891 0.61446,-0.4144 1.35038,-0.4144 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4764"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 285.32254,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67161,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.6859 v 1.8148 h 2.27208 v 0.92169 h -2.27208 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4766"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 291.27422,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71448 1.86481,0.71448 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.19319,0.38583 -0.5573,0.12146 -1.35039,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50756,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4768"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 298.05471,806.35326 -2.7222,-3.82251 h 1.35038 l 2.06487,3.00085 2.05773,-3.00085 h 1.33609 l -2.7222,3.82251 2.8651,4.00827 h -1.34324 l -2.19348,-3.17232 -2.21491,3.17232 h -1.34323 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4770"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 306.35705,809.52558 q 0.31438,0 0.60732,-0.0429 0.29293,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4772"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 308.82919,809.60418 q 0,-0.47871 0.21434,-0.72164 0.22149,-0.25007 0.62875,-0.25007 0.4144,0 0.64304,0.25007 0.23578,0.24293 0.23578,0.72164 0,0.46441 -0.23578,0.71448 -0.23578,0.25007 -0.64304,0.25007 -0.36439,0 -0.60731,-0.22149 -0.23578,-0.22863 -0.23578,-0.74306 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4774"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 316.01693,806.35326 q 0,-1.89339 0.55015,-3.54386 0.5573,-1.65047 1.60045,-2.89368 h 1.15747 q -1.02886,1.37897 -1.55044,3.02943 -0.51443,1.65047 -0.51443,3.39382 0,1.71477 0.52872,3.35094 0.52873,1.63618 1.52186,2.98656 h -1.14318 q -1.05029,-1.21463 -1.60045,-2.83651 -0.55015,-1.62189 -0.55015,-3.4867 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4776"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 327.10577,807.58218 q 0,1.37896 -1.00028,2.1506 -1.00028,0.77165 -2.71505,0.77165 -1.85767,0 -2.85795,-0.47871 v -1.17176 q 0.64304,0.27151 1.40039,0.4287 0.75736,0.15718 1.50043,0.15718 1.21463,0 1.82909,-0.45727 0.61445,-0.46442 0.61445,-1.28608 0,-0.54301 -0.22149,-0.88596 -0.21434,-0.3501 -0.72877,-0.64304 -0.50729,-0.29294 -1.55044,-0.66447 -1.45756,-0.52158 -2.08631,-1.23607 -0.6216,-0.71448 -0.6216,-1.86481 0,-1.20748 0.9074,-1.92197 0.9074,-0.71449 2.40068,-0.71449 1.55758,0 2.86509,0.57159 l -0.37868,1.05744 q -1.29322,-0.54301 -2.51499,-0.54301 -0.96456,0 -1.50757,0.41441 -0.54301,0.4144 -0.54301,1.15032 0,0.54301 0.20006,0.89311 0.20005,0.34295 0.67161,0.63589 0.47871,0.2858 1.45756,0.6359 1.64332,0.58588 2.25778,1.2575 0.6216,0.67161 0.6216,1.74335 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4778"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 332.37154,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71448 1.86481,0.71448 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.19319,0.38583 -0.5573,0.12146 -1.35039,0.12146 z m -0.32151,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4780"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 338.45183,810.36153 h -1.18605 v -11.11742 h 1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4782"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 344.28919,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71448 1.86481,0.71448 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.1932,0.38583 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65732,1.70048 h 4.09401 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4784"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 352.31289,810.50443 q -1.70048,0 -2.63646,-1.04315 -0.92884,-1.0503 -0.92884,-2.96512 0,-1.96485 0.94313,-3.03658 0.95027,-1.07173 2.70076,-1.07173 0.56445,0 1.12889,0.12146 0.56445,0.12147 0.88597,0.2858 l -0.36439,1.00743 q -0.39297,-0.15719 -0.85739,-0.25722 -0.46441,-0.10717 -0.82166,-0.10717 -2.38639,0 -2.38639,3.04372 0,1.44326 0.57874,2.21491 0.58588,0.77164 1.72906,0.77164 0.97885,0 2.00771,-0.42154 v 1.05029 q -0.78594,0.40726 -1.97913,0.40726 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4786"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 358.68612,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50015,-1.6719 h 0.6859 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4788"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 367.66009,809.52558 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4790"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 373.61176,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71448 1.86481,0.71448 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.19319,0.38583 -0.55731,0.12146 -1.35039,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50756,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4792"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 380.39225,806.35326 -2.7222,-3.82251 h 1.35038 l 2.06487,3.00085 2.05773,-3.00085 h 1.33609 l -2.7222,3.82251 2.8651,4.00827 h -1.34324 l -2.19348,-3.17232 -2.21491,3.17232 h -1.34324 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4794"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.69461,809.52558 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37154,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4796"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 392.58141,808.66105 0.10717,0.16433 q -0.18576,0.71449 -0.53586,1.65762 -0.3501,0.95026 -0.72878,1.76478 h -0.89311 q 0.19291,-0.74307 0.42155,-1.83623 0.23578,-1.09317 0.32866,-1.7505 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4798"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 401.26957,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67161,0.0643 -2.27208,0 -2.27208,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50015,-1.6719 h 0.6859 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4800"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 409.27184,810.36153 v -5.06571 q 0,-0.95742 -0.43584,-1.42898 -0.43583,-0.47156 -1.36467,-0.47156 -1.23606,0 -1.80765,0.67162 -0.56445,0.67162 -0.56445,2.20062 v 4.09401 h -1.18605 v -11.11742 h 1.18605 v 3.36523 q 0,0.60732 -0.0572,1.00743 h 0.0714 q 0.3501,-0.56444 0.99314,-0.88596 0.65018,-0.32867 1.47899,-0.32867 1.43612,0 2.15061,0.68591 0.72163,0.67876 0.72163,2.1649 v 5.10858 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4802"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 416.19523,810.50443 q -1.73621,0 -2.74363,-1.05744 -1.00029,-1.05744 -1.00029,-2.93655 0,-1.89339 0.92884,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71448 1.86481,0.71448 1.26464,0 2.5007,-0.52872 v 1.05744 q -0.62874,0.27151 -1.19319,0.38583 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12175 -0.50015,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4804"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 426.44812,810.36153 v -5.06571 q 0,-0.95742 -0.43583,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.22892,0 -1.80051,0.66447 -0.57159,0.66448 -0.57159,2.19348 v 4.1083 h -1.18605 v -7.83078 h 0.96456 l 0.19291,1.07173 h 0.0572 q 0.36439,-0.57873 1.02171,-0.89311 0.65733,-0.32152 1.4647,-0.32152 1.41469,0 2.12918,0.68591 0.71448,0.67876 0.71448,2.17919 v 5.10858 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4806"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 440.66641,802.95944 q 0,1.58616 -1.08602,2.44355 -1.07887,0.85024 -3.09373,0.85024 h -1.22892 v 4.1083 h -1.21463 v -10.44581 h 2.70791 q 3.91539,0 3.91539,3.04372 z m -5.40867,2.25064 h 1.09317 q 1.61474,0 2.33637,-0.52158 0.72164,-0.52157 0.72164,-1.6719 0,-1.03601 -0.67877,-1.54329 -0.67876,-0.50729 -2.11488,-0.50729 h -1.35753 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4808"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 447.48263,810.36153 -0.23578,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57874,0.25722 -1.45041,0.25722 -1.16461,0 -1.82909,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32895,-0.0429 v -0.48585 q 0,-0.92169 -0.40011,-1.35753 -0.39297,-0.44298 -1.26465,-0.44298 -0.97885,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57874,-0.31437 1.26465,-0.493 0.69305,-0.17862 1.3861,-0.17862 1.4004,0 2.07202,0.62161 0.67876,0.6216 0.67876,1.99342 v 5.34436 h -0.87882 z m -2.67933,-0.83595 q 1.10746,0 1.73621,-0.60731 0.63589,-0.60732 0.63589,-1.70048 v -0.70735 l -1.18605,0.05 q -1.41469,0.05 -2.04343,0.44298 -0.62161,0.38582 -0.62161,1.20749 0,0.64303 0.38582,0.97884 0.39297,0.33581 1.09317,0.33581 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4810"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 453.34144,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4812"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 461.34369,810.36153 v -5.06571 q 0,-0.95742 -0.43583,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.23607,0 -1.80766,0.67162 -0.56444,0.67162 -0.56444,2.20062 v 4.09401 h -1.18605 v -11.11742 h 1.18605 v 3.36523 q 0,0.60732 -0.0572,1.00743 h 0.0715 q 0.3501,-0.56444 0.99313,-0.88596 0.65019,-0.32867 1.47899,-0.32867 1.43612,0 2.15061,0.68591 0.72163,0.67876 0.72163,2.1649 v 5.10858 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4814"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 470.01043,808.22521 q 0,1.09317 -0.81451,1.6862 -0.81452,0.59302 -2.28636,0.59302 -1.55759,0 -2.42926,-0.493 v -1.10031 q 0.56444,0.2858 1.20748,0.45013 0.65019,0.16433 1.25036,0.16433 0.92883,0 1.42897,-0.29294 0.50014,-0.30008 0.50014,-0.9074 0,-0.45727 -0.40011,-0.77879 -0.39297,-0.32866 -1.54329,-0.77164 -1.09317,-0.40726 -1.55759,-0.70735 -0.45727,-0.30723 -0.6859,-0.69305 -0.2215,-0.38582 -0.2215,-0.92169 0,-0.95741 0.7788,-1.50757 0.77879,-0.5573 2.13631,-0.5573 1.26465,0 2.47213,0.51443 l -0.42155,0.96456 q -1.1789,-0.48585 -2.13632,-0.48585 -0.84309,0 -1.27178,0.26436 -0.4287,0.26436 -0.4287,0.72878 0,0.31437 0.15719,0.53586 0.16433,0.22149 0.52158,0.42155 0.35724,0.20006 1.37181,0.57874 1.39325,0.50728 1.87911,1.02171 0.49299,0.51443 0.49299,1.29322 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4816"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 475.21905,807.5536 5.59444,-2.32923 -5.59444,-2.66504 v -1.06459 l 6.86622,3.4224 v 0.7002 l -6.86622,3.01513 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4818"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 497.15382,805.12434 q 0,2.50785 -1.27179,3.94397 -1.26465,1.43612 -3.52243,1.43612 -2.30779,0 -3.56529,-1.40754 -1.25035,-1.41469 -1.25035,-3.98684 0,-2.55072 1.2575,-3.95112 1.25749,-1.40754 3.57243,-1.40754 2.25064,0 3.51528,1.42898 1.26465,1.42897 1.26465,3.94397 z m -8.32378,0 q 0,2.12203 0.90025,3.22234 0.9074,1.09316 2.62931,1.09316 1.73621,0 2.62217,-1.09316 0.88597,-1.09317 0.88597,-3.22234 0,-2.10774 -0.88597,-3.19376 -0.87882,-1.09317 -2.60788,-1.09317 -1.7362,0 -2.6436,1.10031 -0.90025,1.09317 -0.90025,3.18662 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4820"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 502.95546,802.40214 q 1.54329,0 2.39353,1.05744 0.85739,1.0503 0.85739,2.97942 0,1.92911 -0.86453,3.00084 -0.85739,1.06459 -2.38639,1.06459 -0.7645,0 -1.40039,-0.27865 -0.62875,-0.28579 -1.05745,-0.87167 h -0.0857 l -0.25007,1.00742 h -0.85024 v -11.11742 h 1.18604 v 2.70076 q 0,0.9074 -0.0571,1.62903 h 0.0571 q 0.82881,-1.17176 2.45784,-1.17176 z m -0.17148,0.99314 q -1.21462,0 -1.75049,0.7002 -0.53587,0.69305 -0.53587,2.34352 0,1.65046 0.55016,2.36495 0.55016,0.70734 1.76478,0.70734 1.09317,0 1.62904,-0.79308 0.53586,-0.80022 0.53586,-2.2935 0,-1.52901 -0.53586,-2.27922 -0.53587,-0.75021 -1.65762,-0.75021 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4822"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 507.33524,813.87681 q -0.67876,0 -1.10031,-0.17862 v -0.96456 q 0.493,0.1429 0.97171,0.1429 0.5573,0 0.81451,-0.30723 0.26436,-0.30009 0.26436,-0.92169 v -9.11686 h 1.18605 v 9.03112 q 0,2.31494 -2.13632,2.31494 z m 0.85024,-13.46809 q 0,-0.40726 0.20006,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40011 -0.2072,0.60017 -0.2072,0.19291 -0.493,0.19291 -0.30008,0 -0.50014,-0.19291 -0.20006,-0.20006 -0.20006,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4824"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 515.30892,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71448 1.86481,0.71448 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.1932,0.38583 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65732,1.70048 h 4.09401 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4826"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 523.33263,810.50443 q -1.70048,0 -2.63646,-1.04315 -0.92883,-1.0503 -0.92883,-2.96512 0,-1.96485 0.94312,-3.03658 0.95027,-1.07173 2.70077,-1.07173 0.56444,0 1.12889,0.12146 0.56444,0.12147 0.88596,0.2858 l -0.36439,1.00743 q -0.39297,-0.15719 -0.85738,-0.25722 -0.46442,-0.10717 -0.82166,-0.10717 -2.38639,0 -2.38639,3.04372 0,1.44326 0.57873,2.21491 0.58588,0.77164 1.72906,0.77164 0.97885,0 2.00771,-0.42154 v 1.05029 q -0.78593,0.40726 -1.97913,0.40726 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4828"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 529.70585,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50015,-1.6719 h 0.6859 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4830"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 538.67982,809.52558 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4832"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 548.08247,806.439 q 0,1.91482 -0.96456,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.0503,0 -1.86481,-0.493 -0.81452,-0.49299 -1.2575,-1.41468 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95741,-2.97942 0.95742,-1.07173 2.6579,-1.07173 1.64332,0 2.60788,1.09317 0.9717,1.09316 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78593 1.76478,0.78593 1.16462,0 1.76479,-0.77879 0.60731,-0.78594 0.60731,-2.2935 0,-1.49328 -0.60731,-2.26493 -0.60017,-0.77879 -1.77908,-0.77879 -1.16461,0 -1.75764,0.7645 -0.59302,0.7645 -0.59302,2.27922 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4834"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 560.75748,802.95944 q 0,1.58616 -1.08602,2.44355 -1.07888,0.85024 -3.09373,0.85024 h -1.22892 v 4.1083 h -1.21463 v -10.44581 h 2.70791 q 3.91539,0 3.91539,3.04372 z m -5.40867,2.25064 h 1.09316 q 1.61475,0 2.33638,-0.52158 0.72163,-0.52157 0.72163,-1.6719 0,-1.03601 -0.67876,-1.54329 -0.67877,-0.50729 -2.11489,-0.50729 h -1.35752 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4836"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 567.57369,810.36153 -0.23578,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57873,0.25722 -1.45041,0.25722 -1.16461,0 -1.82908,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32894,-0.0429 v -0.48585 q 0,-0.92169 -0.40011,-1.35753 -0.39297,-0.44298 -1.26464,-0.44298 -0.97885,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57873,-0.31437 1.26464,-0.493 0.69305,-0.17862 1.38611,-0.17862 1.40039,0 2.07201,0.62161 0.67876,0.6216 0.67876,1.99342 v 5.34436 h -0.87882 z m -2.67932,-0.83595 q 1.10745,0 1.7362,-0.60731 0.63589,-0.60732 0.63589,-1.70048 v -0.70735 l -1.18605,0.05 q -1.41468,0.05 -2.04343,0.44298 -0.6216,0.38582 -0.6216,1.20749 0,0.64303 0.38582,0.97884 0.39297,0.33581 1.09317,0.33581 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4838"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 573.43251,809.52558 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37154,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4840"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 581.43476,810.36153 v -5.06571 q 0,-0.95742 -0.43584,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.23606,0 -1.80765,0.67162 -0.56445,0.67162 -0.56445,2.20062 v 4.09401 h -1.18605 v -11.11742 h 1.18605 v 3.36523 q 0,0.60732 -0.0572,1.00743 h 0.0715 q 0.3501,-0.56444 0.99314,-0.88596 0.65018,-0.32867 1.47899,-0.32867 1.43612,0 2.1506,0.68591 0.72164,0.67876 0.72164,2.1649 v 5.10858 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4842"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 587.53649,806.35326 q 0,1.8791 -0.5573,3.50099 -0.55016,1.62188 -1.59331,2.82222 h -1.14318 q 0.99314,-1.34323 1.52186,-2.97941 0.52872,-1.64332 0.52872,-3.35809 0,-1.74335 -0.52158,-3.39382 -0.51443,-1.65046 -1.54329,-3.02943 h 1.15747 q 1.0503,1.25036 1.60045,2.90797 0.55016,1.65047 0.55016,3.52957 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path4844"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:label="Artwork"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(178.67433,582.63783)"
+ style="display:inline">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:0;fill-rule:nonzero;stroke:#005f61;stroke-width:25.03716469;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
+ id="path17178"
+ sodipodi:sides="6"
+ sodipodi:cx="121.90476"
+ sodipodi:cy="126.57602"
+ sodipodi:r1="103.56153"
+ sodipodi:r2="103.56153"
+ sodipodi:arg1="-0.52327829"
+ sodipodi:arg2="0.0003204856"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 211.60827,74.824 -0.0332,103.56153 -89.70351,51.75202 -89.670315,-51.80951 0.03319,-103.561527 89.703505,-51.752019 z"
+ inkscape:transform-center-x="0.32645456"
+ inkscape:transform-center-y="-1.460707"
+ transform="matrix(0.80733155,0,0,0.81026646,105.40811,-310.19813)" />
+ <path
+ sodipodi:type="star"
+ style="fill:none;stroke:#000000;stroke-width:1.77165365;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path2617"
+ sodipodi:sides="6"
+ sodipodi:cx="-185.27014"
+ sodipodi:cy="18.20916"
+ sodipodi:r1="8.7944193"
+ sodipodi:r2="4.3972096"
+ sodipodi:arg1="3.1415927"
+ sodipodi:arg2="3.6651914"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m -194.06456,18.209159 4.98632,-2.198604 -0.58911,-5.417586 4.39721,3.218981 4.39721,-3.21898 -0.58912,5.417585 4.98633,2.198605 -4.98633,2.198605 0.58912,5.417586 -4.39721,-3.218982 -4.39721,3.218981 0.58911,-5.417585 z" />
+ <g
+ transform="matrix(0.20622742,0,0,0.20622742,102.48104,-317.7181)"
+ id="g3051">
+ <g
+ id="g8678"
+ transform="matrix(0.9815946,0,0,0.9815946,9.6640538,9.8244611)">
+ <g
+ id="text5728"
+ style="font-style:normal;font-weight:normal;font-size:180px;line-height:125%;font-family:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#005f61;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ aria-label="virt">
+ <path
+ id="path5433"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Overpass;-inkscape-font-specification:'Overpass Bold';letter-spacing:-10px;fill:#005f61;fill-opacity:1"
+ d="m 559.15365,566.87408 h 20.88 l 33.66,-91.98 h -21.42 l -19.98,57.42 c -1.08,2.88 -1.8,5.4 -2.52,8.28 -0.72,-2.88 -1.62,-5.4 -2.52,-8.28 l -20.34,-57.42 h -21.42 z"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path5435"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Overpass;-inkscape-font-specification:'Overpass Bold';letter-spacing:-10px;fill:#005f61;fill-opacity:1"
+ d="m 632.3249,462.29408 c 7.02,0 12.42,-5.58 12.42,-12.6 0,-6.84 -5.4,-12.42 -12.42,-12.42 -7.02,0 -12.6,5.58 -12.6,12.42 0,7.02 5.58,12.6 12.6,12.6 z m -10.62,104.58 h 21.06 v -91.98 h -21.06 z"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path5437"
+ style="letter-spacing:-3px"
+ d="m 660.04053,566.87408 h 21.06 v -51.48 c 0,-17.46 9.18,-21.96 17.28,-21.96 7.02,0 11.88,2.16 15.66,4.86 l 3.06,-19.26 c -4.68,-3.96 -10.26,-6.3 -17.1,-6.3 -9.18,0 -15.3,4.14 -18.9,11.7 v -9.54 h -21.06 z"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path5439"
+ style="letter-spacing:-3px"
+ d="m 759.2749,569.03408 c 7.56,0 14.04,-1.44 19.26,-4.14 l 2.52,-18.9 c -4.86,2.7 -9.72,4.14 -14.4,4.14 -5.58,0 -7.74,-3.6 -7.74,-8.82 v -48.06 h 21.24 v -18.36 h -21.24 v -37.98 l -21.06,10.08 v 27.9 h -13.68 v 18.36 h 13.68 v 52.2 c 0,14.58 6.3,23.58 21.42,23.58 z"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g4988"
+ transform="rotate(-1.0000002,22495.34,-11327.946)">
+ <g
+ id="g5736"
+ style="filter:url(#filter5799)">
+ <path
+ transform="translate(-1.9999998)"
+ mask="url(#mask3913)"
+ d="m 127.052,43.547 c 17.233,36.62 72.865,128.908 102.86,168.287 -2.858,14.11 -18.673,23.308 -29.809,18.791 L 84.761,64.024 c -0.07,-12.347 22.06,-27.271 42.291,-20.477 z"
+ id="path2789"
+ style="opacity:1;fill:#25514b"
+ inkscape:connector-curvature="0" />
+ <path
+ transform="translate(3.0630824e-7,8.0000003)"
+ mask="url(#mask4168)"
+ d="M 192.119,225.881 73.534,54.687 c 3.174,-9.061 16.868,-17.988 30.225,-18.875 22.158,44.223 78.164,134.394 111.831,178.223 -5.194,8.137 -14.62,12.648 -23.471,11.846 z"
+ id="path2807"
+ style="fill:#c8c7c5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 11.004,141.618 C 4.711,123.341 14.425,103.424 32.702,97.131 L 249.423,22.512 c 18.277,-6.293 38.195,3.422 44.488,21.699 l 43.577,126.552 c 6.293,18.277 -3.421,38.194 -21.698,44.487 L 99.069,289.869 C 80.792,296.161 60.874,286.447 54.581,268.17 Z"
+ id="path2645"
+ style="fill:#7c858c"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.097,130.272 C 0.803,111.995 10.518,92.078 28.795,85.785 L 245.517,11.166 c 18.277,-6.293 38.194,3.422 44.488,21.699 l 43.577,126.552 c 6.293,18.277 -3.421,38.194 -21.698,44.487 L 95.162,278.523 c -18.277,6.293 -38.195,-3.422 -44.488,-21.699 z"
+ id="path2651"
+ style="fill:url(#linearGradient7006);fill-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;opacity:0.7;fill:url(#linearGradient7008);fill-opacity:1;fill-rule:evenodd"
+ id="path2655"
+ d="m 156.599,246.825 13.562,-4.67 6.521,18.94 -13.562,4.67 z m 25.041,-8.622 13.562,-4.67 6.521,18.939 -13.562,4.67 z m 25.041,-8.622 13.563,-4.67 6.521,18.94 -13.562,4.67 z m 25.042,-8.623 13.562,-4.67 6.521,18.94 -13.562,4.67 z m 25.041,-8.622 13.562,-4.67 6.521,18.939 -13.562,4.67 z m -125.207,43.112 13.562,-4.67 6.521,18.94 -13.562,4.67 z" />
+ <path
+ d="M 2.568,124.472 C -3.725,106.195 5.989,86.278 24.266,79.985 L 245.516,3.807 c 18.277,-6.292 38.195,3.422 44.488,21.699 l 41.752,121.253 c 6.293,18.277 -3.421,38.194 -21.698,44.487 L 88.808,267.424 C 70.531,273.717 50.613,264.002 44.32,245.725 Z"
+ id="path2659"
+ style="fill:url(#radialGradient3548);fill-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 1.917,122.581 C -4.376,104.304 5.338,84.387 23.615,78.094 L 244.865,1.916 c 18.277,-6.293 38.194,3.422 44.488,21.699 l 41.752,121.253 c 6.293,18.277 -3.421,38.194 -21.698,44.487 L 88.157,265.533 C 69.88,271.826 49.962,262.111 43.669,243.834 Z"
+ id="path2665"
+ style="fill:#7c858c"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 5.763,123.175 C -0.35,105.42 9.086,86.072 26.841,79.958 L 243.342,5.416 c 17.755,-6.113 37.104,3.324 43.217,21.079 l 38.787,112.64 c 6.113,17.755 -3.323,37.103 -21.078,43.216 L 87.767,256.893 C 70.012,263.006 50.664,253.569 44.55,235.814 Z"
+ id="path2671"
+ style="fill:url(#radialGradient3552);fill-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 7.427,123.74 C 1.493,106.508 10.652,87.728 27.885,81.795 L 243.792,7.457 c 17.232,-5.933 36.012,3.226 41.946,20.459 l 39.771,115.497 c 5.934,17.233 -3.226,36.012 -20.458,41.945 L 89.143,259.696 C 71.91,265.629 53.131,256.469 47.197,239.237 Z"
+ id="path2677"
+ style="fill:#3e3e3e"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 11.049995,126.45117 c -5.3939998,-15.666 2.932,-32.737999 18.598,-38.131999 L 245.226,14.094171 c 15.666,-5.3940003 32.738,2.933 38.132,18.599 l 39.799,115.579999 c 5.394,15.666 -2.932,32.738 -18.598,38.131 l -215.578005,74.225 c -15.666,5.394 -32.738,-2.933 -38.133,-18.599 z"
+ id="path3801"
+ style="fill:#005f61;fill-opacity:1"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g2695"
+ transform="translate(0.31798936,1.8925831)">
+ <path
+ d="m 30,102.111 c -1.771,-7.695 2.602,-9.355 2.672,-9.379 1.371,-0.472 6.183,-1.554 7.316,1.737 1.025,2.977 -4.531,7.82 -9.583,9.56 -5.015,1.727 -12.469,1.364 -13.494,-1.613 -1.133,-3.291 3.325,-5.401 4.696,-5.873 0.069,-0.024 4.342,-2.237 7.88,5.746 0.13,0.293 0.571,0.074 0.513,-0.178 z"
+ id="path2697"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32.867,154.308 c 7.274,17.049 17.313,28.317 23.916,26.044 6.602,-2.273 7.575,-17.334 2.812,-35.247 -0.367,-3.303 -0.911,-9.542 -0.275,-13.127 0.464,-2.615 -0.112,-3.379 -2.212,-1.079 -0.634,0.694 -1.14,1.345 -1.514,2.022 -7.335,-18.703 -18.159,-31.442 -25.141,-29.038 -6.982,2.404 -7.669,19.106 -1.934,38.36 -0.712,-0.304 -1.51,-0.505 -2.438,-0.662 -3.071,-0.52 -3.054,0.437 -1.079,2.212 2.709,2.435 6.121,7.686 7.865,10.515 z"
+ id="path2699"
+ style="fill:#000000;fill-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 30.621,139.494 c 5.498,15.966 14.795,27.243 20.766,25.187 5.971,-2.056 6.355,-16.666 0.857,-32.632 -5.498,-15.966 -14.795,-27.243 -20.766,-25.187 -5.971,2.056 -6.354,16.665 -0.857,32.632 z m 23.197,28.556 c 0.536,1.558 1.515,2.634 2.186,2.403 0.671,-0.231 0.78,-1.681 0.243,-3.239 -0.536,-1.558 -1.515,-2.633 -2.186,-2.403 -0.67,0.231 -0.779,1.682 -0.243,3.239 z m -4.7,1.619 c 0.536,1.558 1.515,2.634 2.186,2.403 0.67,-0.231 0.779,-1.681 0.243,-3.239 -0.536,-1.558 -1.515,-2.634 -2.186,-2.402 -0.671,0.23 -0.78,1.68 -0.243,3.238 z"
+ id="path2701"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g2703">
+ <ellipse
+ transform="matrix(-0.9455,0.3255,-0.3255,-0.9455,152.1324,301.1998)"
+ cx="50.867001"
+ cy="163.328"
+ rx="4.428"
+ ry="2.142"
+ id="ellipse2705"
+ style="fill:#ffe600" />
+ <path
+ d=""
+ id="path2707"
+ style="fill:#ffe600"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="g2709"
+ transform="translate(0.31798936,1.8925831)">
+ <path
+ d="m 64.282,90.307 c -1.771,-7.695 2.603,-9.355 2.672,-9.379 1.371,-0.472 6.183,-1.554 7.316,1.737 1.025,2.978 -4.531,7.82 -9.583,9.56 -5.015,1.727 -12.469,1.364 -13.494,-1.613 -1.133,-3.291 3.325,-5.401 4.696,-5.873 0.07,-0.024 4.342,-2.237 7.88,5.746 0.13,0.292 0.572,0.074 0.513,-0.178 z"
+ id="path2711"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 67.15,142.503 c 7.274,17.049 17.313,28.317 23.916,26.044 6.602,-2.273 7.575,-17.333 2.812,-35.247 -0.367,-3.303 -0.911,-9.542 -0.275,-13.127 0.464,-2.615 -0.112,-3.379 -2.212,-1.079 -0.634,0.694 -1.139,1.345 -1.514,2.022 -7.334,-18.704 -18.159,-31.442 -25.141,-29.038 -6.982,2.404 -7.669,19.106 -1.934,38.36 -0.712,-0.304 -1.51,-0.505 -2.438,-0.662 -3.071,-0.52 -3.054,0.437 -1.079,2.211 2.709,2.436 6.121,7.687 7.865,10.516 z"
+ id="path2713"
+ style="fill:#000000;fill-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 64.904,127.689 c 5.498,15.967 14.795,27.243 20.766,25.187 5.971,-2.056 6.355,-16.666 0.857,-32.632 -5.498,-15.967 -14.795,-27.243 -20.766,-25.187 -5.971,2.056 -6.355,16.666 -0.857,32.632 z m 23.197,28.557 c 0.536,1.558 1.515,2.633 2.186,2.402 0.671,-0.231 0.779,-1.681 0.243,-3.239 -0.537,-1.558 -1.515,-2.633 -2.186,-2.402 -0.671,0.231 -0.779,1.681 -0.243,3.239 z m -4.7,1.619 c 0.536,1.558 1.515,2.633 2.185,2.402 0.67,-0.231 0.78,-1.681 0.243,-3.239 -0.536,-1.558 -1.515,-2.633 -2.186,-2.402 -0.671,0.231 -0.779,1.681 -0.242,3.239 z"
+ id="path2715"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g2717">
+ <ellipse
+ transform="matrix(-0.9455,0.3255,-0.3255,-0.9455,214.9873,267.075)"
+ cx="85.149002"
+ cy="151.524"
+ rx="4.428"
+ ry="2.142"
+ id="ellipse2719"
+ style="fill:#ffe600" />
+ <path
+ d=""
+ id="path2721"
+ style="fill:#ffe600"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="g2723"
+ transform="translate(0.31798936,1.8925831)">
+ <path
+ d="m 98.565,78.502 c -1.771,-7.694 2.602,-9.355 2.672,-9.379 1.371,-0.472 6.183,-1.554 7.316,1.736 1.025,2.978 -4.531,7.82 -9.583,9.56 -5.015,1.727 -12.469,1.364 -13.494,-1.613 -1.133,-3.291 3.325,-5.401 4.696,-5.873 0.069,-0.024 4.342,-2.237 7.88,5.746 0.13,0.293 0.572,0.075 0.513,-0.177 z"
+ id="path2725"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 101.433,130.699 c 7.274,17.048 17.313,28.317 23.915,26.043 6.602,-2.274 7.576,-17.333 2.812,-35.246 -0.367,-3.303 -0.911,-9.542 -0.275,-13.127 0.464,-2.615 -0.112,-3.379 -2.212,-1.079 -0.634,0.695 -1.139,1.345 -1.514,2.022 C 116.825,90.609 106,77.871 99.019,80.274 c -6.982,2.404 -7.669,19.106 -1.934,38.36 -0.712,-0.303 -1.51,-0.504 -2.438,-0.662 -3.071,-0.52 -3.054,0.437 -1.079,2.212 2.709,2.435 6.121,7.686 7.865,10.515 z"
+ id="path2727"
+ style="fill:#000000;fill-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 99.187,115.885 c 5.498,15.967 14.795,27.243 20.766,25.187 5.971,-2.056 6.355,-16.666 0.857,-32.632 -5.498,-15.967 -14.795,-27.243 -20.766,-25.187 -5.971,2.056 -6.355,16.665 -0.857,32.632 z m 23.197,28.556 c 0.536,1.558 1.515,2.633 2.186,2.403 0.67,-0.231 0.779,-1.681 0.243,-3.239 -0.536,-1.558 -1.515,-2.634 -2.185,-2.403 -0.671,0.232 -0.78,1.682 -0.244,3.239 z m -4.701,1.619 c 0.536,1.558 1.515,2.633 2.186,2.402 0.671,-0.23 0.78,-1.681 0.243,-3.239 -0.536,-1.558 -1.515,-2.633 -2.185,-2.402 -0.671,0.231 -0.78,1.681 -0.244,3.239 z"
+ id="path2729"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g2731">
+ <ellipse
+ transform="matrix(-0.9455,0.3255,-0.3255,-0.9455,277.8429,232.9489)"
+ cx="119.432"
+ cy="139.72"
+ rx="4.428"
+ ry="2.142"
+ id="ellipse2733"
+ style="fill:#ffe600" />
+ <path
+ d=""
+ id="path2735"
+ style="fill:#ffe600"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="g2739"
+ transform="translate(0.31798936,1.8925831)">
+ <path
+ d="m 96.575,238.982 c 3.342,7.154 7.811,5.77 7.88,5.746 1.371,-0.472 5.829,-2.583 4.696,-5.873 -1.025,-2.977 -8.385,-3.373 -13.437,-1.633 -5.015,1.727 -10.665,6.602 -9.64,9.579 1.133,3.291 5.946,2.208 7.316,1.736 0.07,-0.023 4.799,-0.91 2.672,-9.379 -0.078,-0.31 0.403,-0.41 0.513,-0.176 z"
+ id="path2741"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 66.699,196.085 c -4.764,-17.913 -3.791,-32.973 2.812,-35.247 6.602,-2.273 16.641,8.995 23.915,26.043 1.744,2.829 5.156,8.08 7.865,10.514 1.976,1.775 1.992,2.732 -1.079,2.212 -0.927,-0.157 -1.726,-0.358 -2.438,-0.662 5.735,19.254 5.048,35.956 -1.934,38.36 -6.982,2.404 -17.806,-10.334 -25.141,-29.038 -0.374,0.677 -0.88,1.328 -1.514,2.022 -2.1,2.3 -2.675,1.536 -2.212,-1.079 0.637,-3.583 0.093,-9.822 -0.274,-13.125 z"
+ id="path2743"
+ style="fill:#000000;fill-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 74.049,209.142 c -5.498,-15.966 -5.114,-30.576 0.857,-32.632 5.971,-2.056 15.269,9.22 20.766,25.187 5.498,15.967 5.114,30.577 -0.857,32.633 -5.971,2.054 -15.268,-9.222 -20.766,-25.188 z m 0.699,-36.785 c -0.536,-1.558 -0.428,-3.008 0.243,-3.239 0.67,-0.231 1.649,0.845 2.185,2.403 0.537,1.558 0.427,3.008 -0.243,3.239 -0.67,0.231 -1.649,-0.845 -2.185,-2.403 z m -4.701,1.619 c -0.536,-1.558 -0.427,-3.008 0.243,-3.239 0.67,-0.231 1.649,0.845 2.186,2.403 0.536,1.558 0.427,3.008 -0.243,3.239 -0.67,0.231 -1.65,-0.845 -2.186,-2.403 z"
+ id="path2745"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g2747">
+ <ellipse
+ transform="matrix(-0.9455,0.3255,-0.3255,-0.9455,204.5578,321.744)"
+ cx="75.361"
+ cy="177.98599"
+ rx="4.428"
+ ry="2.142"
+ id="ellipse2749"
+ style="fill:#ffe600" />
+ <path
+ d=""
+ id="path2751"
+ style="fill:#ffe600"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="g2753"
+ transform="translate(0.31798936,1.8925831)">
+ <path
+ d="m 130.858,227.178 c 3.341,7.154 7.81,5.77 7.88,5.746 1.371,-0.472 5.829,-2.582 4.696,-5.873 -1.025,-2.977 -8.385,-3.373 -13.437,-1.633 -5.015,1.727 -10.665,6.602 -9.64,9.579 1.133,3.291 5.946,2.208 7.316,1.737 0.069,-0.024 4.799,-0.91 2.672,-9.379 -0.078,-0.312 0.404,-0.412 0.513,-0.177 z"
+ id="path2755"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 100.982,184.281 c -4.764,-17.913 -3.791,-32.973 2.812,-35.247 6.602,-2.273 16.641,8.995 23.915,26.044 1.745,2.829 5.157,8.08 7.865,10.513 1.976,1.775 1.993,2.732 -1.079,2.212 -0.927,-0.157 -1.726,-0.358 -2.438,-0.662 5.736,19.254 5.048,35.957 -1.934,38.36 -6.981,2.404 -17.806,-10.334 -25.141,-29.038 -0.374,0.678 -0.879,1.328 -1.513,2.022 -2.1,2.301 -2.676,1.537 -2.212,-1.079 0.636,-3.584 0.092,-9.822 -0.275,-13.125 z"
+ id="path2757"
+ style="fill:#000000;fill-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 108.332,197.337 c -5.498,-15.966 -5.114,-30.576 0.857,-32.632 5.971,-2.056 15.268,9.22 20.766,25.187 5.498,15.966 5.114,30.576 -0.857,32.632 -5.971,2.056 -15.268,-9.22 -20.766,-25.187 z m 0.699,-36.784 c -0.536,-1.558 -0.428,-3.008 0.243,-3.239 0.671,-0.231 1.649,0.845 2.186,2.402 0.536,1.558 0.427,3.008 -0.243,3.239 -0.671,0.231 -1.65,-0.845 -2.186,-2.402 z m -4.701,1.618 c -0.536,-1.558 -0.427,-3.008 0.243,-3.239 0.67,-0.231 1.649,0.845 2.185,2.402 0.536,1.557 0.428,3.008 -0.243,3.239 -0.671,0.231 -1.649,-0.844 -2.185,-2.402 z"
+ id="path2759"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g2761">
+ <ellipse
+ transform="matrix(-0.9455,0.3255,-0.3255,-0.9455,267.4128,287.6192)"
+ cx="109.643"
+ cy="166.18201"
+ rx="4.428"
+ ry="2.142"
+ id="ellipse2763"
+ style="fill:#ffe600" />
+ <path
+ d=""
+ id="path2765"
+ style="fill:#ffe600"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="g2767"
+ transform="translate(0.31798936,1.8925831)">
+ <path
+ d="m 165.141,215.373 c 3.342,7.154 7.811,5.77 7.88,5.746 1.371,-0.472 5.829,-2.582 4.696,-5.873 -1.025,-2.977 -8.385,-3.372 -13.438,-1.633 -5.015,1.727 -10.665,6.602 -9.64,9.579 1.133,3.291 5.945,2.208 7.316,1.737 0.069,-0.024 4.799,-0.91 2.672,-9.379 -0.078,-0.311 0.404,-0.411 0.514,-0.177 z"
+ id="path2769"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 135.265,172.476 c -4.764,-17.913 -3.791,-32.973 2.812,-35.246 6.603,-2.273 16.641,8.995 23.916,26.043 1.744,2.829 5.156,8.08 7.865,10.514 1.975,1.775 1.992,2.731 -1.079,2.212 -0.927,-0.157 -1.726,-0.358 -2.438,-0.662 5.735,19.254 5.048,35.957 -1.934,38.36 -6.982,2.404 -17.806,-10.334 -25.141,-29.038 -0.374,0.678 -0.88,1.328 -1.514,2.022 -2.1,2.301 -2.676,1.537 -2.212,-1.079 0.636,-3.584 0.092,-9.823 -0.275,-13.126 z"
+ id="path2771"
+ style="fill:#000000;fill-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 142.615,185.533 c -5.498,-15.967 -5.114,-30.577 0.857,-32.633 5.971,-2.056 15.269,9.221 20.766,25.187 5.497,15.966 5.114,30.576 -0.857,32.632 -5.971,2.056 -15.268,-9.22 -20.766,-25.186 z m 0.699,-36.785 c -0.537,-1.558 -0.428,-3.008 0.243,-3.239 0.671,-0.231 1.649,0.845 2.186,2.402 0.537,1.558 0.428,3.008 -0.243,3.239 -0.671,0.231 -1.65,-0.844 -2.186,-2.402 z m -4.701,1.619 c -0.536,-1.558 -0.427,-3.008 0.243,-3.239 0.671,-0.231 1.649,0.845 2.186,2.402 0.537,1.558 0.428,3.008 -0.243,3.239 -0.671,0.231 -1.65,-0.845 -2.186,-2.402 z"
+ id="path2773"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g2775">
+ <ellipse
+ transform="matrix(-0.9455,0.3256,-0.3256,-0.9455,330.2729,253.4852)"
+ cx="143.92599"
+ cy="154.379"
+ rx="4.4289999"
+ ry="2.142"
+ id="ellipse2777"
+ style="fill:#ffe600" />
+ <path
+ d=""
+ id="path2779"
+ style="fill:#ffe600"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#3c857c;fill-opacity:1;filter:url(#filter5576)"
+ id="path2781"
+ d="M 95.108,61.776 244.59003,10.309068 c 15.666,-5.3939967 32.82494,3.185516 38.32619,19.163008 l 40.59032,117.878134 c 5.50125,15.97749 -2.7378,33.302 -18.40381,38.69497 l -103.98001,35.80096 z" />
+ <g
+ id="text5724"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ transform="rotate(1.0000002)"
+ aria-label="lib">
+ <path
+ id="path5442"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:180px;font-family:Overpass;-inkscape-font-specification:'Overpass Bold';letter-spacing:-10px;fill:#e6e6e6;fill-opacity:1"
+ d="m 152.32564,176.00142 h 21.06 V 46.041419 l -21.06,9.9 z"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path5444"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:180px;font-family:Overpass;-inkscape-font-specification:'Overpass Bold';letter-spacing:-10px;fill:#e6e6e6;fill-opacity:1"
+ d="m 202.14752,71.421419 c 7.02,0 12.42,-5.58 12.42,-12.6 0,-6.84 -5.4,-12.42 -12.42,-12.42 -7.02,0 -12.6,5.58 -12.6,12.42 0,7.02 5.58,12.6 12.6,12.6 z m -10.62,104.580001 h 21.06 V 84.021419 h -21.06 z"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path5446"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:180px;font-family:Overpass;-inkscape-font-specification:'Overpass Bold';letter-spacing:-10px;fill:#e6e6e6;fill-opacity:1"
+ d="m 271.26314,178.16142 c 23.76,0 38.52,-17.1 38.52,-48.24 0,-30.060001 -15.84,-48.060001 -38.16,-48.060001 -9.54,0 -16.2,3.78 -20.7,9 v -44.82 l -21.06,9.54 V 176.00142 h 21.06 v -7.02 c 4.5,5.58 10.62,9.18 20.34,9.18 z m -2.52,-20.16 c -8.1,0 -14.04,-3.06 -17.82,-8.82 v -38.34 c 2.7,-4.14 9,-9 17.82,-9 12.78,0 19.98,9.9 19.98,28.08 0,17.28 -6.84,28.08 -19.98,28.08 z"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#3e3e3e;fill-rule:evenodd"
+ id="path2795"
+ d="m 218.304,241.188 c -2.9,1.834 -8.917,18.762 -6.01,22.858 4.325,6.093 32.696,-15.214 30.405,-21.183 -2.356,-6.136 -21.883,-2.64 -24.395,-1.675 z m -14.341,-9.677 3.368,5.018 c 0,0 0.934,1.385 0.252,4.412 -1.066,4.734 -5.207,16.96 -5.819,27.111 -0.074,1.226 -1.793,12.229 9.964,9.517 11.758,-2.711 36.593,-21.745 41.746,-30.395 5.153,-8.65 -0.843,-13.795 -8.332,-14.524 -7.489,-0.73 -19.089,-0.425 -24.443,0.189 -5.354,0.614 -4.956,-1.165 -9.326,-5.975 -0.327,-0.361 -7.41,4.647 -7.41,4.647 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:url(#linearGradient7010);fill-opacity:1;fill-rule:evenodd"
+ id="path2797"
+ d="m 216.503,238.52 c -2.9,1.834 -8.917,18.762 -6.009,22.858 4.324,6.092 32.696,-15.214 30.405,-21.183 -2.356,-6.136 -21.882,-2.64 -24.396,-1.675 z m -13.394,-10.003 3.368,5.018 c 0,0 0.934,1.385 0.252,4.412 -1.066,4.734 -5.207,16.96 -5.819,27.111 -0.074,1.226 -1.793,12.229 9.964,9.517 11.758,-2.711 36.593,-21.745 41.746,-30.395 5.153,-8.65 -0.843,-13.795 -8.332,-14.524 -7.489,-0.73 -19.089,-0.425 -24.443,0.189 -5.354,0.614 -4.956,-1.165 -9.326,-5.975 -0.328,-0.361 -7.41,4.647 -7.41,4.647 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#54575a;fill-opacity:1"
+ id="path2799"
+ d="m 214.776,227.853 c -2.797,3.296 -6.24,5.845 -9.926,7.474 0.432,-2.596 -0.374,-3.792 -0.374,-3.792 l -3.368,-5.018 c 0,0 7.083,-5.008 7.41,-4.647 3.294,3.624 3.879,5.527 6.258,5.983 z"
+ transform="matrix(1.4295286,0.05310508,-0.05040644,1.2918715,-77.431354,-78.804771)"
+ mask="url(#mask4481)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#c8c7c5"
+ id="path2803"
+ d="m 116.052,45.547 c 17.234,36.62 72.865,128.908 102.86,168.287 -2.858,14.11 -18.673,23.308 -29.809,18.791 L 73.761,66.024 c -0.07,-12.347 22.06,-27.271 42.291,-20.477 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#7c858c"
+ id="path2805"
+ d="m 113.124,44.661 c 17.233,36.62 75.371,131.675 105.366,171.054 -4.069,13.505 -18.428,20.812 -30.299,17.44 L 72.849,66.555 C 72.779,54.208 95.748,39.956 113.124,44.661 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:url(#radialGradient4507);fill-opacity:1;fill-rule:evenodd"
+ id="path2809"
+ d="M 203.927,231.912 80.383,53.463 c 3.583,-3.084 8.164,-5.73 13.116,-7.479 6.902,12.484 25.22,44.608 54.336,88.542 22.713,34.272 46.085,68.024 64.139,91.973 -2.35,2.316 -5.102,4.145 -8.047,5.413 z m -3.597,1.245 c -1.392,0.368 -2.805,0.615 -4.223,0.733 L 75.218,59.278 c 0.699,-1.099 1.537,-2.181 2.494,-3.23 z" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="-408.52026"
+ y="53.587437"
+ id="text5053"
+ transform="rotate(1.0000002)"><tspan
+ sodipodi:role="line"
+ id="tspan5055"
+ x="-408.52026"
+ y="88.978058" /></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:90px;line-height:125%;font-family:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="-525.88629"
+ y="-232.88652"
+ id="text5057"
+ transform="rotate(1.0000002)"><tspan
+ sodipodi:role="line"
+ id="tspan5059"
+ x="-525.88629"
+ y="-153.25761" /></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="543.02759"
+ y="-200.07454"
+ id="text5069"
+ transform="rotate(1.0000002)"><tspan
+ sodipodi:role="line"
+ id="tspan5071"
+ x="543.02759"
+ y="-164.68391" /></text>
+ </g>
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Trim Lines"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <path
+ transform="matrix(0.86033594,0,0,0.86346354,277.62095,265.70622)"
+ inkscape:transform-center-y="-1.5566024"
+ inkscape:transform-center-x="0.34789098"
+ d="m 211.60827,74.824 -0.0332,103.56153 -89.70351,51.75202 -89.670315,-51.80951 0.03319,-103.561527 89.703505,-51.752019 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="0.0003204856"
+ sodipodi:arg1="-0.52327829"
+ sodipodi:r2="103.56153"
+ sodipodi:r1="103.56153"
+ sodipodi:cy="126.57602"
+ sodipodi:cx="121.90476"
+ sodipodi:sides="6"
+ id="path7936"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0093d9;stroke-width:1.16022968;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.32045933, 4.64091866;stroke-dashoffset:7.51718092;stroke-opacity:1;marker:none;enable-background:accumulate"
+ sodipodi:type="star" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#db3279;stroke-width:1.23811221;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.51718092;stroke-opacity:1;marker:none;enable-background:accumulate"
+ id="path8410"
+ sodipodi:sides="6"
+ sodipodi:cx="121.90476"
+ sodipodi:cy="126.57602"
+ sodipodi:r1="103.56153"
+ sodipodi:r2="103.56153"
+ sodipodi:arg1="-0.52327829"
+ sodipodi:arg2="0.0003204856"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 211.60827,74.824 -0.0332,103.56153 -89.70351,51.75202 -89.670315,-51.80951 0.03319,-103.561527 89.703505,-51.752019 z"
+ inkscape:transform-center-x="0.32600218"
+ inkscape:transform-center-y="-1.4586807"
+ transform="matrix(0.80621714,0,0,0.809148,284.21829,272.58127)" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.09156573;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:7.51718092;stroke-opacity:1;marker:none;enable-background:accumulate"
+ id="path8424"
+ sodipodi:sides="6"
+ sodipodi:cx="121.90476"
+ sodipodi:cy="126.57602"
+ sodipodi:r1="103.56153"
+ sodipodi:r2="103.56153"
+ sodipodi:arg1="-0.52327829"
+ sodipodi:arg2="0.0003204856"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 211.60827,74.824 -0.0332,103.56153 -89.70351,51.75202 -89.670315,-51.80951 0.03319,-103.561527 89.703505,-51.752019 z"
+ inkscape:transform-center-x="0.3697741"
+ inkscape:transform-center-y="-1.6545161"
+ transform="matrix(0.91445474,0,0,0.91777907,271.02361,258.83118)" />
+ <g
+ id="g4595"
+ transform="matrix(1.2367579,0,0,-1.2367579,267.26742,1019.4899)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path470"
+ style="fill:none;stroke:#231f20;stroke-width:1.01070714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 210.14,593.273 H 199.138" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path472"
+ style="fill:none;stroke:#231f20;stroke-width:1.01070714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 210.14,449.273 H 199.138" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path474"
+ style="fill:none;stroke:#231f20;stroke-width:1.01070714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 204.639,449.273 v 144" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path476"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 204.639,455.424 h 3.549 l -1.774,-3.076 -1.775,-3.075 -1.776,3.075 -1.773,3.076 h 3.549" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path478"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 204.639,587.124 h -3.549 l 1.773,3.076 1.776,3.073 1.775,-3.073 1.774,-3.076 h -3.549" />
+ </g>
+ <g
+ transform="rotate(-90)"
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8536-9">
+ <path
+ d="m -396.49494,509.63711 q 1.51471,0 2.40782,0.85024 0.90025,0.85024 0.90025,2.32923 0,1.7505 -1.07887,2.69362 -1.07888,0.94312 -3.08659,0.94312 -1.74335,0 -2.81508,-0.56444 v -1.90768 q 0.56445,0.30008 1.31466,0.49299 0.75021,0.18577 1.42183,0.18577 2.022,0 2.022,-1.65761 0,-1.57902 -2.09345,-1.57902 -0.37868,0 -0.83595,0.0786 -0.45727,0.0715 -0.74307,0.15719 l -0.87882,-0.47156 0.39297,-5.32293 h 5.66589 v 1.87195 h -3.72963 l -0.19291,2.05058 0.25007,-0.05 q 0.43584,-0.10003 1.07888,-0.10003 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5051"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -391.70073,515.28871 q 0,-0.60017 0.32152,-0.9074 0.32152,-0.30723 0.93598,-0.30723 0.59302,0 0.91454,0.31437 0.32866,0.31438 0.32866,0.90026 0,0.56444 -0.32866,0.89311 -0.32866,0.32152 -0.91454,0.32152 -0.60017,0 -0.92884,-0.31438 -0.32866,-0.32152 -0.32866,-0.90025 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5053"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -380.53329,511.08752 q 0,2.73649 -0.90026,4.05115 -0.89311,1.31465 -2.75792,1.31465 -1.80765,0 -2.72934,-1.35752 -0.91454,-1.35753 -0.91454,-4.00828 0,-2.76507 0.89311,-4.07258 0.8931,-1.31466 2.75077,-1.31466 1.80766,0 2.72934,1.37182 0.92884,1.37182 0.92884,4.01542 z m -5.10859,0 q 0,1.92197 0.32867,2.75792 0.33581,0.82881 1.12174,0.82881 0.77165,0 1.1146,-0.8431 0.34296,-0.84309 0.34296,-2.74363 0,-1.92197 -0.3501,-2.75792 -0.34296,-0.8431 -1.10746,-0.8431 -0.77879,0 -1.1146,0.8431 -0.33581,0.83595 -0.33581,2.75792 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5055"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -375.83196,505.72886 q 1.50042,0 2.41496,0.68591 0.92169,0.67877 0.92169,1.83624 0,0.80022 -0.44298,1.42897 -0.44298,0.6216 -1.42897,1.1146 1.17176,0.62875 1.67904,1.31466 0.51443,0.67876 0.51443,1.49328 0,1.28607 -1.00742,2.07201 -1.00743,0.77879 -2.65075,0.77879 -1.71477,0 -2.69362,-0.72877 -0.97885,-0.72878 -0.97885,-2.06487 0,-0.89311 0.47156,-1.58617 0.47871,-0.69305 1.52901,-1.22177 -0.89311,-0.56445 -1.28608,-1.20748 -0.39297,-0.64304 -0.39297,-1.40754 0,-1.12175 0.92883,-1.8148 0.92884,-0.69306 2.42212,-0.69306 z m -1.62903,7.80221 q 0,0.61446 0.42869,0.95741 0.42869,0.34296 1.17176,0.34296 0.82166,0 1.22892,-0.3501 0.40725,-0.35725 0.40725,-0.93598 0,-0.47871 -0.40725,-0.89311 -0.40012,-0.42155 -1.30752,-0.89311 -1.52185,0.7002 -1.52185,1.77193 z m 1.61474,-6.18746 q -0.56445,0 -0.91455,0.29294 -0.34295,0.28579 -0.34295,0.77164 0,0.4287 0.2715,0.77165 0.27865,0.33581 1.00029,0.69305 0.70019,-0.32866 0.97885,-0.67162 0.27865,-0.34295 0.27865,-0.79308 0,-0.49299 -0.35725,-0.77879 -0.35724,-0.28579 -0.91454,-0.28579 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5057"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -363.48562,516.45332 q -3.72962,0 -3.72962,-4.09401 0,-2.03629 1.01457,-3.10802 1.01457,-1.07888 2.90797,-1.07888 1.3861,0 2.48641,0.54301 l -0.64304,1.68619 q -0.51443,-0.2072 -0.95741,-0.33581 -0.44298,-0.13575 -0.88596,-0.13575 -1.70049,0 -1.70049,2.41497 0,2.34352 1.70049,2.34352 0.62874,0 1.16461,-0.16433 0.53587,-0.17148 1.07173,-0.52872 v 1.86481 q -0.52872,0.33581 -1.07173,0.46441 -0.53587,0.12861 -1.35753,0.12861 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5059"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -352.06096,516.31042 h -2.17919 v -4.6656 q 0,-0.86453 -0.29294,-1.29322 -0.28579,-0.43584 -0.9074,-0.43584 -0.83595,0 -1.21463,0.61446 -0.37868,0.61446 -0.37868,2.022 v 3.7582 h -2.17918 v -7.98797 h 1.66475 l 0.29294,1.02172 h 0.12147 q 0.32152,-0.55015 0.92883,-0.85738 0.60731,-0.31438 1.39325,-0.31438 1.79336,0 2.42926,1.17176 h 0.19291 q 0.32152,-0.5573 0.94312,-0.86453 0.62875,-0.30723 1.41469,-0.30723 1.35752,0 2.05058,0.7002 0.7002,0.69305 0.7002,2.2292 v 5.20861 h -2.18634 v -4.6656 q 0,-0.86453 -0.29294,-1.29322 -0.28579,-0.43584 -0.9074,-0.43584 -0.80022,0 -1.20033,0.57159 -0.39297,0.57159 -0.39297,1.8148 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5061"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Preview Without Bleeds"
+ sodipodi:insensitive="true"
+ style="display:none">
+ <path
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:20.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6.5;stroke-opacity:1"
+ d="M 269.94336,252.9082 V 497.0918 H 495.05664 V 252.9082 Z m 112.58594,32.66992 77.14648,44.73633 -0.0293,89.42188 -77.17578,44.68555 -77.14648,-44.73633 0.0293,-89.42188 z"
+ id="rect8416"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/docs/logos/logo-sticker-square.svg b/docs/logos/logo-sticker-square.svg
new file mode 100644
index 0000000000..e69fda89c1
--- /dev/null
+++ b/docs/logos/logo-sticker-square.svg
@@ -0,0 +1,2380 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="8.5in"
+ height="11in"
+ viewBox="0 0 765.00001 990.00003"
+ id="svg7307"
+ version="1.1"
+ inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
+ sodipodi:docname="logo-sticker-square.svg">
+ <defs
+ id="defs7309">
+ <filter
+ style="color-interpolation-filters:sRGB"
+ inkscape:label="Drop Shadow"
+ id="filter5799">
+ <feFlood
+ flood-opacity="1"
+ flood-color="rgb(0,0,0)"
+ result="flood"
+ id="feFlood5801" />
+ <feComposite
+ in="flood"
+ in2="SourceGraphic"
+ operator="in"
+ result="composite1"
+ id="feComposite5803" />
+ <feGaussianBlur
+ in="composite1"
+ stdDeviation="6"
+ result="blur"
+ id="feGaussianBlur5805" />
+ <feOffset
+ dx="6"
+ dy="6"
+ result="offset"
+ id="feOffset5807" />
+ <feComposite
+ in="SourceGraphic"
+ in2="offset"
+ operator="over"
+ result="composite2"
+ id="feComposite5809" />
+ </filter>
+ <mask
+ maskUnits="userSpaceOnUse"
+ id="mask3913">
+ <path
+ style="fill:#2f6962"
+ id="path3915"
+ d="M 95.108,61.776 244.59,10.309 c 15.666,-5.394 32.738,2.933 38.132,18.599 l 39.799,115.58 c 5.394,15.666 -2.932,32.738 -18.598,38.131 l -103.98,35.801 z"
+ inkscape:connector-curvature="0" />
+ </mask>
+ <mask
+ maskUnits="userSpaceOnUse"
+ id="mask4168">
+ <path
+ style="fill:#7c858c"
+ id="path4170"
+ d="m 113.124,36.661 c 17.233,36.62 75.371,131.675 105.366,171.054 -4.069,13.505 -18.428,20.812 -30.299,17.44 L 72.849,58.555 C 72.779,46.208 95.748,31.956 113.124,36.661 Z"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ </mask>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3821"
+ id="linearGradient7006"
+ gradientUnits="userSpaceOnUse"
+ x1="128.61047"
+ y1="239.37396"
+ x2="138.61214"
+ y2="267.79517" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3821">
+ <stop
+ style="stop-color:#3e3e3e;stop-opacity:1;"
+ offset="0"
+ id="stop3823" />
+ <stop
+ style="stop-color:#3e3e3e;stop-opacity:0;"
+ offset="1"
+ id="stop3825" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3985"
+ id="linearGradient7008"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,-2)"
+ x1="173.70392"
+ y1="267.11093"
+ x2="166.66296"
+ y2="246.63959" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient3985">
+ <stop
+ style="stop-color:#c8c7c5;stop-opacity:1;"
+ offset="0"
+ id="stop3987" />
+ <stop
+ style="stop-color:#c8c7c5;stop-opacity:0;"
+ offset="1"
+ id="stop3989" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4501"
+ id="radialGradient3548"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.5433331,-0.1032133,0.09131267,1.3653854,-130.42141,-95.005447)"
+ cx="197.5676"
+ cy="252.71837"
+ fx="197.5676"
+ fy="252.71837"
+ r="166.51035" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4501">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop4503" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop4505" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4501"
+ id="radialGradient3552"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.870471,-0.6430111,0.256613,0.7464679,-116.69068,109.71214)"
+ cx="135.63954"
+ cy="12.000564"
+ fx="135.63954"
+ fy="12.000564"
+ r="161.65305" />
+ <filter
+ inkscape:label="Ridged Border"
+ inkscape:menu="Bevels"
+ inkscape:menu-tooltip="Ridged border with inner bevel"
+ style="color-interpolation-filters:sRGB"
+ id="filter5576">
+ <feMorphology
+ radius="4.3"
+ in="SourceAlpha"
+ result="result91"
+ id="feMorphology5578" />
+ <feComposite
+ operator="out"
+ in="SourceGraphic"
+ in2="result91"
+ id="feComposite5580" />
+ <feGaussianBlur
+ result="result0"
+ stdDeviation="1.2"
+ id="feGaussianBlur5582" />
+ <feDiffuseLighting
+ diffuseConstant="1"
+ id="feDiffuseLighting5584">
+ <feDistantLight
+ elevation="66"
+ azimuth="225"
+ id="feDistantLight5586" />
+ </feDiffuseLighting>
+ <feBlend
+ mode="multiply"
+ in2="SourceGraphic"
+ id="feBlend5588" />
+ <feComposite
+ operator="in"
+ in2="SourceAlpha"
+ id="feComposite5590" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3301"
+ id="linearGradient7010"
+ gradientUnits="userSpaceOnUse"
+ x1="227.66476"
+ y1="217.85138"
+ x2="227.66476"
+ y2="275.00342" />
+ <linearGradient
+ id="linearGradient3301">
+ <stop
+ id="stop3303"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:1;" />
+ <stop
+ id="stop3305"
+ offset="1"
+ style="stop-color:#868686;stop-opacity:1;" />
+ </linearGradient>
+ <mask
+ maskUnits="userSpaceOnUse"
+ id="mask4481">
+ <path
+ style="clip-rule:evenodd;fill:#aaaaaa;fill-rule:evenodd"
+ id="path4483"
+ d="m 213.96734,236.83626 c -1.97572,1.50086 -5.71734,14.75814 -3.57441,17.84065 3.18643,4.58465 22.42412,-12.69851 20.66112,-17.24646 -1.81294,-4.67518 -15.35694,-1.41227 -17.08671,-0.59419 z m -9.6286,-7.34722 2.48938,3.78195 c 0,0 0.69017,1.04372 0.29628,3.40302 -0.6156,3.68976 -3.17495,13.25876 -3.32578,21.12255 -0.0183,0.94976 -0.91914,9.5039 7.21943,7.07006 8.1393,-2.43309 24.96824,-17.85854 28.33195,-24.69252 3.36372,-6.83399 -0.96483,-10.63865 -6.21591,-10.98709 -5.2511,-0.34921 -13.3456,0.21962 -17.06874,0.84795 -3.72313,0.62832 -3.49361,-0.75818 -6.67723,-4.3506 -0.23896,-0.26961 -5.04938,3.80468 -5.04938,3.80468 z"
+ inkscape:connector-curvature="0" />
+ </mask>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4501"
+ id="radialGradient4507"
+ cx="143.59599"
+ cy="139.937"
+ fx="143.59599"
+ fy="139.937"
+ r="68.377998"
+ gradientTransform="matrix(1.3366435,0.07829819,-0.1078591,1.8412818,-33.247188,-128.96975)"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.4121212"
+ inkscape:cx="429.75039"
+ inkscape:cy="645.57066"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ units="in"
+ fit-margin-top="1"
+ fit-margin-bottom="1"
+ fit-margin-right="1"
+ fit-margin-left="1"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1136"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1">
+ <sodipodi:guide
+ position="557.18594,704.35932"
+ orientation="0,1"
+ id="guide8412"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="472.1985,525.26384"
+ orientation="0,1"
+ id="guide8414"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7312">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer4"
+ inkscape:label="Template Text"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ style="font-style:normal;font-weight:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8212">
+ <path
+ d="m 83.336059,86.295895 q 3.519771,0 5.595108,1.975721 2.091939,1.97572 2.091939,5.412478 0,4.06766 -2.507006,6.259215 -2.507007,2.191551 -7.172364,2.191551 -4.051057,0 -6.541461,-1.31161 v -4.432917 q 1.311613,0.697313 3.054896,1.145586 1.743283,0.43167 3.303936,0.43167 4.698562,0 4.698562,-3.851825 0,-3.669195 -4.864589,-3.669195 -0.879943,0 -1.942515,0.182629 -1.062573,0.166027 -1.72668,0.365259 L 75.283753,89.89868 76.196901,77.529673 h 13.165936 v 4.349906 h -8.666606 l -0.448272,4.764973 0.581094,-0.116219 q 1.012764,-0.232438 2.507006,-0.232438 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5363"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 94.476466,99.428626 q 0,-1.394627 0.747121,-2.108542 0.747121,-0.713916 2.174953,-0.713916 1.378023,0 2.125145,0.730518 0.763725,0.730519 0.763725,2.09194 0,1.311614 -0.763725,2.075334 -0.763724,0.74712 -2.125145,0.74712 -1.394626,0 -2.15835,-0.73052 -0.763724,-0.74712 -0.763724,-2.091934 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5365"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 120.42647,89.666242 q 0,6.358831 -2.09193,9.413727 -2.07534,3.054891 -6.40864,3.054891 -4.20049,0 -6.34223,-3.154507 -2.12515,-3.154512 -2.12515,-9.314111 0,-6.425242 2.07534,-9.463535 2.07534,-3.054896 6.39204,-3.054896 4.20048,0 6.34222,3.187717 2.15835,3.187718 2.15835,9.330714 z m -11.87092,0 q 0,4.466124 0.76372,6.40864 0.78033,1.925912 2.60663,1.925912 1.79309,0 2.59002,-1.959118 0.79693,-1.959118 0.79693,-6.375434 0,-4.466124 -0.81354,-6.40864 -0.79693,-1.959117 -2.57341,-1.959117 -1.8097,0 -2.59002,1.959117 -0.78033,1.942516 -0.78033,6.40864 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5367"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 131.35105,77.214222 q 3.48656,0 5.61171,1.593859 2.14174,1.577256 2.14174,4.266892 0,1.859501 -1.02936,3.320538 -1.02937,1.444435 -3.32054,2.590021 2.72284,1.461037 3.90163,3.054895 1.1954,1.577256 1.1954,3.469963 0,2.988485 -2.34098,4.81478 -2.34098,1.80969 -6.1596,1.80969 -3.98465,0 -6.25922,-1.69347 -2.27457,-1.693475 -2.27457,-4.798178 0,-2.075337 1.09578,-3.685798 1.11238,-1.610462 3.55298,-2.839061 -2.07534,-1.311613 -2.98849,-2.805855 -0.91315,-1.494242 -0.91315,-3.270731 0,-2.606622 2.15835,-4.217084 2.15835,-1.610461 5.62832,-1.610461 z m -3.78542,18.130141 q 0,1.427832 0.99616,2.224761 0.99617,0.796929 2.72285,0.796929 1.90931,0 2.85566,-0.813532 0.94635,-0.830134 0.94635,-2.174953 0,-1.11238 -0.94635,-2.075336 -0.92975,-0.979559 -3.03829,-2.075337 -3.53638,1.627064 -3.53638,4.117468 z m 3.75221,-14.377932 q -1.31161,0 -2.12514,0.68071 -0.79693,0.664108 -0.79693,1.793091 0,0.996162 0.6309,1.793091 0.6475,0.780327 2.32438,1.610461 1.62706,-0.763724 2.27457,-1.560653 0.6475,-0.796929 0.6475,-1.842899 0,-1.145586 -0.83013,-1.809693 -0.83014,-0.664108 -2.12515,-0.664108 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5369"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 160.0405,102.13486 q -8.66661,0 -8.66661,-9.513339 0,-4.731767 2.35758,-7.222171 2.35759,-2.507007 6.7573,-2.507007 3.22092,0 5.77774,1.261805 l -1.49425,3.918235 q -1.19539,-0.481478 -2.22476,-0.780326 -1.02936,-0.315451 -2.05873,-0.315451 -3.95144,0 -3.95144,5.61171 0,5.445683 3.95144,5.445683 1.46104,0 2.70624,-0.381862 1.2452,-0.398464 2.4904,-1.228599 v 4.333302 q -1.2286,0.78033 -2.4904,1.07918 -1.2452,0.29884 -3.15451,0.29884 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5371"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 186.5882,101.80281 h -5.06382 V 90.961252 q 0,-2.008926 -0.68071,-3.005087 -0.66411,-1.012765 -2.10854,-1.012765 -1.94252,0 -2.82246,1.427832 -0.87994,1.427832 -0.87994,4.698562 v 8.733016 h -5.06382 V 83.241 h 3.86843 l 0.68071,2.374185 h 0.28224 q 0.74712,-1.278407 2.15835,-1.992323 1.41123,-0.730519 3.23753,-0.730519 4.16727,0 5.64491,2.722842 h 0.44828 q 0.74712,-1.29501 2.19155,-2.008926 1.46104,-0.713916 3.28733,-0.713916 3.15452,0 4.76498,1.627064 1.62706,1.610461 1.62706,5.18004 v 12.103363 h -5.08042 V 90.961252 q 0,-2.008926 -0.68071,-3.005087 -0.66411,-1.012765 -2.10855,-1.012765 -1.8595,0 -2.78925,1.328216 -0.91315,1.328215 -0.91315,4.217084 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5373"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 223.42959,77.529673 -9.04847,24.273137 h -4.59895 l 9.04847,-24.273137 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5375"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 250.79082,101.80281 h -16.96795 v -3.569578 l 6.09319,-6.1596 q 2.70624,-2.772649 3.53637,-3.835222 0.83014,-1.079175 1.1954,-1.992323 0.36525,-0.913148 0.36525,-1.892707 0,-1.461037 -0.81353,-2.174953 -0.79693,-0.713915 -2.14174,-0.713915 -1.41123,0 -2.73945,0.647505 -1.32821,0.647505 -2.77265,1.842899 l -2.78925,-3.303936 q 1.79309,-1.527448 2.97188,-2.15835 1.17879,-0.630903 2.57342,-0.962957 1.39462,-0.348656 3.1213,-0.348656 2.27457,0 4.01786,0.830134 1.74328,0.830135 2.70624,2.324377 0.96295,1.494243 0.96295,3.420155 0,1.676872 -0.5977,3.154512 -0.58109,1.461037 -1.82629,3.005087 -1.2286,1.544051 -4.34991,4.399714 l -3.1213,2.938677 v 0.232437 h 10.57591 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5377"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 258.6937,77.529673 -0.68071,8.766222 h -3.27074 l -0.68071,-8.766222 z m 7.00633,0 -0.68071,8.766222 h -3.27073 l -0.68071,-8.766222 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5379"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 294.14046,95.062117 q 0,3.287333 -2.37419,5.180043 -2.35758,1.8927 -6.57466,1.8927 -3.88503,0 -6.87352,-1.46103 v -4.781578 q 2.4572,1.095778 4.15068,1.54405 1.71007,0.448273 3.1213,0.448273 1.69348,0 2.59002,-0.647505 0.91315,-0.647505 0.91315,-1.925912 0,-0.713916 -0.39846,-1.261805 -0.39847,-0.564492 -1.1788,-1.079175 -0.76372,-0.514684 -3.13791,-1.643667 -2.22476,-1.045969 -3.33714,-2.008926 -1.11238,-0.962956 -1.77648,-2.241363 -0.66411,-1.278408 -0.66411,-2.988485 0,-3.220922 2.17495,-5.063821 2.19156,-1.842899 6.04338,-1.842899 1.89271,0 3.60279,0.448272 1.72668,0.448273 3.60278,1.261805 l -1.66027,4.001249 q -1.94251,-0.796929 -3.22092,-1.11238 -1.26181,-0.315451 -2.49041,-0.315451 -1.46103,0 -2.24136,0.68071 -0.78033,0.68071 -0.78033,1.776488 0,0.680711 0.31545,1.195394 0.31546,0.498081 0.99617,0.979559 0.69731,0.464875 3.27073,1.693475 3.40355,1.627064 4.66535,3.27073 1.26181,1.627064 1.26181,4.001249 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5381"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 305.82875,98.166821 q 1.92591,0 2.82245,-1.095778 0.89655,-1.11238 0.97956,-3.868427 v -0.6143 q 0,-2.988485 -0.92975,-4.283495 -0.91315,-1.29501 -2.95528,-1.29501 -3.56958,0 -3.56958,5.61171 0,2.789253 0.87995,4.167276 0.89654,1.378024 2.77265,1.378024 z m -1.8097,3.968039 q -3.28733,0 -5.14683,-2.523605 -1.8595,-2.540212 -1.8595,-7.056144 0,-4.549138 1.8927,-7.105953 1.90931,-2.556815 5.21325,-2.556815 1.75988,0 3.0715,0.664108 1.31161,0.664108 2.30777,2.058734 h 0.13282 L 310.07903,83.241 h 4.2835 v 26.73034 h -5.08042 v -7.78667 q 0,-1.01276 0.21583,-2.78925 h -0.21583 q -0.81354,1.34482 -2.15835,2.04213 -1.34482,0.69731 -3.10471,0.69731 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5383"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 332.80812,101.80281 -0.68071,-2.374184 h -0.26564 q -0.81353,1.295014 -2.30778,2.008924 -1.49424,0.69731 -3.40355,0.69731 -3.27073,0 -4.931,-1.74328 -1.66027,-1.759884 -1.66027,-5.047217 V 83.241 h 5.06382 v 10.841558 q 0,2.008926 0.71392,3.021691 0.71392,0.996161 2.27457,0.996161 2.12514,0 3.0715,-1.411229 0.94635,-1.427831 0.94635,-4.715165 V 83.241 h 5.06382 v 18.56181 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5385"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 353.82713,101.80281 -0.97956,-2.523609 h -0.13282 q -1.27841,1.610459 -2.63983,2.241359 -1.34481,0.6143 -3.51977,0.6143 -2.67303,0 -4.21708,-1.52744 -1.52745,-1.527451 -1.52745,-4.349909 0,-2.955279 2.05874,-4.349905 2.07533,-1.411229 6.24261,-1.560654 l 3.22092,-0.09962 V 89.4338 q 0,-2.822458 -2.88887,-2.822458 -2.22476,0 -5.22985,1.344819 L 342.5373,84.53601 q 3.20432,-1.676872 7.10595,-1.676872 3.73561,0 5.72793,1.627064 1.99233,1.627064 1.99233,4.947602 v 12.369006 z m -1.49424,-8.600194 -1.95912,0.06641 q -2.20816,0.06641 -3.28733,0.79693 -1.07918,0.730518 -1.07918,2.224761 0,2.141747 2.4572,2.141747 1.75989,0 2.80586,-1.012764 1.06257,-1.012765 1.06257,-2.689637 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5387"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 372.92024,82.892343 q 1.02936,0 1.71007,0.149424 l -0.38186,4.748371 q -0.6143,-0.166027 -1.49424,-0.166027 -2.42399,0 -3.78541,1.245202 -1.34482,1.245202 -1.34482,3.486565 v 9.446932 h -5.06382 V 83.241 h 3.83522 l 0.74712,3.121306 h 0.24904 q 0.86334,-1.560653 2.32438,-2.507007 1.47764,-0.962956 3.20432,-0.962956 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5389"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 385.7209,86.495128 q -1.61046,0 -2.52361,1.029367 -0.91315,1.012764 -1.04597,2.888868 h 7.10595 q -0.0332,-1.876104 -0.97956,-2.888868 -0.94635,-1.029367 -2.55681,-1.029367 z m 0.71391,15.639732 q -4.48273,0 -7.00633,-2.473797 -2.52361,-2.473801 -2.52361,-7.006336 0,-4.665357 2.32437,-7.205569 2.34098,-2.556815 6.45845,-2.556815 3.93484,0 6.12639,2.241364 2.19156,2.241363 2.19156,6.192804 V 93.78371 H 382.0351 q 0.083,2.15835 1.27841,3.370347 1.19539,1.211996 3.35374,1.211996 1.67687,0 3.17111,-0.348656 1.49425,-0.348657 3.12131,-1.112381 v 3.918234 q -1.32821,0.66411 -2.83906,0.97956 -1.51085,0.33205 -3.6858,0.33205 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5391"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 421.71555,95.062117 q 0,3.287333 -2.37419,5.180043 -2.35758,1.8927 -6.57466,1.8927 -3.88503,0 -6.87352,-1.46103 v -4.781578 q 2.4572,1.095778 4.15067,1.54405 1.71008,0.448273 3.12131,0.448273 1.69347,0 2.59002,-0.647505 0.91315,-0.647505 0.91315,-1.925912 0,-0.713916 -0.39847,-1.261805 -0.39846,-0.564492 -1.17879,-1.079175 -0.76372,-0.514684 -3.13791,-1.643667 -2.22476,-1.045969 -3.33714,-2.008926 -1.11238,-0.962956 -1.77649,-2.241363 -0.6641,-1.278408 -0.6641,-2.988485 0,-3.220922 2.17495,-5.063821 2.19155,-1.842899 6.04338,-1.842899 1.89271,0 3.60278,0.448272 1.72668,0.448273 3.60279,1.261805 l -1.66027,4.001249 q -1.94252,-0.796929 -3.22092,-1.11238 -1.26181,-0.315451 -2.49041,-0.315451 -1.46103,0 -2.24136,0.68071 -0.78033,0.68071 -0.78033,1.776488 0,0.680711 0.31545,1.195394 0.31545,0.498081 0.99616,0.979559 0.69732,0.464875 3.27074,1.693475 3.40355,1.627064 4.66535,3.27073 1.26181,1.627064 1.26181,4.001249 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5393"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 433.53667,98.10041 q 1.32822,0 3.18772,-0.581094 v 3.768814 q -1.89271,0.84673 -4.64876,0.84673 -3.03829,0 -4.43292,-1.52744 -1.37802,-1.544054 -1.37802,-4.615552 v -8.948852 h -2.42399 v -2.141747 l 2.78925,-1.693475 1.46104,-3.918235 h 3.23752 V 83.241 h 5.19665 v 3.802016 h -5.19665 v 8.948852 q 0,1.079175 0.5977,1.593859 0.6143,0.514683 1.61046,0.514683 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5395"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 440.24416,78.442821 q 0,-2.473801 2.75605,-2.473801 2.75605,0 2.75605,2.473801 0,1.178792 -0.69732,1.842899 -0.68071,0.647505 -2.05873,0.647505 -2.75605,0 -2.75605,-2.490404 z m 5.27966,23.359989 H 440.46 V 83.241 h 5.06382 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5397"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 458.3577,102.13486 q -8.66661,0 -8.66661,-9.513339 0,-4.731767 2.35758,-7.222171 2.35759,-2.507007 6.7573,-2.507007 3.22092,0 5.77774,1.261805 l -1.49425,3.918235 q -1.19539,-0.481478 -2.22476,-0.780326 -1.02936,-0.315451 -2.05873,-0.315451 -3.95144,0 -3.95144,5.61171 0,5.445683 3.95144,5.445683 1.46104,0 2.70624,-0.381862 1.2452,-0.398464 2.4904,-1.228599 v 4.333302 q -1.2286,0.78033 -2.4904,1.07918 -1.2452,0.29884 -3.15451,0.29884 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5399"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 473.1507,91.708373 2.20815,-2.822458 5.19665,-5.644915 h 5.71132 l -7.37159,8.052306 7.81987,10.509504 h -5.84415 l -5.34607,-7.521019 -2.17495,1.743282 v 5.777737 h -5.06382 V 75.96902 h 5.06382 v 11.522269 l -0.26564,4.217084 h 0.0664 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5401"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 497.09178,86.495128 q -1.61046,0 -2.52361,1.029367 -0.91315,1.012764 -1.04597,2.888868 h 7.10595 q -0.0332,-1.876104 -0.97956,-2.888868 -0.94635,-1.029367 -2.55681,-1.029367 z m 0.71391,15.639732 q -4.48272,0 -7.00633,-2.473797 -2.52361,-2.473801 -2.52361,-7.006336 0,-4.665357 2.32437,-7.205569 2.34098,-2.556815 6.45845,-2.556815 3.93484,0 6.12639,2.241364 2.19156,2.241363 2.19156,6.192804 v 2.457199 h -11.97054 q 0.083,2.15835 1.27841,3.370347 1.19539,1.211996 3.35374,1.211996 1.67687,0 3.17111,-0.348656 1.49425,-0.348657 3.12131,-1.112381 v 3.918234 q -1.32821,0.66411 -2.83906,0.97956 -1.51084,0.33205 -3.6858,0.33205 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5403"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 519.88728,82.892343 q 1.02936,0 1.71007,0.149424 l -0.38186,4.748371 q -0.6143,-0.166027 -1.49424,-0.166027 -2.42399,0 -3.78541,1.245202 -1.34482,1.245202 -1.34482,3.486565 v 9.446932 H 509.5272 V 83.241 h 3.83522 l 0.74712,3.121306 h 0.24904 q 0.86334,-1.560653 2.32438,-2.507007 1.47764,-0.962956 3.20432,-0.962956 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5405"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 543.59592,101.80281 h -5.14684 V 81.813168 h -6.59127 v -4.283495 h 18.32937 v 4.283495 h -6.59126 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5407"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 561.24458,86.495128 q -1.61046,0 -2.52361,1.029367 -0.91315,1.012764 -1.04597,2.888868 h 7.10595 q -0.0332,-1.876104 -0.97956,-2.888868 -0.94635,-1.029367 -2.55681,-1.029367 z m 0.71391,15.639732 q -4.48272,0 -7.00633,-2.473797 -2.52361,-2.473801 -2.52361,-7.006336 0,-4.665357 2.32437,-7.205569 2.34098,-2.556815 6.45845,-2.556815 3.93484,0 6.1264,2.241364 2.19155,2.241363 2.19155,6.192804 v 2.457199 h -11.97054 q 0.083,2.15835 1.27841,3.370347 1.19539,1.211996 3.35374,1.211996 1.67687,0 3.17112,-0.348656 1.49424,-0.348657 3.1213,-1.112381 v 3.918234 q -1.32821,0.66411 -2.83906,0.97956 -1.51084,0.33205 -3.6858,0.33205 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5409"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 590.29929,101.80281 h -5.06382 V 90.961252 q 0,-2.008926 -0.68071,-3.005087 -0.66411,-1.012765 -2.10854,-1.012765 -1.94252,0 -2.82246,1.427832 -0.87994,1.427832 -0.87994,4.698562 v 8.733016 H 573.68 V 83.241 h 3.86843 l 0.68071,2.374185 h 0.28224 q 0.74712,-1.278407 2.15835,-1.992323 1.41123,-0.730519 3.23753,-0.730519 4.16727,0 5.64491,2.722842 h 0.44828 q 0.74712,-1.29501 2.19155,-2.008926 1.46104,-0.713916 3.28733,-0.713916 3.15452,0 4.76498,1.627064 1.62706,1.610461 1.62706,5.18004 v 12.103363 h -5.08042 V 90.961252 q 0,-2.008926 -0.68071,-3.005087 -0.66411,-1.012765 -2.10855,-1.012765 -1.8595,0 -2.78925,1.328216 -0.91315,1.328215 -0.91315,4.217084 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5411"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 617.27868,102.13486 q -3.27073,0 -5.13023,-2.374181 h -0.26564 q 0.26564,2.324381 0.26564,2.689641 v 7.52102 h -5.06382 V 83.241 h 4.11747 l 0.71391,2.40739 h 0.23244 q 1.77649,-2.756047 5.26306,-2.756047 3.28733,0 5.14683,2.540212 1.8595,2.540212 1.8595,7.056145 0,2.971882 -0.87994,5.163437 -0.86334,2.191556 -2.4738,3.337143 -1.61046,1.14558 -3.78542,1.14558 z M 615.78444,86.9434 q -1.8761,0 -2.73944,1.162189 -0.86334,1.145586 -0.89655,3.802017 v 0.547888 q 0,2.988485 0.87994,4.283495 0.89655,1.29501 2.82246,1.29501 3.40355,0 3.40355,-5.61171 0,-2.739444 -0.84673,-4.100865 -0.83014,-1.378024 -2.62323,-1.378024 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5413"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 633.66554,101.80281 h -5.06382 V 75.96902 h 5.06382 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5415"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 650.74968,101.80281 -0.97956,-2.523609 h -0.13282 q -1.27841,1.610459 -2.63983,2.241359 -1.34482,0.6143 -3.51977,0.6143 -2.67303,0 -4.21708,-1.52744 -1.52745,-1.527451 -1.52745,-4.349909 0,-2.955279 2.05873,-4.349905 2.07534,-1.411229 6.24261,-1.560654 l 3.22093,-0.09962 V 89.4338 q 0,-2.822458 -2.88887,-2.822458 -2.22476,0 -5.22985,1.344819 l -1.67687,-3.420155 q 3.20432,-1.676872 7.10595,-1.676872 3.73561,0 5.72793,1.627064 1.99232,1.627064 1.99232,4.947602 v 12.36901 z m -1.49424,-8.600194 -1.95912,0.06641 q -2.20816,0.06641 -3.28733,0.79693 -1.07918,0.730518 -1.07918,2.224761 0,2.141747 2.4572,2.141747 1.75988,0 2.80585,-1.012764 1.06258,-1.012765 1.06258,-2.689637 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5417"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 667.30257,98.10041 q 1.32822,0 3.18772,-0.581094 v 3.768814 q -1.89271,0.84673 -4.64876,0.84673 -3.03829,0 -4.43292,-1.52744 -1.37802,-1.544054 -1.37802,-4.615552 v -8.948852 h -2.42399 v -2.141747 l 2.78925,-1.693475 1.46104,-3.918235 h 3.23752 V 83.241 h 5.19665 v 3.802016 h -5.19665 v 8.948852 q 0,1.079175 0.5977,1.593859 0.6143,0.514683 1.61046,0.514683 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5419"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 681.91297,86.495128 q -1.61046,0 -2.52361,1.029367 -0.91314,1.012764 -1.04597,2.888868 h 7.10596 q -0.0332,-1.876104 -0.97956,-2.888868 -0.94635,-1.029367 -2.55682,-1.029367 z m 0.71392,15.639732 q -4.48273,0 -7.00634,-2.473797 -2.52361,-2.473801 -2.52361,-7.006336 0,-4.665357 2.32438,-7.205569 2.34098,-2.556815 6.45845,-2.556815 3.93484,0 6.12639,2.241364 2.19156,2.241363 2.19156,6.192804 v 2.457199 h -11.97054 q 0.083,2.15835 1.2784,3.370347 1.1954,1.211996 3.35375,1.211996 1.67687,0 3.17111,-0.348656 1.49424,-0.348657 3.12131,-1.112381 v 3.918234 q -1.32822,0.66411 -2.83906,0.97956 -1.51085,0.33205 -3.6858,0.33205 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:34.00231552px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5421"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(178.67433,582.63783)"
+ style="font-style:normal;font-weight:normal;font-size:29.74009705px;line-height:120.00000477%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8216">
+ <path
+ d="m -85.433484,-457.63349 q 0,-1.62412 0.471914,-3.03986 0.478044,-1.41575 1.372843,-2.48215 h 0.992859 q -0.882541,1.18285 -1.329941,2.59859 -0.441271,1.41575 -0.441271,2.91117 0,1.4709 0.453528,2.87438 0.453529,1.40349 1.305427,2.56183 h -0.980602 q -0.900928,-1.04189 -1.372843,-2.43312 -0.471914,-1.39123 -0.471914,-2.99084 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5424"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -78.219932,-454.19525 h -1.04189 v -8.03481 h -2.837616 v -0.92544 h 6.717122 v 0.92544 h -2.837616 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5426"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -69.596764,-454.19525 v -4.34529 q 0,-0.82126 -0.373855,-1.22576 -0.373854,-0.40449 -1.170593,-0.40449 -1.060276,0 -1.550577,0.5761 -0.484172,0.5761 -0.484172,1.88766 v 3.51178 h -1.017374 v -9.53635 h 1.017374 v 2.88664 q 0,0.52095 -0.04903,0.86416 h 0.06129 q 0.30031,-0.48417 0.851898,-0.75997 0.557718,-0.28192 1.268654,-0.28192 1.231881,0 1.844757,0.58836 0.619005,0.58223 0.619005,1.85701 v 4.38207 h -1.017374 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5428"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -65.478238,-454.19525 h -1.017374 v -6.71712 h 1.017374 z m -1.103177,-8.53737 q 0,-0.34934 0.171606,-0.50868 0.171605,-0.16548 0.429013,-0.16548 0.24515,0 0.422884,0.16548 0.177735,0.16547 0.177735,0.50868 0,0.34321 -0.177735,0.51482 -0.177734,0.16548 -0.422884,0.16548 -0.257408,0 -0.429013,-0.16548 -0.171606,-0.17161 -0.171606,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5430"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -58.975621,-456.02775 q 0,0.9377 -0.698679,1.44639 -0.698679,0.50868 -1.961204,0.50868 -1.33607,0 -2.083779,-0.42288 v -0.94383 q 0.484172,0.24515 1.035761,0.38611 0.557717,0.14096 1.072533,0.14096 0.796739,0 1.225753,-0.25128 0.429013,-0.2574 0.429013,-0.77835 0,-0.39224 -0.343211,-0.66803 -0.337082,-0.28193 -1.323812,-0.66191 -0.937701,-0.34934 -1.33607,-0.60675 -0.392241,-0.26353 -0.588361,-0.59449 -0.189992,-0.33095 -0.189992,-0.79061 0,-0.82125 0.668035,-1.29317 0.668035,-0.47804 1.8325,-0.47804 1.084791,0 2.120551,0.44127 l -0.361597,0.82738 q -1.011245,-0.41675 -1.832499,-0.41675 -0.723194,0 -1.09092,0.22676 -0.367726,0.22677 -0.367726,0.62514 0,0.26966 0.134833,0.45965 0.140962,0.19 0.4474,0.3616 0.306438,0.17161 1.176722,0.49643 1.195108,0.43514 1.611864,0.87641 0.422885,0.44127 0.422885,1.10931 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5432"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -51.896902,-454.91232 q 0.269666,0 0.520945,-0.0368 0.251279,-0.0429 0.398369,-0.0858 v 0.77835 q -0.165476,0.0797 -0.490301,0.1287 -0.318695,0.0552 -0.576103,0.0552 -1.948946,0 -1.948946,-2.05313 v -3.99595 h -0.962216 v -0.4903 l 0.962216,-0.42289 0.429013,-1.43413 h 0.588361 v 1.55671 h 1.948946 v 0.79061 h -1.948946 v 3.95305 q 0,0.60674 0.288052,0.93157 0.288052,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5434"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -46.791642,-454.07268 q -1.489289,0 -2.353444,-0.90705 -0.858027,-0.90706 -0.858027,-2.51892 0,-1.62413 0.796739,-2.58021 0.802868,-0.95609 2.151196,-0.95609 1.262525,0 1.997976,0.83351 0.735451,0.82739 0.735451,2.18797 v 0.64352 h -4.627215 q 0.03064,1.18285 0.59449,1.79573 0.569975,0.61287 1.599607,0.61287 1.084791,0 2.145067,-0.45352 v 0.90705 q -0.539331,0.23289 -1.023504,0.33095 -0.478043,0.10419 -1.158336,0.10419 z m -0.275794,-6.11037 q -0.808996,0 -1.293168,0.52707 -0.478044,0.52708 -0.563846,1.45865 h 3.51178 q 0,-0.96222 -0.429013,-1.47091 -0.429014,-0.51481 -1.225753,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5436"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -34.031562,-454.19525 v -4.36981 q 0,-0.80287 -0.343211,-1.20124 -0.34321,-0.40449 -1.066404,-0.40449 -0.949958,0 -1.403487,0.54546 -0.453528,0.54546 -0.453528,1.67928 v 3.7508 h -1.017374 v -4.36981 q 0,-0.80287 -0.343211,-1.20124 -0.343211,-0.40449 -1.072533,-0.40449 -0.956087,0 -1.403487,0.5761 -0.44127,0.56997 -0.44127,1.8754 v 3.52404 h -1.017375 v -6.71712 h 0.827383 l 0.165476,0.91931 h 0.04903 q 0.288051,-0.4903 0.808996,-0.76609 0.527074,-0.2758 1.176722,-0.2758 1.575092,0 2.059264,1.13995 h 0.04903 q 0.30031,-0.52707 0.870284,-0.83351 0.569975,-0.30644 1.299298,-0.30644 1.139949,0 1.703795,0.58836 0.569975,0.58223 0.569975,1.86927 v 4.38207 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5438"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -27.798611,-454.07268 q -0.655777,0 -1.201237,-0.23902 -0.539331,-0.24515 -0.907057,-0.74771 h -0.07355 q 0.07355,0.58836 0.07355,1.11544 v 2.76407 h -1.017374 v -9.73247 h 0.827383 l 0.140961,0.91931 h 0.04903 q 0.392241,-0.55159 0.913186,-0.79674 0.520944,-0.24515 1.195108,-0.24515 1.33607,0 2.059264,0.91319 0.729323,0.91318 0.729323,2.56182 0,1.65476 -0.74158,2.57408 -0.735452,0.91318 -2.047007,0.91318 z m -0.14709,-6.09811 q -1.029632,0 -1.489289,0.56997 -0.459657,0.56998 -0.471915,1.81411 v 0.22677 q 0,1.41574 0.471915,2.02862 0.471915,0.60675 1.513804,0.60675 0.870284,0 1.360585,-0.70481 0.49643,-0.70481 0.49643,-1.94282 0,-1.2564 -0.49643,-1.92443 -0.490301,-0.67416 -1.3851,-0.67416 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5440"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -22.209181,-454.19525 h -1.017375 v -9.53635 h 1.017375 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5442"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -15.908816,-454.19525 -0.202249,-0.95609 h -0.04903 q -0.502559,0.63126 -1.005117,0.85803 -0.49643,0.22063 -1.244139,0.22063 -0.998988,0 -1.568963,-0.51481 -0.563846,-0.51482 -0.563846,-1.46478 0,-2.03474 3.254373,-2.13281 l 1.139949,-0.0368 v -0.41675 q 0,-0.79061 -0.34321,-1.16447 -0.337082,-0.37998 -1.084791,-0.37998 -0.83964,0 -1.899916,0.51481 l -0.312567,-0.77835 q 0.49643,-0.26966 1.084791,-0.42288 0.59449,-0.15322 1.188979,-0.15322 1.201238,0 1.777341,0.5332 0.582233,0.5332 0.582233,1.70992 v 4.58432 h -0.753838 z m -2.298286,-0.71707 q 0.949958,0 1.489289,-0.52094 0.54546,-0.52095 0.54546,-1.45865 v -0.60674 l -1.017374,0.0429 q -1.213495,0.0429 -1.752826,0.37998 -0.533202,0.33095 -0.533202,1.03576 0,0.55159 0.330953,0.83964 0.337082,0.28805 0.9377,0.28805 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5444"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -10.883226,-454.91232 q 0.269665,0 0.520945,-0.0368 0.251279,-0.0429 0.3983691,-0.0858 v 0.77835 q -0.1654761,0.0797 -0.4903011,0.1287 -0.318695,0.0552 -0.576103,0.0552 -1.948947,0 -1.948947,-2.05313 v -3.99595 h -0.962215 v -0.4903 l 0.962215,-0.42289 0.429014,-1.43413 h 0.588361 v 1.55671 h 1.948946 v 0.79061 h -1.948946 v 3.95305 q 0,0.60674 0.288052,0.93157 0.288051,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5446"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -5.7779734,-454.07268 q -1.4892891,0 -2.3534444,-0.90705 -0.8580266,-0.90706 -0.8580266,-2.51892 0,-1.62413 0.7967389,-2.58021 0.8028678,-0.95609 2.1511953,-0.95609 1.2625249,0 1.9979762,0.83351 0.7354514,0.82739 0.7354514,2.18797 v 0.64352 h -4.6272149 q 0.030644,1.18285 0.5944899,1.79573 0.5699748,0.61287 1.5996067,0.61287 1.0847908,0 2.1450665,-0.45352 v 0.90705 q -0.539331,0.23289 -1.0235031,0.33095 -0.4780434,0.10419 -1.1583359,0.10419 z m -0.2757943,-6.11037 q -0.8089965,0 -1.2931687,0.52707 -0.4780434,0.52708 -0.563846,1.45865 h 3.5117803 q 0,-0.96222 -0.4290133,-1.47091 -0.4290133,-0.51481 -1.2257523,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5448"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 4.7083362,-460.12176 H 2.9984118 v 5.92651 H 1.9810374 v -5.92651 H 0.77980012 v -0.45966 l 1.20123728,-0.36773 v -0.37385 q 0,-2.47602 2.1634528,-2.47602 0.5332022,0 1.2502673,0.21451 l -0.2635367,0.81512 q -0.5883611,-0.18999 -1.0051169,-0.18999 -0.5761036,0 -0.8518979,0.38611 -0.2757942,0.37998 -0.2757942,1.22575 v 0.43515 h 1.7099244 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5450"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 11.744154,-457.55994 q 0,1.64251 -0.827383,2.56795 -0.827383,0.91931 -2.2860281,0.91931 -0.9009279,0 -1.5996067,-0.42288 -0.6986788,-0.42289 -1.078662,-1.2135 -0.3799832,-0.79061 -0.3799832,-1.85088 0,-1.64251 0.821254,-2.5557 0.821254,-0.91931 2.2798993,-0.91931 1.4096147,0 2.2369977,0.9377 0.833512,0.9377 0.833512,2.53731 z m -5.1175161,0 q 0,1.28704 0.514816,1.9612 0.514816,0.67417 1.5138041,0.67417 0.9989881,0 1.513804,-0.66804 0.520945,-0.67416 0.520945,-1.96733 0,-1.28091 -0.520945,-1.94282 -0.5148159,-0.66803 -1.5260615,-0.66803 -0.9989882,0 -1.5076754,0.65577 -0.5086872,0.65578 -0.5086872,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5452"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 14.538869,-454.19525 h -1.017374 v -9.53635 h 1.017374 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5454"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 17.725828,-454.19525 h -1.017375 v -9.53635 h 1.017375 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5456"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 25.69322,-457.55994 q 0,1.64251 -0.827383,2.56795 -0.827383,0.91931 -2.286028,0.91931 -0.900928,0 -1.599607,-0.42288 -0.698678,-0.42289 -1.078662,-1.2135 -0.379983,-0.79061 -0.379983,-1.85088 0,-1.64251 0.821254,-2.5557 0.821254,-0.91931 2.279899,-0.91931 1.409616,0 2.236998,0.9377 0.833512,0.9377 0.833512,2.53731 z m -5.117516,0 q 0,1.28704 0.514816,1.9612 0.514816,0.67417 1.513804,0.67417 0.998988,0 1.513804,-0.66804 0.520945,-0.67416 0.520945,-1.96733 0,-1.28091 -0.520945,-1.94282 -0.514816,-0.66803 -1.526061,-0.66803 -0.998988,0 -1.507676,0.65577 -0.508687,0.65578 -0.508687,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5458"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 32.955803,-454.19525 -1.231881,-3.9408 q -0.116447,-0.36159 -0.435142,-1.6425 h -0.04903 q -0.24515,1.07253 -0.429013,1.65476 l -1.268654,3.92854 h -1.176722 l -1.832499,-6.71712 h 1.066404 q 0.649649,2.53117 0.986731,3.85499 0.34321,1.32381 0.39224,1.78347 h 0.04903 q 0.06742,-0.34934 0.214506,-0.90093 0.153219,-0.55772 0.263537,-0.88254 l 1.231881,-3.85499 h 1.103177 l 1.201237,3.85499 q 0.343211,1.05414 0.465786,1.77121 h 0.04903 q 0.02452,-0.22064 0.128704,-0.68029 0.110318,-0.45966 1.280911,-4.94591 h 1.054147 l -1.857014,6.71712 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5460"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 41.560584,-456.02775 q 0,0.9377 -0.698679,1.44639 -0.698679,0.50868 -1.961203,0.50868 -1.33607,0 -2.083779,-0.42288 v -0.94383 q 0.484172,0.24515 1.03576,0.38611 0.557718,0.14096 1.072534,0.14096 0.796739,0 1.225752,-0.25128 0.429013,-0.2574 0.429013,-0.77835 0,-0.39224 -0.34321,-0.66803 -0.337082,-0.28193 -1.323813,-0.66191 -0.9377,-0.34934 -1.33607,-0.60675 -0.392241,-0.26353 -0.588361,-0.59449 -0.189992,-0.33095 -0.189992,-0.79061 0,-0.82125 0.668035,-1.29317 0.668035,-0.47804 1.8325,-0.47804 1.084791,0 2.120551,0.44127 l -0.361596,0.82738 q -1.011246,-0.41675 -1.8325,-0.41675 -0.723194,0 -1.09092,0.22676 -0.367725,0.22677 -0.367725,0.62514 0,0.26966 0.134832,0.45965 0.140962,0.19 0.4474,0.3616 0.306438,0.17161 1.176722,0.49643 1.195109,0.43514 1.611864,0.87641 0.422885,0.44127 0.422885,1.10931 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5462"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 48.639303,-454.91232 q 0.269666,0 0.520945,-0.0368 0.251279,-0.0429 0.39837,-0.0858 v 0.77835 q -0.165477,0.0797 -0.490301,0.1287 -0.318696,0.0552 -0.576104,0.0552 -1.948946,0 -1.948946,-2.05313 v -3.99595 h -0.962216 v -0.4903 l 0.962216,-0.42289 0.429013,-1.43413 h 0.588361 v 1.55671 h 1.948947 v 0.79061 h -1.948947 v 3.95305 q 0,0.60674 0.288052,0.93157 0.288052,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5464"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 55.503518,-454.19525 v -4.34529 q 0,-0.82126 -0.373854,-1.22576 -0.373855,-0.40449 -1.170594,-0.40449 -1.060275,0 -1.550576,0.5761 -0.484172,0.5761 -0.484172,1.88766 v 3.51178 h -1.017375 v -9.53635 h 1.017375 v 2.88664 q 0,0.52095 -0.04903,0.86416 h 0.06129 q 0.300309,-0.48417 0.851898,-0.75997 0.557717,-0.28192 1.268654,-0.28192 1.231881,0 1.844757,0.58836 0.619005,0.58223 0.619005,1.85701 v 4.38207 h -1.017375 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5466"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 61.442287,-454.07268 q -1.489289,0 -2.353444,-0.90705 -0.858027,-0.90706 -0.858027,-2.51892 0,-1.62413 0.796739,-2.58021 0.802868,-0.95609 2.151195,-0.95609 1.262525,0 1.997977,0.83351 0.735451,0.82739 0.735451,2.18797 v 0.64352 h -4.627215 q 0.03064,1.18285 0.59449,1.79573 0.569975,0.61287 1.599607,0.61287 1.084791,0 2.145066,-0.45352 v 0.90705 q -0.539331,0.23289 -1.023503,0.33095 -0.478043,0.10419 -1.158336,0.10419 z m -0.275794,-6.11037 q -0.808997,0 -1.293169,0.52707 -0.478043,0.52708 -0.563846,1.45865 h 3.511781 q 0,-0.96222 -0.429014,-1.47091 -0.429013,-0.51481 -1.225752,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5468"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 74.110428,-456.57934 q 0,1.18285 -0.858026,1.84476 -0.858027,0.6619 -2.32893,0.6619 -1.593478,0 -2.451504,-0.41062 v -1.00512 q 0.551588,0.23289 1.201237,0.36773 0.649649,0.13483 1.28704,0.13483 1.041889,0 1.568963,-0.39224 0.527073,-0.39837 0.527073,-1.10318 0,-0.46579 -0.189991,-0.75997 -0.183863,-0.30031 -0.625134,-0.55158 -0.435142,-0.25128 -1.329941,-0.56998 -1.250268,-0.4474 -1.789599,-1.06027 -0.533202,-0.61288 -0.533202,-1.59961 0,-1.03576 0.778353,-1.64864 0.778353,-0.61287 2.059264,-0.61287 1.33607,0 2.457633,0.4903 l -0.324824,0.90705 q -1.109306,-0.46578 -2.157324,-0.46578 -0.827383,0 -1.293169,0.35547 -0.465786,0.35546 -0.465786,0.98673 0,0.46578 0.171606,0.76609 0.171605,0.29418 0.576103,0.54546 0.410627,0.24515 1.250267,0.54546 1.409616,0.50256 1.936689,1.07866 0.533202,0.57611 0.533202,1.49542 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5470"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 77.959296,-454.91232 q 0.269665,0 0.520944,-0.0368 0.251279,-0.0429 0.39837,-0.0858 v 0.77835 q -0.165477,0.0797 -0.490301,0.1287 -0.318696,0.0552 -0.576104,0.0552 -1.948946,0 -1.948946,-2.05313 v -3.99595 h -0.962215 v -0.4903 l 0.962215,-0.42289 0.429013,-1.43413 h 0.588361 v 1.55671 h 1.948947 v 0.79061 h -1.948947 v 3.95305 q 0,0.60674 0.288052,0.93157 0.288052,0.32482 0.790611,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5472"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 81.244314,-454.19525 h -1.017375 v -6.71712 h 1.017375 z m -1.103177,-8.53737 q 0,-0.34934 0.171605,-0.50868 0.171605,-0.16548 0.429013,-0.16548 0.245151,0 0.422885,0.16548 0.177734,0.16547 0.177734,0.50868 0,0.34321 -0.177734,0.51482 -0.177734,0.16548 -0.422885,0.16548 -0.257408,0 -0.429013,-0.16548 -0.171605,-0.17161 -0.171605,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5474"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 86.098287,-454.07268 q -1.458645,0 -2.261512,-0.8948 -0.796739,-0.90092 -0.796739,-2.54343 0,-1.68541 0.808996,-2.60473 0.815125,-0.91931 2.316672,-0.91931 0.484172,0 0.968344,0.10419 0.484172,0.10419 0.759967,0.24515 l -0.312567,0.86416 q -0.337082,-0.13484 -0.735452,-0.22064 -0.398369,-0.0919 -0.704807,-0.0919 -2.047006,0 -2.047006,2.61085 0,1.23801 0.496429,1.89992 0.502559,0.6619 1.48316,0.6619 0.839641,0 1.722182,-0.36159 v 0.90092 q -0.674163,0.34934 -1.697667,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5476"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 90.400681,-457.63349 q 0.263537,-0.37385 0.802868,-0.9806 l 2.169581,-2.29828 h 1.207366 l -2.72117,2.86213 2.911162,3.85499 h -1.231881 l -2.371831,-3.1747 -0.766095,0.66191 v 2.51279 h -1.005117 v -9.53635 h 1.005117 v 5.05622 q 0,0.33709 -0.04903,1.04189 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5478"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 98.827724,-454.07268 q -1.489289,0 -2.353444,-0.90705 -0.858027,-0.90706 -0.858027,-2.51892 0,-1.62413 0.796739,-2.58021 0.802868,-0.95609 2.151195,-0.95609 1.262525,0 1.997973,0.83351 0.73546,0.82739 0.73546,2.18797 v 0.64352 H 96.6704 q 0.03064,1.18285 0.59449,1.79573 0.569975,0.61287 1.599607,0.61287 1.084791,0 2.145063,-0.45352 v 0.90705 q -0.53933,0.23289 -1.0235,0.33095 -0.478043,0.10419 -1.158336,0.10419 z m -0.275794,-6.11037 q -0.808997,0 -1.293169,0.52707 -0.478043,0.52708 -0.563846,1.45865 h 3.511785 q 0,-0.96222 -0.429018,-1.47091 -0.429013,-0.51481 -1.225752,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5480"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 106.09032,-461.03495 q 0.4474,0 0.80286,0.0735 l -0.14096,0.94383 q -0.41675,-0.0919 -0.73545,-0.0919 -0.81512,0 -1.39736,0.66191 -0.5761,0.66191 -0.5761,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11644,1.24413 h 0.049 q 0.37386,-0.65577 0.90093,-1.01124 0.52707,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5482"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 112.1394,-462.35263 q -1.47703,0 -2.33506,0.98673 -0.8519,0.9806 -0.8519,2.69052 0,1.75896 0.82126,2.72117 0.82738,0.95609 2.35344,0.95609 0.9377,0 2.13894,-0.33708 v 0.91318 q -0.93157,0.34934 -2.29828,0.34934 -1.97959,0 -3.05826,-1.20123 -1.07253,-1.20124 -1.07253,-3.41372 0,-1.3851 0.51482,-2.42699 0.52094,-1.04189 1.49541,-1.60574 0.98061,-0.56384 2.30442,-0.56384 1.40961,0 2.46376,0.51481 l -0.44127,0.8948 q -1.01737,-0.47804 -2.03475,-0.47804 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5484"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 121.86575,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82738,0.91931 -2.28603,0.91931 -0.90093,0 -1.59961,-0.42288 -0.69868,-0.42289 -1.07866,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82126,-0.91931 2.2799,-0.91931 1.40962,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11751,0 q 0,1.28704 0.51481,1.9612 0.51482,0.67417 1.51381,0.67417 0.99898,0 1.5138,-0.66804 0.52094,-0.67416 0.52094,-1.96733 0,-1.28091 -0.52094,-1.94282 -0.51482,-0.66803 -1.52606,-0.66803 -0.99899,0 -1.50768,0.65577 -0.50868,0.65578 -0.50868,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5486"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 128.23965,-454.19525 v -4.34529 q 0,-0.82126 -0.37386,-1.22576 -0.37385,-0.40449 -1.17059,-0.40449 -1.05415,0 -1.54445,0.56997 -0.4903,0.56998 -0.4903,1.88153 v 3.52404 h -1.01737 v -6.71712 h 0.82738 l 0.16548,0.91931 h 0.049 q 0.31256,-0.49643 0.87641,-0.76609 0.56385,-0.2758 1.2564,-0.2758 1.21349,0 1.82637,0.58836 0.61287,0.58223 0.61287,1.86927 v 4.38207 h -1.01737 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5488"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 135.67385,-456.02775 q 0,0.9377 -0.69868,1.44639 -0.69868,0.50868 -1.9612,0.50868 -1.33607,0 -2.08378,-0.42288 v -0.94383 q 0.48417,0.24515 1.03576,0.38611 0.55772,0.14096 1.07253,0.14096 0.79674,0 1.22575,-0.25128 0.42902,-0.2574 0.42902,-0.77835 0,-0.39224 -0.34321,-0.66803 -0.33708,-0.28193 -1.32381,-0.66191 -0.93771,-0.34934 -1.33607,-0.60675 -0.39225,-0.26353 -0.58837,-0.59449 -0.18999,-0.33095 -0.18999,-0.79061 0,-0.82125 0.66804,-1.29317 0.66803,-0.47804 1.8325,-0.47804 1.08479,0 2.12055,0.44127 l -0.3616,0.82738 q -1.01124,-0.41675 -1.8325,-0.41675 -0.72319,0 -1.09092,0.22676 -0.36772,0.22677 -0.36772,0.62514 0,0.26966 0.13483,0.45965 0.14096,0.19 0.4474,0.3616 0.30644,0.17161 1.17672,0.49643 1.19511,0.43514 1.61187,0.87641 0.42288,0.44127 0.42288,1.10931 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5490"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 139.49206,-454.91232 q 0.26966,0 0.52094,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.4903,0.1287 -0.3187,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96222 v -0.4903 l 0.96222,-0.42289 0.42901,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28806,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5492"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 144.82408,-461.03495 q 0.4474,0 0.80287,0.0735 l -0.14096,0.94383 q -0.41676,-0.0919 -0.73545,-0.0919 -0.81513,0 -1.39736,0.66191 -0.57611,0.66191 -0.57611,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11645,1.24413 h 0.049 q 0.37385,-0.65577 0.90092,-1.01124 0.52708,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5494"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 147.83943,-460.91237 v 4.35755 q 0,0.82125 0.37385,1.22575 0.37386,0.4045 1.1706,0.4045 1.05414,0 1.53832,-0.57611 0.4903,-0.5761 0.4903,-1.88153 v -3.53016 h 1.01737 v 6.71712 h -0.83964 l -0.14709,-0.90093 h -0.0552 q -0.31257,0.49643 -0.87028,0.75997 -0.55159,0.26353 -1.26253,0.26353 -1.22575,0 -1.83863,-0.58223 -0.60674,-0.58223 -0.60674,-1.86314 v -4.39432 h 1.02963 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5496"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 157.26546,-454.07268 q -1.45864,0 -2.26151,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81512,-0.91931 2.31667,-0.91931 0.48417,0 0.96834,0.10419 0.48418,0.10419 0.75997,0.24515 l -0.31257,0.86416 q -0.33708,-0.13484 -0.73545,-0.22064 -0.39837,-0.0919 -0.70481,-0.0919 -2.047,0 -2.047,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69767,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5498"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 162.73232,-454.91232 q 0.26967,0 0.52095,-0.0368 0.25127,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.49031,0.1287 -0.31869,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96221 v -0.4903 l 0.96221,-0.42289 0.42902,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28805,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5500"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 170.79777,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82738,0.91931 -2.28603,0.91931 -0.90093,0 -1.5996,-0.42288 -0.69868,-0.42289 -1.07867,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82126,-0.91931 2.2799,-0.91931 1.40962,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11751,0 q 0,1.28704 0.51481,1.9612 0.51482,0.67417 1.51381,0.67417 0.99899,0 1.5138,-0.66804 0.52095,-0.67416 0.52095,-1.96733 0,-1.28091 -0.52095,-1.94282 -0.51481,-0.66803 -1.52606,-0.66803 -0.99899,0 -1.50768,0.65577 -0.50868,0.65578 -0.50868,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5502"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 175.6395,-461.03495 q 0.44739,0 0.80286,0.0735 l -0.14096,0.94383 q -0.41675,-0.0919 -0.73545,-0.0919 -0.81513,0 -1.39736,0.66191 -0.5761,0.66191 -0.5761,1.64864 v 3.60371 h -1.01738 v -6.71712 h 0.83964 l 0.11645,1.24413 h 0.049 q 0.37386,-0.65577 0.90093,-1.01124 0.52707,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5504"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 182.90822,-456.57934 q 0,1.18285 -0.85803,1.84476 -0.85802,0.6619 -2.32893,0.6619 -1.59348,0 -2.4515,-0.41062 v -1.00512 q 0.55159,0.23289 1.20124,0.36773 0.64964,0.13483 1.28704,0.13483 1.04188,0 1.56896,-0.39224 0.52707,-0.39837 0.52707,-1.10318 0,-0.46579 -0.18999,-0.75997 -0.18386,-0.30031 -0.62513,-0.55158 -0.43515,-0.25128 -1.32994,-0.56998 -1.25027,-0.4474 -1.7896,-1.06027 -0.53321,-0.61288 -0.53321,-1.59961 0,-1.03576 0.77836,-1.64864 0.77835,-0.61287 2.05926,-0.61287 1.33607,0 2.45763,0.4903 l -0.32482,0.90705 q -1.10931,-0.46578 -2.15732,-0.46578 -0.82739,0 -1.29317,0.35547 -0.46579,0.35546 -0.46579,0.98673 0,0.46578 0.17161,0.76609 0.1716,0.29418 0.5761,0.54546 0.41063,0.24515 1.25027,0.54546 1.40961,0.50256 1.93669,1.07866 0.5332,0.57611 0.5332,1.49542 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5506"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 187.71314,-454.07268 q -0.65578,0 -1.20123,-0.23902 -0.53934,-0.24515 -0.90706,-0.74771 h -0.0736 q 0.0736,0.58836 0.0736,1.11544 v 2.76407 h -1.01738 v -9.73247 h 0.82739 l 0.14096,0.91931 h 0.049 q 0.39224,-0.55159 0.91318,-0.79674 0.52095,-0.24515 1.19511,-0.24515 1.33607,0 2.05927,0.91319 0.72932,0.91318 0.72932,2.56182 0,1.65476 -0.74158,2.57408 -0.73545,0.91318 -2.04701,0.91318 z m -0.14709,-6.09811 q -1.02963,0 -1.48929,0.56997 -0.45965,0.56998 -0.47191,1.81411 v 0.22677 q 0,1.41574 0.47191,2.02862 0.47192,0.60675 1.51381,0.60675 0.87028,0 1.36058,-0.70481 0.49643,-0.70481 0.49643,-1.94282 0,-1.2564 -0.49643,-1.92443 -0.4903,-0.67416 -1.3851,-0.67416 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5508"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 195.12281,-454.07268 q -1.48929,0 -2.35344,-0.90705 -0.85803,-0.90706 -0.85803,-2.51892 0,-1.62413 0.79674,-2.58021 0.80287,-0.95609 2.1512,-0.95609 1.26252,0 1.99797,0.83351 0.73545,0.82739 0.73545,2.18797 v 0.64352 h -4.62721 q 0.0306,1.18285 0.59449,1.79573 0.56997,0.61287 1.59961,0.61287 1.08479,0 2.14506,-0.45352 v 0.90705 q -0.53933,0.23289 -1.0235,0.33095 -0.47804,0.10419 -1.15834,0.10419 z m -0.27579,-6.11037 q -0.809,0 -1.29317,0.52707 -0.47804,0.52708 -0.56385,1.45865 h 3.51179 q 0,-0.96222 -0.42902,-1.47091 -0.42901,-0.51481 -1.22575,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5510"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 202.00542,-454.07268 q -1.45864,0 -2.26151,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81512,-0.91931 2.31667,-0.91931 0.48417,0 0.96834,0.10419 0.48418,0.10419 0.75997,0.24515 l -0.31257,0.86416 q -0.33708,-0.13484 -0.73545,-0.22064 -0.39837,-0.0919 -0.70481,-0.0919 -2.047,0 -2.047,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69767,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5512"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 212.694,-454.19525 -0.20225,-0.95609 h -0.049 q -0.50256,0.63126 -1.00512,0.85803 -0.49643,0.22063 -1.24414,0.22063 -0.99899,0 -1.56896,-0.51481 -0.56385,-0.51482 -0.56385,-1.46478 0,-2.03474 3.25438,-2.13281 l 1.13995,-0.0368 v -0.41675 q 0,-0.79061 -0.34321,-1.16447 -0.33709,-0.37998 -1.0848,-0.37998 -0.83964,0 -1.89991,0.51481 l -0.31257,-0.77835 q 0.49643,-0.26966 1.08479,-0.42288 0.59449,-0.15322 1.18898,-0.15322 1.20124,0 1.77734,0.5332 0.58224,0.5332 0.58224,1.70992 v 4.58432 h -0.75384 z m -2.29829,-0.71707 q 0.94996,0 1.48929,-0.52094 0.54546,-0.52095 0.54546,-1.45865 v -0.60674 l -1.01737,0.0429 q -1.2135,0.0429 -1.75283,0.37998 -0.5332,0.33095 -0.5332,1.03576 0,0.55159 0.33095,0.83964 0.33708,0.28805 0.9377,0.28805 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5514"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 217.71958,-454.91232 q 0.26967,0 0.52094,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16547,0.0797 -0.4903,0.1287 -0.31869,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96221 v -0.4903 l 0.96221,-0.42289 0.42902,-1.43413 h 0.58836 v 1.55671 h 1.94894 v 0.79061 h -1.94894 v 3.95305 q 0,0.60674 0.28805,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5516"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 228.74522,-460.91237 v 0.64352 l -1.24414,0.14709 q 0.17161,0.2145 0.30644,0.56384 0.13483,0.34321 0.13483,0.77835 0,0.98674 -0.67416,1.5751 -0.67416,0.58836 -1.85089,0.58836 -0.30031,0 -0.56384,-0.049 -0.64965,0.34321 -0.64965,0.86415 0,0.2758 0.22676,0.41063 0.22677,0.1287 0.77836,0.1287 h 1.18898 q 1.09091,0 1.67315,0.45966 0.58836,0.45966 0.58836,1.33607 0,1.11544 -0.8948,1.69767 -0.8948,0.58836 -2.61085,0.58836 -1.31769,0 -2.03475,-0.4903 -0.71094,-0.4903 -0.71094,-1.3851 0,-0.61288 0.39224,-1.06028 0.39224,-0.4474 1.10318,-0.60674 -0.25741,-0.11645 -0.43514,-0.3616 -0.17161,-0.24515 -0.17161,-0.56998 0,-0.36772 0.19612,-0.64352 0.19612,-0.27579 0.61901,-0.5332 -0.52095,-0.21451 -0.8519,-0.72932 -0.32483,-0.51482 -0.32483,-1.17672 0,-1.10318 0.66191,-1.69767 0.66191,-0.60062 1.8754,-0.60062 0.52708,0 0.94996,0.12258 h 2.3228 z m -5.35654,7.84481 q 0,0.54546 0.45966,0.82738 0.45966,0.28193 1.31768,0.28193 1.28092,0 1.89379,-0.38612 0.61901,-0.37998 0.61901,-1.03576 0,-0.54546 -0.33709,-0.75996 -0.33708,-0.20838 -1.26865,-0.20838 h -1.21962 q -0.69255,0 -1.07866,0.33095 -0.38612,0.33096 -0.38612,0.94996 z m 0.55159,-5.69362 q 0,0.70481 0.39837,1.06641 0.39837,0.36159 1.10931,0.36159 1.48929,0 1.48929,-1.44639 0,-1.5138 -1.50768,-1.5138 -0.71706,0 -1.10318,0.38611 -0.38611,0.38611 -0.38611,1.14608 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5518"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 231.15383,-454.19525 h -1.01738 v -6.71712 h 1.01738 z m -1.10318,-8.53737 q 0,-0.34934 0.17161,-0.50868 0.1716,-0.16548 0.42901,-0.16548 0.24515,0 0.42289,0.16548 0.17773,0.16547 0.17773,0.50868 0,0.34321 -0.17773,0.51482 -0.17774,0.16548 -0.42289,0.16548 -0.25741,0 -0.42901,-0.16548 -0.17161,-0.17161 -0.17161,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5520"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 235.49299,-454.91232 q 0.26966,0 0.52094,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.4903,0.1287 -0.3187,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96222 v -0.4903 l 0.96222,-0.42289 0.42901,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28806,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5522"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 242.3572,-454.19525 v -4.34529 q 0,-0.82126 -0.37385,-1.22576 -0.37386,-0.40449 -1.1706,-0.40449 -1.06027,0 -1.55057,0.5761 -0.48417,0.5761 -0.48417,1.88766 v 3.51178 h -1.01738 v -9.53635 h 1.01738 v 2.88664 q 0,0.52095 -0.049,0.86416 h 0.0613 q 0.30031,-0.48417 0.8519,-0.75997 0.55772,-0.28192 1.26865,-0.28192 1.23189,0 1.84476,0.58836 0.61901,0.58223 0.61901,1.85701 v 4.38207 h -1.01738 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5524"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 246.41444,-460.91237 v 4.35755 q 0,0.82125 0.37386,1.22575 0.37385,0.4045 1.17059,0.4045 1.05415,0 1.53832,-0.57611 0.4903,-0.5761 0.4903,-1.88153 v -3.53016 h 1.01737 v 6.71712 h -0.83964 l -0.14709,-0.90093 h -0.0552 q -0.31256,0.49643 -0.87028,0.75997 -0.55159,0.26353 -1.26253,0.26353 -1.22575,0 -1.83862,-0.58223 -0.60675,-0.58223 -0.60675,-1.86314 v -4.39432 h 1.02963 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5526"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 256.28175,-461.02269 q 1.32381,0 2.05313,0.90705 0.73545,0.90093 0.73545,2.5557 0,1.65476 -0.74158,2.57408 -0.73545,0.91318 -2.047,0.91318 -0.65578,0 -1.20124,-0.23902 -0.53933,-0.24515 -0.90706,-0.74771 h -0.0735 l -0.21451,0.86416 h -0.72932 v -9.53635 h 1.01737 v 2.31667 q 0,0.77835 -0.049,1.39736 h 0.049 q 0.71094,-1.00512 2.1083,-1.00512 z m -0.14709,0.8519 q -1.04189,0 -1.50155,0.60061 -0.45966,0.59449 -0.45966,2.01024 0,1.41574 0.47192,2.02862 0.47191,0.60675 1.5138,0.60675 0.9377,0 1.39736,-0.6803 0.45966,-0.68642 0.45966,-1.96733 0,-1.31155 -0.45966,-1.95507 -0.45966,-0.64352 -1.42187,-0.64352 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5528"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 260.70671,-454.8449 q 0,-0.41063 0.18386,-0.61901 0.19,-0.2145 0.53933,-0.2145 0.35547,0 0.55159,0.2145 0.20225,0.20838 0.20225,0.61901 0,0.39837 -0.20225,0.61288 -0.20225,0.2145 -0.55159,0.2145 -0.31256,0 -0.52094,-0.18999 -0.20225,-0.19612 -0.20225,-0.63739 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5530"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 266.87224,-454.07268 q -1.45864,0 -2.26151,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81512,-0.91931 2.31667,-0.91931 0.48417,0 0.96834,0.10419 0.48418,0.10419 0.75997,0.24515 l -0.31257,0.86416 q -0.33708,-0.13484 -0.73545,-0.22064 -0.39837,-0.0919 -0.7048,-0.0919 -2.04701,0 -2.04701,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69767,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5532"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 275.96731,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82738,0.91931 -2.28603,0.91931 -0.90093,0 -1.5996,-0.42288 -0.69868,-0.42289 -1.07867,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82126,-0.91931 2.2799,-0.91931 1.40962,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11751,0 q 0,1.28704 0.51481,1.9612 0.51482,0.67417 1.51381,0.67417 0.99899,0 1.5138,-0.66804 0.52095,-0.67416 0.52095,-1.96733 0,-1.28091 -0.52095,-1.94282 -0.51481,-0.66803 -1.52606,-0.66803 -0.99899,0 -1.50768,0.65577 -0.50868,0.65578 -0.50868,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5534"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 286.30655,-454.19525 v -4.36981 q 0,-0.80287 -0.34321,-1.20124 -0.34321,-0.40449 -1.06641,-0.40449 -0.94995,0 -1.40348,0.54546 -0.45353,0.54546 -0.45353,1.67928 v 3.7508 h -1.01737 v -4.36981 q 0,-0.80287 -0.34322,-1.20124 -0.34321,-0.40449 -1.07253,-0.40449 -0.95609,0 -1.40348,0.5761 -0.44128,0.56997 -0.44128,1.8754 v 3.52404 h -1.01737 v -6.71712 h 0.82738 l 0.16548,0.91931 h 0.049 q 0.28805,-0.4903 0.809,-0.76609 0.52707,-0.2758 1.17672,-0.2758 1.57509,0 2.05926,1.13995 h 0.049 q 0.30031,-0.52707 0.87029,-0.83351 0.56997,-0.30644 1.29929,-0.30644 1.13995,0 1.7038,0.58836 0.56997,0.58223 0.56997,1.86927 v 4.38207 h -1.01737 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5536"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 292.81529,-463.1555 -3.34017,8.96025 h -1.01738 l 3.34018,-8.96025 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5538"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 296.19224,-454.91232 q 0.26966,0 0.52094,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.4903,0.1287 -0.3187,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96222 v -0.4903 l 0.96222,-0.42289 0.42901,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28806,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5540"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 301.2975,-454.07268 q -1.48929,0 -2.35345,-0.90705 -0.85802,-0.90706 -0.85802,-2.51892 0,-1.62413 0.79673,-2.58021 0.80287,-0.95609 2.1512,-0.95609 1.26252,0 1.99798,0.83351 0.73545,0.82739 0.73545,2.18797 v 0.64352 h -4.62722 q 0.0306,1.18285 0.59449,1.79573 0.56998,0.61287 1.59961,0.61287 1.08479,0 2.14507,-0.45352 v 0.90705 q -0.53934,0.23289 -1.02351,0.33095 -0.47804,0.10419 -1.15833,0.10419 z m -0.2758,-6.11037 q -0.80899,0 -1.29317,0.52707 -0.47804,0.52708 -0.56384,1.45865 h 3.51178 q 0,-0.96222 -0.42902,-1.47091 -0.42901,-0.51481 -1.22575,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5542"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 308.56009,-461.03495 q 0.4474,0 0.80287,0.0735 l -0.14097,0.94383 q -0.41675,-0.0919 -0.73545,-0.0919 -0.81512,0 -1.39735,0.66191 -0.57611,0.66191 -0.57611,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11644,1.24413 h 0.049 q 0.37386,-0.65577 0.90093,-1.01124 0.52708,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5544"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 311.63671,-454.19525 h -1.01738 v -6.71712 h 1.01738 z m -1.10318,-8.53737 q 0,-0.34934 0.17161,-0.50868 0.1716,-0.16548 0.42901,-0.16548 0.24515,0 0.42288,0.16548 0.17774,0.16547 0.17774,0.50868 0,0.34321 -0.17774,0.51482 -0.17773,0.16548 -0.42288,0.16548 -0.25741,0 -0.42901,-0.16548 -0.17161,-0.17161 -0.17161,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5546"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 318.40286,-454.19525 v -4.34529 q 0,-0.82126 -0.37386,-1.22576 -0.37385,-0.40449 -1.17059,-0.40449 -1.05415,0 -1.54445,0.56997 -0.4903,0.56998 -0.4903,1.88153 v 3.52404 h -1.01737 v -6.71712 h 0.82738 l 0.16547,0.91931 h 0.049 q 0.31257,-0.49643 0.87642,-0.76609 0.56384,-0.2758 1.25639,-0.2758 1.2135,0 1.82637,0.58836 0.61288,0.58223 0.61288,1.86927 v 4.38207 h -1.01737 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5548"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 320.68888,-451.1799 q -0.58223,0 -0.94383,-0.15322 v -0.82738 q 0.42289,0.12257 0.83352,0.12257 0.47804,0 0.69867,-0.26353 0.22677,-0.25741 0.22677,-0.79061 v -7.8203 h 1.01737 v 7.74675 q 0,1.98572 -1.8325,1.98572 z m 0.72933,-11.55272 q 0,-0.34934 0.1716,-0.50868 0.17161,-0.16548 0.42901,-0.16548 0.24515,0 0.42289,0.16548 0.17773,0.16547 0.17773,0.50868 0,0.34321 -0.17773,0.51482 -0.17774,0.16548 -0.42289,0.16548 -0.2574,0 -0.42901,-0.16548 -0.1716,-0.17161 -0.1716,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5550"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 330.4888,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82739,0.91931 -2.28603,0.91931 -0.90093,0 -1.59961,-0.42288 -0.69868,-0.42289 -1.07866,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82125,-0.91931 2.2799,-0.91931 1.40961,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11752,0 q 0,1.28704 0.51482,1.9612 0.51481,0.67417 1.5138,0.67417 0.99899,0 1.51381,-0.66804 0.52094,-0.67416 0.52094,-1.96733 0,-1.28091 -0.52094,-1.94282 -0.51482,-0.66803 -1.52607,-0.66803 -0.99898,0 -1.50767,0.65577 -0.50869,0.65578 -0.50869,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5552"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 333.27124,-457.63349 q 0.26354,-0.37385 0.80287,-0.9806 l 2.16958,-2.29828 h 1.20737 l -2.72117,2.86213 2.91116,3.85499 h -1.23188 l -2.37183,-3.1747 -0.7661,0.66191 v 2.51279 h -1.00512 v -9.53635 h 1.00512 v 5.05622 q 0,0.33709 -0.049,1.04189 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5554"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 341.69828,-454.07268 q -1.48929,0 -2.35344,-0.90705 -0.85803,-0.90706 -0.85803,-2.51892 0,-1.62413 0.79674,-2.58021 0.80287,-0.95609 2.1512,-0.95609 1.26252,0 1.99797,0.83351 0.73545,0.82739 0.73545,2.18797 v 0.64352 h -4.62721 q 0.0306,1.18285 0.59449,1.79573 0.56997,0.61287 1.59961,0.61287 1.08479,0 2.14506,-0.45352 v 0.90705 q -0.53933,0.23289 -1.0235,0.33095 -0.47804,0.10419 -1.15834,0.10419 z m -0.27579,-6.11037 q -0.809,0 -1.29317,0.52707 -0.47804,0.52708 -0.56385,1.45865 h 3.51179 q 0,-0.96222 -0.42902,-1.47091 -0.42901,-0.51481 -1.22575,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5556"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 350.22953,-456.02775 q 0,0.9377 -0.69868,1.44639 -0.69868,0.50868 -1.9612,0.50868 -1.33607,0 -2.08378,-0.42288 v -0.94383 q 0.48417,0.24515 1.03576,0.38611 0.55772,0.14096 1.07253,0.14096 0.79674,0 1.22575,-0.25128 0.42902,-0.2574 0.42902,-0.77835 0,-0.39224 -0.34321,-0.66803 -0.33709,-0.28193 -1.32382,-0.66191 -0.9377,-0.34934 -1.33607,-0.60675 -0.39224,-0.26353 -0.58836,-0.59449 -0.18999,-0.33095 -0.18999,-0.79061 0,-0.82125 0.66804,-1.29317 0.66803,-0.47804 1.8325,-0.47804 1.08479,0 2.12055,0.44127 l -0.3616,0.82738 q -1.01124,-0.41675 -1.8325,-0.41675 -0.72319,0 -1.09092,0.22676 -0.36772,0.22677 -0.36772,0.62514 0,0.26966 0.13483,0.45965 0.14096,0.19 0.4474,0.3616 0.30644,0.17161 1.17672,0.49643 1.19511,0.43514 1.61186,0.87641 0.42289,0.44127 0.42289,1.10931 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5558"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 355.27962,-463.1555 -3.34018,8.96025 h -1.01737 l 3.34017,-8.96025 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5560"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 361.69643,-456.57934 q 0,1.18285 -0.85803,1.84476 -0.85803,0.6619 -2.32893,0.6619 -1.59348,0 -2.4515,-0.41062 v -1.00512 q 0.55158,0.23289 1.20123,0.36773 0.64965,0.13483 1.28704,0.13483 1.04189,0 1.56897,-0.39224 0.52707,-0.39837 0.52707,-1.10318 0,-0.46579 -0.18999,-0.75997 -0.18386,-0.30031 -0.62514,-0.55158 -0.43514,-0.25128 -1.32994,-0.56998 -1.25026,-0.4474 -1.7896,-1.06027 -0.5332,-0.61288 -0.5332,-1.59961 0,-1.03576 0.77836,-1.64864 0.77835,-0.61287 2.05926,-0.61287 1.33607,0 2.45763,0.4903 l -0.32482,0.90705 q -1.10931,-0.46578 -2.15733,-0.46578 -0.82738,0 -1.29316,0.35547 -0.46579,0.35546 -0.46579,0.98673 0,0.46578 0.17161,0.76609 0.1716,0.29418 0.5761,0.54546 0.41063,0.24515 1.25027,0.54546 1.40961,0.50256 1.93668,1.07866 0.53321,0.57611 0.53321,1.49542 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5562"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 365.54529,-454.91232 q 0.26967,0 0.52095,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.4903,0.1287 -0.3187,0.0552 -0.57611,0.0552 -1.94894,0 -1.94894,-2.05313 v -3.99595 h -0.96222 v -0.4903 l 0.96222,-0.42289 0.42901,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28805,0.93157 0.28806,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5564"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 368.83031,-454.19525 h -1.01737 v -6.71712 h 1.01737 z m -1.10317,-8.53737 q 0,-0.34934 0.1716,-0.50868 0.17161,-0.16548 0.42901,-0.16548 0.24515,0 0.42289,0.16548 0.17773,0.16547 0.17773,0.50868 0,0.34321 -0.17773,0.51482 -0.17774,0.16548 -0.42289,0.16548 -0.2574,0 -0.42901,-0.16548 -0.1716,-0.17161 -0.1716,-0.51482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5566"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 373.68429,-454.07268 q -1.45865,0 -2.26152,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81513,-0.91931 2.31667,-0.91931 0.48417,0 0.96835,0.10419 0.48417,0.10419 0.75996,0.24515 l -0.31256,0.86416 q -0.33709,-0.13484 -0.73546,-0.22064 -0.39836,-0.0919 -0.7048,-0.0919 -2.04701,0 -2.04701,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69766,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5568"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 377.98669,-457.63349 q 0.26354,-0.37385 0.80287,-0.9806 l 2.16958,-2.29828 h 1.20737 l -2.72117,2.86213 2.91116,3.85499 h -1.23188 l -2.37183,-3.1747 -0.7661,0.66191 v 2.51279 h -1.00511 v -9.53635 h 1.00511 v 5.05622 q 0,0.33709 -0.049,1.04189 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5570"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 386.41374,-454.07268 q -1.48929,0 -2.35345,-0.90705 -0.85802,-0.90706 -0.85802,-2.51892 0,-1.62413 0.79674,-2.58021 0.80286,-0.95609 2.15119,-0.95609 1.26253,0 1.99798,0.83351 0.73545,0.82739 0.73545,2.18797 v 0.64352 h -4.62722 q 0.0306,1.18285 0.59449,1.79573 0.56998,0.61287 1.59961,0.61287 1.08479,0 2.14507,-0.45352 v 0.90705 q -0.53933,0.23289 -1.02351,0.33095 -0.47804,0.10419 -1.15833,0.10419 z m -0.2758,-6.11037 q -0.80899,0 -1.29316,0.52707 -0.47805,0.52708 -0.56385,1.45865 h 3.51178 q 0,-0.96222 -0.42901,-1.47091 -0.42902,-0.51481 -1.22576,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5572"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 393.6763,-461.03495 q 0.4474,0 0.80287,0.0735 l -0.14096,0.94383 q -0.41676,-0.0919 -0.73546,-0.0919 -0.81512,0 -1.39735,0.66191 -0.57611,0.66191 -0.57611,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11645,1.24413 h 0.049 q 0.37385,-0.65577 0.90092,-1.01124 0.52708,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5574"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 398.41997,-454.07268 q -1.45864,0 -2.26151,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81512,-0.91931 2.31667,-0.91931 0.48417,0 0.96834,0.10419 0.48418,0.10419 0.75997,0.24515 l -0.31257,0.86416 q -0.33708,-0.13484 -0.73545,-0.22064 -0.39837,-0.0919 -0.70481,-0.0919 -2.047,0 -2.047,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69767,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5576"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 407.51504,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82738,0.91931 -2.28603,0.91931 -0.90093,0 -1.5996,-0.42288 -0.69868,-0.42289 -1.07867,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82126,-0.91931 2.2799,-0.91931 1.40962,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11751,0 q 0,1.28704 0.51481,1.9612 0.51482,0.67417 1.51381,0.67417 0.99899,0 1.5138,-0.66804 0.52095,-0.67416 0.52095,-1.96733 0,-1.28091 -0.52095,-1.94282 -0.51481,-0.66803 -1.52606,-0.66803 -0.99899,0 -1.50768,0.65577 -0.50868,0.65578 -0.50868,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5578"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 413.88897,-454.19525 v -4.34529 q 0,-0.82126 -0.37385,-1.22576 -0.37386,-0.40449 -1.1706,-0.40449 -1.05414,0 -1.54445,0.56997 -0.4903,0.56998 -0.4903,1.88153 v 3.52404 h -1.01737 v -6.71712 h 0.82738 l 0.16548,0.91931 h 0.049 q 0.31257,-0.49643 0.87641,-0.76609 0.56385,-0.2758 1.2564,-0.2758 1.21349,0 1.82637,0.58836 0.61287,0.58223 0.61287,1.86927 v 4.38207 h -1.01737 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5580"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 421.32316,-456.02775 q 0,0.9377 -0.69868,1.44639 -0.69868,0.50868 -1.96121,0.50868 -1.33607,0 -2.08377,-0.42288 v -0.94383 q 0.48417,0.24515 1.03576,0.38611 0.55771,0.14096 1.07253,0.14096 0.79674,0 1.22575,-0.25128 0.42902,-0.2574 0.42902,-0.77835 0,-0.39224 -0.34322,-0.66803 -0.33708,-0.28193 -1.32381,-0.66191 -0.9377,-0.34934 -1.33607,-0.60675 -0.39224,-0.26353 -0.58836,-0.59449 -0.18999,-0.33095 -0.18999,-0.79061 0,-0.82125 0.66803,-1.29317 0.66804,-0.47804 1.8325,-0.47804 1.0848,0 2.12056,0.44127 l -0.3616,0.82738 q -1.01125,-0.41675 -1.8325,-0.41675 -0.72319,0 -1.09092,0.22676 -0.36773,0.22677 -0.36773,0.62514 0,0.26966 0.13484,0.45965 0.14096,0.19 0.4474,0.3616 0.30643,0.17161 1.17672,0.49643 1.19511,0.43514 1.61186,0.87641 0.42289,0.44127 0.42289,1.10931 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5582"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 425.14136,-454.91232 q 0.26967,0 0.52095,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16548,0.0797 -0.4903,0.1287 -0.3187,0.0552 -0.57611,0.0552 -1.94894,0 -1.94894,-2.05313 v -3.99595 h -0.96222 v -0.4903 l 0.96222,-0.42289 0.42901,-1.43413 h 0.58836 v 1.55671 h 1.94895 v 0.79061 h -1.94895 v 3.95305 q 0,0.60674 0.28805,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5584"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 430.47342,-461.03495 q 0.4474,0 0.80287,0.0735 l -0.14097,0.94383 q -0.41675,-0.0919 -0.73545,-0.0919 -0.81512,0 -1.39735,0.66191 -0.57611,0.66191 -0.57611,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11644,1.24413 h 0.049 q 0.37386,-0.65577 0.90093,-1.01124 0.52708,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5586"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 433.48872,-460.91237 v 4.35755 q 0,0.82125 0.37386,1.22575 0.37385,0.4045 1.17059,0.4045 1.05415,0 1.53832,-0.57611 0.4903,-0.5761 0.4903,-1.88153 v -3.53016 h 1.01737 v 6.71712 h -0.83964 l -0.14709,-0.90093 h -0.0552 q -0.31256,0.49643 -0.87028,0.75997 -0.55159,0.26353 -1.26253,0.26353 -1.22575,0 -1.83862,-0.58223 -0.60675,-0.58223 -0.60675,-1.86314 v -4.39432 h 1.02963 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5588"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 442.91479,-454.07268 q -1.45865,0 -2.26152,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81513,-0.91931 2.31667,-0.91931 0.48417,0 0.96835,0.10419 0.48417,0.10419 0.75996,0.24515 l -0.31256,0.86416 q -0.33709,-0.13484 -0.73546,-0.22064 -0.39837,-0.0919 -0.7048,-0.0919 -2.04701,0 -2.04701,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69766,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5590"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 448.38166,-454.91232 q 0.26966,0 0.52094,-0.0368 0.25128,-0.0429 0.39837,-0.0858 v 0.77835 q -0.16547,0.0797 -0.4903,0.1287 -0.31869,0.0552 -0.5761,0.0552 -1.94895,0 -1.94895,-2.05313 v -3.99595 h -0.96221 v -0.4903 l 0.96221,-0.42289 0.42902,-1.43413 h 0.58836 v 1.55671 h 1.94894 v 0.79061 H 447.303 v 3.95305 q 0,0.60674 0.28805,0.93157 0.28805,0.32482 0.79061,0.32482 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5592"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 456.44708,-457.55994 q 0,1.64251 -0.82738,2.56795 -0.82739,0.91931 -2.28603,0.91931 -0.90093,0 -1.59961,-0.42288 -0.69868,-0.42289 -1.07866,-1.2135 -0.37998,-0.79061 -0.37998,-1.85088 0,-1.64251 0.82125,-2.5557 0.82126,-0.91931 2.2799,-0.91931 1.40962,0 2.237,0.9377 0.83351,0.9377 0.83351,2.53731 z m -5.11752,0 q 0,1.28704 0.51482,1.9612 0.51482,0.67417 1.5138,0.67417 0.99899,0 1.51381,-0.66804 0.52094,-0.67416 0.52094,-1.96733 0,-1.28091 -0.52094,-1.94282 -0.51482,-0.66803 -1.52606,-0.66803 -0.99899,0 -1.50768,0.65577 -0.50869,0.65578 -0.50869,1.95508 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5594"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 461.28879,-461.03495 q 0.4474,0 0.80286,0.0735 l -0.14096,0.94383 q -0.41675,-0.0919 -0.73545,-0.0919 -0.81512,0 -1.39736,0.66191 -0.5761,0.66191 -0.5761,1.64864 v 3.60371 h -1.01737 v -6.71712 h 0.83964 l 0.11644,1.24413 h 0.049 q 0.37386,-0.65577 0.90093,-1.01124 0.52707,-0.35547 1.15834,-0.35547 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5596"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 468.55751,-456.57934 q 0,1.18285 -0.85803,1.84476 -0.85802,0.6619 -2.32893,0.6619 -1.59347,0 -2.4515,-0.41062 v -1.00512 q 0.55159,0.23289 1.20124,0.36773 0.64965,0.13483 1.28704,0.13483 1.04189,0 1.56896,-0.39224 0.52707,-0.39837 0.52707,-1.10318 0,-0.46579 -0.18999,-0.75997 -0.18386,-0.30031 -0.62513,-0.55158 -0.43514,-0.25128 -1.32994,-0.56998 -1.25027,-0.4474 -1.7896,-1.06027 -0.5332,-0.61288 -0.5332,-1.59961 0,-1.03576 0.77835,-1.64864 0.77835,-0.61287 2.05926,-0.61287 1.33607,0 2.45764,0.4903 l -0.32483,0.90705 q -1.1093,-0.46578 -2.15732,-0.46578 -0.82738,0 -1.29317,0.35547 -0.46579,0.35546 -0.46579,0.98673 0,0.46578 0.17161,0.76609 0.1716,0.29418 0.5761,0.54546 0.41063,0.24515 1.25027,0.54546 1.40962,0.50256 1.93669,1.07866 0.5332,0.57611 0.5332,1.49542 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5598"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 473.36246,-454.07268 q -0.65577,0 -1.20123,-0.23902 -0.53933,-0.24515 -0.90706,-0.74771 h -0.0735 q 0.0735,0.58836 0.0735,1.11544 v 2.76407 h -1.01737 v -9.73247 h 0.82738 l 0.14096,0.91931 h 0.049 q 0.39224,-0.55159 0.91319,-0.79674 0.52094,-0.24515 1.1951,-0.24515 1.33607,0 2.05927,0.91319 0.72932,0.91318 0.72932,2.56182 0,1.65476 -0.74158,2.57408 -0.73545,0.91318 -2.04701,0.91318 z m -0.14709,-6.09811 q -1.02963,0 -1.48928,0.56997 -0.45966,0.56998 -0.47192,1.81411 v 0.22677 q 0,1.41574 0.47192,2.02862 0.47191,0.60675 1.5138,0.60675 0.87028,0 1.36058,-0.70481 0.49643,-0.70481 0.49643,-1.94282 0,-1.2564 -0.49643,-1.92443 -0.4903,-0.67416 -1.3851,-0.67416 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5600"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 480.77217,-454.07268 q -1.48929,0 -2.35345,-0.90705 -0.85802,-0.90706 -0.85802,-2.51892 0,-1.62413 0.79673,-2.58021 0.80287,-0.95609 2.1512,-0.95609 1.26253,0 1.99798,0.83351 0.73545,0.82739 0.73545,2.18797 v 0.64352 h -4.62722 q 0.0306,1.18285 0.59449,1.79573 0.56998,0.61287 1.59961,0.61287 1.08479,0 2.14507,-0.45352 v 0.90705 q -0.53933,0.23289 -1.02351,0.33095 -0.47804,0.10419 -1.15833,0.10419 z m -0.2758,-6.11037 q -0.80899,0 -1.29317,0.52707 -0.47804,0.52708 -0.56384,1.45865 h 3.51178 q 0,-0.96222 -0.42902,-1.47091 -0.42901,-0.51481 -1.22575,-0.51481 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5602"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 487.65471,-454.07268 q -1.45864,0 -2.26151,-0.8948 -0.79674,-0.90092 -0.79674,-2.54343 0,-1.68541 0.809,-2.60473 0.81512,-0.91931 2.31667,-0.91931 0.48417,0 0.96835,0.10419 0.48417,0.10419 0.75996,0.24515 l -0.31257,0.86416 q -0.33708,-0.13484 -0.73545,-0.22064 -0.39837,-0.0919 -0.7048,-0.0919 -2.04701,0 -2.04701,2.61085 0,1.23801 0.49643,1.89992 0.50256,0.6619 1.48316,0.6619 0.83964,0 1.72218,-0.36159 v 0.90092 q -0.67416,0.34934 -1.69767,0.34934 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5604"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 493.08482,-457.63349 q 0,1.61187 -0.47805,3.0031 -0.47191,1.39123 -1.36671,2.42086 h -0.9806 q 0.85189,-1.15221 1.30542,-2.5557 0.45353,-1.40961 0.45353,-2.88051 0,-1.49542 -0.4474,-2.91117 -0.44127,-1.41574 -1.32381,-2.59859 h 0.99286 q 0.90093,1.07253 1.37284,2.49441 0.47192,1.41574 0.47192,3.0276 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.55170345px;line-height:120.00000477%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5606"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ transform="translate(178.67433,582.63783)"
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#0093d9;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2.00000003, 4.00000005;stroke-dashoffset:6.5;stroke-opacity:1"
+ id="rect8406"
+ width="21.230001"
+ height="21.23"
+ x="38.762836"
+ y="25.453775" />
+ <rect
+ transform="translate(178.67433,582.63783)"
+ y="-18.546227"
+ x="38.762836"
+ height="21.23"
+ width="21.230001"
+ id="rect8408"
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#db3279;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6.5;stroke-opacity:1" />
+ <rect
+ transform="translate(178.67433,582.63783)"
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6.5;stroke-opacity:1"
+ id="rect8426"
+ width="21.230001"
+ height="21.23"
+ x="38.762836"
+ y="69.453773" />
+ <g
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8536">
+ <path
+ d="m 263.32035,577.19507 q 0,1.41468 -1.02172,2.2292 -1.01457,0.81451 -2.82937,0.81451 -1.6719,0 -2.95798,-0.62875 v -2.05772 q 1.05744,0.47156 1.78622,0.66447 0.73592,0.19292 1.34323,0.19292 0.72878,0 1.1146,-0.27865 0.39297,-0.27865 0.39297,-0.82881 0,-0.30723 -0.17147,-0.54301 -0.17148,-0.24293 -0.50729,-0.46442 -0.32866,-0.22149 -1.35038,-0.70734 -0.95741,-0.45013 -1.43612,-0.86453 -0.47871,-0.4144 -0.7645,-0.96456 -0.2858,-0.55015 -0.2858,-1.28608 0,-1.3861 0.93598,-2.17918 0.94312,-0.79308 2.60074,-0.79308 0.81451,0 1.55043,0.19291 0.74307,0.19291 1.55044,0.54301 l -0.71449,1.72191 q -0.83595,-0.34295 -1.3861,-0.4787 -0.54301,-0.13576 -1.07173,-0.13576 -0.62875,0 -0.96456,0.29294 -0.33581,0.29294 -0.33581,0.76451 0,0.29294 0.13575,0.51443 0.13575,0.21434 0.42869,0.42154 0.30009,0.20006 1.40754,0.72878 1.4647,0.7002 2.00771,1.40754 0.54302,0.7002 0.54302,1.72192 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5919"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 270.11512,580.09589 -0.42155,-1.08602 h -0.0572 q -0.55016,0.69305 -1.13604,0.96455 -0.57873,0.26436 -1.51471,0.26436 -1.15033,0 -1.8148,-0.65732 -0.65733,-0.65733 -0.65733,-1.87196 0,-1.27179 0.88596,-1.87196 0.89311,-0.60731 2.68648,-0.67162 l 1.3861,-0.0429 v -0.3501 q 0,-1.21462 -1.24321,-1.21462 -0.95741,0 -2.25063,0.57873 l -0.72163,-1.47184 q 1.37896,-0.72164 3.058,-0.72164 1.6076,0 2.46499,0.7002 0.85738,0.7002 0.85738,2.12917 v 5.32294 h -1.52186 z m -0.64304,-3.70105 -0.84309,0.0286 q -0.95027,0.0286 -1.41469,0.34295 -0.46441,0.31438 -0.46441,0.95742 0,0.92169 1.05744,0.92169 0.75735,0 1.20748,-0.43584 0.45727,-0.43584 0.45727,-1.15747 v -0.65733 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5921"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 278.28886,573.74409 h -1.88625 v 6.3518 h -2.17918 v -6.3518 h -1.20034 v -1.05029 l 1.20034,-0.58588 v -0.58588 q 0,-1.36468 0.67161,-1.99342 0.67162,-0.62875 2.15061,-0.62875 1.12889,0 2.00771,0.33581 l -0.5573,1.60045 q -0.65733,-0.2072 -1.21463,-0.2072 -0.46441,0 -0.67162,0.27865 -0.2072,0.2715 -0.2072,0.70019 v 0.50015 h 1.88625 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5923"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 282.84014,573.50831 q -0.69305,0 -1.08602,0.44298 -0.39296,0.43584 -0.45012,1.24321 h 3.058 q -0.0143,-0.80737 -0.42154,-1.24321 -0.40726,-0.44298 -1.10032,-0.44298 z m 0.30723,6.73047 q -1.92911,0 -3.01513,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00028,-3.10088 1.00743,-1.10031 2.77936,-1.10031 1.69333,0 2.63645,0.96456 0.94313,0.96456 0.94313,2.66504 v 1.05744 h -5.15146 q 0.0357,0.92884 0.55016,1.45041 0.51443,0.52158 1.44326,0.52158 0.72164,0 1.36467,-0.15005 0.64304,-0.15004 1.34324,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22177,0.42155 -0.65019,0.14289 -1.58617,0.14289 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5925"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 297.06559,580.09589 -0.42154,-1.08602 h -0.0572 q -0.55016,0.69305 -1.13604,0.96455 -0.57873,0.26436 -1.51471,0.26436 -1.15033,0 -1.8148,-0.65732 -0.65733,-0.65733 -0.65733,-1.87196 0,-1.27179 0.88597,-1.87196 0.89311,-0.60731 2.68647,-0.67162 l 1.3861,-0.0429 v -0.3501 q 0,-1.21462 -1.2432,-1.21462 -0.95742,0 -2.25064,0.57873 l -0.72163,-1.47184 q 1.37896,-0.72164 3.05801,-0.72164 1.60759,0 2.46498,0.7002 0.85738,0.7002 0.85738,2.12917 v 5.32294 h -1.52186 z m -0.64304,-3.70105 -0.84309,0.0286 q -0.95027,0.0286 -1.41469,0.34295 -0.46441,0.31438 -0.46441,0.95742 0,0.92169 1.05744,0.92169 0.75736,0 1.20748,-0.43584 0.45727,-0.43584 0.45727,-1.15747 v -0.65733 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5927"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 305.2822,571.95787 q 0.44298,0 0.73592,0.0643 l -0.16433,2.04343 q -0.26436,-0.0715 -0.64304,-0.0715 -1.04315,0 -1.62903,0.53587 -0.57873,0.53586 -0.57873,1.50042 v 4.06544 h -2.17919 v -7.98797 h 1.65046 l 0.32152,1.34323 h 0.10718 q 0.37153,-0.67162 1.00028,-1.07887 0.63589,-0.41441 1.37896,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5929"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 310.7909,573.50831 q -0.69305,0 -1.08602,0.44298 -0.39297,0.43584 -0.45013,1.24321 h 3.05801 q -0.0143,-0.80737 -0.42155,-1.24321 -0.40726,-0.44298 -1.10031,-0.44298 z m 0.30723,6.73047 q -1.92912,0 -3.01514,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00028,-3.10088 1.00743,-1.10031 2.77936,-1.10031 1.69333,0 2.63646,0.96456 0.94312,0.96456 0.94312,2.66504 v 1.05744 h -5.15145 q 0.0357,0.92884 0.55015,1.45041 0.51443,0.52158 1.44327,0.52158 0.72163,0 1.36467,-0.15005 0.64304,-0.15004 1.34323,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22177,0.42155 -0.65018,0.14289 -1.58616,0.14289 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5931"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 321.21527,580.09589 -0.42155,-1.08602 h -0.0572 q -0.55015,0.69305 -1.13603,0.96455 -0.57874,0.26436 -1.51471,0.26436 -1.15033,0 -1.8148,-0.65732 -0.65733,-0.65733 -0.65733,-1.87196 0,-1.27179 0.88596,-1.87196 0.89311,-0.60731 2.68648,-0.67162 l 1.3861,-0.0429 v -0.3501 q 0,-1.21462 -1.24321,-1.21462 -0.95741,0 -2.25063,0.57873 l -0.72163,-1.47184 q 1.37896,-0.72164 3.058,-0.72164 1.6076,0 2.46498,0.7002 0.85739,0.7002 0.85739,2.12917 v 5.32294 h -1.52186 z m -0.64304,-3.70105 -0.84309,0.0286 q -0.95027,0.0286 -1.41469,0.34295 -0.46442,0.31438 -0.46442,0.95742 0,0.92169 1.05745,0.92169 0.75735,0 1.20748,-0.43584 0.45727,-0.43584 0.45727,-1.15747 v -0.65733 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5933"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 328.23154,576.71636 v -1.08602 h 3.50813 v 1.08602 z"
+ style="font-weight:normal"
+ id="path5935"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 345.12917,580.09589 h -1.42897 l -3.80822,-5.06572 -1.09317,0.9717 v 4.09402 h -1.21463 v -10.44581 h 1.21463 v 5.18003 l 4.73705,-5.18003 h 1.43612 l -4.20118,4.53699 z"
+ style="font-weight:normal"
+ id="path5937"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 349.6876,580.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.1932,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50014,-1.71477 -0.50015,-0.60017 -1.42898,-0.60017 z"
+ style="font-weight:normal"
+ id="path5939"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 357.88992,580.23878 q -1.73621,0 -2.74364,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92884,-3.00799 0.93597,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66448,0.71449 1.86482,0.71449 1.26464,0 2.5007,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path5941"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 366.42804,580.23878 q -0.7645,0 -1.40039,-0.27865 -0.62875,-0.28579 -1.05745,-0.87167 h -0.0857 q 0.0857,0.68591 0.0857,1.30037 v 3.22233 h -1.18604 V 572.2651 h 0.96455 l 0.16434,1.07173 h 0.0571 q 0.45728,-0.64303 1.06459,-0.92883 0.60732,-0.28579 1.39325,-0.28579 1.55758,0 2.40068,1.06458 0.85024,1.06459 0.85024,2.98656 0,1.92912 -0.86453,3.00085 -0.85739,1.06458 -2.38639,1.06458 z m -0.17148,-7.10915 q -1.20033,0 -1.7362,0.66448 -0.53587,0.66447 -0.55016,2.11488 v 0.26436 q 0,1.65047 0.55016,2.36495 0.55016,0.70735 1.76478,0.70735 1.01458,0 1.58617,-0.82166 0.57873,-0.82167 0.57873,-2.26493 0,-1.4647 -0.57873,-2.24349 -0.57159,-0.78594 -1.61475,-0.78594 z"
+ style="font-weight:normal"
+ id="path5943"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 380.37484,580.09589 -0.23578,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57873,0.25721 -1.45041,0.25721 -1.16461,0 -1.82909,-0.60017 -0.65732,-0.60017 -0.65732,-1.70762 0,-2.3721 3.79392,-2.48642 l 1.32895,-0.0429 v -0.48585 q 0,-0.92169 -0.40011,-1.35752 -0.39297,-0.44299 -1.26465,-0.44299 -0.97884,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57874,-0.31437 1.26465,-0.49299 0.69305,-0.17862 1.3861,-0.17862 1.4004,0 2.07202,0.6216 0.67876,0.6216 0.67876,1.99342 v 5.34437 h -0.87882 z m -2.67933,-0.83595 q 1.10746,0 1.73621,-0.60732 0.63589,-0.60731 0.63589,-1.70048 v -0.70734 l -1.18605,0.05 q -1.41468,0.05 -2.04343,0.44298 -0.62161,0.38583 -0.62161,1.20749 0,0.64304 0.38583,0.97885 0.39296,0.33581 1.09316,0.33581 z"
+ style="font-weight:normal"
+ id="path5945"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 384.8904,580.09589 h -1.18605 v -11.11743 h 1.18605 z"
+ style="font-weight:normal"
+ id="path5947"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.60573,580.09589 h -1.18605 v -11.11743 h 1.18605 z"
+ style="font-weight:normal"
+ id="path5949"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 397.46539,579.25994 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.49299 0.50014,-1.67191 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-weight:normal"
+ id="path5951"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 403.41706,580.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.1932,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-weight:normal"
+ id="path5953"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 410.19755,576.08761 -2.7222,-3.82251 h 1.35038 l 2.06487,3.00085 2.05772,-3.00085 h 1.3361 l -2.7222,3.82251 2.86509,4.00828 h -1.34323 l -2.19348,-3.17233 -2.21491,3.17233 h -1.34324 z"
+ style="font-weight:normal"
+ id="path5955"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 418.49989,579.25994 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.49299 0.50014,-1.67191 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-weight:normal"
+ id="path5957"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 426.13062,580.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20006,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.493,0.19292 -0.30008,0 -0.50014,-0.19292 -0.20006,-0.20005 -0.20006,-0.60017 z"
+ style="font-weight:normal"
+ id="path5959"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 434.01856,580.09589 v -5.06572 q 0,-0.95741 -0.43584,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.22892,0 -1.80051,0.66448 -0.57159,0.66447 -0.57159,2.19347 v 4.10831 h -1.18605 v -7.83079 h 0.96456 l 0.19291,1.07173 h 0.0572 q 0.36439,-0.57873 1.02172,-0.89311 0.65733,-0.32151 1.4647,-0.32151 1.41468,0 2.12917,0.6859 0.71449,0.67877 0.71449,2.17919 v 5.10859 h -1.18605 z"
+ style="font-weight:normal"
+ id="path5961"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 442.6853,577.95957 q 0,1.09316 -0.81452,1.68619 -0.81451,0.59302 -2.28636,0.59302 -1.55758,0 -2.42926,-0.49299 v -1.10031 q 0.56445,0.28579 1.20749,0.45012 0.65018,0.16434 1.25035,0.16434 0.92884,0 1.42898,-0.29294 0.50014,-0.30009 0.50014,-0.9074 0,-0.45728 -0.40011,-0.77879 -0.39297,-0.32867 -1.5433,-0.77165 -1.09316,-0.40726 -1.55758,-0.70734 -0.45727,-0.30723 -0.68591,-0.69306 -0.22149,-0.38582 -0.22149,-0.92169 0,-0.95741 0.77879,-1.50756 0.77879,-0.5573 2.13632,-0.5573 1.26464,0 2.47213,0.51443 l -0.42155,0.96455 q -1.17891,-0.48585 -2.13632,-0.48585 -0.84309,0 -1.27179,0.26436 -0.42869,0.26436 -0.42869,0.72878 0,0.31438 0.15719,0.53587 0.16433,0.22149 0.52157,0.42154 0.35725,0.20006 1.37182,0.57874 1.39325,0.50729 1.8791,1.02172 0.493,0.51443 0.493,1.29322 z"
+ style="font-weight:normal"
+ id="path5963"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 445.79332,580.09589 h -1.18604 v -7.83079 h 1.18604 z m -1.28607,-9.95282 q 0,-0.40725 0.20005,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.493,0.19292 -0.30008,0 -0.50014,-0.19292 -0.20005,-0.20005 -0.20005,-0.60017 z"
+ style="font-weight:normal"
+ id="path5965"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 453.65268,579.04559 h -0.0643 q -0.82166,1.19319 -2.45784,1.19319 -1.53614,0 -2.39353,-1.05029 -0.85024,-1.0503 -0.85024,-2.98656 0,-1.93626 0.85738,-3.00799 0.85739,-1.07173 2.38639,-1.07173 1.59331,0 2.44355,1.15747 h 0.0929 l -0.05,-0.56445 -0.0286,-0.55016 v -3.18661 h 1.18605 v 11.11743 h -0.96456 l -0.15719,-1.0503 z m -2.37209,0.20006 q 1.21462,0 1.75764,-0.65733 0.55015,-0.66448 0.55015,-2.13632 v -0.25007 q 0,-1.66476 -0.5573,-2.3721 -0.55016,-0.71449 -1.76478,-0.71449 -1.04316,0 -1.60046,0.81452 -0.55015,0.80737 -0.55015,2.28636 0,1.50042 0.55015,2.26492 0.55016,0.76451 1.61475,0.76451 z"
+ style="font-weight:normal"
+ id="path5967"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 460.60465,580.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.1932,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50756,0.61446 -0.55731,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-weight:normal"
+ id="path5969"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 471.82925,579.25994 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.49299 0.50014,-1.67191 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-weight:normal"
+ id="path5971"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 479.8315,580.09589 v -5.06572 q 0,-0.95741 -0.43584,-1.42898 -0.43583,-0.47156 -1.36467,-0.47156 -1.23606,0 -1.80765,0.67162 -0.56445,0.67162 -0.56445,2.20062 v 4.09402 h -1.18604 v -11.11743 h 1.18604 v 3.36524 q 0,0.60731 -0.0571,1.00742 h 0.0714 q 0.3501,-0.56444 0.99314,-0.88596 0.65019,-0.32866 1.47899,-0.32866 1.43612,0 2.15061,0.6859 0.72163,0.67877 0.72163,2.1649 v 5.10859 h -1.18605 z"
+ style="font-weight:normal"
+ id="path5973"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 484.63286,580.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28607,-9.95282 q 0,-0.40725 0.20005,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.493,0.19292 -0.30008,0 -0.50014,-0.19292 -0.20005,-0.20005 -0.20005,-0.60017 z"
+ style="font-weight:normal"
+ id="path5975"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 492.21357,577.95957 q 0,1.09316 -0.81451,1.68619 -0.81452,0.59302 -2.28636,0.59302 -1.55759,0 -2.42926,-0.49299 v -1.10031 q 0.56444,0.28579 1.20748,0.45012 0.65019,0.16434 1.25036,0.16434 0.92883,0 1.42897,-0.29294 0.50014,-0.30009 0.50014,-0.9074 0,-0.45728 -0.40011,-0.77879 -0.39297,-0.32867 -1.54329,-0.77165 -1.09317,-0.40726 -1.55759,-0.70734 -0.45727,-0.30723 -0.6859,-0.69306 -0.2215,-0.38582 -0.2215,-0.92169 0,-0.95741 0.7788,-1.50756 0.77879,-0.5573 2.13631,-0.5573 1.26465,0 2.47213,0.51443 l -0.42155,0.96455 q -1.1789,-0.48585 -2.13631,-0.48585 -0.8431,0 -1.27179,0.26436 -0.4287,0.26436 -0.4287,0.72878 0,0.31438 0.15719,0.53587 0.16433,0.22149 0.52158,0.42154 0.35724,0.20006 1.37181,0.57874 1.39325,0.50729 1.87911,1.02172 0.49299,0.51443 0.49299,1.29322 z"
+ style="font-weight:normal"
+ id="path5977"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 501.58051,572.1365 q 1.54329,0 2.39353,1.05744 0.85739,1.05029 0.85739,2.97941 0,1.92912 -0.86453,3.00085 -0.85739,1.06458 -2.38639,1.06458 -0.7645,0 -1.4004,-0.27865 -0.62875,-0.28579 -1.05744,-0.87167 h -0.0857 l -0.25007,1.00743 h -0.85024 v -11.11743 h 1.18605 v 2.70076 q 0,0.9074 -0.0572,1.62903 h 0.0572 q 0.82881,-1.17175 2.45784,-1.17175 z m -0.17148,0.99313 q -1.21463,0 -1.75049,0.7002 -0.53587,0.69305 -0.53587,2.34352 0,1.65047 0.55016,2.36495 0.55015,0.70735 1.76478,0.70735 1.09317,0 1.62903,-0.79309 0.53587,-0.80022 0.53587,-2.2935 0,-1.529 -0.53587,-2.27922 -0.53586,-0.75021 -1.65761,-0.75021 z"
+ style="font-weight:normal"
+ id="path5979"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 513.66964,576.17335 q 0,1.91483 -0.96456,2.9937 -0.96455,1.07173 -2.66504,1.07173 -1.05029,0 -1.86481,-0.49299 -0.81451,-0.493 -1.2575,-1.41469 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95742,-2.97941 0.95741,-1.07173 2.65789,-1.07173 1.64332,0 2.60788,1.09316 0.9717,1.09317 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76478,0.78594 1.16462,0 1.76479,-0.7788 0.60731,-0.78593 0.60731,-2.2935 0,-1.49328 -0.60731,-2.26493 -0.60017,-0.77879 -1.77908,-0.77879 -1.16461,0 -1.75763,0.7645 -0.59303,0.76451 -0.59303,2.27922 z"
+ style="font-weight:normal"
+ id="path5981"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 519.3141,572.12221 q 0.52157,0 0.93598,0.0857 l -0.16434,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61445,-0.4144 1.35038,-0.4144 z"
+ style="font-weight:normal"
+ id="path5983"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 527.04485,579.04559 h -0.0643 q -0.82166,1.19319 -2.45784,1.19319 -1.53615,0 -2.39353,-1.05029 -0.85024,-1.0503 -0.85024,-2.98656 0,-1.93626 0.85738,-3.00799 0.85739,-1.07173 2.38639,-1.07173 1.59331,0 2.44355,1.15747 h 0.0929 l -0.05,-0.56445 -0.0286,-0.55016 v -3.18661 h 1.18605 v 11.11743 h -0.96456 l -0.15719,-1.0503 z m -2.3721,0.20006 q 1.21463,0 1.75764,-0.65733 0.55016,-0.66448 0.55016,-2.13632 v -0.25007 q 0,-1.66476 -0.5573,-2.3721 -0.55016,-0.71449 -1.76479,-0.71449 -1.04315,0 -1.60045,0.81452 -0.55016,0.80737 -0.55016,2.28636 0,1.50042 0.55016,2.26492 0.55016,0.76451 1.61474,0.76451 z"
+ style="font-weight:normal"
+ id="path5985"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 533.99682,580.23878 q -1.73621,0 -2.74363,-1.05744 -1.00029,-1.05744 -1.00029,-2.93654 0,-1.89339 0.92884,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.5007,-0.52872 v 1.05744 q -0.62874,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50015,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path5987"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 542.46348,572.12221 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85739,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61446,-0.4144 1.35038,-0.4144 z"
+ style="font-weight:normal"
+ id="path5989"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8542">
+ <path
+ d="m 261.18403,624.09589 h -2.21491 v -8.60243 h -2.83652 v -1.84338 h 7.88794 v 1.84338 h -2.83651 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5872"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 269.92935,615.95787 q 0.44299,0 0.73593,0.0643 l -0.16434,2.04343 q -0.26436,-0.0715 -0.64303,-0.0715 -1.04316,0 -1.62904,0.53587 -0.57873,0.53586 -0.57873,1.50042 v 4.06544 h -2.17919 v -7.98797 h 1.65047 l 0.32152,1.34323 h 0.10717 q 0.37153,-0.67162 1.00028,-1.07887 0.6359,-0.41441 1.37896,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5874"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 272.03709,614.04305 q 0,-1.06459 1.18605,-1.06459 1.18605,0 1.18605,1.06459 0,0.50728 -0.30008,0.79308 -0.29294,0.27865 -0.88597,0.27865 -1.18605,0 -1.18605,-1.07173 z m 2.27207,10.05284 h -2.17918 v -7.98797 h 2.17918 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5876"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 283.7404,624.09589 h -2.17919 v -4.66561 q 0,-0.86453 -0.29294,-1.29322 -0.28579,-0.43584 -0.9074,-0.43584 -0.83595,0 -1.21463,0.61446 -0.37867,0.61446 -0.37867,2.022 v 3.75821 h -2.17919 v -7.98797 h 1.66475 l 0.29294,1.02171 h 0.12147 q 0.32152,-0.55015 0.92883,-0.85738 0.60732,-0.31438 1.39325,-0.31438 1.79337,0 2.42926,1.17176 h 0.19291 q 0.32152,-0.5573 0.94312,-0.86453 0.62875,-0.30723 1.41469,-0.30723 1.35753,0 2.05058,0.7002 0.7002,0.69305 0.7002,2.2292 v 5.20862 h -2.18634 v -4.66561 q 0,-0.86453 -0.29294,-1.29322 -0.28579,-0.43584 -0.90739,-0.43584 -0.80023,0 -1.20034,0.57159 -0.39297,0.57159 -0.39297,1.8148 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5878"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 294.22193,620.71636 v -1.08602 h 3.50813 v 1.08602 z"
+ style="font-weight:normal"
+ id="path5880"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 312.64142,618.85869 q 0,2.50785 -1.27179,3.94397 -1.26464,1.43612 -3.52242,1.43612 -2.3078,0 -3.5653,-1.40754 -1.25035,-1.41468 -1.25035,-3.98684 0,-2.55072 1.2575,-3.95111 1.2575,-1.40754 3.57244,-1.40754 2.25063,0 3.51527,1.42897 1.26465,1.42898 1.26465,3.94397 z m -8.32378,0 q 0,2.12203 0.90025,3.22234 0.9074,1.09317 2.62932,1.09317 1.7362,0 2.62217,-1.09317 0.88596,-1.09316 0.88596,-3.22234 0,-2.10774 -0.88596,-3.19376 -0.87882,-1.09316 -2.60788,-1.09316 -1.73621,0 -2.64361,1.10031 -0.90025,1.09316 -0.90025,3.18661 z"
+ style="font-weight:normal"
+ id="path5882"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 315.91377,616.2651 v 5.08001 q 0,0.95741 0.43584,1.42897 0.43584,0.47157 1.36467,0.47157 1.22892,0 1.79336,-0.67162 0.57159,-0.67162 0.57159,-2.19348 v -4.11545 h 1.18605 v 7.83079 h -0.97885 l -0.17147,-1.0503 h -0.0643 q -0.36439,0.57873 -1.01457,0.88596 -0.64304,0.30723 -1.47184,0.30723 -1.42898,0 -2.14347,-0.67876 -0.70734,-0.67876 -0.70734,-2.17204 v -5.12288 h 1.20034 z"
+ style="font-weight:normal"
+ id="path5884"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 326.30242,623.25994 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19292,0.0929 -0.57159,0.15004 -0.37154,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.49299 0.50014,-1.67191 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.3358,0.37868 0.92168,0.37868 z"
+ style="font-weight:normal"
+ id="path5886"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 332.25411,624.23878 q -1.73621,0 -2.74364,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50786,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66448,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path5888"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 340.72078,616.12221 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85739,-0.10717 -0.95026,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61446,-0.4144 1.35038,-0.4144 z"
+ style="font-weight:normal"
+ id="path5890"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 350.23061,624.23878 q -1.73621,0 -2.74364,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92884,-3.00799 0.93597,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66448,0.71449 1.86482,0.71449 1.26464,0 2.5007,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path5892"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 360.45492,623.04559 h -0.0643 q -0.82166,1.19319 -2.45784,1.19319 -1.53615,0 -2.39353,-1.05029 -0.85024,-1.0503 -0.85024,-2.98656 0,-1.93626 0.85738,-3.00799 0.85739,-1.07173 2.38639,-1.07173 1.59331,0 2.44355,1.15747 h 0.0929 l -0.05,-0.56445 -0.0286,-0.55016 v -3.18661 h 1.18605 v 11.11743 h -0.96456 l -0.15719,-1.0503 z m -2.3721,0.20006 q 1.21463,0 1.75764,-0.65733 0.55016,-0.66448 0.55016,-2.13632 v -0.25007 q 0,-1.66476 -0.5573,-2.3721 -0.55016,-0.71449 -1.76479,-0.71449 -1.04315,0 -1.60045,0.81452 -0.55015,0.80737 -0.55015,2.28636 0,1.50042 0.55015,2.26492 0.55016,0.76451 1.61474,0.76451 z"
+ style="font-weight:normal"
+ id="path5894"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 370.50777,616.2651 v 0.75021 l -1.45041,0.17148 q 0.20005,0.25007 0.35724,0.65733 0.15719,0.40011 0.15719,0.9074 0,1.15032 -0.78594,1.83623 -0.78593,0.68591 -2.15775,0.68591 -0.3501,0 -0.65733,-0.0572 -0.75736,0.40011 -0.75736,1.00743 0,0.32152 0.26437,0.47871 0.26436,0.15004 0.90739,0.15004 h 1.38611 q 1.27179,0 1.95055,0.53586 0.68591,0.53587 0.68591,1.55759 0,1.30036 -1.04315,1.97913 -1.04315,0.6859 -3.04372,0.6859 -1.53615,0 -2.3721,-0.57159 -0.8288,-0.57159 -0.8288,-1.61474 0,-0.71448 0.45727,-1.23606 0.45727,-0.52158 1.28608,-0.70734 -0.30009,-0.13576 -0.50729,-0.42155 -0.20006,-0.2858 -0.20006,-0.66447 0,-0.4287 0.22864,-0.75022 0.22864,-0.32152 0.72163,-0.6216 -0.60731,-0.25007 -0.99314,-0.85024 -0.37867,-0.60017 -0.37867,-1.37182 0,-1.28607 0.77164,-1.97913 0.77165,-0.70019 2.18633,-0.70019 0.61446,0 1.10746,0.14289 h 2.70791 z m -6.24462,9.14544 q 0,0.6359 0.53586,0.96456 0.53587,0.32867 1.53615,0.32867 1.49328,0 2.20777,-0.45013 0.72163,-0.44298 0.72163,-1.20749 0,-0.63589 -0.39297,-0.88596 -0.39297,-0.24293 -1.47899,-0.24293 h -1.42183 q -0.80737,0 -1.2575,0.38583 -0.45012,0.38582 -0.45012,1.10745 z m 0.64304,-6.63759 q 0,0.82166 0.46441,1.24321 0.46442,0.42155 1.29322,0.42155 1.73621,0 1.73621,-1.68619 0,-1.76478 -1.75764,-1.76478 -0.83595,0 -1.28608,0.45012 -0.45012,0.45013 -0.45012,1.33609 z"
+ style="font-weight:normal"
+ id="path5896"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 375.43773,624.23878 q -1.73621,0 -2.74363,-1.05744 -1.00029,-1.05744 -1.00029,-2.93654 0,-1.89339 0.92884,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.1932,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50014,-1.71477 -0.50015,-0.60017 -1.42898,-0.60017 z"
+ style="font-weight:normal"
+ id="path5898"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 390.8921,620.17335 q 0,1.91483 -0.96456,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.05029,0 -1.86481,-0.49299 -0.81452,-0.493 -1.2575,-1.41469 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95741,-2.97941 0.95742,-1.07173 2.6579,-1.07173 1.64332,0 2.60788,1.09316 0.9717,1.09317 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76478,0.78594 1.16462,0 1.76479,-0.7788 0.60731,-0.78593 0.60731,-2.2935 0,-1.49328 -0.60731,-2.26493 -0.60017,-0.77879 -1.77908,-0.77879 -1.16461,0 -1.75764,0.7645 -0.59302,0.76451 -0.59302,2.27922 z"
+ style="font-weight:normal"
+ id="path5900"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 396.49369,617.18679 h -1.99342 v 6.9091 h -1.18605 v -6.9091 h -1.4004 v -0.53586 l 1.4004,-0.4287 v -0.43583 q 0,-2.88653 2.52214,-2.88653 0.6216,0 1.45755,0.25007 l -0.30723,0.95027 q -0.68591,-0.2215 -1.17176,-0.2215 -0.67162,0 -0.99314,0.45013 -0.32151,0.44298 -0.32151,1.42898 v 0.50728 h 1.99342 z"
+ style="font-weight:normal"
+ id="path5902"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 406.78944,621.95957 q 0,1.09316 -0.81452,1.68619 -0.81451,0.59302 -2.28636,0.59302 -1.55758,0 -2.42925,-0.49299 v -1.10031 q 0.56444,0.28579 1.20748,0.45012 0.65018,0.16434 1.25035,0.16434 0.92884,0 1.42898,-0.29294 0.50014,-0.30009 0.50014,-0.9074 0,-0.45728 -0.40011,-0.77879 -0.39297,-0.32867 -1.5433,-0.77165 -1.09316,-0.40726 -1.55758,-0.70734 -0.45727,-0.30723 -0.68591,-0.69306 -0.22149,-0.38582 -0.22149,-0.92169 0,-0.95741 0.77879,-1.50756 0.77879,-0.5573 2.13632,-0.5573 1.26464,0 2.47213,0.51443 l -0.42155,0.96455 q -1.1789,-0.48585 -2.13632,-0.48585 -0.84309,0 -1.27179,0.26436 -0.42869,0.26436 -0.42869,0.72878 0,0.31438 0.15719,0.53587 0.16433,0.22149 0.52157,0.42154 0.35725,0.20006 1.37182,0.57874 1.39325,0.50729 1.8791,1.02172 0.493,0.51443 0.493,1.29322 z"
+ style="font-weight:normal"
+ id="path5904"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 411.2407,623.25994 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67161,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.49299 0.50014,-1.67191 h 0.6859 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-weight:normal"
+ id="path5906"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 415.07035,624.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20006,-0.59302 0.20005,-0.19291 0.50014,-0.19291 0.28579,0 0.49299,0.19291 0.20721,0.19291 0.20721,0.59302 0,0.40012 -0.20721,0.60017 -0.2072,0.19292 -0.49299,0.19292 -0.30009,0 -0.50014,-0.19292 -0.20006,-0.20005 -0.20006,-0.60017 z"
+ style="font-weight:normal"
+ id="path5908"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 420.7291,624.23878 q -1.70048,0 -2.63646,-1.04315 -0.92883,-1.05029 -0.92883,-2.96512 0,-1.96484 0.94312,-3.03657 0.95027,-1.07173 2.70076,-1.07173 0.56445,0 1.1289,0.12146 0.56444,0.12146 0.88596,0.28579 l -0.36439,1.00743 q -0.39297,-0.15719 -0.85738,-0.25721 -0.46442,-0.10718 -0.82166,-0.10718 -2.38639,0 -2.38639,3.04372 0,1.44326 0.57873,2.21491 0.58588,0.77165 1.72906,0.77165 0.97885,0 2.00771,-0.42155 v 1.0503 q -0.78593,0.40725 -1.97913,0.40725 z"
+ style="font-weight:normal"
+ id="path5910"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 425.74479,620.08761 q 0.30723,-0.43584 0.93598,-1.14318 l 2.52929,-2.67933 h 1.40754 l -3.17233,3.33666 3.39382,4.49413 h -1.43612 l -2.76507,-3.70105 -0.89311,0.77165 v 2.9294 h -1.17176 v -11.11743 h 1.17176 v 5.89452 q 0,0.39297 -0.0572,1.21463 z"
+ style="font-weight:normal"
+ id="path5912"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 435.56901,624.23878 q -1.73621,0 -2.74363,-1.05744 -1.00029,-1.05744 -1.00029,-2.93654 0,-1.89339 0.92884,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.5007,-0.52872 v 1.05744 q -0.62874,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50015,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path5914"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 444.03569,616.12221 q 0.52157,0 0.93597,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43583,-0.7645 1.05029,-1.1789 0.61446,-0.4144 1.35039,-0.4144 z"
+ style="font-weight:normal"
+ id="path5916"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8548">
+ <path
+ d="m 257.15432,657.65008 h 3.25092 q 2.22205,0 3.22233,0.63589 1.00743,0.62875 1.00743,2.00771 0,0.93598 -0.44298,1.53615 -0.43584,0.60017 -1.16461,0.72163 v 0.0715 q 0.99313,0.22149 1.42897,0.82881 0.44298,0.60731 0.44298,1.61474 0,1.42897 -1.036,2.2292 -1.02887,0.80023 -2.8008,0.80023 h -3.90824 v -10.44581 z m 2.21491,4.13688 h 1.28608 q 0.90025,0 1.30036,-0.27865 0.40726,-0.27865 0.40726,-0.92169 0,-0.60017 -0.44298,-0.85738 -0.43584,-0.26436 -1.38611,-0.26436 h -1.16461 z m 0,1.75764 v 2.7222 h 1.44326 q 0.91455,0 1.35039,-0.3501 0.43583,-0.3501 0.43583,-1.07173 0,-1.30037 -1.85766,-1.30037 z"
+ style="font-weight:bold"
+ id="path5813"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 268.99338,668.09589 h -2.17919 v -11.11743 h 2.17919 z"
+ style="font-weight:bold"
+ id="path5815"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 274.58067,661.50831 q -0.69305,0 -1.08602,0.44298 -0.39297,0.43584 -0.45013,1.24321 h 3.05801 q -0.0143,-0.80737 -0.42155,-1.24321 -0.40726,-0.44298 -1.10031,-0.44298 z m 0.30723,6.73047 q -1.92912,0 -3.01514,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00028,-3.10088 1.00743,-1.10031 2.77936,-1.10031 1.69333,0 2.63646,0.96456 0.94312,0.96456 0.94312,2.66504 v 1.05744 h -5.15145 q 0.0357,0.92884 0.55015,1.45041 0.51443,0.52158 1.44327,0.52158 0.72163,0 1.36467,-0.15005 0.64304,-0.15004 1.34323,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22177,0.42155 -0.65018,0.14289 -1.58616,0.14289 z"
+ style="font-weight:bold"
+ id="path5817"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 283.24026,661.50831 q -0.69306,0 -1.08602,0.44298 -0.39297,0.43584 -0.45013,1.24321 h 3.05801 q -0.0143,-0.80737 -0.42155,-1.24321 -0.40726,-0.44298 -1.10031,-0.44298 z m 0.30723,6.73047 q -1.92912,0 -3.01514,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00028,-3.10088 1.00743,-1.10031 2.77936,-1.10031 1.69333,0 2.63646,0.96456 0.94312,0.96456 0.94312,2.66504 v 1.05744 h -5.15146 q 0.0357,0.92884 0.55016,1.45041 0.51443,0.52158 1.44326,0.52158 0.72164,0 1.36468,-0.15005 0.64303,-0.15004 1.34323,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22177,0.42155 -0.65018,0.14289 -1.58616,0.14289 z"
+ style="font-weight:bold"
+ id="path5819"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 291.12106,668.23878 q -1.40755,0 -2.21492,-1.09316 -0.80022,-1.09317 -0.80022,-3.02943 0,-1.96484 0.81451,-3.05801 0.82166,-1.10031 2.25778,-1.10031 1.50757,0 2.30065,1.17176 h 0.0715 q -0.16433,-0.89311 -0.16433,-1.5933 v -2.55787 h 2.18633 v 11.11743 h -1.6719 l -0.42155,-1.03601 h -0.0929 q -0.74307,1.1789 -2.26492,1.1789 z m 0.7645,-1.7362 q 0.83595,0 1.22177,-0.48585 0.39297,-0.48585 0.42869,-1.65047 v -0.23578 q 0,-1.28608 -0.40011,-1.84338 -0.39297,-0.5573 -1.28608,-0.5573 -0.72877,0 -1.13603,0.62161 -0.40012,0.61446 -0.40012,1.79336 0,1.1789 0.40726,1.77193 0.40726,0.58588 1.16462,0.58588 z"
+ style="font-weight:bold"
+ id="path5821"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 301.10959,664.71636 v -1.08602 h 3.50814 v 1.08602 z"
+ style="font-weight:normal"
+ id="path5823"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 313.67743,668.09589 h -1.21463 v -9.36694 h -3.30808 v -1.07887 h 7.83078 v 1.07887 h -3.30807 z"
+ style="font-weight:normal"
+ id="path5825"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 323.73027,668.09589 v -5.06572 q 0,-0.95741 -0.43584,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.23606,0 -1.80765,0.67162 -0.56445,0.67162 -0.56445,2.20062 v 4.09402 h -1.18605 v -11.11743 h 1.18605 v 3.36524 q 0,0.60731 -0.0572,1.00742 h 0.0715 q 0.3501,-0.56444 0.99314,-0.88596 0.65018,-0.32866 1.47899,-0.32866 1.43612,0 2.1506,0.6859 0.72164,0.67877 0.72164,2.1649 v 5.10859 h -1.18605 z"
+ style="font-weight:normal"
+ id="path5827"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 328.53162,668.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20006,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.493,0.19292 -0.30008,0 -0.50014,-0.19292 -0.20006,-0.20005 -0.20006,-0.60017 z"
+ style="font-weight:normal"
+ id="path5829"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 336.11234,665.95957 q 0,1.09316 -0.81452,1.68619 -0.81451,0.59302 -2.28636,0.59302 -1.55758,0 -2.42926,-0.49299 v -1.10031 q 0.56445,0.28579 1.20749,0.45012 0.65018,0.16434 1.25035,0.16434 0.92884,0 1.42898,-0.29294 0.50014,-0.30009 0.50014,-0.9074 0,-0.45728 -0.40011,-0.77879 -0.39297,-0.32867 -1.5433,-0.77165 -1.09316,-0.40726 -1.55758,-0.70734 -0.45727,-0.30723 -0.68591,-0.69306 -0.22149,-0.38582 -0.22149,-0.92169 0,-0.95741 0.77879,-1.50756 0.77879,-0.5573 2.13632,-0.5573 1.26464,0 2.47213,0.51443 l -0.42155,0.96455 q -1.17891,-0.48585 -2.13632,-0.48585 -0.84309,0 -1.27179,0.26436 -0.42869,0.26436 -0.42869,0.72878 0,0.31438 0.15719,0.53587 0.16433,0.22149 0.52157,0.42154 0.35725,0.20006 1.37182,0.57874 1.39325,0.50729 1.8791,1.02172 0.493,0.51443 0.493,1.29322 z"
+ style="font-weight:normal"
+ id="path5831"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 346.65102,668.09589 -0.23578,-1.1146 h -0.0571 q -0.58588,0.73592 -1.17176,1.00028 -0.57874,0.25721 -1.45041,0.25721 -1.16462,0 -1.82909,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32894,-0.0429 v -0.48585 q 0,-0.92169 -0.40011,-1.35752 -0.39297,-0.44299 -1.26464,-0.44299 -0.97885,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57873,-0.31437 1.26464,-0.49299 0.69305,-0.17862 1.38611,-0.17862 1.40039,0 2.07201,0.6216 0.67876,0.6216 0.67876,1.99342 v 5.34437 h -0.87882 z m -2.67932,-0.83595 q 1.10745,0 1.7362,-0.60732 0.6359,-0.60731 0.6359,-1.70048 v -0.70734 l -1.18605,0.05 q -1.41469,0.05 -2.04344,0.44298 -0.6216,0.38583 -0.6216,1.20749 0,0.64304 0.38582,0.97885 0.39297,0.33581 1.09317,0.33581 z"
+ style="font-weight:normal"
+ id="path5833"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 353.55297,660.12221 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85739,-0.10717 -0.95026,0 -1.62903,0.77165 -0.67161,0.77164 -0.67161,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97884 l 0.13576,1.45041 h 0.0572 q 0.43583,-0.7645 1.05029,-1.1789 0.61446,-0.4144 1.35038,-0.4144 z"
+ style="font-weight:normal"
+ id="path5835"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 359.26173,668.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50786,-1.1146 1.47184,0 2.32922,0.9717 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35039,0.12146 z m -0.32151,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path5837"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 368.97162,668.09589 -0.23578,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57873,0.25721 -1.45041,0.25721 -1.16461,0 -1.82909,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32895,-0.0429 v -0.48585 q 0,-0.92169 -0.40011,-1.35752 -0.39297,-0.44299 -1.26465,-0.44299 -0.97884,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57874,-0.31437 1.26465,-0.49299 0.69305,-0.17862 1.3861,-0.17862 1.4004,0 2.07202,0.6216 0.67876,0.6216 0.67876,1.99342 v 5.34437 h -0.87882 z m -2.67933,-0.83595 q 1.10746,0 1.73621,-0.60732 0.63589,-0.60731 0.63589,-1.70048 v -0.70734 l -1.18605,0.05 q -1.41468,0.05 -2.04343,0.44298 -0.62161,0.38583 -0.62161,1.20749 0,0.64304 0.38583,0.97885 0.39296,0.33581 1.09316,0.33581 z"
+ style="font-weight:normal"
+ id="path5839"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 382.49687,668.09589 -1.43612,-4.59416 q -0.13576,-0.42155 -0.50729,-1.91483 h -0.0572 q -0.28579,1.25036 -0.50014,1.92912 l -1.47899,4.57987 h -1.37182 L 375.009,660.2651 h 1.2432 q 0.75736,2.95084 1.15033,4.49413 0.40011,1.54329 0.45727,2.07916 h 0.0572 q 0.0786,-0.40726 0.25007,-1.0503 0.17862,-0.65018 0.30723,-1.02886 l 1.43612,-4.49413 h 1.28608 l 1.40039,4.49413 q 0.40012,1.22892 0.54301,2.06487 h 0.0572 q 0.0286,-0.25722 0.15005,-0.79308 0.1286,-0.53587 1.49327,-5.76592 h 1.22892 l -2.16489,7.83079 h -1.40754 z"
+ style="font-weight:normal"
+ id="path5841"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.66289,668.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20006,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.493,0.19292 -0.30008,0 -0.50014,-0.19292 -0.20006,-0.20005 -0.20006,-0.60017 z"
+ style="font-weight:normal"
+ id="path5843"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 392.37822,668.09589 h -1.18604 v -11.11743 h 1.18604 z"
+ style="font-weight:normal"
+ id="path5845"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 396.09356,668.09589 h -1.18605 v -11.11743 h 1.18605 z"
+ style="font-weight:normal"
+ id="path5847"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 406.06781,660.1365 q 1.5433,0 2.39354,1.05744 0.85738,1.05029 0.85738,2.97941 0,1.92912 -0.86453,3.00085 -0.85738,1.06458 -2.38639,1.06458 -0.7645,0 -1.40039,-0.27865 -0.62875,-0.28579 -1.05745,-0.87167 h -0.0857 l -0.25007,1.00743 h -0.85024 V 656.97846 H 403.61 v 2.70076 q 0,0.9074 -0.0571,1.62903 h 0.0571 q 0.82881,-1.17175 2.45784,-1.17175 z m -0.17147,0.99313 q -1.21463,0 -1.7505,0.7002 -0.53587,0.69305 -0.53587,2.34352 0,1.65047 0.55016,2.36495 0.55016,0.70735 1.76478,0.70735 1.09317,0 1.62904,-0.79309 0.53586,-0.80022 0.53586,-2.2935 0,-1.529 -0.53586,-2.27922 -0.53587,-0.75021 -1.65761,-0.75021 z"
+ style="font-weight:normal"
+ id="path5849"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 414.70597,668.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.1932,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-weight:normal"
+ id="path5851"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 425.93057,667.25994 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.49299 0.50014,-1.67191 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-weight:normal"
+ id="path5853"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 432.1466,660.12221 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85739,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61446,-0.4144 1.35038,-0.4144 z"
+ style="font-weight:normal"
+ id="path5855"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 435.73333,668.09589 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20006,-0.59302 0.20005,-0.19291 0.50014,-0.19291 0.28579,0 0.49299,0.19291 0.20721,0.19291 0.20721,0.59302 0,0.40012 -0.20721,0.60017 -0.2072,0.19292 -0.49299,0.19292 -0.30009,0 -0.50014,-0.19292 -0.20006,-0.20005 -0.20006,-0.60017 z"
+ style="font-weight:normal"
+ id="path5857"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 448.24402,668.09589 v -5.0943 q 0,-0.93598 -0.40012,-1.4004 -0.40011,-0.47156 -1.24321,-0.47156 -1.10745,0 -1.63617,0.6359 -0.52872,0.63589 -0.52872,1.95769 v 4.37267 h -1.18605 v -5.0943 q 0,-0.93598 -0.40012,-1.4004 -0.40011,-0.47156 -1.25035,-0.47156 -1.1146,0 -1.63617,0.67162 -0.51444,0.66447 -0.51444,2.18633 v 4.10831 h -1.18604 v -7.83079 h 0.96455 l 0.19291,1.07173 h 0.0572 q 0.33581,-0.57159 0.94313,-0.89311 0.61446,-0.32151 1.37181,-0.32151 1.83624,0 2.40068,1.32894 h 0.0572 q 0.3501,-0.61446 1.01457,-0.9717 0.66448,-0.35724 1.51472,-0.35724 1.32894,0 1.98627,0.6859 0.66448,0.67877 0.66448,2.17919 v 5.10859 h -1.18605 z"
+ style="font-weight:normal"
+ id="path5859"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 461.84785,668.09589 v -5.0943 q 0,-0.93598 -0.40011,-1.4004 -0.40011,-0.47156 -1.24321,-0.47156 -1.10746,0 -1.63618,0.6359 -0.52872,0.63589 -0.52872,1.95769 v 4.37267 h -1.18605 v -5.0943 q 0,-0.93598 -0.40011,-1.4004 -0.40011,-0.47156 -1.25035,-0.47156 -1.1146,0 -1.63618,0.67162 -0.51443,0.66447 -0.51443,2.18633 v 4.10831 h -1.18605 v -7.83079 h 0.96456 l 0.19291,1.07173 h 0.0572 q 0.33581,-0.57159 0.94312,-0.89311 0.61446,-0.32151 1.37182,-0.32151 1.83623,0 2.40068,1.32894 h 0.0572 q 0.3501,-0.61446 1.01457,-0.9717 0.66447,-0.35724 1.51471,-0.35724 1.32895,0 1.98628,0.6859 0.66447,0.67877 0.66447,2.17919 v 5.10859 h -1.18605 z"
+ style="font-weight:normal"
+ id="path5861"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 468.77837,668.23878 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35039,0.12146 z m -0.32151,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-weight:normal"
+ id="path5863"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 479.00271,667.04559 h -0.0643 q -0.82166,1.19319 -2.45784,1.19319 -1.53614,0 -2.39353,-1.05029 -0.85024,-1.0503 -0.85024,-2.98656 0,-1.93626 0.85739,-3.00799 0.85738,-1.07173 2.38638,-1.07173 1.59331,0 2.44355,1.15747 h 0.0929 l -0.05,-0.56445 -0.0286,-0.55016 v -3.18661 h 1.18605 v 11.11743 h -0.96456 l -0.15718,-1.0503 z m -2.3721,0.20006 q 1.21463,0 1.75764,-0.65733 0.55015,-0.66448 0.55015,-2.13632 v -0.25007 q 0,-1.66476 -0.5573,-2.3721 -0.55015,-0.71449 -1.76478,-0.71449 -1.04315,0 -1.60045,0.81452 -0.55016,0.80737 -0.55016,2.28636 0,1.50042 0.55016,2.26492 0.55015,0.76451 1.61474,0.76451 z"
+ style="font-weight:normal"
+ id="path5865"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 493.20671,664.17335 q 0,1.91483 -0.96456,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.0503,0 -1.86481,-0.49299 -0.81452,-0.493 -1.2575,-1.41469 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95741,-2.97941 0.95741,-1.07173 2.65789,-1.07173 1.64332,0 2.60788,1.09316 0.97171,1.09317 0.97171,2.95798 z m -5.96598,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76479,0.78594 1.16461,0 1.76478,-0.7788 0.60732,-0.78593 0.60732,-2.2935 0,-1.49328 -0.60732,-2.26493 -0.60017,-0.77879 -1.77907,-0.77879 -1.16462,0 -1.75764,0.7645 -0.59303,0.76451 -0.59303,2.27922 z"
+ style="font-weight:normal"
+ id="path5867"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 503.76683,661.18679 h -1.99342 v 6.9091 h -1.18604 v -6.9091 h -1.4004 v -0.53586 l 1.4004,-0.4287 v -0.43583 q 0,-2.88653 2.52214,-2.88653 0.6216,0 1.45755,0.25007 l -0.30723,0.95027 q -0.68591,-0.2215 -1.17176,-0.2215 -0.67162,0 -0.99314,0.45013 -0.32152,0.44298 -0.32152,1.42898 v 0.50728 h 1.99342 z m -4.95854,0 h -1.99342 v 6.9091 h -1.18605 v -6.9091 h -1.40039 v -0.53586 l 1.40039,-0.4287 v -0.43583 q 0,-2.88653 2.52214,-2.88653 0.62161,0 1.45756,0.25007 l -0.30723,0.95027 q -0.68591,-0.2215 -1.17176,-0.2215 -0.67162,0 -0.99314,0.45013 -0.32152,0.44298 -0.32152,1.42898 v 0.50728 h 1.99342 z"
+ style="font-weight:normal"
+ id="path5869"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8556">
+ <path
+ d="m 332.29654,748.41248 -2.515,-8.19518 h -0.0643 q 0.13575,2.50071 0.13575,3.33666 v 4.85852 h -1.97913 v -10.44581 h 3.01514 l 2.47213,7.98797 h 0.0429 l 2.62217,-7.98797 h 3.01514 v 10.44581 h -2.06487 v -4.94426 q 0,-0.3501 0.007,-0.80737 0.0143,-0.45727 0.10003,-2.42926 h -0.0643 l -2.69362,8.18089 h -2.02914 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5788"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 346.57914,748.41248 -0.42154,-1.08603 h -0.0572 q -0.55016,0.69306 -1.13604,0.96456 -0.57873,0.26436 -1.51471,0.26436 -1.15033,0 -1.8148,-0.65733 -0.65733,-0.65732 -0.65733,-1.87195 0,-1.27179 0.88597,-1.87196 0.89311,-0.60731 2.68647,-0.67162 l 1.38611,-0.0429 v -0.3501 q 0,-1.21463 -1.24321,-1.21463 -0.95742,0 -2.25064,0.57874 l -0.72163,-1.47184 q 1.37896,-0.72164 3.05801,-0.72164 1.60759,0 2.46498,0.7002 0.85738,0.7002 0.85738,2.12917 v 5.32294 h -1.52186 z m -0.64303,-3.70105 -0.8431,0.0286 q -0.95027,0.0286 -1.41468,0.34295 -0.46442,0.31438 -0.46442,0.95742 0,0.92169 1.05744,0.92169 0.75736,0 1.20748,-0.43584 0.45728,-0.43584 0.45728,-1.15747 v -0.65733 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5790"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 352.4308,744.06839 0.95027,-1.21463 2.23634,-2.42926 h 2.45784 l -3.17233,3.46527 3.36524,4.52271 h -2.515 l -2.30065,-3.23663 -0.93597,0.75021 v 2.48642 h -2.17919 v -11.11743 h 2.17919 v 4.95854 l -0.11432,1.8148 h 0.0286 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5792"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 362.73371,741.8249 q -0.69305,0 -1.08602,0.44298 -0.39297,0.43584 -0.45013,1.24321 h 3.05801 q -0.0143,-0.80737 -0.42155,-1.24321 -0.40726,-0.44298 -1.10031,-0.44298 z m 0.30723,6.73047 q -1.92912,0 -3.01514,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00028,-3.10088 1.00743,-1.10031 2.77936,-1.10031 1.69333,0 2.63646,0.96456 0.94312,0.96456 0.94312,2.66504 v 1.05744 h -5.15145 q 0.0357,0.92883 0.55015,1.45041 0.51443,0.52158 1.44327,0.52158 0.72163,0 1.36467,-0.15005 0.64304,-0.15004 1.34323,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22177,0.42155 -0.65018,0.14289 -1.58616,0.14289 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5794"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 377.4593,746.04038 q 0,1.22892 -0.85739,1.87195 -0.85024,0.64304 -2.55072,0.64304 -0.87167,0 -1.48613,-0.12146 -0.61446,-0.11432 -1.15033,-0.34295 v -1.80051 q 0.60732,0.28579 1.36467,0.4787 0.76451,0.19292 1.34324,0.19292 1.18605,0 1.18605,-0.68591 0,-0.25722 -0.15719,-0.4144 -0.15718,-0.16434 -0.54301,-0.36439 -0.38582,-0.2072 -1.02886,-0.47871 -0.92169,-0.38582 -1.35753,-0.71449 -0.42869,-0.32866 -0.62875,-0.75021 -0.19291,-0.42869 -0.19291,-1.0503 0,-1.06458 0.82166,-1.64332 0.82881,-0.58588 2.34352,-0.58588 1.44327,0 2.80794,0.62875 l -0.65733,1.57187 q -0.60017,-0.25721 -1.12175,-0.42154 -0.52157,-0.16434 -1.06458,-0.16434 -0.96456,0 -0.96456,0.52158 0,0.29294 0.30723,0.50729 0.31437,0.21434 1.36467,0.63589 0.93598,0.37868 1.37182,0.70734 0.43583,0.32867 0.64304,0.75736 0.2072,0.42869 0.2072,1.02172 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5796"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 384.83281,748.41248 -0.29294,-1.02172 h -0.11432 q -0.3501,0.5573 -0.99314,0.86453 -0.64304,0.30008 -1.4647,0.30008 -1.40754,0 -2.12202,-0.75021 -0.71449,-0.75736 -0.71449,-2.17204 v -5.20862 h 2.17919 v 4.66561 q 0,0.86453 0.30723,1.30037 0.30722,0.42869 0.97884,0.42869 0.91455,0 1.3218,-0.60732 0.40726,-0.61446 0.40726,-2.02914 v -3.75821 h 2.17919 v 7.98798 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5798"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 393.26376,740.27446 q 0.44298,0 0.73592,0.0643 l -0.16433,2.04343 q -0.26436,-0.0715 -0.64304,-0.0715 -1.04315,0 -1.62903,0.53587 -0.57873,0.53586 -0.57873,1.50042 v 4.06544 h -2.17919 v -7.98798 h 1.65046 l 0.32152,1.34324 h 0.10718 q 0.37153,-0.67162 1.00028,-1.07887 0.63589,-0.41441 1.37896,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5800"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 398.77246,741.8249 q -0.69305,0 -1.08602,0.44298 -0.39297,0.43584 -0.45013,1.24321 h 3.05801 q -0.0143,-0.80737 -0.42155,-1.24321 -0.40725,-0.44298 -1.10031,-0.44298 z m 0.30723,6.73047 q -1.92911,0 -3.01514,-1.06458 -1.08602,-1.06459 -1.08602,-3.01514 0,-2.00771 1.00029,-3.10088 1.00742,-1.10031 2.77935,-1.10031 1.69334,0 2.63646,0.96456 0.94313,0.96456 0.94313,2.66504 v 1.05744 h -5.15146 q 0.0357,0.92883 0.55016,1.45041 0.51443,0.52158 1.44326,0.52158 0.72163,0 1.36467,-0.15005 0.64304,-0.15004 1.34324,-0.4787 v 1.68619 q -0.57159,0.28579 -1.22178,0.42155 -0.65018,0.14289 -1.58616,0.14289 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5802"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 406.78187,740.4245 h 2.38639 l 1.50757,4.49413 q 0.19291,0.58588 0.26436,1.38611 h 0.0429 q 0.0786,-0.73592 0.30723,-1.38611 l 1.47899,-4.49413 h 2.33638 l -3.37953,9.00969 q -0.46442,1.25036 -1.32895,1.87196 -0.85738,0.6216 -2.00771,0.6216 -0.56444,0 -1.10745,-0.12146 v -1.72906 q 0.39297,0.0929 0.85738,0.0929 0.57874,0 1.00743,-0.35724 0.43584,-0.3501 0.67876,-1.06459 l 0.12861,-0.39296 -3.17232,-7.93082 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5804"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 417.97789,744.4042 q 0,1.18605 0.38582,1.79336 0.39297,0.60732 1.27179,0.60732 0.87167,0 1.25035,-0.60017 0.38583,-0.60732 0.38583,-1.80051 0,-1.18605 -0.38583,-1.77907 -0.38582,-0.59303 -1.26464,-0.59303 -0.87168,0 -1.2575,0.59303 -0.38582,0.58588 -0.38582,1.77907 z m 5.52299,0 q 0,1.95055 -1.02887,3.05086 -1.02886,1.10031 -2.86509,1.10031 -1.15033,0 -2.02915,-0.50014 -0.87881,-0.50728 -1.35038,-1.45041 -0.47156,-0.94312 -0.47156,-2.20062 0,-1.9577 1.02172,-3.04372 1.02172,-1.08602 2.87224,-1.08602 1.15032,0 2.02914,0.50014 0.87882,0.50015 1.35038,1.43612 0.47157,0.93598 0.47157,2.19348 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5806"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 430.96012,748.41248 -0.29294,-1.02172 h -0.11431 q -0.3501,0.5573 -0.99314,0.86453 -0.64304,0.30008 -1.4647,0.30008 -1.40754,0 -2.12203,-0.75021 -0.71449,-0.75736 -0.71449,-2.17204 v -5.20862 h 2.17919 v 4.66561 q 0,0.86453 0.30723,1.30037 0.30723,0.42869 0.97885,0.42869 0.91454,0 1.3218,-0.60732 0.40726,-0.61446 0.40726,-2.02914 v -3.75821 h 2.17919 v 7.98798 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5808"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 434.62545,747.39076 q 0,-0.60017 0.32152,-0.9074 0.32152,-0.30723 0.93598,-0.30723 0.59302,0 0.91454,0.31437 0.32866,0.31438 0.32866,0.90026 0,0.56444 -0.32866,0.89311 -0.32866,0.32152 -0.91454,0.32152 -0.60017,0 -0.92884,-0.31438 -0.32866,-0.32152 -0.32866,-0.90025 z m 0,-5.90167 q 0,-0.60017 0.32152,-0.9074 0.32152,-0.30723 0.93598,-0.30723 0.59302,0 0.91454,0.31438 0.32866,0.31437 0.32866,0.90025 0,0.57874 -0.3358,0.90026 -0.32867,0.31437 -0.9074,0.31437 -0.60017,0 -0.92884,-0.31437 -0.32866,-0.31438 -0.32866,-0.90026 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5810"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:150%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8562">
+ <path
+ d="m 182.35059,788.41248 h -2.20776 v -6.04457 l 0.0214,-0.99314 0.0357,-1.08602 q -0.55016,0.55016 -0.7645,0.72163 l -1.20034,0.96456 -1.06459,-1.32894 3.36524,-2.67933 h 1.81479 v 10.44581 z"
+ style="font-weight:bold;line-height:150%"
+ id="path5609"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 185.4872,787.39076 q 0,-0.60017 0.32151,-0.9074 0.32152,-0.30723 0.93598,-0.30723 0.59303,0 0.91455,0.31437 0.32866,0.31438 0.32866,0.90026 0,0.56444 -0.32866,0.89311 -0.32867,0.32152 -0.91455,0.32152 -0.60017,0 -0.92883,-0.31438 -0.32866,-0.32152 -0.32866,-0.90025 z"
+ style="font-weight:bold;line-height:150%"
+ id="path5611"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 200.68435,781.01038 q 0,1.58617 -1.08603,2.44355 -1.07887,0.85024 -3.09373,0.85024 h -1.22892 v 4.10831 h -1.21462 v -10.44581 h 2.7079 q 3.9154,0 3.9154,3.04371 z m -5.40868,2.25064 h 1.09317 q 1.61474,0 2.33637,-0.52158 0.72164,-0.52157 0.72164,-1.6719 0,-1.036 -0.67877,-1.54329 -0.67876,-0.50729 -2.11488,-0.50729 h -1.35753 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5613"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 203.79951,780.58169 v 5.08001 q 0,0.95741 0.43584,1.42897 0.43584,0.47157 1.36467,0.47157 1.22892,0 1.79336,-0.67162 0.57159,-0.67162 0.57159,-2.19348 v -4.11545 h 1.18605 v 7.83079 h -0.97885 l -0.17147,-1.0503 h -0.0643 q -0.36439,0.57873 -1.01457,0.88596 -0.64304,0.30723 -1.47184,0.30723 -1.42898,0 -2.14347,-0.67876 -0.70734,-0.67876 -0.70734,-2.17204 v -5.12288 h 1.20034 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5615"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 214.18816,787.57653 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5617"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 219.38963,780.58169 h 1.27179 l 1.71477,4.46555 q 0.56444,1.529 0.70019,2.20777 h 0.0572 q 0.0929,-0.36439 0.38583,-1.24321 0.30008,-0.88597 1.9434,-5.43011 h 1.27179 l -3.36524,8.91681 q -0.50014,1.3218 -1.17175,1.87195 -0.66448,0.5573 -1.63618,0.5573 -0.54301,0 -1.07173,-0.12146 v -0.95027 q 0.39297,0.0857 0.87882,0.0857 1.22177,0 1.74335,-1.37181 l 0.43583,-1.11461 -3.15803,-7.87365 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5619"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 234.7654,784.48994 q 0,1.91483 -0.96456,2.9937 -0.96455,1.07173 -2.66503,1.07173 -1.0503,0 -1.86482,-0.49299 -0.81451,-0.493 -1.2575,-1.41469 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95742,-2.97941 0.95741,-1.07174 2.65789,-1.07174 1.64332,0 2.60788,1.09317 0.9717,1.09317 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76478,0.78594 1.16462,0 1.76479,-0.7788 0.60731,-0.78593 0.60731,-2.2935 0,-1.49328 -0.60731,-2.26493 -0.60017,-0.77879 -1.77908,-0.77879 -1.16461,0 -1.75763,0.7645 -0.59303,0.76451 -0.59303,2.27922 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5621"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 237.95202,780.58169 v 5.08001 q 0,0.95741 0.43583,1.42897 0.43584,0.47157 1.36468,0.47157 1.22891,0 1.79336,-0.67162 0.57159,-0.67162 0.57159,-2.19348 v -4.11545 h 1.18605 v 7.83079 h -0.97885 l -0.17148,-1.0503 h -0.0643 q -0.36439,0.57873 -1.01457,0.88596 -0.64304,0.30723 -1.47185,0.30723 -1.42897,0 -2.14346,-0.67876 -0.70734,-0.67876 -0.70734,-2.17204 v -5.12288 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5623"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 249.38381,780.43879 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62904,0.77165 -0.67161,0.77164 -0.67161,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97884 l 0.13576,1.45041 h 0.0572 q 0.43583,-0.7645 1.05029,-1.1789 0.61446,-0.41441 1.35038,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5625"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 260.40122,788.41248 -0.23579,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57874,0.25721 -1.45041,0.25721 -1.16462,0 -1.82909,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32895,-0.0429 v -0.48585 q 0,-0.92169 -0.40012,-1.35753 -0.39297,-0.44298 -1.26464,-0.44298 -0.97885,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57873,-0.31437 1.26464,-0.49299 0.69306,-0.17863 1.38611,-0.17863 1.40039,0 2.07201,0.62161 0.67877,0.6216 0.67877,1.99342 v 5.34437 h -0.87882 z m -2.67933,-0.83595 q 1.10745,0 1.7362,-0.60732 0.6359,-0.60731 0.6359,-1.70048 v -0.70734 l -1.18605,0.05 q -1.41469,0.05 -2.04344,0.44298 -0.6216,0.38583 -0.6216,1.20749 0,0.64304 0.38582,0.97885 0.39297,0.33581 1.09317,0.33581 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5627"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 267.30316,780.43879 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62904,0.77165 -0.67161,0.77164 -0.67161,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97884 l 0.13576,1.45041 h 0.0572 q 0.43583,-0.7645 1.05029,-1.1789 0.61446,-0.41441 1.35038,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5629"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 272.23313,787.57653 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37154,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5631"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 281.27139,788.41248 -1.43612,-4.59416 q -0.13575,-0.42155 -0.50728,-1.91483 h -0.0572 q -0.2858,1.25036 -0.50014,1.92912 l -1.47899,4.57987 h -1.37182 l -2.13632,-7.83079 h 1.24321 q 0.75736,2.95084 1.15033,4.49413 0.40011,1.54329 0.45727,2.07916 h 0.0572 q 0.0786,-0.40726 0.25007,-1.0503 0.17862,-0.65018 0.30723,-1.02886 l 1.43612,-4.49413 h 1.28608 l 1.40039,4.49413 q 0.40011,1.22892 0.54301,2.06487 h 0.0572 q 0.0286,-0.25722 0.15004,-0.79308 0.12861,-0.53587 1.49328,-5.76592 h 1.22892 l -2.1649,7.83079 h -1.40754 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5633"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 293.01042,784.48994 q 0,1.91483 -0.96455,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.0503,0 -1.86482,-0.49299 -0.81451,-0.493 -1.25749,-1.41469 -0.44299,-0.92169 -0.44299,-2.15775 0,-1.91483 0.95742,-2.97941 0.95741,-1.07174 2.65789,-1.07174 1.64332,0 2.60788,1.09317 0.9717,1.09317 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76479,0.78594 1.16461,0 1.76478,-0.7788 0.60732,-0.78593 0.60732,-2.2935 0,-1.49328 -0.60732,-2.26493 -0.60017,-0.77879 -1.77907,-0.77879 -1.16462,0 -1.75764,0.7645 -0.59303,0.76451 -0.59303,2.27922 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5635"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 298.65488,780.43879 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48586,-0.10717 -0.85739,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61446,-0.41441 1.35038,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5637"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 302.22732,784.4042 q 0.30722,-0.43584 0.93597,-1.14318 l 2.52929,-2.67933 h 1.40754 l -3.17232,3.33666 3.39381,4.49413 h -1.43612 l -2.76507,-3.70105 -0.8931,0.77165 v 2.9294 h -1.17176 v -11.11743 h 1.17176 v 5.89452 q 0,0.39297 -0.0572,1.21463 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5639"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 313.73057,788.41248 h -1.18605 v -7.83079 h 1.18605 z m -1.28608,-9.95282 q 0,-0.40725 0.20005,-0.59302 0.20006,-0.19291 0.50015,-0.19291 0.28579,0 0.49299,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40012 -0.2072,0.60017 -0.2072,0.19292 -0.49299,0.19292 -0.30009,0 -0.50015,-0.19292 -0.20005,-0.20005 -0.20005,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5641"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 321.6185,788.41248 v -5.06572 q 0,-0.95741 -0.43583,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.22892,0 -1.80051,0.66448 -0.57159,0.66447 -0.57159,2.19347 v 4.10831 h -1.18605 v -7.83079 h 0.96456 l 0.19291,1.07173 h 0.0572 q 0.36439,-0.57873 1.02171,-0.89311 0.65733,-0.32152 1.4647,-0.32152 1.41469,0 2.12918,0.68591 0.71448,0.67877 0.71448,2.17919 v 5.10859 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5643"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 331.56417,787.57653 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37153,0.0643 -0.67161,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.3358,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5645"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 339.56644,788.41248 v -5.06572 q 0,-0.95741 -0.43584,-1.42898 -0.43583,-0.47156 -1.36467,-0.47156 -1.23606,0 -1.80765,0.67162 -0.56445,0.67162 -0.56445,2.20062 v 4.09402 h -1.18605 v -11.11743 h 1.18605 v 3.36524 q 0,0.60731 -0.0571,1.00742 h 0.0714 q 0.3501,-0.56444 0.99314,-0.88596 0.65019,-0.32867 1.47899,-0.32867 1.43612,0 2.15061,0.68591 0.72163,0.67877 0.72163,2.1649 v 5.10859 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5647"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 346.48982,788.55537 q -1.73621,0 -2.74364,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.11461 2.50786,-1.11461 1.47184,0 2.32923,0.97171 0.85738,0.96456 0.85738,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66448,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5649"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 356.20684,777.96667 -0.28579,3.77249 h -0.75021 l -0.29294,-3.77249 z m 2.63646,0 -0.29294,3.77249 h -0.74307 l -0.29294,-3.77249 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5651"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 367.7887,788.41248 -1.30037,-3.32237 h -4.1869 l -1.28607,3.32237 h -1.22892 l 4.12974,-10.48868 h 1.02171 l 4.10831,10.48868 z m -1.67905,-4.41554 -1.21463,-3.23663 q -0.23578,-0.61446 -0.48585,-1.50756 -0.15718,0.6859 -0.45012,1.50756 l -1.22892,3.23663 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5653"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 373.87612,780.43879 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62904,0.77165 -0.67161,0.77164 -0.67161,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97884 l 0.13576,1.45041 h 0.0572 q 0.43583,-0.7645 1.05029,-1.1789 0.61446,-0.41441 1.35038,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5655"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 378.80609,787.57653 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15004 -0.37154,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60845 q 0,0.70734 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5657"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 387.84436,788.41248 -1.43612,-4.59416 q -0.13575,-0.42155 -0.50728,-1.91483 h -0.0572 q -0.2858,1.25036 -0.50015,1.92912 l -1.47898,4.57987 h -1.37182 l -2.13632,-7.83079 h 1.24321 q 0.75736,2.95084 1.15033,4.49413 0.40011,1.54329 0.45727,2.07916 h 0.0572 q 0.0786,-0.40726 0.25007,-1.0503 0.17862,-0.65018 0.30723,-1.02886 l 1.43612,-4.49413 h 1.28607 l 1.4004,4.49413 q 0.40011,1.22892 0.54301,2.06487 h 0.0572 q 0.0286,-0.25722 0.15004,-0.79308 0.12861,-0.53587 1.49328,-5.76592 h 1.22892 l -2.1649,7.83079 h -1.40754 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5659"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 399.58338,784.48994 q 0,1.91483 -0.96455,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.0503,0 -1.86482,-0.49299 -0.81451,-0.493 -1.25749,-1.41469 -0.44299,-0.92169 -0.44299,-2.15775 0,-1.91483 0.95742,-2.97941 0.95741,-1.07174 2.65789,-1.07174 1.64332,0 2.60788,1.09317 0.9717,1.09317 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78594 1.76479,0.78594 1.16461,0 1.76478,-0.7788 0.60732,-0.78593 0.60732,-2.2935 0,-1.49328 -0.60732,-2.26493 -0.60017,-0.77879 -1.77907,-0.77879 -1.16462,0 -1.75764,0.7645 -0.59303,0.76451 -0.59303,2.27922 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5661"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 405.22784,780.43879 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48586,-0.10717 -0.85739,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.1789 0.61446,-0.41441 1.35038,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5663"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 408.80028,784.4042 q 0.30722,-0.43584 0.93597,-1.14318 l 2.52929,-2.67933 h 1.40754 l -3.17232,3.33666 3.39381,4.49413 h -1.43612 l -2.76507,-3.70105 -0.8931,0.77165 v 2.9294 h -1.17176 v -11.11743 h 1.17176 v 5.89452 q 0,0.39297 -0.0572,1.21463 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5665"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 416.33811,777.96667 -0.28579,3.77249 h -0.75021 l -0.29294,-3.77249 z m 2.63646,0 -0.29294,3.77249 h -0.74306 l -0.29294,-3.77249 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5667"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 426.16233,788.41248 h -1.18605 v -11.11743 h 1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5669"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 433.50726,788.41248 -0.23578,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57874,0.25721 -1.45041,0.25721 -1.16462,0 -1.82909,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32895,-0.0429 v -0.48585 q 0,-0.92169 -0.40012,-1.35753 -0.39296,-0.44298 -1.26464,-0.44298 -0.97885,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57874,-0.31437 1.26464,-0.49299 0.69306,-0.17863 1.38611,-0.17863 1.40039,0 2.07201,0.62161 0.67877,0.6216 0.67877,1.99342 v 5.34437 h -0.87882 z m -2.67933,-0.83595 q 1.10745,0 1.7362,-0.60732 0.6359,-0.60731 0.6359,-1.70048 v -0.70734 l -1.18605,0.05 q -1.41469,0.05 -2.04344,0.44298 -0.6216,0.38583 -0.6216,1.20749 0,0.64304 0.38582,0.97885 0.39297,0.33581 1.09317,0.33581 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5671"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 435.59357,780.58169 h 1.27179 l 1.71477,4.46555 q 0.56445,1.529 0.7002,2.20777 h 0.0572 q 0.0929,-0.36439 0.38582,-1.24321 0.30009,-0.88597 1.94341,-5.43011 h 1.27179 l -3.36524,8.91681 q -0.50014,1.3218 -1.17176,1.87195 -0.66447,0.5573 -1.63618,0.5573 -0.54301,0 -1.07173,-0.12146 v -0.95027 q 0.39297,0.0857 0.87882,0.0857 1.22178,0 1.74335,-1.37181 l 0.43584,-1.11461 -3.15804,-7.87365 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5673"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 447.51836,788.55537 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93654 0,-1.89339 0.92883,-3.00799 0.93598,-1.11461 2.50786,-1.11461 1.47184,0 2.32922,0.97171 0.85739,0.96456 0.85739,2.55072 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71449 1.86481,0.71449 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.2715 -1.19319,0.38582 -0.5573,0.12146 -1.35039,0.12146 z m -0.32151,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12174 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5675"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 455.98503,780.43879 q 0.52157,0 0.93597,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85738,-0.10717 -0.95027,0 -1.62903,0.77165 -0.67162,0.77164 -0.67162,1.92197 v 4.20119 h -1.18605 v -7.83079 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.05029,-1.1789 0.61446,-0.41441 1.35039,-0.41441 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5677"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 458.21423,787.65512 q 0,-0.47871 0.21434,-0.72163 0.22149,-0.25007 0.62875,-0.25007 0.4144,0 0.64304,0.25007 0.23578,0.24292 0.23578,0.72163 0,0.46442 -0.23578,0.71449 -0.23578,0.25007 -0.64304,0.25007 -0.36439,0 -0.60731,-0.22149 -0.23578,-0.22864 -0.23578,-0.74307 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5679"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 184.19397,810.36153 h -7.30206 v -1.53615 l 2.62217,-2.65074 q 1.16461,-1.1932 1.52186,-1.65047 0.35724,-0.46442 0.51443,-0.85739 0.15719,-0.39296 0.15719,-0.81451 0,-0.62875 -0.3501,-0.93598 -0.34296,-0.30723 -0.92169,-0.30723 -0.60732,0 -1.17891,0.27865 -0.57159,0.27865 -1.19319,0.79308 l -1.20034,-1.42183 q 0.77165,-0.65733 1.27893,-0.92883 0.50729,-0.27151 1.10746,-0.41441 0.60017,-0.15004 1.34324,-0.15004 0.97884,0 1.72906,0.35725 0.75021,0.35724 1.16461,1.00028 0.4144,0.64304 0.4144,1.47184 0,0.72164 -0.25721,1.35753 -0.25007,0.62875 -0.78594,1.29322 -0.52872,0.66448 -1.87196,1.89339 l -1.34323,1.26465 v 0.10003 h 4.55128 z"
+ style="font-weight:bold;line-height:150%"
+ id="path5681"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 185.4872,809.33982 q 0,-0.60017 0.32151,-0.9074 0.32152,-0.30723 0.93598,-0.30723 0.59303,0 0.91455,0.31437 0.32866,0.31438 0.32866,0.90026 0,0.56444 -0.32866,0.8931 -0.32867,0.32152 -0.91455,0.32152 -0.60017,0 -0.92883,-0.31437 -0.32866,-0.32152 -0.32866,-0.90025 z"
+ style="font-weight:bold;line-height:150%"
+ id="path5683"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 203.12789,805.12434 q 0,2.50785 -1.27179,3.94397 -1.26464,1.43612 -3.52242,1.43612 -2.30779,0 -3.56529,-1.40754 -1.25035,-1.41469 -1.25035,-3.98684 0,-2.55072 1.25749,-3.95112 1.2575,-1.40754 3.57244,-1.40754 2.25064,0 3.51528,1.42898 1.26464,1.42897 1.26464,3.94397 z m -8.32378,0 q 0,2.12203 0.90026,3.22234 0.9074,1.09316 2.62931,1.09316 1.73621,0 2.62217,-1.09316 0.88596,-1.09317 0.88596,-3.22234 0,-2.10774 -0.88596,-3.19376 -0.87882,-1.09317 -2.60788,-1.09317 -1.7362,0 -2.6436,1.10031 -0.90026,1.09317 -0.90026,3.18662 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5685"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 206.40025,802.53075 v 5.08001 q 0,0.95741 0.43583,1.42897 0.43584,0.47156 1.36467,0.47156 1.22892,0 1.79337,-0.67162 0.57159,-0.67161 0.57159,-2.19347 v -4.11545 h 1.18605 v 7.83078 h -0.97885 l -0.17148,-1.05029 h -0.0643 q -0.36439,0.57873 -1.01457,0.88596 -0.64304,0.30723 -1.47185,0.30723 -1.42897,0 -2.14346,-0.67876 -0.70734,-0.67877 -0.70734,-2.17205 v -5.12287 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5687"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 216.78889,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67161,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.3358,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5689"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 220.61855,810.36153 h -1.18605 v -11.11742 h 1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5691"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 224.33388,810.36153 h -1.18605 v -7.83078 h 1.18605 z m -1.28608,-9.95281 q 0,-0.40726 0.20006,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40011 -0.2072,0.60017 -0.2072,0.19291 -0.493,0.19291 -0.30008,0 -0.50014,-0.19291 -0.20006,-0.20006 -0.20006,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5693"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 232.22183,810.36153 v -5.06571 q 0,-0.95742 -0.43584,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.22892,0 -1.80051,0.66447 -0.57159,0.66448 -0.57159,2.19348 v 4.1083 h -1.18605 v -7.83078 h 0.96456 l 0.19291,1.07173 h 0.0572 q 0.36439,-0.57873 1.02171,-0.89311 0.65733,-0.32152 1.4647,-0.32152 1.41469,0 2.12918,0.68591 0.71448,0.67876 0.71448,2.17919 v 5.10858 h -1.18604 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5695"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 239.14521,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39439 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71448 1.86481,0.71448 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.1932,0.38583 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5697"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 246.59731,802.53075 h 1.27179 l 1.71477,4.46555 q 0.56445,1.529 0.7002,2.20776 h 0.0572 q 0.0929,-0.36439 0.38582,-1.24321 0.30009,-0.88596 1.94341,-5.4301 h 1.27178 l -3.36523,8.9168 q -0.50014,1.32181 -1.17176,1.87196 -0.66447,0.5573 -1.63618,0.5573 -0.54301,0 -1.07173,-0.12146 v -0.95027 q 0.39297,0.0857 0.87882,0.0857 1.22177,0 1.74335,-1.37182 l 0.43584,-1.1146 -3.15804,-7.87365 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5699"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 261.97309,806.439 q 0,1.91482 -0.96456,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.0503,0 -1.86481,-0.493 -0.81452,-0.49299 -1.2575,-1.41468 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95741,-2.97942 0.95741,-1.07173 2.65789,-1.07173 1.64332,0 2.60788,1.09317 0.97171,1.09316 0.97171,2.95798 z m -5.96598,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78593 1.76479,0.78593 1.16461,0 1.76478,-0.77879 0.60732,-0.78594 0.60732,-2.2935 0,-1.49328 -0.60732,-2.26493 -0.60017,-0.77879 -1.77907,-0.77879 -1.16462,0 -1.75764,0.7645 -0.59303,0.7645 -0.59303,2.27922 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5701"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 265.1597,802.53075 v 5.08001 q 0,0.95741 0.43584,1.42897 0.43584,0.47156 1.36467,0.47156 1.22892,0 1.79337,-0.67162 0.57159,-0.67161 0.57159,-2.19347 v -4.11545 h 1.18605 v 7.83078 h -0.97885 l -0.17148,-1.05029 h -0.0643 q -0.36439,0.57873 -1.01458,0.88596 -0.64303,0.30723 -1.47184,0.30723 -1.42897,0 -2.14346,-0.67876 -0.70735,-0.67877 -0.70735,-2.17205 v -5.12287 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5703"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 276.5915,802.38785 q 0.52158,0 0.93598,0.0857 l -0.16433,1.10031 q -0.48585,-0.10717 -0.85739,-0.10717 -0.95027,0 -1.62903,0.77164 -0.67162,0.77165 -0.67162,1.92198 v 4.20118 h -1.18605 v -7.83078 h 0.97885 l 0.13575,1.45041 h 0.0572 q 0.43584,-0.7645 1.0503,-1.17891 0.61446,-0.4144 1.35038,-0.4144 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5705"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 285.32254,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67161,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.6859 v 1.8148 h 2.27208 v 0.92169 h -2.27208 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5707"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 291.27422,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71448 1.86481,0.71448 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.19319,0.38583 -0.5573,0.12146 -1.35039,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50756,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5709"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 298.05471,806.35326 -2.7222,-3.82251 h 1.35038 l 2.06487,3.00085 2.05773,-3.00085 h 1.33609 l -2.7222,3.82251 2.8651,4.00827 h -1.34324 l -2.19348,-3.17232 -2.21491,3.17232 h -1.34323 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5711"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 306.35705,809.52558 q 0.31438,0 0.60732,-0.0429 0.29293,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5713"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 308.82919,809.60418 q 0,-0.47871 0.21434,-0.72164 0.22149,-0.25007 0.62875,-0.25007 0.4144,0 0.64304,0.25007 0.23578,0.24293 0.23578,0.72164 0,0.46441 -0.23578,0.71448 -0.23578,0.25007 -0.64304,0.25007 -0.36439,0 -0.60731,-0.22149 -0.23578,-0.22863 -0.23578,-0.74306 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5715"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 316.01693,806.35326 q 0,-1.89339 0.55015,-3.54386 0.5573,-1.65047 1.60045,-2.89368 h 1.15747 q -1.02886,1.37897 -1.55044,3.02943 -0.51443,1.65047 -0.51443,3.39382 0,1.71477 0.52872,3.35094 0.52873,1.63618 1.52186,2.98656 h -1.14318 q -1.05029,-1.21463 -1.60045,-2.83651 -0.55015,-1.62189 -0.55015,-3.4867 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5717"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 327.10577,807.58218 q 0,1.37896 -1.00028,2.1506 -1.00028,0.77165 -2.71505,0.77165 -1.85767,0 -2.85795,-0.47871 v -1.17176 q 0.64304,0.27151 1.40039,0.4287 0.75736,0.15718 1.50043,0.15718 1.21463,0 1.82909,-0.45727 0.61445,-0.46442 0.61445,-1.28608 0,-0.54301 -0.22149,-0.88596 -0.21434,-0.3501 -0.72877,-0.64304 -0.50729,-0.29294 -1.55044,-0.66447 -1.45756,-0.52158 -2.08631,-1.23607 -0.6216,-0.71448 -0.6216,-1.86481 0,-1.20748 0.9074,-1.92197 0.9074,-0.71449 2.40068,-0.71449 1.55758,0 2.86509,0.57159 l -0.37868,1.05744 q -1.29322,-0.54301 -2.51499,-0.54301 -0.96456,0 -1.50757,0.41441 -0.54301,0.4144 -0.54301,1.15032 0,0.54301 0.20006,0.89311 0.20005,0.34295 0.67161,0.63589 0.47871,0.2858 1.45756,0.6359 1.64332,0.58588 2.25778,1.2575 0.6216,0.67161 0.6216,1.74335 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5719"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 332.37154,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71448 1.86481,0.71448 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.19319,0.38583 -0.5573,0.12146 -1.35039,0.12146 z m -0.32151,-7.12344 q -0.94313,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5721"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 338.45183,810.36153 h -1.18605 v -11.11742 h 1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5723"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 344.28919,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71448 1.86481,0.71448 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.1932,0.38583 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65732,1.70048 h 4.09401 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5725"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 352.31289,810.50443 q -1.70048,0 -2.63646,-1.04315 -0.92884,-1.0503 -0.92884,-2.96512 0,-1.96485 0.94313,-3.03658 0.95027,-1.07173 2.70076,-1.07173 0.56445,0 1.12889,0.12146 0.56445,0.12147 0.88597,0.2858 l -0.36439,1.00743 q -0.39297,-0.15719 -0.85739,-0.25722 -0.46441,-0.10717 -0.82166,-0.10717 -2.38639,0 -2.38639,3.04372 0,1.44326 0.57874,2.21491 0.58588,0.77164 1.72906,0.77164 0.97885,0 2.00771,-0.42154 v 1.05029 q -0.78594,0.40726 -1.97913,0.40726 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5727"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 358.68612,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50015,-1.6719 h 0.6859 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5729"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 367.66009,809.52558 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5731"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 373.61176,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71448 1.86481,0.71448 1.26465,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.19319,0.38583 -0.55731,0.12146 -1.35039,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50756,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09401 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5733"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 380.39225,806.35326 -2.7222,-3.82251 h 1.35038 l 2.06487,3.00085 2.05773,-3.00085 h 1.33609 l -2.7222,3.82251 2.8651,4.00827 h -1.34324 l -2.19348,-3.17232 -2.21491,3.17232 h -1.34324 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5735"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 388.69461,809.52558 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37154,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5737"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 392.58141,808.66105 0.10717,0.16433 q -0.18576,0.71449 -0.53586,1.65762 -0.3501,0.95026 -0.72878,1.76478 h -0.89311 q 0.19291,-0.74307 0.42155,-1.83623 0.23578,-1.09317 0.32866,-1.7505 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5739"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 401.26957,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67161,0.0643 -2.27208,0 -2.27208,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50015,-1.6719 h 0.6859 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5741"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 409.27184,810.36153 v -5.06571 q 0,-0.95742 -0.43584,-1.42898 -0.43583,-0.47156 -1.36467,-0.47156 -1.23606,0 -1.80765,0.67162 -0.56445,0.67162 -0.56445,2.20062 v 4.09401 h -1.18605 v -11.11742 h 1.18605 v 3.36523 q 0,0.60732 -0.0572,1.00743 h 0.0714 q 0.3501,-0.56444 0.99314,-0.88596 0.65018,-0.32867 1.47899,-0.32867 1.43612,0 2.15061,0.68591 0.72163,0.67876 0.72163,2.1649 v 5.10858 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5743"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 416.19523,810.50443 q -1.73621,0 -2.74363,-1.05744 -1.00029,-1.05744 -1.00029,-2.93655 0,-1.89339 0.92884,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47184,0 2.32923,0.9717 0.85738,0.96456 0.85738,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69306,2.09345 0.66447,0.71448 1.86481,0.71448 1.26464,0 2.5007,-0.52872 v 1.05744 q -0.62874,0.27151 -1.19319,0.38583 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65733,1.70048 h 4.09402 q 0,-1.12175 -0.50015,-1.71477 -0.50014,-0.60017 -1.42897,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5745"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 426.44812,810.36153 v -5.06571 q 0,-0.95742 -0.43583,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.22892,0 -1.80051,0.66447 -0.57159,0.66448 -0.57159,2.19348 v 4.1083 h -1.18605 v -7.83078 h 0.96456 l 0.19291,1.07173 h 0.0572 q 0.36439,-0.57873 1.02171,-0.89311 0.65733,-0.32152 1.4647,-0.32152 1.41469,0 2.12918,0.68591 0.71448,0.67876 0.71448,2.17919 v 5.10858 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5747"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 440.66641,802.95944 q 0,1.58616 -1.08602,2.44355 -1.07887,0.85024 -3.09373,0.85024 h -1.22892 v 4.1083 h -1.21463 v -10.44581 h 2.70791 q 3.91539,0 3.91539,3.04372 z m -5.40867,2.25064 h 1.09317 q 1.61474,0 2.33637,-0.52158 0.72164,-0.52157 0.72164,-1.6719 0,-1.03601 -0.67877,-1.54329 -0.67876,-0.50729 -2.11488,-0.50729 h -1.35753 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5749"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 447.48263,810.36153 -0.23578,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57874,0.25722 -1.45041,0.25722 -1.16461,0 -1.82909,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32895,-0.0429 v -0.48585 q 0,-0.92169 -0.40011,-1.35753 -0.39297,-0.44298 -1.26465,-0.44298 -0.97885,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57874,-0.31437 1.26465,-0.493 0.69305,-0.17862 1.3861,-0.17862 1.4004,0 2.07202,0.62161 0.67876,0.6216 0.67876,1.99342 v 5.34436 h -0.87882 z m -2.67933,-0.83595 q 1.10746,0 1.73621,-0.60731 0.63589,-0.60732 0.63589,-1.70048 v -0.70735 l -1.18605,0.05 q -1.41469,0.05 -2.04343,0.44298 -0.62161,0.38582 -0.62161,1.20749 0,0.64303 0.38582,0.97884 0.39297,0.33581 1.09317,0.33581 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5751"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 453.34144,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5753"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 461.34369,810.36153 v -5.06571 q 0,-0.95742 -0.43583,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.23607,0 -1.80766,0.67162 -0.56444,0.67162 -0.56444,2.20062 v 4.09401 h -1.18605 v -11.11742 h 1.18605 v 3.36523 q 0,0.60732 -0.0572,1.00743 h 0.0715 q 0.3501,-0.56444 0.99313,-0.88596 0.65019,-0.32867 1.47899,-0.32867 1.43612,0 2.15061,0.68591 0.72163,0.67876 0.72163,2.1649 v 5.10858 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5755"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 470.01043,808.22521 q 0,1.09317 -0.81451,1.6862 -0.81452,0.59302 -2.28636,0.59302 -1.55759,0 -2.42926,-0.493 v -1.10031 q 0.56444,0.2858 1.20748,0.45013 0.65019,0.16433 1.25036,0.16433 0.92883,0 1.42897,-0.29294 0.50014,-0.30008 0.50014,-0.9074 0,-0.45727 -0.40011,-0.77879 -0.39297,-0.32866 -1.54329,-0.77164 -1.09317,-0.40726 -1.55759,-0.70735 -0.45727,-0.30723 -0.6859,-0.69305 -0.2215,-0.38582 -0.2215,-0.92169 0,-0.95741 0.7788,-1.50757 0.77879,-0.5573 2.13631,-0.5573 1.26465,0 2.47213,0.51443 l -0.42155,0.96456 q -1.1789,-0.48585 -2.13632,-0.48585 -0.84309,0 -1.27178,0.26436 -0.4287,0.26436 -0.4287,0.72878 0,0.31437 0.15719,0.53586 0.16433,0.22149 0.52158,0.42155 0.35724,0.20006 1.37181,0.57874 1.39325,0.50728 1.87911,1.02171 0.49299,0.51443 0.49299,1.29322 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5757"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 475.21905,807.5536 5.59444,-2.32923 -5.59444,-2.66504 v -1.06459 l 6.86622,3.4224 v 0.7002 l -6.86622,3.01513 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5759"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 497.15382,805.12434 q 0,2.50785 -1.27179,3.94397 -1.26465,1.43612 -3.52243,1.43612 -2.30779,0 -3.56529,-1.40754 -1.25035,-1.41469 -1.25035,-3.98684 0,-2.55072 1.2575,-3.95112 1.25749,-1.40754 3.57243,-1.40754 2.25064,0 3.51528,1.42898 1.26465,1.42897 1.26465,3.94397 z m -8.32378,0 q 0,2.12203 0.90025,3.22234 0.9074,1.09316 2.62931,1.09316 1.73621,0 2.62217,-1.09316 0.88597,-1.09317 0.88597,-3.22234 0,-2.10774 -0.88597,-3.19376 -0.87882,-1.09317 -2.60788,-1.09317 -1.7362,0 -2.6436,1.10031 -0.90025,1.09317 -0.90025,3.18662 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5761"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 502.95546,802.40214 q 1.54329,0 2.39353,1.05744 0.85739,1.0503 0.85739,2.97942 0,1.92911 -0.86453,3.00084 -0.85739,1.06459 -2.38639,1.06459 -0.7645,0 -1.40039,-0.27865 -0.62875,-0.28579 -1.05745,-0.87167 h -0.0857 l -0.25007,1.00742 h -0.85024 v -11.11742 h 1.18604 v 2.70076 q 0,0.9074 -0.0571,1.62903 h 0.0571 q 0.82881,-1.17176 2.45784,-1.17176 z m -0.17148,0.99314 q -1.21462,0 -1.75049,0.7002 -0.53587,0.69305 -0.53587,2.34352 0,1.65046 0.55016,2.36495 0.55016,0.70734 1.76478,0.70734 1.09317,0 1.62904,-0.79308 0.53586,-0.80022 0.53586,-2.2935 0,-1.52901 -0.53586,-2.27922 -0.53587,-0.75021 -1.65762,-0.75021 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5763"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 507.33524,813.87681 q -0.67876,0 -1.10031,-0.17862 v -0.96456 q 0.493,0.1429 0.97171,0.1429 0.5573,0 0.81451,-0.30723 0.26436,-0.30009 0.26436,-0.92169 v -9.11686 h 1.18605 v 9.03112 q 0,2.31494 -2.13632,2.31494 z m 0.85024,-13.46809 q 0,-0.40726 0.20006,-0.59302 0.20006,-0.19291 0.50014,-0.19291 0.2858,0 0.493,0.19291 0.2072,0.19291 0.2072,0.59302 0,0.40011 -0.2072,0.60017 -0.2072,0.19291 -0.493,0.19291 -0.30008,0 -0.50014,-0.19291 -0.20006,-0.20006 -0.20006,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5765"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 515.30892,810.50443 q -1.7362,0 -2.74363,-1.05744 -1.00028,-1.05744 -1.00028,-2.93655 0,-1.89339 0.92883,-3.00799 0.93598,-1.1146 2.50785,-1.1146 1.47185,0 2.32923,0.9717 0.85739,0.96456 0.85739,2.55073 v 0.75021 h -5.39438 q 0.0357,1.37896 0.69305,2.09345 0.66447,0.71448 1.86481,0.71448 1.26464,0 2.50071,-0.52872 v 1.05744 q -0.62875,0.27151 -1.1932,0.38583 -0.5573,0.12146 -1.35038,0.12146 z m -0.32152,-7.12344 q -0.94312,0 -1.50757,0.61446 -0.5573,0.61446 -0.65732,1.70048 h 4.09401 q 0,-1.12175 -0.50014,-1.71477 -0.50014,-0.60017 -1.42898,-0.60017 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5767"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 523.33263,810.50443 q -1.70048,0 -2.63646,-1.04315 -0.92883,-1.0503 -0.92883,-2.96512 0,-1.96485 0.94312,-3.03658 0.95027,-1.07173 2.70077,-1.07173 0.56444,0 1.12889,0.12146 0.56444,0.12147 0.88596,0.2858 l -0.36439,1.00743 q -0.39297,-0.15719 -0.85738,-0.25722 -0.46442,-0.10717 -0.82166,-0.10717 -2.38639,0 -2.38639,3.04372 0,1.44326 0.57873,2.21491 0.58588,0.77164 1.72906,0.77164 0.97885,0 2.00771,-0.42154 v 1.05029 q -0.78593,0.40726 -1.97913,0.40726 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5769"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 529.70585,809.52558 q 0.31438,0 0.60732,-0.0429 0.29294,-0.05 0.46441,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50015,-1.6719 h 0.6859 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5771"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 538.67982,809.52558 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37153,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12174 v -0.57159 l 1.12174,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5773"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 548.08247,806.439 q 0,1.91482 -0.96456,2.9937 -0.96456,1.07173 -2.66504,1.07173 -1.0503,0 -1.86481,-0.493 -0.81452,-0.49299 -1.2575,-1.41468 -0.44298,-0.92169 -0.44298,-2.15775 0,-1.91483 0.95741,-2.97942 0.95742,-1.07173 2.6579,-1.07173 1.64332,0 2.60788,1.09317 0.9717,1.09316 0.9717,2.95798 z m -5.96597,0 q 0,1.50042 0.60017,2.28636 0.60017,0.78593 1.76478,0.78593 1.16462,0 1.76479,-0.77879 0.60731,-0.78594 0.60731,-2.2935 0,-1.49328 -0.60731,-2.26493 -0.60017,-0.77879 -1.77908,-0.77879 -1.16461,0 -1.75764,0.7645 -0.59302,0.7645 -0.59302,2.27922 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5775"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 560.75748,802.95944 q 0,1.58616 -1.08602,2.44355 -1.07888,0.85024 -3.09373,0.85024 h -1.22892 v 4.1083 h -1.21463 v -10.44581 h 2.70791 q 3.91539,0 3.91539,3.04372 z m -5.40867,2.25064 h 1.09316 q 1.61475,0 2.33638,-0.52158 0.72163,-0.52157 0.72163,-1.6719 0,-1.03601 -0.67876,-1.54329 -0.67877,-0.50729 -2.11489,-0.50729 h -1.35752 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5777"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 567.57369,810.36153 -0.23578,-1.1146 h -0.0572 q -0.58588,0.73592 -1.17176,1.00028 -0.57873,0.25722 -1.45041,0.25722 -1.16461,0 -1.82908,-0.60017 -0.65733,-0.60017 -0.65733,-1.70762 0,-2.3721 3.79393,-2.48642 l 1.32894,-0.0429 v -0.48585 q 0,-0.92169 -0.40011,-1.35753 -0.39297,-0.44298 -1.26464,-0.44298 -0.97885,0 -2.21491,0.60017 l -0.36439,-0.9074 q 0.57873,-0.31437 1.26464,-0.493 0.69305,-0.17862 1.38611,-0.17862 1.40039,0 2.07201,0.62161 0.67876,0.6216 0.67876,1.99342 v 5.34436 h -0.87882 z m -2.67932,-0.83595 q 1.10745,0 1.7362,-0.60731 0.63589,-0.60732 0.63589,-1.70048 v -0.70735 l -1.18605,0.05 q -1.41468,0.05 -2.04343,0.44298 -0.6216,0.38582 -0.6216,1.20749 0,0.64303 0.38582,0.97884 0.39297,0.33581 1.09317,0.33581 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5779"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 573.43251,809.52558 q 0.31437,0 0.60731,-0.0429 0.29294,-0.05 0.46442,-0.10003 v 0.9074 q -0.19291,0.0929 -0.57159,0.15005 -0.37154,0.0643 -0.67162,0.0643 -2.27207,0 -2.27207,-2.39353 v -4.65846 h -1.12175 v -0.57159 l 1.12175,-0.493 0.50014,-1.6719 h 0.68591 v 1.8148 h 2.27207 v 0.92169 h -2.27207 v 4.60844 q 0,0.70735 0.33581,1.08602 0.33581,0.37868 0.92169,0.37868 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5781"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 581.43476,810.36153 v -5.06571 q 0,-0.95742 -0.43584,-1.42898 -0.43584,-0.47156 -1.36467,-0.47156 -1.23606,0 -1.80765,0.67162 -0.56445,0.67162 -0.56445,2.20062 v 4.09401 h -1.18605 v -11.11742 h 1.18605 v 3.36523 q 0,0.60732 -0.0572,1.00743 h 0.0715 q 0.3501,-0.56444 0.99314,-0.88596 0.65018,-0.32867 1.47899,-0.32867 1.43612,0 2.1506,0.68591 0.72164,0.67876 0.72164,2.1649 v 5.10858 h -1.18605 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5783"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 587.53649,806.35326 q 0,1.8791 -0.5573,3.50099 -0.55016,1.62188 -1.59331,2.82222 h -1.14318 q 0.99314,-1.34323 1.52186,-2.97941 0.52872,-1.64332 0.52872,-3.35809 0,-1.74335 -0.52158,-3.39382 -0.51443,-1.65046 -1.54329,-3.02943 h 1.15747 q 1.0503,1.25036 1.60045,2.90797 0.55016,1.65047 0.55016,3.52957 z"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.63270473px;line-height:150%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5785"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ inkscape:label="Artwork"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(178.67433,582.63783)"
+ style="display:inline">
+ <rect
+ style="opacity:1;fill:#ffffff;fill-opacity:0;stroke:#005f61;stroke-width:20.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6.5;stroke-opacity:1"
+ id="rect8616"
+ width="171"
+ height="171"
+ x="113.82567"
+ y="-292.90164" />
+ <g
+ transform="matrix(0.24684539,0,0,0.24684539,77.311588,-339.16301)"
+ id="g7244">
+ <text
+ id="text5728"
+ y="566.87408"
+ x="520.99365"
+ style="font-style:normal;font-weight:normal;font-size:180px;line-height:125%;font-family:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#005f61;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Overpass;-inkscape-font-specification:'Overpass Bold';letter-spacing:-10px;fill:#005f61;fill-opacity:1"
+ y="566.87408"
+ x="520.99365"
+ id="tspan5730"
+ sodipodi:role="line">vi<tspan
+ style="letter-spacing:-3px"
+ id="tspan4056">rt</tspan></tspan></text>
+ <g
+ transform="rotate(-1.0000002,22495.34,-11327.946)"
+ id="g4988">
+ <g
+ style="filter:url(#filter5799)"
+ id="g5736">
+ <path
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#25514b"
+ id="path2789"
+ d="m 127.052,43.547 c 17.233,36.62 72.865,128.908 102.86,168.287 -2.858,14.11 -18.673,23.308 -29.809,18.791 L 84.761,64.024 c -0.07,-12.347 22.06,-27.271 42.291,-20.477 z"
+ mask="url(#mask3913)"
+ transform="translate(-1.9999998)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#c8c7c5"
+ id="path2807"
+ d="M 192.119,225.881 73.534,54.687 c 3.174,-9.061 16.868,-17.988 30.225,-18.875 22.158,44.223 78.164,134.394 111.831,178.223 -5.194,8.137 -14.62,12.648 -23.471,11.846 z"
+ mask="url(#mask4168)"
+ transform="translate(3.0630824e-7,8.0000003)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#7c858c"
+ id="path2645"
+ d="M 11.004,141.618 C 4.711,123.341 14.425,103.424 32.702,97.131 L 249.423,22.512 c 18.277,-6.293 38.195,3.422 44.488,21.699 l 43.577,126.552 c 6.293,18.277 -3.421,38.194 -21.698,44.487 L 99.069,289.869 C 80.792,296.161 60.874,286.447 54.581,268.17 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient7006);fill-opacity:1"
+ id="path2651"
+ d="M 7.097,130.272 C 0.803,111.995 10.518,92.078 28.795,85.785 L 245.517,11.166 c 18.277,-6.293 38.194,3.422 44.488,21.699 l 43.577,126.552 c 6.293,18.277 -3.421,38.194 -21.698,44.487 L 95.162,278.523 c -18.277,6.293 -38.195,-3.422 -44.488,-21.699 z" />
+ <path
+ d="m 156.599,246.825 13.562,-4.67 6.521,18.94 -13.562,4.67 z m 25.041,-8.622 13.562,-4.67 6.521,18.939 -13.562,4.67 z m 25.041,-8.622 13.563,-4.67 6.521,18.94 -13.562,4.67 z m 25.042,-8.623 13.562,-4.67 6.521,18.94 -13.562,4.67 z m 25.041,-8.622 13.562,-4.67 6.521,18.939 -13.562,4.67 z m -125.207,43.112 13.562,-4.67 6.521,18.94 -13.562,4.67 z"
+ id="path2655"
+ style="clip-rule:evenodd;opacity:0.7;fill:url(#linearGradient7008);fill-opacity:1;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#radialGradient3548);fill-opacity:1"
+ id="path2659"
+ d="M 2.568,124.472 C -3.725,106.195 5.989,86.278 24.266,79.985 L 245.516,3.807 c 18.277,-6.292 38.195,3.422 44.488,21.699 l 41.752,121.253 c 6.293,18.277 -3.421,38.194 -21.698,44.487 L 88.808,267.424 C 70.531,273.717 50.613,264.002 44.32,245.725 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#7c858c"
+ id="path2665"
+ d="M 1.917,122.581 C -4.376,104.304 5.338,84.387 23.615,78.094 L 244.865,1.916 c 18.277,-6.293 38.194,3.422 44.488,21.699 l 41.752,121.253 c 6.293,18.277 -3.421,38.194 -21.698,44.487 L 88.157,265.533 C 69.88,271.826 49.962,262.111 43.669,243.834 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#radialGradient3552);fill-opacity:1"
+ id="path2671"
+ d="M 5.763,123.175 C -0.35,105.42 9.086,86.072 26.841,79.958 L 243.342,5.416 c 17.755,-6.113 37.104,3.324 43.217,21.079 l 38.787,112.64 c 6.113,17.755 -3.323,37.103 -21.078,43.216 L 87.767,256.893 C 70.012,263.006 50.664,253.569 44.55,235.814 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#3e3e3e"
+ id="path2677"
+ d="M 7.427,123.74 C 1.493,106.508 10.652,87.728 27.885,81.795 L 243.792,7.457 c 17.232,-5.933 36.012,3.226 41.946,20.459 l 39.771,115.497 c 5.934,17.233 -3.226,36.012 -20.458,41.945 L 89.143,259.696 C 71.91,265.629 53.131,256.469 47.197,239.237 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#005f61;fill-opacity:1"
+ id="path3801"
+ d="m 11.049995,126.45117 c -5.3939998,-15.666 2.932,-32.737999 18.598,-38.131999 L 245.226,14.094171 c 15.666,-5.3940003 32.738,2.933 38.132,18.599 l 39.799,115.579999 c 5.394,15.666 -2.932,32.738 -18.598,38.131 l -215.578005,74.225 c -15.666,5.394 -32.738,-2.933 -38.133,-18.599 z" />
+ <g
+ transform="translate(0.31798936,1.8925831)"
+ id="g2695">
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ id="path2697"
+ d="m 30,102.111 c -1.771,-7.695 2.602,-9.355 2.672,-9.379 1.371,-0.472 6.183,-1.554 7.316,1.737 1.025,2.977 -4.531,7.82 -9.583,9.56 -5.015,1.727 -12.469,1.364 -13.494,-1.613 -1.133,-3.291 3.325,-5.401 4.696,-5.873 0.069,-0.024 4.342,-2.237 7.88,5.746 0.13,0.293 0.571,0.074 0.513,-0.178 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#000000;fill-opacity:1"
+ id="path2699"
+ d="m 32.867,154.308 c 7.274,17.049 17.313,28.317 23.916,26.044 6.602,-2.273 7.575,-17.334 2.812,-35.247 -0.367,-3.303 -0.911,-9.542 -0.275,-13.127 0.464,-2.615 -0.112,-3.379 -2.212,-1.079 -0.634,0.694 -1.14,1.345 -1.514,2.022 -7.335,-18.703 -18.159,-31.442 -25.141,-29.038 -6.982,2.404 -7.669,19.106 -1.934,38.36 -0.712,-0.304 -1.51,-0.505 -2.438,-0.662 -3.071,-0.52 -3.054,0.437 -1.079,2.212 2.709,2.435 6.121,7.686 7.865,10.515 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ id="path2701"
+ d="m 30.621,139.494 c 5.498,15.966 14.795,27.243 20.766,25.187 5.971,-2.056 6.355,-16.666 0.857,-32.632 -5.498,-15.966 -14.795,-27.243 -20.766,-25.187 -5.971,2.056 -6.354,16.665 -0.857,32.632 z m 23.197,28.556 c 0.536,1.558 1.515,2.634 2.186,2.403 0.671,-0.231 0.78,-1.681 0.243,-3.239 -0.536,-1.558 -1.515,-2.633 -2.186,-2.403 -0.67,0.231 -0.779,1.682 -0.243,3.239 z m -4.7,1.619 c 0.536,1.558 1.515,2.634 2.186,2.403 0.67,-0.231 0.779,-1.681 0.243,-3.239 -0.536,-1.558 -1.515,-2.634 -2.186,-2.402 -0.671,0.23 -0.78,1.68 -0.243,3.238 z" />
+ <g
+ id="g2703">
+ <ellipse
+ style="fill:#ffe600"
+ id="ellipse2705"
+ ry="2.142"
+ rx="4.428"
+ cy="163.328"
+ cx="50.867001"
+ transform="matrix(-0.9455,0.3255,-0.3255,-0.9455,152.1324,301.1998)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffe600"
+ id="path2707"
+ d="" />
+ </g>
+ </g>
+ <g
+ transform="translate(0.31798936,1.8925831)"
+ id="g2709">
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ id="path2711"
+ d="m 64.282,90.307 c -1.771,-7.695 2.603,-9.355 2.672,-9.379 1.371,-0.472 6.183,-1.554 7.316,1.737 1.025,2.978 -4.531,7.82 -9.583,9.56 -5.015,1.727 -12.469,1.364 -13.494,-1.613 -1.133,-3.291 3.325,-5.401 4.696,-5.873 0.07,-0.024 4.342,-2.237 7.88,5.746 0.13,0.292 0.572,0.074 0.513,-0.178 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#000000;fill-opacity:1"
+ id="path2713"
+ d="m 67.15,142.503 c 7.274,17.049 17.313,28.317 23.916,26.044 6.602,-2.273 7.575,-17.333 2.812,-35.247 -0.367,-3.303 -0.911,-9.542 -0.275,-13.127 0.464,-2.615 -0.112,-3.379 -2.212,-1.079 -0.634,0.694 -1.139,1.345 -1.514,2.022 -7.334,-18.704 -18.159,-31.442 -25.141,-29.038 -6.982,2.404 -7.669,19.106 -1.934,38.36 -0.712,-0.304 -1.51,-0.505 -2.438,-0.662 -3.071,-0.52 -3.054,0.437 -1.079,2.211 2.709,2.436 6.121,7.687 7.865,10.516 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ id="path2715"
+ d="m 64.904,127.689 c 5.498,15.967 14.795,27.243 20.766,25.187 5.971,-2.056 6.355,-16.666 0.857,-32.632 -5.498,-15.967 -14.795,-27.243 -20.766,-25.187 -5.971,2.056 -6.355,16.666 -0.857,32.632 z m 23.197,28.557 c 0.536,1.558 1.515,2.633 2.186,2.402 0.671,-0.231 0.779,-1.681 0.243,-3.239 -0.537,-1.558 -1.515,-2.633 -2.186,-2.402 -0.671,0.231 -0.779,1.681 -0.243,3.239 z m -4.7,1.619 c 0.536,1.558 1.515,2.633 2.185,2.402 0.67,-0.231 0.78,-1.681 0.243,-3.239 -0.536,-1.558 -1.515,-2.633 -2.186,-2.402 -0.671,0.231 -0.779,1.681 -0.242,3.239 z" />
+ <g
+ id="g2717">
+ <ellipse
+ style="fill:#ffe600"
+ id="ellipse2719"
+ ry="2.142"
+ rx="4.428"
+ cy="151.524"
+ cx="85.149002"
+ transform="matrix(-0.9455,0.3255,-0.3255,-0.9455,214.9873,267.075)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffe600"
+ id="path2721"
+ d="" />
+ </g>
+ </g>
+ <g
+ transform="translate(0.31798936,1.8925831)"
+ id="g2723">
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ id="path2725"
+ d="m 98.565,78.502 c -1.771,-7.694 2.602,-9.355 2.672,-9.379 1.371,-0.472 6.183,-1.554 7.316,1.736 1.025,2.978 -4.531,7.82 -9.583,9.56 -5.015,1.727 -12.469,1.364 -13.494,-1.613 -1.133,-3.291 3.325,-5.401 4.696,-5.873 0.069,-0.024 4.342,-2.237 7.88,5.746 0.13,0.293 0.572,0.075 0.513,-0.177 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#000000;fill-opacity:1"
+ id="path2727"
+ d="m 101.433,130.699 c 7.274,17.048 17.313,28.317 23.915,26.043 6.602,-2.274 7.576,-17.333 2.812,-35.246 -0.367,-3.303 -0.911,-9.542 -0.275,-13.127 0.464,-2.615 -0.112,-3.379 -2.212,-1.079 -0.634,0.695 -1.139,1.345 -1.514,2.022 C 116.825,90.609 106,77.871 99.019,80.274 c -6.982,2.404 -7.669,19.106 -1.934,38.36 -0.712,-0.303 -1.51,-0.504 -2.438,-0.662 -3.071,-0.52 -3.054,0.437 -1.079,2.212 2.709,2.435 6.121,7.686 7.865,10.515 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ id="path2729"
+ d="m 99.187,115.885 c 5.498,15.967 14.795,27.243 20.766,25.187 5.971,-2.056 6.355,-16.666 0.857,-32.632 -5.498,-15.967 -14.795,-27.243 -20.766,-25.187 -5.971,2.056 -6.355,16.665 -0.857,32.632 z m 23.197,28.556 c 0.536,1.558 1.515,2.633 2.186,2.403 0.67,-0.231 0.779,-1.681 0.243,-3.239 -0.536,-1.558 -1.515,-2.634 -2.185,-2.403 -0.671,0.232 -0.78,1.682 -0.244,3.239 z m -4.701,1.619 c 0.536,1.558 1.515,2.633 2.186,2.402 0.671,-0.23 0.78,-1.681 0.243,-3.239 -0.536,-1.558 -1.515,-2.633 -2.185,-2.402 -0.671,0.231 -0.78,1.681 -0.244,3.239 z" />
+ <g
+ id="g2731">
+ <ellipse
+ style="fill:#ffe600"
+ id="ellipse2733"
+ ry="2.142"
+ rx="4.428"
+ cy="139.72"
+ cx="119.432"
+ transform="matrix(-0.9455,0.3255,-0.3255,-0.9455,277.8429,232.9489)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffe600"
+ id="path2735"
+ d="" />
+ </g>
+ </g>
+ <g
+ transform="translate(0.31798936,1.8925831)"
+ id="g2739">
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ id="path2741"
+ d="m 96.575,238.982 c 3.342,7.154 7.811,5.77 7.88,5.746 1.371,-0.472 5.829,-2.583 4.696,-5.873 -1.025,-2.977 -8.385,-3.373 -13.437,-1.633 -5.015,1.727 -10.665,6.602 -9.64,9.579 1.133,3.291 5.946,2.208 7.316,1.736 0.07,-0.023 4.799,-0.91 2.672,-9.379 -0.078,-0.31 0.403,-0.41 0.513,-0.176 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#000000;fill-opacity:1"
+ id="path2743"
+ d="m 66.699,196.085 c -4.764,-17.913 -3.791,-32.973 2.812,-35.247 6.602,-2.273 16.641,8.995 23.915,26.043 1.744,2.829 5.156,8.08 7.865,10.514 1.976,1.775 1.992,2.732 -1.079,2.212 -0.927,-0.157 -1.726,-0.358 -2.438,-0.662 5.735,19.254 5.048,35.956 -1.934,38.36 -6.982,2.404 -17.806,-10.334 -25.141,-29.038 -0.374,0.677 -0.88,1.328 -1.514,2.022 -2.1,2.3 -2.675,1.536 -2.212,-1.079 0.637,-3.583 0.093,-9.822 -0.274,-13.125 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ id="path2745"
+ d="m 74.049,209.142 c -5.498,-15.966 -5.114,-30.576 0.857,-32.632 5.971,-2.056 15.269,9.22 20.766,25.187 5.498,15.967 5.114,30.577 -0.857,32.633 -5.971,2.054 -15.268,-9.222 -20.766,-25.188 z m 0.699,-36.785 c -0.536,-1.558 -0.428,-3.008 0.243,-3.239 0.67,-0.231 1.649,0.845 2.185,2.403 0.537,1.558 0.427,3.008 -0.243,3.239 -0.67,0.231 -1.649,-0.845 -2.185,-2.403 z m -4.701,1.619 c -0.536,-1.558 -0.427,-3.008 0.243,-3.239 0.67,-0.231 1.649,0.845 2.186,2.403 0.536,1.558 0.427,3.008 -0.243,3.239 -0.67,0.231 -1.65,-0.845 -2.186,-2.403 z" />
+ <g
+ id="g2747">
+ <ellipse
+ style="fill:#ffe600"
+ id="ellipse2749"
+ ry="2.142"
+ rx="4.428"
+ cy="177.98599"
+ cx="75.361"
+ transform="matrix(-0.9455,0.3255,-0.3255,-0.9455,204.5578,321.744)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffe600"
+ id="path2751"
+ d="" />
+ </g>
+ </g>
+ <g
+ transform="translate(0.31798936,1.8925831)"
+ id="g2753">
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ id="path2755"
+ d="m 130.858,227.178 c 3.341,7.154 7.81,5.77 7.88,5.746 1.371,-0.472 5.829,-2.582 4.696,-5.873 -1.025,-2.977 -8.385,-3.373 -13.437,-1.633 -5.015,1.727 -10.665,6.602 -9.64,9.579 1.133,3.291 5.946,2.208 7.316,1.737 0.069,-0.024 4.799,-0.91 2.672,-9.379 -0.078,-0.312 0.404,-0.412 0.513,-0.177 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#000000;fill-opacity:1"
+ id="path2757"
+ d="m 100.982,184.281 c -4.764,-17.913 -3.791,-32.973 2.812,-35.247 6.602,-2.273 16.641,8.995 23.915,26.044 1.745,2.829 5.157,8.08 7.865,10.513 1.976,1.775 1.993,2.732 -1.079,2.212 -0.927,-0.157 -1.726,-0.358 -2.438,-0.662 5.736,19.254 5.048,35.957 -1.934,38.36 -6.981,2.404 -17.806,-10.334 -25.141,-29.038 -0.374,0.678 -0.879,1.328 -1.513,2.022 -2.1,2.301 -2.676,1.537 -2.212,-1.079 0.636,-3.584 0.092,-9.822 -0.275,-13.125 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ id="path2759"
+ d="m 108.332,197.337 c -5.498,-15.966 -5.114,-30.576 0.857,-32.632 5.971,-2.056 15.268,9.22 20.766,25.187 5.498,15.966 5.114,30.576 -0.857,32.632 -5.971,2.056 -15.268,-9.22 -20.766,-25.187 z m 0.699,-36.784 c -0.536,-1.558 -0.428,-3.008 0.243,-3.239 0.671,-0.231 1.649,0.845 2.186,2.402 0.536,1.558 0.427,3.008 -0.243,3.239 -0.671,0.231 -1.65,-0.845 -2.186,-2.402 z m -4.701,1.618 c -0.536,-1.558 -0.427,-3.008 0.243,-3.239 0.67,-0.231 1.649,0.845 2.185,2.402 0.536,1.557 0.428,3.008 -0.243,3.239 -0.671,0.231 -1.649,-0.844 -2.185,-2.402 z" />
+ <g
+ id="g2761">
+ <ellipse
+ style="fill:#ffe600"
+ id="ellipse2763"
+ ry="2.142"
+ rx="4.428"
+ cy="166.18201"
+ cx="109.643"
+ transform="matrix(-0.9455,0.3255,-0.3255,-0.9455,267.4128,287.6192)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffe600"
+ id="path2765"
+ d="" />
+ </g>
+ </g>
+ <g
+ transform="translate(0.31798936,1.8925831)"
+ id="g2767">
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffe600;fill-rule:evenodd"
+ id="path2769"
+ d="m 165.141,215.373 c 3.342,7.154 7.811,5.77 7.88,5.746 1.371,-0.472 5.829,-2.582 4.696,-5.873 -1.025,-2.977 -8.385,-3.372 -13.438,-1.633 -5.015,1.727 -10.665,6.602 -9.64,9.579 1.133,3.291 5.945,2.208 7.316,1.737 0.069,-0.024 4.799,-0.91 2.672,-9.379 -0.078,-0.311 0.404,-0.411 0.514,-0.177 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#000000;fill-opacity:1"
+ id="path2771"
+ d="m 135.265,172.476 c -4.764,-17.913 -3.791,-32.973 2.812,-35.246 6.603,-2.273 16.641,8.995 23.916,26.043 1.744,2.829 5.156,8.08 7.865,10.514 1.975,1.775 1.992,2.731 -1.079,2.212 -0.927,-0.157 -1.726,-0.358 -2.438,-0.662 5.735,19.254 5.048,35.957 -1.934,38.36 -6.982,2.404 -17.806,-10.334 -25.141,-29.038 -0.374,0.678 -0.88,1.328 -1.514,2.022 -2.1,2.301 -2.676,1.537 -2.212,-1.079 0.636,-3.584 0.092,-9.823 -0.275,-13.126 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="clip-rule:evenodd;fill:#ffffff;fill-opacity:1;fill-rule:evenodd"
+ id="path2773"
+ d="m 142.615,185.533 c -5.498,-15.967 -5.114,-30.577 0.857,-32.633 5.971,-2.056 15.269,9.221 20.766,25.187 5.497,15.966 5.114,30.576 -0.857,32.632 -5.971,2.056 -15.268,-9.22 -20.766,-25.186 z m 0.699,-36.785 c -0.537,-1.558 -0.428,-3.008 0.243,-3.239 0.671,-0.231 1.649,0.845 2.186,2.402 0.537,1.558 0.428,3.008 -0.243,3.239 -0.671,0.231 -1.65,-0.844 -2.186,-2.402 z m -4.701,1.619 c -0.536,-1.558 -0.427,-3.008 0.243,-3.239 0.671,-0.231 1.649,0.845 2.186,2.402 0.537,1.558 0.428,3.008 -0.243,3.239 -0.671,0.231 -1.65,-0.845 -2.186,-2.402 z" />
+ <g
+ id="g2775">
+ <ellipse
+ style="fill:#ffe600"
+ id="ellipse2777"
+ ry="2.142"
+ rx="4.4289999"
+ cy="154.379"
+ cx="143.92599"
+ transform="matrix(-0.9455,0.3256,-0.3256,-0.9455,330.2729,253.4852)" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffe600"
+ id="path2779"
+ d="" />
+ </g>
+ </g>
+ <path
+ d="M 95.108,61.776 244.59003,10.309068 c 15.666,-5.3939967 32.82494,3.185516 38.32619,19.163008 l 40.59032,117.878134 c 5.50125,15.97749 -2.7378,33.302 -18.40381,38.69497 l -103.98001,35.80096 z"
+ id="path2781"
+ style="fill:#3c857c;fill-opacity:1;filter:url(#filter5576)"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="137.92564"
+ y="176.00142"
+ id="text5724"
+ transform="rotate(1.0000002)"><tspan
+ sodipodi:role="line"
+ id="tspan5726"
+ x="137.92564"
+ y="176.00142"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:180px;font-family:Overpass;-inkscape-font-specification:'Overpass Bold';letter-spacing:-10px;fill:#e6e6e6;fill-opacity:1">lib</tspan></text>
+ <path
+ d="m 218.304,241.188 c -2.9,1.834 -8.917,18.762 -6.01,22.858 4.325,6.093 32.696,-15.214 30.405,-21.183 -2.356,-6.136 -21.883,-2.64 -24.395,-1.675 z m -14.341,-9.677 3.368,5.018 c 0,0 0.934,1.385 0.252,4.412 -1.066,4.734 -5.207,16.96 -5.819,27.111 -0.074,1.226 -1.793,12.229 9.964,9.517 11.758,-2.711 36.593,-21.745 41.746,-30.395 5.153,-8.65 -0.843,-13.795 -8.332,-14.524 -7.489,-0.73 -19.089,-0.425 -24.443,0.189 -5.354,0.614 -4.956,-1.165 -9.326,-5.975 -0.327,-0.361 -7.41,4.647 -7.41,4.647 z"
+ id="path2795"
+ style="clip-rule:evenodd;fill:#3e3e3e;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 216.503,238.52 c -2.9,1.834 -8.917,18.762 -6.009,22.858 4.324,6.092 32.696,-15.214 30.405,-21.183 -2.356,-6.136 -21.882,-2.64 -24.396,-1.675 z m -13.394,-10.003 3.368,5.018 c 0,0 0.934,1.385 0.252,4.412 -1.066,4.734 -5.207,16.96 -5.819,27.111 -0.074,1.226 -1.793,12.229 9.964,9.517 11.758,-2.711 36.593,-21.745 41.746,-30.395 5.153,-8.65 -0.843,-13.795 -8.332,-14.524 -7.489,-0.73 -19.089,-0.425 -24.443,0.189 -5.354,0.614 -4.956,-1.165 -9.326,-5.975 -0.328,-0.361 -7.41,4.647 -7.41,4.647 z"
+ id="path2797"
+ style="clip-rule:evenodd;fill:url(#linearGradient7010);fill-opacity:1;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ mask="url(#mask4481)"
+ transform="matrix(1.4295286,0.05310508,-0.05040644,1.2918715,-77.431354,-78.804771)"
+ d="m 214.776,227.853 c -2.797,3.296 -6.24,5.845 -9.926,7.474 0.432,-2.596 -0.374,-3.792 -0.374,-3.792 l -3.368,-5.018 c 0,0 7.083,-5.008 7.41,-4.647 3.294,3.624 3.879,5.527 6.258,5.983 z"
+ id="path2799"
+ style="fill:#54575a;fill-opacity:1"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 116.052,45.547 c 17.234,36.62 72.865,128.908 102.86,168.287 -2.858,14.11 -18.673,23.308 -29.809,18.791 L 73.761,66.024 c -0.07,-12.347 22.06,-27.271 42.291,-20.477 z"
+ id="path2803"
+ style="fill:#c8c7c5"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 113.124,44.661 c 17.233,36.62 75.371,131.675 105.366,171.054 -4.069,13.505 -18.428,20.812 -30.299,17.44 L 72.849,66.555 C 72.779,54.208 95.748,39.956 113.124,44.661 Z"
+ id="path2805"
+ style="fill:#7c858c"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 203.927,231.912 80.383,53.463 c 3.583,-3.084 8.164,-5.73 13.116,-7.479 6.902,12.484 25.22,44.608 54.336,88.542 22.713,34.272 46.085,68.024 64.139,91.973 -2.35,2.316 -5.102,4.145 -8.047,5.413 z m -3.597,1.245 c -1.392,0.368 -2.805,0.615 -4.223,0.733 L 75.218,59.278 c 0.699,-1.099 1.537,-2.181 2.494,-3.23 z"
+ id="path2809"
+ style="clip-rule:evenodd;fill:url(#radialGradient4507);fill-opacity:1;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <text
+ transform="rotate(1.0000002)"
+ id="text5053"
+ y="53.587437"
+ x="-408.52026"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ y="88.978058"
+ x="-408.52026"
+ id="tspan5055"
+ sodipodi:role="line" /></text>
+ <text
+ transform="rotate(1.0000002)"
+ id="text5057"
+ y="-232.88652"
+ x="-525.88629"
+ style="font-style:normal;font-weight:normal;font-size:90px;line-height:125%;font-family:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ y="-153.25761"
+ x="-525.88629"
+ id="tspan5059"
+ sodipodi:role="line" /></text>
+ <text
+ transform="rotate(1.0000002)"
+ id="text5069"
+ y="-200.07454"
+ x="543.02759"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ y="-164.68391"
+ x="543.02759"
+ id="tspan5071"
+ sodipodi:role="line" /></text>
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer3"
+ inkscape:label="Trim Lines"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <g
+ id="g4595"
+ transform="matrix(1.2367579,0,0,-1.2367579,267.26742,1019.9045)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path470"
+ style="fill:none;stroke:#231f20;stroke-width:1.01070714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 210.14,593.273 H 199.138" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path472"
+ style="fill:none;stroke:#231f20;stroke-width:1.01070714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 210.14,449.273 H 199.138" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path474"
+ style="fill:none;stroke:#231f20;stroke-width:1.01070714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 204.639,449.273 v 144" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path476"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 204.639,455.424 h 3.549 l -1.774,-3.076 -1.775,-3.075 -1.776,3.075 -1.773,3.076 h 3.549" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path478"
+ style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ d="m 204.639,587.124 h -3.549 l 1.773,3.076 1.776,3.073 1.775,-3.073 1.774,-3.076 h -3.549" />
+ </g>
+ <g
+ transform="rotate(-90)"
+ style="font-style:normal;font-weight:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:Sans;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="text8536-9">
+ <path
+ d="m -396.49494,509.63711 q 1.51471,0 2.40782,0.85024 0.90025,0.85024 0.90025,2.32923 0,1.7505 -1.07887,2.69362 -1.07888,0.94312 -3.08659,0.94312 -1.74335,0 -2.81508,-0.56444 v -1.90768 q 0.56445,0.30008 1.31466,0.49299 0.75021,0.18577 1.42183,0.18577 2.022,0 2.022,-1.65761 0,-1.57902 -2.09345,-1.57902 -0.37868,0 -0.83595,0.0786 -0.45727,0.0715 -0.74307,0.15719 l -0.87882,-0.47156 0.39297,-5.32293 h 5.66589 v 1.87195 h -3.72963 l -0.19291,2.05058 0.25007,-0.05 q 0.43584,-0.10003 1.07888,-0.10003 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5992"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -391.70073,515.28871 q 0,-0.60017 0.32152,-0.9074 0.32152,-0.30723 0.93598,-0.30723 0.59302,0 0.91454,0.31437 0.32866,0.31438 0.32866,0.90026 0,0.56444 -0.32866,0.89311 -0.32866,0.32152 -0.91454,0.32152 -0.60017,0 -0.92884,-0.31438 -0.32866,-0.32152 -0.32866,-0.90025 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5994"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -380.53329,511.08752 q 0,2.73649 -0.90026,4.05115 -0.89311,1.31465 -2.75792,1.31465 -1.80765,0 -2.72934,-1.35752 -0.91454,-1.35753 -0.91454,-4.00828 0,-2.76507 0.89311,-4.07258 0.8931,-1.31466 2.75077,-1.31466 1.80766,0 2.72934,1.37182 0.92884,1.37182 0.92884,4.01542 z m -5.10859,0 q 0,1.92197 0.32867,2.75792 0.33581,0.82881 1.12174,0.82881 0.77165,0 1.1146,-0.8431 0.34296,-0.84309 0.34296,-2.74363 0,-1.92197 -0.3501,-2.75792 -0.34296,-0.8431 -1.10746,-0.8431 -0.77879,0 -1.1146,0.8431 -0.33581,0.83595 -0.33581,2.75792 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5996"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -375.83196,505.72886 q 1.50042,0 2.41496,0.68591 0.92169,0.67877 0.92169,1.83624 0,0.80022 -0.44298,1.42897 -0.44298,0.6216 -1.42897,1.1146 1.17176,0.62875 1.67904,1.31466 0.51443,0.67876 0.51443,1.49328 0,1.28607 -1.00742,2.07201 -1.00743,0.77879 -2.65075,0.77879 -1.71477,0 -2.69362,-0.72877 -0.97885,-0.72878 -0.97885,-2.06487 0,-0.89311 0.47156,-1.58617 0.47871,-0.69305 1.52901,-1.22177 -0.89311,-0.56445 -1.28608,-1.20748 -0.39297,-0.64304 -0.39297,-1.40754 0,-1.12175 0.92883,-1.8148 0.92884,-0.69306 2.42212,-0.69306 z m -1.62903,7.80221 q 0,0.61446 0.42869,0.95741 0.42869,0.34296 1.17176,0.34296 0.82166,0 1.22892,-0.3501 0.40725,-0.35725 0.40725,-0.93598 0,-0.47871 -0.40725,-0.89311 -0.40012,-0.42155 -1.30752,-0.89311 -1.52185,0.7002 -1.52185,1.77193 z m 1.61474,-6.18746 q -0.56445,0 -0.91455,0.29294 -0.34295,0.28579 -0.34295,0.77164 0,0.4287 0.2715,0.77165 0.27865,0.33581 1.00029,0.69305 0.70019,-0.32866 0.97885,-0.67162 0.27865,-0.34295 0.27865,-0.79308 0,-0.49299 -0.35725,-0.77879 -0.35724,-0.28579 -0.91454,-0.28579 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path5998"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -363.48562,516.45332 q -3.72962,0 -3.72962,-4.09401 0,-2.03629 1.01457,-3.10802 1.01457,-1.07888 2.90797,-1.07888 1.3861,0 2.48641,0.54301 l -0.64304,1.68619 q -0.51443,-0.2072 -0.95741,-0.33581 -0.44298,-0.13575 -0.88596,-0.13575 -1.70049,0 -1.70049,2.41497 0,2.34352 1.70049,2.34352 0.62874,0 1.16461,-0.16433 0.53587,-0.17148 1.07173,-0.52872 v 1.86481 q -0.52872,0.33581 -1.07173,0.46441 -0.53587,0.12861 -1.35753,0.12861 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path6000"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m -352.06096,516.31042 h -2.17919 v -4.6656 q 0,-0.86453 -0.29294,-1.29322 -0.28579,-0.43584 -0.9074,-0.43584 -0.83595,0 -1.21463,0.61446 -0.37868,0.61446 -0.37868,2.022 v 3.7582 h -2.17918 v -7.98797 h 1.66475 l 0.29294,1.02172 h 0.12147 q 0.32152,-0.55015 0.92883,-0.85738 0.60731,-0.31438 1.39325,-0.31438 1.79336,0 2.42926,1.17176 h 0.19291 q 0.32152,-0.5573 0.94312,-0.86453 0.62875,-0.30723 1.41469,-0.30723 1.35752,0 2.05058,0.7002 0.7002,0.69305 0.7002,2.2292 v 5.20861 h -2.18634 v -4.6656 q 0,-0.86453 -0.29294,-1.29322 -0.28579,-0.43584 -0.9074,-0.43584 -0.80022,0 -1.20033,0.57159 -0.39297,0.57159 -0.39297,1.8148 z"
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.63270473px;line-height:521.00000381%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start"
+ id="path6002"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ y="285.73621"
+ x="288.5"
+ height="178.99998"
+ width="179"
+ id="rect8620"
+ style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#0093d9;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2, 4.00000009;stroke-dashoffset:6.5;stroke-opacity:1" />
+ <rect
+ style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6.5;stroke-opacity:1"
+ id="rect8624"
+ width="190.25003"
+ height="190.25002"
+ x="282.87497"
+ y="280.11118" />
+ <rect
+ y="291.36118"
+ x="294.125"
+ height="167.75"
+ width="167.75002"
+ id="rect8626"
+ style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#db3279;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6.5;stroke-opacity:1" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="Preview Without Bleeds"
+ style="display:none"
+ sodipodi:insensitive="true">
+ <path
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:6.5;stroke-opacity:1"
+ d="M 258.60352,257.08203 V 493.38867 H 497.39648 V 257.08203 Z M 288.5,285.73633 h 179 v 179 h -179 z"
+ id="rect8631"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--
2.14.3
Regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
2
3
[libvirt] [PATCH] travis: add a scenario for running make distcheck
by Daniel P. Berrangé 26 Feb '18
by Daniel P. Berrangé 26 Feb '18
26 Feb '18
Running "make distcheck" ensures that we have CLEANFILES and uninstall
rules setup correctly, as well as validating VPATH builds succeeed.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
.travis.yml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index 3f26a1eeee..4bdf034829 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,8 +6,13 @@ matrix:
include:
- compiler: gcc
dist: precise
+ # Special scenario to run distcheck, so we don't waste time duplicating
+ # work in all the other scenarios. Doesn't work on precise due to the
+ # CVE-2012-3386 flaw being present on that Ubuntu version
- compiler: gcc
dist: trusty
+ script:
+ - make -j3 distcheck
- compiler: clang
dist: precise
- compiler: clang
--
2.14.3
2
1
[libvirt] [PATCH] nwfilter: save error from DHCP snoop thread to report in main thread
by Laine Stump 26 Feb '18
by Laine Stump 26 Feb '18
26 Feb '18
A problem encountered due to a bug in libpcap was reported to the caller as:
An error occurred, but the cause is unknown
This was because the error had been logged in the DHCPSnoop
thread. The worker thread handling the API call to start a domain
spins up the DHCPSnoop thread which watches for dhcp packets with
libpcap, then uses virCondSignal() to notify the worker thread (which
has been waiting with virCondWait()). The worker thread knows that
there was an error (because threadStatus != THREAD_STATUS_OK), but the
error info had been stored in thread-specific storage for the other
thread, so the worker thread can only report that there was a failure,
but it doesn't know why.
The solution is to save the error that was logged (with
virErrorPreserveLast() into the object the is used to share info
between the threads, then we can set the error in the worker thread
using virErrorRestore().
In the case of the error I was looking at, this changed the "unknown"
message into:
internal error: pcap_setfilter: can't remove kernel filter:
Bad file descriptor
Signed-off-by: Laine Stump <laine(a)laine.org>
---
src/nwfilter/nwfilter_dhcpsnoop.c | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
diff --git a/src/nwfilter/nwfilter_dhcpsnoop.c b/src/nwfilter/nwfilter_dhcpsnoop.c
index 8e955150fa..6069e70460 100644
--- a/src/nwfilter/nwfilter_dhcpsnoop.c
+++ b/src/nwfilter/nwfilter_dhcpsnoop.c
@@ -147,6 +147,7 @@ struct _virNWFilterSnoopReq {
virNWFilterSnoopIPLeasePtr start;
virNWFilterSnoopIPLeasePtr end;
char *threadkey;
+ virErrorPtr threadError;
virNWFilterSnoopThreadStatus threadStatus;
virCond threadStatusCond;
@@ -639,6 +640,7 @@ virNWFilterSnoopReqFree(virNWFilterSnoopReqPtr req)
virMutexDestroy(&req->lock);
virCondDestroy(&req->threadStatusCond);
+ virFreeError(req->threadError);
VIR_FREE(req);
}
@@ -1404,10 +1406,12 @@ virNWFilterDHCPSnoopThread(void *req0)
/* let creator know how well we initialized */
if (error || !threadkey || tmp < 0 || !worker ||
- ifindex != req->ifindex)
+ ifindex != req->ifindex) {
+ virErrorPreserveLast(&req->threadError);
req->threadStatus = THREAD_STATUS_FAIL;
- else
+ } else {
req->threadStatus = THREAD_STATUS_OK;
+ }
virCondSignal(&req->threadStatusCond);
@@ -1713,9 +1717,16 @@ virNWFilterDHCPSnoopReq(virNWFilterTechDriverPtr techdriver,
}
/* sync with thread */
- if (virCondWait(&req->threadStatusCond, &req->lock) < 0 ||
- req->threadStatus != THREAD_STATUS_OK)
+ if (virCondWait(&req->threadStatusCond, &req->lock) < 0) {
+ virReportSystemError(errno, "%s",
+ _("unable to wait on dhcp snoop thread"));
goto exit_snoop_cancel;
+ }
+
+ if (req->threadStatus != THREAD_STATUS_OK) {
+ virErrorRestore(&req->threadError);
+ goto exit_snoop_cancel;
+ }
virNWFilterSnoopReqUnlock(req);
--
2.14.3
2
1
[libvirt] [PATCH 0/2] Cosmetic changes to the banner SVGs to enable object alignment
by Erik Skultety 26 Feb '18
by Erik Skultety 26 Feb '18
26 Feb '18
Erik Skultety (2):
docs: logos: Remove empty text elements from the banner SVGs
docs: logos: Resize the 'Drop shadow' filter bounding box
docs/logos/logo-banner-dark.svg | 39 +++++----------------------------------
docs/logos/logo-banner-light.svg | 39 +++++----------------------------------
2 files changed, 10 insertions(+), 68 deletions(-)
--
2.13.6
3
6
Nikolay Shirokovskiy (2):
daemon: fix rpc event leak on error path in remoteDispatchObjectEventSend
lxc: fix rpc event leak on error path in virLXCControllerEventSend
src/lxc/lxc_controller.c | 3 ++-
src/remote/remote_daemon_dispatch.c | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
--
1.8.3.1
2
4
Hi folks,
those who attended at least one conference for the past year have probably
noticed the rising trend (more like "sticker hype") of FOSS projects giving away
these hexagon stickers, it's very inexpensive way of making some promo for
their project and since we don't do many promos (AFAIK none to be precise) I
guess as a project that's been going strong for 12 years already we should
probably start somewhere, even baby steps count (as it turns out in this case -
- literally...). So, I've taken our libvirt-publican repo and came up with a
few various color combinations for libvirt hexagon sticker design. Below you
can find links to my personal google drive (these are hexagon meshes, I can,
or anyone can for that matter, isolate individual designs and send them as
separate patches on demand), since each of the SVGs is over 1.5MB and I'd easily
run into message size limits for the mailing list, had I gone with sending these
as patches against libvirt-publican.
Lastly, I just want to point out, if it's not obvious, that the last design was
meant as a joke (apparently I had a bit too much fun spending time on this)
reflecting what's becoming "the new black" in "sticker design world" - emphasis
on simplification while retaining its expressiveness and unambiguity (yeah,
right...) - but I'm not going to point the finger, but there's a heptagon
involved ;).
Cheers,
Erik
[1] https://drive.google.com/open?id=1xhn0GLvCKMcEOUnqn6boghaUOgjA8sOG
[2] https://drive.google.com/open?id=1b2MUyv0eo723F2rorWnmv1sTeCycUCN4
[joke] https://drive.google.com/open?id=1SBjJn2eptXFQVPuEMxzGY8CX6TFX1IzP
[3] https://github.com/terinjokes/StickerConstructorSpec
PS: the last link is the specification I used for the design
PS-2: if someone would like to point out that the joke proposal is missing a
few color combination, it was on purpose...
7
19
Currently, we are unable to migrate ANY domain. These should get in
before the release.
Okay, the first one is not that crucial. The last one is!
Michal Privoznik (3):
qemuMigrationSrcIsSafe: Check local storage more thoroughly
qemuProcessLaunch: Print all arguments to debug
qemu: Add virConnectPtr back to some migration methods
src/qemu/qemu_driver.c | 12 ++++++------
src/qemu/qemu_migration.c | 45 ++++++++++++++++++++++++++++-----------------
src/qemu/qemu_migration.h | 2 ++
src/qemu/qemu_process.c | 4 ++--
4 files changed, 38 insertions(+), 25 deletions(-)
--
2.16.1
2
6
Build is broken only in not yet released 4.1.
Nikolay Shirokovskiy (2):
vz: build fix after excluding cross driver headers
vz: build fix: handle missing switch enum cases
src/vz/vz_sdk.c | 17 +++++++++--------
src/vz/vz_utils.c | 2 +-
2 files changed, 10 insertions(+), 9 deletions(-)
--
1.8.3.1
2
3
[libvirt] [PATCH] util: xml: Don't conflict with other libxml2 user callbacks
by Cole Robinson 26 Feb '18
by Cole Robinson 26 Feb '18
26 Feb '18
lxml is a popular python XML processing library. It uses libxml2
behind the scenes, and registers custom callbacks via
xmlSetExternalEntityLoader. However this can cause crashes if
if an app uses both lxml and libxml2 together in the same process.
This is a known limitation of lxml and libxml2 generally. It also
prevents us from using lxml in virt-manager:
https://bugzilla.redhat.com/show_bug.cgi?id=1544019
However it's easy enough to work around in libvirt, by unsetting the
EntityLoader callback to a known state before we ask libxml2 to
parse a file from disk.
Signed-off-by: Cole Robinson <crobinso(a)redhat.com>
---
src/util/virxml.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/src/util/virxml.c b/src/util/virxml.c
index 6e87605ea..3e01794f9 100644
--- a/src/util/virxml.c
+++ b/src/util/virxml.c
@@ -810,9 +810,14 @@ virXMLParseHelper(int domcode,
pctxt->sax->error = catchXMLError;
if (filename) {
+ /* Reset any libxml2 file callbacks, other libs (like python lxml)
+ * may have set their own which can get crashy */
+ xmlExternalEntityLoader origloader = xmlGetExternalEntityLoader();
+ xmlSetExternalEntityLoader(xmlNoNetExternalEntityLoader);
xml = xmlCtxtReadFile(pctxt, filename, NULL,
XML_PARSE_NONET |
XML_PARSE_NOWARNING);
+ xmlSetExternalEntityLoader(origloader);
} else {
xml = xmlCtxtReadDoc(pctxt, BAD_CAST xmlStr, url, NULL,
XML_PARSE_NONET |
--
2.14.3
3
2
Inspired-by: Laine Stump <laine(a)laine.org>
Day-of-the-week: Friday <6>
Ján Tomko (16):
vboxDumpSharedFolders: rename non-standard label
vboxDumpSharedFolders: remove pointless comment
vboxDumpSharedFolders: return a value
vboxDumpNetwork: add temp variable for current network
vboxDumpNetwork: rename to vboxDumpNetworks
vboxDumpNetwork: re-introduce this function
vboxDumpNetworks: reduce indentation level
vboxDumpNetwork: allocate the network too
vboxDumpNetworks: delete pointless comment
vboxDumpNetworks: do not allocate def->nets upfront
vboxDumpNetwork: use virMacAddrParseHex
vboxDumpNetwork: Use a single utf16 variable
vboxDumpNetwork: Use a single utf8 temp variable
vboxDumpNetwork: use a switch for attachmentType
vboxDumpNetwork: use VIR_STEAL_PTR instead of VIR_STRDUP
vboxDumpNetwork: use switch for adapterType
src/vbox/vbox_common.c | 243 ++++++++++++++++++++++++-------------------------
1 file changed, 120 insertions(+), 123 deletions(-)
--
2.13.6
2
17
[libvirt] [PATCH jenkins-ci] Fix workspace for python check/rpm jobs
by Daniel P. Berrangé 23 Feb '18
by Daniel P. Berrangé 23 Feb '18
23 Feb '18
The check/rpm jobs were using a different workspace to the build job, so
never saw the correct content.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
Pushed as a build fix for virt-manager CI
jobs/python-distutils.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/jobs/python-distutils.yaml b/jobs/python-distutils.yaml
index 510769e..16eca1c 100644
--- a/jobs/python-distutils.yaml
+++ b/jobs/python-distutils.yaml
@@ -58,7 +58,7 @@
name: '{name}-{branch}-py{pyver}-check'
project-type: matrix
description: '{title} Check (Python {pyver})'
- workspace: '{name}-{branch}'
+ workspace: '{name}-{branch}-py{pyver}'
child-workspace: '.'
block-downstream: true
block-upstream: true
@@ -97,7 +97,7 @@
name: '{name}-{branch}-py{pyver}-rpm'
project-type: matrix
description: '{title} RPM (Python {pyver})'
- workspace: '{name}-{branch}'
+ workspace: '{name}-{branch}-py{pyver}'
child-workspace: '.'
block-downstream: true
block-upstream: true
--
2.14.3
1
0
23 Feb '18
From: Christian Ehrhardt <christian.ehrhardt(a)canonical.com>
While libvirt-guests.sh is running cases can let guest_is_on fail which
causes check_guests_shutdown to print output.
That output shall not spill into the users of function
check_guests_shutdown which is therefore now returning values in a
variable like guest_is_on already did.
Original-Author: Christian Ehrhardt <christian.ehrhardt(a)canonical.com>
Modified-By: Jorge Niedbalski <niedbalski(a)ubuntu.com>
---
tools/libvirt-guests.sh.in | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/tools/libvirt-guests.sh.in b/tools/libvirt-guests.sh.in
index 8a158cca4..91a2f3283 100644
--- a/tools/libvirt-guests.sh.in
+++ b/tools/libvirt-guests.sh.in
@@ -329,12 +329,13 @@ guest_count()
# check_guests_shutdown URI GUESTS
# check if shutdown is complete on guests in "GUESTS" and returns only
# guests that are still shutting down
+# Result is returned in "guests_shutting_down"
check_guests_shutdown()
{
uri=$1
guests=$2
- guests_up=
+ guests_shutting_down=
for guest in $guests; do
if ! guest_is_on "$uri" "$guest" >/dev/null 2>&1; then
eval_gettext "Failed to determine state of guest: \$guest. Not tracking it anymore."
@@ -342,10 +343,9 @@ check_guests_shutdown()
continue
fi
if "$guest_running"; then
- guests_up="$guests_up $guest"
+ guests_shutting_down="$guests_shutting_down $guest"
fi
done
- echo "$guests_up"
}
# print_guests_shutdown URI BEFORE AFTER
@@ -392,8 +392,10 @@ shutdown_guests_parallel()
guest=$1
shift
guests=$*
- shutdown_guest_async "$uri" "$guest"
- on_shutdown="$on_shutdown $guest"
+ if [ -z "$(echo $on_shutdown | grep $guest)" -a -n "$(guest_name "$uri" "$guest")" ]; then
+ shutdown_guest_async "$uri" "$guest"
+ on_shutdown="$on_shutdown $guest"
+ fi
done
sleep 1
@@ -420,7 +422,8 @@ shutdown_guests_parallel()
fi
on_shutdown_prev=$on_shutdown
- on_shutdown=$(check_guests_shutdown "$uri" "$on_shutdown")
+ check_guests_shutdown "$uri" "$on_shutdown"
+ on_shutdown="$guests_shutting_down"
print_guests_shutdown "$uri" "$on_shutdown_prev" "$on_shutdown"
done
}
--
2.14.1
2
1
Re: [libvirt] [Libvirt-ci] Build failed in Jenkins: virt-manager-master-py3-check » libvirt-debian-9 #14
by Cole Robinson 23 Feb '18
by Cole Robinson 23 Feb '18
23 Feb '18
I'm confused why this is still failing. I set up a debian9 vm,
reproduced the issue which fails about 50% of the time, and verified
that commit 059fb7d0ba1d414db3db485903972b48c1dda629 fixes it
completely, or at least I can't reproduce. But this is still failing.
Weirdly though
On 02/22/2018 04:18 PM, ci(a)centos.org wrote:
> See <https://ci.centos.org/job/virt-manager-master-py3-check/systems=libvirt-deb…>
>
> ------------------------------------------
> Started by upstream project "virt-manager-master-py3-check" build number 14
> originally caused by:
> Started by upstream project "virt-manager-master-py3-build" build number 14
> originally caused by:
> Started by an SCM change
> [EnvInject] - Loading node environment variables.
> Building remotely on libvirt-debian-9 (libvirt) in workspace <https://ci.centos.org/job/virt-manager-master-py3-check/systems=libvirt-deb…>
> [virt-manager-master] $ /bin/sh -xe /tmp/jenkins3940620727838286920.sh
> + MAKE=make
> + uname
> + unamestr=Linux
> + [ Linux = FreeBSD ]
> + export PATH=/home/jenkins/build/libvirt/bin:/home/jenkins/build/libvirt/bin:/home/jenkins/build/libvirt/bin:/home/jenkins/build/libvirt/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
> + export PYTHONPATH=/home/jenkins/build/libvirt/lib/python3.4/site-packages:/home/jenkins/build/libvirt/lib64/python3.4/site-packages:/home/jenkins/build/libvirt/lib/python3.5/site-packages:/home/jenkins/build/libvirt/lib64/python3.5/site-packages:/home/jenkins/build/libvirt/lib/python3.6/site-packages:/home/jenkins/build/libvirt/lib64/python3.6/site-packages:/home/jenkins/build/libvirt/lib/python3.7/site-packages:/home/jenkins/build/libvirt/lib64/python3.7/site-packages
> + python3 ./setup.py test
> running test
> ..............................................................................................................................F...............................................................................................................................................s........................................................................................................................................................................
> ======================================================================
> FAIL: testCLI0002virt_install_singleton_config_2 (tests.clitest.CLITests)
> ----------------------------------------------------------------------
> Traceback (most recent call last):
> File "<https://ci.centos.org/job/virt-manager-master-py3-check/systems=libvirt-deb…",> line 1110, in <lambda>
> return lambda s: cmdtemplate(s, cmd)
> File "<https://ci.centos.org/job/virt-manager-master-py3-check/systems=libvirt-deb…",> line 1109, in cmdtemplate
> _cmdobj.run(self)
> File "<https://ci.centos.org/job/virt-manager-master-py3-check/systems=libvirt-deb…",> line 277, in run
> tests.fail(err)
These line numbers don't match up with the line numbers in virt-manager
git master. Is there some chance it's using old code? it certainly seems
to be detecting new commits coming in which trigger builds, but I thing
something weird is going on here
- Cole
2
1
23 Feb '18
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
Pushed as a build fix
src/Makefile.am | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index a7f03319c1..cb30c50f14 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -3181,7 +3181,8 @@ install-upstart: install-sysconfig
for f in $(UPSTART_FILES:%.upstart=%); \
do \
tgt=`basename $$f` ; \
- $(INSTALL_SCRIPT) $$f.upstart $(DESTDIR)$(sysconfdir)/event.d/$$tgt ; \
+ $(INSTALL_SCRIPT) $(srcdir)/$$f.upstart \
+ $(DESTDIR)$(sysconfdir)/event.d/$$tgt ; \
done
uninstall-upstart: uninstall-sysconfig
--
2.14.3
1
0
23 Feb '18
The src/Makefile.am is quite large and has quite poor grouping of rules
/ variables / etc. This makes it increasingly hard to identify all the
rules relating to a particular area of code.
Traditionally one might create Makefile.am's in each sub-directory and
let make recurse into each. Recursive make is quite a bad idea in
general though because it harms parallelization and means that make does
not have a full view of dependencies.
This series thus takes a different approach to modularization which is
to make use of the "include" statement to pull in makefile fragments
from subdirectories. automake fully expands all "include" statements
when generating the Makefile.in, so we still end up with a single
monolithic file for the eventual build. Aside from ensuring make still
has a full view of dependencies, this also means that all variables are
still in a global namespace.
In doing this split, I've taken the opportunity to santize the variable
declarations into a consistent style. Any variable that is assigned more
than one value now uses line continuations with exactly one value per
line and a trailing $(NULL). It would be nice to enforce this style with
a syntax-check rule but I've not figured this out yet.
This series only moves the virt drivers. So there's obviously a further
series to follow behind this to finish the job for other drivers.
Daniel P. Berrangé (16):
make: split UML driver build rules into uml/Makefile.inc.am
make: split PHyp driver build rules into phyp/Makefile.inc.am
make: split test driver build rules into test/Makefile.inc.am
make: split ESX driver build rules into esx/Makefile.inc.am
make: split hyperv driver build rules into hyperv/Makefile.inc.am
make: split vmware driver build rules into vmware/Makefile.inc.am
make: split vbox driver build rules into vbox/Makefile.inc.am
make: split openvz driver build rules into openvz/Makefile.inc.am
make: split qemu driver build rules into qemu/Makefile.inc.am
make: split bhyve driver build rules into bhyve/Makefile.inc.am
make: split xenconfig driver build rules into
xenconfig/Makefile.inc.am
make: split libxl driver build rules into libxl/Makefile.inc.am
make: split xen driver build rules into xen/Makefile.inc.am
make: split xenapi driver build rules into xenapi/Makefile.inc.am
make: split vz driver build rules into vz/Makefile.inc.am
make: split lxc driver build rules into lxc/Makefile.inc.am
src/Makefile.am | 872 +++---------------------------------------
src/bhyve/Makefile.inc.am | 73 ++++
src/esx/Makefile.inc.am | 90 +++++
src/hyperv/Makefile.inc.am | 59 +++
src/libxl/Makefile.inc.am | 104 +++++
src/lxc/Makefile.inc.am | 207 ++++++++++
src/openvz/Makefile.inc.am | 28 ++
src/phyp/Makefile.inc.am | 19 +
src/qemu/Makefile.inc.am | 148 +++++++
src/test/Makefile.inc.am | 26 ++
src/uml/Makefile.inc.am | 46 +++
src/vbox/Makefile.inc.am | 76 ++++
src/vmware/Makefile.inc.am | 27 ++
src/vz/Makefile.inc.am | 38 ++
src/xen/Makefile.inc.am | 67 ++++
src/xenapi/Makefile.inc.am | 28 ++
src/xenconfig/Makefile.inc.am | 28 ++
17 files changed, 1122 insertions(+), 814 deletions(-)
create mode 100644 src/bhyve/Makefile.inc.am
create mode 100644 src/esx/Makefile.inc.am
create mode 100644 src/hyperv/Makefile.inc.am
create mode 100644 src/libxl/Makefile.inc.am
create mode 100644 src/lxc/Makefile.inc.am
create mode 100644 src/openvz/Makefile.inc.am
create mode 100644 src/phyp/Makefile.inc.am
create mode 100644 src/qemu/Makefile.inc.am
create mode 100644 src/test/Makefile.inc.am
create mode 100644 src/uml/Makefile.inc.am
create mode 100644 src/vbox/Makefile.inc.am
create mode 100644 src/vmware/Makefile.inc.am
create mode 100644 src/vz/Makefile.inc.am
create mode 100644 src/xen/Makefile.inc.am
create mode 100644 src/xenapi/Makefile.inc.am
create mode 100644 src/xenconfig/Makefile.inc.am
--
2.14.3
2
17
23 Feb '18
libxl requires the memory sizes to be rounded to 1MiB increments.
Attempting to start a domain that violates this requirement will
fail with the marginally helpful error
2018-02-22 01:55:32.921+0000: xc: panic: xc_dom_boot.c:141: xc_dom_boot_mem_init: can't allocate low memory for domain: Out of memory
2018-02-22 01:55:32.921+0000: libxl: libxl_dom.c:671:libxl__build_dom: xc_dom_boot_mem_init failed: No such file or directory
Round the maximum and current memory values to the next 1MiB
increment when generating the libxl_domain_config object.
Signed-off-by: Jim Fehlig <jfehlig(a)suse.com>
---
V2:
Set rounded memory values in virDomainDef object so they are correctly
reflected in the live config.
src/libxl/libxl_conf.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/libxl/libxl_conf.c b/src/libxl/libxl_conf.c
index 57cb4c0ad..d074edc9c 100644
--- a/src/libxl/libxl_conf.c
+++ b/src/libxl/libxl_conf.c
@@ -367,6 +367,10 @@ libxlMakeDomBuildInfo(virDomainDefPtr def,
}
b_info->sched_params.weight = 1000;
+ /* Xen requires the memory sizes to be rounded to 1MiB increments */
+ virDomainDefSetMemoryTotal(def,
+ VIR_ROUND_UP(virDomainDefGetMemoryInitial(def), 1024));
+ def->mem.cur_balloon = VIR_ROUND_UP(def->mem.cur_balloon, 1024);
b_info->max_memkb = virDomainDefGetMemoryInitial(def);
b_info->target_memkb = def->mem.cur_balloon;
if (hvm) {
--
2.16.1
2
1
23 Feb '18
Firstly, for rpm we are building libvirt with
--init-script=systemd or --init-script=redhat. So upstart is
never enabled. And only due to a bug we installed
libvirtd.upstart file.
Signed-off-by: Michal Privoznik <mprivozn(a)redhat.com>
---
libvirt.spec.in | 1 -
1 file changed, 1 deletion(-)
diff --git a/libvirt.spec.in b/libvirt.spec.in
index 1eca4e39d..8f46f58b5 100644
--- a/libvirt.spec.in
+++ b/libvirt.spec.in
@@ -1825,7 +1825,6 @@ exit 0
%{_sysconfdir}/rc.d/init.d/virtlogd
%{_sysconfdir}/rc.d/init.d/virtlockd
%endif
-%doc daemon/libvirtd.upstart
%config(noreplace) %{_sysconfdir}/sysconfig/libvirtd
%config(noreplace) %{_sysconfdir}/sysconfig/virtlogd
%config(noreplace) %{_sysconfdir}/sysconfig/virtlockd
--
2.16.1
2
1
vm->def->nets[changeidx] can never be NULL for changeidx returned by
virDomainNetFindIdx.
Signed-off-by: Jiri Denemark <jdenemar(a)redhat.com>
---
src/qemu/qemu_hotplug.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/src/qemu/qemu_hotplug.c b/src/qemu/qemu_hotplug.c
index 87cf578acc..e0a5300f08 100644
--- a/src/qemu/qemu_hotplug.c
+++ b/src/qemu/qemu_hotplug.c
@@ -3061,12 +3061,7 @@ qemuDomainChangeNet(virQEMUDriverPtr driver,
if ((changeidx = virDomainNetFindIdx(vm->def, newdev)) < 0)
goto cleanup;
devslot = &vm->def->nets[changeidx];
-
- if (!(olddev = *devslot)) {
- virReportError(VIR_ERR_OPERATION_FAILED, "%s",
- _("cannot find existing network device to modify"));
- goto cleanup;
- }
+ olddev = *devslot;
oldType = virDomainNetGetActualType(olddev);
if (oldType == VIR_DOMAIN_NET_TYPE_HOSTDEV) {
--
2.16.2
2
1
22 Feb '18
libxl requires the memory sizes to be rounded to 1MiB increments.
Attempting to start a domain that violates this requirement will
fail with the marginally helpful error
2018-02-22 01:55:32.921+0000: xc: panic: xc_dom_boot.c:141: xc_dom_boot_mem_init: can't allocate low memory for domain: Out of memory
2018-02-22 01:55:32.921+0000: libxl: libxl_dom.c:671:libxl__build_dom: xc_dom_boot_mem_init failed: No such file or directory
Round the maximum and current memory values to the next 1MiB
increment when generating the libxl_domain_config object.
Signed-off-by: Jim Fehlig <jfehlig(a)suse.com>
---
The memory values could also be adjusted in the post parse callback,
which might be better since the virDomainDef object would then reflect
the actual values given to libxl. In general, I often find myself
confused about the dividing line between adjusting such things in the
post parse callback vs domain creation.
src/libxl/libxl_conf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/libxl/libxl_conf.c b/src/libxl/libxl_conf.c
index 57cb4c0ad..02bbf4e28 100644
--- a/src/libxl/libxl_conf.c
+++ b/src/libxl/libxl_conf.c
@@ -367,8 +367,8 @@ libxlMakeDomBuildInfo(virDomainDefPtr def,
}
b_info->sched_params.weight = 1000;
- b_info->max_memkb = virDomainDefGetMemoryInitial(def);
- b_info->target_memkb = def->mem.cur_balloon;
+ b_info->max_memkb = VIR_ROUND_UP(virDomainDefGetMemoryInitial(def), 1024);
+ b_info->target_memkb = VIR_ROUND_UP(def->mem.cur_balloon, 1024);
if (hvm) {
char bootorder[VIR_DOMAIN_BOOT_LAST + 1];
--
2.16.1
2
2
[libvirt] [PATCH] make: fix another VPATH bug impacting install of sysconf files
by Daniel P. Berrangé 22 Feb '18
by Daniel P. Berrangé 22 Feb '18
22 Feb '18
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
Pushed as build fix
src/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index 2166e17dbe..8ceeda5756 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -2833,7 +2833,7 @@ install-sysconfig:
for f in $(SYSCONF_FILES:%.sysconf=%) ; \
do \
tgt=`basename $$f`; \
- $(INSTALL_SCRIPT) $$f.sysconf $(DESTDIR)$(sysconfdir)/sysconfig/$$tgt; \
+ $(INSTALL_SCRIPT) $(srcdir)/$$f.sysconf $(DESTDIR)$(sysconfdir)/sysconfig/$$tgt; \
done
uninstall-sysconfig:
--
2.14.3
1
0
One of the things we (well I) constantly screw up is VPATH builds. I've
always tended to just build in the source tree, and as a result I'll
often miss changes which break VPATH builds.
Now our Jenkins CI catches this because it does VPATH builds only, so we
don't bit-rot for very long. Unfortunately Travis CI does source tree
builds only so I don't notice my mistakes when I test branches on Travis
before pushing. I'll fix Travis to do VPATH builds too, but....
I notice that most modern build systems will refuse to ever do in source
tree builds. eg Ninja/Meson/Perl/Python/Go/etc all put build artifacts in
a separate directory from source.
We could if we wanted to simply put a check right at the start of the
configure.ac script to reject any attempt at doing a source tree build
to force VPATH builds. This would mean we only ever have to care about
one execution path instead of two execution paths.
We could even make it such that autogen.sh will actually create a subdir
"build" and change into it automatically before running configure, to
help devs do the "right thing" by default.
Essentially we're talking the difference between
Today:
- Source tree build
./autogen.sh && make
- VPATH build
mkdir build && cd build && ../autogen.sh && make
Possible future
- Source tree build
No.
- VPATH build
./autogen.sh && cd build && make
Any opinions ?
Do people really like source tree builds, or are they (like me) just doing
them because its the easy/lazy option ?
Regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
5
4
[libvirt] [PATCH] src: Clean *.logrotate, .aug and libvirtd.policy files on 'make clean'
by Michal Privoznik 22 Feb '18
by Michal Privoznik 22 Feb '18
22 Feb '18
Before 3f055b5997c we were doing that. However after the commit
we are leaving the files behind.
Signed-off-by: Michal Privoznik <mprivozn(a)redhat.com>
---
Pushed under build breaker rule.
src/Makefile.am | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index 41a3cb262..2166e17db 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1376,7 +1376,7 @@ augeastest_DATA += test_libvirtd.aug
conf_DATA += remote/libvirtd.conf
-CLEANFILES += tets_libvirtd.aug
+CLEANFILES += test_libvirtd.aug
if WITH_POLKIT
if WITH_POLKIT0
@@ -1389,6 +1389,7 @@ endif ! WITH_POLKIT0
endif WITH_POLKIT
BUILT_SOURCES += libvirtd.policy
+CLEANFILES += libvirtd.policy
libvirtd.policy: remote/libvirtd.policy.in $(top_builddir)/config.status
$(AM_V_GEN) sed \
@@ -2868,6 +2869,7 @@ if WITH_LIBVIRTD
LOGROTATE_FILES := $(LOGROTATE_FILES_IN:remote/%.in=%)
BUILT_SOURCES += $(LOGROTATE_FILES)
+CLEANFILES += $(LOGROTATE_FILES)
%.logrotate: remote/%.logrotate.in
$(AM_V_GEN)sed \
--
2.16.1
2
3
22 Feb '18
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
src/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index b8e2cbf139..41a3cb2628 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -2297,7 +2297,7 @@ check-augeas-virtlogd: test_virtlogd.aug
if WITH_LIBVIRTD
test_libvirtd.aug: remote/test_libvirtd.aug.in \
remote/libvirtd.conf $(AUG_GENTEST)
- $(AM_V_GEN)$(AUG_GENTEST) remote/libvirtd.conf $< $@
+ $(AM_V_GEN)$(AUG_GENTEST) $(srcdir)/remote/libvirtd.conf $< $@
check-augeas-libvirtd: test_libvirtd.aug
$(AM_V_GEN)if test -x '$(AUGPARSE)'; then \
--
2.14.3
2
1
Commit 9275def reduced the if block to one line without removing the
braces.
Signed-off-by: Ján Tomko <jtomko(a)redhat.com>
---
I pushed this yesterday as a build fix, but forgot to send an e-mail.
src/util/virlog.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/util/virlog.c b/src/util/virlog.c
index c03f4fb14..dd927f0ba 100644
--- a/src/util/virlog.c
+++ b/src/util/virlog.c
@@ -1219,9 +1219,8 @@ virLogGetOutputs(void)
}
}
- if (virBufferError(&outputbuf)) {
+ if (virBufferError(&outputbuf))
goto error;
- }
virLogUnlock();
return virBufferContentAndReset(&outputbuf);
--
2.13.6
1
0
[libvirt] [PATCH v2 0/6] port allocator: make used port bitmap global etc
by Nikolay Shirokovskiy 22 Feb '18
by Nikolay Shirokovskiy 22 Feb '18
22 Feb '18
This patch set addresses issue(s) described in [1] and the core of
changes go to the first patch. The others are cleanups and
refactorings.
Diff from v1:
- rename virPortRange to virPortAllocatorRange (virPortRange is occupied)
- release ports in libxl and bhyve tests
- overload bind syscall for libxl and bhyve tests
- fix undefined behaviour on port release on error paths in qemu test
WARNING! I did not compile with bhyve.
[1] https://www.redhat.com/archives/libvir-list/2017-December/msg00600.html
Nikolay Shirokovskiy (6):
port allocator: make used port bitmap global
port allocator: remove range on manual port reserving
port allocator: remove range check in release function
port allocator: drop skip bind check flag
port allocator: remove release functionality from set used
port allocator: make port range constant object
src/bhyve/bhyve_command.c | 4 +-
src/bhyve/bhyve_driver.c | 5 +-
src/bhyve/bhyve_process.c | 7 +-
src/bhyve/bhyve_utils.h | 2 +-
src/libvirt_private.syms | 3 +-
src/libxl/libxl_conf.c | 8 +-
src/libxl/libxl_conf.h | 12 +--
src/libxl/libxl_domain.c | 3 +-
src/libxl/libxl_driver.c | 17 ++---
src/libxl/libxl_migration.c | 4 +-
src/qemu/qemu_conf.h | 12 +--
src/qemu/qemu_driver.c | 27 +++----
src/qemu/qemu_migration.c | 12 +--
src/qemu/qemu_process.c | 55 ++++----------
src/util/virportallocator.c | 166 ++++++++++++++++++++++++-----------------
src/util/virportallocator.h | 25 +++----
tests/bhyvexml2argvmock.c | 7 ++
tests/bhyvexml2argvtest.c | 10 ++-
tests/libxlxml2domconfigtest.c | 12 ++-
tests/virmocklibxl.c | 7 ++
tests/virportallocatortest.c | 53 +++++++------
21 files changed, 237 insertions(+), 214 deletions(-)
--
1.8.3.1
2
10
Fuse was recently enabled whereever LXC is enabled:
commit 34783a9e6b9c3d8850db878fc323c1ff40703ea6
Author: Jiri Denemark <jdenemar(a)redhat.com>
Date: Fri Feb 9 13:42:50 2018 +0100
spec: Enable fuse only if LXC is enabled
Unfortunately the version of Fuse in RHEL-6 is too old for libvirt's
needs, but we still have LXC enabled there.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
Pushed as a CI build fix
libvirt.spec.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libvirt.spec.in b/libvirt.spec.in
index e1e902c5e4..1eca4e39d4 100644
--- a/libvirt.spec.in
+++ b/libvirt.spec.in
@@ -167,7 +167,7 @@
%endif
# fuse is used to provide virtualized /proc for LXC
-%if %{with_lxc}
+%if %{with_lxc} && 0%{?rhel} != 6
%define with_fuse 0%{!?_without_fuse:1}
%endif
--
2.14.3
1
0
22 Feb '18
Having a daemon/ directory makes little sense from a code structure
point of view, as 90% of the code that is built into libvirtd already
lives in the src/ directory. The virtlockd and virlogd daemons also live
entirely in src/{locking,logging} directories. This series thus moves it
all into the src/remote/ directory. This will make even more sense when
we introduce further modular daemons for various drivers.
Daniel P. Berrangé (10):
src: simplify systemd unit file handling in make rules
src: simplify sysv init file handling in make rules
src: simplify sysconfig file handling in make rules
daemon: remove obsolete doc describing daemon threading
daemon: move libvirtd code into src/remote/ directory
daemon: move libvirtd POD manpage into src/remote/
daemon: move init system files into src/remote/
daemon: move configuration files to src/remote
daemon: move misc libvirtd policy files to src/remote/
daemon: move logrotate files to src/remote/
.gitignore | 3 +
Makefile.am | 2 +-
configure.ac | 1 -
daemon/Makefile.am | 465 ---------------------
daemon/THREADS.txt | 52 ---
src/Makefile.am | 420 ++++++++++++++++---
{daemon => src/remote}/libvirtd.aug | 0
{daemon => src/remote}/libvirtd.conf | 0
{daemon => src/remote}/libvirtd.init.in | 0
{daemon => src/remote}/libvirtd.libxl.logrotate.in | 0
{daemon => src/remote}/libvirtd.logrotate.in | 0
{daemon => src/remote}/libvirtd.lxc.logrotate.in | 0
{daemon => src/remote}/libvirtd.pod | 0
{daemon => src/remote}/libvirtd.policy.in | 0
{daemon => src/remote}/libvirtd.qemu.logrotate.in | 0
daemon/libvirt.rules => src/remote/libvirtd.rules | 0
{daemon => src/remote}/libvirtd.sasl | 0
{daemon => src/remote}/libvirtd.service.in | 0
{daemon => src/remote}/libvirtd.sysconf | 0
{daemon => src/remote}/libvirtd.sysctl | 0
{daemon => src/remote}/libvirtd.uml.logrotate.in | 0
{daemon => src/remote}/libvirtd.upstart | 0
daemon/libvirtd.c => src/remote/remote_daemon.c | 10 +-
daemon/libvirtd.h => src/remote/remote_daemon.h | 10 +-
.../remote/remote_daemon_config.c | 10 +-
.../remote/remote_daemon_config.h | 10 +-
.../remote/remote_daemon_dispatch.c | 16 +-
.../remote/remote_daemon_dispatch.h | 10 +-
.../stream.c => src/remote/remote_daemon_stream.c | 8 +-
.../stream.h => src/remote/remote_daemon_stream.h | 12 +-
{daemon => src/remote}/test_libvirtd.aug.in | 0
.../remote/virt-guest-shutdown.target.in | 0
32 files changed, 410 insertions(+), 619 deletions(-)
delete mode 100644 daemon/Makefile.am
delete mode 100644 daemon/THREADS.txt
rename {daemon => src/remote}/libvirtd.aug (100%)
rename {daemon => src/remote}/libvirtd.conf (100%)
rename {daemon => src/remote}/libvirtd.init.in (100%)
rename {daemon => src/remote}/libvirtd.libxl.logrotate.in (100%)
rename {daemon => src/remote}/libvirtd.logrotate.in (100%)
rename {daemon => src/remote}/libvirtd.lxc.logrotate.in (100%)
rename {daemon => src/remote}/libvirtd.pod (100%)
rename {daemon => src/remote}/libvirtd.policy.in (100%)
rename {daemon => src/remote}/libvirtd.qemu.logrotate.in (100%)
rename daemon/libvirt.rules => src/remote/libvirtd.rules (100%)
rename {daemon => src/remote}/libvirtd.sasl (100%)
rename {daemon => src/remote}/libvirtd.service.in (100%)
rename {daemon => src/remote}/libvirtd.sysconf (100%)
rename {daemon => src/remote}/libvirtd.sysctl (100%)
rename {daemon => src/remote}/libvirtd.uml.logrotate.in (100%)
rename {daemon => src/remote}/libvirtd.upstart (100%)
rename daemon/libvirtd.c => src/remote/remote_daemon.c (99%)
rename daemon/libvirtd.h => src/remote/remote_daemon.h (93%)
rename daemon/libvirtd-config.c => src/remote/remote_daemon_config.c (98%)
rename daemon/libvirtd-config.h => src/remote/remote_daemon_config.h (92%)
rename daemon/remote.c => src/remote/remote_daemon_dispatch.c (99%)
rename daemon/remote.h => src/remote/remote_daemon_dispatch.h (85%)
rename daemon/stream.c => src/remote/remote_daemon_stream.c (99%)
rename daemon/stream.h => src/remote/remote_daemon_stream.h (85%)
rename {daemon => src/remote}/test_libvirtd.aug.in (100%)
rename daemon/virt-guest-shutdown.target => src/remote/virt-guest-shutdown.target.in (100%)
--
2.14.3
2
21
[libvirt] [PATCH] news: libxl now supports setting clock offset and adjustment
by Jim Fehlig 22 Feb '18
by Jim Fehlig 22 Feb '18
22 Feb '18
Signed-off-by: Jim Fehlig <jfehlig(a)suse.com>
---
docs/news.xml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/docs/news.xml b/docs/news.xml
index b60cb2d98..86a0c8d18 100644
--- a/docs/news.xml
+++ b/docs/news.xml
@@ -77,6 +77,11 @@
conf: add support for setting Chassis SMBIOS data fields
</summary>
</change>
+ <change>
+ <summary>
+ libxl: add support for setting clock offset and adjustment
+ </summary>
+ </change>
</section>
<section title="Bug fixes">
</section>
--
2.16.1
2
1
[libvirt] [PATCH] bhyve: add missing cases for graphics listen type
by Daniel P. Berrangé 22 Feb '18
by Daniel P. Berrangé 22 Feb '18
22 Feb '18
Address warning from -Wswitch-enum by adding missing cases
for graphics listen types that are not supported.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
Pushed as a CI build fix
src/bhyve/bhyve_command.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/bhyve/bhyve_command.c b/src/bhyve/bhyve_command.c
index fd738b42c..5e309c3a2 100644
--- a/src/bhyve/bhyve_command.c
+++ b/src/bhyve/bhyve_command.c
@@ -419,9 +419,15 @@ bhyveBuildGraphicsArgStr(const virDomainDef *def,
virBufferAsprintf(&opt, ":%d", graphics->data.vnc.port);
break;
- default:
+ case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_SOCKET:
+ case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NONE:
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
_("Unsupported listen type"));
+ goto error;
+ case VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_LAST:
+ default:
+ virReportEnumRangeError(virDomainGraphicsListenType, glisten->type);
+ goto error;
}
if (video->driver)
--
2.14.3
1
0
[libvirt] [PATCH] src: remove WITH_LIBVIRTD condition around hal/udev build
by Daniel P. Berrangé 22 Feb '18
by Daniel P. Berrangé 22 Feb '18
22 Feb '18
Currently building --without-libvirtd causes a failure to link the node
device driver:
node_device/.libs/libvirt_driver_nodedev_la-node_device_driver.o: In function `nodedevRegister':
/home/berrange/src/virt/libvirt/src/node_device/node_device_driver.c:649: undefined reference to `udevNodeRegister'
collect2: error: ld returned 1 exit status
because it causes us to build the core nodedev driver, but then skip the
implementations, despite udev being available.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
src/Makefile.am | 2 --
1 file changed, 2 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index db68e01db4..38fa1e3393 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1863,7 +1863,6 @@ libvirt_driver_nodedev_la_CFLAGS = \
libvirt_driver_nodedev_la_LDFLAGS = $(AM_LDFLAGS_MOD_NOUNDEF)
libvirt_driver_nodedev_la_LIBADD =
-if WITH_LIBVIRTD
if WITH_HAL
libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_HAL_SOURCES)
libvirt_driver_nodedev_la_CFLAGS += $(HAL_CFLAGS)
@@ -1874,7 +1873,6 @@ libvirt_driver_nodedev_la_SOURCES += $(NODE_DEVICE_DRIVER_UDEV_SOURCES)
libvirt_driver_nodedev_la_CFLAGS += $(UDEV_CFLAGS) $(PCIACCESS_CFLAGS)
libvirt_driver_nodedev_la_LIBADD += $(UDEV_LIBS) $(PCIACCESS_LIBS)
endif WITH_UDEV
-endif WITH_LIBVIRTD
libvirt_driver_nodedev_la_LIBADD += libvirt.la ../gnulib/lib/libgnu.la
endif WITH_NODE_DEVICES
--
2.14.3
2
2
Necromancing some old branches...
v1: https://www.redhat.com/archives/libvir-list/2017-October/msg00930.html
Changes since v1 - beef up commit messages and drop patches 3 & 4 as
that's a bit more involved and Jan seemed to imply he eventually may
send patches dealing with the same thing - so I'll wait to see those.
John Ferlan (2):
conf,qemu: Check for NULL addrs in virDomainUSBAddressRelease
conf,qemu: Check for NULL addrs in virDomainUSBAddressEnsure
src/conf/domain_addr.c | 5 ++++-
src/conf/domain_addr.h | 4 ++--
src/qemu/qemu_domain_address.c | 7 ++-----
src/qemu/qemu_hotplug.c | 31 ++++++++++---------------------
4 files changed, 18 insertions(+), 29 deletions(-)
--
2.13.6
2
4
22 Feb '18
introduce VIR_DOMAIN_INTERFACE_ADDRESSES_SRC_ARP to get ip address
of VM from the output of /proc/net/arp
Chen Hanxiao (5):
util: introduce virNetlinkGetNeighbor to get neighbor table entry
util: introduce helper to parse message from RTM_GETNEIGH query
qemu: introduce qemuARPGetInterfaces to get IP from host's arp table
virsh: add --source arp to domifaddr
news: qemu: use arp table of host to get the IP address of guests
docs/news.xml | 9 ++
include/libvirt/libvirt-domain.h | 1 +
po/POTFILES.in | 1 +
src/Makefile.am | 1 +
src/libvirt-domain.c | 7 ++
src/libvirt_private.syms | 6 ++
src/qemu/qemu_driver.c | 72 ++++++++++++++++
src/util/virarptable.c | 182 +++++++++++++++++++++++++++++++++++++++
src/util/virarptable.h | 47 ++++++++++
src/util/virnetlink.c | 82 ++++++++++++++++++
src/util/virnetlink.h | 2 +
tools/virsh-domain-monitor.c | 2 +
tools/virsh.pod | 7 +-
13 files changed, 416 insertions(+), 3 deletions(-)
create mode 100644 src/util/virarptable.c
create mode 100644 src/util/virarptable.h
--
2.14.3
1
6