summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2019-11-01 13:50:57 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2019-11-01 13:50:57 +0000
commit0b6b395ee6f16e42bf36e691c91af83fa95d97e1 (patch)
treed403165773ed5adf708e11c794bdf80cc5ad3a22
parentDutch translation update (diff)
downloadinkscape-0b6b395ee6f16e42bf36e691c91af83fa95d97e1.tar.gz
inkscape-0b6b395ee6f16e42bf36e691c91af83fa95d97e1.zip
Improve clip LPE
Fixes: https://gitlab.com/inkscape/inbox/issues/868 https://gitlab.com/inkscape/inbox/issues/867 https://gitlab.com/inkscape/inbox/issues/866
-rw-r--r--src/live_effects/lpe-powerclip.cpp504
-rw-r--r--src/live_effects/lpe-powerclip.h22
-rw-r--r--src/object/sp-item.cpp8
-rw-r--r--src/object/sp-item.h6
-rw-r--r--src/verbs.cpp9
-rw-r--r--testfiles/rendering_tests/CMakeLists.txt2
-rw-r--r--testfiles/rendering_tests/README8
-rw-r--r--testfiles/rendering_tests/expected_rendering/test-lpe-0.92-large.pngbin0 -> 199059 bytes
-rw-r--r--testfiles/rendering_tests/expected_rendering/test-lpe-0.92.pngbin0 -> 42622 bytes
-rw-r--r--testfiles/rendering_tests/expected_rendering/test-lpe-1.0-large.pngbin0 -> 225290 bytes
-rw-r--r--testfiles/rendering_tests/expected_rendering/test-lpe-1.0.pngbin0 -> 48377 bytes
-rw-r--r--testfiles/rendering_tests/test-lpe-0.92.svg4034
-rw-r--r--testfiles/rendering_tests/test-lpe-1.0.svg4247
13 files changed, 8516 insertions, 324 deletions
diff --git a/src/live_effects/lpe-powerclip.cpp b/src/live_effects/lpe-powerclip.cpp
index 7e3f8edb7..250c4c8ca 100644
--- a/src/live_effects/lpe-powerclip.cpp
+++ b/src/live_effects/lpe-powerclip.cpp
@@ -3,24 +3,21 @@
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "live_effects/lpe-powerclip.h"
-#include "live_effects/lpeobject.h"
-#include "live_effects/lpeobject-reference.h"
-#include <2geom/path-intersection.h>
-#include <2geom/intersection-graph.h>
#include "display/curve.h"
-#include "helper/geom.h"
-#include "path-chemistry.h"
-#include "extract-uri.h"
-#include <bad-uri-exception.h>
-
+#include "live_effects/lpeobject-reference.h"
+#include "live_effects/lpeobject.h"
#include "object/sp-clippath.h"
+#include "object/sp-defs.h"
+#include "object/sp-item-group.h"
+#include "object/sp-item.h"
#include "object/sp-path.h"
#include "object/sp-shape.h"
-#include "object/sp-item.h"
-#include "object/sp-item-group.h"
#include "object/sp-use.h"
-#include "object/uri.h"
+#include "style.h"
+#include "svg/svg.h"
+#include <2geom/intersection-graph.h>
+#include <2geom/path-intersection.h>
// TODO due to internal breakage in glibmm headers, this must be last:
#include <glibmm/i18n.h>
@@ -28,264 +25,218 @@ namespace Inkscape {
namespace LivePathEffect {
LPEPowerClip::LPEPowerClip(LivePathEffectObject *lpeobject)
- : Effect(lpeobject),
- hide_clip(_("Hide clip"), _("Hide clip"), "hide_clip", &wr, this, false),
- is_inverse("Store the last inverse apply", "", "is_inverse", &wr, this, "false", false),
- uri("Store the uri of clip", "", "uri", &wr, this, "false", false),
- inverse(_("Inverse clip"), _("Inverse clip"), "inverse", &wr, this, false),
- flatten(_("Flatten clip"), _("Flatten clip, see fill rule once convert to paths"), "flatten", &wr, this, false),
- message(_("Info Box"), _("Important messages"), "message", &wr, this, _("Use fill-rule evenodd on <b>fill and stroke</b> dialog if no flatten result after convert clip to paths."))
+ : Effect(lpeobject)
+ , hide_clip(_("Hide clip"), _("Hide clip"), "hide_clip", &wr, this, false)
+ , inverse(_("Inverse clip"), _("Inverse clip"), "inverse", &wr, this, true)
+ , flatten(_("Flatten clip"), _("Flatten clip, see fill rule once convert to paths"), "flatten", &wr, this, false)
+ , message(
+ _("Info Box"), _("Important messages"), "message", &wr, this,
+ _("Use fill-rule evenodd on <b>fill and stroke</b> dialog if no flatten result after convert clip to paths."))
{
- registerParameter(&uri);
registerParameter(&inverse);
registerParameter(&flatten);
registerParameter(&hide_clip);
- registerParameter(&is_inverse);
registerParameter(&message);
message.param_set_min_height(55);
+ _updating = false;
+ _legacy = false;
+ // legazy fix between 0.92.4 launch and 1.0beta1
+ if (this->getRepr()->attribute("is_inverse")) {
+ this->getRepr()->setAttribute("is_inverse", nullptr);
+ _legacy = true;
+ }
}
LPEPowerClip::~LPEPowerClip() = default;
-void
-LPEPowerClip::doOnApply (SPLPEItem const * lpeitem)
+Geom::Path sp_bbox_without_clip(SPLPEItem *lpeitem)
{
- SPLPEItem * item = const_cast<SPLPEItem*>(lpeitem);
- SPObject * clip_path = item->clip_ref->getObject();
- if (!clip_path) {
- item->removeCurrentPathEffect(false);
+ Geom::OptRect bbox = lpeitem->visualBounds(Geom::identity(), true, false, true);
+ if (bbox) {
+ (*bbox).expandBy(5);
+ return Geom::Path(*bbox);
}
+ return Geom::Path();
}
-void
-LPEPowerClip::doBeforeEffect (SPLPEItem const* lpeitem){
- SPObject * clip_path = SP_ITEM(sp_lpe_item)->clip_ref->getObject();
- gchar * uri_str = uri.param_getSVGValue();
- if(hide_clip && clip_path) {
- SP_ITEM(sp_lpe_item)->clip_ref->detach();
- } else if (!hide_clip && !clip_path && uri_str) {
- try {
- SP_ITEM(sp_lpe_item)->clip_ref->attach(Inkscape::URI(uri_str));
- } catch (Inkscape::BadURIException &e) {
- g_warning("%s", e.what());
- SP_ITEM(sp_lpe_item)->clip_ref->detach();
+Geom::PathVector sp_get_recursive_pathvector(SPLPEItem *item, Geom::PathVector res, bool dir, bool inverse)
+{
+ SPGroup *group = dynamic_cast<SPGroup *>(item);
+ if (group) {
+ std::vector<SPItem *> item_list = sp_item_group_item_list(group);
+ for (auto child : item_list) {
+ if (child) {
+ SPLPEItem *childitem = dynamic_cast<SPLPEItem *>(child);
+ if (childitem) {
+ res = sp_get_recursive_pathvector(childitem, res, dir, inverse);
+ }
+ }
}
}
- clip_path = SP_ITEM(sp_lpe_item)->clip_ref->getObject();
- if (clip_path) {
- uri.param_setValue(Glib::ustring(extract_uri(sp_lpe_item->getRepr()->attribute("clip-path"))), true);
- SP_ITEM(sp_lpe_item)->clip_ref->detach();
- Geom::OptRect bbox = sp_lpe_item->visualBounds();
- if(!bbox) {
- return;
- }
- uri_str = uri.param_getSVGValue();
- if (uri_str) {
- try {
- SP_ITEM(sp_lpe_item)->clip_ref->attach(Inkscape::URI(uri_str));
- } catch (Inkscape::BadURIException &e) {
- g_warning("%s", e.what());
- SP_ITEM(sp_lpe_item)->clip_ref->detach();
+ SPShape *shape = dynamic_cast<SPShape *>(item);
+ if (shape && shape->getCurve()) {
+ for (auto path : shape->getCurve()->get_pathvector()) {
+ if (!path.empty()) {
+ bool pathdir = Geom::path_direction(path);
+ if (pathdir == dir && inverse) {
+ path = path.reversed();
+ }
+ res.push_back(path);
}
- } else {
- SP_ITEM(sp_lpe_item)->clip_ref->detach();
}
- g_free(uri_str);
- Geom::Rect bboxrect = (*bbox);
- bboxrect.expandBy(1);
- Geom::Point topleft = bboxrect.corner(0);
- Geom::Point topright = bboxrect.corner(1);
- Geom::Point bottomright = bboxrect.corner(2);
- Geom::Point bottomleft = bboxrect.corner(3);
- clip_box.clear();
- clip_box.start(topleft);
- clip_box.appendNew<Geom::LineSegment>(topright);
- clip_box.appendNew<Geom::LineSegment>(bottomright);
- clip_box.appendNew<Geom::LineSegment>(bottomleft);
- clip_box.close();
+ }
+ return res;
+}
+Geom::PathVector LPEPowerClip::getClipPathvector()
+{
+ Geom::PathVector res;
+ Geom::PathVector res_hlp;
+ if (!sp_lpe_item) {
+ return res;
+ }
+
+ SPObject *clip_path = sp_lpe_item->clip_ref->getObject();
+ if (clip_path) {
std::vector<SPObject*> clip_path_list = clip_path->childList(true);
- for ( std::vector<SPObject*>::const_iterator iter=clip_path_list.begin();iter!=clip_path_list.end();++iter) {
- SPObject * clip_data = *iter;
- gchar * is_inverse_str = is_inverse.param_getSVGValue();
- if(!strcmp(is_inverse_str,"false") && inverse && isVisible()) {
- SPCurve * clipcurve = new SPCurve();
- addInverse(SP_ITEM(clip_data), clipcurve, Geom::Affine::identity(), true);
- clipcurve->unref();
- } else if((!strcmp(is_inverse_str,"true") && !inverse && isVisible()) ||
- (inverse && !is_visible && is_inverse_str == (Glib::ustring)"true"))
- {
- removeInverse(SP_ITEM(clip_data));
- } else if(inverse && isVisible()) {
- updateInverse(SP_ITEM(clip_data));
+ clip_path_list.pop_back();
+ if (clip_path_list.size()) {
+ for (auto clip : clip_path_list) {
+ SPLPEItem *childitem = dynamic_cast<SPLPEItem *>(clip);
+ if (childitem) {
+ res_hlp = sp_get_recursive_pathvector(childitem, res_hlp, false, inverse);
+ if (is_load && _legacy) {
+ childitem->doWriteTransform(Geom::Translate(0, -999999));
+ }
+ if (!childitem->style || !childitem->style->display.set ||
+ childitem->style->display.value != SP_CSS_DISPLAY_NONE) {
+ childitem->style->display.set = TRUE;
+ childitem->style->display.value = SP_CSS_DISPLAY_NONE;
+ childitem->updateRepr(SP_OBJECT_WRITE_NO_CHILDREN | SP_OBJECT_WRITE_EXT);
+ }
+ }
+ }
+ if (is_load && _legacy) {
+ res_hlp *= Geom::Translate(0, -999999);
+ _legacy = false;
}
- g_free(is_inverse_str);
}
- } else if(!hide_clip) {
- SPLPEItem * item = const_cast<SPLPEItem*>(lpeitem);
- item->removeCurrentPathEffect(false);
}
-}
-
-void
-LPEPowerClip::doAfterEffect (SPLPEItem const* lpeitem){
- is_load = false;
- if (!hide_clip && flatten && isVisible()) {
- SP_ITEM(sp_lpe_item)->clip_ref->detach();
+ Geom::Path bbox = sp_bbox_without_clip(sp_lpe_item);
+ if (hide_clip) {
+ return bbox;
+ }
+ if (inverse && isVisible()) {
+ res.push_back(bbox);
+ }
+ for (auto path : res_hlp) {
+ res.push_back(path);
}
+ return res;
}
-void
-LPEPowerClip::addInverse (SPItem * clip_data, SPCurve * clipcurve, Geom::Affine affine, bool root){
- gchar * is_inverse_str = is_inverse.param_getSVGValue();
+void LPEPowerClip::add()
+{
SPDocument *document = getSPDoc();
- if (!document) {
+ if (!document || !sp_lpe_item) {
return;
}
+ SPObject *clip_path = sp_lpe_item->clip_ref->getObject();
SPObject *elemref = NULL;
- if(root) {
+ if (clip_path) {
Inkscape::XML::Document *xml_doc = document->getReprDoc();
- SP_LPE_ITEM(clip_data)->removeAllPathEffects(true);
+ Inkscape::XML::Node *parent = clip_path->getRepr();
+ SPLPEItem *childitem = dynamic_cast<SPLPEItem *>(clip_path->childList(true).back());
+ if (childitem) {
+ if (const gchar *powerclip = childitem->getRepr()->attribute("class")) {
+ if (!strcmp(powerclip, "powerclip")) {
+ Glib::ustring newclip = Glib::ustring("clipath_") + getId();
+ Glib::ustring uri = Glib::ustring("url(#") + newclip + Glib::ustring(")");
+ parent = clip_path->getRepr()->duplicate(xml_doc);
+ parent->setAttribute("id", newclip.c_str());
+ Inkscape::XML::Node *defs = clip_path->getRepr()->parent();
+ clip_path = SP_OBJECT(document->getDefs()->appendChildRepr(parent));
+ Inkscape::GC::release(parent);
+ sp_lpe_item->setAttribute("clip-path", uri.c_str());
+ SPLPEItem *childitemdel = dynamic_cast<SPLPEItem *>(clip_path->childList(true).back());
+ if (childitemdel) {
+ childitemdel->setAttribute("id", getId().c_str());
+ return;
+ }
+ }
+ }
+ }
Inkscape::XML::Node *clip_path_node = xml_doc->createElement("svg:path");
- Inkscape::XML::Node *parent = clip_data->getRepr()->parent();
parent->appendChild(clip_path_node);
+ Inkscape::GC::release(clip_path_node);
elemref = document->getObjectByRepr(clip_path_node);
- elemref->setAttribute("style","fill-rule:evenodd");
- elemref->setAttribute("id", (Glib::ustring("lpe_") + Glib::ustring(this->getLPEObj()->getId())).c_str());
- }
- if(!strcmp(is_inverse_str,"false")) {
- if (SP_IS_GROUP(clip_data)) {
- std::vector<SPItem*> item_list = sp_item_group_item_list(SP_GROUP(clip_data));
- for ( std::vector<SPItem*>::const_iterator iter=item_list.begin();iter!=item_list.end();++iter) {
- SPItem *subitem = *iter;
- Geom::Affine affine_group = SP_ITEM(clip_data)->transform;
- addInverse(subitem, clipcurve, affine_group, false);
- if (root) {
- clip_box *= affine_group;
- }
- }
- } else if (SP_IS_SHAPE(clip_data)) {
- SPCurve * c = nullptr;
- c = SP_SHAPE(clip_data)->getCurve();
- c->transform(affine);
- if (c) {
- Geom::PathVector c_pv = c->get_pathvector();
- //TODO: this can be not correct but no better way
- bool dir_a = Geom::path_direction(c_pv[0]);
- bool dir_b = Geom::path_direction(clip_box);
- if (dir_a == dir_b) {
- clip_box = clip_box.reversed();
- }
- clipcurve->append(c, false);
- gchar * is_inverse_str = is_inverse.param_getSVGValue();
- if (strcmp(is_inverse_str, "true") != 0) {
- is_inverse.param_setValue((Glib::ustring)"true", true);
- }
- c->reset();
- delete c;
- }
- Geom::Affine hidetrans = (Geom::Affine)Geom::Translate(0,999999);
- SP_ITEM(clip_data)->doWriteTransform(hidetrans);
+ if (elemref) {
+ elemref->setAttribute("style", "fill-rule:evenodd");
+ elemref->setAttribute("class", "powerclip");
+ elemref->setAttribute("id", getId().c_str());
+ gchar *str = sp_svg_write_path(getClipPathvector());
+ elemref->setAttribute("d", str);
+ g_free(str);
+ } else {
+ sp_lpe_item->removeCurrentPathEffect(false);
}
+ } else {
+ sp_lpe_item->removeCurrentPathEffect(false);
}
- if(root) {
- SPCurve * container = new SPCurve;
- container->set_pathvector(clip_box);
- clipcurve->append(container, false);
- SP_SHAPE(elemref)->setCurve(clipcurve);
- container->reset();
- delete container;
- }
- g_free(is_inverse_str);
}
-void
-LPEPowerClip::updateInverse (SPItem * clip_data) {
+Glib::ustring LPEPowerClip::getId() { return Glib::ustring("lpe_") + Glib::ustring(getLPEObj()->getId()); }
+
+void LPEPowerClip::upd()
+{
SPDocument *document = getSPDoc();
- if (!document) {
+ if (!document || !sp_lpe_item) {
return;
}
- if(inverse && isVisible()) {
- if (SP_IS_GROUP(clip_data)) {
- std::vector<SPItem*> item_list = sp_item_group_item_list(SP_GROUP(clip_data));
- for ( std::vector<SPItem*>::const_iterator iter=item_list.begin();iter!=item_list.end();++iter) {
- SPItem *subitem = *iter;
- updateInverse(subitem);
- }
- } else if (SP_IS_SHAPE(clip_data)) {
- SPObject *elemref = document->getObjectById(Glib::ustring("lpe_") + Glib::ustring(this->getLPEObj()->getId()));
- if (elemref) {
- SPCurve * c = nullptr;
- c = SP_SHAPE(elemref)->getCurve();
- if (c) {
- Geom::PathVector c_pv = c->get_pathvector();
- //TODO: this can be not correct but no better way
- bool dir_a = Geom::path_direction(c_pv[0]);
- bool dir_b = Geom::path_direction(clip_box);
- if (dir_a == dir_b) {
- clip_box = clip_box.reversed();
- }
- if(c_pv.size() > 1) {
- c_pv.pop_back();
- }
- c_pv.push_back(clip_box);
- c->set_pathvector(c_pv);
- SP_SHAPE(elemref)->setCurve(c);
- c->unref();
- }
- }
- }
+ SPObject *elemref = document->getObjectById(getId().c_str());
+ if (elemref && sp_lpe_item) {
+ gchar *str = sp_svg_write_path(getClipPathvector());
+ elemref->setAttribute("d", str);
+ g_free(str);
+ elemref->updateRepr(SP_OBJECT_WRITE_NO_CHILDREN | SP_OBJECT_WRITE_EXT);
+ } else {
+ add();
}
}
-void
-LPEPowerClip::removeInverse (SPItem * clip_data){
- SPDocument *document = getSPDoc();
- if (!document) {
- return;
- }
- gchar * is_inverse_str = is_inverse.param_getSVGValue();
- if(!strcmp(is_inverse_str,"true")) {
- if (SP_IS_GROUP(clip_data)) {
- std::vector<SPItem*> item_list = sp_item_group_item_list(SP_GROUP(clip_data));
- for ( std::vector<SPItem*>::const_iterator iter=item_list.begin();iter!=item_list.end();++iter) {
- SPItem *subitem = *iter;
- removeInverse(subitem);
- }
- } else if (SP_IS_SHAPE(clip_data)) {
- Geom::Affine unhidetrans = (Geom::Affine)Geom::Translate(0,-999999);
- SP_ITEM(clip_data)->doWriteTransform(unhidetrans);
- gchar * is_inverse_str = is_inverse.param_getSVGValue();
- if (strcmp(is_inverse_str, "false") != 0) {
- is_inverse.param_setValue((Glib::ustring)"false", true);
- }
- }
- SPObject *elemref = document->getObjectById(Glib::ustring("lpe_") + Glib::ustring(this->getLPEObj()->getId()));
- if (elemref) {
- elemref ->deleteObject(false);
- }
+
+void LPEPowerClip::doBeforeEffect(SPLPEItem const *lpeitem)
+{
+ if (!_updating) {
+ upd();
}
- g_free(is_inverse_str);
}
void
LPEPowerClip::doOnRemove (SPLPEItem const* /*lpeitem*/)
{
- SPClipPath *clip_path = SP_ITEM(sp_lpe_item)->clip_ref->getObject();
- if(clip_path) {
- if(!keep_paths) {
- gchar * is_inverse_str = is_inverse.param_getSVGValue();
- std::vector<SPObject*> clip_path_list = clip_path->childList(true);
- for ( std::vector<SPObject*>::const_iterator iter=clip_path_list.begin();iter!=clip_path_list.end();++iter) {
- SPObject * clip_data = *iter;
- if(!strcmp(is_inverse_str,"true")) {
- removeInverse(SP_ITEM(clip_data));
+ SPDocument *document = getSPDoc();
+ if (!document) {
+ return;
+ }
+ _updating = true;
+ SPObject *elemref = document->getObjectById(getId().c_str());
+ if (elemref) {
+ elemref->deleteObject();
+ }
+ SPObject *clip_path = sp_lpe_item->clip_ref->getObject();
+ if (clip_path) {
+ std::vector<SPObject *> clip_path_list = clip_path->childList(true);
+ for (auto clip : clip_path_list) {
+ SPLPEItem *childitem = dynamic_cast<SPLPEItem *>(clip);
+ if (childitem) {
+ if (!childitem->style || childitem->style->display.set ||
+ childitem->style->display.value == SP_CSS_DISPLAY_NONE) {
+ childitem->style->display.set = TRUE;
+ childitem->style->display.value = SP_CSS_DISPLAY_BLOCK;
+ childitem->updateRepr(SP_OBJECT_WRITE_NO_CHILDREN | SP_OBJECT_WRITE_EXT);
}
}
- g_free(is_inverse_str);
-
- } else if (flatten) {
- clip_path->deleteObject();
}
}
}
@@ -293,66 +244,46 @@ LPEPowerClip::doOnRemove (SPLPEItem const* /*lpeitem*/)
Geom::PathVector
LPEPowerClip::doEffect_path(Geom::PathVector const & path_in){
Geom::PathVector path_out = path_in;
- SPClipPath *clip_path = SP_ITEM(sp_lpe_item)->clip_ref->getObject();
- if (!hide_clip && flatten && isVisible()) {
- path_out *= sp_item_transform_repr (sp_lpe_item).inverse();
- SPDocument *document = getSPDoc();
- if (!document) {
- return path_out;
+ if (flatten) {
+ Geom::PathVector c_pv = getClipPathvector();
+ std::unique_ptr<Geom::PathIntersectionGraph> pig(new Geom::PathIntersectionGraph(c_pv, path_out));
+ if (pig && !c_pv.empty() && !path_out.empty()) {
+ path_out = pig->getIntersection();
}
- SPObject *elemref = document->getObjectById(Glib::ustring("lpe_") + Glib::ustring(this->getLPEObj()->getId()));
- if (elemref) {
- SPCurve * c = nullptr;
- c = SP_SHAPE(elemref)->getCurve();
- if (c) {
- Geom::PathVector c_pv = c->get_pathvector();
- c_pv *= sp_item_transform_repr (sp_lpe_item).inverse();
- std::unique_ptr<Geom::PathIntersectionGraph> pig(new Geom::PathIntersectionGraph(c_pv, path_out));
- if (pig && !c_pv.empty() && !path_in.empty()) {
- path_out = pig->getIntersection();
- }
- c->unref();
- }
- } else {
- if(clip_path) {
- std::vector<SPObject*> clip_path_list = clip_path->childList(true);
- for ( std::vector<SPObject*>::const_iterator iter=clip_path_list.begin();iter!=clip_path_list.end();++iter) {
- SPObject * clip_data = *iter;
- flattenClip(SP_ITEM(clip_data), path_out);
- }
- }
- }
- path_out *= sp_item_transform_repr (sp_lpe_item);
}
return path_out;
}
-void
-LPEPowerClip::doOnVisibilityToggled(SPLPEItem const* lpeitem)
-{
- doBeforeEffect(lpeitem);
-}
+void LPEPowerClip::doOnVisibilityToggled(SPLPEItem const *lpeitem) { upd(); }
-void
-LPEPowerClip::flattenClip(SPItem * clip_data, Geom::PathVector &path_in)
+void sp_remove_powerclip(Inkscape::Selection *sel)
{
- if (SP_IS_GROUP(clip_data)) {
- std::vector<SPItem*> item_list = sp_item_group_item_list(SP_GROUP(clip_data));
- for ( std::vector<SPItem*>::const_iterator iter=item_list.begin();iter!=item_list.end();++iter) {
- SPItem *subitem = *iter;
- flattenClip(subitem, path_in);
- }
- } else if (SP_IS_SHAPE(clip_data)) {
- SPCurve * c = nullptr;
- c = SP_SHAPE(clip_data)->getCurve();
- if (c) {
- Geom::PathVector c_pv = c->get_pathvector();
- c_pv *= sp_item_transform_repr (sp_lpe_item).inverse();
- std::unique_ptr<Geom::PathIntersectionGraph> pig(new Geom::PathIntersectionGraph(c_pv, path_in));
- if (pig && !c_pv.empty() && !path_in.empty()) {
- path_in = pig->getIntersection();
+ if (!sel->isEmpty()) {
+ auto selList = sel->items();
+ for (auto i = boost::rbegin(selList); i != boost::rend(selList); ++i) {
+ SPLPEItem *lpeitem = dynamic_cast<SPLPEItem *>(*i);
+ if (lpeitem) {
+ if (lpeitem->hasPathEffect() && lpeitem->pathEffectsEnabled()) {
+ for (PathEffectList::iterator it = lpeitem->path_effect_list->begin();
+ it != lpeitem->path_effect_list->end(); ++it) {
+ LivePathEffectObject *lpeobj = (*it)->lpeobject;
+ if (!lpeobj) {
+ /** \todo Investigate the cause of this.
+ * For example, this happens when copy pasting an object with LPE applied. Probably because
+ * the object is pasted while the effect is not yet pasted to defs, and cannot be found.
+ */
+ g_warning("SPLPEItem::performPathEffect - NULL lpeobj in list!");
+ return;
+ }
+ Inkscape::LivePathEffect::Effect *lpe = lpeobj->get_lpe();
+ if (lpe->getName() == "Power clip") {
+ lpeitem->setCurrentPathEffect(*it);
+ lpeitem->removeCurrentPathEffect(false);
+ break;
+ }
+ }
+ }
}
- c->unref();
}
}
}
@@ -375,40 +306,7 @@ void sp_inverse_powerclip(Inkscape::Selection *sel) {
}
Effect::createAndApply(POWERCLIP, SP_ACTIVE_DOCUMENT, lpeitem);
Effect* lpe = lpeitem->getCurrentLPE();
- lpe->getRepr()->setAttribute("is_inverse", "false");
- lpe->getRepr()->setAttribute("is_visible", "true");
lpe->getRepr()->setAttribute("inverse", "true");
- lpe->getRepr()->setAttribute("flatten", "false");
- lpe->getRepr()->setAttribute("hide_clip", "false");
- }
- }
- }
- }
-}
-
-void sp_remove_powerclip(Inkscape::Selection *sel) {
- if (!sel->isEmpty()) {
- auto selList = sel->items();
- for(auto i = boost::rbegin(selList); i != boost::rend(selList); ++i) {
- SPLPEItem* lpeitem = dynamic_cast<SPLPEItem*>(*i);
- if (lpeitem) {
- if (lpeitem->hasPathEffect() && lpeitem->pathEffectsEnabled()) {
- for (PathEffectList::iterator it = lpeitem->path_effect_list->begin(); it != lpeitem->path_effect_list->end(); ++it)
- {
- LivePathEffectObject *lpeobj = (*it)->lpeobject;
- if (!lpeobj) {
- /** \todo Investigate the cause of this.
- * For example, this happens when copy pasting an object with LPE applied. Probably because the object is pasted while the effect is not yet pasted to defs, and cannot be found.
- */
- g_warning("SPLPEItem::performPathEffect - NULL lpeobj in list!");
- return;
- }
- Inkscape::LivePathEffect::Effect *lpe = lpeobj->get_lpe();
- if (lpe->getName() == "powerclip") {
- lpe->doOnRemove(lpeitem);
- break;
- }
- }
}
}
}
diff --git a/src/live_effects/lpe-powerclip.h b/src/live_effects/lpe-powerclip.h
index d1b4098d8..fab59ed1e 100644
--- a/src/live_effects/lpe-powerclip.h
+++ b/src/live_effects/lpe-powerclip.h
@@ -10,7 +10,6 @@
#include "live_effects/effect.h"
#include "live_effects/parameter/message.h"
-#include "live_effects/parameter/hidden.h"
namespace Inkscape {
namespace LivePathEffect {
@@ -19,26 +18,23 @@ class LPEPowerClip : public Effect {
public:
LPEPowerClip(LivePathEffectObject *lpeobject);
~LPEPowerClip() override;
- void doOnApply (SPLPEItem const * lpeitem) override;
void doBeforeEffect (SPLPEItem const* lpeitem) override;
Geom::PathVector doEffect_path (Geom::PathVector const & path_in) override;
void doOnRemove (SPLPEItem const* /*lpeitem*/) override;
void doOnVisibilityToggled(SPLPEItem const* lpeitem) override;
- void doAfterEffect (SPLPEItem const* lpeitem) override;
- void addInverse (SPItem * clip_data, SPCurve * clipcurve, Geom::Affine affine, bool root);
- void updateInverse (SPItem * clip_data);
- void removeInverse (SPItem * clip_data);
- void flattenClip(SPItem * clip_data, Geom::PathVector &path_in);
-private:
- HiddenParam is_inverse;
- HiddenParam uri;
+ Glib::ustring getId();
+ void add();
+ void upd();
+ void del();
+ Geom::PathVector getClipPathvector();
+
+ private:
BoolParam inverse;
BoolParam flatten;
BoolParam hide_clip;
MessageParam message;
- Geom::Path clip_box;
- Geom::Affine base;
- Geom::Affine lastapplied;
+ bool _updating;
+ bool _legacy;
};
void sp_remove_powerclip(Inkscape::Selection *sel);
diff --git a/src/object/sp-item.cpp b/src/object/sp-item.cpp
index d12d8e465..884bf6be4 100644
--- a/src/object/sp-item.cpp
+++ b/src/object/sp-item.cpp
@@ -791,7 +791,7 @@ Geom::OptRect SPItem::geometricBounds(Geom::Affine const &transform) const
return bbox;
}
-Geom::OptRect SPItem::visualBounds(Geom::Affine const &transform) const
+Geom::OptRect SPItem::visualBounds(Geom::Affine const &transform, bool wfilter, bool wclip, bool wmask) const
{
using Geom::X;
using Geom::Y;
@@ -800,7 +800,7 @@ Geom::OptRect SPItem::visualBounds(Geom::Affine const &transform) const
SPFilter *filter = (style && style->filter.href) ? dynamic_cast<SPFilter *>(style->getFilter()) : nullptr;
- if ( filter ) {
+ if (filter && wfilter) {
// call the subclass method
// CPPIFY
//bbox = this->bbox(Geom::identity(), SPItem::VISUAL_BBOX);
@@ -851,13 +851,13 @@ Geom::OptRect SPItem::visualBounds(Geom::Affine const &transform) const
//bbox = this->bbox(transform, SPItem::VISUAL_BBOX);
bbox = const_cast<SPItem*>(this)->bbox(transform, SPItem::VISUAL_BBOX);
}
- if (clip_ref->getObject()) {
+ if (clip_ref->getObject() && wclip) {
SPItem *ownerItem = dynamic_cast<SPItem *>(clip_ref->getOwner());
g_assert(ownerItem != nullptr);
ownerItem->bbox_valid = FALSE; // LP Bug 1349018
bbox.intersectWith(clip_ref->getObject()->geometricBounds(transform));
}
- if (mask_ref->getObject()) {
+ if (mask_ref->getObject() && wmask) {
bbox_valid = false; // LP Bug 1349018
bbox.intersectWith(mask_ref->getObject()->visualBounds(transform));
}
diff --git a/src/object/sp-item.h b/src/object/sp-item.h
index 37faf999b..180142ec1 100644
--- a/src/object/sp-item.h
+++ b/src/object/sp-item.h
@@ -246,8 +246,12 @@ public:
* Get item's visual bounding box in this item's coordinate system.
*
* The visual bounding box includes the stroke and the filter region.
+ * @param wfilter use filter expand in bbox calculation
+ * @param wclip use clip data in bbox calculation
+ * @param wmask use mask data in bbox calculation
*/
- Geom::OptRect visualBounds(Geom::Affine const &transform = Geom::identity()) const;
+ Geom::OptRect visualBounds(Geom::Affine const &transform = Geom::identity(), bool wfilter = true, bool wclip = true,
+ bool wmask = true) const;
Geom::OptRect bounds(BBoxType type, Geom::Affine const &transform = Geom::identity()) const;
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 2c10cb6cf..49ee61aab 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -1551,7 +1551,6 @@ void ObjectVerb::perform( SPAction *action, void *data)
center = *sel->center();
else
center = bbox->midpoint();
-
switch (reinterpret_cast<std::size_t>(data)) {
case SP_VERB_OBJECT_ROTATE_90_CW:
sel->rotate90(false);
@@ -1586,13 +1585,17 @@ void ObjectVerb::perform( SPAction *action, void *data)
break;
case SP_VERB_OBJECT_SET_INVERSE_MASK:
sel->setMask(false, false);
+ Inkscape::DocumentUndo::setUndoSensitive(dt->getDocument(), false);
Inkscape::LivePathEffect::sp_inverse_powermask(sp_action_get_selection(action));
+ Inkscape::DocumentUndo::setUndoSensitive(dt->getDocument(), true);
break;
case SP_VERB_OBJECT_EDIT_MASK:
sel->editMask(false);
break;
case SP_VERB_OBJECT_UNSET_MASK:
+ Inkscape::DocumentUndo::setUndoSensitive(dt->getDocument(), false);
Inkscape::LivePathEffect::sp_remove_powermask(sp_action_get_selection(action));
+ Inkscape::DocumentUndo::setUndoSensitive(dt->getDocument(), true);
sel->unsetMask(false);
break;
case SP_VERB_OBJECT_SET_CLIPPATH:
@@ -1600,7 +1603,9 @@ void ObjectVerb::perform( SPAction *action, void *data)
break;
case SP_VERB_OBJECT_SET_INVERSE_CLIPPATH:
sel->setMask(true, false);
+ Inkscape::DocumentUndo::setUndoSensitive(dt->getDocument(), false);
Inkscape::LivePathEffect::sp_inverse_powerclip(sp_action_get_selection(action));
+ Inkscape::DocumentUndo::setUndoSensitive(dt->getDocument(), true);
break;
case SP_VERB_OBJECT_CREATE_CLIP_GROUP:
sel->setClipGroup();
@@ -1609,7 +1614,9 @@ void ObjectVerb::perform( SPAction *action, void *data)
sel->editMask(true);
break;
case SP_VERB_OBJECT_UNSET_CLIPPATH:
+ Inkscape::DocumentUndo::setUndoSensitive(dt->getDocument(), false);
Inkscape::LivePathEffect::sp_remove_powerclip(sp_action_get_selection(action));
+ Inkscape::DocumentUndo::setUndoSensitive(dt->getDocument(), true);
sel->unsetMask(true);
break;
default:
diff --git a/testfiles/rendering_tests/CMakeLists.txt b/testfiles/rendering_tests/CMakeLists.txt
index afe17ba96..bc983ccfb 100644
--- a/testfiles/rendering_tests/CMakeLists.txt
+++ b/testfiles/rendering_tests/CMakeLists.txt
@@ -14,6 +14,8 @@ set(RENDERING_TESTS
selector-important-002
selector-important-003
test-dont-crash
+ test-lpe-0.92
+ test-lpe-1.0
)
diff --git a/testfiles/rendering_tests/README b/testfiles/rendering_tests/README
index 92cf95ef6..4c54b039e 100644
--- a/testfiles/rendering_tests/README
+++ b/testfiles/rendering_tests/README
@@ -2,8 +2,12 @@ HOWTO
# Add a rendering test:
- create the svg file
- - inkscape <yourfile>.svg -d 96 -e expected_rendering/<yourfile>.png
- - inkscape <yourfile>.svg -d 384 -e expected_rendering/<yourfile>-large.png
+ - 0.92:
+ - inkscape <yourfile>.svg -d 96 -e expected_rendering/<yourfile>.png
+ - inkscape <yourfile>.svg -d 384 -e expected_rendering/<yourfile>-large.png
+ - 1.0:
+ - inkscape -d 96 --export-file=expected_rendering/<yourfile>.png <yourfile>.svg
+ - inkscape -d 384 --export-file=expected_rendering/<yourfile>-large.png <yourfile>.svg
- add the test in CMakeLists.txt
- use stable if possible to generate the reference png files
- git add <yourfile>.svg expected_rendering/<yourfile>-large.png expected_rendering/<yourfile>.png
diff --git a/testfiles/rendering_tests/expected_rendering/test-lpe-0.92-large.png b/testfiles/rendering_tests/expected_rendering/test-lpe-0.92-large.png
new file mode 100644
index 000000000..65a201eae
--- /dev/null
+++ b/testfiles/rendering_tests/expected_rendering/test-lpe-0.92-large.png
Binary files differ
diff --git a/testfiles/rendering_tests/expected_rendering/test-lpe-0.92.png b/testfiles/rendering_tests/expected_rendering/test-lpe-0.92.png
new file mode 100644
index 000000000..b255e7368
--- /dev/null
+++ b/testfiles/rendering_tests/expected_rendering/test-lpe-0.92.png
Binary files differ
diff --git a/testfiles/rendering_tests/expected_rendering/test-lpe-1.0-large.png b/testfiles/rendering_tests/expected_rendering/test-lpe-1.0-large.png
new file mode 100644
index 000000000..78abd53ec
--- /dev/null
+++ b/testfiles/rendering_tests/expected_rendering/test-lpe-1.0-large.png
Binary files differ
diff --git a/testfiles/rendering_tests/expected_rendering/test-lpe-1.0.png b/testfiles/rendering_tests/expected_rendering/test-lpe-1.0.png
new file mode 100644
index 000000000..d88b60cb8
--- /dev/null
+++ b/testfiles/rendering_tests/expected_rendering/test-lpe-1.0.png
Binary files differ
diff --git a/testfiles/rendering_tests/test-lpe-0.92.svg b/testfiles/rendering_tests/test-lpe-0.92.svg
new file mode 100644
index 000000000..b17c9ae13
--- /dev/null
+++ b/testfiles/rendering_tests/test-lpe-0.92.svg
@@ -0,0 +1,4034 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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"
+ sodipodi:docname="test-lpe-0.92.svg"
+ inkscape:version="1.0beta1 (937994bc4d, 2019-10-30, custom)"
+ id="svg8"
+ version="1.1"
+ viewBox="0 0 210 297"
+ height="297mm"
+ width="210mm">
+ <defs
+ id="defs2">
+ <inkscape:path-effect
+ bendpath-nodetypes="cc"
+ vertical="false"
+ scale_y_rel="false"
+ prop_scale="1"
+ bendpath="m 125.15903,15.766385 c 3.56292,2.70952 7.17299,5.254054 13.01122,0"
+ is_visible="true"
+ id="path-effect1240"
+ effect="bend_path" />
+ <inkscape:path-effect
+ bendpath-nodetypes="cc"
+ vertical="false"
+ scale_y_rel="false"
+ prop_scale="1"
+ bendpath="m 110.71646,16.046994 c 11.31769,5.10944 10.96848,1.260304 13.45473,0"
+ is_visible="true"
+ id="path-effect1238"
+ effect="bend_path" />
+ <inkscape:path-effect
+ bendpath-nodetypes="cc"
+ vertical="false"
+ scale_y_rel="false"
+ prop_scale="1"
+ bendpath="m 80.119881,15.424316 c 3.915731,1.54492 7.854647,3.004826 13.011218,0"
+ is_visible="true"
+ id="path-effect1236"
+ effect="bend_path" />
+ <inkscape:path-effect
+ bendpath-nodetypes="cc"
+ vertical="false"
+ scale_y_rel="false"
+ prop_scale="1"
+ bendpath="m 65.221232,15.362856 c 3.197572,0.643669 7.719241,0.62529 13.454732,0"
+ is_visible="true"
+ id="path-effect1234"
+ effect="bend_path" />
+ <inkscape:path-effect
+ bendpath-nodetypes="cc"
+ vertical="false"
+ scale_y_rel="false"
+ prop_scale="1"
+ bendpath="m 76.3955,13.793092 c 4.005605,1.7356 8.049685,3.240347 12.884614,0"
+ is_visible="true"
+ id="path-effect1232"
+ effect="bend_path" />
+ <inkscape:path-effect
+ bendpath-nodetypes="cc"
+ vertical="false"
+ scale_y_rel="false"
+ prop_scale="1"
+ bendpath="m 75.711361,13.793092 c 4.294871,0.434146 8.589743,4.454584 12.884614,0"
+ is_visible="true"
+ id="path-effect1230"
+ effect="bend_path" />
+ <inkscape:path-effect
+ bendpath-nodetypes="cc"
+ vertical="false"
+ scale_y_rel="false"
+ prop_scale="1"
+ bendpath="m 25.026186,44.871412 c 3.263131,2.038142 6.393467,2.217164 9.352647,0"
+ is_visible="true"
+ id="path-effect1194"
+ effect="bend_path" />
+ <inkscape:path-effect
+ bendpath-nodetypes="cc"
+ vertical="false"
+ scale_y_rel="false"
+ prop_scale="1"
+ bendpath="m 13.881713,44.871411 c 2.506019,0.897247 4.812297,2.044171 9.671451,0"
+ is_visible="true"
+ id="path-effect1192"
+ effect="bend_path" />
+ <inkscape:path-effect
+ bendpath-nodetypes="cc"
+ vertical="false"
+ scale_y_rel="false"
+ prop_scale="1"
+ bendpath="m 76.3955,13.793092 c 5.613165,-2.012637 9.807819,-1.791161 12.884614,0"
+ is_visible="true"
+ id="path-effect1190"
+ effect="bend_path" />
+ <inkscape:path-effect
+ id="path-effect1188"
+ effect="attach_path" />
+ <clipPath
+ id="clipPath944"
+ clipPathUnits="userSpaceOnUse">
+ <circle
+ d="m 88.71004,9.4486024 c 1.317504,0.2687872 3.170106,0.9903236 3.963944,3.7637776 0.750233,2.621108 -0.06585,6.98481 -5.846668,8.946252 -10e-7,0 -10e-7,10e-7 -10e-7,10e-7 -1.168535,0.292792 -2.29079,0.420668 -3.323464,0.397629 -1.073815,-0.02396 -2.029739,-0.210176 -2.849199,-0.524542 0,0 -10e-7,0 -10e-7,0 C 77.032488,20.800931 76.337224,18.752628 75.602745,17.032515 74.813164,15.183358 73.286054,13.00703 72.770094,10.534197 72.214552,7.8716578 73.538353,5.6893734 77.383023,4.3961003 80.860683,3.2262825 85.105584,3.4464947 85.093816,3.063 c -10e-7,-2e-7 0,-1e-7 0,-1e-7 -0.04152,-0.1697265 -0.28425,-0.2334453 -0.735538,-0.2090434 -0.434147,0.023475 -1.051748,0.1279196 -1.830463,0.2855175 0,0 -10e-7,5e-7 -10e-7,5e-7 -3.671821,1.7048483 -2.601554,3.156385 -0.09251,4.4417167 2.583848,1.3236519 4.726055,1.5514607 6.274737,1.8674112 z"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ id="circle946"
+ cx="83.635971"
+ cy="10.630895"
+ r="9.8630009" />
+ </clipPath>
+ <clipPath
+ id="clipPath948"
+ clipPathUnits="userSpaceOnUse">
+ <circle
+ d="m 81.460196,10.317529 c 0.262493,2.526951 -0.416786,5.140348 -1.869542,7.145864 -1.471324,2.031151 -3.702273,3.36602 -6.360861,3.469943 -2.651158,0.103631 -5.297234,-1.06108 -6.864771,-3.160108 -1.597538,-2.139202 -1.751441,-4.737488 -1.090661,-7.326225 0.608567,-2.3841798 1.968712,-4.9333438 3.017621,-6.4441615 1.151926,-1.6591995 2.347319,-2.7132119 4.052442,-2.8327216 1.680292,-0.1177694 3.845116,0.7254429 5.716692,2.4584054 1.893311,1.7530882 3.130021,4.0988417 3.39908,6.6890037 z"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ id="circle950"
+ cx="72.917793"
+ cy="10.972964"
+ r="9.8630009" />
+ </clipPath>
+ <clipPath
+ id="clipPath952"
+ clipPathUnits="userSpaceOnUse">
+ <circle
+ d="m 93.335222,9.1018606 c 1.904609,1.4582144 3.453913,3.5109494 2.965597,6.4382874 -0.478888,2.870824 -3.034414,5.736943 -7.081152,6.292894 -1.141816,0.156866 -2.31824,0.108346 -3.451814,-0.147544 0,0 -10e-7,0 -10e-7,0 -3.13828,-0.870282 -4.767123,-2.898611 -5.481226,-5.022863 -0.699466,-2.08071 -0.637405,-4.493952 0.113697,-6.453946 0.826362,-2.1563825 2.376949,-3.6518567 4.324694,-4.963803 1.873025,-1.2616174 3.278205,-1.8465937 2.689282,-2.6753323 0,-2e-7 0,-3e-7 0,-3e-7 -0.365597,-0.1407694 -0.707498,-0.2083528 -0.966637,-0.1893462 -0.937836,0.068786 -0.546618,1.183994 1.050711,2.6235631 1.522584,1.372206 3.908829,2.6219511 5.836849,4.0980903 z"
+ r="9.8630009"
+ cy="10.402848"
+ cx="88.538956"
+ id="circle954"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333" />
+ </clipPath>
+ <clipPath
+ id="clipPath975"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:original-d="M 91.560573,8.5214667 A 13.283695,12.770591 0 0 1 78.276878,21.292058 13.283695,12.770591 0 0 1 64.993183,8.5214667 13.283695,12.770591 0 0 1 78.276878,-4.2491239 13.283695,12.770591 0 0 1 91.560573,8.5214667 Z"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ d="m 87.377876,8.6624889 c 1.811331,1.8190121 3.336865,4.1175281 2.795667,7.1109321 -0.519855,2.87535 -3.173088,6.081798 -8.249148,6.662962 0,-1e-6 -2e-6,0 -2e-6,0 -2.441954,0.167523 -4.725025,-0.215874 -6.529458,-0.907313 -4.42638,-1.69614 -5.008862,-4.647357 -6.200253,-6.54173 C 68.48149,13.853329 67.672416,13.059811 66.302718,11.83666 65.053731,10.721304 63.512361,9.3907614 62.59985,7.8657517 61.671314,6.3139631 61.449685,4.6421949 62.554765,2.9810751 c 1.104394,-1.660088 3.404114,-3.08686204 6.569809,-4.1334489 6.724532,-2.223148 14.100968,-1.8678768 15.603492,-1.20018 0.634657,0.2820315 0.249941,0.5581789 -0.665357,0.7324708 0,10e-8 0,3e-7 -10e-7,5e-7 -2.763229,0.98799532 -2.946155,2.8988919 -1.836436,4.8540098 1.180493,2.0798112 3.235783,3.5046176 5.151604,5.4285616 z"
+ id="path977"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ id="clipPath979"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:original-d="m 127.93396,8.8635364 a 13.283695,12.770591 0 0 1 -13.2837,12.7705916 13.283695,12.770591 0 0 1 -13.2837,-12.7705916 13.283695,12.770591 0 0 1 13.2837,-12.7705906 13.283695,12.770591 0 0 1 13.2837,12.7705906 z"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ d="m 121.3408,7.1139617 c 0.49293,1.3765954 0.16295,3.3077743 0.076,4.9437473 -0.11057,2.080765 0.13278,2.76447 0.46816,4.456661 0,0 0,1e-6 0,1e-6 0.23338,1.046078 0.18937,2.245949 -0.73404,3.267239 -1.15002,1.257671 -3.05989,1.87013 -4.59054,1.828723 -0.92743,0.01694 -1.84182,-0.124456 -2.69303,-0.400521 -3.08345,-1.000031 -4.81577,-3.482297 -5.60779,-6.404671 -0.75477,-2.784968 -0.80538,-6.3792344 0.27571,-9.2782703 1.18351,-3.1736772 3.64373,-5.4585825 7.0141,-6.9968073 3.23862,-1.4780919 5.98021,-1.7145457 6.27249,-1.5666036 0.10966,0.055502 0.0547,0.1521217 -0.10942,0.2917071 -0.13367,-0.205575 -2.92551,0.8408848 -6.50629,2.28573573 -3.58451,2.20605867 -4.53497,3.80852277 -4.31042,5.13345687 0,0 1e-5,-4e-7 1e-5,-4e-7 0.59104,0.6531156 3.72111,0.00557 6.0593,0.1173401 2.47844,0.1184749 3.85857,0.8500021 4.38575,2.3222625 z"
+ id="path981"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ id="clipPath983"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:original-d="M 142.87099,7.2672125 A 13.283695,12.770591 0 0 1 129.58729,20.037804 13.283695,12.770591 0 0 1 116.30359,7.2672125 13.283695,12.770591 0 0 1 129.58729,-5.503378 13.283695,12.770591 0 0 1 142.87099,7.2672125 Z"
+ inkscape:connector-curvature="0"
+ id="path985"
+ d="m 136.62191,8.9692654 c 0.82487,0.6186639 1.36217,1.2296316 1.78031,2.1253426 0.39859,0.853844 0.77419,2.196557 0.74808,3.786241 -0.0505,3.077085 -2.07595,8.133525 -8.97452,8.023834 -0.85267,-0.134264 -1.65331,-0.348203 -2.38792,-0.621559 -2.80922,-1.045338 -4.36739,-2.800761 -5.24977,-4.432913 -0.87988,-1.627523 -1.14937,-3.074754 -1.95419,-4.245402 -0.85682,-1.246286 -2.11682,-2.047896 -4.17439,-3.243112 -1.92643,-1.1190412 -4.2301,-2.4252934 -5.42019,-3.9857223 -1.19202,-1.5629621 -1.07711,-3.2000991 1.22399,-4.5958236 2.3114,-1.40197411 6.42136,-2.29854712 11.42602,-2.64885724 5.06032,-0.35420586 9.7911,-0.0812571 12.82475,0.16390602 2.93685,0.23733947 3.20494,0.34331979 0.39329,-0.56048088 -0.74926,-0.2408477 -1.70142,-0.5495051 -2.83806,-0.9365414 -10.29817,1.54447744 -10.27408,3.01932551 -6.54711,5.6499057 1.55614,1.0983579 3.87479,2.3844066 5.40871,3.2476746 1.69028,0.9512645 2.89964,1.6424757 3.741,2.2735075 z"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333" />
+ </clipPath>
+ <clipPath
+ id="clipPath948-3"
+ clipPathUnits="userSpaceOnUse">
+ <circle
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ id="circle950-6"
+ cx="72.917793"
+ cy="10.972964"
+ r="9.8630009" />
+ </clipPath>
+ <clipPath
+ id="clipPath979-7"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ d="m 127.93396,8.8635364 a 13.283695,12.770591 0 0 1 -13.2837,12.7705916 13.283695,12.770591 0 0 1 -13.2837,-12.7705916 13.283695,12.770591 0 0 1 13.2837,-12.7705906 13.283695,12.770591 0 0 1 13.2837,12.7705906 z"
+ id="path981-5"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ id="clipPath944-3"
+ clipPathUnits="userSpaceOnUse">
+ <circle
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ id="circle946-5"
+ cx="83.635971"
+ cy="10.630895"
+ r="9.8630009" />
+ </clipPath>
+ <clipPath
+ id="clipPath975-6"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ d="M 91.560573,8.5214667 A 13.283695,12.770591 0 0 1 78.276878,21.292058 13.283695,12.770591 0 0 1 64.993183,8.5214667 13.283695,12.770591 0 0 1 78.276878,-4.2491239 13.283695,12.770591 0 0 1 91.560573,8.5214667 Z"
+ id="path977-2"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ id="clipPath952-9"
+ clipPathUnits="userSpaceOnUse">
+ <circle
+ r="9.8630009"
+ cy="10.402848"
+ cx="88.538956"
+ id="circle954-1"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333" />
+ </clipPath>
+ <clipPath
+ id="clipPath983-2"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ inkscape:connector-curvature="0"
+ id="path985-7"
+ d="M 142.87099,7.2672125 A 13.283695,12.770591 0 0 1 129.58729,20.037804 13.283695,12.770591 0 0 1 116.30359,7.2672125 13.283695,12.770591 0 0 1 129.58729,-5.503378 13.283695,12.770591 0 0 1 142.87099,7.2672125 Z"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333" />
+ </clipPath>
+ <marker
+ inkscape:stockid="TriangleOutL"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="TriangleOutL"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1543"
+ d="M 5.77,0 -2.88,5 V -5 Z"
+ style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
+ transform="scale(0.8)" />
+ </marker>
+ </defs>
+ <sodipodi:namedview
+ inkscape:document-rotation="0"
+ inkscape:pagecheckerboard="true"
+ inkscape:snap-global="false"
+ inkscape:window-maximized="1"
+ inkscape:window-y="0"
+ inkscape:window-x="0"
+ inkscape:window-height="1376"
+ inkscape:window-width="2560"
+ showgrid="false"
+ inkscape:current-layer="layer1"
+ inkscape:document-units="mm"
+ inkscape:cy="199.85823"
+ inkscape:cx="370.66272"
+ inkscape:zoom="2.3204355"
+ inkscape:pageshadow="2"
+ inkscape:pageopacity="0.0"
+ borderopacity="1.0"
+ bordercolor="#666666"
+ pagecolor="#ffffff"
+ id="base" />
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ sodipodi:insensitive="true"
+ inkscape:label="grid"
+ id="layer2"
+ inkscape:groupmode="layer">
+ <path
+ inkscape:tile-y0="4.8706991"
+ inkscape:tile-x0="1.3109643"
+ inkscape:tile-h="18.582847"
+ inkscape:tile-w="12.086653"
+ inkscape:tile-cy="14.162123"
+ inkscape:tile-cx="7.354291"
+ style="opacity:1;fill:#ffffff;fill-opacity:0.63963964;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 2.3784827,16.373013 H 14.265136 V 34.755861 H 2.3784827 Z"
+ id="path1247"
+ inkscape:connector-curvature="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2551"
+ transform="translate(0,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2553"
+ transform="translate(0,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2555"
+ transform="translate(0,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2557"
+ transform="translate(0,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2559"
+ transform="translate(0,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2561"
+ transform="translate(0,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2563"
+ transform="translate(0,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2565"
+ transform="translate(0,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2567"
+ transform="translate(0,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2569"
+ transform="translate(0,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2571"
+ transform="translate(0,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2573"
+ transform="translate(0,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2575"
+ transform="translate(0,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2577"
+ transform="translate(0,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2579"
+ transform="translate(12.086653)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2581"
+ transform="translate(12.086653,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2583"
+ transform="translate(12.086653,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2585"
+ transform="translate(12.086653,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2587"
+ transform="translate(12.086653,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2589"
+ transform="translate(12.086653,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2591"
+ transform="translate(12.086653,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2593"
+ transform="translate(12.086653,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2595"
+ transform="translate(12.086653,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2597"
+ transform="translate(12.086653,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2599"
+ transform="translate(12.086653,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2601"
+ transform="translate(12.086653,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2603"
+ transform="translate(12.086653,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2605"
+ transform="translate(12.086653,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2607"
+ transform="translate(12.086653,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2609"
+ transform="translate(24.173306)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2611"
+ transform="translate(24.173306,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2613"
+ transform="translate(24.173306,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2615"
+ transform="translate(24.173306,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2617"
+ transform="translate(24.173306,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2619"
+ transform="translate(24.173306,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2621"
+ transform="translate(24.173306,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2623"
+ transform="translate(24.173306,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2625"
+ transform="translate(24.173306,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2627"
+ transform="translate(24.173306,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2629"
+ transform="translate(24.173306,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2631"
+ transform="translate(24.173306,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2633"
+ transform="translate(24.173306,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2635"
+ transform="translate(24.173306,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2637"
+ transform="translate(24.173306,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2639"
+ transform="translate(36.259958)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2641"
+ transform="translate(36.259958,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2643"
+ transform="translate(36.259958,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2645"
+ transform="translate(36.259958,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2647"
+ transform="translate(36.259958,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2649"
+ transform="translate(36.259958,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2651"
+ transform="translate(36.259958,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2653"
+ transform="translate(36.259958,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2655"
+ transform="translate(36.259958,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2657"
+ transform="translate(36.259958,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2659"
+ transform="translate(36.259958,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2661"
+ transform="translate(36.259958,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2663"
+ transform="translate(36.259958,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2665"
+ transform="translate(36.259958,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2667"
+ transform="translate(36.259958,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2669"
+ transform="translate(48.346611)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2671"
+ transform="translate(48.346611,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2673"
+ transform="translate(48.346611,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2675"
+ transform="translate(48.346611,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2677"
+ transform="translate(48.346611,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2679"
+ transform="translate(48.346611,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2681"
+ transform="translate(48.346611,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2683"
+ transform="translate(48.346611,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2685"
+ transform="translate(48.346611,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2687"
+ transform="translate(48.346611,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2689"
+ transform="translate(48.346611,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2691"
+ transform="translate(48.346611,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2693"
+ transform="translate(48.346611,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2695"
+ transform="translate(48.346611,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2697"
+ transform="translate(48.346611,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2699"
+ transform="translate(60.433265)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2701"
+ transform="translate(60.433265,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2703"
+ transform="translate(60.433265,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2705"
+ transform="translate(60.433265,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2707"
+ transform="translate(60.433265,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2709"
+ transform="translate(60.433265,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2711"
+ transform="translate(60.433265,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2713"
+ transform="translate(60.433265,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2715"
+ transform="translate(60.433265,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2717"
+ transform="translate(60.433265,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2719"
+ transform="translate(60.433265,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2721"
+ transform="translate(60.433265,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2723"
+ transform="translate(60.433265,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2725"
+ transform="translate(60.433265,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2727"
+ transform="translate(60.433265,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2729"
+ transform="translate(72.519918)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2731"
+ transform="translate(72.519918,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2733"
+ transform="translate(72.519918,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2735"
+ transform="translate(72.519918,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2737"
+ transform="translate(72.519918,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2739"
+ transform="translate(72.519918,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2741"
+ transform="translate(72.519918,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2743"
+ transform="translate(72.519918,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2745"
+ transform="translate(72.519918,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2747"
+ transform="translate(72.519918,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2749"
+ transform="translate(72.519918,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2751"
+ transform="translate(72.519918,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2753"
+ transform="translate(72.519918,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2755"
+ transform="translate(72.519918,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2757"
+ transform="translate(72.519918,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2759"
+ transform="translate(84.606572)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2761"
+ transform="translate(84.606572,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2763"
+ transform="translate(84.606572,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2765"
+ transform="translate(84.606572,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2767"
+ transform="translate(84.606572,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2769"
+ transform="translate(84.606572,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2771"
+ transform="translate(84.606572,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2773"
+ transform="translate(84.606572,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2775"
+ transform="translate(84.606572,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2777"
+ transform="translate(84.606572,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2779"
+ transform="translate(84.606572,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2781"
+ transform="translate(84.606572,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2783"
+ transform="translate(84.606572,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2785"
+ transform="translate(84.606572,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2787"
+ transform="translate(84.606572,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2789"
+ transform="translate(96.693223)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2791"
+ transform="translate(96.693223,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2793"
+ transform="translate(96.693223,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2795"
+ transform="translate(96.693223,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2797"
+ transform="translate(96.693223,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2799"
+ transform="translate(96.693223,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2801"
+ transform="translate(96.693223,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2803"
+ transform="translate(96.693223,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2805"
+ transform="translate(96.693223,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2807"
+ transform="translate(96.693223,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2809"
+ transform="translate(96.693223,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2811"
+ transform="translate(96.693223,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2813"
+ transform="translate(96.693223,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2815"
+ transform="translate(96.693223,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2817"
+ transform="translate(96.693223,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2819"
+ transform="translate(108.77988)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2821"
+ transform="translate(108.77988,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2823"
+ transform="translate(108.77988,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2825"
+ transform="translate(108.77988,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2827"
+ transform="translate(108.77988,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2829"
+ transform="translate(108.77988,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2831"
+ transform="translate(108.77988,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2833"
+ transform="translate(108.77988,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2835"
+ transform="translate(108.77988,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2837"
+ transform="translate(108.77988,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2839"
+ transform="translate(108.77988,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2841"
+ transform="translate(108.77988,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2843"
+ transform="translate(108.77988,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2845"
+ transform="translate(108.77988,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2847"
+ transform="translate(108.77988,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2849"
+ transform="translate(120.86653)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2851"
+ transform="translate(120.86653,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2853"
+ transform="translate(120.86653,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2855"
+ transform="translate(120.86653,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2857"
+ transform="translate(120.86653,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2859"
+ transform="translate(120.86653,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2861"
+ transform="translate(120.86653,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2863"
+ transform="translate(120.86653,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2865"
+ transform="translate(120.86653,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2867"
+ transform="translate(120.86653,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2869"
+ transform="translate(120.86653,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2871"
+ transform="translate(120.86653,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2873"
+ transform="translate(120.86653,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2875"
+ transform="translate(120.86653,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2877"
+ transform="translate(120.86653,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2879"
+ transform="translate(132.95318)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2881"
+ transform="translate(132.95318,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2883"
+ transform="translate(132.95318,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2885"
+ transform="translate(132.95318,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2887"
+ transform="translate(132.95318,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2889"
+ transform="translate(132.95318,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2891"
+ transform="translate(132.95318,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2893"
+ transform="translate(132.95318,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2895"
+ transform="translate(132.95318,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2897"
+ transform="translate(132.95318,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2899"
+ transform="translate(132.95318,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2901"
+ transform="translate(132.95318,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2903"
+ transform="translate(132.95318,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2905"
+ transform="translate(132.95318,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2907"
+ transform="translate(132.95318,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2909"
+ transform="translate(145.03984)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2911"
+ transform="translate(145.03984,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2913"
+ transform="translate(145.03984,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2915"
+ transform="translate(145.03984,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2917"
+ transform="translate(145.03984,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2919"
+ transform="translate(145.03984,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2921"
+ transform="translate(145.03984,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2923"
+ transform="translate(145.03984,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2925"
+ transform="translate(145.03984,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2927"
+ transform="translate(145.03984,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2929"
+ transform="translate(145.03984,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2931"
+ transform="translate(145.03984,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2933"
+ transform="translate(145.03984,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2935"
+ transform="translate(145.03984,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2937"
+ transform="translate(145.03984,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2939"
+ transform="translate(157.12649)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2941"
+ transform="translate(157.12649,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2943"
+ transform="translate(157.12649,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2945"
+ transform="translate(157.12649,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2947"
+ transform="translate(157.12649,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2949"
+ transform="translate(157.12649,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2951"
+ transform="translate(157.12649,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2953"
+ transform="translate(157.12649,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2955"
+ transform="translate(157.12649,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2957"
+ transform="translate(157.12649,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2959"
+ transform="translate(157.12649,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2961"
+ transform="translate(157.12649,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2963"
+ transform="translate(157.12649,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2965"
+ transform="translate(157.12649,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2967"
+ transform="translate(157.12649,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2969"
+ transform="translate(169.21314)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2971"
+ transform="translate(169.21314,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2973"
+ transform="translate(169.21314,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2975"
+ transform="translate(169.21314,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2977"
+ transform="translate(169.21314,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2979"
+ transform="translate(169.21314,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2981"
+ transform="translate(169.21314,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2983"
+ transform="translate(169.21314,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2985"
+ transform="translate(169.21314,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2987"
+ transform="translate(169.21314,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2989"
+ transform="translate(169.21314,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2991"
+ transform="translate(169.21314,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2993"
+ transform="translate(169.21314,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2995"
+ transform="translate(169.21314,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2997"
+ transform="translate(169.21314,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use2999"
+ transform="translate(181.29979)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3001"
+ transform="translate(181.29979,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3003"
+ transform="translate(181.29979,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3005"
+ transform="translate(181.29979,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3007"
+ transform="translate(181.29979,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3009"
+ transform="translate(181.29979,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3011"
+ transform="translate(181.29979,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3013"
+ transform="translate(181.29979,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3015"
+ transform="translate(181.29979,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3017"
+ transform="translate(181.29979,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3019"
+ transform="translate(181.29979,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3021"
+ transform="translate(181.29979,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3023"
+ transform="translate(181.29979,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3025"
+ transform="translate(181.29979,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3027"
+ transform="translate(181.29979,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3029"
+ transform="translate(193.38645)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3031"
+ transform="translate(193.38645,18.582847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3033"
+ transform="translate(193.38645,37.165693)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3035"
+ transform="translate(193.38645,55.748542)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3037"
+ transform="translate(193.38645,74.331388)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3039"
+ transform="translate(193.38645,92.914236)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3041"
+ transform="translate(193.38645,111.49708)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3043"
+ transform="translate(193.38645,130.07993)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3045"
+ transform="translate(193.38645,148.66278)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3047"
+ transform="translate(193.38645,167.24562)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3049"
+ transform="translate(193.38645,185.82847)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3051"
+ transform="translate(193.38645,204.41132)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3053"
+ transform="translate(193.38645,222.99416)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3055"
+ transform="translate(193.38645,241.57701)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ <use
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none"
+ height="100%"
+ width="100%"
+ id="use3057"
+ transform="translate(193.38645,260.15986)"
+ xlink:href="#path1247"
+ inkscape:tiled-clone-of="#path1247"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="layer1"
+ inkscape:groupmode="layer"
+ inkscape:label="lpe">
+ <text
+ xml:space="preserve"
+ style="font-size:1.92205px;line-height:1.25;text-align:justify;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:0.352778;stroke-dasharray:0.352778, 1.05833"
+ x="4.5537734"
+ y="25.440222"
+ id="text1184"><tspan
+ sodipodi:role="line"
+ id="tspan1182"
+ x="4.5537734"
+ y="25.440222"
+ style="fill:#000000;stroke-width:0.352778">no lpe</tspan></text>
+ <path
+ inkscape:transform-center-y="0.81755412"
+ inkscape:transform-center-x="-9.2798015"
+ d="m 58.784294,28.86827 -2.434062,-0.776661 -2.665607,0.854093 -0.01352,-2.554932 -1.636008,-2.271213 2.425707,-0.802374 1.654498,-2.25778 1.512687,2.059038 2.658545,0.875828 -1.490815,2.074929 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.508128"
+ sodipodi:arg1="0.92729522"
+ sodipodi:r2="2.6994677"
+ sodipodi:r1="4.3385372"
+ sodipodi:cy="25.39744"
+ sodipodi:cx="56.181171"
+ sodipodi:sides="5"
+ id="path956-0"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833336"
+ sodipodi:type="star" />
+ <path
+ transform="matrix(0.66386018,0,0,0.66386018,66.117359,15.551299)"
+ clip-path="url(#clipPath983-2)"
+ sodipodi:type="star"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.53140372;stroke-dasharray:0.53140374, 1.59421127"
+ id="path906-9"
+ sodipodi:sides="5"
+ sodipodi:cx="131.69673"
+ sodipodi:cy="16.389061"
+ sodipodi:r1="6.8411908"
+ sodipodi:r2="4.2566361"
+ sodipodi:arg1="0.92729522"
+ sodipodi:arg2="1.508128"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 135.80145,21.862014 -3.83814,-1.224673 -4.20324,1.346771 -0.0213,-4.028726 -2.57973,-3.581346 3.82496,-1.265217 2.60888,-3.5601644 2.38527,3.2467784 4.19211,1.381044 -2.35079,3.271837 z"
+ inkscape:transform-center-x="0.021300379"
+ inkscape:transform-center-y="-0.41336927" />
+ <path
+ transform="matrix(0.58266894,0,0,0.58266894,53.811123,16.872308)"
+ clip-path="url(#clipPath952-9)"
+ inkscape:transform-center-y="-0.36281353"
+ inkscape:transform-center-x="0.01869632"
+ d="m 90.7623,21.519944 -4.180202,-0.76858 -3.861174,0.890678 -0.56079,-4.213112 -2.040253,-3.39696 3.833614,-1.835267 2.600227,-2.990114 2.930095,3.078855 3.647282,1.548967 -2.022716,3.738104 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.5868412"
+ sodipodi:arg1="0.92729522"
+ sodipodi:r2="4.7049785"
+ sodipodi:r1="6.8411908"
+ sodipodi:cy="16.046991"
+ sodipodi:cx="86.657585"
+ sodipodi:sides="5"
+ id="path894"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.60545152;stroke-dasharray:0.6054515, 1.81635456"
+ sodipodi:type="star" />
+ <g
+ id="g4034"
+ transform="matrix(0.56615984,0,0,0.56615984,-26.186944,16.9084)"
+ style="stroke-width:1.76628566">
+ <path
+ id="path4028"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path4030"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904" />
+ <path
+ id="path4032"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="stroke-width:1.76628566"
+ transform="matrix(0.56615984,0,0,0.56615984,-14.496097,16.9084)"
+ id="g964-3">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ id="path958-6" />
+ <path
+ sodipodi:type="star"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904"
+ id="path960-0"
+ sodipodi:sides="5"
+ sodipodi:cx="82.917755"
+ sodipodi:cy="7.5638499"
+ sodipodi:r1="5.4727554"
+ sodipodi:r2="2.0305073"
+ sodipodi:arg1="0.92729522"
+ sodipodi:arg2="1.5556137"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ id="path962-6" />
+ </g>
+ <g
+ style="stroke-width:1.74162924"
+ clip-path="url(#clipPath975-6)"
+ id="g922-2"
+ transform="matrix(0.57417503,0,0,0.57417503,69.452621,18.118326)">
+ <path
+ id="path910-6"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path914-1"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432" />
+ <path
+ id="path918-8"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g4071"
+ transform="matrix(0.60517026,0,0,0.60517026,19.15338,17.541353)"
+ clip-path="url(#clipPath944-3)"
+ style="stroke-width:1.65242755">
+ <path
+ id="path4065"
+ d="M 75.711361,8.1793973 H 88.595975 V 21.634128 H 75.711361 Z"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path4067"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921" />
+ <path
+ id="path4069"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="stroke-width:1.65242755"
+ clip-path="url(#clipPath944-3)"
+ transform="matrix(0.60517026,0,0,0.60517026,30.602348,17.541353)"
+ id="g883-7">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921"
+ d="M 75.711361,8.1793973 H 88.595975 V 21.634128 H 75.711361 Z"
+ id="path896-9" />
+ <path
+ sodipodi:type="star"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921"
+ id="path898-2"
+ sodipodi:sides="5"
+ sodipodi:cx="82.917755"
+ sodipodi:cy="7.5638499"
+ sodipodi:r1="5.4727554"
+ sodipodi:r2="2.0305073"
+ sodipodi:arg1="0.92729522"
+ sodipodi:arg2="1.5556137"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ id="path900-0" />
+ </g>
+ <path
+ style="fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833337"
+ d="m 42.01003,20.922189 h 5.18925 c 0.854683,0 1.542749,0.688067 1.542749,1.542749 v 5.18925 c 0,0.854683 -0.688066,1.54275 -1.542749,1.54275 h -5.18925 c -0.854682,0 -1.542749,-0.688067 -1.542749,-1.54275 v -5.18925 c 0,-0.854682 0.688067,-1.542749 1.542749,-1.542749 z"
+ id="path966-2"
+ inkscape:connector-curvature="0" />
+ <path
+ transform="matrix(0.55929409,0,0,0.55929409,75.846328,16.916542)"
+ clip-path="url(#clipPath979-7)"
+ inkscape:connector-curvature="0"
+ id="path924-3"
+ d="m 113.22497,9.3196281 h 8.43772 c 1.38971,0 2.5085,1.1187949 2.5085,2.5085089 v 8.437714 c 0,1.389714 -1.11879,2.508509 -2.5085,2.508509 h -8.43772 c -1.38971,0 -2.50851,-1.118795 -2.50851,-2.508509 v -8.437714 c 0,-1.389714 1.1188,-2.5085089 2.50851,-2.5085089 z"
+ style="fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke-width:0.63075548;stroke-dasharray:0.63075543, 1.89226635" />
+ <path
+ transform="matrix(0.59520616,0,0,0.59520616,49.194405,16.801873)"
+ clip-path="url(#clipPath948-3)"
+ style="fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke-width:0.59269845;stroke-dasharray:0.59269848, 1.77809548"
+ d="m 67.729741,8.6354892 h 8.437714 c 1.389714,0 2.508509,1.1187954 2.508509,2.5085098 v 8.437714 c 0,1.389714 -1.118795,2.508509 -2.508509,2.508509 h -8.437714 c -1.389714,0 -2.508509,-1.118795 -2.508509,-2.508509 v -8.437714 c 0,-1.3897144 1.118795,-2.5085098 2.508509,-2.5085098 z"
+ id="path902"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(0.57417503,0,0,0.57417503,81.197004,18.118326)"
+ id="g4146"
+ clip-path="url(#clipPath975-6)"
+ style="stroke-width:1.74162924">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ id="path4140" />
+ <path
+ sodipodi:type="star"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432"
+ id="path4142"
+ sodipodi:sides="5"
+ sodipodi:cx="82.917755"
+ sodipodi:cy="7.5638499"
+ sodipodi:r1="5.4727554"
+ sodipodi:r2="2.0305073"
+ sodipodi:arg1="0.92729522"
+ sodipodi:arg2="1.5556137"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ id="path4144" />
+ </g>
+ <g
+ id="text4166"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="1">
+ <path
+ id="path4537"
+ style="stroke-width:0.2"
+ d="m 24.309468,33.321322 h 0.426331 v -1.471486 l -0.463796,0.09302 v -0.237711 l 0.461212,-0.09302 h 0.260966 v 1.709198 h 0.42633 v 0.219625 h -1.111043 z" />
+ </g>
+ <g
+ id="text4170"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="2">
+ <path
+ id="path4534"
+ style="stroke-width:0.2"
+ d="m 36.523668,33.321322 h 0.910797 v 0.219625 h -1.224732 v -0.219625 q 0.14857,-0.153737 0.404368,-0.412119 0.257091,-0.259674 0.322978,-0.334605 0.125315,-0.140819 0.174408,-0.237712 0.05039,-0.09819 0.05039,-0.192495 0,-0.153737 -0.108521,-0.25063 -0.107229,-0.09689 -0.280345,-0.09689 -0.122731,0 -0.259674,0.04263 -0.13565,0.04263 -0.29068,0.129192 v -0.26355 q 0.157614,-0.0633 0.294556,-0.0956 0.136943,-0.0323 0.250631,-0.0323 0.299723,0 0.478007,0.149861 0.178283,0.149862 0.178283,0.400493 0,0.118855 -0.04522,0.226084 -0.04392,0.105937 -0.161489,0.250631 -0.0323,0.03746 -0.205414,0.217041 -0.173116,0.178283 -0.488342,0.499969 z" />
+ </g>
+ <g
+ id="text4174"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="3">
+ <path
+ id="path4531"
+ style="stroke-width:0.2"
+ d="m 49.124147,32.500959 q 0.187327,0.04005 0.291972,0.166656 0.105936,0.126608 0.105936,0.312643 0,0.285512 -0.19637,0.441833 -0.196371,0.156321 -0.558106,0.156321 -0.121439,0 -0.25063,-0.02455 -0.127899,-0.02325 -0.264842,-0.07106 v -0.251923 q 0.108521,0.0633 0.237712,0.0956 0.129191,0.0323 0.270009,0.0323 0.245463,0 0.373362,-0.09689 0.129191,-0.09689 0.129191,-0.281636 0,-0.170533 -0.120147,-0.266134 -0.118856,-0.09689 -0.332022,-0.09689 H 48.58542 v -0.214457 h 0.235128 q 0.192494,0 0.294555,-0.07622 0.102061,-0.07752 0.102061,-0.222209 0,-0.14857 -0.105936,-0.227376 -0.104645,-0.0801 -0.301016,-0.0801 -0.107228,0 -0.22996,0.02326 -0.122731,0.02325 -0.270009,0.07235 v -0.232544 q 0.14857,-0.04134 0.277761,-0.06201 0.130483,-0.02067 0.245463,-0.02067 0.297139,0 0.470255,0.13565 0.173116,0.134359 0.173116,0.364319 0,0.160197 -0.09173,0.271301 -0.09173,0.109813 -0.260966,0.152446 z" />
+ </g>
+ <g
+ id="text4178"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="4">
+ <path
+ id="path4528"
+ style="stroke-width:0.2"
+ d="m 61.085134,31.8395 -0.658875,1.029653 h 0.658875 z m -0.06847,-0.227376 h 0.328145 v 1.257029 h 0.275177 v 0.217041 h -0.275177 v 0.454753 h -0.259674 v -0.454753 h -0.870748 v -0.251922 z" />
+ </g>
+ <g
+ id="text4182"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="5">
+ <path
+ id="path4525"
+ style="stroke-width:0.2"
+ d="m 72.405329,31.612124 h 1.024486 v 0.219625 h -0.785482 v 0.472839 q 0.05684,-0.01938 0.113688,-0.02842 0.05684,-0.01034 0.113688,-0.01034 0.322978,0 0.511597,0.176992 0.188619,0.176992 0.188619,0.479299 0,0.31135 -0.193787,0.484466 -0.193786,0.171824 -0.546478,0.171824 -0.12144,0 -0.248047,-0.02067 -0.125315,-0.02067 -0.259674,-0.06201 v -0.262258 q 0.116272,0.0633 0.240295,0.09431 0.124024,0.03101 0.262258,0.03101 0.223501,0 0.353984,-0.117564 0.130483,-0.117564 0.130483,-0.319102 0,-0.201538 -0.130483,-0.319102 -0.130483,-0.117564 -0.353984,-0.117564 -0.104644,0 -0.209289,0.02325 -0.103353,0.02325 -0.211874,0.07235 z" />
+ </g>
+ <g
+ id="text4186"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="6">
+ <path
+ id="path4522"
+ style="stroke-width:0.2"
+ d="m 85.027779,32.472537 q -0.1757,0 -0.279053,0.120147 -0.102061,0.120148 -0.102061,0.329438 0,0.207997 0.102061,0.329437 0.103353,0.120148 0.279053,0.120148 0.175699,0 0.27776,-0.120148 0.103353,-0.12144 0.103353,-0.329437 0,-0.20929 -0.103353,-0.329438 -0.102061,-0.120147 -0.27776,-0.120147 z m 0.518056,-0.81778 v 0.237712 q -0.09819,-0.04651 -0.198954,-0.07105 -0.09948,-0.02455 -0.197663,-0.02455 -0.258382,0 -0.395324,0.174408 -0.135651,0.174408 -0.15503,0.5271 0.07622,-0.112396 0.191203,-0.171824 0.11498,-0.06072 0.253215,-0.06072 0.290679,0 0.458628,0.176992 0.16924,0.1757 0.16924,0.479299 0,0.297139 -0.1757,0.476715 -0.1757,0.179575 -0.467671,0.179575 -0.334605,0 -0.511597,-0.255798 -0.176992,-0.25709 -0.176992,-0.744141 0,-0.457336 0.217041,-0.728637 0.217041,-0.272593 0.582652,-0.272593 0.09818,0 0.197662,0.01938 0.100769,0.01938 0.20929,0.05814 z" />
+ </g>
+ <g
+ id="text4190"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="7">
+ <path
+ id="path4519"
+ style="stroke-width:0.2"
+ d="m 96.406103,31.612124 h 1.240234 v 0.111105 l -0.700216,1.817718 h -0.272593 l 0.658875,-1.709198 h -0.9263 z" />
+ </g>
+ <g
+ id="text4194"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="8">
+ <path
+ id="path4516"
+ style="stroke-width:0.2"
+ d="m 109.06473,32.624982 q -0.18604,0 -0.29327,0.09948 -0.10594,0.09948 -0.10594,0.273885 0,0.174408 0.10594,0.273886 0.10723,0.09948 0.29327,0.09948 0.18603,0 0.29326,-0.09948 0.10723,-0.10077 0.10723,-0.273886 0,-0.174408 -0.10723,-0.273885 -0.10594,-0.09948 -0.29326,-0.09948 z m -0.26097,-0.111104 q -0.16795,-0.04134 -0.26226,-0.156321 -0.093,-0.11498 -0.093,-0.280345 0,-0.231252 0.16408,-0.365611 0.16536,-0.134358 0.45217,-0.134358 0.28809,0 0.45216,0.134358 0.16408,0.134359 0.16408,0.365611 0,0.165365 -0.0943,0.280345 -0.093,0.11498 -0.25968,0.156321 0.18862,0.04393 0.29327,0.171824 0.10593,0.127899 0.10593,0.312642 0,0.280345 -0.17182,0.430207 -0.17053,0.149861 -0.48963,0.149861 -0.31911,0 -0.49093,-0.149861 -0.17053,-0.149862 -0.17053,-0.430207 0,-0.184743 0.10593,-0.312642 0.10594,-0.127899 0.29456,-0.171824 z m -0.0956,-0.41212 q 0,0.149862 0.093,0.233836 0.0943,0.08397 0.26355,0.08397 0.16794,0 0.26225,-0.08397 0.0956,-0.08397 0.0956,-0.233836 0,-0.149861 -0.0956,-0.233835 -0.0943,-0.08398 -0.26225,-0.08398 -0.16925,0 -0.26355,0.08398 -0.093,0.08397 -0.093,0.233835 z" />
+ </g>
+ <g
+ id="text4198"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="9">
+ <path
+ id="path4513"
+ style="stroke-width:0.2"
+ d="m 120.549,33.500898 v -0.237712 q 0.0982,0.04651 0.19896,0.07106 0.10076,0.02455 0.19766,0.02455 0.25838,0 0.39403,-0.173117 0.13694,-0.174407 0.15632,-0.528391 -0.0749,0.111104 -0.18991,0.170532 -0.11498,0.05943 -0.25451,0.05943 -0.28938,0 -0.45862,-0.174408 -0.16795,-0.1757 -0.16795,-0.479299 0,-0.297139 0.1757,-0.476715 0.1757,-0.179575 0.46767,-0.179575 0.3346,0 0.5103,0.25709 0.177,0.255798 0.177,0.74414 0,0.456045 -0.21705,0.728638 -0.21574,0.271301 -0.58136,0.271301 -0.0982,0 -0.19895,-0.01938 -0.10077,-0.01938 -0.20929,-0.05814 z m 0.51935,-0.81778 q 0.1757,0 0.27776,-0.120147 0.10335,-0.120148 0.10335,-0.329438 0,-0.207997 -0.10335,-0.328145 -0.10206,-0.12144 -0.27776,-0.12144 -0.1757,0 -0.27905,0.12144 -0.10206,0.120148 -0.10206,0.328145 0,0.20929 0.10206,0.329438 0.10335,0.120147 0.27905,0.120147 z" />
+ </g>
+ <g
+ id="text4202"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="10">
+ <path
+ id="path4508"
+ style="stroke-width:0.2"
+ d="m 131.77876,33.321322 h 0.42633 v -1.471486 l -0.46379,0.09302 v -0.237711 l 0.46121,-0.09302 h 0.26097 v 1.709198 h 0.42633 v 0.219625 h -1.11105 z" />
+ <path
+ id="path4510"
+ style="stroke-width:0.2"
+ d="m 133.9763,31.783948 q -0.20154,0 -0.3036,0.198955 -0.10077,0.197662 -0.10077,0.59557 0,0.396617 0.10077,0.595571 0.10206,0.197663 0.3036,0.197663 0.20283,0 0.3036,-0.197663 0.10206,-0.198954 0.10206,-0.595571 0,-0.397908 -0.10206,-0.59557 -0.10077,-0.198955 -0.3036,-0.198955 z m 0,-0.206705 q 0.32427,0 0.4948,0.25709 0.17183,0.255798 0.17183,0.74414 0,0.487051 -0.17183,0.744141 -0.17053,0.255798 -0.4948,0.255798 -0.32427,0 -0.49609,-0.255798 -0.17053,-0.25709 -0.17053,-0.744141 0,-0.488342 0.17053,-0.74414 0.17182,-0.25709 0.49609,-0.25709 z" />
+ </g>
+ <g
+ id="text4206"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="11">
+ <path
+ id="path4503"
+ style="stroke-width:0.2"
+ d="m 143.8134,33.321322 h 0.42633 v -1.471486 l -0.4638,0.09302 v -0.237711 l 0.46122,-0.09302 h 0.26096 v 1.709198 h 0.42633 v 0.219625 h -1.11104 z" />
+ <path
+ id="path4505"
+ style="stroke-width:0.2"
+ d="m 145.49805,33.321322 h 0.42633 v -1.471486 l -0.46379,0.09302 v -0.237711 l 0.46121,-0.09302 h 0.26096 v 1.709198 h 0.42634 v 0.219625 h -1.11105 z" />
+ </g>
+ <g
+ id="text4162"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="12">
+ <path
+ id="path4498"
+ style="stroke-width:0.2"
+ d="m 155.84801,33.321322 h 0.42633 v -1.471486 l -0.4638,0.09302 v -0.237711 l 0.46121,-0.09302 h 0.26097 v 1.709198 h 0.42633 v 0.219625 h -1.11104 z" />
+ <path
+ id="path4500"
+ style="stroke-width:0.2"
+ d="m 157.71223,33.321322 h 0.9108 v 0.219625 h -1.22473 v -0.219625 q 0.14857,-0.153737 0.40437,-0.412119 0.25709,-0.259674 0.32298,-0.334605 0.12531,-0.140819 0.1744,-0.237712 0.0504,-0.09819 0.0504,-0.192495 0,-0.153737 -0.10852,-0.25063 -0.10723,-0.09689 -0.28035,-0.09689 -0.12273,0 -0.25967,0.04263 -0.13565,0.04263 -0.29068,0.129192 v -0.26355 q 0.15761,-0.0633 0.29455,-0.0956 0.13695,-0.0323 0.25064,-0.0323 0.29972,0 0.478,0.149861 0.17829,0.149862 0.17829,0.400493 0,0.118855 -0.0452,0.226084 -0.0439,0.105937 -0.16149,0.250631 -0.0323,0.03746 -0.20541,0.217041 -0.17312,0.178283 -0.48835,0.499969 z" />
+ </g>
+ <rect
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1396"
+ width="205.2254"
+ height="14.652952"
+ x="2.4169061"
+ y="1.7004007" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4158"
+ d="M 14.138868,16.275039 V 5.8989342 H 2.2804611 l 0.053448,10.3787778"
+ style="opacity:1;fill:#aa8800;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ style="opacity:1;fill:#d45500;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 62.95057,16.275576 V 5.8908263 h 48.01665 V 16.161458"
+ id="path4138"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4134"
+ d="M 111.40061,16.175046 V 5.8989342 h 48.23178 V 16.062122"
+ style="opacity:1;fill:#88aa00;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ style="opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 14.529662,16.275039 V 5.8989342 H 62.405441 V 16.161016"
+ id="path4136"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <g
+ id="text4014"
+ style="font-size:1.85208px;line-height:1.25;text-align:justify;opacity:1;fill:#1a1a1a;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="lpe name">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4483"
+ style="font-size:1.85208px;fill:#1a1a1a;stroke-width:0.2"
+ d="m 3.8383174,10.190788 h 0.1663981 v 1.40715 H 3.8383174 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4485"
+ style="font-size:1.85208px;fill:#1a1a1a;stroke-width:0.2"
+ d="m 4.5129532,11.446009 v 0.537176 H 4.3456507 V 10.58508 h 0.1673025 v 0.153737 q 0.052452,-0.09043 0.1320332,-0.133842 0.080486,-0.04431 0.1917196,-0.04431 0.1844849,0 0.2993357,0.146503 0.1157552,0.146503 0.1157552,0.385248 0,0.238745 -0.1157552,0.385248 -0.1148508,0.146502 -0.2993357,0.146502 -0.1112335,0 -0.1917196,-0.04341 -0.079582,-0.04431 -0.1320332,-0.134746 z m 0.5661153,-0.353596 q 0,-0.183581 -0.075964,-0.287579 -0.07506,-0.104904 -0.2070933,-0.104904 -0.1320333,0 -0.2079976,0.104904 -0.07506,0.103998 -0.07506,0.287579 0,0.18358 0.07506,0.288484 0.075964,0.103998 0.2079976,0.103998 0.1320333,0 0.2070933,-0.103998 0.075964,-0.104904 0.075964,-0.288484 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4487"
+ style="font-size:1.85208px;fill:#1a1a1a;stroke-width:0.2"
+ d="m 6.3939752,11.049909 v 0.08139 H 5.6289056 q 0.010852,0.171825 0.1030945,0.262258 0.093147,0.08953 0.2586405,0.08953 0.09586,0 0.1853892,-0.02351 0.090434,-0.02351 0.1790589,-0.07054 v 0.157354 q -0.089529,0.03798 -0.1835806,0.05788 -0.094051,0.01989 -0.1908152,0.01989 -0.2423624,0 -0.3843434,-0.141076 -0.1410767,-0.141077 -0.1410767,-0.381631 0,-0.248693 0.133842,-0.394291 0.1347463,-0.146503 0.3626393,-0.146503 0.2043803,0 0.3228485,0.132034 0.1193726,0.131129 0.1193726,0.357213 z m -0.1663981,-0.04883 q -0.00181,-0.136555 -0.076869,-0.217946 -0.074156,-0.08139 -0.1971456,-0.08139 -0.139268,0 -0.2233714,0.07868 -0.083199,0.07868 -0.09586,0.221563 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4489"
+ style="font-size:1.85208px;fill:#1a1a1a;stroke-width:0.2"
+ d="m 8.0986516,10.986605 v 0.611333 H 7.9322535 v -0.605907 q 0,-0.143789 -0.056069,-0.215232 -0.056069,-0.07144 -0.1682068,-0.07144 -0.1347463,0 -0.2125193,0.08591 -0.077773,0.08591 -0.077773,0.234224 v 0.572446 H 7.250383 V 10.58508 h 0.1673024 v 0.157354 q 0.059686,-0.09134 0.1401724,-0.136555 0.08139,-0.04522 0.1871978,-0.04522 0.1745372,0 0.2640666,0.108521 0.089529,0.107616 0.089529,0.317422 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4491"
+ style="font-size:1.85208px;fill:#1a1a1a;stroke-width:0.2"
+ d="m 8.8926599,11.088796 q -0.2016673,0 -0.2794404,0.04612 -0.077773,0.04612 -0.077773,0.157354 0,0.08863 0.057878,0.141077 0.058782,0.05155 0.1591634,0.05155 0.1383637,0 0.2215627,-0.09767 0.084103,-0.09857 0.084103,-0.261354 v -0.03708 z m 0.3318918,-0.06873 v 0.577872 H 9.0581536 V 11.4442 q -0.056973,0.09224 -0.141981,0.136555 -0.085008,0.04341 -0.2079976,0.04341 -0.1555461,0 -0.2477885,-0.08682 -0.091338,-0.08772 -0.091338,-0.234223 0,-0.17092 0.1139465,-0.257737 0.1148509,-0.08682 0.3418396,-0.08682 h 0.2333191 v -0.01628 q 0,-0.114851 -0.075964,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.086816,0 -0.1691111,0.0208 -0.082295,0.0208 -0.1582591,0.0624 v -0.153737 q 0.091338,-0.03527 0.1772501,-0.05245 0.085912,-0.01809 0.1673025,-0.01809 0.219754,0 0.3282745,0.113947 0.1085205,0.113946 0.1085205,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4493"
+ style="font-size:1.85208px;fill:#1a1a1a;stroke-width:0.2"
+ d="m 10.356782,10.779512 q 0.0624,-0.112138 0.149216,-0.165494 0.08682,-0.05336 0.20438,-0.05336 0.158259,0 0.244172,0.111234 0.08591,0.110329 0.08591,0.314709 v 0.611333 h -0.167303 v -0.605907 q 0,-0.145598 -0.05155,-0.216136 -0.05155,-0.07054 -0.157355,-0.07054 -0.12932,0 -0.20438,0.08591 -0.07506,0.08591 -0.07506,0.234224 v 0.572446 h -0.167303 v -0.605907 q 0,-0.146502 -0.05155,-0.216136 -0.05155,-0.07054 -0.159163,-0.07054 -0.1275118,0 -0.2025718,0.08682 -0.07506,0.08591 -0.07506,0.233319 v 0.572446 H 9.5618697 V 10.58508 h 0.1673025 v 0.157354 q 0.056973,-0.09315 0.1365549,-0.137459 0.079582,-0.04431 0.1890069,-0.04431 0.110329,0 0.187198,0.05607 0.07777,0.05607 0.11485,0.162781 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4495"
+ style="font-size:1.85208px;fill:#1a1a1a;stroke-width:0.2"
+ d="m 12.239613,11.049909 v 0.08139 h -0.76507 q 0.01085,0.171825 0.103095,0.262258 0.09315,0.08953 0.25864,0.08953 0.09586,0 0.18539,-0.02351 0.09043,-0.02351 0.179058,-0.07054 v 0.157354 q -0.08953,0.03798 -0.18358,0.05788 -0.09405,0.01989 -0.190815,0.01989 -0.242363,0 -0.384344,-0.141076 -0.141076,-0.141077 -0.141076,-0.381631 0,-0.248693 0.133842,-0.394291 0.134746,-0.146503 0.362639,-0.146503 0.20438,0 0.322848,0.132034 0.119373,0.131129 0.119373,0.357213 z m -0.166398,-0.04883 q -0.0018,-0.136555 -0.07687,-0.217946 -0.07416,-0.08139 -0.197145,-0.08139 -0.139268,0 -0.223372,0.07868 -0.0832,0.07868 -0.09586,0.221563 z" />
+ </g>
+ <g
+ id="text4092"
+ style="font-size:1.85208px;line-height:1.25;text-align:justify;opacity:1;fill:#ffffff;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:transform-center-y="2.0156633"
+ aria-label=" group paths">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4462"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 19.151796,9.7372628 q 0,-0.1808675 -0.07506,-0.2803447 -0.07416,-0.099477 -0.208902,-0.099477 -0.133842,0 -0.208902,0.099477 -0.07416,0.099477 -0.07416,0.2803447 0,0.1799631 0.07416,0.2794402 0.07506,0.09948 0.208902,0.09948 0.134747,0 0.208902,-0.09948 0.07506,-0.099477 0.07506,-0.2794402 z m 0.166398,0.3924822 q 0,0.258641 -0.11485,0.384344 -0.114851,0.126607 -0.351788,0.126607 -0.08772,0 -0.165494,-0.01356 -0.07777,-0.01266 -0.151024,-0.03979 V 10.42547 q 0.07325,0.03979 0.144694,0.05878 0.07144,0.01899 0.145598,0.01899 0.163686,0 0.245076,-0.08591 0.08139,-0.08501 0.08139,-0.257737 v -0.08229 q -0.05155,0.08953 -0.132033,0.133842 -0.08049,0.04431 -0.192624,0.04431 -0.186293,0 -0.30024,-0.141981 -0.113946,-0.1419808 -0.113946,-0.3762042 0,-0.2351278 0.113946,-0.3771088 0.113947,-0.141981 0.30024,-0.141981 0.112138,0 0.192624,0.044313 0.08049,0.044313 0.132033,0.1338419 V 9.2425901 h 0.166398 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4464"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 20.247853,9.3981362 q -0.02803,-0.016278 -0.0615,-0.023513 -0.03256,-0.00814 -0.07235,-0.00814 -0.141076,0 -0.217041,0.092242 -0.07506,0.091338 -0.07506,0.2631622 V 10.255446 H 19.654608 V 9.2425901 h 0.167302 v 0.1573548 q 0.05245,-0.092242 0.136555,-0.136555 0.0841,-0.045217 0.204381,-0.045217 0.01718,0 0.03798,0.00271 0.0208,0.00181 0.04612,0.00633 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4466"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 20.776891,9.3592497 q -0.133842,0 -0.211615,0.1049031 -0.07777,0.1039989 -0.07777,0.2857707 0,0.1817719 0.07687,0.2866755 0.07777,0.103998 0.212519,0.103998 0.132938,0 0.210711,-0.104903 0.07777,-0.104903 0.07777,-0.2857705 0,-0.1799632 -0.07777,-0.2848663 -0.07777,-0.1058075 -0.210711,-0.1058075 z m 0,-0.1410767 q 0.217041,0 0.340935,0.1410767 0.123894,0.1410766 0.123894,0.3906738 0,0.2486928 -0.123894,0.3906735 -0.123894,0.141077 -0.340935,0.141077 -0.217945,0 -0.34184,-0.141077 -0.12299,-0.1419807 -0.12299,-0.3906735 0,-0.2495972 0.12299,-0.3906738 0.123895,-0.1410767 0.34184,-0.1410767 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4468"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="M 21.499457,9.855731 V 9.2425901 h 0.166398 v 0.6068105 q 0,0.1437897 0.05607,0.2161364 0.05607,0.07144 0.168206,0.07144 0.134747,0 0.21252,-0.08591 0.07868,-0.085912 0.07868,-0.2342235 V 9.2425901 h 0.166398 v 1.0128579 h -0.166398 v -0.155546 q -0.06059,0.09224 -0.141077,0.137459 -0.07958,0.04431 -0.185389,0.04431 -0.174537,0 -0.264971,-0.108521 -0.09043,-0.10852 -0.09043,-0.317422 z m 0.418708,-0.637558 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4470"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 22.85325,10.103519 v 0.537177 H 22.685948 V 9.2425901 h 0.167302 v 0.1537374 q 0.05245,-0.090434 0.132033,-0.1338419 0.08049,-0.044313 0.19172,-0.044313 0.184485,0 0.299336,0.1465027 0.115755,0.1465027 0.115755,0.3852478 0,0.2387451 -0.115755,0.3852479 -0.114851,0.146503 -0.299336,0.146503 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134747 z m 0.566115,-0.3535955 q 0,-0.1835805 -0.07596,-0.2875793 -0.07506,-0.1049032 -0.207093,-0.1049032 -0.132034,0 -0.207998,0.1049032 -0.07506,0.1039988 -0.07506,0.2875793 0,0.1835805 0.07506,0.2884835 0.07596,0.103999 0.207998,0.103999 0.132033,0 0.207093,-0.103999 0.07596,-0.104903 0.07596,-0.2884835 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4472"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="M 18.646272,12.418624 V 12.9558 h -0.167303 v -1.398106 h 0.167303 v 0.153738 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.191719,-0.04431 0.184485,0 0.299336,0.146503 0.115755,0.146503 0.115755,0.385248 0,0.238745 -0.115755,0.385247 -0.114851,0.146503 -0.299336,0.146503 -0.111233,0 -0.191719,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.183581 -0.07596,-0.28758 -0.07506,-0.104903 -0.207094,-0.104903 -0.132033,0 -0.207997,0.104903 -0.07506,0.103999 -0.07506,0.28758 0,0.18358 0.07506,0.288483 0.07596,0.103999 0.207997,0.103999 0.132034,0 0.207094,-0.103999 0.07596,-0.104903 0.07596,-0.288483 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4474"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 20.121246,12.06141 q -0.201667,0 -0.27944,0.04612 -0.07777,0.04612 -0.07777,0.157354 0,0.08862 0.05788,0.141077 0.05878,0.05155 0.159164,0.05155 0.138363,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.331892,-0.06873 v 0.577871 H 20.28674 v -0.153737 q -0.05697,0.09224 -0.141981,0.136555 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247788,-0.08682 -0.09134,-0.08772 -0.09134,-0.234224 0,-0.170919 0.113946,-0.257736 0.114851,-0.08682 0.34184,-0.08682 h 0.233319 v -0.01628 q 0,-0.114851 -0.07596,-0.177251 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169112,0.0208 -0.08229,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.177251,-0.05245 0.08591,-0.01809 0.167302,-0.01809 0.219754,0 0.328275,0.113947 0.10852,0.113946 0.10852,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4476"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 20.961376,11.270115 v 0.287579 h 0.342744 v 0.129321 h -0.342744 v 0.549837 q 0,0.123894 0.03346,0.159163 0.03437,0.03527 0.138364,0.03527 h 0.17092 v 0.139268 H 21.1332 q -0.192624,0 -0.265875,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 V 11.687018 H 20.67199 v -0.129321 h 0.122085 v -0.287579 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4478"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 22.365812,11.95922 v 0.611332 h -0.166398 v -0.605906 q 0,-0.143789 -0.05607,-0.215232 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234224 v 0.572445 h -0.167303 v -1.407149 h 0.167303 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264067,0.108521 0.08953,0.107616 0.08953,0.317422 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4480"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 23.345209,11.587537 v 0.157355 q -0.07054,-0.03617 -0.146502,-0.05426 -0.07597,-0.01809 -0.157355,-0.01809 -0.123894,0 -0.186293,0.03798 -0.0615,0.03798 -0.0615,0.113947 0,0.05788 0.04431,0.09134 0.04431,0.03256 0.178155,0.0624 l 0.05697,0.01266 q 0.17725,0.03798 0.251406,0.107616 0.07506,0.06873 0.07506,0.192624 0,0.141077 -0.112138,0.223371 -0.111234,0.0823 -0.306571,0.0823 -0.08139,0 -0.170015,-0.01628 -0.08772,-0.01537 -0.185389,-0.04703 v -0.17182 q 0.09224,0.04793 0.181772,0.07235 0.08953,0.02351 0.17725,0.02351 0.117564,0 0.180867,-0.03979 0.0633,-0.04069 0.0633,-0.113946 0,-0.06783 -0.04612,-0.103999 -0.04522,-0.03617 -0.199859,-0.06963 l -0.05788,-0.01357 q -0.154642,-0.03256 -0.223372,-0.09948 -0.06873,-0.06783 -0.06873,-0.185389 0,-0.142886 0.101286,-0.220659 0.101286,-0.07777 0.28758,-0.07777 0.09224,0 0.173632,0.01356 0.08139,0.01356 0.15012,0.04069 z" />
+ </g>
+ <g
+ id="text4116"
+ style="font-size:1.85208px;line-height:1.25;text-align:justify;opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:transform-center-y="2.0156633"
+ aria-label=" group paths">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4441"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 66.975265,9.7372628 q 0,-0.1808675 -0.07506,-0.2803447 -0.07416,-0.099477 -0.208901,-0.099477 -0.133842,0 -0.208902,0.099477 -0.07416,0.099477 -0.07416,0.2803447 0,0.1799631 0.07416,0.2794402 0.07506,0.09948 0.208902,0.09948 0.134746,0 0.208901,-0.09948 0.07506,-0.099477 0.07506,-0.2794402 z m 0.166399,0.3924822 q 0,0.258641 -0.114851,0.384344 -0.114851,0.126607 -0.351788,0.126607 -0.08772,0 -0.165493,-0.01356 -0.07777,-0.01266 -0.151025,-0.03979 V 10.42547 q 0.07325,0.03979 0.144694,0.05878 0.07144,0.01899 0.145599,0.01899 0.163685,0 0.245075,-0.08591 0.08139,-0.08501 0.08139,-0.257737 v -0.08229 q -0.05155,0.08953 -0.132033,0.133842 -0.08049,0.04431 -0.192624,0.04431 -0.186293,0 -0.30024,-0.141981 -0.113946,-0.1419808 -0.113946,-0.3762042 0,-0.2351278 0.113946,-0.3771088 0.113947,-0.141981 0.30024,-0.141981 0.112138,0 0.192624,0.044313 0.08049,0.044313 0.132033,0.1338419 V 9.2425901 h 0.166399 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4443"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 68.071323,9.3981362 q -0.02804,-0.016278 -0.0615,-0.023513 -0.03256,-0.00814 -0.07235,-0.00814 -0.141077,0 -0.217041,0.092242 -0.07506,0.091338 -0.07506,0.2631622 V 10.255446 H 67.478077 V 9.2425901 h 0.167303 v 0.1573548 q 0.05245,-0.092242 0.136555,-0.136555 0.0841,-0.045217 0.20438,-0.045217 0.01718,0 0.03798,0.00271 0.0208,0.00181 0.04612,0.00633 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4445"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 68.60036,9.3592497 q -0.133842,0 -0.211615,0.1049031 -0.07777,0.1039989 -0.07777,0.2857707 0,0.1817719 0.07687,0.2866755 0.07777,0.103998 0.212519,0.103998 0.132938,0 0.210711,-0.104903 0.07777,-0.104903 0.07777,-0.2857705 0,-0.1799632 -0.07777,-0.2848663 -0.07777,-0.1058075 -0.210711,-0.1058075 z m 0,-0.1410767 q 0.217041,0 0.340935,0.1410767 0.123895,0.1410766 0.123895,0.3906738 0,0.2486928 -0.123895,0.3906735 -0.123894,0.141077 -0.340935,0.141077 -0.217945,0 -0.341839,-0.141077 -0.12299,-0.1419807 -0.12299,-0.3906735 0,-0.2495972 0.12299,-0.3906738 Q 68.382415,9.218173 68.60036,9.218173 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4447"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="M 69.322926,9.855731 V 9.2425901 h 0.166398 v 0.6068105 q 0,0.1437897 0.05607,0.2161364 0.05607,0.07144 0.168207,0.07144 0.134746,0 0.212519,-0.08591 Q 70.0048,9.965155 70.0048,9.8168435 V 9.2425901 h 0.166398 V 10.255448 H 70.0048 v -0.155546 q -0.06059,0.09224 -0.141076,0.137459 -0.07958,0.04431 -0.18539,0.04431 -0.174537,0 -0.264971,-0.108521 -0.09043,-0.10852 -0.09043,-0.317422 z m 0.418708,-0.637558 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4449"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 70.676719,10.103519 v 0.537177 H 70.509417 V 9.2425901 h 0.167302 v 0.1537374 q 0.05245,-0.090434 0.132033,-0.1338419 0.08049,-0.044313 0.19172,-0.044313 0.184485,0 0.299336,0.1465027 0.115755,0.1465027 0.115755,0.3852478 0,0.2387451 -0.115755,0.3852479 -0.114851,0.146503 -0.299336,0.146503 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134747 z m 0.566115,-0.3535955 q 0,-0.1835805 -0.07596,-0.2875793 -0.07506,-0.1049032 -0.207093,-0.1049032 -0.132034,0 -0.207998,0.1049032 -0.07506,0.1039988 -0.07506,0.2875793 0,0.1835805 0.07506,0.2884835 0.07596,0.103999 0.207998,0.103999 0.132033,0 0.207093,-0.103999 0.07596,-0.104903 0.07596,-0.2884835 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4451"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="M 66.469741,12.418624 V 12.9558 h -0.167303 v -1.398106 h 0.167303 v 0.153738 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.19172,-0.04431 0.184485,0 0.299335,0.146503 0.115756,0.146503 0.115756,0.385248 0,0.238745 -0.115756,0.385247 -0.11485,0.146503 -0.299335,0.146503 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.183581 -0.07596,-0.28758 -0.07506,-0.104903 -0.207094,-0.104903 -0.132033,0 -0.207997,0.104903 -0.07506,0.103999 -0.07506,0.28758 0,0.18358 0.07506,0.288483 0.07596,0.103999 0.207997,0.103999 0.132034,0 0.207094,-0.103999 0.07596,-0.104903 0.07596,-0.288483 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4453"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 67.944715,12.06141 q -0.201667,0 -0.27944,0.04612 -0.07777,0.04612 -0.07777,0.157354 0,0.08862 0.05788,0.141077 0.05878,0.05155 0.159163,0.05155 0.138364,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.331892,-0.06873 v 0.577871 h -0.166398 v -0.153737 q -0.05697,0.09224 -0.141981,0.136555 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247788,-0.08682 -0.09134,-0.08772 -0.09134,-0.234224 0,-0.170919 0.113946,-0.257736 0.114851,-0.08682 0.34184,-0.08682 h 0.233319 v -0.01628 q 0,-0.114851 -0.07596,-0.177251 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.0823,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.17725,-0.05245 0.08591,-0.01809 0.167302,-0.01809 0.219754,0 0.328275,0.113947 0.10852,0.113946 0.10852,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4455"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 68.784845,11.270115 v 0.287579 h 0.342744 v 0.129321 h -0.342744 v 0.549837 q 0,0.123894 0.03346,0.159163 0.03437,0.03527 0.138364,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.192624,0 -0.265875,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 v -0.549837 h -0.122085 v -0.129321 h 0.122085 v -0.287579 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4457"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 70.189281,11.95922 v 0.611332 h -0.166398 v -0.605906 q 0,-0.143789 -0.05607,-0.215232 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234224 v 0.572445 h -0.167302 v -1.407149 h 0.167302 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264067,0.108521 0.08953,0.107616 0.08953,0.317422 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4459"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 71.168679,11.587537 v 0.157355 q -0.07054,-0.03617 -0.146503,-0.05426 -0.07596,-0.01809 -0.157355,-0.01809 -0.123894,0 -0.186293,0.03798 -0.06149,0.03798 -0.06149,0.113947 0,0.05788 0.04431,0.09134 0.04431,0.03256 0.178155,0.0624 l 0.05697,0.01266 q 0.17725,0.03798 0.251406,0.107616 0.07506,0.06873 0.07506,0.192624 0,0.141077 -0.112138,0.223371 -0.111233,0.0823 -0.30657,0.0823 -0.08139,0 -0.170016,-0.01628 -0.08772,-0.01537 -0.185389,-0.04703 v -0.17182 q 0.09224,0.04793 0.181772,0.07235 0.08953,0.02351 0.17725,0.02351 0.117564,0 0.180867,-0.03979 0.0633,-0.04069 0.0633,-0.113946 0,-0.06783 -0.04612,-0.103999 -0.04522,-0.03617 -0.199859,-0.06963 l -0.05788,-0.01357 q -0.154642,-0.03256 -0.223372,-0.09948 -0.06873,-0.06783 -0.06873,-0.185389 0,-0.142886 0.101285,-0.220659 0.101286,-0.07777 0.28758,-0.07777 0.09224,0 0.173633,0.01356 0.08139,0.01356 0.15012,0.04069 z" />
+ </g>
+ <g
+ id="text4042"
+ style="font-size:1.85208px;line-height:1.25;text-align:justify;opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:transform-center-y="2.0156633"
+ aria-label=" group paths">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4420"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 114.79874,9.7372628 q 0,-0.1808675 -0.0751,-0.2803447 -0.0742,-0.099477 -0.20891,-0.099477 -0.13384,0 -0.2089,0.099477 -0.0742,0.099477 -0.0742,0.2803447 0,0.1799631 0.0742,0.2794402 0.0751,0.09948 0.2089,0.09948 0.13475,0 0.20891,-0.09948 0.0751,-0.099477 0.0751,-0.2794402 z m 0.16639,0.3924822 q 0,0.258641 -0.11485,0.384344 -0.11485,0.126607 -0.35178,0.126607 -0.0877,0 -0.1655,-0.01356 -0.0778,-0.01266 -0.15102,-0.03979 V 10.42547 q 0.0733,0.03979 0.14469,0.05878 0.0715,0.01899 0.1456,0.01899 0.16369,0 0.24508,-0.08591 0.0814,-0.08501 0.0814,-0.257737 v -0.08229 q -0.0515,0.08953 -0.13204,0.133842 -0.0805,0.04431 -0.19262,0.04431 -0.18629,0 -0.30024,-0.141981 -0.11395,-0.1419808 -0.11395,-0.3762042 0,-0.2351278 0.11395,-0.3771088 0.11395,-0.141981 0.30024,-0.141981 0.11214,0 0.19262,0.044313 0.0805,0.044313 0.13204,0.1338419 V 9.2425901 h 0.16639 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4422"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 115.89479,9.3981362 q -0.028,-0.016278 -0.0615,-0.023513 -0.0326,-0.00814 -0.0724,-0.00814 -0.14107,0 -0.21704,0.092242 -0.0751,0.091338 -0.0751,0.2631622 v 0.5335586 h -0.1673 V 9.2425901 h 0.1673 v 0.1573548 q 0.0524,-0.092242 0.13656,-0.136555 0.0841,-0.045217 0.20438,-0.045217 0.0172,0 0.038,0.00271 0.0208,0.00181 0.0461,0.00633 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4424"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 116.42383,9.3592497 q -0.13384,0 -0.21161,0.1049031 -0.0778,0.1039989 -0.0778,0.2857707 0,0.1817719 0.0769,0.2866755 0.0778,0.103998 0.21252,0.103998 0.13294,0 0.21071,-0.104903 0.0778,-0.104903 0.0778,-0.2857705 0,-0.1799632 -0.0778,-0.2848663 -0.0778,-0.1058075 -0.21071,-0.1058075 z m 0,-0.1410767 q 0.21704,0 0.34094,0.1410767 0.12389,0.1410766 0.12389,0.3906738 0,0.2486928 -0.12389,0.3906735 -0.1239,0.141077 -0.34094,0.141077 -0.21794,0 -0.34184,-0.141077 -0.12299,-0.1419807 -0.12299,-0.3906735 0,-0.2495972 0.12299,-0.3906738 0.1239,-0.1410767 0.34184,-0.1410767 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4426"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="M 117.1464,9.855731 V 9.2425901 h 0.16639 v 0.6068105 q 0,0.1437897 0.0561,0.2161364 0.0561,0.07144 0.16821,0.07144 0.13475,0 0.21252,-0.08591 0.0787,-0.085912 0.0787,-0.2342235 V 9.2425901 h 0.1664 v 1.0128579 h -0.1664 v -0.155546 q -0.0606,0.09224 -0.14108,0.137459 -0.0796,0.04431 -0.18539,0.04431 -0.17454,0 -0.26497,-0.108521 -0.0904,-0.10852 -0.0904,-0.317422 z m 0.41871,-0.637558 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4428"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 118.50019,10.103519 v 0.537177 h -0.1673 V 9.2425901 h 0.1673 v 0.1537374 q 0.0524,-0.090434 0.13203,-0.1338419 0.0805,-0.044313 0.19172,-0.044313 0.18449,0 0.29934,0.1465027 0.11575,0.1465027 0.11575,0.3852478 0,0.2387451 -0.11575,0.3852479 -0.11485,0.146503 -0.29934,0.146503 -0.11123,0 -0.19172,-0.04341 -0.0796,-0.04431 -0.13203,-0.134747 z m 0.56612,-0.3535955 q 0,-0.1835805 -0.076,-0.2875793 -0.0751,-0.1049032 -0.20709,-0.1049032 -0.13204,0 -0.208,0.1049032 -0.0751,0.1039988 -0.0751,0.2875793 0,0.1835805 0.0751,0.2884835 0.076,0.103999 0.208,0.103999 0.13203,0 0.20709,-0.103999 0.076,-0.104903 0.076,-0.2884835 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4430"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="M 114.29321,12.418624 V 12.9558 h -0.1673 v -1.398106 h 0.1673 v 0.153738 q 0.0524,-0.09043 0.13204,-0.133842 0.0805,-0.04431 0.19171,-0.04431 0.18449,0 0.29934,0.146503 0.11576,0.146503 0.11576,0.385248 0,0.238745 -0.11576,0.385247 -0.11485,0.146503 -0.29934,0.146503 -0.11123,0 -0.19171,-0.04341 -0.0796,-0.04431 -0.13204,-0.134746 z m 0.56612,-0.353596 q 0,-0.183581 -0.076,-0.28758 -0.0751,-0.104903 -0.20709,-0.104903 -0.13203,0 -0.208,0.104903 -0.0751,0.103999 -0.0751,0.28758 0,0.18358 0.0751,0.288483 0.076,0.103999 0.208,0.103999 0.13203,0 0.20709,-0.103999 0.076,-0.104903 0.076,-0.288483 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4432"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 115.76819,12.06141 q -0.20167,0 -0.27944,0.04612 -0.0778,0.04612 -0.0778,0.157354 0,0.08862 0.0579,0.141077 0.0588,0.05155 0.15916,0.05155 0.13837,0 0.22157,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.33189,-0.06873 v 0.577871 h -0.1664 v -0.153737 q -0.057,0.09224 -0.14198,0.136555 -0.085,0.04341 -0.208,0.04341 -0.15554,0 -0.24779,-0.08682 -0.0913,-0.08772 -0.0913,-0.234224 0,-0.170919 0.11395,-0.257736 0.11485,-0.08682 0.34184,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.076,-0.177251 -0.0751,-0.0633 -0.21162,-0.0633 -0.0868,0 -0.16911,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.0913,-0.03527 0.17725,-0.05245 0.0859,-0.01809 0.1673,-0.01809 0.21976,0 0.32828,0.113947 0.10852,0.113946 0.10852,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4434"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 116.60832,11.270115 v 0.287579 h 0.34274 v 0.129321 h -0.34274 v 0.549837 q 0,0.123894 0.0335,0.159163 0.0344,0.03527 0.13836,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.19262,0 -0.26588,-0.07144 -0.0732,-0.07235 -0.0732,-0.262258 v -0.549837 h -0.12208 v -0.129321 h 0.12208 v -0.287579 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4436"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 118.01275,11.95922 v 0.611332 h -0.1664 v -0.605906 q 0,-0.143789 -0.0561,-0.215232 -0.0561,-0.07144 -0.16821,-0.07144 -0.13475,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234224 v 0.572445 h -0.16731 v -1.407149 h 0.16731 v 0.551646 q 0.0597,-0.09134 0.14017,-0.136555 0.0814,-0.04522 0.1872,-0.04522 0.17453,0 0.26406,0.108521 0.0895,0.107616 0.0895,0.317422 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4438"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 118.99215,11.587537 v 0.157355 q -0.0705,-0.03617 -0.1465,-0.05426 -0.076,-0.01809 -0.15736,-0.01809 -0.12389,0 -0.18629,0.03798 -0.0615,0.03798 -0.0615,0.113947 0,0.05788 0.0443,0.09134 0.0443,0.03256 0.17815,0.0624 l 0.057,0.01266 q 0.17725,0.03798 0.25141,0.107616 0.0751,0.06873 0.0751,0.192624 0,0.141077 -0.11214,0.223371 -0.11123,0.0823 -0.30657,0.0823 -0.0814,0 -0.17001,-0.01628 -0.0877,-0.01537 -0.18539,-0.04703 v -0.17182 q 0.0922,0.04793 0.18177,0.07235 0.0895,0.02351 0.17725,0.02351 0.11756,0 0.18087,-0.03979 0.0633,-0.04069 0.0633,-0.113946 0,-0.06783 -0.0461,-0.103999 -0.0452,-0.03617 -0.19986,-0.06963 l -0.0579,-0.01357 q -0.15464,-0.03256 -0.22337,-0.09948 -0.0687,-0.06783 -0.0687,-0.185389 0,-0.142886 0.10129,-0.220659 0.10128,-0.07777 0.28758,-0.07777 0.0922,0 0.17363,0.01356 0.0814,0.01356 0.15012,0.04069 z" />
+ </g>
+ <g
+ id="text4100"
+ style="font-size:1.85208px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#ffffff;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="group with shape">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4391"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 31.157854,8.5797112 q 0,-0.1808676 -0.07506,-0.2803447 -0.07416,-0.099477 -0.208902,-0.099477 -0.133841,0 -0.208902,0.099477 -0.07416,0.099477 -0.07416,0.2803447 0,0.1799631 0.07416,0.2794403 0.07506,0.099477 0.208902,0.099477 0.134747,0 0.208902,-0.099477 0.07506,-0.099477 0.07506,-0.2794403 z m 0.166399,0.3924825 q 0,0.2586405 -0.114851,0.3843434 -0.114851,0.1266073 -0.351788,0.1266073 -0.08772,0 -0.165493,-0.013565 -0.07777,-0.012661 -0.151025,-0.039791 V 9.267912 q 0.07325,0.039791 0.144694,0.058782 0.07144,0.018991 0.145599,0.018991 0.163685,0 0.245075,-0.085912 0.08139,-0.085008 0.08139,-0.2577362 v -0.082295 q -0.05155,0.089529 -0.132033,0.1338419 -0.08049,0.044313 -0.192624,0.044313 -0.186293,0 -0.30024,-0.141981 -0.113946,-0.141981 -0.113946,-0.3762044 0,-0.2351278 0.113946,-0.3771088 0.113947,-0.141981 0.30024,-0.141981 0.112138,0 0.192624,0.044313 0.08049,0.044313 0.132033,0.133842 v -0.153738 h 0.166399 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4393"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 32.253912,8.2405846 q -0.02804,-0.016278 -0.0615,-0.023513 -0.03256,-0.00814 -0.07235,-0.00814 -0.141077,0 -0.217041,0.092242 -0.07506,0.091338 -0.07506,0.2631622 V 9.0978966 H 31.660666 V 8.0850385 h 0.167303 v 0.1573547 q 0.05245,-0.092242 0.136555,-0.1365549 0.0841,-0.045217 0.20438,-0.045217 0.01718,0 0.03798,0.00271 0.0208,0.00181 0.04612,0.00633 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4395"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 32.782949,8.2016981 q -0.133842,0 -0.211615,0.1049031 -0.07777,0.1039988 -0.07777,0.2857707 0,0.1817718 0.07687,0.286675 0.07777,0.1039988 0.212519,0.1039988 0.132938,0 0.210711,-0.1049032 0.07777,-0.1049031 0.07777,-0.2857706 0,-0.1799632 -0.07777,-0.2848664 -0.07777,-0.1058074 -0.210711,-0.1058074 z m 0,-0.1410767 q 0.217041,0 0.340935,0.1410767 0.123895,0.1410766 0.123895,0.3906738 0,0.2486928 -0.123895,0.3906738 -0.123894,0.1410767 -0.340935,0.1410767 -0.217945,0 -0.34184,-0.1410767 -0.122989,-0.141981 -0.122989,-0.3906738 0,-0.2495972 0.122989,-0.3906738 0.123895,-0.1410767 0.34184,-0.1410767 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4397"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="M 33.505515,8.6981794 V 8.0850385 h 0.166398 V 8.691849 q 0,0.1437897 0.05607,0.2161367 0.05607,0.071443 0.168207,0.071443 0.134746,0 0.212519,-0.085912 0.07868,-0.085912 0.07868,-0.2342234 V 8.0850385 h 0.166398 V 9.0978966 H 34.187385 V 8.9423505 q -0.06059,0.092242 -0.141076,0.1374593 -0.07958,0.044313 -0.18539,0.044313 -0.174537,0 -0.264971,-0.1085205 -0.09043,-0.1085205 -0.09043,-0.3174225 z m 0.418708,-0.637558 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4399"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="M 34.859308,8.9459679 V 9.4831444 H 34.692006 V 8.0850385 h 0.167302 v 0.1537374 q 0.05245,-0.090434 0.132033,-0.133842 0.08049,-0.044313 0.19172,-0.044313 0.184485,0 0.299336,0.1465027 0.115755,0.1465027 0.115755,0.3852478 0,0.2387451 -0.115755,0.3852478 -0.114851,0.1465027 -0.299336,0.1465027 -0.111234,0 -0.19172,-0.043408 -0.07958,-0.044313 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.1835805 -0.07596,-0.2875794 -0.07506,-0.1049031 -0.207093,-0.1049031 -0.132034,0 -0.207998,0.1049031 -0.07506,0.1039989 -0.07506,0.2875794 0,0.1835805 0.07506,0.2884837 0.07596,0.1039988 0.207998,0.1039988 0.132033,0 0.207093,-0.1039988 0.07596,-0.1049032 0.07596,-0.2884837 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4401"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 31.119872,10.400143 h 0.166398 l 0.207998,0.790391 0.207093,-0.790391 h 0.196242 l 0.207997,0.790391 0.207094,-0.790391 h 0.166398 l -0.264971,1.012858 h -0.196242 l -0.217945,-0.830182 -0.21885,0.830182 h -0.196241 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4403"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 32.732306,10.400143 h 0.166398 v 1.012858 h -0.166398 z m 0,-0.394292 h 0.166398 v 0.210711 h -0.166398 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4405"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 33.410559,10.112563 v 0.28758 h 0.342744 v 0.12932 H 33.410559 V 11.0793 q 0,0.123894 0.03346,0.159164 0.03437,0.03527 0.138363,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.192624,0 -0.265875,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 v -0.549837 h -0.122086 v -0.12932 h 0.122086 v -0.28758 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4407"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 34.814996,10.801669 v 0.611332 h -0.166399 v -0.605906 q 0,-0.14379 -0.05607,-0.215233 -0.05607,-0.07144 -0.168206,-0.07144 -0.134747,0 -0.21252,0.08591 -0.07777,0.08591 -0.07777,0.234223 v 0.572446 h -0.167302 v -1.40715 h 0.167302 v 0.551646 q 0.05969,-0.09134 0.140173,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264066,0.10852 0.08953,0.107616 0.08953,0.317423 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4409"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 31.032152,12.74509 v 0.157355 q -0.07054,-0.03617 -0.146503,-0.05426 -0.07596,-0.01809 -0.157355,-0.01809 -0.123894,0 -0.186293,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.04431,0.09134 0.04431,0.03256 0.178155,0.0624 l 0.05697,0.01266 q 0.17725,0.03798 0.251406,0.107616 0.07506,0.06873 0.07506,0.192624 0,0.141076 -0.112138,0.223371 -0.111234,0.0823 -0.30657,0.0823 -0.08139,0 -0.170016,-0.01628 -0.08772,-0.01537 -0.185389,-0.04703 v -0.171824 q 0.09224,0.04793 0.181772,0.07235 0.08953,0.02351 0.17725,0.02351 0.117564,0 0.180867,-0.03979 0.0633,-0.04069 0.0633,-0.113947 0,-0.06783 -0.04612,-0.103999 -0.04522,-0.03617 -0.199859,-0.06963 l -0.05788,-0.01356 q -0.154642,-0.03256 -0.223372,-0.09948 -0.06873,-0.06782 -0.06873,-0.185389 0,-0.142885 0.101285,-0.220658 0.101286,-0.07777 0.28758,-0.07777 0.09224,0 0.173633,0.01356 0.08139,0.01356 0.15012,0.04069 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4411"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 32.194225,13.116773 v 0.611332 h -0.166398 v -0.605906 q 0,-0.14379 -0.05607,-0.215233 -0.05607,-0.07144 -0.168206,-0.07144 -0.134747,0 -0.21252,0.08591 -0.07777,0.08591 -0.07777,0.234223 v 0.572446 h -0.167302 v -1.407149 h 0.167302 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264067,0.10852 0.08953,0.107616 0.08953,0.317423 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4413"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 32.988234,13.218963 q -0.201668,0 -0.279441,0.04612 -0.07777,0.04612 -0.07777,0.157355 0,0.08862 0.05788,0.141076 0.05878,0.05155 0.159163,0.05155 0.138364,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261353 v -0.03708 z m 0.331892,-0.06873 v 0.577872 h -0.166398 v -0.153737 q -0.05697,0.09224 -0.141981,0.136554 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247789,-0.08682 -0.09134,-0.08772 -0.09134,-0.234223 0,-0.17092 0.113947,-0.257736 0.114851,-0.08682 0.341839,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.07597,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.0823,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.17725,-0.05245 0.08591,-0.01809 0.167303,-0.01809 0.219754,0 0.328274,0.113946 0.108521,0.113947 0.108521,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4415"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 33.824746,13.576176 v 0.537177 h -0.167303 v -1.398106 h 0.167303 v 0.153737 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.19172,-0.04431 0.184485,0 0.299335,0.146502 0.115756,0.146503 0.115756,0.385248 0,0.238745 -0.115756,0.385248 -0.11485,0.146503 -0.299335,0.146503 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.18358 -0.07596,-0.287579 -0.07506,-0.104903 -0.207094,-0.104903 -0.132033,0 -0.207997,0.104903 -0.07506,0.103999 -0.07506,0.287579 0,0.183581 0.07506,0.288484 0.07596,0.103999 0.207997,0.103999 0.132034,0 0.207094,-0.103999 0.07596,-0.104903 0.07596,-0.288484 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4417"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ d="m 35.705768,13.180076 v 0.08139 h -0.76507 q 0.01085,0.171824 0.103095,0.262258 0.09315,0.08953 0.25864,0.08953 0.09586,0 0.18539,-0.02351 0.09043,-0.02351 0.179059,-0.07054 v 0.157355 q -0.08953,0.03798 -0.183581,0.05788 -0.09405,0.0199 -0.190815,0.0199 -0.242363,0 -0.384344,-0.141077 -0.141076,-0.141077 -0.141076,-0.38163 0,-0.248693 0.133842,-0.394292 0.134746,-0.146502 0.362639,-0.146502 0.20438,0 0.322848,0.132033 0.119373,0.131129 0.119373,0.357213 z m -0.166398,-0.04883 q -0.0018,-0.136555 -0.07687,-0.217945 -0.07416,-0.08139 -0.197145,-0.08139 -0.139268,0 -0.223372,0.07868 -0.0832,0.07868 -0.09586,0.221562 z" />
+ </g>
+ <g
+ id="text4124"
+ style="font-size:1.85208px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="group with shape">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4362"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 78.981322,8.5797112 q 0,-0.1808676 -0.07506,-0.2803447 -0.07416,-0.099477 -0.208902,-0.099477 -0.133842,0 -0.208902,0.099477 -0.07416,0.099477 -0.07416,0.2803447 0,0.1799631 0.07416,0.2794403 0.07506,0.099477 0.208902,0.099477 0.134746,0 0.208902,-0.099477 0.07506,-0.099477 0.07506,-0.2794403 z m 0.166398,0.3924825 q 0,0.2586405 -0.114851,0.3843434 -0.114851,0.1266073 -0.351787,0.1266073 -0.08772,0 -0.165494,-0.013565 -0.07777,-0.012661 -0.151024,-0.039791 V 9.267912 q 0.07325,0.039791 0.144694,0.058782 0.07144,0.018991 0.145598,0.018991 0.163685,0 0.245075,-0.085912 0.08139,-0.085008 0.08139,-0.2577362 v -0.082295 q -0.05155,0.089529 -0.132034,0.1338419 -0.08049,0.044313 -0.192623,0.044313 -0.186294,0 -0.300241,-0.141981 -0.113946,-0.141981 -0.113946,-0.3762044 0,-0.2351278 0.113946,-0.3771088 0.113947,-0.141981 0.300241,-0.141981 0.112137,0 0.192623,0.044313 0.08049,0.044313 0.132034,0.133842 v -0.153738 h 0.166398 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4364"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 80.077379,8.2405846 q -0.02803,-0.016278 -0.06149,-0.023513 -0.03256,-0.00814 -0.07235,-0.00814 -0.141077,0 -0.217041,0.092242 -0.07506,0.091338 -0.07506,0.2631622 V 9.0978966 H 79.484133 V 8.0850385 h 0.167303 v 0.1573547 q 0.05245,-0.092242 0.136555,-0.1365549 0.0841,-0.045217 0.20438,-0.045217 0.01718,0 0.03798,0.00271 0.0208,0.00181 0.04612,0.00633 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4366"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 80.606416,8.2016981 q -0.133842,0 -0.211615,0.1049031 -0.07777,0.1039988 -0.07777,0.2857707 0,0.1817718 0.07687,0.286675 0.07777,0.1039988 0.212519,0.1039988 0.132938,0 0.210711,-0.1049032 0.07777,-0.1049031 0.07777,-0.2857706 0,-0.1799632 -0.07777,-0.2848664 -0.07777,-0.1058074 -0.210711,-0.1058074 z m 0,-0.1410767 q 0.217041,0 0.340936,0.1410767 0.123894,0.1410766 0.123894,0.3906738 0,0.2486928 -0.123894,0.3906738 -0.123895,0.1410767 -0.340936,0.1410767 -0.217945,0 -0.341839,-0.1410767 -0.12299,-0.141981 -0.12299,-0.3906738 0,-0.2495972 0.12299,-0.3906738 0.123894,-0.1410767 0.341839,-0.1410767 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4368"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="M 81.328982,8.6981794 V 8.0850385 H 81.49538 V 8.691849 q 0,0.1437897 0.05607,0.2161367 0.05607,0.071443 0.168207,0.071443 0.134746,0 0.212519,-0.085912 0.07868,-0.085912 0.07868,-0.2342234 V 8.0850385 h 0.166399 V 9.0978966 H 82.010852 V 8.9423505 q -0.06059,0.092242 -0.141076,0.1374593 -0.07958,0.044313 -0.185389,0.044313 -0.174538,0 -0.264971,-0.1085205 -0.09043,-0.1085205 -0.09043,-0.3174225 z m 0.418708,-0.637558 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4370"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="M 82.682775,8.9459679 V 9.4831444 H 82.515473 V 8.0850385 h 0.167302 v 0.1537374 q 0.05245,-0.090434 0.132034,-0.133842 0.08049,-0.044313 0.191719,-0.044313 0.184485,0 0.299336,0.1465027 0.115755,0.1465027 0.115755,0.3852478 0,0.2387451 -0.115755,0.3852478 -0.114851,0.1465027 -0.299336,0.1465027 -0.111233,0 -0.191719,-0.043408 -0.07958,-0.044313 -0.132034,-0.134746 z m 0.566116,-0.353596 q 0,-0.1835805 -0.07596,-0.2875794 -0.07506,-0.1049031 -0.207093,-0.1049031 -0.132033,0 -0.207998,0.1049031 -0.07506,0.1039989 -0.07506,0.2875794 0,0.1835805 0.07506,0.2884837 0.07596,0.1039988 0.207998,0.1039988 0.132033,0 0.207093,-0.1039988 0.07596,-0.1049032 0.07596,-0.2884837 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4372"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 78.94334,10.400143 h 0.166398 l 0.207997,0.790391 0.207094,-0.790391 h 0.196241 l 0.207997,0.790391 0.207094,-0.790391 h 0.166398 l -0.264971,1.012858 h -0.196241 l -0.217946,-0.830182 -0.218849,0.830182 H 79.20831 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4374"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 80.555773,10.400143 h 0.166398 v 1.012858 h -0.166398 z m 0,-0.394292 h 0.166398 v 0.210711 h -0.166398 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4376"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 81.234026,10.112563 v 0.28758 h 0.342744 v 0.12932 H 81.234026 V 11.0793 q 0,0.123894 0.03346,0.159164 0.03436,0.03527 0.138364,0.03527 h 0.170919 v 0.139268 H 81.40585 q -0.192624,0 -0.265876,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 v -0.549837 h -0.122086 v -0.12932 h 0.122086 v -0.28758 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4378"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 82.638463,10.801669 v 0.611332 h -0.166398 v -0.605906 q 0,-0.14379 -0.05607,-0.215233 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234223 v 0.572446 h -0.167303 v -1.40715 h 0.167303 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264066,0.10852 0.08953,0.107616 0.08953,0.317423 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4380"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 78.855619,12.74509 v 0.157355 q -0.07054,-0.03617 -0.146503,-0.05426 -0.07596,-0.01809 -0.157355,-0.01809 -0.123894,0 -0.186293,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.04431,0.09134 0.04431,0.03256 0.178155,0.0624 l 0.05697,0.01266 q 0.17725,0.03798 0.251406,0.107616 0.07506,0.06873 0.07506,0.192624 0,0.141076 -0.112138,0.223371 -0.111233,0.0823 -0.30657,0.0823 -0.08139,0 -0.170016,-0.01628 -0.08772,-0.01537 -0.185389,-0.04703 v -0.171824 q 0.09224,0.04793 0.181772,0.07235 0.08953,0.02351 0.17725,0.02351 0.117564,0 0.180868,-0.03979 0.0633,-0.04069 0.0633,-0.113947 0,-0.06783 -0.04612,-0.103999 -0.04522,-0.03617 -0.199859,-0.06963 l -0.05788,-0.01356 q -0.154642,-0.03256 -0.223372,-0.09948 -0.06873,-0.06782 -0.06873,-0.185389 0,-0.142885 0.101286,-0.220658 0.101285,-0.07777 0.287579,-0.07777 0.09224,0 0.173633,0.01356 0.08139,0.01356 0.15012,0.04069 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4382"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 80.017693,13.116773 v 0.611332 h -0.166399 v -0.605906 q 0,-0.14379 -0.05607,-0.215233 -0.05607,-0.07144 -0.168207,-0.07144 -0.134747,0 -0.21252,0.08591 -0.07777,0.08591 -0.07777,0.234223 v 0.572446 h -0.167302 v -1.407149 h 0.167302 v 0.551646 q 0.05969,-0.09134 0.140173,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264066,0.10852 0.08953,0.107616 0.08953,0.317423 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4384"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 80.811701,13.218963 q -0.201667,0 -0.27944,0.04612 -0.07777,0.04612 -0.07777,0.157355 0,0.08862 0.05788,0.141076 0.05878,0.05155 0.159164,0.05155 0.138363,0 0.221562,-0.09767 0.0841,-0.09857 0.0841,-0.261353 v -0.03708 z m 0.331892,-0.06873 v 0.577872 h -0.166398 v -0.153737 q -0.05697,0.09224 -0.141981,0.136554 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247788,-0.08682 -0.09134,-0.08772 -0.09134,-0.234223 0,-0.17092 0.113946,-0.257736 0.114851,-0.08682 0.34184,-0.08682 h 0.233319 v -0.01628 q 0,-0.114851 -0.07596,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.08229,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.17725,-0.05245 0.08591,-0.01809 0.167303,-0.01809 0.219754,0 0.328274,0.113946 0.108521,0.113947 0.108521,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4386"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 81.648213,13.576176 v 0.537177 h -0.167302 v -1.398106 h 0.167302 v 0.153737 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.19172,-0.04431 0.184485,0 0.299336,0.146502 0.115755,0.146503 0.115755,0.385248 0,0.238745 -0.115755,0.385248 -0.114851,0.146503 -0.299336,0.146503 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.18358 -0.07596,-0.287579 -0.07506,-0.104903 -0.207093,-0.104903 -0.132034,0 -0.207998,0.104903 -0.07506,0.103999 -0.07506,0.287579 0,0.183581 0.07506,0.288484 0.07596,0.103999 0.207998,0.103999 0.132033,0 0.207093,-0.103999 0.07596,-0.104903 0.07596,-0.288484 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4388"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 83.529235,13.180076 v 0.08139 h -0.765069 q 0.01085,0.171824 0.103094,0.262258 0.09315,0.08953 0.258641,0.08953 0.09586,0 0.185389,-0.02351 0.09043,-0.02351 0.179059,-0.07054 v 0.157355 q -0.08953,0.03798 -0.183581,0.05788 -0.09405,0.0199 -0.190815,0.0199 -0.242362,0 -0.384343,-0.141077 -0.141077,-0.141077 -0.141077,-0.38163 0,-0.248693 0.133842,-0.394292 0.134746,-0.146502 0.362639,-0.146502 0.20438,0 0.322849,0.132033 0.119372,0.131129 0.119372,0.357213 z m -0.166398,-0.04883 q -0.0018,-0.136555 -0.07687,-0.217945 -0.07415,-0.08139 -0.197145,-0.08139 -0.139268,0 -0.223371,0.07868 -0.0832,0.07868 -0.09586,0.221562 z" />
+ </g>
+ <g
+ id="text4018"
+ style="font-size:1.85208px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="group with shape">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4333"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 126.80479,8.5797112 q 0,-0.1808676 -0.0751,-0.2803447 -0.0742,-0.099477 -0.20891,-0.099477 -0.13384,0 -0.2089,0.099477 -0.0742,0.099477 -0.0742,0.2803447 0,0.1799631 0.0742,0.2794403 0.0751,0.099477 0.2089,0.099477 0.13475,0 0.20891,-0.099477 0.0751,-0.099477 0.0751,-0.2794403 z m 0.16639,0.3924825 q 0,0.2586405 -0.11485,0.3843434 -0.11485,0.1266073 -0.35178,0.1266073 -0.0877,0 -0.1655,-0.013565 -0.0778,-0.012661 -0.15102,-0.039791 V 9.267912 q 0.0733,0.039791 0.14469,0.058782 0.0714,0.018991 0.1456,0.018991 0.16368,0 0.24507,-0.085912 0.0814,-0.085008 0.0814,-0.2577362 v -0.082295 q -0.0515,0.089529 -0.13204,0.1338419 -0.0805,0.044313 -0.19262,0.044313 -0.1863,0 -0.30024,-0.141981 -0.11395,-0.141981 -0.11395,-0.3762044 0,-0.2351278 0.11395,-0.3771088 0.11394,-0.141981 0.30024,-0.141981 0.11214,0 0.19262,0.044313 0.0805,0.044313 0.13204,0.133842 v -0.153738 h 0.16639 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4335"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 127.90084,8.2405846 q -0.028,-0.016278 -0.0615,-0.023513 -0.0326,-0.00814 -0.0724,-0.00814 -0.14108,0 -0.21704,0.092242 -0.0751,0.091338 -0.0751,0.2631622 V 9.097895 h -0.1673 V 8.0850385 h 0.1673 v 0.1573547 q 0.0524,-0.092242 0.13655,-0.1365549 0.0841,-0.045217 0.20438,-0.045217 0.0172,0 0.038,0.00271 0.0208,0.00181 0.0461,0.00633 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4337"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 128.42988,8.2016981 q -0.13384,0 -0.21162,0.1049031 -0.0778,0.1039988 -0.0778,0.2857707 0,0.1817718 0.0769,0.286675 0.0778,0.1039988 0.21252,0.1039988 0.13294,0 0.21071,-0.1049032 0.0778,-0.1049031 0.0778,-0.2857706 0,-0.1799632 -0.0778,-0.2848664 -0.0778,-0.1058074 -0.21071,-0.1058074 z m 0,-0.1410767 q 0.21704,0 0.34094,0.1410767 0.12389,0.1410766 0.12389,0.3906738 0,0.2486928 -0.12389,0.3906738 -0.1239,0.1410767 -0.34094,0.1410767 -0.21795,0 -0.34184,-0.1410767 -0.12299,-0.141981 -0.12299,-0.3906738 0,-0.2495972 0.12299,-0.3906738 0.12389,-0.1410767 0.34184,-0.1410767 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4339"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="M 129.15245,8.6981794 V 8.0850385 h 0.16639 V 8.691849 q 0,0.1437897 0.0561,0.2161367 0.0561,0.071443 0.16821,0.071443 0.13475,0 0.21252,-0.085912 0.0787,-0.085912 0.0787,-0.2342234 V 8.0850385 h 0.16639 v 1.0128581 h -0.16639 V 8.9423505 q -0.0606,0.092242 -0.14108,0.1374593 -0.0796,0.044313 -0.18539,0.044313 -0.17454,0 -0.26497,-0.1085205 -0.0904,-0.1085205 -0.0904,-0.3174225 z m 0.4187,-0.637558 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4341"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 130.50624,8.9459679 v 0.5371765 h -0.1673 V 8.0850385 h 0.1673 v 0.1537374 q 0.0525,-0.090434 0.13203,-0.133842 0.0805,-0.044313 0.19172,-0.044313 0.18449,0 0.29934,0.1465027 0.11575,0.1465027 0.11575,0.3852478 0,0.2387451 -0.11575,0.3852478 -0.11485,0.1465027 -0.29934,0.1465027 -0.11123,0 -0.19172,-0.043408 -0.0796,-0.044313 -0.13203,-0.134746 z m 0.56611,-0.353596 q 0,-0.1835805 -0.076,-0.2875794 -0.0751,-0.1049031 -0.20709,-0.1049031 -0.13204,0 -0.208,0.1049031 -0.0751,0.1039989 -0.0751,0.2875794 0,0.1835805 0.0751,0.2884837 0.076,0.1039988 0.208,0.1039988 0.13203,0 0.20709,-0.1039988 0.076,-0.1049032 0.076,-0.2884837 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4343"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 126.7668,10.400143 h 0.1664 l 0.208,0.790391 0.20709,-0.790391 h 0.19624 l 0.208,0.790391 0.20709,-0.790391 h 0.1664 l -0.26497,1.012858 h -0.19624 l -0.21795,-0.830182 -0.21884,0.830182 h -0.19625 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4345"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 128.37924,10.400143 h 0.16639 v 1.012858 h -0.16639 z m 0,-0.394292 h 0.16639 v 0.210711 h -0.16639 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4347"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 129.05749,10.112563 v 0.28758 h 0.34274 v 0.12932 h -0.34274 V 11.0793 q 0,0.123894 0.0335,0.159164 0.0344,0.03527 0.13836,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.19262,0 -0.26587,-0.07144 -0.0733,-0.07235 -0.0733,-0.262258 v -0.549837 h -0.12209 v -0.12932 h 0.12209 v -0.28758 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4349"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 130.46193,10.801669 v 0.611332 h -0.1664 v -0.605906 q 0,-0.14379 -0.0561,-0.215233 -0.0561,-0.07144 -0.16821,-0.07144 -0.13474,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234223 v 0.572446 h -0.1673 v -1.40715 h 0.1673 v 0.551646 q 0.0597,-0.09134 0.14017,-0.136555 0.0814,-0.04522 0.1872,-0.04522 0.17454,0 0.26407,0.10852 0.0895,0.107616 0.0895,0.317423 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4351"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 126.67908,12.74509 v 0.157355 q -0.0705,-0.03617 -0.1465,-0.05426 -0.076,-0.01809 -0.15736,-0.01809 -0.12389,0 -0.18629,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.0443,0.09134 0.0443,0.03256 0.17815,0.0624 l 0.057,0.01266 q 0.17725,0.03798 0.2514,0.107616 0.0751,0.06873 0.0751,0.192624 0,0.141076 -0.11214,0.223371 -0.11123,0.0823 -0.30657,0.0823 -0.0814,0 -0.17001,-0.01628 -0.0877,-0.01537 -0.18539,-0.04703 v -0.171824 q 0.0922,0.04793 0.18177,0.07235 0.0895,0.02351 0.17725,0.02351 0.11757,0 0.18087,-0.03979 0.0633,-0.04069 0.0633,-0.113947 0,-0.06783 -0.0461,-0.103999 -0.0452,-0.03617 -0.19986,-0.06963 l -0.0579,-0.01356 q -0.15465,-0.03256 -0.22338,-0.09948 -0.0687,-0.06782 -0.0687,-0.185389 0,-0.142885 0.10129,-0.220658 0.10129,-0.07777 0.28758,-0.07777 0.0922,0 0.17363,0.01356 0.0814,0.01356 0.15012,0.04069 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4353"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 127.84116,13.116773 v 0.611332 h -0.1664 v -0.605906 q 0,-0.14379 -0.0561,-0.215233 -0.0561,-0.07144 -0.16821,-0.07144 -0.13474,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234223 v 0.572446 h -0.1673 v -1.407149 h 0.1673 v 0.551646 q 0.0597,-0.09134 0.14017,-0.136555 0.0814,-0.04522 0.1872,-0.04522 0.17454,0 0.26407,0.10852 0.0895,0.107616 0.0895,0.317423 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4355"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 128.63516,13.218963 q -0.20166,0 -0.27944,0.04612 -0.0778,0.04612 -0.0778,0.157355 0,0.08862 0.0579,0.141076 0.0588,0.05155 0.15916,0.05155 0.13837,0 0.22156,-0.09767 0.0841,-0.09857 0.0841,-0.261353 v -0.03708 z m 0.3319,-0.06873 v 0.577872 h -0.1664 v -0.153737 q -0.057,0.09224 -0.14198,0.136554 -0.085,0.04341 -0.208,0.04341 -0.15555,0 -0.24779,-0.08682 -0.0913,-0.08772 -0.0913,-0.234223 0,-0.17092 0.11395,-0.257736 0.11485,-0.08682 0.34184,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.076,-0.17725 -0.0751,-0.0633 -0.21161,-0.0633 -0.0868,0 -0.16911,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.0913,-0.03527 0.17725,-0.05245 0.0859,-0.01809 0.1673,-0.01809 0.21976,0 0.32828,0.113946 0.10852,0.113947 0.10852,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4357"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 129.47168,13.576176 v 0.537177 h -0.16731 v -1.398106 h 0.16731 v 0.153737 q 0.0525,-0.09043 0.13203,-0.133842 0.0805,-0.04431 0.19172,-0.04431 0.18448,0 0.29934,0.146502 0.11575,0.146503 0.11575,0.385248 0,0.238745 -0.11575,0.385248 -0.11486,0.146503 -0.29934,0.146503 -0.11123,0 -0.19172,-0.04341 -0.0796,-0.04431 -0.13203,-0.134746 z m 0.56611,-0.353596 q 0,-0.18358 -0.076,-0.287579 -0.0751,-0.104903 -0.2071,-0.104903 -0.13203,0 -0.20799,0.104903 -0.0751,0.103999 -0.0751,0.287579 0,0.183581 0.0751,0.288484 0.076,0.103999 0.20799,0.103999 0.13204,0 0.2071,-0.103999 0.076,-0.104903 0.076,-0.288484 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4359"
+ style="font-size:1.85208px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ d="m 131.3527,13.180076 v 0.08139 h -0.76507 q 0.0109,0.171824 0.10309,0.262258 0.0932,0.08953 0.25864,0.08953 0.0959,0 0.18539,-0.02351 0.0904,-0.02351 0.17906,-0.07054 v 0.157355 q -0.0895,0.03798 -0.18358,0.05788 -0.0941,0.0199 -0.19081,0.0199 -0.24237,0 -0.38435,-0.141077 -0.14107,-0.141077 -0.14107,-0.38163 0,-0.248693 0.13384,-0.394292 0.13474,-0.146502 0.36264,-0.146502 0.20438,0 0.32285,0.132033 0.11937,0.131129 0.11937,0.357213 z m -0.1664,-0.04883 q -0.002,-0.136555 -0.0769,-0.217945 -0.0742,-0.08139 -0.19714,-0.08139 -0.13927,0 -0.22338,0.07868 -0.0832,0.07868 -0.0958,0.221562 z" />
+ </g>
+ <g
+ id="text4104"
+ style="font-size:1.85208px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#ffffff;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="path">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4324"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 43.188783,11.446009 v 0.537176 H 43.021481 V 10.58508 h 0.167302 v 0.153737 q 0.05245,-0.09043 0.132034,-0.133842 0.08049,-0.04431 0.191719,-0.04431 0.184485,0 0.299336,0.146503 0.115755,0.146503 0.115755,0.385248 0,0.238745 -0.115755,0.385248 -0.114851,0.146502 -0.299336,0.146502 -0.111233,0 -0.191719,-0.04341 -0.07958,-0.04431 -0.132034,-0.134746 z m 0.566116,-0.353596 q 0,-0.183581 -0.07597,-0.287579 -0.07506,-0.104904 -0.207093,-0.104904 -0.132033,0 -0.207998,0.104904 -0.07506,0.103998 -0.07506,0.287579 0,0.18358 0.07506,0.288484 0.07596,0.103998 0.207998,0.103998 0.132033,0 0.207093,-0.103998 0.07597,-0.104904 0.07597,-0.288484 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4326"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 44.663758,11.088796 q -0.201667,0 -0.279441,0.04612 -0.07777,0.04612 -0.07777,0.157354 0,0.08863 0.05788,0.141077 0.05878,0.05155 0.159163,0.05155 0.138364,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.331892,-0.06873 v 0.577872 H 44.829252 V 11.4442 q -0.05697,0.09224 -0.141981,0.136555 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247789,-0.08682 -0.09134,-0.08772 -0.09134,-0.234223 0,-0.17092 0.113947,-0.257737 0.114851,-0.08682 0.341839,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.07596,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.08229,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.17725,-0.05245 0.08591,-0.01809 0.167303,-0.01809 0.219754,0 0.328274,0.113947 0.108521,0.113946 0.108521,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4328"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 45.503887,10.2975 v 0.28758 h 0.342744 v 0.12932 h -0.342744 v 0.549837 q 0,0.123894 0.03346,0.159163 0.03437,0.03527 0.138363,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.192623,0 -0.265875,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 V 10.7144 h -0.122086 v -0.12932 h 0.122086 V 10.2975 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4330"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 46.908324,10.986605 v 0.611333 h -0.166398 v -0.605907 q 0,-0.143789 -0.05607,-0.215232 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234224 v 0.572446 h -0.167302 v -1.40715 h 0.167302 v 0.551646 q 0.05969,-0.09134 0.140173,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264066,0.108521 0.08953,0.107616 0.08953,0.317422 z" />
+ </g>
+ <g
+ id="text4128"
+ style="font-size:1.85208px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="path">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4315"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 91.012247,11.446009 v 0.537176 H 90.844944 V 10.58508 h 0.167303 v 0.153737 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.19172,-0.04431 0.184484,0 0.299335,0.146503 0.115755,0.146503 0.115755,0.385248 0,0.238745 -0.115755,0.385248 -0.114851,0.146502 -0.299335,0.146502 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.183581 -0.07596,-0.287579 -0.07506,-0.104904 -0.207094,-0.104904 -0.132033,0 -0.207997,0.104904 -0.07506,0.103998 -0.07506,0.287579 0,0.18358 0.07506,0.288484 0.07596,0.103998 0.207997,0.103998 0.132034,0 0.207094,-0.103998 0.07596,-0.104904 0.07596,-0.288484 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4317"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 92.487221,11.088796 q -0.201667,0 -0.27944,0.04612 -0.07777,0.04612 -0.07777,0.157354 0,0.08863 0.05788,0.141077 0.05878,0.05155 0.159163,0.05155 0.138364,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.331892,-0.06873 v 0.577872 H 92.652715 V 11.4442 q -0.05697,0.09224 -0.141981,0.136555 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247788,-0.08682 -0.09134,-0.08772 -0.09134,-0.234223 0,-0.17092 0.113946,-0.257737 0.114851,-0.08682 0.34184,-0.08682 h 0.233319 v -0.01628 q 0,-0.114851 -0.07596,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.09134,-0.03527 0.177251,-0.05245 0.08591,-0.01809 0.167302,-0.01809 0.219754,0 0.328275,0.113947 0.10852,0.113946 0.10852,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4319"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 93.327351,10.2975 v 0.28758 h 0.342744 v 0.12932 h -0.342744 v 0.549837 q 0,0.123894 0.03346,0.159163 0.03437,0.03527 0.138364,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.192624,0 -0.265875,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 V 10.7144 H 93.037965 V 10.58508 H 93.16005 V 10.2975 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4321"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 94.731787,10.986605 v 0.611333 h -0.166398 v -0.605907 q 0,-0.143789 -0.05607,-0.215232 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234224 v 0.572446 H 93.88352 v -1.40715 h 0.167303 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264067,0.108521 0.08953,0.107616 0.08953,0.317422 z" />
+ </g>
+ <g
+ id="text4051"
+ style="font-size:1.85208px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="path">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4306"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 138.83573,11.446009 v 0.537176 h -0.1673 V 10.58508 h 0.1673 v 0.153737 q 0.0524,-0.09043 0.13204,-0.133842 0.0805,-0.04431 0.19172,-0.04431 0.18448,0 0.29933,0.146503 0.11576,0.146503 0.11576,0.385248 0,0.238745 -0.11576,0.385248 -0.11485,0.146502 -0.29933,0.146502 -0.11124,0 -0.19172,-0.04341 -0.0796,-0.04431 -0.13204,-0.134746 z m 0.56612,-0.353596 q 0,-0.183581 -0.076,-0.287579 -0.0751,-0.104904 -0.20709,-0.104904 -0.13203,0 -0.208,0.104904 -0.0751,0.103998 -0.0751,0.287579 0,0.18358 0.0751,0.288484 0.076,0.103998 0.208,0.103998 0.13203,0 0.20709,-0.103998 0.076,-0.104904 0.076,-0.288484 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4308"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 140.31071,11.088796 q -0.20167,0 -0.27944,0.04612 -0.0778,0.04612 -0.0778,0.157354 0,0.08863 0.0579,0.141077 0.0588,0.05155 0.15917,0.05155 0.13836,0 0.22156,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.33189,-0.06873 v 0.577872 h -0.1664 V 11.4442 q -0.057,0.09224 -0.14198,0.136555 -0.085,0.04341 -0.208,0.04341 -0.15554,0 -0.24779,-0.08682 -0.0913,-0.08772 -0.0913,-0.234223 0,-0.17092 0.11394,-0.257737 0.11485,-0.08682 0.34184,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.076,-0.17725 -0.0751,-0.0633 -0.21162,-0.0633 -0.0868,0 -0.16911,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.0913,-0.03527 0.17725,-0.05245 0.0859,-0.01809 0.1673,-0.01809 0.21976,0 0.32828,0.113947 0.10852,0.113946 0.10852,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4310"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 141.15084,10.2975 v 0.28758 h 0.34274 v 0.12932 h -0.34274 v 0.549837 q 0,0.123894 0.0335,0.159163 0.0344,0.03527 0.13836,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.19262,0 -0.26587,-0.07144 -0.0733,-0.07235 -0.0733,-0.262258 V 10.7144 h -0.12208 v -0.12932 h 0.12208 V 10.2975 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4312"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 142.55527,10.986605 v 0.611333 h -0.16639 v -0.605907 q 0,-0.143789 -0.0561,-0.215232 -0.0561,-0.07144 -0.16821,-0.07144 -0.13475,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234224 v 0.572446 H 141.707 v -1.40715 h 0.16731 v 0.551646 q 0.0597,-0.09134 0.14017,-0.136555 0.0814,-0.04522 0.1872,-0.04522 0.17453,0 0.26406,0.108521 0.0895,0.107616 0.0895,0.317422 z" />
+ </g>
+ <g
+ id="text4108"
+ style="font-size:1.85208px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#ffffff;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="shape">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4295"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 54.943883,10.614923 v 0.157354 q -0.07054,-0.03617 -0.146502,-0.05426 -0.07597,-0.01809 -0.157355,-0.01809 -0.123894,0 -0.186294,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.04431,0.09134 0.04431,0.03256 0.178154,0.0624 l 0.05697,0.01266 q 0.17725,0.03798 0.251406,0.107616 0.07506,0.06873 0.07506,0.192624 0,0.141077 -0.112138,0.223372 -0.111234,0.08229 -0.306571,0.08229 -0.08139,0 -0.170015,-0.01628 -0.08772,-0.01537 -0.185389,-0.04702 v -0.171824 q 0.09224,0.04793 0.181771,0.07235 0.08953,0.02351 0.177251,0.02351 0.117563,0 0.180867,-0.03979 0.0633,-0.0407 0.0633,-0.113947 0,-0.06783 -0.04612,-0.103999 -0.04522,-0.03617 -0.199859,-0.06963 l -0.05788,-0.01356 q -0.154641,-0.03256 -0.223371,-0.09948 -0.06873,-0.06782 -0.06873,-0.185389 0,-0.142886 0.101286,-0.220659 0.101286,-0.07777 0.287579,-0.07777 0.09224,0 0.173633,0.01356 0.08139,0.01357 0.15012,0.0407 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4297"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 56.105957,10.986605 v 0.611333 h -0.166398 v -0.605907 q 0,-0.143789 -0.05607,-0.215232 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234224 v 0.572446 H 55.25769 v -1.40715 h 0.167303 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264067,0.108521 0.08953,0.107616 0.08953,0.317422 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4299"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 56.899965,11.088796 q -0.201667,0 -0.27944,0.04612 -0.07777,0.04612 -0.07777,0.157354 0,0.08863 0.05788,0.141077 0.05878,0.05155 0.159163,0.05155 0.138364,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.331892,-0.06873 v 0.577872 H 57.065459 V 11.4442 q -0.05697,0.09224 -0.141981,0.136555 -0.08501,0.04341 -0.207997,0.04341 -0.155546,0 -0.247789,-0.08682 -0.09134,-0.08772 -0.09134,-0.234223 0,-0.17092 0.113947,-0.257737 0.11485,-0.08682 0.341839,-0.08682 h 0.233319 v -0.01628 q 0,-0.114851 -0.07596,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.0823,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.17725,-0.05245 0.08591,-0.01809 0.167302,-0.01809 0.219754,0 0.328275,0.113947 0.10852,0.113946 0.10852,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4301"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 57.736478,11.446009 v 0.537176 H 57.569175 V 10.58508 h 0.167303 v 0.153737 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.191719,-0.04431 0.184485,0 0.299336,0.146503 0.115755,0.146503 0.115755,0.385248 0,0.238745 -0.115755,0.385248 -0.114851,0.146502 -0.299336,0.146502 -0.111233,0 -0.191719,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.183581 -0.07597,-0.287579 -0.07506,-0.104904 -0.207093,-0.104904 -0.132033,0 -0.207997,0.104904 -0.07506,0.103998 -0.07506,0.287579 0,0.18358 0.07506,0.288484 0.07596,0.103998 0.207997,0.103998 0.132033,0 0.207093,-0.103998 0.07597,-0.104904 0.07597,-0.288484 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4303"
+ style="font-size:1.85208px;fill:#ffffff;stroke-width:0.2"
+ d="m 59.6175,11.049909 v 0.08139 h -0.76507 q 0.01085,0.171825 0.103095,0.262258 0.09315,0.08953 0.25864,0.08953 0.09586,0 0.185389,-0.02351 0.09043,-0.02351 0.179059,-0.07054 v 0.157354 q -0.08953,0.03798 -0.18358,0.05788 -0.09405,0.01989 -0.190816,0.01989 -0.242362,0 -0.384343,-0.141076 -0.141077,-0.141077 -0.141077,-0.381631 0,-0.248693 0.133842,-0.394291 0.134747,-0.146503 0.36264,-0.146503 0.20438,0 0.322848,0.132034 0.119373,0.131129 0.119373,0.357213 z m -0.166398,-0.04883 q -0.0018,-0.136555 -0.07687,-0.217946 -0.07416,-0.08139 -0.197146,-0.08139 -0.139268,0 -0.223371,0.07868 -0.0832,0.07868 -0.09586,0.221563 z" />
+ </g>
+ <g
+ id="text4132"
+ style="font-size:1.85208px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="shape">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4284"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 102.76735,10.614923 v 0.157354 q -0.0705,-0.03617 -0.1465,-0.05426 -0.076,-0.01809 -0.15735,-0.01809 -0.1239,0 -0.1863,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.0443,0.09134 0.0443,0.03256 0.17816,0.0624 l 0.057,0.01266 q 0.17725,0.03798 0.2514,0.107616 0.0751,0.06873 0.0751,0.192624 0,0.141077 -0.11213,0.223372 -0.11124,0.08229 -0.30657,0.08229 -0.0814,0 -0.17002,-0.01628 -0.0877,-0.01537 -0.18539,-0.04702 v -0.171824 q 0.0922,0.04793 0.18177,0.07235 0.0895,0.02351 0.17725,0.02351 0.11757,0 0.18087,-0.03979 0.0633,-0.0407 0.0633,-0.113947 0,-0.06783 -0.0461,-0.103999 -0.0452,-0.03617 -0.19986,-0.06963 l -0.0579,-0.01356 q -0.15464,-0.03256 -0.22337,-0.09948 -0.0687,-0.06782 -0.0687,-0.185389 0,-0.142886 0.10128,-0.220659 0.10129,-0.07777 0.28758,-0.07777 0.0922,0 0.17363,0.01356 0.0814,0.01357 0.15012,0.0407 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4286"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 103.92943,10.986605 v 0.611333 h -0.1664 v -0.605907 q 0,-0.143789 -0.0561,-0.215232 -0.0561,-0.07144 -0.16821,-0.07144 -0.13474,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234224 v 0.572446 h -0.1673 v -1.40715 h 0.1673 v 0.551646 q 0.0597,-0.09134 0.14017,-0.136555 0.0814,-0.04522 0.1872,-0.04522 0.17454,0 0.26407,0.108521 0.0895,0.107616 0.0895,0.317422 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4288"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 104.72344,11.088796 q -0.20167,0 -0.27944,0.04612 -0.0778,0.04612 -0.0778,0.157354 0,0.08863 0.0579,0.141077 0.0588,0.05155 0.15916,0.05155 0.13837,0 0.22157,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.33189,-0.06873 v 0.577872 h -0.1664 V 11.4442 q -0.057,0.09224 -0.14198,0.136555 -0.085,0.04341 -0.208,0.04341 -0.15554,0 -0.24779,-0.08682 -0.0913,-0.08772 -0.0913,-0.234223 0,-0.17092 0.11394,-0.257737 0.11485,-0.08682 0.34184,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.076,-0.17725 -0.0751,-0.0633 -0.21162,-0.0633 -0.0868,0 -0.16911,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.0913,-0.03527 0.17725,-0.05245 0.0859,-0.01809 0.1673,-0.01809 0.21976,0 0.32828,0.113947 0.10852,0.113946 0.10852,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4290"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 105.55995,11.446009 v 0.537176 h -0.1673 V 10.58508 h 0.1673 v 0.153737 q 0.0524,-0.09043 0.13203,-0.133842 0.0805,-0.04431 0.19172,-0.04431 0.18449,0 0.29934,0.146503 0.11575,0.146503 0.11575,0.385248 0,0.238745 -0.11575,0.385248 -0.11485,0.146502 -0.29934,0.146502 -0.11123,0 -0.19172,-0.04341 -0.0796,-0.04431 -0.13203,-0.134746 z m 0.56611,-0.353596 q 0,-0.183581 -0.076,-0.287579 -0.0751,-0.104904 -0.20709,-0.104904 -0.13204,0 -0.208,0.104904 -0.0751,0.103998 -0.0751,0.287579 0,0.18358 0.0751,0.288484 0.076,0.103998 0.208,0.103998 0.13203,0 0.20709,-0.103998 0.076,-0.104904 0.076,-0.288484 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4292"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 107.44097,11.049909 v 0.08139 h -0.76507 q 0.0109,0.171825 0.1031,0.262258 0.0931,0.08953 0.25864,0.08953 0.0959,0 0.18539,-0.02351 0.0904,-0.02351 0.17905,-0.07054 v 0.157354 q -0.0895,0.03798 -0.18358,0.05788 -0.0941,0.01989 -0.19081,0.01989 -0.24236,0 -0.38434,-0.141076 -0.14108,-0.141077 -0.14108,-0.381631 0,-0.248693 0.13384,-0.394291 0.13475,-0.146503 0.36264,-0.146503 0.20438,0 0.32285,0.132034 0.11937,0.131129 0.11937,0.357213 z m -0.1664,-0.04883 q -0.002,-0.136555 -0.0769,-0.217946 -0.0742,-0.08139 -0.19714,-0.08139 -0.13927,0 -0.22337,0.07868 -0.0832,0.07868 -0.0959,0.221563 z" />
+ </g>
+ <g
+ id="text4055"
+ style="font-size:1.85208px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="shape">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4273"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 150.59083,10.614923 v 0.157354 q -0.0705,-0.03617 -0.14651,-0.05426 -0.076,-0.01809 -0.15735,-0.01809 -0.1239,0 -0.1863,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.0443,0.09134 0.0443,0.03256 0.17816,0.0624 l 0.057,0.01266 q 0.17725,0.03798 0.25141,0.107616 0.0751,0.06873 0.0751,0.192624 0,0.141077 -0.11214,0.223372 -0.11124,0.08229 -0.30657,0.08229 -0.0814,0 -0.17002,-0.01628 -0.0877,-0.01537 -0.18539,-0.04702 v -0.171824 q 0.0923,0.04793 0.18177,0.07235 0.0895,0.02351 0.17725,0.02351 0.11757,0 0.18087,-0.03979 0.0633,-0.0407 0.0633,-0.113947 0,-0.06783 -0.0461,-0.103999 -0.0452,-0.03617 -0.19985,-0.06963 l -0.0579,-0.01356 q -0.15464,-0.03256 -0.22337,-0.09948 -0.0687,-0.06782 -0.0687,-0.185389 0,-0.142886 0.10128,-0.220659 0.10129,-0.07777 0.28758,-0.07777 0.0922,0 0.17364,0.01356 0.0814,0.01357 0.15012,0.0407 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4275"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 151.7529,10.986605 v 0.611333 h -0.1664 v -0.605907 q 0,-0.143789 -0.0561,-0.215232 -0.0561,-0.07144 -0.1682,-0.07144 -0.13475,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234224 v 0.572446 h -0.1673 v -1.40715 h 0.1673 v 0.551646 q 0.0597,-0.09134 0.14018,-0.136555 0.0814,-0.04522 0.18719,-0.04522 0.17454,0 0.26407,0.108521 0.0895,0.107616 0.0895,0.317422 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4277"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 152.54691,11.088796 q -0.20167,0 -0.27944,0.04612 -0.0778,0.04612 -0.0778,0.157354 0,0.08863 0.0579,0.141077 0.0588,0.05155 0.15917,0.05155 0.13836,0 0.22156,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.33189,-0.06873 v 0.577872 h -0.1664 V 11.4442 q -0.057,0.09224 -0.14198,0.136555 -0.085,0.04341 -0.208,0.04341 -0.15554,0 -0.24779,-0.08682 -0.0913,-0.08772 -0.0913,-0.234223 0,-0.17092 0.11394,-0.257737 0.11485,-0.08682 0.34184,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.076,-0.17725 -0.0751,-0.0633 -0.21162,-0.0633 -0.0868,0 -0.16911,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.0913,-0.03527 0.17725,-0.05245 0.0859,-0.01809 0.1673,-0.01809 0.21976,0 0.32828,0.113947 0.10852,0.113946 0.10852,0.345457 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4279"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 153.38342,11.446009 v 0.537176 h -0.1673 V 10.58508 h 0.1673 v 0.153737 q 0.0524,-0.09043 0.13203,-0.133842 0.0805,-0.04431 0.19172,-0.04431 0.18449,0 0.29934,0.146503 0.11575,0.146503 0.11575,0.385248 0,0.238745 -0.11575,0.385248 -0.11485,0.146502 -0.29934,0.146502 -0.11123,0 -0.19172,-0.04341 -0.0796,-0.04431 -0.13203,-0.134746 z m 0.56611,-0.353596 q 0,-0.183581 -0.076,-0.287579 -0.0751,-0.104904 -0.20709,-0.104904 -0.13204,0 -0.208,0.104904 -0.0751,0.103998 -0.0751,0.287579 0,0.18358 0.0751,0.288484 0.076,0.103998 0.208,0.103998 0.13203,0 0.20709,-0.103998 0.076,-0.104904 0.076,-0.288484 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4281"
+ style="font-size:1.85208px;stroke-width:0.2"
+ d="m 155.26444,11.049909 v 0.08139 h -0.76507 q 0.0109,0.171825 0.1031,0.262258 0.0931,0.08953 0.25864,0.08953 0.0959,0 0.18539,-0.02351 0.0904,-0.02351 0.17906,-0.07054 v 0.157354 q -0.0895,0.03798 -0.18359,0.05788 -0.094,0.01989 -0.19081,0.01989 -0.24236,0 -0.38434,-0.141076 -0.14108,-0.141077 -0.14108,-0.381631 0,-0.248693 0.13384,-0.394291 0.13475,-0.146503 0.36264,-0.146503 0.20438,0 0.32285,0.132034 0.11937,0.131129 0.11937,0.357213 z m -0.1664,-0.04883 q -0.002,-0.136555 -0.0769,-0.217946 -0.0742,-0.08139 -0.19715,-0.08139 -0.13927,0 -0.22337,0.07868 -0.0832,0.07868 -0.0959,0.221563 z" />
+ </g>
+ <g
+ id="text4080"
+ style="font-size:2.64583px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="clip with shape">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4246"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 65.475444,3.2419882 v 0.2222087 q -0.100769,-0.055552 -0.20283,-0.082682 -0.100769,-0.028422 -0.204122,-0.028422 -0.231252,0 -0.359151,0.1472779 -0.127899,0.1459859 -0.127899,0.4108276 0,0.2648417 0.127899,0.4121195 0.127899,0.145986 0.359151,0.145986 0.103353,0 0.204122,-0.02713 0.102061,-0.028422 0.20283,-0.083974 V 4.577824 q -0.09948,0.046509 -0.206706,0.069763 -0.105937,0.023254 -0.226084,0.023254 -0.326854,0 -0.519348,-0.2054138 -0.192495,-0.2054138 -0.192495,-0.5542297 0,-0.3539835 0.193786,-0.5568135 0.195079,-0.20283 0.53356,-0.20283 0.109812,0 0.214457,0.023254 0.104645,0.021962 0.20283,0.067179 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4248"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 65.891439,2.623163 h 0.237712 v 2.0102131 h -0.237712 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4250"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 66.625244,3.1864361 h 0.237712 v 1.44694 h -0.237712 z m 0,-0.5632731 h 0.237712 v 0.3010152 h -0.237712 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4252"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 67.58901,4.4163351 v 0.767395 h -0.239004 v -1.997294 h 0.239004 v 0.2196248 q 0.07493,-0.1291911 0.188619,-0.1912028 0.11498,-0.063304 0.273885,-0.063304 0.26355,0 0.427622,0.2092895 0.165365,0.2092896 0.165365,0.550354 0,0.3410644 -0.165365,0.550354 -0.164072,0.2092895 -0.427622,0.2092895 -0.158905,0 -0.273885,-0.062012 -0.113688,-0.063303 -0.188619,-0.192494 z M 68.397746,3.911198 q 0,-0.2622579 -0.108521,-0.4108276 -0.107228,-0.1498617 -0.295847,-0.1498617 -0.188619,0 -0.29714,0.1498617 -0.107228,0.1485697 -0.107228,0.4108276 0,0.2622579 0.107228,0.4121195 0.108521,0.1485698 0.29714,0.1485698 0.188619,0 0.295847,-0.1485698 0.108521,-0.1498616 0.108521,-0.4121195 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4254"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 69.742625,3.1864361 h 0.237712 l 0.297139,1.12913 0.295848,-1.12913 h 0.280344 l 0.29714,1.12913 0.295847,-1.12913 h 0.237712 l -0.37853,1.44694 H 71.025492 L 70.714142,3.447402 70.4015,4.6333761 h -0.280345 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4256"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 72.046102,3.1864361 h 0.237712 v 1.44694 h -0.237712 z m 0,-0.5632731 h 0.237712 v 0.3010152 h -0.237712 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4258"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 73.015035,2.7756084 v 0.4108277 h 0.489634 V 3.3711793 H 73.015035 V 4.156661 q 0,0.1769918 0.0478,0.2273763 0.04909,0.050385 0.197663,0.050385 h 0.244171 v 0.1989542 h -0.244171 q -0.275177,0 -0.379822,-0.1020609 Q 72.776031,4.4279623 72.776031,4.156661 V 3.3711793 H 72.601623 V 3.1864361 h 0.174408 V 2.7756084 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4260"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="M 75.021372,3.7600444 V 4.6333761 H 74.783661 V 3.7677959 q 0,-0.2054138 -0.0801,-0.3074748 -0.0801,-0.1020609 -0.240295,-0.1020609 -0.192495,0 -0.303599,0.1227315 -0.111105,0.1227315 -0.111105,0.3346049 V 4.6333761 H 73.80956 V 2.623163 h 0.239003 v 0.7880655 q 0.08527,-0.130483 0.200246,-0.1950785 0.116272,-0.064595 0.267426,-0.064595 0.249339,0 0.377238,0.1550293 0.127899,0.1537373 0.127899,0.4534601 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4262"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 77.262838,3.2290691 v 0.2247925 q -0.100769,-0.051676 -0.20929,-0.077515 -0.10852,-0.025838 -0.224792,-0.025838 -0.176992,0 -0.266134,0.05426 -0.08785,0.05426 -0.08785,0.1627807 0,0.082682 0.0633,0.130483 0.0633,0.046509 0.254506,0.089142 l 0.08139,0.018087 q 0.253214,0.05426 0.359151,0.1537374 0.107229,0.098185 0.107229,0.275177 0,0.2015381 -0.160197,0.319102 -0.158905,0.1175638 -0.437958,0.1175638 -0.116272,0 -0.242879,-0.023254 -0.125316,-0.021962 -0.264842,-0.067179 V 4.3349447 q 0.131775,0.068471 0.259674,0.1033529 0.127899,0.03359 0.253215,0.03359 0.167948,0 0.258382,-0.056844 0.09043,-0.058136 0.09043,-0.1627808 0,-0.096893 -0.06589,-0.1485697 -0.06459,-0.051676 -0.285512,-0.099477 l -0.08268,-0.019379 Q 76.441175,3.9383281 76.34299,3.8427269 76.2448,3.7458339 76.2448,3.5778852 q 0,-0.2041219 0.144694,-0.3152262 0.144694,-0.1111043 0.410828,-0.1111043 0.131775,0 0.248047,0.019379 0.116272,0.019379 0.214457,0.058136 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4264"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="M 78.922943,3.7600444 V 4.6333761 H 78.685232 V 3.7677959 q 0,-0.2054138 -0.0801,-0.3074748 -0.0801,-0.1020609 -0.240295,-0.1020609 -0.192495,0 -0.303599,0.1227315 -0.111104,0.1227315 -0.111104,0.3346049 V 4.6333761 H 77.711131 V 2.623163 h 0.239004 v 0.7880655 q 0.08527,-0.130483 0.200246,-0.1950785 0.116272,-0.064595 0.267425,-0.064595 0.249339,0 0.377238,0.1550293 0.127899,0.1537373 0.127899,0.4534601 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4266"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 80.05724,3.9060304 q -0.288096,0 -0.3992,0.065887 -0.111104,0.065887 -0.111104,0.2247925 0,0.1266072 0.08268,0.2015381 0.08397,0.073639 0.227376,0.073639 0.197663,0 0.316518,-0.1395264 0.120148,-0.1408183 0.120148,-0.3733622 v -0.052968 z m 0.474132,-0.098185 v 0.825531 H 80.29366 V 4.4137513 q -0.08139,0.1317749 -0.20283,0.1950785 -0.121439,0.062012 -0.297139,0.062012 -0.222209,0 -0.353984,-0.1240234 -0.130483,-0.1253153 -0.130483,-0.3346049 0,-0.2441711 0.162781,-0.3681946 0.164073,-0.1240234 0.488342,-0.1240234 h 0.333313 v -0.023254 q 0,-0.1640727 -0.10852,-0.2532145 -0.107229,-0.090434 -0.302308,-0.090434 -0.124023,0 -0.241587,0.029714 -0.117564,0.029714 -0.226084,0.089142 V 3.2523235 q 0.130483,-0.050385 0.253214,-0.074931 0.122732,-0.025838 0.239004,-0.025838 0.313934,0 0.468963,0.1627807 0.15503,0.1627808 0.15503,0.4935102 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4268"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 81.252259,4.4163351 v 0.767395 h -0.239004 v -1.997294 h 0.239004 v 0.2196248 q 0.07493,-0.1291911 0.188619,-0.1912028 0.11498,-0.063304 0.273885,-0.063304 0.263549,0 0.427622,0.2092895 0.165365,0.2092896 0.165365,0.550354 0,0.3410644 -0.165365,0.550354 -0.164073,0.2092895 -0.427622,0.2092895 -0.158905,0 -0.273885,-0.062012 -0.113689,-0.063304 -0.188619,-0.192494 z M 82.060995,3.911198 q 0,-0.2622579 -0.108521,-0.4108276 -0.107228,-0.1498617 -0.295847,-0.1498617 -0.188619,0 -0.29714,0.1498617 -0.107228,0.1485697 -0.107228,0.4108276 0,0.2622579 0.107228,0.4121195 0.108521,0.1485698 0.29714,0.1485698 0.188619,0 0.295847,-0.1485698 0.108521,-0.1498616 0.108521,-0.4121195 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4270"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 83.939432,3.8504782 v 0.116272 h -1.092956 q 0.0155,0.245463 0.147278,0.3746541 0.133067,0.1278992 0.369486,0.1278992 0.136943,0 0.264842,-0.03359 0.129191,-0.03359 0.255798,-0.1007691 v 0.2247925 q -0.127899,0.05426 -0.262258,0.082682 -0.134358,0.028422 -0.272593,0.028422 -0.346232,0 -0.549062,-0.201538 -0.201538,-0.2015381 -0.201538,-0.5451864 0,-0.3552755 0.191203,-0.5632731 0.192495,-0.2092895 0.518056,-0.2092895 0.291972,0 0.461212,0.1886189 0.170532,0.1873271 0.170532,0.5103054 z M 83.701721,3.780715 q -0.0026,-0.1950785 -0.109813,-0.3113505 -0.105936,-0.116272 -0.281636,-0.116272 -0.198954,0 -0.319102,0.1123963 -0.118856,0.1123962 -0.136943,0.3165181 z" />
+ </g>
+ <g
+ id="text4084"
+ style="font-size:2.64583px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="clip with path">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4221"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 113.61347,3.2182298 v 0.2222087 q -0.10076,-0.055552 -0.20283,-0.082682 -0.10076,-0.028422 -0.20412,-0.028422 -0.23125,0 -0.35915,0.1472779 -0.1279,0.1459859 -0.1279,0.4108276 0,0.2648417 0.1279,0.4121195 0.1279,0.1459859 0.35915,0.1459859 0.10336,0 0.20412,-0.02713 0.10207,-0.028422 0.20283,-0.083974 v 0.2196248 q -0.0995,0.046509 -0.2067,0.069763 -0.10594,0.023254 -0.22609,0.023254 -0.32685,0 -0.51934,-0.2054138 -0.1925,-0.2054138 -0.1925,-0.5542297 0,-0.3539836 0.19379,-0.5568136 0.19508,-0.2028299 0.53356,-0.2028299 0.10981,0 0.21445,0.023254 0.10465,0.021962 0.20283,0.06718 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4223"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 114.02947,2.5994046 h 0.23771 v 2.0102131 h -0.23771 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4225"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 114.76328,3.1626776 h 0.23771 v 1.4469401 h -0.23771 z m 0,-0.563273 h 0.23771 v 0.3010152 h -0.23771 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4227"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 115.72704,4.3925767 v 0.767395 h -0.239 V 3.1626776 h 0.239 v 0.2196249 q 0.0749,-0.1291911 0.18862,-0.1912028 0.11498,-0.063304 0.27388,-0.063304 0.26355,0 0.42763,0.2092895 0.16536,0.2092895 0.16536,0.550354 0,0.3410644 -0.16536,0.550354 -0.16408,0.2092895 -0.42763,0.2092895 -0.1589,0 -0.27388,-0.062012 -0.11369,-0.063304 -0.18862,-0.192494 z m 0.80874,-0.5051371 q 0,-0.2622579 -0.10852,-0.4108276 -0.10723,-0.1498617 -0.29585,-0.1498617 -0.18862,0 -0.29714,0.1498617 -0.10723,0.1485697 -0.10723,0.4108276 0,0.2622579 0.10723,0.4121195 0.10852,0.1485698 0.29714,0.1485698 0.18862,0 0.29585,-0.1485698 0.10852,-0.1498616 0.10852,-0.4121195 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4229"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 117.88066,3.1626776 h 0.23771 l 0.29714,1.1291301 0.29584,-1.1291301 h 0.28035 l 0.29714,1.1291301 0.29585,-1.1291301 h 0.23771 l -0.37853,1.4469401 h -0.28035 l -0.31135,-1.1859741 -0.31264,1.1859741 h -0.28034 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4231"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 120.18413,3.1626776 h 0.23771 v 1.4469401 h -0.23771 z m 0,-0.563273 h 0.23771 v 0.3010152 h -0.23771 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4233"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 121.15307,2.75185 v 0.4108276 h 0.48963 v 0.1847433 h -0.48963 v 0.7854817 q 0,0.1769918 0.0478,0.2273763 0.0491,0.050385 0.19766,0.050385 h 0.24417 v 0.1989542 h -0.24417 q -0.27518,0 -0.37982,-0.1020609 -0.10465,-0.1033529 -0.10465,-0.3746542 V 3.3474209 h -0.17441 V 3.1626776 h 0.17441 V 2.75185 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4235"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 123.1594,3.736286 v 0.8733317 h -0.23771 V 3.7440375 q 0,-0.2054138 -0.0801,-0.3074748 -0.0801,-0.1020609 -0.24029,-0.1020609 -0.1925,0 -0.3036,0.1227315 -0.11111,0.1227315 -0.11111,0.3346049 v 0.8177795 h -0.239 V 2.5994046 h 0.239 v 0.7880655 q 0.0853,-0.130483 0.20025,-0.1950785 0.11627,-0.064596 0.26743,-0.064596 0.24933,0 0.37723,0.1550293 0.1279,0.1537373 0.1279,0.4534611 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4237"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 124.7084,4.3925767 v 0.767395 h -0.239 V 3.1626776 h 0.239 v 0.2196249 q 0.0749,-0.1291911 0.18862,-0.1912028 0.11498,-0.063304 0.27389,-0.063304 0.26355,0 0.42762,0.2092895 0.16537,0.2092895 0.16537,0.550354 0,0.3410644 -0.16537,0.550354 -0.16407,0.2092895 -0.42762,0.2092895 -0.15891,0 -0.27389,-0.062012 -0.11368,-0.063304 -0.18862,-0.192494 z m 0.80874,-0.5051371 q 0,-0.2622579 -0.10852,-0.4108276 -0.10723,-0.1498617 -0.29585,-0.1498617 -0.18862,0 -0.29714,0.1498617 -0.10723,0.1485697 -0.10723,0.4108276 0,0.2622579 0.10723,0.4121195 0.10852,0.1485698 0.29714,0.1485698 0.18862,0 0.29585,-0.1485698 0.10852,-0.1498616 0.10852,-0.4121195 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4239"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 126.81551,3.8822719 q -0.2881,0 -0.3992,0.065888 -0.1111,0.065887 -0.1111,0.2247925 0,0.1266072 0.0827,0.2015381 0.084,0.073639 0.22737,0.073639 0.19767,0 0.31652,-0.1395264 0.12015,-0.1408183 0.12015,-0.3733622 v -0.052968 z m 0.47413,-0.098185 v 0.825531 h -0.23771 v -0.219625 q -0.0814,0.1317749 -0.20283,0.1950785 -0.12144,0.062012 -0.29714,0.062012 -0.22221,0 -0.35398,-0.1240234 -0.13049,-0.1253154 -0.13049,-0.3346049 0,-0.2441711 0.16279,-0.3681946 0.16407,-0.1240234 0.48834,-0.1240234 h 0.33331 v -0.023254 q 0,-0.1640727 -0.10852,-0.2532145 -0.10723,-0.090434 -0.30231,-0.090434 -0.12402,0 -0.24158,0.029714 -0.11757,0.029714 -0.22609,0.089142 V 3.2285651 q 0.13048,-0.050384 0.25322,-0.074931 0.12273,-0.025838 0.239,-0.025838 0.31393,0 0.46896,0.1627807 0.15503,0.1627808 0.15503,0.4935101 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4241"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 128.0157,2.75185 v 0.4108276 h 0.48963 v 0.1847433 h -0.48963 v 0.7854817 q 0,0.1769918 0.0478,0.2273763 0.0491,0.050385 0.19766,0.050385 h 0.24417 v 0.1989542 h -0.24417 q -0.27518,0 -0.37982,-0.1020609 -0.10465,-0.1033529 -0.10465,-0.3746542 V 3.3474209 h -0.1744 V 3.1626776 h 0.1744 V 2.75185 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4243"
+ style="font-size:2.64583px;fill:#000000;stroke-width:0.2"
+ d="m 130.02203,3.736286 v 0.8733317 h -0.23771 V 3.7440375 q 0,-0.2054138 -0.0801,-0.3074748 -0.0801,-0.1020609 -0.24029,-0.1020609 -0.1925,0 -0.3036,0.1227315 -0.1111,0.1227315 -0.1111,0.3346049 v 0.8177795 h -0.23901 V 2.5994046 h 0.23901 v 0.7880655 q 0.0853,-0.130483 0.20024,-0.1950785 0.11627,-0.064596 0.26743,-0.064596 0.24934,0 0.37723,0.1550293 0.1279,0.1537373 0.1279,0.4534611 z" />
+ </g>
+ <g
+ id="text4059"
+ style="font-size:2.64583px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="no clip">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4208"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="M 16.149631,3.7910679 V 4.6643996 H 15.911919 V 3.7988194 q 0,-0.2054138 -0.0801,-0.3074748 -0.0801,-0.1020609 -0.240295,-0.1020609 -0.192495,0 -0.3036,0.1227315 -0.111104,0.1227315 -0.111104,0.3346049 v 0.8177795 h -0.239003 v -1.44694 H 15.17682 V 3.442252 q 0.08527,-0.130483 0.200246,-0.1950785 0.116272,-0.064596 0.267426,-0.064596 0.249339,0 0.377238,0.1550293 0.127899,0.1537373 0.127899,0.4534606 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4210"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 17.187035,3.3841161 q -0.191202,0 -0.302307,0.1498616 -0.111104,0.1485697 -0.111104,0.4082438 0,0.2596741 0.109812,0.4095357 0.111105,0.1485698 0.303599,0.1485698 0.189911,0 0.301016,-0.1498617 0.111104,-0.1498616 0.111104,-0.4082438 0,-0.2570902 -0.111104,-0.4069519 -0.111105,-0.1511535 -0.301016,-0.1511535 z m 0,-0.2015381 q 0.310059,0 0.487051,0.2015381 0.176991,0.201538 0.176991,0.5581054 0,0.3552755 -0.176991,0.5581055 -0.176992,0.201538 -0.487051,0.201538 -0.31135,0 -0.488342,-0.201538 -0.1757,-0.20283 -0.1757,-0.5581055 0,-0.3565674 0.1757,-0.5581054 0.176992,-0.2015381 0.488342,-0.2015381 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4212"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 20.127424,3.2730117 v 0.2222087 q -0.100769,-0.055552 -0.20283,-0.082682 -0.100769,-0.028422 -0.204122,-0.028422 -0.231252,0 -0.359151,0.1472778 -0.127899,0.1459859 -0.127899,0.4108276 0,0.2648417 0.127899,0.4121195 0.127899,0.145986 0.359151,0.145986 0.103353,0 0.204122,-0.02713 0.102061,-0.028422 0.20283,-0.083974 v 0.2196249 q -0.09948,0.046509 -0.206705,0.069763 -0.105937,0.023254 -0.226085,0.023254 -0.326853,0 -0.519348,-0.2054138 -0.192495,-0.2054138 -0.192495,-0.5542297 0,-0.3539835 0.193787,-0.5568135 0.195079,-0.20283 0.533559,-0.20283 0.109813,0 0.214457,0.023254 0.104645,0.021962 0.20283,0.067179 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4214"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 20.54342,2.6541865 h 0.237711 V 4.6643996 H 20.54342 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4216"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 21.277225,3.2174596 h 0.237711 v 1.44694 h -0.237711 z m 0,-0.5632731 h 0.237711 v 0.3010152 h -0.237711 z" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4218"
+ style="font-size:2.64583px;stroke-width:0.2"
+ d="m 22.24099,4.4473586 v 0.767395 h -0.239003 v -1.997294 h 0.239003 v 0.2196248 q 0.07493,-0.1291911 0.188619,-0.1912028 0.11498,-0.063304 0.273885,-0.063304 0.26355,0 0.427623,0.2092895 0.165364,0.2092896 0.165364,0.550354 0,0.3410644 -0.165364,0.550354 -0.164073,0.2092895 -0.427623,0.2092895 -0.158905,0 -0.273885,-0.062012 -0.113688,-0.063304 -0.188619,-0.192494 z m 0.808736,-0.5051371 q 0,-0.2622579 -0.10852,-0.4108276 -0.107229,-0.1498617 -0.295848,-0.1498617 -0.188619,0 -0.297139,0.1498617 -0.107229,0.1485697 -0.107229,0.4108276 0,0.2622579 0.107229,0.4121195 0.10852,0.1485698 0.297139,0.1485698 0.188619,0 0.295848,-0.1485698 0.10852,-0.1498616 0.10852,-0.4121195 z" />
+ </g>
+ <path
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#TriangleOutL)"
+ d="m 162.57205,7.3446755 c -0.6816,0 41.10001,0 41.10001,0 v 3.1931955 h -41.17937 v 2.937789 h 32.16809"
+ id="path1399"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <rect
+ style="fill:#ff0000;fill-opacity:0.549365;fill-rule:evenodd;stroke:none;stroke-width:0.2"
+ id="rect3279"
+ width="12.130101"
+ height="28.786386"
+ x="26.393238"
+ y="6.0009131" />
+ <rect
+ y="6.0009131"
+ x="63.015598"
+ height="28.786386"
+ width="47.928467"
+ id="rect3277"
+ style="fill:#ff0000;fill-opacity:0.549365;fill-rule:evenodd;stroke:none;stroke-width:0.200001" />
+ </g>
+</svg>
diff --git a/testfiles/rendering_tests/test-lpe-1.0.svg b/testfiles/rendering_tests/test-lpe-1.0.svg
new file mode 100644
index 000000000..79385b960
--- /dev/null
+++ b/testfiles/rendering_tests/test-lpe-1.0.svg
@@ -0,0 +1,4247 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<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="210mm"
+ height="297mm"
+ viewBox="0 0 210 297"
+ version="1.1"
+ id="svg8"
+ inkscape:version="1.0beta1 (937994bc4d, 2019-10-30, custom)"
+ sodipodi:docname="test-lpe-1.0.svg">
+ <defs
+ id="defs2">
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="TriangleOutL"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="TriangleOutL">
+ <path
+ transform="scale(0.8)"
+ style="fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1;fill:#808080;fill-opacity:1"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ id="path1543" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="TriangleOutM"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="TriangleOutM">
+ <path
+ transform="scale(0.4)"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#ffffff;fill-opacity:1"
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ id="path1546" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="Arrow2Mend"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow2Mend">
+ <path
+ transform="scale(0.6) rotate(180) translate(0,0)"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#ffffff;fill-opacity:1"
+ id="path1667" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="Arrow2Lend"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow2Lend">
+ <path
+ transform="scale(1.1) rotate(180) translate(1,0)"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#ffffff;fill-opacity:1"
+ id="path1422" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="Arrow1Lend"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend">
+ <path
+ transform="scale(0.8) rotate(180) translate(12.5,0)"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#ffffff;fill-opacity:1"
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+ id="path1404" />
+ </marker>
+ <inkscape:path-effect
+ effect="powerclip"
+ id="path-effect1482"
+ is_visible="true"
+ inverse="false"
+ flatten="false"
+ hide_clip="true"
+ message="Use fill-rule evenodd on &lt;b&gt;fill and stroke&lt;/b&gt; dialog if no flatten result after convert clip to paths." />
+ <inkscape:path-effect
+ effect="powerclip"
+ id="path-effect1474"
+ is_visible="true"
+ inverse="false"
+ flatten="true"
+ hide_clip="false"
+ message="Use fill-rule evenodd on &lt;b&gt;fill and stroke&lt;/b&gt; dialog if no flatten result after convert clip to paths." />
+ <inkscape:path-effect
+ effect="powerclip"
+ id="path-effect1466"
+ is_visible="true"
+ inverse="false"
+ flatten="false"
+ hide_clip="false"
+ message="Use fill-rule evenodd on &lt;b&gt;fill and stroke&lt;/b&gt; dialog if no flatten result after convert clip to paths." />
+ <inkscape:path-effect
+ effect="powerclip"
+ id="path-effect1458"
+ is_visible="true"
+ inverse="true"
+ flatten="false"
+ hide_clip="false"
+ message="Use fill-rule evenodd on &lt;b&gt;fill and stroke&lt;/b&gt; dialog if no flatten result after convert clip to paths." />
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath944">
+ <circle
+ r="9.8630009"
+ cy="10.630895"
+ cx="83.635971"
+ id="circle946"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ d="m 88.71004,9.4486024 c 1.317504,0.2687872 3.170106,0.9903236 3.963944,3.7637776 0.750233,2.621108 -0.06585,6.98481 -5.846668,8.946252 -10e-7,0 -10e-7,10e-7 -10e-7,10e-7 -1.168535,0.292792 -2.29079,0.420668 -3.323464,0.397629 -1.073815,-0.02396 -2.029739,-0.210176 -2.849199,-0.524542 0,0 -10e-7,0 -10e-7,0 C 77.032488,20.800931 76.337224,18.752628 75.602745,17.032515 74.813164,15.183358 73.286054,13.00703 72.770094,10.534197 72.214552,7.8716578 73.538353,5.6893734 77.383023,4.3961003 80.860683,3.2262825 85.105584,3.4464947 85.093816,3.063 c -10e-7,-2e-7 0,-1e-7 0,-1e-7 -0.04152,-0.1697265 -0.28425,-0.2334453 -0.735538,-0.2090434 -0.434147,0.023475 -1.051748,0.1279196 -1.830463,0.2855175 0,0 -10e-7,5e-7 -10e-7,5e-7 -3.671821,1.7048483 -2.601554,3.156385 -0.09251,4.4417167 2.583848,1.3236519 4.726055,1.5514607 6.274737,1.8674112 z" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath948">
+ <circle
+ r="9.8630009"
+ cy="10.972964"
+ cx="72.917793"
+ id="circle950"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ d="m 81.460196,10.317529 c 0.262493,2.526951 -0.416786,5.140348 -1.869542,7.145864 -1.471324,2.031151 -3.702273,3.36602 -6.360861,3.469943 -2.651158,0.103631 -5.297234,-1.06108 -6.864771,-3.160108 -1.597538,-2.139202 -1.751441,-4.737488 -1.090661,-7.326225 0.608567,-2.3841798 1.968712,-4.9333438 3.017621,-6.4441615 1.151926,-1.6591995 2.347319,-2.7132119 4.052442,-2.8327216 1.680292,-0.1177694 3.845116,0.7254429 5.716692,2.4584054 1.893311,1.7530882 3.130021,4.0988417 3.39908,6.6890037 z" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath952">
+ <circle
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ id="circle954"
+ cx="88.538956"
+ cy="10.402848"
+ r="9.8630009"
+ d="m 93.335222,9.1018606 c 1.904609,1.4582144 3.453913,3.5109494 2.965597,6.4382874 -0.478888,2.870824 -3.034414,5.736943 -7.081152,6.292894 -1.141816,0.156866 -2.31824,0.108346 -3.451814,-0.147544 0,0 -10e-7,0 -10e-7,0 -3.13828,-0.870282 -4.767123,-2.898611 -5.481226,-5.022863 -0.699466,-2.08071 -0.637405,-4.493952 0.113697,-6.453946 0.826362,-2.1563825 2.376949,-3.6518567 4.324694,-4.963803 1.873025,-1.2616174 3.278205,-1.8465937 2.689282,-2.6753323 0,-2e-7 0,-3e-7 0,-3e-7 -0.365597,-0.1407694 -0.707498,-0.2083528 -0.966637,-0.1893462 -0.937836,0.068786 -0.546618,1.183994 1.050711,2.6235631 1.522584,1.372206 3.908829,2.6219511 5.836849,4.0980903 z" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath975">
+ <path
+ inkscape:connector-curvature="0"
+ id="path977"
+ d="m 87.377876,8.6624889 c 1.811331,1.8190121 3.336865,4.1175281 2.795667,7.1109321 -0.519855,2.87535 -3.173088,6.081798 -8.249148,6.662962 0,-1e-6 -2e-6,0 -2e-6,0 -2.441954,0.167523 -4.725025,-0.215874 -6.529458,-0.907313 -4.42638,-1.69614 -5.008862,-4.647357 -6.200253,-6.54173 C 68.48149,13.853329 67.672416,13.059811 66.302718,11.83666 65.053731,10.721304 63.512361,9.3907614 62.59985,7.8657517 61.671314,6.3139631 61.449685,4.6421949 62.554765,2.9810751 c 1.104394,-1.660088 3.404114,-3.08686204 6.569809,-4.1334489 6.724532,-2.223148 14.100968,-1.8678768 15.603492,-1.20018 0.634657,0.2820315 0.249941,0.5581789 -0.665357,0.7324708 0,10e-8 0,3e-7 -10e-7,5e-7 -2.763229,0.98799532 -2.946155,2.8988919 -1.836436,4.8540098 1.180493,2.0798112 3.235783,3.5046176 5.151604,5.4285616 z"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ inkscape:original-d="M 91.560573,8.5214667 A 13.283695,12.770591 0 0 1 78.276878,21.292058 13.283695,12.770591 0 0 1 64.993183,8.5214667 13.283695,12.770591 0 0 1 78.276878,-4.2491239 13.283695,12.770591 0 0 1 91.560573,8.5214667 Z" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath979">
+ <path
+ inkscape:connector-curvature="0"
+ id="path981"
+ d="m 121.3408,7.1139617 c 0.49293,1.3765954 0.16295,3.3077743 0.076,4.9437473 -0.11057,2.080765 0.13278,2.76447 0.46816,4.456661 0,0 0,1e-6 0,1e-6 0.23338,1.046078 0.18937,2.245949 -0.73404,3.267239 -1.15002,1.257671 -3.05989,1.87013 -4.59054,1.828723 -0.92743,0.01694 -1.84182,-0.124456 -2.69303,-0.400521 -3.08345,-1.000031 -4.81577,-3.482297 -5.60779,-6.404671 -0.75477,-2.784968 -0.80538,-6.3792344 0.27571,-9.2782703 1.18351,-3.1736772 3.64373,-5.4585825 7.0141,-6.9968073 3.23862,-1.4780919 5.98021,-1.7145457 6.27249,-1.5666036 0.10966,0.055502 0.0547,0.1521217 -0.10942,0.2917071 -0.13367,-0.205575 -2.92551,0.8408848 -6.50629,2.28573573 -3.58451,2.20605867 -4.53497,3.80852277 -4.31042,5.13345687 0,0 1e-5,-4e-7 1e-5,-4e-7 0.59104,0.6531156 3.72111,0.00557 6.0593,0.1173401 2.47844,0.1184749 3.85857,0.8500021 4.38575,2.3222625 z"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ inkscape:original-d="m 127.93396,8.8635364 a 13.283695,12.770591 0 0 1 -13.2837,12.7705916 13.283695,12.770591 0 0 1 -13.2837,-12.7705916 13.283695,12.770591 0 0 1 13.2837,-12.7705906 13.283695,12.770591 0 0 1 13.2837,12.7705906 z" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath983">
+ <path
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ d="m 136.62191,8.9692654 c 0.82487,0.6186639 1.36217,1.2296316 1.78031,2.1253426 0.39859,0.853844 0.77419,2.196557 0.74808,3.786241 -0.0505,3.077085 -2.07595,8.133525 -8.97452,8.023834 -0.85267,-0.134264 -1.65331,-0.348203 -2.38792,-0.621559 -2.80922,-1.045338 -4.36739,-2.800761 -5.24977,-4.432913 -0.87988,-1.627523 -1.14937,-3.074754 -1.95419,-4.245402 -0.85682,-1.246286 -2.11682,-2.047896 -4.17439,-3.243112 -1.92643,-1.1190412 -4.2301,-2.4252934 -5.42019,-3.9857223 -1.19202,-1.5629621 -1.07711,-3.2000991 1.22399,-4.5958236 2.3114,-1.40197411 6.42136,-2.29854712 11.42602,-2.64885724 5.06032,-0.35420586 9.7911,-0.0812571 12.82475,0.16390602 2.93685,0.23733947 3.20494,0.34331979 0.39329,-0.56048088 -0.74926,-0.2408477 -1.70142,-0.5495051 -2.83806,-0.9365414 -10.29817,1.54447744 -10.27408,3.01932551 -6.54711,5.6499057 1.55614,1.0983579 3.87479,2.3844066 5.40871,3.2476746 1.69028,0.9512645 2.89964,1.6424757 3.741,2.2735075 z"
+ id="path985"
+ inkscape:connector-curvature="0"
+ inkscape:original-d="M 142.87099,7.2672125 A 13.283695,12.770591 0 0 1 129.58729,20.037804 13.283695,12.770591 0 0 1 116.30359,7.2672125 13.283695,12.770591 0 0 1 129.58729,-5.503378 13.283695,12.770591 0 0 1 142.87099,7.2672125 Z" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath948-3">
+ <circle
+ r="9.8630009"
+ cy="10.972964"
+ cx="72.917793"
+ id="circle950-6"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath979-7">
+ <path
+ inkscape:connector-curvature="0"
+ id="path981-5"
+ d="m 127.93396,8.8635364 a 13.283695,12.770591 0 0 1 -13.2837,12.7705916 13.283695,12.770591 0 0 1 -13.2837,-12.7705916 13.283695,12.770591 0 0 1 13.2837,-12.7705906 13.283695,12.770591 0 0 1 13.2837,12.7705906 z"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath944-3">
+ <circle
+ r="9.8630009"
+ cy="10.630895"
+ cx="83.635971"
+ id="circle946-5"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath975-6">
+ <path
+ inkscape:connector-curvature="0"
+ id="path977-2"
+ d="M 91.560573,8.5214667 A 13.283695,12.770591 0 0 1 78.276878,21.292058 13.283695,12.770591 0 0 1 64.993183,8.5214667 13.283695,12.770591 0 0 1 78.276878,-4.2491239 13.283695,12.770591 0 0 1 91.560573,8.5214667 Z"
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath952-9">
+ <circle
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ id="circle954-1"
+ cx="88.538956"
+ cy="10.402848"
+ r="9.8630009" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath983-2">
+ <path
+ style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833333"
+ d="M 142.87099,7.2672125 A 13.283695,12.770591 0 0 1 129.58729,20.037804 13.283695,12.770591 0 0 1 116.30359,7.2672125 13.283695,12.770591 0 0 1 129.58729,-5.503378 13.283695,12.770591 0 0 1 142.87099,7.2672125 Z"
+ id="path985-7"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath1454">
+ <path
+ inkscape:transform-center-y="-0.33666752"
+ inkscape:transform-center-x="-0.018470635"
+ d="m 86.653337,20.71315 -3.805053,-2.931909 -3.897546,2.807785 1.612585,-4.52483 -3.87477,-2.839133 4.801686,0.13541 1.502806,-4.562466 1.35502,4.608519 4.803555,0.01937 -3.964237,2.712811 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.5869095"
+ sodipodi:arg1="0.95859096"
+ sodipodi:r2="2.4313276"
+ sodipodi:r1="6.5530729"
+ sodipodi:cy="15.350229"
+ sodipodi:cx="82.887459"
+ sodipodi:sides="5"
+ id="path1456"
+ style="display:none;opacity:1;fill:#1a1a1a;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:type="star" />
+ <path
+ id="lpe_path-effect1458"
+ class="powerclip"
+ style="fill-rule:evenodd"
+ d="M 71.3955,-2.9082747 H 94.280114 V 30.494459 H 71.3955 Z M 86.653337,20.71315 85.187383,16.138711 89.15162,13.4259 l -4.803555,-0.01937 -1.35502,-4.608519 -1.502806,4.562466 -4.801686,-0.13541 3.87477,2.839133 -1.612585,4.52483 3.897546,-2.807785 z" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath1462">
+ <path
+ inkscape:transform-center-y="-0.33666799"
+ inkscape:transform-center-x="-0.018470398"
+ d="m 86.653353,20.713151 -3.805054,-2.931909 -3.897546,2.807785 1.612586,-4.52483 -3.874771,-2.839133 4.801686,0.13541 1.502806,-4.562466 1.35502,4.608519 4.803556,0.01937 -3.964238,2.712811 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.5869095"
+ sodipodi:arg1="0.95859096"
+ sodipodi:r2="2.4313276"
+ sodipodi:r1="6.5530729"
+ sodipodi:cy="15.35023"
+ sodipodi:cx="82.887474"
+ sodipodi:sides="5"
+ id="path1464"
+ style="display:none;opacity:1;fill:#1a1a1a;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:type="star" />
+ <path
+ id="lpe_path-effect1466"
+ class="powerclip"
+ style="fill-rule:evenodd"
+ d="m 86.653353,20.713151 -3.805054,-2.931909 -3.897546,2.807785 1.612586,-4.52483 -3.874771,-2.839133 4.801686,0.13541 1.502806,-4.562466 1.35502,4.608519 4.803556,0.01937 -3.964238,2.712811 z" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath1470">
+ <path
+ inkscape:transform-center-y="-0.33666799"
+ inkscape:transform-center-x="-0.018470398"
+ d="m 86.653322,20.71315 -3.805053,-2.931909 -3.897546,2.807785 1.612585,-4.52483 -3.87477,-2.839133 4.801686,0.13541 1.502806,-4.562466 1.35502,4.608519 4.803555,0.01937 -3.964237,2.712811 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.5869095"
+ sodipodi:arg1="0.95859096"
+ sodipodi:r2="2.4313276"
+ sodipodi:r1="6.5530729"
+ sodipodi:cy="15.350229"
+ sodipodi:cx="82.887444"
+ sodipodi:sides="5"
+ id="path1472"
+ style="display:none;opacity:1;fill:#1a1a1a;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:type="star" />
+ <path
+ id="lpe_path-effect1474"
+ class="powerclip"
+ style="fill-rule:evenodd"
+ d="m 86.653322,20.71315 -3.805053,-2.931909 -3.897546,2.807785 1.612585,-4.52483 -3.87477,-2.839133 4.801686,0.13541 1.502806,-4.562466 1.35502,4.608519 4.803555,0.01937 -3.964237,2.712811 z" />
+ </clipPath>
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath1478">
+ <path
+ inkscape:transform-center-y="-0.33666799"
+ inkscape:transform-center-x="-0.018470398"
+ d="m 86.653345,20.713148 -3.805053,-2.93191 -3.897546,2.807786 1.612585,-4.524831 -3.87477,-2.839133 4.801685,0.13541 1.502807,-4.5624658 1.355019,4.6085188 4.803556,0.01937 -3.964237,2.712811 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.5869095"
+ sodipodi:arg1="0.95859096"
+ sodipodi:r2="2.4313276"
+ sodipodi:r1="6.5530729"
+ sodipodi:cy="15.350226"
+ sodipodi:cx="82.887466"
+ sodipodi:sides="5"
+ id="path1480"
+ style="display:none;opacity:1;fill:#1a1a1a;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:type="star" />
+ <path
+ id="lpe_path-effect1482"
+ class="powerclip"
+ style="fill-rule:evenodd"
+ d="M 71.3955,-2.9082747 H 94.280114 V 30.494459 H 71.3955 Z" />
+ </clipPath>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.1602178"
+ inkscape:cx="599.78151"
+ inkscape:cy="160.4007"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:window-width="2560"
+ inkscape:window-height="1376"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ inkscape:window-maximized="1"
+ inkscape:snap-global="false"
+ inkscape:pagecheckerboard="true"
+ inkscape:document-rotation="0" />
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer2"
+ inkscape:label="grid"
+ sodipodi:insensitive="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1247"
+ d="M 2.3784827,16.373013 H 14.265136 V 34.755861 H 2.3784827 Z"
+ style="opacity:1;fill:#ffffff;fill-opacity:0.63963964;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:tile-cx="7.354291"
+ inkscape:tile-cy="14.162123"
+ inkscape:tile-w="12.086653"
+ inkscape:tile-h="18.582847"
+ inkscape:tile-x0="1.3109643"
+ inkscape:tile-y0="4.8706991" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,18.582847)"
+ id="use2551"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,37.165693)"
+ id="use2553"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,55.748542)"
+ id="use2555"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,74.331388)"
+ id="use2557"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,92.914236)"
+ id="use2559"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,111.49708)"
+ id="use2561"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,130.07993)"
+ id="use2563"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,148.66278)"
+ id="use2565"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,167.24562)"
+ id="use2567"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,185.82847)"
+ id="use2569"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,204.41132)"
+ id="use2571"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,222.99416)"
+ id="use2573"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,241.57701)"
+ id="use2575"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(0,260.15986)"
+ id="use2577"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653)"
+ id="use2579"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,18.582847)"
+ id="use2581"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,37.165693)"
+ id="use2583"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,55.748542)"
+ id="use2585"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,74.331388)"
+ id="use2587"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,92.914236)"
+ id="use2589"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,111.49708)"
+ id="use2591"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,130.07993)"
+ id="use2593"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,148.66278)"
+ id="use2595"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,167.24562)"
+ id="use2597"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,185.82847)"
+ id="use2599"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,204.41132)"
+ id="use2601"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,222.99416)"
+ id="use2603"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,241.57701)"
+ id="use2605"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(12.086653,260.15986)"
+ id="use2607"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306)"
+ id="use2609"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,18.582847)"
+ id="use2611"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,37.165693)"
+ id="use2613"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,55.748542)"
+ id="use2615"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,74.331388)"
+ id="use2617"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,92.914236)"
+ id="use2619"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,111.49708)"
+ id="use2621"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,130.07993)"
+ id="use2623"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,148.66278)"
+ id="use2625"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,167.24562)"
+ id="use2627"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,185.82847)"
+ id="use2629"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,204.41132)"
+ id="use2631"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,222.99416)"
+ id="use2633"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,241.57701)"
+ id="use2635"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(24.173306,260.15986)"
+ id="use2637"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958)"
+ id="use2639"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,18.582847)"
+ id="use2641"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,37.165693)"
+ id="use2643"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,55.748542)"
+ id="use2645"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,74.331388)"
+ id="use2647"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,92.914236)"
+ id="use2649"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,111.49708)"
+ id="use2651"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,130.07993)"
+ id="use2653"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,148.66278)"
+ id="use2655"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,167.24562)"
+ id="use2657"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,185.82847)"
+ id="use2659"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,204.41132)"
+ id="use2661"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,222.99416)"
+ id="use2663"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,241.57701)"
+ id="use2665"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(36.259958,260.15986)"
+ id="use2667"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611)"
+ id="use2669"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,18.582847)"
+ id="use2671"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,37.165693)"
+ id="use2673"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,55.748542)"
+ id="use2675"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,74.331388)"
+ id="use2677"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,92.914236)"
+ id="use2679"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,111.49708)"
+ id="use2681"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,130.07993)"
+ id="use2683"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,148.66278)"
+ id="use2685"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,167.24562)"
+ id="use2687"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,185.82847)"
+ id="use2689"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,204.41132)"
+ id="use2691"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,222.99416)"
+ id="use2693"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,241.57701)"
+ id="use2695"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(48.346611,260.15986)"
+ id="use2697"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265)"
+ id="use2699"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,18.582847)"
+ id="use2701"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,37.165693)"
+ id="use2703"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,55.748542)"
+ id="use2705"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,74.331388)"
+ id="use2707"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,92.914236)"
+ id="use2709"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,111.49708)"
+ id="use2711"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,130.07993)"
+ id="use2713"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,148.66278)"
+ id="use2715"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,167.24562)"
+ id="use2717"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,185.82847)"
+ id="use2719"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,204.41132)"
+ id="use2721"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,222.99416)"
+ id="use2723"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,241.57701)"
+ id="use2725"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(60.433265,260.15986)"
+ id="use2727"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918)"
+ id="use2729"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,18.582847)"
+ id="use2731"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,37.165693)"
+ id="use2733"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,55.748542)"
+ id="use2735"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,74.331388)"
+ id="use2737"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,92.914236)"
+ id="use2739"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,111.49708)"
+ id="use2741"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,130.07993)"
+ id="use2743"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,148.66278)"
+ id="use2745"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,167.24562)"
+ id="use2747"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,185.82847)"
+ id="use2749"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,204.41132)"
+ id="use2751"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,222.99416)"
+ id="use2753"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,241.57701)"
+ id="use2755"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(72.519918,260.15986)"
+ id="use2757"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572)"
+ id="use2759"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,18.582847)"
+ id="use2761"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,37.165693)"
+ id="use2763"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,55.748542)"
+ id="use2765"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,74.331388)"
+ id="use2767"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,92.914236)"
+ id="use2769"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,111.49708)"
+ id="use2771"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,130.07993)"
+ id="use2773"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,148.66278)"
+ id="use2775"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,167.24562)"
+ id="use2777"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,185.82847)"
+ id="use2779"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,204.41132)"
+ id="use2781"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,222.99416)"
+ id="use2783"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,241.57701)"
+ id="use2785"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(84.606572,260.15986)"
+ id="use2787"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223)"
+ id="use2789"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,18.582847)"
+ id="use2791"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,37.165693)"
+ id="use2793"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,55.748542)"
+ id="use2795"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,74.331388)"
+ id="use2797"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,92.914236)"
+ id="use2799"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,111.49708)"
+ id="use2801"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,130.07993)"
+ id="use2803"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,148.66278)"
+ id="use2805"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,167.24562)"
+ id="use2807"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,185.82847)"
+ id="use2809"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,204.41132)"
+ id="use2811"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,222.99416)"
+ id="use2813"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,241.57701)"
+ id="use2815"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(96.693223,260.15986)"
+ id="use2817"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988)"
+ id="use2819"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,18.582847)"
+ id="use2821"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,37.165693)"
+ id="use2823"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,55.748542)"
+ id="use2825"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,74.331388)"
+ id="use2827"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,92.914236)"
+ id="use2829"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,111.49708)"
+ id="use2831"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,130.07993)"
+ id="use2833"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,148.66278)"
+ id="use2835"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,167.24562)"
+ id="use2837"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,185.82847)"
+ id="use2839"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,204.41132)"
+ id="use2841"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,222.99416)"
+ id="use2843"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,241.57701)"
+ id="use2845"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(108.77988,260.15986)"
+ id="use2847"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653)"
+ id="use2849"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,18.582847)"
+ id="use2851"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,37.165693)"
+ id="use2853"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,55.748542)"
+ id="use2855"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,74.331388)"
+ id="use2857"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,92.914236)"
+ id="use2859"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,111.49708)"
+ id="use2861"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,130.07993)"
+ id="use2863"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,148.66278)"
+ id="use2865"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,167.24562)"
+ id="use2867"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,185.82847)"
+ id="use2869"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,204.41132)"
+ id="use2871"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,222.99416)"
+ id="use2873"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,241.57701)"
+ id="use2875"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(120.86653,260.15986)"
+ id="use2877"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318)"
+ id="use2879"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,18.582847)"
+ id="use2881"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,37.165693)"
+ id="use2883"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,55.748542)"
+ id="use2885"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,74.331388)"
+ id="use2887"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,92.914236)"
+ id="use2889"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,111.49708)"
+ id="use2891"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,130.07993)"
+ id="use2893"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,148.66278)"
+ id="use2895"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,167.24562)"
+ id="use2897"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,185.82847)"
+ id="use2899"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,204.41132)"
+ id="use2901"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,222.99416)"
+ id="use2903"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,241.57701)"
+ id="use2905"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(132.95318,260.15986)"
+ id="use2907"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984)"
+ id="use2909"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,18.582847)"
+ id="use2911"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,37.165693)"
+ id="use2913"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,55.748542)"
+ id="use2915"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,74.331388)"
+ id="use2917"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,92.914236)"
+ id="use2919"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,111.49708)"
+ id="use2921"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,130.07993)"
+ id="use2923"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,148.66278)"
+ id="use2925"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,167.24562)"
+ id="use2927"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,185.82847)"
+ id="use2929"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,204.41132)"
+ id="use2931"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,222.99416)"
+ id="use2933"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,241.57701)"
+ id="use2935"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(145.03984,260.15986)"
+ id="use2937"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649)"
+ id="use2939"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,18.582847)"
+ id="use2941"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,37.165693)"
+ id="use2943"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,55.748542)"
+ id="use2945"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,74.331388)"
+ id="use2947"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,92.914236)"
+ id="use2949"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,111.49708)"
+ id="use2951"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,130.07993)"
+ id="use2953"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,148.66278)"
+ id="use2955"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,167.24562)"
+ id="use2957"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,185.82847)"
+ id="use2959"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,204.41132)"
+ id="use2961"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,222.99416)"
+ id="use2963"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,241.57701)"
+ id="use2965"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(157.12649,260.15986)"
+ id="use2967"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314)"
+ id="use2969"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,18.582847)"
+ id="use2971"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,37.165693)"
+ id="use2973"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,55.748542)"
+ id="use2975"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,74.331388)"
+ id="use2977"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,92.914236)"
+ id="use2979"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,111.49708)"
+ id="use2981"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,130.07993)"
+ id="use2983"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,148.66278)"
+ id="use2985"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,167.24562)"
+ id="use2987"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,185.82847)"
+ id="use2989"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,204.41132)"
+ id="use2991"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,222.99416)"
+ id="use2993"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,241.57701)"
+ id="use2995"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(169.21314,260.15986)"
+ id="use2997"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979)"
+ id="use2999"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,18.582847)"
+ id="use3001"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,37.165693)"
+ id="use3003"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,55.748542)"
+ id="use3005"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,74.331388)"
+ id="use3007"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,92.914236)"
+ id="use3009"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,111.49708)"
+ id="use3011"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,130.07993)"
+ id="use3013"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,148.66278)"
+ id="use3015"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,167.24562)"
+ id="use3017"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,185.82847)"
+ id="use3019"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,204.41132)"
+ id="use3021"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,222.99416)"
+ id="use3023"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,241.57701)"
+ id="use3025"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(181.29979,260.15986)"
+ id="use3027"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645)"
+ id="use3029"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,18.582847)"
+ id="use3031"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,37.165693)"
+ id="use3033"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,55.748542)"
+ id="use3035"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,74.331388)"
+ id="use3037"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,92.914236)"
+ id="use3039"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,111.49708)"
+ id="use3041"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,130.07993)"
+ id="use3043"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,148.66278)"
+ id="use3045"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,167.24562)"
+ id="use3047"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,185.82847)"
+ id="use3049"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,204.41132)"
+ id="use3051"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,222.99416)"
+ id="use3053"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,241.57701)"
+ id="use3055"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ <use
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path1247"
+ xlink:href="#path1247"
+ transform="translate(193.38645,260.15986)"
+ id="use3057"
+ width="100%"
+ height="100%"
+ style="fill:#ffffff;fill-opacity:0.63963964;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none" />
+ </g>
+ <g
+ inkscape:label="lpe"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ d="M 2.4169061,1.7004008 H 207.64231 V 16.353353 H 2.4169061 Z"
+ style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect1396" />
+ <path
+ style="opacity:1;fill:#aa8800;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 14.138868,16.275039 V 5.8989343 H 2.2804611 l 0.053448,10.3787777"
+ id="path4158"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4138"
+ d="M 62.95057,16.275576 V 5.8908264 h 48.01665 V 16.161458"
+ style="opacity:1;fill:#d45500;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ style="opacity:1;fill:#88aa00;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="M 111.40061,16.175046 V 5.8989343 h 48.23178 V 16.062122"
+ id="path4134"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path4136"
+ d="M 14.529662,16.275039 V 5.8989343 h 47.87578 V 16.161016"
+ style="opacity:1;fill:#000000;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <g
+ aria-label="no lpe"
+ id="text1488"
+ style="font-size:1.48447px;line-height:1.25;text-align:justify;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:0.352778;stroke-dasharray:0.352778, 1.05833">
+ <path
+ d="m 6.5030343,24.781804 v 0.489991 H 6.3696639 v -0.485642 q 0,-0.115249 -0.04494,-0.172511 -0.04494,-0.05726 -0.13482,-0.05726 -0.108001,0 -0.1703371,0.06886 -0.062336,0.06886 -0.062336,0.187733 v 0.458823 H 5.8231354 v -0.811819 h 0.1340952 v 0.126122 q 0.047839,-0.07321 0.11235,-0.109451 0.065236,-0.03624 0.1500417,-0.03624 0.1398939,0 0.2116529,0.08698 0.071759,0.08626 0.071759,0.254418 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1490" />
+ <path
+ d="m 7.0850799,24.55348 q -0.1072761,0 -0.1696123,0.08408 -0.062336,0.08336 -0.062336,0.229049 0,0.145693 0.061611,0.229774 0.062336,0.08336 0.1703371,0.08336 0.1065513,0 0.1688875,-0.08408 0.062336,-0.08408 0.062336,-0.229049 0,-0.144243 -0.062336,-0.228324 -0.062336,-0.08481 -0.1688875,-0.08481 z m 0,-0.113075 q 0.1739613,0 0.2732643,0.113075 0.099303,0.113075 0.099303,0.31313 0,0.199331 -0.099303,0.313131 -0.099303,0.113075 -0.2732643,0.113075 -0.1746862,0 -0.2739891,-0.113075 -0.098578,-0.1138 -0.098578,-0.313131 0,-0.200055 0.098578,-0.31313 0.099303,-0.113075 0.2739891,-0.113075 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1492" />
+ <path
+ d="m 8.1505929,24.143946 h 0.1333704 v 1.127849 H 8.1505929 Z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1494" />
+ <path
+ d="m 8.6913228,25.150022 v 0.430555 H 8.5572277 v -1.120601 h 0.1340951 v 0.123222 q 0.042041,-0.07248 0.1058265,-0.107276 0.064511,-0.03552 0.1536659,-0.03552 0.1478671,0 0.2399216,0.117424 0.092779,0.117424 0.092779,0.308781 0,0.191358 -0.092779,0.308782 -0.092054,0.117424 -0.2399216,0.117424 -0.089155,0 -0.1536659,-0.03479 -0.063786,-0.03552 -0.1058265,-0.108001 z M 9.145072,24.86661 q 0,-0.147142 -0.060887,-0.230498 -0.060162,-0.08408 -0.1659881,-0.08408 -0.1058265,0 -0.1667129,0.08408 -0.060162,0.08336 -0.060162,0.230498 0,0.147143 0.060162,0.231224 0.060886,0.08336 0.1667129,0.08336 0.1058265,0 0.1659881,-0.08336 0.060887,-0.08408 0.060887,-0.231224 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1496" />
+ <path
+ d="m 10.198988,24.832543 v 0.06523 H 9.585774 q 0.0087,0.13772 0.082632,0.210204 0.074658,0.07176 0.2073039,0.07176 0.076833,0 0.1485924,-0.01885 0.07248,-0.01885 0.143518,-0.05654 v 0.126122 q -0.07176,0.03044 -0.147143,0.04639 -0.075383,0.01595 -0.1529407,0.01595 -0.1942568,0 -0.3080565,-0.113075 -0.1130748,-0.113075 -0.1130748,-0.305882 0,-0.199331 0.1072761,-0.31603 0.108001,-0.117424 0.2906604,-0.117424 0.1638135,0 0.2587675,0.105827 0.09568,0.105101 0.09568,0.286311 z m -0.133371,-0.03914 q -0.0014,-0.109451 -0.06161,-0.174687 -0.059437,-0.06524 -0.1580148,-0.06524 -0.1116252,0 -0.1790352,0.06306 -0.066685,0.06306 -0.076833,0.177585 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1498" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-size:1.48447px;line-height:1.25;text-align:justify;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:0.352778;stroke-dasharray:0.352778, 1.05833"
+ x="-13.015488"
+ y="24.930172"
+ id="text1346"><tspan
+ sodipodi:role="line"
+ id="tspan1344"
+ x="-13.015488"
+ y="24.930172"
+ style="fill:#000000;stroke-width:0.352778">no lpe</tspan></text>
+ <g
+ aria-label="power clip"
+ id="text1184"
+ style="font-size:1.48447px;line-height:1.25;text-align:justify;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:0.352778;stroke-dasharray:0.352778, 1.05833">
+ <path
+ d="m 161.98496,25.409469 v 0.430555 h -0.13409 v -1.120601 h 0.13409 v 0.123222 q 0.042,-0.07248 0.10583,-0.107276 0.0645,-0.03552 0.15367,-0.03552 0.14786,0 0.23992,0.117424 0.0928,0.117424 0.0928,0.308781 0,0.191358 -0.0928,0.308782 -0.0921,0.117424 -0.23992,0.117424 -0.0892,0 -0.15367,-0.03479 -0.0638,-0.03552 -0.10583,-0.108001 z m 0.45375,-0.283412 q 0,-0.147142 -0.0609,-0.230498 -0.0602,-0.08408 -0.16599,-0.08408 -0.10583,0 -0.16671,0.08408 -0.0602,0.08336 -0.0602,0.230498 0,0.147143 0.0602,0.231224 0.0609,0.08336 0.16671,0.08336 0.10583,0 0.16599,-0.08336 0.0609,-0.08408 0.0609,-0.231224 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1501" />
+ <path
+ d="m 163.11281,24.812927 q -0.10727,0 -0.16961,0.08408 -0.0623,0.08336 -0.0623,0.229049 0,0.145693 0.0616,0.229774 0.0623,0.08336 0.17033,0.08336 0.10656,0 0.16889,-0.08408 0.0623,-0.08408 0.0623,-0.22905 0,-0.144242 -0.0623,-0.228324 -0.0623,-0.08481 -0.16889,-0.08481 z m 0,-0.113075 q 0.17397,0 0.27327,0.113075 0.0993,0.113075 0.0993,0.31313 0,0.199331 -0.0993,0.313131 -0.0993,0.113075 -0.27327,0.113075 -0.17468,0 -0.27399,-0.113075 -0.0986,-0.1138 -0.0986,-0.313131 0,-0.200055 0.0986,-0.31313 0.0993,-0.113075 0.27399,-0.113075 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1503" />
+ <path
+ d="m 163.62817,24.719423 h 0.13337 l 0.16672,0.633509 0.16599,-0.633509 h 0.15729 l 0.16671,0.633509 0.16599,-0.633509 h 0.13337 l -0.21238,0.811819 h -0.15729 l -0.17469,-0.665402 -0.17541,0.665402 h -0.15729 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1505" />
+ <path
+ d="m 165.61496,25.09199 v 0.06524 h -0.61322 q 0.009,0.137719 0.0826,0.210203 0.0746,0.07176 0.2073,0.07176 0.0768,0 0.14859,-0.01885 0.0725,-0.01885 0.14352,-0.05654 v 0.126122 q -0.0718,0.03044 -0.14714,0.04639 -0.0754,0.01595 -0.15294,0.01595 -0.19426,0 -0.30806,-0.113075 -0.11308,-0.113075 -0.11308,-0.305882 0,-0.199331 0.10728,-0.31603 0.108,-0.117424 0.29066,-0.117424 0.16381,0 0.25877,0.105827 0.0957,0.105101 0.0957,0.286311 z m -0.13337,-0.03914 q -0.001,-0.109451 -0.0616,-0.174686 -0.0594,-0.06524 -0.15802,-0.06524 -0.11162,0 -0.17903,0.06306 -0.0667,0.06306 -0.0768,0.177586 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1507" />
+ <path
+ d="m 166.30428,24.844095 q -0.0225,-0.01305 -0.0493,-0.01885 -0.0261,-0.0065 -0.058,-0.0065 -0.11307,0 -0.17396,0.07393 -0.0602,0.07321 -0.0602,0.210928 v 0.427655 h -0.1341 v -0.811819 h 0.1341 v 0.126122 q 0.042,-0.07393 0.10945,-0.109451 0.0674,-0.03624 0.16381,-0.03624 0.0138,0 0.0305,0.0022 0.0167,0.0014 0.037,0.0051 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1509" />
+ <path
+ d="m 167.50244,24.750591 v 0.124672 q -0.0565,-0.03117 -0.1138,-0.04639 -0.0565,-0.01595 -0.11453,-0.01595 -0.12974,0 -0.2015,0.08263 -0.0718,0.08191 -0.0718,0.230498 0,0.148592 0.0718,0.231224 0.0718,0.08191 0.2015,0.08191 0.058,0 0.11453,-0.01522 0.0573,-0.01595 0.1138,-0.04711 v 0.123222 q -0.0558,0.02609 -0.11598,0.03914 -0.0594,0.01305 -0.12684,0.01305 -0.18339,0 -0.29139,-0.11525 -0.108,-0.115249 -0.108,-0.310956 0,-0.198605 0.10873,-0.312405 0.10945,-0.1138 0.29935,-0.1138 0.0616,0 0.12033,0.01305 0.0587,0.01232 0.1138,0.03769 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1511" />
+ <path
+ d="m 167.73584,24.403393 h 0.13337 v 1.127849 h -0.13337 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1513" />
+ <path
+ d="m 168.14754,24.719423 h 0.13337 v 0.811819 h -0.13337 z m 0,-0.31603 h 0.13337 v 0.168888 h -0.13337 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1515" />
+ <path
+ d="m 168.68827,25.409469 v 0.430555 h -0.13409 v -1.120601 h 0.13409 v 0.123222 q 0.0421,-0.07248 0.10583,-0.107276 0.0645,-0.03552 0.15367,-0.03552 0.14786,0 0.23992,0.117424 0.0928,0.117424 0.0928,0.308781 0,0.191358 -0.0928,0.308782 -0.0921,0.117424 -0.23992,0.117424 -0.0892,0 -0.15367,-0.03479 -0.0638,-0.03552 -0.10583,-0.108001 z m 0.45375,-0.283412 q 0,-0.147142 -0.0609,-0.230498 -0.0602,-0.08408 -0.16599,-0.08408 -0.10583,0 -0.16671,0.08408 -0.0602,0.08336 -0.0602,0.230498 0,0.147143 0.0602,0.231224 0.0609,0.08336 0.16671,0.08336 0.10583,0 0.16599,-0.08336 0.0609,-0.08408 0.0609,-0.231224 z"
+ style="fill:#000000;stroke-width:0.352778"
+ id="path1517" />
+ </g>
+ <path
+ sodipodi:type="star"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833336"
+ id="path956-0"
+ sodipodi:sides="5"
+ sodipodi:cx="56.181171"
+ sodipodi:cy="25.39744"
+ sodipodi:r1="4.3385372"
+ sodipodi:r2="2.6994677"
+ sodipodi:arg1="0.92729522"
+ sodipodi:arg2="1.508128"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 58.784294,28.86827 -2.434062,-0.776661 -2.665607,0.854093 -0.01352,-2.554932 -1.636008,-2.271213 2.425707,-0.802374 1.654498,-2.25778 1.512687,2.059038 2.658545,0.875828 -1.490815,2.074929 z"
+ inkscape:transform-center-x="-9.2798015"
+ inkscape:transform-center-y="0.81755412" />
+ <path
+ inkscape:transform-center-y="-0.41336927"
+ inkscape:transform-center-x="0.021300379"
+ d="m 135.80145,21.862014 -3.83814,-1.224673 -4.20324,1.346771 -0.0213,-4.028726 -2.57973,-3.581346 3.82496,-1.265217 2.60888,-3.5601644 2.38527,3.2467784 4.19211,1.381044 -2.35079,3.271837 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.508128"
+ sodipodi:arg1="0.92729522"
+ sodipodi:r2="4.2566361"
+ sodipodi:r1="6.8411908"
+ sodipodi:cy="16.389061"
+ sodipodi:cx="131.69673"
+ sodipodi:sides="5"
+ id="path906-9"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.53140372;stroke-dasharray:0.53140374, 1.59421127"
+ sodipodi:type="star"
+ clip-path="url(#clipPath983-2)"
+ transform="matrix(0.66386018,0,0,0.66386018,66.117359,15.551299)" />
+ <path
+ sodipodi:type="star"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.60545152;stroke-dasharray:0.6054515, 1.81635456"
+ id="path894"
+ sodipodi:sides="5"
+ sodipodi:cx="86.657585"
+ sodipodi:cy="16.046991"
+ sodipodi:r1="6.8411908"
+ sodipodi:r2="4.7049785"
+ sodipodi:arg1="0.92729522"
+ sodipodi:arg2="1.5868412"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 90.7623,21.519944 -4.180202,-0.76858 -3.861174,0.890678 -0.56079,-4.213112 -2.040253,-3.39696 3.833614,-1.835267 2.600227,-2.990114 2.930095,3.078855 3.647282,1.548967 -2.022716,3.738104 z"
+ inkscape:transform-center-x="0.01869632"
+ inkscape:transform-center-y="-0.36281353"
+ clip-path="url(#clipPath952-9)"
+ transform="matrix(0.58266894,0,0,0.58266894,53.811123,16.872308)" />
+ <g
+ id="g1354"
+ transform="matrix(0.56615984,0,0,0.56615984,-26.186944,16.9084)"
+ style="stroke-width:1.76629">
+ <path
+ id="path1348"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path1350"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path1352"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="stroke-width:1.76629"
+ transform="matrix(0.56615984,0,0,0.56615984,130.75789,16.971201)"
+ id="g1404"
+ clip-path="url(#clipPath1454)"
+ inkscape:path-effect="#path-effect1458">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ id="path1398"
+ inkscape:original-d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ id="path1400"
+ inkscape:original-d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ id="path1402"
+ inkscape:original-d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z" />
+ </g>
+ <g
+ style="stroke-width:1.76629"
+ transform="matrix(0.56615984,0,0,0.56615984,143.0274,17.115957)"
+ id="g1418"
+ clip-path="url(#clipPath1462)"
+ inkscape:path-effect="#path-effect1466">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ id="path1412"
+ inkscape:original-d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ id="path1414"
+ inkscape:original-d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ id="path1416"
+ inkscape:original-d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z" />
+ </g>
+ <g
+ style="stroke-width:1.76629"
+ transform="matrix(0.56615984,0,0,0.56615984,154.9103,17.266504)"
+ id="g1432"
+ clip-path="url(#clipPath1470)"
+ inkscape:path-effect="#path-effect1474">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ d="m 86.653322,20.71315 -3.805053,-2.931909 -3.897546,2.807785 1.612585,-4.52483 -3.87477,-2.839133 4.801686,0.13541 1.502806,-4.562466 1.35502,4.608519 4.803555,0.01937 -3.964237,2.712811 z"
+ id="path1426"
+ inkscape:original-d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="M 82.656919,9.8184258 82.99303,8.798007 83.302145,9.8493293 82.948582,9.5941232 Z"
+ id="path1428"
+ inkscape:original-d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="m 86.269762,20.417606 -1.410676,-1.086969 1.339481,-0.03653 0.305202,0.952368 z m -2.762641,-2.128699 -0.658852,-0.507666 -1.144173,0.82426 0.902531,-3.059049 z m -2.901524,1.107951 -1.541044,1.110165 -0.06799,-0.04662 0.377671,-1.059724 z"
+ id="path1430"
+ inkscape:original-d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z" />
+ </g>
+ <g
+ style="stroke-width:1.76629"
+ transform="matrix(0.56615984,0,0,0.56615984,-38.074305,35.976097)"
+ id="g1446"
+ clip-path="url(#clipPath1478)"
+ inkscape:path-effect="#path-effect1482">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ id="path1440"
+ inkscape:original-d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ id="path1442"
+ inkscape:original-d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.623106;stroke-dasharray:0.623106, 1.86932"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ id="path1444"
+ inkscape:original-d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z" />
+ </g>
+ <g
+ style="stroke-width:1.76628566"
+ transform="matrix(0.56615984,0,0,0.56615984,-26.186944,16.9084)"
+ id="g4034">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ id="path4028" />
+ <path
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ id="path4030" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ id="path4032" />
+ </g>
+ <g
+ id="g964-3"
+ transform="matrix(0.56615984,0,0,0.56615984,-14.496097,16.9084)"
+ style="stroke-width:1.76628566">
+ <path
+ id="path958-6"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.5556137"
+ sodipodi:arg1="0.92729522"
+ sodipodi:r2="2.0305073"
+ sodipodi:r1="5.4727554"
+ sodipodi:cy="7.5638499"
+ sodipodi:cx="82.917755"
+ sodipodi:sides="5"
+ id="path960-0"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904"
+ sodipodi:type="star" />
+ <path
+ id="path962-6"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.6231063;stroke-dasharray:0.62310633, 1.86931904"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(0.57417503,0,0,0.57417503,69.452621,18.118326)"
+ id="g922-2"
+ clip-path="url(#clipPath975-6)"
+ style="stroke-width:1.74162924">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ id="path910-6" />
+ <path
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ id="path914-1" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ id="path918-8" />
+ </g>
+ <g
+ style="stroke-width:1.65242755"
+ clip-path="url(#clipPath944-3)"
+ transform="matrix(0.60517026,0,0,0.60517026,19.15338,17.541353)"
+ id="g4071">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921"
+ d="M 75.711361,8.1793973 H 88.595975 V 21.634128 H 75.711361 Z"
+ id="path4065" />
+ <path
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ id="path4067" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921"
+ inkscape:transform-center-x="0.025675324"
+ inkscape:transform-center-y="-0.49812277"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ id="path4069" />
+ </g>
+ <g
+ id="g883-7"
+ transform="matrix(0.60517026,0,0,0.60517026,30.602348,17.541353)"
+ clip-path="url(#clipPath944-3)"
+ style="stroke-width:1.65242755">
+ <path
+ id="path896-9"
+ d="M 75.711361,8.1793973 H 88.595975 V 21.634128 H 75.711361 Z"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.5556137"
+ sodipodi:arg1="0.92729522"
+ sodipodi:r2="2.0305073"
+ sodipodi:r1="5.4727554"
+ sodipodi:cy="7.5638499"
+ sodipodi:cx="82.917755"
+ sodipodi:sides="5"
+ id="path898-2"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921"
+ sodipodi:type="star" />
+ <path
+ id="path900-0"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.58293974;stroke-dasharray:0.58293972, 1.74881921"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path966-2"
+ d="m 42.01003,20.922189 h 5.18925 c 0.854683,0 1.542749,0.688067 1.542749,1.542749 v 5.18925 c 0,0.854683 -0.688066,1.54275 -1.542749,1.54275 h -5.18925 c -0.854682,0 -1.542749,-0.688067 -1.542749,-1.54275 v -5.18925 c 0,-0.854682 0.688067,-1.542749 1.542749,-1.542749 z"
+ style="fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke-width:0.35277778;stroke-dasharray:0.35277778, 1.05833337" />
+ <path
+ style="fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke-width:0.63075548;stroke-dasharray:0.63075543, 1.89226635"
+ d="m 113.22497,9.3196281 h 8.43772 c 1.38971,0 2.5085,1.1187949 2.5085,2.5085089 v 8.437714 c 0,1.389714 -1.11879,2.508509 -2.5085,2.508509 h -8.43772 c -1.38971,0 -2.50851,-1.118795 -2.50851,-2.508509 v -8.437714 c 0,-1.389714 1.1188,-2.5085089 2.50851,-2.5085089 z"
+ id="path924-3"
+ inkscape:connector-curvature="0"
+ clip-path="url(#clipPath979-7)"
+ transform="matrix(0.55929409,0,0,0.55929409,75.846328,16.916542)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path902"
+ d="m 67.729741,8.6354892 h 8.437714 c 1.389714,0 2.508509,1.1187954 2.508509,2.5085098 v 8.437714 c 0,1.389714 -1.118795,2.508509 -2.508509,2.508509 h -8.437714 c -1.389714,0 -2.508509,-1.118795 -2.508509,-2.508509 v -8.437714 c 0,-1.3897144 1.118795,-2.5085098 2.508509,-2.5085098 z"
+ style="fill:#008080;fill-opacity:1;fill-rule:evenodd;stroke-width:0.59269845;stroke-dasharray:0.59269848, 1.77809548"
+ clip-path="url(#clipPath948-3)"
+ transform="matrix(0.59520616,0,0,0.59520616,49.194405,16.801873)" />
+ <g
+ aria-label="lpe name"
+ style="font-size:1.85208333px;line-height:1.25;text-align:justify;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4014">
+ <path
+ d="m 3.8383174,10.190788 h 0.1663981 v 1.40715 H 3.8383174 Z"
+ style="font-size:1.85208333px;fill:#1a1a1a;stroke-width:0.2"
+ id="path4483" />
+ <path
+ d="m 4.5129532,11.446009 v 0.537176 H 4.3456507 V 10.58508 h 0.1673025 v 0.153737 q 0.052452,-0.09043 0.1320332,-0.133842 0.080486,-0.04431 0.1917196,-0.04431 0.1844849,0 0.2993357,0.146503 0.1157552,0.146503 0.1157552,0.385248 0,0.238745 -0.1157552,0.385248 -0.1148508,0.146502 -0.2993357,0.146502 -0.1112335,0 -0.1917196,-0.04341 -0.079582,-0.04431 -0.1320332,-0.134746 z m 0.5661153,-0.353596 q 0,-0.183581 -0.075964,-0.287579 -0.07506,-0.104904 -0.2070933,-0.104904 -0.1320333,0 -0.2079976,0.104904 -0.07506,0.103998 -0.07506,0.287579 0,0.18358 0.07506,0.288484 0.075964,0.103998 0.2079976,0.103998 0.1320333,0 0.2070933,-0.103998 0.075964,-0.104904 0.075964,-0.288484 z"
+ style="font-size:1.85208333px;fill:#1a1a1a;stroke-width:0.2"
+ id="path4485" />
+ <path
+ d="m 6.3939752,11.049909 v 0.08139 H 5.6289056 q 0.010852,0.171825 0.1030945,0.262258 0.093147,0.08953 0.2586405,0.08953 0.09586,0 0.1853892,-0.02351 0.090434,-0.02351 0.1790589,-0.07054 v 0.157354 q -0.089529,0.03798 -0.1835806,0.05788 -0.094051,0.01989 -0.1908152,0.01989 -0.2423624,0 -0.3843434,-0.141076 -0.1410767,-0.141077 -0.1410767,-0.381631 0,-0.248693 0.133842,-0.394291 0.1347463,-0.146503 0.3626393,-0.146503 0.2043803,0 0.3228485,0.132034 0.1193726,0.131129 0.1193726,0.357213 z m -0.1663981,-0.04883 q -0.00181,-0.136555 -0.076869,-0.217946 -0.074156,-0.08139 -0.1971456,-0.08139 -0.139268,0 -0.2233714,0.07868 -0.083199,0.07868 -0.09586,0.221563 z"
+ style="font-size:1.85208333px;fill:#1a1a1a;stroke-width:0.2"
+ id="path4487" />
+ <path
+ d="m 8.0986516,10.986605 v 0.611333 H 7.9322535 v -0.605907 q 0,-0.143789 -0.056069,-0.215232 -0.056069,-0.07144 -0.1682068,-0.07144 -0.1347463,0 -0.2125193,0.08591 -0.077773,0.08591 -0.077773,0.234224 v 0.572446 H 7.250383 V 10.58508 h 0.1673024 v 0.157354 q 0.059686,-0.09134 0.1401724,-0.136555 0.08139,-0.04522 0.1871978,-0.04522 0.1745372,0 0.2640666,0.108521 0.089529,0.107616 0.089529,0.317422 z"
+ style="font-size:1.85208333px;fill:#1a1a1a;stroke-width:0.2"
+ id="path4489" />
+ <path
+ d="m 8.8926599,11.088796 q -0.2016673,0 -0.2794404,0.04612 -0.077773,0.04612 -0.077773,0.157354 0,0.08863 0.057878,0.141077 0.058782,0.05155 0.1591634,0.05155 0.1383637,0 0.2215627,-0.09767 0.084103,-0.09857 0.084103,-0.261354 v -0.03708 z m 0.3318918,-0.06873 v 0.577872 H 9.0581536 V 11.4442 q -0.056973,0.09224 -0.141981,0.136555 -0.085008,0.04341 -0.2079976,0.04341 -0.1555461,0 -0.2477885,-0.08682 -0.091338,-0.08772 -0.091338,-0.234223 0,-0.17092 0.1139465,-0.257737 0.1148509,-0.08682 0.3418396,-0.08682 h 0.2333191 v -0.01628 q 0,-0.114851 -0.075964,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.086816,0 -0.1691111,0.0208 -0.082295,0.0208 -0.1582591,0.0624 v -0.153737 q 0.091338,-0.03527 0.1772501,-0.05245 0.085912,-0.01809 0.1673025,-0.01809 0.219754,0 0.3282745,0.113947 0.1085205,0.113946 0.1085205,0.345457 z"
+ style="font-size:1.85208333px;fill:#1a1a1a;stroke-width:0.2"
+ id="path4491" />
+ <path
+ d="m 10.356782,10.779512 q 0.0624,-0.112138 0.149216,-0.165494 0.08682,-0.05336 0.20438,-0.05336 0.158259,0 0.244172,0.111234 0.08591,0.110329 0.08591,0.314709 v 0.611333 h -0.167303 v -0.605907 q 0,-0.145598 -0.05155,-0.216136 -0.05155,-0.07054 -0.157355,-0.07054 -0.12932,0 -0.20438,0.08591 -0.07506,0.08591 -0.07506,0.234224 v 0.572446 h -0.167303 v -0.605907 q 0,-0.146502 -0.05155,-0.216136 -0.05155,-0.07054 -0.159163,-0.07054 -0.1275118,0 -0.2025718,0.08682 -0.07506,0.08591 -0.07506,0.233319 v 0.572446 H 9.5618697 V 10.58508 h 0.1673025 v 0.157354 q 0.056973,-0.09315 0.1365549,-0.137459 0.079582,-0.04431 0.1890069,-0.04431 0.110329,0 0.187198,0.05607 0.07777,0.05607 0.11485,0.162781 z"
+ style="font-size:1.85208333px;fill:#1a1a1a;stroke-width:0.2"
+ id="path4493" />
+ <path
+ d="m 12.239613,11.049909 v 0.08139 h -0.76507 q 0.01085,0.171825 0.103095,0.262258 0.09315,0.08953 0.25864,0.08953 0.09586,0 0.18539,-0.02351 0.09043,-0.02351 0.179058,-0.07054 v 0.157354 q -0.08953,0.03798 -0.18358,0.05788 -0.09405,0.01989 -0.190815,0.01989 -0.242363,0 -0.384344,-0.141076 -0.141076,-0.141077 -0.141076,-0.381631 0,-0.248693 0.133842,-0.394291 0.134746,-0.146503 0.362639,-0.146503 0.20438,0 0.322848,0.132034 0.119373,0.131129 0.119373,0.357213 z m -0.166398,-0.04883 q -0.0018,-0.136555 -0.07687,-0.217946 -0.07416,-0.08139 -0.197145,-0.08139 -0.139268,0 -0.223372,0.07868 -0.0832,0.07868 -0.09586,0.221563 z"
+ style="font-size:1.85208333px;fill:#1a1a1a;stroke-width:0.2"
+ id="path4495" />
+ </g>
+ <g
+ aria-label=" group paths"
+ inkscape:transform-center-y="2.0156633"
+ style="font-size:1.85208333px;line-height:1.25;text-align:justify;opacity:1;fill:#ffffff;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4092">
+ <path
+ d="m 19.151796,9.7372628 q 0,-0.1808675 -0.07506,-0.2803447 -0.07416,-0.099477 -0.208902,-0.099477 -0.133842,0 -0.208902,0.099477 -0.07416,0.099477 -0.07416,0.2803447 0,0.1799631 0.07416,0.2794402 0.07506,0.09948 0.208902,0.09948 0.134747,0 0.208902,-0.09948 0.07506,-0.099477 0.07506,-0.2794402 z m 0.166398,0.3924822 q 0,0.258641 -0.11485,0.384344 -0.114851,0.126607 -0.351788,0.126607 -0.08772,0 -0.165494,-0.01356 -0.07777,-0.01266 -0.151024,-0.03979 v -0.161876 q 0.07325,0.03979 0.144694,0.05878 0.07144,0.01899 0.145598,0.01899 0.163686,0 0.245076,-0.08591 0.08139,-0.08501 0.08139,-0.257737 v -0.08229 q -0.05155,0.08953 -0.132033,0.133842 -0.08049,0.04431 -0.192624,0.04431 -0.186293,0 -0.30024,-0.141981 -0.113946,-0.1419808 -0.113946,-0.3762042 0,-0.2351278 0.113946,-0.3771088 0.113947,-0.141981 0.30024,-0.141981 0.112138,0 0.192624,0.044313 0.08049,0.044313 0.132033,0.1338419 V 9.2425901 h 0.166398 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4462" />
+ <path
+ d="m 20.247853,9.3981362 q -0.02803,-0.016278 -0.0615,-0.023513 -0.03256,-0.00814 -0.07235,-0.00814 -0.141076,0 -0.217041,0.092242 -0.07506,0.091338 -0.07506,0.2631622 v 0.533559 H 19.654608 V 9.2425901 h 0.167302 v 0.1573548 q 0.05245,-0.092242 0.136555,-0.136555 0.0841,-0.045217 0.204381,-0.045217 0.01718,0 0.03798,0.00271 0.0208,0.00181 0.04612,0.00633 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4464" />
+ <path
+ d="m 20.776891,9.3592497 q -0.133842,0 -0.211615,0.1049031 -0.07777,0.1039989 -0.07777,0.2857707 0,0.1817719 0.07687,0.2866755 0.07777,0.103998 0.212519,0.103998 0.132938,0 0.210711,-0.104903 0.07777,-0.104903 0.07777,-0.2857705 0,-0.1799632 -0.07777,-0.2848663 -0.07777,-0.1058075 -0.210711,-0.1058075 z m 0,-0.1410767 q 0.217041,0 0.340935,0.1410767 0.123894,0.1410766 0.123894,0.3906738 0,0.2486928 -0.123894,0.3906735 -0.123894,0.141077 -0.340935,0.141077 -0.217945,0 -0.34184,-0.141077 -0.12299,-0.1419807 -0.12299,-0.3906735 0,-0.2495972 0.12299,-0.3906738 0.123895,-0.1410767 0.34184,-0.1410767 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4466" />
+ <path
+ d="M 21.499457,9.855731 V 9.2425901 h 0.166398 v 0.6068105 q 0,0.1437897 0.05607,0.2161364 0.05607,0.07144 0.168206,0.07144 0.134747,0 0.21252,-0.08591 0.07868,-0.085912 0.07868,-0.2342235 V 9.2425901 h 0.166398 v 1.0128579 h -0.166398 v -0.155546 q -0.06059,0.09224 -0.141077,0.137459 -0.07958,0.04431 -0.185389,0.04431 -0.174537,0 -0.264971,-0.108521 -0.09043,-0.10852 -0.09043,-0.317422 z m 0.418708,-0.637558 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4468" />
+ <path
+ d="m 22.85325,10.103519 v 0.537177 H 22.685948 V 9.2425901 h 0.167302 v 0.1537374 q 0.05245,-0.090434 0.132033,-0.1338419 0.08049,-0.044313 0.19172,-0.044313 0.184485,0 0.299336,0.1465027 0.115755,0.1465027 0.115755,0.3852478 0,0.2387451 -0.115755,0.3852475 -0.114851,0.146503 -0.299336,0.146503 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134747 z m 0.566115,-0.3535955 q 0,-0.1835805 -0.07596,-0.2875793 -0.07506,-0.1049032 -0.207093,-0.1049032 -0.132034,0 -0.207998,0.1049032 -0.07506,0.1039988 -0.07506,0.2875793 0,0.1835805 0.07506,0.2884835 0.07596,0.103999 0.207998,0.103999 0.132033,0 0.207093,-0.103999 0.07596,-0.104903 0.07596,-0.2884835 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4470" />
+ <path
+ d="M 18.646272,12.418624 V 12.9558 h -0.167303 v -1.398106 h 0.167303 v 0.153738 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.191719,-0.04431 0.184485,0 0.299336,0.146503 0.115755,0.146503 0.115755,0.385248 0,0.238745 -0.115755,0.385247 -0.114851,0.146503 -0.299336,0.146503 -0.111233,0 -0.191719,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.183581 -0.07596,-0.28758 -0.07506,-0.104903 -0.207094,-0.104903 -0.132033,0 -0.207997,0.104903 -0.07506,0.103999 -0.07506,0.28758 0,0.18358 0.07506,0.288483 0.07596,0.103999 0.207997,0.103999 0.132034,0 0.207094,-0.103999 0.07596,-0.104903 0.07596,-0.288483 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4472" />
+ <path
+ d="m 20.121246,12.06141 q -0.201667,0 -0.27944,0.04612 -0.07777,0.04612 -0.07777,0.157354 0,0.08862 0.05788,0.141077 0.05878,0.05155 0.159164,0.05155 0.138363,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.331892,-0.06873 v 0.577871 H 20.28674 v -0.153737 q -0.05697,0.09224 -0.141981,0.136555 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247788,-0.08682 -0.09134,-0.08772 -0.09134,-0.234224 0,-0.170919 0.113946,-0.257736 0.114851,-0.08682 0.34184,-0.08682 h 0.233319 v -0.01628 q 0,-0.114851 -0.07596,-0.177251 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169112,0.0208 -0.08229,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.177251,-0.05245 0.08591,-0.01809 0.167302,-0.01809 0.219754,0 0.328275,0.113947 0.10852,0.113946 0.10852,0.345457 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4474" />
+ <path
+ d="m 20.961376,11.270115 v 0.287579 h 0.342744 v 0.129321 h -0.342744 v 0.549837 q 0,0.123894 0.03346,0.159163 0.03437,0.03527 0.138364,0.03527 h 0.17092 v 0.139268 H 21.1332 q -0.192624,0 -0.265875,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 v -0.549837 h -0.122085 v -0.129321 h 0.122085 v -0.287579 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4476" />
+ <path
+ d="m 22.365812,11.95922 v 0.611332 h -0.166398 v -0.605906 q 0,-0.143789 -0.05607,-0.215232 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234224 v 0.572445 h -0.167303 v -1.407149 h 0.167303 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264067,0.108521 0.08953,0.107616 0.08953,0.317422 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4478" />
+ <path
+ d="m 23.345209,11.587537 v 0.157355 q -0.07054,-0.03617 -0.146502,-0.05426 -0.07597,-0.01809 -0.157355,-0.01809 -0.123894,0 -0.186293,0.03798 -0.0615,0.03798 -0.0615,0.113947 0,0.05788 0.04431,0.09134 0.04431,0.03256 0.178155,0.0624 l 0.05697,0.01266 q 0.17725,0.03798 0.251406,0.107616 0.07506,0.06873 0.07506,0.192624 0,0.141077 -0.112138,0.223371 -0.111234,0.0823 -0.306571,0.0823 -0.08139,0 -0.170015,-0.01628 -0.08772,-0.01537 -0.185389,-0.04703 V 12.36165 q 0.09224,0.04793 0.181772,0.07235 0.08953,0.02351 0.17725,0.02351 0.117564,0 0.180867,-0.03979 0.0633,-0.04069 0.0633,-0.113946 0,-0.06783 -0.04612,-0.103999 -0.04522,-0.03617 -0.199859,-0.06963 l -0.05788,-0.01357 q -0.154642,-0.03256 -0.223372,-0.09948 -0.06873,-0.06783 -0.06873,-0.185389 0,-0.142886 0.101286,-0.220659 0.101286,-0.07777 0.28758,-0.07777 0.09224,0 0.173632,0.01356 0.08139,0.01356 0.15012,0.04069 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4480" />
+ </g>
+ <g
+ aria-label=" group paths"
+ inkscape:transform-center-y="2.0156633"
+ style="font-size:1.85208333px;line-height:1.25;text-align:justify;opacity:1;fill:#000000;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4116">
+ <path
+ d="m 66.975265,9.7372628 q 0,-0.1808675 -0.07506,-0.2803447 -0.07416,-0.099477 -0.208901,-0.099477 -0.133842,0 -0.208902,0.099477 -0.07416,0.099477 -0.07416,0.2803447 0,0.1799631 0.07416,0.2794402 0.07506,0.09948 0.208902,0.09948 0.134746,0 0.208901,-0.09948 0.07506,-0.099477 0.07506,-0.2794402 z m 0.166399,0.3924822 q 0,0.258641 -0.114851,0.384344 -0.114851,0.126607 -0.351788,0.126607 -0.08772,0 -0.165493,-0.01356 -0.07777,-0.01266 -0.151025,-0.03979 v -0.161876 q 0.07325,0.03979 0.144694,0.05878 0.07144,0.01899 0.145599,0.01899 0.163685,0 0.245075,-0.08591 0.08139,-0.08501 0.08139,-0.257737 v -0.08229 q -0.05155,0.08953 -0.132033,0.133842 -0.08049,0.04431 -0.192624,0.04431 -0.186293,0 -0.30024,-0.141981 -0.113946,-0.1419808 -0.113946,-0.3762042 0,-0.2351278 0.113946,-0.3771088 0.113947,-0.141981 0.30024,-0.141981 0.112138,0 0.192624,0.044313 0.08049,0.044313 0.132033,0.1338419 V 9.2425901 h 0.166399 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4441" />
+ <path
+ d="m 68.071323,9.3981362 q -0.02804,-0.016278 -0.0615,-0.023513 -0.03256,-0.00814 -0.07235,-0.00814 -0.141077,0 -0.217041,0.092242 -0.07506,0.091338 -0.07506,0.2631622 v 0.533559 H 67.478077 V 9.2425901 h 0.167303 v 0.1573548 q 0.05245,-0.092242 0.136555,-0.136555 0.0841,-0.045217 0.20438,-0.045217 0.01718,0 0.03798,0.00271 0.0208,0.00181 0.04612,0.00633 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4443" />
+ <path
+ d="m 68.60036,9.3592497 q -0.133842,0 -0.211615,0.1049031 -0.07777,0.1039989 -0.07777,0.2857707 0,0.1817719 0.07687,0.2866755 0.07777,0.103998 0.212519,0.103998 0.132938,0 0.210711,-0.104903 0.07777,-0.104903 0.07777,-0.2857705 0,-0.1799632 -0.07777,-0.2848663 -0.07777,-0.1058075 -0.210711,-0.1058075 z m 0,-0.1410767 q 0.217041,0 0.340935,0.1410767 0.123895,0.1410766 0.123895,0.3906738 0,0.2486928 -0.123895,0.3906735 -0.123894,0.141077 -0.340935,0.141077 -0.217945,0 -0.341839,-0.141077 -0.12299,-0.1419807 -0.12299,-0.3906735 0,-0.2495972 0.12299,-0.3906738 Q 68.382415,9.218173 68.60036,9.218173 Z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4445" />
+ <path
+ d="M 69.322926,9.855731 V 9.2425901 h 0.166398 v 0.6068105 q 0,0.1437897 0.05607,0.2161364 0.05607,0.07144 0.168207,0.07144 0.134746,0 0.212519,-0.08591 0.07868,-0.085912 0.07868,-0.2342235 V 9.2425901 h 0.166398 v 1.0128579 h -0.166398 v -0.155546 q -0.06059,0.09224 -0.141076,0.137459 -0.07958,0.04431 -0.18539,0.04431 -0.174537,0 -0.264971,-0.108521 -0.09043,-0.10852 -0.09043,-0.317422 z m 0.418708,-0.637558 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4447" />
+ <path
+ d="m 70.676719,10.103519 v 0.537177 H 70.509417 V 9.2425901 h 0.167302 v 0.1537374 q 0.05245,-0.090434 0.132033,-0.1338419 0.08049,-0.044313 0.19172,-0.044313 0.184485,0 0.299336,0.1465027 0.115755,0.1465027 0.115755,0.3852478 0,0.2387451 -0.115755,0.3852475 -0.114851,0.146503 -0.299336,0.146503 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134747 z m 0.566115,-0.3535955 q 0,-0.1835805 -0.07596,-0.2875793 -0.07506,-0.1049032 -0.207093,-0.1049032 -0.132034,0 -0.207998,0.1049032 -0.07506,0.1039988 -0.07506,0.2875793 0,0.1835805 0.07506,0.2884835 0.07596,0.103999 0.207998,0.103999 0.132033,0 0.207093,-0.103999 0.07596,-0.104903 0.07596,-0.2884835 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4449" />
+ <path
+ d="M 66.469741,12.418624 V 12.9558 h -0.167303 v -1.398106 h 0.167303 v 0.153738 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.19172,-0.04431 0.184485,0 0.299335,0.146503 0.115756,0.146503 0.115756,0.385248 0,0.238745 -0.115756,0.385247 -0.11485,0.146503 -0.299335,0.146503 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.183581 -0.07596,-0.28758 -0.07506,-0.104903 -0.207094,-0.104903 -0.132033,0 -0.207997,0.104903 -0.07506,0.103999 -0.07506,0.28758 0,0.18358 0.07506,0.288483 0.07596,0.103999 0.207997,0.103999 0.132034,0 0.207094,-0.103999 0.07596,-0.104903 0.07596,-0.288483 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4451" />
+ <path
+ d="m 67.944715,12.06141 q -0.201667,0 -0.27944,0.04612 -0.07777,0.04612 -0.07777,0.157354 0,0.08862 0.05788,0.141077 0.05878,0.05155 0.159163,0.05155 0.138364,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.331892,-0.06873 v 0.577871 h -0.166398 v -0.153737 q -0.05697,0.09224 -0.141981,0.136555 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247788,-0.08682 -0.09134,-0.08772 -0.09134,-0.234224 0,-0.170919 0.113946,-0.257736 0.114851,-0.08682 0.34184,-0.08682 h 0.233319 v -0.01628 q 0,-0.114851 -0.07596,-0.177251 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.0823,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.17725,-0.05245 0.08591,-0.01809 0.167302,-0.01809 0.219754,0 0.328275,0.113947 0.10852,0.113946 0.10852,0.345457 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4453" />
+ <path
+ d="m 68.784845,11.270115 v 0.287579 h 0.342744 v 0.129321 h -0.342744 v 0.549837 q 0,0.123894 0.03346,0.159163 0.03437,0.03527 0.138364,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.192624,0 -0.265875,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 v -0.549837 h -0.122085 v -0.129321 h 0.122085 v -0.287579 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4455" />
+ <path
+ d="m 70.189281,11.95922 v 0.611332 h -0.166398 v -0.605906 q 0,-0.143789 -0.05607,-0.215232 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234224 v 0.572445 h -0.167302 v -1.407149 h 0.167302 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264067,0.108521 0.08953,0.107616 0.08953,0.317422 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4457" />
+ <path
+ d="m 71.168679,11.587537 v 0.157355 q -0.07054,-0.03617 -0.146503,-0.05426 -0.07596,-0.01809 -0.157355,-0.01809 -0.123894,0 -0.186293,0.03798 -0.06149,0.03798 -0.06149,0.113947 0,0.05788 0.04431,0.09134 0.04431,0.03256 0.178155,0.0624 l 0.05697,0.01266 q 0.17725,0.03798 0.251406,0.107616 0.07506,0.06873 0.07506,0.192624 0,0.141077 -0.112138,0.223371 -0.111233,0.0823 -0.30657,0.0823 -0.08139,0 -0.170016,-0.01628 -0.08772,-0.01537 -0.185389,-0.04703 V 12.36165 q 0.09224,0.04793 0.181772,0.07235 0.08953,0.02351 0.17725,0.02351 0.117564,0 0.180867,-0.03979 0.0633,-0.04069 0.0633,-0.113946 0,-0.06783 -0.04612,-0.103999 -0.04522,-0.03617 -0.199859,-0.06963 l -0.05788,-0.01357 q -0.154642,-0.03256 -0.223372,-0.09948 -0.06873,-0.06783 -0.06873,-0.185389 0,-0.142886 0.101285,-0.220659 0.101286,-0.07777 0.28758,-0.07777 0.09224,0 0.173633,0.01356 0.08139,0.01356 0.15012,0.04069 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4459" />
+ </g>
+ <g
+ aria-label=" group paths"
+ inkscape:transform-center-y="2.0156633"
+ style="font-size:1.85208333px;line-height:1.25;text-align:justify;opacity:1;fill:#000000;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4042">
+ <path
+ d="m 114.79874,9.7372628 q 0,-0.1808675 -0.0751,-0.2803447 -0.0742,-0.099477 -0.20891,-0.099477 -0.13384,0 -0.2089,0.099477 -0.0742,0.099477 -0.0742,0.2803447 0,0.1799631 0.0742,0.2794402 0.0751,0.09948 0.2089,0.09948 0.13475,0 0.20891,-0.09948 0.0751,-0.099477 0.0751,-0.2794402 z m 0.16639,0.3924822 q 0,0.258641 -0.11485,0.384344 -0.11485,0.126607 -0.35178,0.126607 -0.0877,0 -0.1655,-0.01356 -0.0778,-0.01266 -0.15102,-0.03979 v -0.161876 q 0.0733,0.03979 0.14469,0.05878 0.0715,0.01899 0.1456,0.01899 0.16369,0 0.24508,-0.08591 0.0814,-0.08501 0.0814,-0.257737 v -0.08229 q -0.0515,0.08953 -0.13204,0.133842 -0.0805,0.04431 -0.19262,0.04431 -0.18629,0 -0.30024,-0.141981 -0.11395,-0.1419808 -0.11395,-0.3762042 0,-0.2351278 0.11395,-0.3771088 0.11395,-0.141981 0.30024,-0.141981 0.11214,0 0.19262,0.044313 0.0805,0.044313 0.13204,0.1338419 V 9.2425901 h 0.16639 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4420" />
+ <path
+ d="m 115.89479,9.3981362 q -0.028,-0.016278 -0.0615,-0.023513 -0.0326,-0.00814 -0.0724,-0.00814 -0.14107,0 -0.21704,0.092242 -0.0751,0.091338 -0.0751,0.2631622 v 0.533559 h -0.1673 V 9.2425901 h 0.1673 v 0.1573548 q 0.0524,-0.092242 0.13656,-0.136555 0.0841,-0.045217 0.20438,-0.045217 0.0172,0 0.038,0.00271 0.0208,0.00181 0.0461,0.00633 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4422" />
+ <path
+ d="m 116.42383,9.3592497 q -0.13384,0 -0.21161,0.1049031 -0.0778,0.1039989 -0.0778,0.2857707 0,0.1817719 0.0769,0.2866755 0.0778,0.103998 0.21252,0.103998 0.13294,0 0.21071,-0.104903 0.0778,-0.104903 0.0778,-0.2857705 0,-0.1799632 -0.0778,-0.2848663 -0.0778,-0.1058075 -0.21071,-0.1058075 z m 0,-0.1410767 q 0.21704,0 0.34094,0.1410767 0.12389,0.1410766 0.12389,0.3906738 0,0.2486928 -0.12389,0.3906735 -0.1239,0.141077 -0.34094,0.141077 -0.21794,0 -0.34184,-0.141077 -0.12299,-0.1419807 -0.12299,-0.3906735 0,-0.2495972 0.12299,-0.3906738 0.1239,-0.1410767 0.34184,-0.1410767 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4424" />
+ <path
+ d="M 117.1464,9.855731 V 9.2425901 h 0.16639 v 0.6068105 q 0,0.1437897 0.0561,0.2161364 0.0561,0.07144 0.16821,0.07144 0.13475,0 0.21252,-0.08591 0.0787,-0.085912 0.0787,-0.2342235 V 9.2425901 h 0.1664 v 1.0128579 h -0.1664 v -0.155546 q -0.0606,0.09224 -0.14108,0.137459 -0.0796,0.04431 -0.18539,0.04431 -0.17454,0 -0.26497,-0.108521 -0.0904,-0.10852 -0.0904,-0.317422 z m 0.41871,-0.637558 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4426" />
+ <path
+ d="m 118.50019,10.103519 v 0.537177 h -0.1673 V 9.2425901 h 0.1673 v 0.1537374 q 0.0524,-0.090434 0.13203,-0.1338419 0.0805,-0.044313 0.19172,-0.044313 0.18449,0 0.29934,0.1465027 0.11575,0.1465027 0.11575,0.3852478 0,0.2387451 -0.11575,0.3852475 -0.11485,0.146503 -0.29934,0.146503 -0.11123,0 -0.19172,-0.04341 -0.0796,-0.04431 -0.13203,-0.134747 z m 0.56612,-0.3535955 q 0,-0.1835805 -0.076,-0.2875793 -0.0751,-0.1049032 -0.20709,-0.1049032 -0.13204,0 -0.208,0.1049032 -0.0751,0.1039988 -0.0751,0.2875793 0,0.1835805 0.0751,0.2884835 0.076,0.103999 0.208,0.103999 0.13203,0 0.20709,-0.103999 0.076,-0.104903 0.076,-0.2884835 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4428" />
+ <path
+ d="M 114.29321,12.418624 V 12.9558 h -0.1673 v -1.398106 h 0.1673 v 0.153738 q 0.0524,-0.09043 0.13204,-0.133842 0.0805,-0.04431 0.19171,-0.04431 0.18449,0 0.29934,0.146503 0.11576,0.146503 0.11576,0.385248 0,0.238745 -0.11576,0.385247 -0.11485,0.146503 -0.29934,0.146503 -0.11123,0 -0.19171,-0.04341 -0.0796,-0.04431 -0.13204,-0.134746 z m 0.56612,-0.353596 q 0,-0.183581 -0.076,-0.28758 -0.0751,-0.104903 -0.20709,-0.104903 -0.13203,0 -0.208,0.104903 -0.0751,0.103999 -0.0751,0.28758 0,0.18358 0.0751,0.288483 0.076,0.103999 0.208,0.103999 0.13203,0 0.20709,-0.103999 0.076,-0.104903 0.076,-0.288483 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4430" />
+ <path
+ d="m 115.76819,12.06141 q -0.20167,0 -0.27944,0.04612 -0.0778,0.04612 -0.0778,0.157354 0,0.08862 0.0579,0.141077 0.0588,0.05155 0.15916,0.05155 0.13837,0 0.22157,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.33189,-0.06873 v 0.577871 h -0.1664 v -0.153737 q -0.057,0.09224 -0.14198,0.136555 -0.085,0.04341 -0.208,0.04341 -0.15554,0 -0.24779,-0.08682 -0.0913,-0.08772 -0.0913,-0.234224 0,-0.170919 0.11395,-0.257736 0.11485,-0.08682 0.34184,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.076,-0.177251 -0.0751,-0.0633 -0.21162,-0.0633 -0.0868,0 -0.16911,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.0913,-0.03527 0.17725,-0.05245 0.0859,-0.01809 0.1673,-0.01809 0.21976,0 0.32828,0.113947 0.10852,0.113946 0.10852,0.345457 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4432" />
+ <path
+ d="m 116.60832,11.270115 v 0.287579 h 0.34274 v 0.129321 h -0.34274 v 0.549837 q 0,0.123894 0.0335,0.159163 0.0344,0.03527 0.13836,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.19262,0 -0.26588,-0.07144 -0.0732,-0.07235 -0.0732,-0.262258 v -0.549837 h -0.12208 v -0.129321 h 0.12208 v -0.287579 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4434" />
+ <path
+ d="m 118.01275,11.95922 v 0.611332 h -0.1664 v -0.605906 q 0,-0.143789 -0.0561,-0.215232 -0.0561,-0.07144 -0.16821,-0.07144 -0.13475,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234224 v 0.572445 h -0.16731 v -1.407149 h 0.16731 v 0.551646 q 0.0597,-0.09134 0.14017,-0.136555 0.0814,-0.04522 0.1872,-0.04522 0.17453,0 0.26406,0.108521 0.0895,0.107616 0.0895,0.317422 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4436" />
+ <path
+ d="m 118.99215,11.587537 v 0.157355 q -0.0705,-0.03617 -0.1465,-0.05426 -0.076,-0.01809 -0.15736,-0.01809 -0.12389,0 -0.18629,0.03798 -0.0615,0.03798 -0.0615,0.113947 0,0.05788 0.0443,0.09134 0.0443,0.03256 0.17815,0.0624 l 0.057,0.01266 q 0.17725,0.03798 0.25141,0.107616 0.0751,0.06873 0.0751,0.192624 0,0.141077 -0.11214,0.223371 -0.11123,0.0823 -0.30657,0.0823 -0.0814,0 -0.17001,-0.01628 -0.0877,-0.01537 -0.18539,-0.04703 V 12.36165 q 0.0922,0.04793 0.18177,0.07235 0.0895,0.02351 0.17725,0.02351 0.11756,0 0.18087,-0.03979 0.0633,-0.04069 0.0633,-0.113946 0,-0.06783 -0.0461,-0.103999 -0.0452,-0.03617 -0.19986,-0.06963 l -0.0579,-0.01357 q -0.15464,-0.03256 -0.22337,-0.09948 -0.0687,-0.06783 -0.0687,-0.185389 0,-0.142886 0.10129,-0.220659 0.10128,-0.07777 0.28758,-0.07777 0.0922,0 0.17363,0.01356 0.0814,0.01356 0.15012,0.04069 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4438" />
+ </g>
+ <g
+ aria-label="group with shape"
+ style="font-size:1.85208333px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#ffffff;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4100">
+ <path
+ d="m 31.157854,8.5797112 q 0,-0.1808676 -0.07506,-0.2803447 -0.07416,-0.099477 -0.208902,-0.099477 -0.133841,0 -0.208902,0.099477 -0.07416,0.099477 -0.07416,0.2803447 0,0.1799631 0.07416,0.2794403 0.07506,0.099477 0.208902,0.099477 0.134747,0 0.208902,-0.099477 0.07506,-0.099477 0.07506,-0.2794403 z m 0.166399,0.3924825 q 0,0.2586405 -0.114851,0.3843434 -0.114851,0.1266073 -0.351788,0.1266073 -0.08772,0 -0.165493,-0.013565 -0.07777,-0.012661 -0.151025,-0.039791 V 9.267912 q 0.07325,0.039791 0.144694,0.058782 0.07144,0.018991 0.145599,0.018991 0.163685,0 0.245075,-0.085912 0.08139,-0.085008 0.08139,-0.2577362 v -0.082295 q -0.05155,0.089529 -0.132033,0.1338419 -0.08049,0.044313 -0.192624,0.044313 -0.186293,0 -0.30024,-0.141981 -0.113946,-0.141981 -0.113946,-0.3762044 0,-0.2351278 0.113946,-0.3771088 0.113947,-0.141981 0.30024,-0.141981 0.112138,0 0.192624,0.044313 0.08049,0.044313 0.132033,0.133842 V 8.0850385 h 0.166399 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4391" />
+ <path
+ d="m 32.253912,8.2405846 q -0.02804,-0.016278 -0.0615,-0.023513 -0.03256,-0.00814 -0.07235,-0.00814 -0.141077,0 -0.217041,0.092242 -0.07506,0.091338 -0.07506,0.2631622 V 9.0978966 H 31.660666 V 8.0850385 h 0.167303 v 0.1573547 q 0.05245,-0.092242 0.136555,-0.1365549 0.0841,-0.045217 0.20438,-0.045217 0.01718,0 0.03798,0.00271 0.0208,0.00181 0.04612,0.00633 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4393" />
+ <path
+ d="m 32.782949,8.2016981 q -0.133842,0 -0.211615,0.1049031 -0.07777,0.1039988 -0.07777,0.2857707 0,0.1817718 0.07687,0.286675 0.07777,0.1039988 0.212519,0.1039988 0.132938,0 0.210711,-0.1049032 0.07777,-0.1049031 0.07777,-0.2857706 0,-0.1799632 -0.07777,-0.2848664 -0.07777,-0.1058074 -0.210711,-0.1058074 z m 0,-0.1410767 q 0.217041,0 0.340935,0.1410767 0.123895,0.1410766 0.123895,0.3906738 0,0.2486928 -0.123895,0.3906738 -0.123894,0.1410767 -0.340935,0.1410767 -0.217945,0 -0.34184,-0.1410767 -0.122989,-0.141981 -0.122989,-0.3906738 0,-0.2495972 0.122989,-0.3906738 0.123895,-0.1410767 0.34184,-0.1410767 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4395" />
+ <path
+ d="M 33.505515,8.6981794 V 8.0850385 h 0.166398 V 8.691849 q 0,0.1437897 0.05607,0.2161367 0.05607,0.071443 0.168207,0.071443 0.134746,0 0.212519,-0.085912 0.07868,-0.085912 0.07868,-0.2342234 V 8.0850385 h 0.166398 V 9.0978966 H 34.187385 V 8.9423505 q -0.06059,0.092242 -0.141076,0.1374593 -0.07958,0.044313 -0.18539,0.044313 -0.174537,0 -0.264971,-0.1085205 -0.09043,-0.1085205 -0.09043,-0.3174225 z m 0.418708,-0.637558 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4397" />
+ <path
+ d="M 34.859308,8.9459679 V 9.4831444 H 34.692006 V 8.0850385 h 0.167302 v 0.1537374 q 0.05245,-0.090434 0.132033,-0.133842 0.08049,-0.044313 0.19172,-0.044313 0.184485,0 0.299336,0.1465027 0.115755,0.1465027 0.115755,0.3852478 0,0.2387451 -0.115755,0.3852478 -0.114851,0.1465027 -0.299336,0.1465027 -0.111234,0 -0.19172,-0.043408 -0.07958,-0.044313 -0.132033,-0.1347463 z m 0.566115,-0.353596 q 0,-0.1835805 -0.07596,-0.2875794 -0.07506,-0.1049031 -0.207093,-0.1049031 -0.132034,0 -0.207998,0.1049031 -0.07506,0.1039989 -0.07506,0.2875794 0,0.1835805 0.07506,0.2884837 0.07596,0.1039988 0.207998,0.1039988 0.132033,0 0.207093,-0.1039988 0.07596,-0.1049032 0.07596,-0.2884837 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4399" />
+ <path
+ d="m 31.119872,10.400143 h 0.166398 l 0.207998,0.790391 0.207093,-0.790391 h 0.196242 l 0.207997,0.790391 0.207094,-0.790391 h 0.166398 l -0.264971,1.012858 h -0.196242 l -0.217945,-0.830182 -0.21885,0.830182 h -0.196241 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4401" />
+ <path
+ d="m 32.732306,10.400143 h 0.166398 v 1.012858 h -0.166398 z m 0,-0.394292 h 0.166398 v 0.210711 h -0.166398 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4403" />
+ <path
+ d="m 33.410559,10.112563 v 0.28758 h 0.342744 v 0.12932 H 33.410559 V 11.0793 q 0,0.123894 0.03346,0.159164 0.03437,0.03527 0.138363,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.192624,0 -0.265875,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 v -0.549837 h -0.122086 v -0.12932 h 0.122086 v -0.28758 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4405" />
+ <path
+ d="m 34.814996,10.801669 v 0.611332 h -0.166399 v -0.605906 q 0,-0.14379 -0.05607,-0.215233 -0.05607,-0.07144 -0.168206,-0.07144 -0.134747,0 -0.21252,0.08591 -0.07777,0.08591 -0.07777,0.234223 v 0.572446 h -0.167302 v -1.40715 h 0.167302 v 0.551646 q 0.05969,-0.09134 0.140173,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264066,0.10852 0.08953,0.107616 0.08953,0.317423 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4407" />
+ <path
+ d="m 31.032152,12.74509 v 0.157355 q -0.07054,-0.03617 -0.146503,-0.05426 -0.07596,-0.01809 -0.157355,-0.01809 -0.123894,0 -0.186293,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.04431,0.09134 0.04431,0.03256 0.178155,0.0624 l 0.05697,0.01266 q 0.17725,0.03798 0.251406,0.107616 0.07506,0.06873 0.07506,0.192624 0,0.141076 -0.112138,0.223371 -0.111234,0.0823 -0.30657,0.0823 -0.08139,0 -0.170016,-0.01628 -0.08772,-0.01537 -0.185389,-0.04703 v -0.171824 q 0.09224,0.04793 0.181772,0.07235 0.08953,0.02351 0.17725,0.02351 0.117564,0 0.180867,-0.03979 0.0633,-0.04069 0.0633,-0.113947 0,-0.06783 -0.04612,-0.103999 -0.04522,-0.03617 -0.199859,-0.06963 l -0.05788,-0.01356 q -0.154642,-0.03256 -0.223372,-0.09948 -0.06873,-0.06782 -0.06873,-0.185389 0,-0.142885 0.101285,-0.220658 0.101286,-0.07777 0.28758,-0.07777 0.09224,0 0.173633,0.01356 0.08139,0.01356 0.15012,0.04069 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4409" />
+ <path
+ d="m 32.194225,13.116773 v 0.611332 h -0.166398 v -0.605906 q 0,-0.14379 -0.05607,-0.215233 -0.05607,-0.07144 -0.168206,-0.07144 -0.134747,0 -0.21252,0.08591 -0.07777,0.08591 -0.07777,0.234223 v 0.572446 h -0.167302 v -1.407149 h 0.167302 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264067,0.10852 0.08953,0.107616 0.08953,0.317423 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4411" />
+ <path
+ d="m 32.988234,13.218963 q -0.201668,0 -0.279441,0.04612 -0.07777,0.04612 -0.07777,0.157355 0,0.08862 0.05788,0.141076 0.05878,0.05155 0.159163,0.05155 0.138364,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261353 v -0.03708 z m 0.331892,-0.06873 v 0.577872 h -0.166398 v -0.153737 q -0.05697,0.09224 -0.141981,0.136554 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247789,-0.08682 -0.09134,-0.08772 -0.09134,-0.234223 0,-0.17092 0.113947,-0.257736 0.114851,-0.08682 0.341839,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.07597,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.0823,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.17725,-0.05245 0.08591,-0.01809 0.167303,-0.01809 0.219754,0 0.328274,0.113946 0.108521,0.113947 0.108521,0.345457 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4413" />
+ <path
+ d="m 33.824746,13.576176 v 0.537177 h -0.167303 v -1.398106 h 0.167303 v 0.153737 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.19172,-0.04431 0.184485,0 0.299335,0.146502 0.115756,0.146503 0.115756,0.385248 0,0.238745 -0.115756,0.385248 -0.11485,0.146503 -0.299335,0.146503 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.18358 -0.07596,-0.287579 -0.07506,-0.104903 -0.207094,-0.104903 -0.132033,0 -0.207997,0.104903 -0.07506,0.103999 -0.07506,0.287579 0,0.183581 0.07506,0.288484 0.07596,0.103999 0.207997,0.103999 0.132034,0 0.207094,-0.103999 0.07596,-0.104903 0.07596,-0.288484 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4415" />
+ <path
+ d="m 35.705768,13.180076 v 0.08139 h -0.76507 q 0.01085,0.171824 0.103095,0.262258 0.09315,0.08953 0.25864,0.08953 0.09586,0 0.18539,-0.02351 0.09043,-0.02351 0.179059,-0.07054 v 0.157355 q -0.08953,0.03798 -0.183581,0.05788 -0.09405,0.0199 -0.190815,0.0199 -0.242363,0 -0.384344,-0.141077 -0.141076,-0.141077 -0.141076,-0.38163 0,-0.248693 0.133842,-0.394292 0.134746,-0.146502 0.362639,-0.146502 0.20438,0 0.322848,0.132033 0.119373,0.131129 0.119373,0.357213 z m -0.166398,-0.04883 q -0.0018,-0.136555 -0.07687,-0.217945 -0.07416,-0.08139 -0.197145,-0.08139 -0.139268,0 -0.223372,0.07868 -0.0832,0.07868 -0.09586,0.221562 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.2"
+ id="path4417" />
+ </g>
+ <g
+ aria-label="group with shape"
+ style="font-size:1.85208333px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4124">
+ <path
+ d="m 78.981322,8.5797112 q 0,-0.1808676 -0.07506,-0.2803447 -0.07416,-0.099477 -0.208902,-0.099477 -0.133842,0 -0.208902,0.099477 -0.07416,0.099477 -0.07416,0.2803447 0,0.1799631 0.07416,0.2794403 0.07506,0.099477 0.208902,0.099477 0.134746,0 0.208902,-0.099477 0.07506,-0.099477 0.07506,-0.2794403 z m 0.166398,0.3924825 q 0,0.2586405 -0.114851,0.3843434 -0.114851,0.1266073 -0.351787,0.1266073 -0.08772,0 -0.165494,-0.013565 -0.07777,-0.012661 -0.151024,-0.039791 V 9.267912 q 0.07325,0.039791 0.144694,0.058782 0.07144,0.018991 0.145598,0.018991 0.163685,0 0.245075,-0.085912 0.08139,-0.085008 0.08139,-0.2577362 v -0.082295 q -0.05155,0.089529 -0.132034,0.1338419 -0.08049,0.044313 -0.192623,0.044313 -0.186294,0 -0.300241,-0.141981 -0.113946,-0.141981 -0.113946,-0.3762044 0,-0.2351278 0.113946,-0.3771088 0.113947,-0.141981 0.300241,-0.141981 0.112137,0 0.192623,0.044313 0.08049,0.044313 0.132034,0.133842 V 8.0850385 h 0.166398 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4362" />
+ <path
+ d="m 80.077379,8.2405846 q -0.02803,-0.016278 -0.06149,-0.023513 -0.03256,-0.00814 -0.07235,-0.00814 -0.141077,0 -0.217041,0.092242 -0.07506,0.091338 -0.07506,0.2631622 V 9.0978966 H 79.484133 V 8.0850385 h 0.167303 v 0.1573547 q 0.05245,-0.092242 0.136555,-0.1365549 0.0841,-0.045217 0.20438,-0.045217 0.01718,0 0.03798,0.00271 0.0208,0.00181 0.04612,0.00633 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4364" />
+ <path
+ d="m 80.606416,8.2016981 q -0.133842,0 -0.211615,0.1049031 -0.07777,0.1039988 -0.07777,0.2857707 0,0.1817718 0.07687,0.286675 0.07777,0.1039988 0.212519,0.1039988 0.132938,0 0.210711,-0.1049032 0.07777,-0.1049031 0.07777,-0.2857706 0,-0.1799632 -0.07777,-0.2848664 -0.07777,-0.1058074 -0.210711,-0.1058074 z m 0,-0.1410767 q 0.217041,0 0.340936,0.1410767 0.123894,0.1410766 0.123894,0.3906738 0,0.2486928 -0.123894,0.3906738 -0.123895,0.1410767 -0.340936,0.1410767 -0.217945,0 -0.341839,-0.1410767 -0.12299,-0.141981 -0.12299,-0.3906738 0,-0.2495972 0.12299,-0.3906738 0.123894,-0.1410767 0.341839,-0.1410767 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4366" />
+ <path
+ d="M 81.328982,8.6981794 V 8.0850385 H 81.49538 V 8.691849 q 0,0.1437897 0.05607,0.2161367 0.05607,0.071443 0.168207,0.071443 0.134746,0 0.212519,-0.085912 0.07868,-0.085912 0.07868,-0.2342234 V 8.0850385 h 0.166399 V 9.0978966 H 82.010852 V 8.9423505 q -0.06059,0.092242 -0.141076,0.1374593 -0.07958,0.044313 -0.185389,0.044313 -0.174538,0 -0.264971,-0.1085205 -0.09043,-0.1085205 -0.09043,-0.3174225 z m 0.418708,-0.637558 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4368" />
+ <path
+ d="M 82.682775,8.9459679 V 9.4831444 H 82.515473 V 8.0850385 h 0.167302 v 0.1537374 q 0.05245,-0.090434 0.132034,-0.133842 0.08049,-0.044313 0.191719,-0.044313 0.184485,0 0.299336,0.1465027 0.115755,0.1465027 0.115755,0.3852478 0,0.2387451 -0.115755,0.3852478 -0.114851,0.1465027 -0.299336,0.1465027 -0.111233,0 -0.191719,-0.043408 -0.07958,-0.044313 -0.132034,-0.1347463 z m 0.566116,-0.353596 q 0,-0.1835805 -0.07596,-0.2875794 -0.07506,-0.1049031 -0.207093,-0.1049031 -0.132033,0 -0.207998,0.1049031 -0.07506,0.1039989 -0.07506,0.2875794 0,0.1835805 0.07506,0.2884837 0.07596,0.1039988 0.207998,0.1039988 0.132033,0 0.207093,-0.1039988 0.07596,-0.1049032 0.07596,-0.2884837 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4370" />
+ <path
+ d="m 78.94334,10.400143 h 0.166398 l 0.207997,0.790391 0.207094,-0.790391 h 0.196241 l 0.207997,0.790391 0.207094,-0.790391 h 0.166398 l -0.264971,1.012858 h -0.196241 l -0.217946,-0.830182 -0.218849,0.830182 H 79.20831 Z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4372" />
+ <path
+ d="m 80.555773,10.400143 h 0.166398 v 1.012858 h -0.166398 z m 0,-0.394292 h 0.166398 v 0.210711 h -0.166398 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4374" />
+ <path
+ d="m 81.234026,10.112563 v 0.28758 h 0.342744 v 0.12932 H 81.234026 V 11.0793 q 0,0.123894 0.03346,0.159164 0.03436,0.03527 0.138364,0.03527 h 0.170919 v 0.139268 h -0.170919 q -0.192624,0 -0.265876,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 v -0.549837 h -0.122086 v -0.12932 h 0.122086 v -0.28758 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4376" />
+ <path
+ d="m 82.638463,10.801669 v 0.611332 h -0.166398 v -0.605906 q 0,-0.14379 -0.05607,-0.215233 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234223 v 0.572446 h -0.167303 v -1.40715 h 0.167303 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264066,0.10852 0.08953,0.107616 0.08953,0.317423 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4378" />
+ <path
+ d="m 78.855619,12.74509 v 0.157355 q -0.07054,-0.03617 -0.146503,-0.05426 -0.07596,-0.01809 -0.157355,-0.01809 -0.123894,0 -0.186293,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.04431,0.09134 0.04431,0.03256 0.178155,0.0624 l 0.05697,0.01266 q 0.17725,0.03798 0.251406,0.107616 0.07506,0.06873 0.07506,0.192624 0,0.141076 -0.112138,0.223371 -0.111233,0.0823 -0.30657,0.0823 -0.08139,0 -0.170016,-0.01628 -0.08772,-0.01537 -0.185389,-0.04703 v -0.171824 q 0.09224,0.04793 0.181772,0.07235 0.08953,0.02351 0.17725,0.02351 0.117564,0 0.180868,-0.03979 0.0633,-0.04069 0.0633,-0.113947 0,-0.06783 -0.04612,-0.103999 -0.04522,-0.03617 -0.199859,-0.06963 l -0.05788,-0.01356 q -0.154642,-0.03256 -0.223372,-0.09948 -0.06873,-0.06782 -0.06873,-0.185389 0,-0.142885 0.101286,-0.220658 0.101285,-0.07777 0.287579,-0.07777 0.09224,0 0.173633,0.01356 0.08139,0.01356 0.15012,0.04069 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4380" />
+ <path
+ d="m 80.017693,13.116773 v 0.611332 h -0.166399 v -0.605906 q 0,-0.14379 -0.05607,-0.215233 -0.05607,-0.07144 -0.168207,-0.07144 -0.134747,0 -0.21252,0.08591 -0.07777,0.08591 -0.07777,0.234223 v 0.572446 h -0.167302 v -1.407149 h 0.167302 v 0.551646 q 0.05969,-0.09134 0.140173,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264066,0.10852 0.08953,0.107616 0.08953,0.317423 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4382" />
+ <path
+ d="m 80.811701,13.218963 q -0.201667,0 -0.27944,0.04612 -0.07777,0.04612 -0.07777,0.157355 0,0.08862 0.05788,0.141076 0.05878,0.05155 0.159164,0.05155 0.138363,0 0.221562,-0.09767 0.0841,-0.09857 0.0841,-0.261353 v -0.03708 z m 0.331892,-0.06873 v 0.577872 h -0.166398 v -0.153737 q -0.05697,0.09224 -0.141981,0.136554 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247788,-0.08682 -0.09134,-0.08772 -0.09134,-0.234223 0,-0.17092 0.113946,-0.257736 0.114851,-0.08682 0.34184,-0.08682 h 0.233319 v -0.01628 q 0,-0.114851 -0.07596,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.08229,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.17725,-0.05245 0.08591,-0.01809 0.167303,-0.01809 0.219754,0 0.328274,0.113946 0.108521,0.113947 0.108521,0.345457 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4384" />
+ <path
+ d="m 81.648213,13.576176 v 0.537177 h -0.167302 v -1.398106 h 0.167302 v 0.153737 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.19172,-0.04431 0.184485,0 0.299336,0.146502 0.115755,0.146503 0.115755,0.385248 0,0.238745 -0.115755,0.385248 -0.114851,0.146503 -0.299336,0.146503 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.18358 -0.07596,-0.287579 -0.07506,-0.104903 -0.207093,-0.104903 -0.132034,0 -0.207998,0.104903 -0.07506,0.103999 -0.07506,0.287579 0,0.183581 0.07506,0.288484 0.07596,0.103999 0.207998,0.103999 0.132033,0 0.207093,-0.103999 0.07596,-0.104903 0.07596,-0.288484 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4386" />
+ <path
+ d="m 83.529235,13.180076 v 0.08139 h -0.765069 q 0.01085,0.171824 0.103094,0.262258 0.09315,0.08953 0.258641,0.08953 0.09586,0 0.185389,-0.02351 0.09043,-0.02351 0.179059,-0.07054 v 0.157355 q -0.08953,0.03798 -0.183581,0.05788 -0.09405,0.0199 -0.190815,0.0199 -0.242362,0 -0.384343,-0.141077 -0.141077,-0.141077 -0.141077,-0.38163 0,-0.248693 0.133842,-0.394292 0.134746,-0.146502 0.362639,-0.146502 0.20438,0 0.322849,0.132033 0.119372,0.131129 0.119372,0.357213 z m -0.166398,-0.04883 q -0.0018,-0.136555 -0.07687,-0.217945 -0.07415,-0.08139 -0.197145,-0.08139 -0.139268,0 -0.223371,0.07868 -0.0832,0.07868 -0.09586,0.221562 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4388" />
+ </g>
+ <g
+ aria-label="group with shape"
+ style="font-size:1.85208333px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4018">
+ <path
+ d="m 126.80479,8.5797112 q 0,-0.1808676 -0.0751,-0.2803447 -0.0742,-0.099477 -0.20891,-0.099477 -0.13384,0 -0.2089,0.099477 -0.0742,0.099477 -0.0742,0.2803447 0,0.1799631 0.0742,0.2794403 0.0751,0.099477 0.2089,0.099477 0.13475,0 0.20891,-0.099477 0.0751,-0.099477 0.0751,-0.2794403 z m 0.16639,0.3924825 q 0,0.2586405 -0.11485,0.3843434 -0.11485,0.1266073 -0.35178,0.1266073 -0.0877,0 -0.1655,-0.013565 -0.0778,-0.012661 -0.15102,-0.039791 V 9.267912 q 0.0733,0.039791 0.14469,0.058782 0.0714,0.018991 0.1456,0.018991 0.16368,0 0.24507,-0.085912 0.0814,-0.085008 0.0814,-0.2577362 v -0.082295 q -0.0515,0.089529 -0.13204,0.1338419 -0.0805,0.044313 -0.19262,0.044313 -0.1863,0 -0.30024,-0.141981 -0.11395,-0.141981 -0.11395,-0.3762044 0,-0.2351278 0.11395,-0.3771088 0.11394,-0.141981 0.30024,-0.141981 0.11214,0 0.19262,0.044313 0.0805,0.044313 0.13204,0.133842 V 8.0850385 h 0.16639 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4333" />
+ <path
+ d="m 127.90084,8.2405846 q -0.028,-0.016278 -0.0615,-0.023513 -0.0326,-0.00814 -0.0724,-0.00814 -0.14108,0 -0.21704,0.092242 -0.0751,0.091338 -0.0751,0.2631622 v 0.5335592 h -0.1673 V 8.0850385 h 0.1673 v 0.1573547 q 0.0524,-0.092242 0.13655,-0.1365549 0.0841,-0.045217 0.20438,-0.045217 0.0172,0 0.038,0.00271 0.0208,0.00181 0.0461,0.00633 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4335" />
+ <path
+ d="m 128.42988,8.2016981 q -0.13384,0 -0.21162,0.1049031 -0.0778,0.1039988 -0.0778,0.2857707 0,0.1817718 0.0769,0.286675 0.0778,0.1039988 0.21252,0.1039988 0.13294,0 0.21071,-0.1049032 0.0778,-0.1049031 0.0778,-0.2857706 0,-0.1799632 -0.0778,-0.2848664 -0.0778,-0.1058074 -0.21071,-0.1058074 z m 0,-0.1410767 q 0.21704,0 0.34094,0.1410767 0.12389,0.1410766 0.12389,0.3906738 0,0.2486928 -0.12389,0.3906738 -0.1239,0.1410767 -0.34094,0.1410767 -0.21795,0 -0.34184,-0.1410767 -0.12299,-0.141981 -0.12299,-0.3906738 0,-0.2495972 0.12299,-0.3906738 0.12389,-0.1410767 0.34184,-0.1410767 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4337" />
+ <path
+ d="M 129.15245,8.6981794 V 8.0850385 h 0.16639 V 8.691849 q 0,0.1437897 0.0561,0.2161367 0.0561,0.071443 0.16821,0.071443 0.13475,0 0.21252,-0.085912 0.0787,-0.085912 0.0787,-0.2342234 V 8.0850385 h 0.16639 v 1.0128581 h -0.16639 V 8.9423505 q -0.0606,0.092242 -0.14108,0.1374593 -0.0796,0.044313 -0.18539,0.044313 -0.17454,0 -0.26497,-0.1085205 -0.0904,-0.1085205 -0.0904,-0.3174225 z m 0.4187,-0.637558 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4339" />
+ <path
+ d="m 130.50624,8.9459679 v 0.5371765 h -0.1673 V 8.0850385 h 0.1673 v 0.1537374 q 0.0525,-0.090434 0.13203,-0.133842 0.0805,-0.044313 0.19172,-0.044313 0.18449,0 0.29934,0.1465027 0.11575,0.1465027 0.11575,0.3852478 0,0.2387451 -0.11575,0.3852478 -0.11485,0.1465027 -0.29934,0.1465027 -0.11123,0 -0.19172,-0.043408 -0.0796,-0.044313 -0.13203,-0.1347463 z m 0.56611,-0.353596 q 0,-0.1835805 -0.076,-0.2875794 -0.0751,-0.1049031 -0.20709,-0.1049031 -0.13204,0 -0.208,0.1049031 -0.0751,0.1039989 -0.0751,0.2875794 0,0.1835805 0.0751,0.2884837 0.076,0.1039988 0.208,0.1039988 0.13203,0 0.20709,-0.1039988 0.076,-0.1049032 0.076,-0.2884837 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4341" />
+ <path
+ d="m 126.7668,10.400143 h 0.1664 l 0.208,0.790391 0.20709,-0.790391 h 0.19624 l 0.208,0.790391 0.20709,-0.790391 h 0.1664 l -0.26497,1.012858 h -0.19624 l -0.21795,-0.830182 -0.21884,0.830182 h -0.19625 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4343" />
+ <path
+ d="m 128.37924,10.400143 h 0.16639 v 1.012858 h -0.16639 z m 0,-0.394292 h 0.16639 v 0.210711 h -0.16639 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4345" />
+ <path
+ d="m 129.05749,10.112563 v 0.28758 h 0.34274 v 0.12932 h -0.34274 V 11.0793 q 0,0.123894 0.0335,0.159164 0.0344,0.03527 0.13836,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.19262,0 -0.26587,-0.07144 -0.0733,-0.07235 -0.0733,-0.262258 v -0.549837 h -0.12209 v -0.12932 h 0.12209 v -0.28758 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4347" />
+ <path
+ d="m 130.46193,10.801669 v 0.611332 h -0.1664 v -0.605906 q 0,-0.14379 -0.0561,-0.215233 -0.0561,-0.07144 -0.16821,-0.07144 -0.13474,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234223 v 0.572446 h -0.1673 v -1.40715 h 0.1673 v 0.551646 q 0.0597,-0.09134 0.14017,-0.136555 0.0814,-0.04522 0.1872,-0.04522 0.17454,0 0.26407,0.10852 0.0895,0.107616 0.0895,0.317423 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4349" />
+ <path
+ d="m 126.67908,12.74509 v 0.157355 q -0.0705,-0.03617 -0.1465,-0.05426 -0.076,-0.01809 -0.15736,-0.01809 -0.12389,0 -0.18629,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.0443,0.09134 0.0443,0.03256 0.17815,0.0624 l 0.057,0.01266 q 0.17725,0.03798 0.2514,0.107616 0.0751,0.06873 0.0751,0.192624 0,0.141076 -0.11214,0.223371 -0.11123,0.0823 -0.30657,0.0823 -0.0814,0 -0.17001,-0.01628 -0.0877,-0.01537 -0.18539,-0.04703 v -0.171824 q 0.0922,0.04793 0.18177,0.07235 0.0895,0.02351 0.17725,0.02351 0.11757,0 0.18087,-0.03979 0.0633,-0.04069 0.0633,-0.113947 0,-0.06783 -0.0461,-0.103999 -0.0452,-0.03617 -0.19986,-0.06963 l -0.0579,-0.01356 q -0.15465,-0.03256 -0.22338,-0.09948 -0.0687,-0.06782 -0.0687,-0.185389 0,-0.142885 0.10129,-0.220658 0.10129,-0.07777 0.28758,-0.07777 0.0922,0 0.17363,0.01356 0.0814,0.01356 0.15012,0.04069 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4351" />
+ <path
+ d="m 127.84116,13.116773 v 0.611332 h -0.1664 v -0.605906 q 0,-0.14379 -0.0561,-0.215233 -0.0561,-0.07144 -0.16821,-0.07144 -0.13474,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234223 v 0.572446 h -0.1673 v -1.407149 h 0.1673 v 0.551646 q 0.0597,-0.09134 0.14017,-0.136555 0.0814,-0.04522 0.1872,-0.04522 0.17454,0 0.26407,0.10852 0.0895,0.107616 0.0895,0.317423 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4353" />
+ <path
+ d="m 128.63516,13.218963 q -0.20166,0 -0.27944,0.04612 -0.0778,0.04612 -0.0778,0.157355 0,0.08862 0.0579,0.141076 0.0588,0.05155 0.15916,0.05155 0.13837,0 0.22156,-0.09767 0.0841,-0.09857 0.0841,-0.261353 v -0.03708 z m 0.3319,-0.06873 v 0.577872 h -0.1664 v -0.153737 q -0.057,0.09224 -0.14198,0.136554 -0.085,0.04341 -0.208,0.04341 -0.15555,0 -0.24779,-0.08682 -0.0913,-0.08772 -0.0913,-0.234223 0,-0.17092 0.11395,-0.257736 0.11485,-0.08682 0.34184,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.076,-0.17725 -0.0751,-0.0633 -0.21161,-0.0633 -0.0868,0 -0.16911,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.0913,-0.03527 0.17725,-0.05245 0.0859,-0.01809 0.1673,-0.01809 0.21976,0 0.32828,0.113946 0.10852,0.113947 0.10852,0.345457 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4355" />
+ <path
+ d="m 129.47168,13.576176 v 0.537177 h -0.16731 v -1.398106 h 0.16731 v 0.153737 q 0.0525,-0.09043 0.13203,-0.133842 0.0805,-0.04431 0.19172,-0.04431 0.18448,0 0.29934,0.146502 0.11575,0.146503 0.11575,0.385248 0,0.238745 -0.11575,0.385248 -0.11486,0.146503 -0.29934,0.146503 -0.11123,0 -0.19172,-0.04341 -0.0796,-0.04431 -0.13203,-0.134746 z m 0.56611,-0.353596 q 0,-0.18358 -0.076,-0.287579 -0.0751,-0.104903 -0.2071,-0.104903 -0.13203,0 -0.20799,0.104903 -0.0751,0.103999 -0.0751,0.287579 0,0.183581 0.0751,0.288484 0.076,0.103999 0.20799,0.103999 0.13204,0 0.2071,-0.103999 0.076,-0.104903 0.076,-0.288484 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4357" />
+ <path
+ d="m 131.3527,13.180076 v 0.08139 h -0.76507 q 0.0109,0.171824 0.10309,0.262258 0.0932,0.08953 0.25864,0.08953 0.0959,0 0.18539,-0.02351 0.0904,-0.02351 0.17906,-0.07054 v 0.157355 q -0.0895,0.03798 -0.18358,0.05788 -0.0941,0.0199 -0.19081,0.0199 -0.24237,0 -0.38435,-0.141077 -0.14107,-0.141077 -0.14107,-0.38163 0,-0.248693 0.13384,-0.394292 0.13474,-0.146502 0.36264,-0.146502 0.20438,0 0.32285,0.132033 0.11937,0.131129 0.11937,0.357213 z m -0.1664,-0.04883 q -0.002,-0.136555 -0.0769,-0.217945 -0.0742,-0.08139 -0.19714,-0.08139 -0.13927,0 -0.22338,0.07868 -0.0832,0.07868 -0.0958,0.221562 z"
+ style="font-size:1.85208333px;text-align:center;text-anchor:middle;stroke-width:0.2"
+ id="path4359" />
+ </g>
+ <g
+ aria-label="path"
+ style="font-size:1.85208333px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#ffffff;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4104">
+ <path
+ d="m 43.188783,11.446009 v 0.537176 H 43.021481 V 10.58508 h 0.167302 v 0.153737 q 0.05245,-0.09043 0.132034,-0.133842 0.08049,-0.04431 0.191719,-0.04431 0.184485,0 0.299336,0.146503 0.115755,0.146503 0.115755,0.385248 0,0.238745 -0.115755,0.385248 -0.114851,0.146502 -0.299336,0.146502 -0.111233,0 -0.191719,-0.04341 -0.07958,-0.04431 -0.132034,-0.134746 z m 0.566116,-0.353596 q 0,-0.183581 -0.07597,-0.287579 -0.07506,-0.104904 -0.207093,-0.104904 -0.132033,0 -0.207998,0.104904 -0.07506,0.103998 -0.07506,0.287579 0,0.18358 0.07506,0.288484 0.07596,0.103998 0.207998,0.103998 0.132033,0 0.207093,-0.103998 0.07597,-0.104904 0.07597,-0.288484 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4324" />
+ <path
+ d="m 44.663758,11.088796 q -0.201667,0 -0.279441,0.04612 -0.07777,0.04612 -0.07777,0.157354 0,0.08863 0.05788,0.141077 0.05878,0.05155 0.159163,0.05155 0.138364,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.331892,-0.06873 v 0.577872 H 44.829252 V 11.4442 q -0.05697,0.09224 -0.141981,0.136555 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247789,-0.08682 -0.09134,-0.08772 -0.09134,-0.234223 0,-0.17092 0.113947,-0.257737 0.114851,-0.08682 0.341839,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.07596,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.08229,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.17725,-0.05245 0.08591,-0.01809 0.167303,-0.01809 0.219754,0 0.328274,0.113947 0.108521,0.113946 0.108521,0.345457 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4326" />
+ <path
+ d="m 45.503887,10.2975 v 0.28758 h 0.342744 v 0.12932 h -0.342744 v 0.549837 q 0,0.123894 0.03346,0.159163 0.03437,0.03527 0.138363,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.192623,0 -0.265875,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 V 10.7144 h -0.122086 v -0.12932 h 0.122086 V 10.2975 Z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4328" />
+ <path
+ d="m 46.908324,10.986605 v 0.611333 h -0.166398 v -0.605907 q 0,-0.143789 -0.05607,-0.215232 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234224 v 0.572446 h -0.167302 v -1.40715 h 0.167302 v 0.551646 q 0.05969,-0.09134 0.140173,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264066,0.108521 0.08953,0.107616 0.08953,0.317422 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4330" />
+ </g>
+ <g
+ aria-label="path"
+ style="font-size:1.85208333px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4128">
+ <path
+ d="m 91.012247,11.446009 v 0.537176 H 90.844944 V 10.58508 h 0.167303 v 0.153737 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.19172,-0.04431 0.184484,0 0.299335,0.146503 0.115755,0.146503 0.115755,0.385248 0,0.238745 -0.115755,0.385248 -0.114851,0.146502 -0.299335,0.146502 -0.111234,0 -0.19172,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.183581 -0.07596,-0.287579 -0.07506,-0.104904 -0.207094,-0.104904 -0.132033,0 -0.207997,0.104904 -0.07506,0.103998 -0.07506,0.287579 0,0.18358 0.07506,0.288484 0.07596,0.103998 0.207997,0.103998 0.132034,0 0.207094,-0.103998 0.07596,-0.104904 0.07596,-0.288484 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4315" />
+ <path
+ d="m 92.487221,11.088796 q -0.201667,0 -0.27944,0.04612 -0.07777,0.04612 -0.07777,0.157354 0,0.08863 0.05788,0.141077 0.05878,0.05155 0.159163,0.05155 0.138364,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.331892,-0.06873 v 0.577872 H 92.652715 V 11.4442 q -0.05697,0.09224 -0.141981,0.136555 -0.08501,0.04341 -0.207998,0.04341 -0.155546,0 -0.247788,-0.08682 -0.09134,-0.08772 -0.09134,-0.234223 0,-0.17092 0.113946,-0.257737 0.114851,-0.08682 0.34184,-0.08682 h 0.233319 v -0.01628 q 0,-0.114851 -0.07596,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.09134,-0.03527 0.177251,-0.05245 0.08591,-0.01809 0.167302,-0.01809 0.219754,0 0.328275,0.113947 0.10852,0.113946 0.10852,0.345457 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4317" />
+ <path
+ d="m 93.327351,10.2975 v 0.28758 h 0.342744 v 0.12932 h -0.342744 v 0.549837 q 0,0.123894 0.03346,0.159163 0.03437,0.03527 0.138364,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.192624,0 -0.265875,-0.07144 -0.07325,-0.07235 -0.07325,-0.262258 V 10.7144 h -0.122085 v -0.12932 h 0.122085 V 10.2975 Z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4319" />
+ <path
+ d="m 94.731787,10.986605 v 0.611333 h -0.166398 v -0.605907 q 0,-0.143789 -0.05607,-0.215232 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234224 v 0.572446 h -0.167303 v -1.40715 h 0.167303 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264067,0.108521 0.08953,0.107616 0.08953,0.317422 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4321" />
+ </g>
+ <g
+ aria-label="path"
+ style="font-size:1.85208333px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4051">
+ <path
+ d="m 138.83573,11.446009 v 0.537176 h -0.1673 V 10.58508 h 0.1673 v 0.153737 q 0.0524,-0.09043 0.13204,-0.133842 0.0805,-0.04431 0.19172,-0.04431 0.18448,0 0.29933,0.146503 0.11576,0.146503 0.11576,0.385248 0,0.238745 -0.11576,0.385248 -0.11485,0.146502 -0.29933,0.146502 -0.11124,0 -0.19172,-0.04341 -0.0796,-0.04431 -0.13204,-0.134746 z m 0.56612,-0.353596 q 0,-0.183581 -0.076,-0.287579 -0.0751,-0.104904 -0.20709,-0.104904 -0.13203,0 -0.208,0.104904 -0.0751,0.103998 -0.0751,0.287579 0,0.18358 0.0751,0.288484 0.076,0.103998 0.208,0.103998 0.13203,0 0.20709,-0.103998 0.076,-0.104904 0.076,-0.288484 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4306" />
+ <path
+ d="m 140.31071,11.088796 q -0.20167,0 -0.27944,0.04612 -0.0778,0.04612 -0.0778,0.157354 0,0.08863 0.0579,0.141077 0.0588,0.05155 0.15917,0.05155 0.13836,0 0.22156,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.33189,-0.06873 v 0.577872 h -0.1664 V 11.4442 q -0.057,0.09224 -0.14198,0.136555 -0.085,0.04341 -0.208,0.04341 -0.15554,0 -0.24779,-0.08682 -0.0913,-0.08772 -0.0913,-0.234223 0,-0.17092 0.11394,-0.257737 0.11485,-0.08682 0.34184,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.076,-0.17725 -0.0751,-0.0633 -0.21162,-0.0633 -0.0868,0 -0.16911,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.0913,-0.03527 0.17725,-0.05245 0.0859,-0.01809 0.1673,-0.01809 0.21976,0 0.32828,0.113947 0.10852,0.113946 0.10852,0.345457 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4308" />
+ <path
+ d="m 141.15084,10.2975 v 0.28758 h 0.34274 v 0.12932 h -0.34274 v 0.549837 q 0,0.123894 0.0335,0.159163 0.0344,0.03527 0.13836,0.03527 h 0.17092 v 0.139268 h -0.17092 q -0.19262,0 -0.26587,-0.07144 -0.0733,-0.07235 -0.0733,-0.262258 V 10.7144 h -0.12208 v -0.12932 h 0.12208 V 10.2975 Z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4310" />
+ <path
+ d="m 142.55527,10.986605 v 0.611333 h -0.16639 v -0.605907 q 0,-0.143789 -0.0561,-0.215232 -0.0561,-0.07144 -0.16821,-0.07144 -0.13475,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234224 v 0.572446 H 141.707 v -1.40715 h 0.16731 v 0.551646 q 0.0597,-0.09134 0.14017,-0.136555 0.0814,-0.04522 0.1872,-0.04522 0.17453,0 0.26406,0.108521 0.0895,0.107616 0.0895,0.317422 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4312" />
+ </g>
+ <g
+ aria-label="shape"
+ style="font-size:1.85208333px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#ffffff;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4108">
+ <path
+ d="m 54.943883,10.614923 v 0.157354 q -0.07054,-0.03617 -0.146502,-0.05426 -0.07597,-0.01809 -0.157355,-0.01809 -0.123894,0 -0.186294,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.04431,0.09134 0.04431,0.03256 0.178154,0.0624 l 0.05697,0.01266 q 0.17725,0.03798 0.251406,0.107616 0.07506,0.06873 0.07506,0.192624 0,0.141077 -0.112138,0.223372 -0.111234,0.08229 -0.306571,0.08229 -0.08139,0 -0.170015,-0.01628 -0.08772,-0.01537 -0.185389,-0.04702 v -0.171824 q 0.09224,0.04793 0.181771,0.07235 0.08953,0.02351 0.177251,0.02351 0.117563,0 0.180867,-0.03979 0.0633,-0.0407 0.0633,-0.113947 0,-0.06783 -0.04612,-0.103999 -0.04522,-0.03617 -0.199859,-0.06963 l -0.05788,-0.01356 q -0.154641,-0.03256 -0.223371,-0.09948 -0.06873,-0.06782 -0.06873,-0.185389 0,-0.142886 0.101286,-0.220659 0.101286,-0.07777 0.287579,-0.07777 0.09224,0 0.173633,0.01356 0.08139,0.01357 0.15012,0.0407 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4295" />
+ <path
+ d="m 56.105957,10.986605 v 0.611333 h -0.166398 v -0.605907 q 0,-0.143789 -0.05607,-0.215232 -0.05607,-0.07144 -0.168207,-0.07144 -0.134746,0 -0.212519,0.08591 -0.07777,0.08591 -0.07777,0.234224 v 0.572446 h -0.167303 v -1.40715 h 0.167303 v 0.551646 q 0.05969,-0.09134 0.140172,-0.136555 0.08139,-0.04522 0.187198,-0.04522 0.174537,0 0.264067,0.108521 0.08953,0.107616 0.08953,0.317422 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4297" />
+ <path
+ d="m 56.899965,11.088796 q -0.201667,0 -0.27944,0.04612 -0.07777,0.04612 -0.07777,0.157354 0,0.08863 0.05788,0.141077 0.05878,0.05155 0.159163,0.05155 0.138364,0 0.221563,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.331892,-0.06873 v 0.577872 H 57.065459 V 11.4442 q -0.05697,0.09224 -0.141981,0.136555 -0.08501,0.04341 -0.207997,0.04341 -0.155546,0 -0.247789,-0.08682 -0.09134,-0.08772 -0.09134,-0.234223 0,-0.17092 0.113947,-0.257737 0.11485,-0.08682 0.341839,-0.08682 h 0.233319 v -0.01628 q 0,-0.114851 -0.07596,-0.17725 -0.07506,-0.0633 -0.211615,-0.0633 -0.08682,0 -0.169111,0.0208 -0.0823,0.0208 -0.158259,0.0624 v -0.153737 q 0.09134,-0.03527 0.17725,-0.05245 0.08591,-0.01809 0.167302,-0.01809 0.219754,0 0.328275,0.113947 0.10852,0.113946 0.10852,0.345457 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4299" />
+ <path
+ d="m 57.736478,11.446009 v 0.537176 H 57.569175 V 10.58508 h 0.167303 v 0.153737 q 0.05245,-0.09043 0.132033,-0.133842 0.08049,-0.04431 0.191719,-0.04431 0.184485,0 0.299336,0.146503 0.115755,0.146503 0.115755,0.385248 0,0.238745 -0.115755,0.385248 -0.114851,0.146502 -0.299336,0.146502 -0.111233,0 -0.191719,-0.04341 -0.07958,-0.04431 -0.132033,-0.134746 z m 0.566115,-0.353596 q 0,-0.183581 -0.07597,-0.287579 -0.07506,-0.104904 -0.207093,-0.104904 -0.132033,0 -0.207997,0.104904 -0.07506,0.103998 -0.07506,0.287579 0,0.18358 0.07506,0.288484 0.07596,0.103998 0.207997,0.103998 0.132033,0 0.207093,-0.103998 0.07597,-0.104904 0.07597,-0.288484 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4301" />
+ <path
+ d="m 59.6175,11.049909 v 0.08139 h -0.76507 q 0.01085,0.171825 0.103095,0.262258 0.09315,0.08953 0.25864,0.08953 0.09586,0 0.185389,-0.02351 0.09043,-0.02351 0.179059,-0.07054 v 0.157354 q -0.08953,0.03798 -0.18358,0.05788 -0.09405,0.01989 -0.190816,0.01989 -0.242362,0 -0.384343,-0.141076 -0.141077,-0.141077 -0.141077,-0.381631 0,-0.248693 0.133842,-0.394291 0.134747,-0.146503 0.36264,-0.146503 0.20438,0 0.322848,0.132034 0.119373,0.131129 0.119373,0.357213 z m -0.166398,-0.04883 q -0.0018,-0.136555 -0.07687,-0.217946 -0.07416,-0.08139 -0.197146,-0.08139 -0.139268,0 -0.223371,0.07868 -0.0832,0.07868 -0.09586,0.221563 z"
+ style="font-size:1.85208333px;fill:#ffffff;stroke-width:0.2"
+ id="path4303" />
+ </g>
+ <g
+ aria-label="shape"
+ style="font-size:1.85208333px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4132">
+ <path
+ d="m 102.76735,10.614923 v 0.157354 q -0.0705,-0.03617 -0.1465,-0.05426 -0.076,-0.01809 -0.15735,-0.01809 -0.1239,0 -0.1863,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.0443,0.09134 0.0443,0.03256 0.17816,0.0624 l 0.057,0.01266 q 0.17725,0.03798 0.2514,0.107616 0.0751,0.06873 0.0751,0.192624 0,0.141077 -0.11213,0.223372 -0.11124,0.08229 -0.30657,0.08229 -0.0814,0 -0.17002,-0.01628 -0.0877,-0.01537 -0.18539,-0.04702 v -0.171824 q 0.0922,0.04793 0.18177,0.07235 0.0895,0.02351 0.17725,0.02351 0.11757,0 0.18087,-0.03979 0.0633,-0.0407 0.0633,-0.113947 0,-0.06783 -0.0461,-0.103999 -0.0452,-0.03617 -0.19986,-0.06963 l -0.0579,-0.01356 q -0.15464,-0.03256 -0.22337,-0.09948 -0.0687,-0.06782 -0.0687,-0.185389 0,-0.142886 0.10128,-0.220659 0.10129,-0.07777 0.28758,-0.07777 0.0922,0 0.17363,0.01356 0.0814,0.01357 0.15012,0.0407 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4284" />
+ <path
+ d="m 103.92943,10.986605 v 0.611333 h -0.1664 v -0.605907 q 0,-0.143789 -0.0561,-0.215232 -0.0561,-0.07144 -0.16821,-0.07144 -0.13474,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234224 v 0.572446 h -0.1673 v -1.40715 h 0.1673 v 0.551646 q 0.0597,-0.09134 0.14017,-0.136555 0.0814,-0.04522 0.1872,-0.04522 0.17454,0 0.26407,0.108521 0.0895,0.107616 0.0895,0.317422 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4286" />
+ <path
+ d="m 104.72344,11.088796 q -0.20167,0 -0.27944,0.04612 -0.0778,0.04612 -0.0778,0.157354 0,0.08863 0.0579,0.141077 0.0588,0.05155 0.15916,0.05155 0.13837,0 0.22157,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.33189,-0.06873 v 0.577872 h -0.1664 V 11.4442 q -0.057,0.09224 -0.14198,0.136555 -0.085,0.04341 -0.208,0.04341 -0.15554,0 -0.24779,-0.08682 -0.0913,-0.08772 -0.0913,-0.234223 0,-0.17092 0.11394,-0.257737 0.11485,-0.08682 0.34184,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.076,-0.17725 -0.0751,-0.0633 -0.21162,-0.0633 -0.0868,0 -0.16911,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.0913,-0.03527 0.17725,-0.05245 0.0859,-0.01809 0.1673,-0.01809 0.21976,0 0.32828,0.113947 0.10852,0.113946 0.10852,0.345457 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4288" />
+ <path
+ d="m 105.55995,11.446009 v 0.537176 h -0.1673 V 10.58508 h 0.1673 v 0.153737 q 0.0524,-0.09043 0.13203,-0.133842 0.0805,-0.04431 0.19172,-0.04431 0.18449,0 0.29934,0.146503 0.11575,0.146503 0.11575,0.385248 0,0.238745 -0.11575,0.385248 -0.11485,0.146502 -0.29934,0.146502 -0.11123,0 -0.19172,-0.04341 -0.0796,-0.04431 -0.13203,-0.134746 z m 0.56611,-0.353596 q 0,-0.183581 -0.076,-0.287579 -0.0751,-0.104904 -0.20709,-0.104904 -0.13204,0 -0.208,0.104904 -0.0751,0.103998 -0.0751,0.287579 0,0.18358 0.0751,0.288484 0.076,0.103998 0.208,0.103998 0.13203,0 0.20709,-0.103998 0.076,-0.104904 0.076,-0.288484 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4290" />
+ <path
+ d="m 107.44097,11.049909 v 0.08139 h -0.76507 q 0.0109,0.171825 0.1031,0.262258 0.0931,0.08953 0.25864,0.08953 0.0959,0 0.18539,-0.02351 0.0904,-0.02351 0.17905,-0.07054 v 0.157354 q -0.0895,0.03798 -0.18358,0.05788 -0.0941,0.01989 -0.19081,0.01989 -0.24236,0 -0.38434,-0.141076 -0.14108,-0.141077 -0.14108,-0.381631 0,-0.248693 0.13384,-0.394291 0.13475,-0.146503 0.36264,-0.146503 0.20438,0 0.32285,0.132034 0.11937,0.131129 0.11937,0.357213 z m -0.1664,-0.04883 q -0.002,-0.136555 -0.0769,-0.217946 -0.0742,-0.08139 -0.19714,-0.08139 -0.13927,0 -0.22337,0.07868 -0.0832,0.07868 -0.0959,0.221563 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4292" />
+ </g>
+ <g
+ aria-label="shape"
+ style="font-size:1.85208333px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4055">
+ <path
+ d="m 150.59083,10.614923 v 0.157354 q -0.0705,-0.03617 -0.14651,-0.05426 -0.076,-0.01809 -0.15735,-0.01809 -0.1239,0 -0.1863,0.03798 -0.0615,0.03798 -0.0615,0.113946 0,0.05788 0.0443,0.09134 0.0443,0.03256 0.17816,0.0624 l 0.057,0.01266 q 0.17725,0.03798 0.25141,0.107616 0.0751,0.06873 0.0751,0.192624 0,0.141077 -0.11214,0.223372 -0.11124,0.08229 -0.30657,0.08229 -0.0814,0 -0.17002,-0.01628 -0.0877,-0.01537 -0.18539,-0.04702 v -0.171824 q 0.0923,0.04793 0.18177,0.07235 0.0895,0.02351 0.17725,0.02351 0.11757,0 0.18087,-0.03979 0.0633,-0.0407 0.0633,-0.113947 0,-0.06783 -0.0461,-0.103999 -0.0452,-0.03617 -0.19985,-0.06963 l -0.0579,-0.01356 q -0.15464,-0.03256 -0.22337,-0.09948 -0.0687,-0.06782 -0.0687,-0.185389 0,-0.142886 0.10128,-0.220659 0.10129,-0.07777 0.28758,-0.07777 0.0922,0 0.17364,0.01356 0.0814,0.01357 0.15012,0.0407 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4273" />
+ <path
+ d="m 151.7529,10.986605 v 0.611333 h -0.1664 v -0.605907 q 0,-0.143789 -0.0561,-0.215232 -0.0561,-0.07144 -0.1682,-0.07144 -0.13475,0 -0.21252,0.08591 -0.0778,0.08591 -0.0778,0.234224 v 0.572446 h -0.1673 v -1.40715 h 0.1673 v 0.551646 q 0.0597,-0.09134 0.14018,-0.136555 0.0814,-0.04522 0.18719,-0.04522 0.17454,0 0.26407,0.108521 0.0895,0.107616 0.0895,0.317422 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4275" />
+ <path
+ d="m 152.54691,11.088796 q -0.20167,0 -0.27944,0.04612 -0.0778,0.04612 -0.0778,0.157354 0,0.08863 0.0579,0.141077 0.0588,0.05155 0.15917,0.05155 0.13836,0 0.22156,-0.09767 0.0841,-0.09857 0.0841,-0.261354 v -0.03708 z m 0.33189,-0.06873 v 0.577872 h -0.1664 V 11.4442 q -0.057,0.09224 -0.14198,0.136555 -0.085,0.04341 -0.208,0.04341 -0.15554,0 -0.24779,-0.08682 -0.0913,-0.08772 -0.0913,-0.234223 0,-0.17092 0.11394,-0.257737 0.11485,-0.08682 0.34184,-0.08682 h 0.23332 v -0.01628 q 0,-0.114851 -0.076,-0.17725 -0.0751,-0.0633 -0.21162,-0.0633 -0.0868,0 -0.16911,0.0208 -0.0823,0.0208 -0.15826,0.0624 v -0.153737 q 0.0913,-0.03527 0.17725,-0.05245 0.0859,-0.01809 0.1673,-0.01809 0.21976,0 0.32828,0.113947 0.10852,0.113946 0.10852,0.345457 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4277" />
+ <path
+ d="m 153.38342,11.446009 v 0.537176 h -0.1673 V 10.58508 h 0.1673 v 0.153737 q 0.0524,-0.09043 0.13203,-0.133842 0.0805,-0.04431 0.19172,-0.04431 0.18449,0 0.29934,0.146503 0.11575,0.146503 0.11575,0.385248 0,0.238745 -0.11575,0.385248 -0.11485,0.146502 -0.29934,0.146502 -0.11123,0 -0.19172,-0.04341 -0.0796,-0.04431 -0.13203,-0.134746 z m 0.56611,-0.353596 q 0,-0.183581 -0.076,-0.287579 -0.0751,-0.104904 -0.20709,-0.104904 -0.13204,0 -0.208,0.104904 -0.0751,0.103998 -0.0751,0.287579 0,0.18358 0.0751,0.288484 0.076,0.103998 0.208,0.103998 0.13203,0 0.20709,-0.103998 0.076,-0.104904 0.076,-0.288484 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4279" />
+ <path
+ d="m 155.26444,11.049909 v 0.08139 h -0.76507 q 0.0109,0.171825 0.1031,0.262258 0.0931,0.08953 0.25864,0.08953 0.0959,0 0.18539,-0.02351 0.0904,-0.02351 0.17906,-0.07054 v 0.157354 q -0.0895,0.03798 -0.18359,0.05788 -0.094,0.01989 -0.19081,0.01989 -0.24236,0 -0.38434,-0.141076 -0.14108,-0.141077 -0.14108,-0.381631 0,-0.248693 0.13384,-0.394291 0.13475,-0.146503 0.36264,-0.146503 0.20438,0 0.32285,0.132034 0.11937,0.131129 0.11937,0.357213 z m -0.1664,-0.04883 q -0.002,-0.136555 -0.0769,-0.217946 -0.0742,-0.08139 -0.19715,-0.08139 -0.13927,0 -0.22337,0.07868 -0.0832,0.07868 -0.0959,0.221563 z"
+ style="font-size:1.85208333px;stroke-width:0.2"
+ id="path4281" />
+ </g>
+ <g
+ aria-label="clip with shape"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4080">
+ <path
+ d="m 65.475444,3.2419882 v 0.2222087 q -0.100769,-0.055552 -0.20283,-0.082682 -0.100769,-0.028422 -0.204122,-0.028422 -0.231252,0 -0.359151,0.1472779 -0.127899,0.1459859 -0.127899,0.4108276 0,0.2648417 0.127899,0.4121195 0.127899,0.145986 0.359151,0.145986 0.103353,0 0.204122,-0.02713 0.102061,-0.028422 0.20283,-0.083974 V 4.577824 q -0.09948,0.046509 -0.206706,0.069763 -0.105937,0.023254 -0.226084,0.023254 -0.326854,0 -0.519348,-0.2054138 -0.192495,-0.2054138 -0.192495,-0.5542297 0,-0.3539835 0.193786,-0.5568135 0.195079,-0.20283 0.53356,-0.20283 0.109812,0 0.214457,0.023254 0.104645,0.021962 0.20283,0.067179 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4246" />
+ <path
+ d="m 65.891439,2.623163 h 0.237712 v 2.0102131 h -0.237712 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4248" />
+ <path
+ d="m 66.625244,3.1864361 h 0.237712 v 1.44694 h -0.237712 z m 0,-0.5632731 h 0.237712 v 0.3010152 h -0.237712 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4250" />
+ <path
+ d="m 67.58901,4.4163351 v 0.767395 h -0.239004 v -1.997294 h 0.239004 v 0.2196248 q 0.07493,-0.1291911 0.188619,-0.1912028 0.11498,-0.063304 0.273885,-0.063304 0.26355,0 0.427622,0.2092895 0.165365,0.2092896 0.165365,0.550354 0,0.3410644 -0.165365,0.550354 -0.164072,0.2092895 -0.427622,0.2092895 -0.158905,0 -0.273885,-0.062012 Q 67.663941,4.5455262 67.58901,4.4163351 Z M 68.397746,3.911198 q 0,-0.2622579 -0.108521,-0.4108276 -0.107228,-0.1498617 -0.295847,-0.1498617 -0.188619,0 -0.29714,0.1498617 -0.107228,0.1485697 -0.107228,0.4108276 0,0.2622579 0.107228,0.4121195 0.108521,0.1485698 0.29714,0.1485698 0.188619,0 0.295847,-0.1485698 0.108521,-0.1498616 0.108521,-0.4121195 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4252" />
+ <path
+ d="m 69.742625,3.1864361 h 0.237712 l 0.297139,1.12913 0.295848,-1.12913 h 0.280344 l 0.29714,1.12913 0.295847,-1.12913 h 0.237712 l -0.37853,1.44694 H 71.025492 L 70.714142,3.447402 70.4015,4.6333761 h -0.280345 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4254" />
+ <path
+ d="m 72.046102,3.1864361 h 0.237712 v 1.44694 h -0.237712 z m 0,-0.5632731 h 0.237712 v 0.3010152 h -0.237712 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4256" />
+ <path
+ d="m 73.015035,2.7756084 v 0.4108277 h 0.489634 V 3.3711793 H 73.015035 V 4.156661 q 0,0.1769918 0.0478,0.2273763 0.04909,0.050385 0.197663,0.050385 h 0.244171 v 0.1989542 h -0.244171 q -0.275177,0 -0.379822,-0.1020609 Q 72.776031,4.4279623 72.776031,4.156661 V 3.3711793 H 72.601623 V 3.1864361 h 0.174408 V 2.7756084 Z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4258" />
+ <path
+ d="M 75.021372,3.7600444 V 4.6333761 H 74.783661 V 3.7677959 q 0,-0.2054138 -0.0801,-0.3074748 -0.0801,-0.1020609 -0.240295,-0.1020609 -0.192495,0 -0.303599,0.1227315 -0.111105,0.1227315 -0.111105,0.3346049 V 4.6333761 H 73.80956 V 2.623163 h 0.239003 v 0.7880655 q 0.08527,-0.130483 0.200246,-0.1950785 0.116272,-0.064595 0.267426,-0.064595 0.249339,0 0.377238,0.1550293 0.127899,0.1537373 0.127899,0.4534606 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4260" />
+ <path
+ d="m 77.262838,3.2290691 v 0.2247925 q -0.100769,-0.051676 -0.20929,-0.077515 -0.10852,-0.025838 -0.224792,-0.025838 -0.176992,0 -0.266134,0.05426 -0.08785,0.05426 -0.08785,0.1627807 0,0.082682 0.0633,0.130483 0.0633,0.046509 0.254506,0.089142 l 0.08139,0.018087 q 0.253214,0.05426 0.359151,0.1537374 0.107229,0.098185 0.107229,0.275177 0,0.2015381 -0.160197,0.319102 -0.158905,0.1175638 -0.437958,0.1175638 -0.116272,0 -0.242879,-0.023254 -0.125316,-0.021962 -0.264842,-0.067179 V 4.3349447 q 0.131775,0.068471 0.259674,0.1033529 0.127899,0.03359 0.253215,0.03359 0.167948,0 0.258382,-0.056844 0.09043,-0.058136 0.09043,-0.1627808 0,-0.096893 -0.06589,-0.1485697 -0.06459,-0.051676 -0.285512,-0.099477 l -0.08268,-0.019379 q -0.220916,-0.046509 -0.319101,-0.1421102 -0.09819,-0.096893 -0.09819,-0.2648417 0,-0.2041219 0.144694,-0.3152262 0.144694,-0.1111043 0.410828,-0.1111043 0.131775,0 0.248047,0.019379 0.116272,0.019379 0.214457,0.058136 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4262" />
+ <path
+ d="M 78.922943,3.7600444 V 4.6333761 H 78.685232 V 3.7677959 q 0,-0.2054138 -0.0801,-0.3074748 -0.0801,-0.1020609 -0.240295,-0.1020609 -0.192495,0 -0.303599,0.1227315 -0.111104,0.1227315 -0.111104,0.3346049 V 4.6333761 H 77.711131 V 2.623163 h 0.239004 v 0.7880655 q 0.08527,-0.130483 0.200246,-0.1950785 0.116272,-0.064595 0.267425,-0.064595 0.249339,0 0.377238,0.1550293 0.127899,0.1537373 0.127899,0.4534606 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4264" />
+ <path
+ d="m 80.05724,3.9060304 q -0.288096,0 -0.3992,0.065887 -0.111104,0.065887 -0.111104,0.2247925 0,0.1266072 0.08268,0.2015381 0.08397,0.073639 0.227376,0.073639 0.197663,0 0.316518,-0.1395264 0.120148,-0.1408183 0.120148,-0.3733622 v -0.052968 z m 0.474132,-0.098185 v 0.825531 H 80.29366 V 4.4137513 q -0.08139,0.1317749 -0.20283,0.1950785 -0.121439,0.062012 -0.297139,0.062012 -0.222209,0 -0.353984,-0.1240234 -0.130483,-0.1253153 -0.130483,-0.3346049 0,-0.2441711 0.162781,-0.3681946 0.164073,-0.1240234 0.488342,-0.1240234 h 0.333313 v -0.023254 q 0,-0.1640727 -0.10852,-0.2532145 -0.107229,-0.090434 -0.302308,-0.090434 -0.124023,0 -0.241587,0.029714 -0.117564,0.029714 -0.226084,0.089142 V 3.2523235 q 0.130483,-0.050385 0.253214,-0.074931 0.122732,-0.025838 0.239004,-0.025838 0.313934,0 0.468963,0.1627807 0.15503,0.1627808 0.15503,0.4935099 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4266" />
+ <path
+ d="m 81.252259,4.4163351 v 0.767395 h -0.239004 v -1.997294 h 0.239004 v 0.2196248 q 0.07493,-0.1291911 0.188619,-0.1912028 0.11498,-0.063304 0.273885,-0.063304 0.263549,0 0.427622,0.2092895 0.165365,0.2092896 0.165365,0.550354 0,0.3410644 -0.165365,0.550354 -0.164073,0.2092895 -0.427622,0.2092895 -0.158905,0 -0.273885,-0.062012 -0.113689,-0.063304 -0.188619,-0.1924947 z M 82.060995,3.911198 q 0,-0.2622579 -0.108521,-0.4108276 -0.107228,-0.1498617 -0.295847,-0.1498617 -0.188619,0 -0.29714,0.1498617 -0.107228,0.1485697 -0.107228,0.4108276 0,0.2622579 0.107228,0.4121195 0.108521,0.1485698 0.29714,0.1485698 0.188619,0 0.295847,-0.1485698 0.108521,-0.1498616 0.108521,-0.4121195 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4268" />
+ <path
+ d="m 83.939432,3.8504782 v 0.116272 h -1.092956 q 0.0155,0.245463 0.147278,0.3746541 0.133067,0.1278992 0.369486,0.1278992 0.136943,0 0.264842,-0.03359 0.129191,-0.03359 0.255798,-0.1007691 v 0.2247925 q -0.127899,0.05426 -0.262258,0.082682 -0.134358,0.028422 -0.272593,0.028422 -0.346232,0 -0.549062,-0.201538 -0.201538,-0.2015381 -0.201538,-0.5451864 0,-0.3552755 0.191203,-0.5632731 0.192495,-0.2092895 0.518056,-0.2092895 0.291972,0 0.461212,0.1886189 0.170532,0.1873271 0.170532,0.5103048 z M 83.701721,3.780715 q -0.0026,-0.1950785 -0.109813,-0.3113505 -0.105936,-0.116272 -0.281636,-0.116272 -0.198954,0 -0.319102,0.1123963 -0.118856,0.1123962 -0.136943,0.3165181 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4270" />
+ </g>
+ <g
+ aria-label="clip with path"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.20000002;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4084">
+ <path
+ d="m 113.61347,3.2182298 v 0.2222087 q -0.10076,-0.055552 -0.20283,-0.082682 -0.10076,-0.028422 -0.20412,-0.028422 -0.23125,0 -0.35915,0.1472779 -0.1279,0.1459859 -0.1279,0.4108276 0,0.2648417 0.1279,0.4121195 0.1279,0.1459859 0.35915,0.1459859 0.10336,0 0.20412,-0.02713 0.10207,-0.028422 0.20283,-0.083974 v 0.2196248 q -0.0995,0.046509 -0.2067,0.069763 -0.10594,0.023254 -0.22609,0.023254 -0.32685,0 -0.51934,-0.2054138 -0.1925,-0.2054138 -0.1925,-0.5542297 0,-0.3539836 0.19379,-0.5568136 0.19508,-0.2028299 0.53356,-0.2028299 0.10981,0 0.21445,0.023254 0.10465,0.021962 0.20283,0.067179 z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4221" />
+ <path
+ d="m 114.02947,2.5994046 h 0.23771 v 2.0102131 h -0.23771 z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4223" />
+ <path
+ d="m 114.76328,3.1626776 h 0.23771 v 1.4469401 h -0.23771 z m 0,-0.563273 h 0.23771 v 0.3010152 h -0.23771 z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4225" />
+ <path
+ d="m 115.72704,4.3925767 v 0.767395 h -0.239 V 3.1626776 h 0.239 v 0.2196249 q 0.0749,-0.1291911 0.18862,-0.1912028 0.11498,-0.063304 0.27388,-0.063304 0.26355,0 0.42763,0.2092895 0.16536,0.2092895 0.16536,0.550354 0,0.3410644 -0.16536,0.550354 -0.16408,0.2092895 -0.42763,0.2092895 -0.1589,0 -0.27388,-0.062012 -0.11369,-0.063304 -0.18862,-0.1924947 z m 0.80874,-0.5051371 q 0,-0.2622579 -0.10852,-0.4108276 -0.10723,-0.1498617 -0.29585,-0.1498617 -0.18862,0 -0.29714,0.1498617 -0.10723,0.1485697 -0.10723,0.4108276 0,0.2622579 0.10723,0.4121195 0.10852,0.1485698 0.29714,0.1485698 0.18862,0 0.29585,-0.1485698 0.10852,-0.1498616 0.10852,-0.4121195 z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4227" />
+ <path
+ d="m 117.88066,3.1626776 h 0.23771 l 0.29714,1.1291301 0.29584,-1.1291301 h 0.28035 l 0.29714,1.1291301 0.29585,-1.1291301 h 0.23771 l -0.37853,1.4469401 h -0.28035 l -0.31135,-1.1859741 -0.31264,1.1859741 h -0.28034 z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4229" />
+ <path
+ d="m 120.18413,3.1626776 h 0.23771 v 1.4469401 h -0.23771 z m 0,-0.563273 h 0.23771 v 0.3010152 h -0.23771 z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4231" />
+ <path
+ d="m 121.15307,2.75185 v 0.4108276 h 0.48963 v 0.1847433 h -0.48963 v 0.7854817 q 0,0.1769918 0.0478,0.2273763 0.0491,0.050385 0.19766,0.050385 h 0.24417 v 0.1989542 h -0.24417 q -0.27518,0 -0.37982,-0.1020609 -0.10465,-0.1033529 -0.10465,-0.3746542 V 3.3474209 h -0.17441 V 3.1626776 h 0.17441 V 2.75185 Z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4233" />
+ <path
+ d="m 123.1594,3.736286 v 0.8733317 h -0.23771 V 3.7440375 q 0,-0.2054138 -0.0801,-0.3074748 -0.0801,-0.1020609 -0.24029,-0.1020609 -0.1925,0 -0.3036,0.1227315 -0.11111,0.1227315 -0.11111,0.3346049 v 0.8177795 h -0.239 V 2.5994046 h 0.239 v 0.7880655 q 0.0853,-0.130483 0.20025,-0.1950785 0.11627,-0.064596 0.26743,-0.064596 0.24933,0 0.37723,0.1550293 0.1279,0.1537373 0.1279,0.4534606 z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4235" />
+ <path
+ d="m 124.7084,4.3925767 v 0.767395 h -0.239 V 3.1626776 h 0.239 v 0.2196249 q 0.0749,-0.1291911 0.18862,-0.1912028 0.11498,-0.063304 0.27389,-0.063304 0.26355,0 0.42762,0.2092895 0.16537,0.2092895 0.16537,0.550354 0,0.3410644 -0.16537,0.550354 -0.16407,0.2092895 -0.42762,0.2092895 -0.15891,0 -0.27389,-0.062012 -0.11368,-0.063304 -0.18862,-0.1924947 z m 0.80874,-0.5051371 q 0,-0.2622579 -0.10852,-0.4108276 -0.10723,-0.1498617 -0.29585,-0.1498617 -0.18862,0 -0.29714,0.1498617 -0.10723,0.1485697 -0.10723,0.4108276 0,0.2622579 0.10723,0.4121195 0.10852,0.1485698 0.29714,0.1485698 0.18862,0 0.29585,-0.1485698 0.10852,-0.1498616 0.10852,-0.4121195 z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4237" />
+ <path
+ d="m 126.81551,3.8822719 q -0.2881,0 -0.3992,0.065888 -0.1111,0.065887 -0.1111,0.2247925 0,0.1266072 0.0827,0.2015381 0.084,0.073639 0.22737,0.073639 0.19767,0 0.31652,-0.1395264 0.12015,-0.1408183 0.12015,-0.3733622 v -0.052968 z m 0.47413,-0.098185 v 0.825531 h -0.23771 V 4.3899929 q -0.0814,0.1317749 -0.20283,0.1950785 -0.12144,0.062012 -0.29714,0.062012 -0.22221,0 -0.35398,-0.1240234 -0.13049,-0.1253154 -0.13049,-0.3346049 0,-0.2441711 0.16279,-0.3681946 0.16407,-0.1240234 0.48834,-0.1240234 h 0.33331 v -0.023254 q 0,-0.1640727 -0.10852,-0.2532145 -0.10723,-0.090434 -0.30231,-0.090434 -0.12402,0 -0.24158,0.029714 -0.11757,0.029714 -0.22609,0.089142 V 3.2285651 q 0.13048,-0.050384 0.25322,-0.074931 0.12273,-0.025838 0.239,-0.025838 0.31393,0 0.46896,0.1627807 0.15503,0.1627808 0.15503,0.4935099 z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4239" />
+ <path
+ d="m 128.0157,2.75185 v 0.4108276 h 0.48963 v 0.1847433 h -0.48963 v 0.7854817 q 0,0.1769918 0.0478,0.2273763 0.0491,0.050385 0.19766,0.050385 h 0.24417 v 0.1989542 h -0.24417 q -0.27518,0 -0.37982,-0.1020609 -0.10465,-0.1033529 -0.10465,-0.3746542 V 3.3474209 h -0.1744 V 3.1626776 h 0.1744 V 2.75185 Z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4241" />
+ <path
+ d="m 130.02203,3.736286 v 0.8733317 h -0.23771 V 3.7440375 q 0,-0.2054138 -0.0801,-0.3074748 -0.0801,-0.1020609 -0.24029,-0.1020609 -0.1925,0 -0.3036,0.1227315 -0.1111,0.1227315 -0.1111,0.3346049 v 0.8177795 h -0.23901 V 2.5994046 h 0.23901 v 0.7880655 q 0.0853,-0.130483 0.20024,-0.1950785 0.11627,-0.064596 0.26743,-0.064596 0.24934,0 0.37723,0.1550293 0.1279,0.1537373 0.1279,0.4534606 z"
+ style="font-size:2.64583325px;fill:#000000;stroke-width:0.20000002"
+ id="path4243" />
+ </g>
+ <g
+ aria-label="no clip"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4059">
+ <path
+ d="M 16.149631,3.7910679 V 4.6643996 H 15.911919 V 3.7988194 q 0,-0.2054138 -0.0801,-0.3074748 -0.0801,-0.1020609 -0.240295,-0.1020609 -0.192495,0 -0.3036,0.1227315 -0.111104,0.1227315 -0.111104,0.3346049 v 0.8177795 h -0.239003 v -1.44694 h 0.239003 V 3.442252 q 0.08527,-0.130483 0.200246,-0.1950785 0.116272,-0.064596 0.267426,-0.064596 0.249339,0 0.377238,0.1550293 0.127899,0.1537373 0.127899,0.4534606 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4208" />
+ <path
+ d="m 17.187035,3.3841161 q -0.191202,0 -0.302307,0.1498616 -0.111104,0.1485697 -0.111104,0.4082438 0,0.2596741 0.109812,0.4095357 0.111105,0.1485698 0.303599,0.1485698 0.189911,0 0.301016,-0.1498617 0.111104,-0.1498616 0.111104,-0.4082438 0,-0.2570902 -0.111104,-0.4069519 -0.111105,-0.1511535 -0.301016,-0.1511535 z m 0,-0.2015381 q 0.310059,0 0.487051,0.2015381 0.176991,0.201538 0.176991,0.5581054 0,0.3552755 -0.176991,0.5581055 -0.176992,0.201538 -0.487051,0.201538 -0.31135,0 -0.488342,-0.201538 -0.1757,-0.20283 -0.1757,-0.5581055 0,-0.3565674 0.1757,-0.5581054 0.176992,-0.2015381 0.488342,-0.2015381 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4210" />
+ <path
+ d="m 20.127424,3.2730117 v 0.2222087 q -0.100769,-0.055552 -0.20283,-0.082682 -0.100769,-0.028422 -0.204122,-0.028422 -0.231252,0 -0.359151,0.1472778 -0.127899,0.1459859 -0.127899,0.4108276 0,0.2648417 0.127899,0.4121195 0.127899,0.145986 0.359151,0.145986 0.103353,0 0.204122,-0.02713 0.102061,-0.028422 0.20283,-0.083974 v 0.2196249 q -0.09948,0.046509 -0.206705,0.069763 -0.105937,0.023254 -0.226085,0.023254 -0.326853,0 -0.519348,-0.2054138 -0.192495,-0.2054138 -0.192495,-0.5542297 0,-0.3539835 0.193787,-0.5568135 0.195079,-0.20283 0.533559,-0.20283 0.109813,0 0.214457,0.023254 0.104645,0.021962 0.20283,0.067179 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4212" />
+ <path
+ d="m 20.54342,2.6541865 h 0.237711 V 4.6643996 H 20.54342 Z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4214" />
+ <path
+ d="m 21.277225,3.2174596 h 0.237711 v 1.44694 h -0.237711 z m 0,-0.5632731 h 0.237711 v 0.3010152 h -0.237711 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4216" />
+ <path
+ d="m 22.24099,4.4473586 v 0.767395 h -0.239003 v -1.997294 h 0.239003 v 0.2196248 q 0.07493,-0.1291911 0.188619,-0.1912028 0.11498,-0.063304 0.273885,-0.063304 0.26355,0 0.427623,0.2092895 0.165364,0.2092896 0.165364,0.550354 0,0.3410644 -0.165364,0.550354 -0.164073,0.2092895 -0.427623,0.2092895 -0.158905,0 -0.273885,-0.062012 -0.113688,-0.063304 -0.188619,-0.1924947 z m 0.808736,-0.5051371 q 0,-0.2622579 -0.10852,-0.4108276 -0.107229,-0.1498617 -0.295848,-0.1498617 -0.188619,0 -0.297139,0.1498617 -0.107229,0.1485697 -0.107229,0.4108276 0,0.2622579 0.107229,0.4121195 0.10852,0.1485698 0.297139,0.1485698 0.188619,0 0.295848,-0.1485698 0.10852,-0.1498616 0.10852,-0.4121195 z"
+ style="font-size:2.64583325px;stroke-width:0.2"
+ id="path4218" />
+ </g>
+ <g
+ style="stroke-width:1.74162924"
+ clip-path="url(#clipPath975-6)"
+ id="g4146"
+ transform="matrix(0.57417503,0,0,0.57417503,81.197004,18.118326)">
+ <path
+ id="path4140"
+ d="M 76.3955,8.4074436 H 89.280114 V 21.862174 H 76.3955 Z"
+ style="fill:#008080;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ d="M 86.201408,11.942054 82.948582,9.5941232 79.76854,12.039729 80.996377,8.2205573 77.68778,5.9518912 l 4.011671,-0.012447 1.135217,-3.8477189 1.251512,3.8114793 4.0102,-0.1093548 -3.238194,2.3680707 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.5556137"
+ sodipodi:arg1="0.92729522"
+ sodipodi:r2="2.0305073"
+ sodipodi:r1="5.4727554"
+ sodipodi:cy="7.5638499"
+ sodipodi:cx="82.917755"
+ sodipodi:sides="5"
+ id="path4142"
+ style="fill:#00ff00;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432"
+ sodipodi:type="star" />
+ <path
+ id="path4144"
+ d="m 85.973367,25.396784 -3.252826,-2.347931 -3.180042,2.445606 1.227837,-3.819171 -3.308597,-2.268667 4.011671,-0.01245 1.135217,-3.847719 1.251512,3.81148 4.0102,-0.109355 -3.238194,2.368071 z"
+ inkscape:transform-center-y="-0.49812277"
+ inkscape:transform-center-x="0.025675324"
+ style="fill:#ff00ff;fill-rule:evenodd;stroke-width:0.61440808;stroke-dasharray:0.61440809, 1.84322432"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g1358"
+ style="font-size:2.64583px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ aria-label="1">
+ <path
+ id="path1356"
+ style="stroke-width:0.2"
+ d="m 24.309468,33.321322 h 0.426331 v -1.471486 l -0.463796,0.09302 v -0.237711 l 0.461212,-0.09302 h 0.260966 v 1.709198 h 0.42633 v 0.219625 h -1.111043 z"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(156.94484,0.06280181)"
+ aria-label="1"
+ style="font-size:2.64583px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="g1408">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 24.309468,33.321322 h 0.426331 v -1.471486 l -0.463796,0.09302 v -0.237711 l 0.461212,-0.09302 h 0.260966 v 1.709198 h 0.42633 v 0.219625 h -1.111043 z"
+ style="stroke-width:0.2"
+ id="path1406" />
+ </g>
+ <g
+ transform="translate(169.21435,0.20755774)"
+ aria-label="1"
+ style="font-size:2.64583px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="g1422">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 24.309468,33.321322 h 0.426331 v -1.471486 l -0.463796,0.09302 v -0.237711 l 0.461212,-0.09302 h 0.260966 v 1.709198 h 0.42633 v 0.219625 h -1.111043 z"
+ style="stroke-width:0.2"
+ id="path1420" />
+ </g>
+ <g
+ transform="translate(181.09725,0.35810392)"
+ aria-label="1"
+ style="font-size:2.64583px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="g1436">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 24.309468,33.321322 h 0.426331 v -1.471486 l -0.463796,0.09302 v -0.237711 l 0.461212,-0.09302 h 0.260966 v 1.709198 h 0.42633 v 0.219625 h -1.111043 z"
+ style="stroke-width:0.2"
+ id="path1434" />
+ </g>
+ <g
+ transform="translate(-11.887355,19.067697)"
+ aria-label="1"
+ style="font-size:2.64583px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="g1450">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 24.309468,33.321322 h 0.426331 v -1.471486 l -0.463796,0.09302 v -0.237711 l 0.461212,-0.09302 h 0.260966 v 1.709198 h 0.42633 v 0.219625 h -1.111043 z"
+ style="stroke-width:0.2"
+ id="path1448" />
+ </g>
+ <g
+ aria-label="1"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4166">
+ <path
+ d="m 24.309468,33.321322 h 0.426331 v -1.471486 l -0.463796,0.09302 v -0.237711 l 0.461212,-0.09302 h 0.260966 v 1.709198 h 0.42633 v 0.219625 h -1.111043 z"
+ style="stroke-width:0.2"
+ id="path4537" />
+ </g>
+ <g
+ aria-label="2"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4170">
+ <path
+ d="m 36.523668,33.321322 h 0.910797 v 0.219625 h -1.224732 v -0.219625 q 0.14857,-0.153737 0.404368,-0.412119 0.257091,-0.259674 0.322978,-0.334605 0.125315,-0.140819 0.174408,-0.237712 0.05039,-0.09819 0.05039,-0.192495 0,-0.153737 -0.108521,-0.25063 -0.107229,-0.09689 -0.280345,-0.09689 -0.122731,0 -0.259674,0.04263 -0.13565,0.04263 -0.29068,0.129192 v -0.26355 q 0.157614,-0.0633 0.294556,-0.0956 0.136943,-0.0323 0.250631,-0.0323 0.299723,0 0.478007,0.149861 0.178283,0.149862 0.178283,0.400493 0,0.118855 -0.04522,0.226084 -0.04392,0.105937 -0.161489,0.250631 -0.0323,0.03746 -0.205414,0.217041 -0.173116,0.178283 -0.488342,0.499969 z"
+ style="stroke-width:0.2"
+ id="path4534" />
+ </g>
+ <g
+ aria-label="3"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4174">
+ <path
+ d="m 49.124147,32.500959 q 0.187327,0.04005 0.291972,0.166656 0.105936,0.126608 0.105936,0.312643 0,0.285512 -0.19637,0.441833 -0.196371,0.156321 -0.558106,0.156321 -0.121439,0 -0.25063,-0.02455 -0.127899,-0.02325 -0.264842,-0.07106 v -0.251923 q 0.108521,0.0633 0.237712,0.0956 0.129191,0.0323 0.270009,0.0323 0.245463,0 0.373362,-0.09689 0.129191,-0.09689 0.129191,-0.281636 0,-0.170533 -0.120147,-0.266134 -0.118856,-0.09689 -0.332022,-0.09689 H 48.58542 v -0.214457 h 0.235128 q 0.192494,0 0.294555,-0.07622 0.102061,-0.07752 0.102061,-0.222209 0,-0.14857 -0.105936,-0.227376 -0.104645,-0.0801 -0.301016,-0.0801 -0.107228,0 -0.22996,0.02326 -0.122731,0.02325 -0.270009,0.07235 v -0.232544 q 0.14857,-0.04134 0.277761,-0.06201 0.130483,-0.02067 0.245463,-0.02067 0.297139,0 0.470255,0.13565 0.173116,0.134359 0.173116,0.364319 0,0.160197 -0.09173,0.271301 -0.09173,0.109813 -0.260966,0.152446 z"
+ style="stroke-width:0.2"
+ id="path4531" />
+ </g>
+ <g
+ aria-label="4"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4178">
+ <path
+ d="m 61.085134,31.8395 -0.658875,1.029653 h 0.658875 z m -0.06847,-0.227376 h 0.328145 v 1.257029 h 0.275177 v 0.217041 h -0.275177 v 0.454753 h -0.259674 v -0.454753 h -0.870748 v -0.251922 z"
+ style="stroke-width:0.2"
+ id="path4528" />
+ </g>
+ <g
+ aria-label="5"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4182">
+ <path
+ d="m 72.405329,31.612124 h 1.024486 v 0.219625 h -0.785482 v 0.472839 q 0.05684,-0.01938 0.113688,-0.02842 0.05684,-0.01034 0.113688,-0.01034 0.322978,0 0.511597,0.176992 0.188619,0.176992 0.188619,0.479299 0,0.31135 -0.193787,0.484466 -0.193786,0.171824 -0.546478,0.171824 -0.12144,0 -0.248047,-0.02067 -0.125315,-0.02067 -0.259674,-0.06201 v -0.262258 q 0.116272,0.0633 0.240295,0.09431 0.124024,0.03101 0.262258,0.03101 0.223501,0 0.353984,-0.117564 0.130483,-0.117564 0.130483,-0.319102 0,-0.201538 -0.130483,-0.319102 -0.130483,-0.117564 -0.353984,-0.117564 -0.104644,0 -0.209289,0.02325 -0.103353,0.02325 -0.211874,0.07235 z"
+ style="stroke-width:0.2"
+ id="path4525" />
+ </g>
+ <g
+ aria-label="6"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4186">
+ <path
+ d="m 85.027779,32.472537 q -0.1757,0 -0.279053,0.120147 -0.102061,0.120148 -0.102061,0.329438 0,0.207997 0.102061,0.329437 0.103353,0.120148 0.279053,0.120148 0.175699,0 0.27776,-0.120148 0.103353,-0.12144 0.103353,-0.329437 0,-0.20929 -0.103353,-0.329438 -0.102061,-0.120147 -0.27776,-0.120147 z m 0.518056,-0.81778 v 0.237712 q -0.09819,-0.04651 -0.198954,-0.07105 -0.09948,-0.02455 -0.197663,-0.02455 -0.258382,0 -0.395324,0.174408 -0.135651,0.174408 -0.15503,0.5271 0.07622,-0.112396 0.191203,-0.171824 0.11498,-0.06072 0.253215,-0.06072 0.290679,0 0.458628,0.176992 0.16924,0.1757 0.16924,0.479299 0,0.297139 -0.1757,0.476715 -0.1757,0.179575 -0.467671,0.179575 -0.334605,0 -0.511597,-0.255798 -0.176992,-0.25709 -0.176992,-0.744141 0,-0.457336 0.217041,-0.728637 0.217041,-0.272593 0.582652,-0.272593 0.09818,0 0.197662,0.01938 0.100769,0.01938 0.20929,0.05814 z"
+ style="stroke-width:0.2"
+ id="path4522" />
+ </g>
+ <g
+ aria-label="7"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4190">
+ <path
+ d="m 96.406103,31.612124 h 1.240234 v 0.111105 l -0.700216,1.817718 h -0.272593 l 0.658875,-1.709198 h -0.9263 z"
+ style="stroke-width:0.2"
+ id="path4519" />
+ </g>
+ <g
+ aria-label="8"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4194">
+ <path
+ d="m 109.06473,32.624982 q -0.18604,0 -0.29327,0.09948 -0.10594,0.09948 -0.10594,0.273885 0,0.174408 0.10594,0.273886 0.10723,0.09948 0.29327,0.09948 0.18603,0 0.29326,-0.09948 0.10723,-0.10077 0.10723,-0.273886 0,-0.174408 -0.10723,-0.273885 -0.10594,-0.09948 -0.29326,-0.09948 z m -0.26097,-0.111104 q -0.16795,-0.04134 -0.26226,-0.156321 -0.093,-0.11498 -0.093,-0.280345 0,-0.231252 0.16408,-0.365611 0.16536,-0.134358 0.45217,-0.134358 0.28809,0 0.45216,0.134358 0.16408,0.134359 0.16408,0.365611 0,0.165365 -0.0943,0.280345 -0.093,0.11498 -0.25968,0.156321 0.18862,0.04393 0.29327,0.171824 0.10593,0.127899 0.10593,0.312642 0,0.280345 -0.17182,0.430207 -0.17053,0.149861 -0.48963,0.149861 -0.31911,0 -0.49093,-0.149861 -0.17053,-0.149862 -0.17053,-0.430207 0,-0.184743 0.10593,-0.312642 0.10594,-0.127899 0.29456,-0.171824 z m -0.0956,-0.41212 q 0,0.149862 0.093,0.233836 0.0943,0.08397 0.26355,0.08397 0.16794,0 0.26225,-0.08397 0.0956,-0.08397 0.0956,-0.233836 0,-0.149861 -0.0956,-0.233835 -0.0943,-0.08398 -0.26225,-0.08398 -0.16925,0 -0.26355,0.08398 -0.093,0.08397 -0.093,0.233835 z"
+ style="stroke-width:0.2"
+ id="path4516" />
+ </g>
+ <g
+ aria-label="9"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4198">
+ <path
+ d="m 120.549,33.500898 v -0.237712 q 0.0982,0.04651 0.19896,0.07106 0.10076,0.02455 0.19766,0.02455 0.25838,0 0.39403,-0.173117 0.13694,-0.174407 0.15632,-0.528391 -0.0749,0.111104 -0.18991,0.170532 -0.11498,0.05943 -0.25451,0.05943 -0.28938,0 -0.45862,-0.174408 -0.16795,-0.1757 -0.16795,-0.479299 0,-0.297139 0.1757,-0.476715 0.1757,-0.179575 0.46767,-0.179575 0.3346,0 0.5103,0.25709 0.177,0.255798 0.177,0.74414 0,0.456045 -0.21705,0.728638 -0.21574,0.271301 -0.58136,0.271301 -0.0982,0 -0.19895,-0.01938 -0.10077,-0.01938 -0.20929,-0.05814 z m 0.51935,-0.81778 q 0.1757,0 0.27776,-0.120147 0.10335,-0.120148 0.10335,-0.329438 0,-0.207997 -0.10335,-0.328145 -0.10206,-0.12144 -0.27776,-0.12144 -0.1757,0 -0.27905,0.12144 -0.10206,0.120148 -0.10206,0.328145 0,0.20929 0.10206,0.329438 0.10335,0.120147 0.27905,0.120147 z"
+ style="stroke-width:0.2"
+ id="path4513" />
+ </g>
+ <g
+ aria-label="10"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4202">
+ <path
+ d="m 131.77876,33.321322 h 0.42633 v -1.471486 l -0.46379,0.09302 v -0.237711 l 0.46121,-0.09302 h 0.26097 v 1.709198 h 0.42633 v 0.219625 h -1.11105 z"
+ style="stroke-width:0.2"
+ id="path4508" />
+ <path
+ d="m 133.9763,31.783948 q -0.20154,0 -0.3036,0.198955 -0.10077,0.197662 -0.10077,0.59557 0,0.396617 0.10077,0.595571 0.10206,0.197663 0.3036,0.197663 0.20283,0 0.3036,-0.197663 0.10206,-0.198954 0.10206,-0.595571 0,-0.397908 -0.10206,-0.59557 -0.10077,-0.198955 -0.3036,-0.198955 z m 0,-0.206705 q 0.32427,0 0.4948,0.25709 0.17183,0.255798 0.17183,0.74414 0,0.487051 -0.17183,0.744141 -0.17053,0.255798 -0.4948,0.255798 -0.32427,0 -0.49609,-0.255798 -0.17053,-0.25709 -0.17053,-0.744141 0,-0.488342 0.17053,-0.74414 0.17182,-0.25709 0.49609,-0.25709 z"
+ style="stroke-width:0.2"
+ id="path4510" />
+ </g>
+ <g
+ aria-label="11"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4206">
+ <path
+ d="m 143.8134,33.321322 h 0.42633 v -1.471486 l -0.4638,0.09302 v -0.237711 l 0.46122,-0.09302 h 0.26096 v 1.709198 h 0.42633 v 0.219625 h -1.11104 z"
+ style="stroke-width:0.2"
+ id="path4503" />
+ <path
+ d="m 145.49805,33.321322 h 0.42633 v -1.471486 l -0.46379,0.09302 v -0.237711 l 0.46121,-0.09302 h 0.26096 v 1.709198 h 0.42634 v 0.219625 h -1.11105 z"
+ style="stroke-width:0.2"
+ id="path4505" />
+ </g>
+ <g
+ aria-label="12"
+ style="font-size:2.64583325px;line-height:1.25;text-align:center;text-anchor:middle;opacity:1;fill:#1a1a1a;fill-opacity:0.63963964;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="text4162">
+ <path
+ d="m 155.84801,33.321322 h 0.42633 v -1.471486 l -0.4638,0.09302 v -0.237711 l 0.46121,-0.09302 h 0.26097 v 1.709198 h 0.42633 v 0.219625 h -1.11104 z"
+ style="stroke-width:0.2"
+ id="path4498" />
+ <path
+ d="m 157.71223,33.321322 h 0.9108 v 0.219625 h -1.22473 v -0.219625 q 0.14857,-0.153737 0.40437,-0.412119 0.25709,-0.259674 0.32298,-0.334605 0.12531,-0.140819 0.1744,-0.237712 0.0504,-0.09819 0.0504,-0.192495 0,-0.153737 -0.10852,-0.25063 -0.10723,-0.09689 -0.28035,-0.09689 -0.12273,0 -0.25967,0.04263 -0.13565,0.04263 -0.29068,0.129192 v -0.26355 q 0.15761,-0.0633 0.29455,-0.0956 0.13695,-0.0323 0.25064,-0.0323 0.29972,0 0.478,0.149861 0.17829,0.149862 0.17829,0.400493 0,0.118855 -0.0452,0.226084 -0.0439,0.105937 -0.16149,0.250631 -0.0323,0.03746 -0.20541,0.217041 -0.17312,0.178283 -0.48835,0.499969 z"
+ style="stroke-width:0.2"
+ id="path4500" />
+ </g>
+ <path
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0"
+ id="path1399"
+ d="m 162.57205,7.3446755 c -0.6816,0 41.10001,0 41.10001,0 v 3.1931955 h -41.17937 v 2.937789 h 32.16809"
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#TriangleOutL)" />
+ </g>
+</svg>