print through web browser (#127)

* spawn a web server and open a printable view of the design in the user's web browser
  * configurable inclusion of client and operator views
  * editable fields for color names, client, title, and purchase order number
  * groundwork laid to save these parameters back into the SVG
* major refactor of codebase to support printing
  * code is organized logically into modules
* added inkstitch logo and branding guidelines
* l10n text extraction now handled by babel
* removed legacy embroider_update extension
* partial fix for #125
pull/123/head^2
Lex Neva 2018-03-30 20:37:11 -04:00 zatwierdzone przez GitHub
rodzic 1279b3ec47
commit 084c5555f2
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
60 zmienionych plików z 4327 dodań i 1732 usunięć

3
.gitignore vendored
Wyświetl plik

@ -1,4 +1,5 @@
.*.swp
*.swp
*.kate-swp
*.pyc
*.spec
*.zip

Wyświetl plik

@ -56,7 +56,7 @@ install:
sudo apt-get install python-gi python-gi-cairo libgirepository1.0-dev
# wxPython doen't publish linux wheels in pypi
wget https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-14.04/wxPython-4.0.0b2-cp27-cp27mu-linux_x86_64.whl
wget -q https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-14.04/wxPython-4.0.0b2-cp27-cp27mu-linux_x86_64.whl
pip install wxPython-4.0.0b2-cp27-cp27mu-linux_x86_64.whl
# We can't use the shapely wheel because it includes the geos

Wyświetl plik

@ -1,4 +1,4 @@
EXTENSIONS:=embroider embroider_params embroider_simulate embroider_update
EXTENSIONS:=embroider embroider_params embroider_simulate embroider_print
# This gets the branch name or the name of the tag
VERSION:=$(TRAVIS_BRANCH)
@ -8,7 +8,9 @@ ARCH:=$(shell uname -m)
dist: distclean locales
bin/build-dist $(EXTENSIONS)
cp *.inx dist
mv locales dist/inkstitch/bin
mkdir -p dist/inkstitch/bin/locales
cp -a locales/* dist/inkstitch/bin/locales
cp -a print dist/inkstitch/bin/
if [ "$$BUILD" = "windows" ]; then \
cd dist; zip -r ../inkstitch-$(VERSION)-win32.zip *; \
else \
@ -20,7 +22,7 @@ distclean:
messages.po:
rm -f messages.po
xgettext --no-location --add-comments embroider*.py inkstitch/__init__.py
pybabel extract -o messages.po -F babel.conf --no-location --add-comments l10n --add-comments L10n --add-comments L10N -s .
.PHONY: messages.po
.PHONY: locales

7
babel.conf 100644
Wyświetl plik

@ -0,0 +1,7 @@
[ignore: libembroidery.py]
[ignore: embroidermodder/**]
[python: **.py]
[jinja2: print/templates/*.html]

Wyświetl plik

@ -29,6 +29,9 @@ fi
# This lets pyinstaller see inkex.py, etc.
pyinstaller_args+="-p inkscape-0.92.2/share/extensions "
# output useful debugging info that helps us trace library dependency issues
pyinstaller_args+="--log-level DEBUG "
mkdir -p dist/inkstitch/bin
for extension in "$@"; do
if [ "$BUILD" = "windows" ]; then

Plik diff jest za duży Load Diff

Wyświetl plik

@ -8,16 +8,17 @@ import traceback
import time
from threading import Thread, Event
from copy import copy
from cStringIO import StringIO
import wx
from wx.lib.scrolledpanel import ScrolledPanel
from collections import defaultdict
import inkex
import inkstitch
from inkstitch import _, Param, EmbroideryElement, get_nodes
from embroider import Fill, AutoFill, Stroke, SatinColumn
from functools import partial
from itertools import groupby
from inkstitch import _
from inkstitch.extensions import InkstitchExtension
from inkstitch.stitch_plan import patches_to_stitch_plan
from inkstitch.elements import EmbroideryElement, Fill, AutoFill, Stroke, SatinColumn
from inkstitch.utils import save_stderr, restore_stderr
from embroider_simulate import EmbroiderySimulator
@ -412,9 +413,10 @@ class SettingsFrame(wx.Frame):
wx.CallAfter(self.refresh_simulator, patches)
def refresh_simulator(self, patches):
stitch_plan = patches_to_stitch_plan(patches)
if self.simulate_window:
self.simulate_window.stop()
self.simulate_window.load(patches=patches)
self.simulate_window.load(stitch_plan=stitch_plan)
else:
my_rect = self.GetRect()
simulator_pos = my_rect.GetTopRight()
@ -428,7 +430,7 @@ class SettingsFrame(wx.Frame):
self.simulate_window = EmbroiderySimulator(None, -1, _("Preview"),
simulator_pos,
size=(300, 300),
patches=patches,
stitch_plan=stitch_plan,
on_close=self.simulate_window_closed,
target_duration=5,
max_width=max_width,
@ -631,10 +633,10 @@ class SettingsFrame(wx.Frame):
self.Layout()
# end wxGlade
class EmbroiderParams(inkex.Effect):
class EmbroiderParams(InkstitchExtension):
def __init__(self, *args, **kwargs):
self.cancelled = False
inkex.Effect.__init__(self, *args, **kwargs)
InkstitchExtension.__init__(self, *args, **kwargs)
def embroidery_classes(self, node):
element = EmbroideryElement(node)
@ -653,7 +655,7 @@ class EmbroiderParams(inkex.Effect):
return classes
def get_nodes_by_class(self):
nodes = get_nodes(self)
nodes = self.get_nodes()
nodes_by_class = defaultdict(list)
for z, node in enumerate(nodes):
@ -755,21 +757,6 @@ class EmbroiderParams(inkex.Effect):
sys.exit(0)
def save_stderr():
# GTK likes to spam stderr, which inkscape will show in a dialog.
null = open(os.devnull, 'w')
sys.stderr_dup = os.dup(sys.stderr.fileno())
os.dup2(null.fileno(), 2)
sys.stderr_backup = sys.stderr
sys.stderr = StringIO()
def restore_stderr():
os.dup2(sys.stderr_dup, 2)
sys.stderr_backup.write(sys.stderr.getvalue())
sys.stderr = sys.stderr_backup
# end of class MyFrame
if __name__ == "__main__":
save_stderr()

Wyświetl plik

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<_name>Update embroidery param names</_name>
<id>lexelby.embroider.update</id>
<dependency type="executable" location="extensions">embroider_update.py</dependency>
<_name>Print</_name>
<id>jonh.embroider.print</id>
<dependency type="executable" location="extensions">embroider_print.py</dependency>
<dependency type="executable" location="extensions">inkex.py</dependency>
<effect>
<object-type>all</object-type>
@ -11,6 +11,6 @@
</effects-menu>
</effect>
<script>
<command reldir="extensions" interpreter="python">embroider_update.py</command>
<command reldir="extensions" interpreter="python">embroider_print.py</command>
</script>
</inkscape-extension>

321
embroider_print.py 100644
Wyświetl plik

@ -0,0 +1,321 @@
#!/usr/bin/python
#
import sys
import traceback
import os
from threading import Thread
import socket
import errno
import time
import logging
import wx
import inkex
import inkstitch
from inkstitch import _, PIXELS_PER_MM, SVG_GROUP_TAG
from inkstitch.extensions import InkstitchExtension
from inkstitch.stitch_plan import patches_to_stitch_plan
from inkstitch.svg import render_stitch_plan
from inkstitch.utils import save_stderr, restore_stderr
from jinja2 import Environment, FileSystemLoader, select_autoescape
from datetime import date
import base64
from flask import Flask, request, Response, send_from_directory
import webbrowser
import requests
def datetimeformat(value, format='%Y/%m/%d'):
return value.strftime(format)
def open_url(url):
# Avoid spurious output from xdg-open. Any output on stdout will crash
# inkscape.
null = open(os.devnull, 'w')
old_stdout = os.dup(sys.stdout.fileno())
os.dup2(null.fileno(), sys.stdout.fileno())
if getattr(sys, 'frozen', False):
# PyInstaller sets LD_LIBRARY_PATH. We need to temporarily clear it
# to avoid confusing xdg-open, which webbrowser will run.
# The following code is adapted from PyInstaller's documentation
# http://pyinstaller.readthedocs.io/en/stable/runtime-information.html
old_environ = dict(os.environ) # make a copy of the environment
lp_key = 'LD_LIBRARY_PATH' # for Linux and *BSD.
lp_orig = os.environ.get(lp_key + '_ORIG') # pyinstaller >= 20160820 has this
if lp_orig is not None:
os.environ[lp_key] = lp_orig # restore the original, unmodified value
else:
os.environ.pop(lp_key, None) # last resort: remove the env var
webbrowser.open(url)
# restore the old environ
os.environ.clear()
os.environ.update(old_environ)
else:
webbrowser.open(url)
# restore file descriptors
os.dup2(old_stdout, sys.stdout.fileno())
os.close(old_stdout)
class PrintPreviewServer(Thread):
def __init__(self, *args, **kwargs):
self.html = kwargs.pop('html')
Thread.__init__(self, *args, **kwargs)
self.daemon = True
self.last_request_time = None
self.shutting_down = False
self.__setup_app()
def __set_resources_path(self):
if getattr(sys, 'frozen', False):
self.resources_path = os.path.join(sys._MEIPASS, 'print', 'resources')
else:
self.resources_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'print', 'resources')
def __setup_app(self):
self.__set_resources_path()
self.app = Flask(__name__)
@self.app.before_request
def request_started():
self.last_request_time = time.time()
@self.app.before_first_request
def start_watcher():
self.watcher_thread = Thread(target=self.watch)
self.watcher_thread.daemon = True
self.watcher_thread.start()
@self.app.route('/')
def index():
return self.html
@self.app.route('/shutdown', methods=['POST'])
def shutdown():
self.shutting_down = True
request.environ.get('werkzeug.server.shutdown')()
return 'Server shutting down...'
@self.app.route('/resources/<path:resource>', methods=['GET'])
def resources(resource):
return send_from_directory(self.resources_path, resource, cache_timeout=1)
@self.app.route('/ping')
def ping():
# Javascript is letting us know it's still there. This resets self.last_request_time.
return "pong"
@self.app.route('/printing/start')
def printing_start():
# temporarily turn off the watcher while the print dialog is up,
# because javascript will be frozen
self.last_request_time = None
return "OK"
@self.app.route('/printing/end')
def printing_end():
# nothing to do here -- request_started() will restart the watcher
return "OK"
def stop(self):
# for whatever reason, shutting down only seems possible in
# the context of a flask request, so we'll just make one
requests.post("http://%s:%s/shutdown" % (self.host, self.port))
def watch(self):
try:
while True:
time.sleep(1)
if self.shutting_down:
break
if self.last_request_time is not None and \
(time.time() - self.last_request_time) > 3:
self.stop()
break
except:
# seems like sometimes this thread blows up during shutdown
pass
def disable_logging(self):
logging.getLogger('werkzeug').setLevel(logging.ERROR)
def run(self):
self.disable_logging()
self.host = "127.0.0.1"
self.port = 5000
while True:
try:
self.app.run(self.host, self.port, threaded=True)
except socket.error, e:
if e.errno == errno.EADDRINUSE:
self.port += 1
continue
else:
raise
else:
break
class PrintInfoFrame(wx.Frame):
def __init__(self, *args, **kwargs):
self.print_server = kwargs.pop("print_server")
wx.Frame.__init__(self, *args, **kwargs)
panel = wx.Panel(self)
sizer = wx.BoxSizer(wx.VERTICAL)
text = wx.StaticText(panel, label=_("A print preview has been opened in your web browser. This window will stay open in order to communicate with the JavaScript code running in your browser.\n\nThis window will close after you close the print preview in your browser, or you can close it manually if necessary."))
font = wx.Font(14, wx.DEFAULT, wx.NORMAL, wx.NORMAL)
text.SetFont(font)
sizer.Add(text, proportion=1, flag=wx.ALL|wx.EXPAND, border=20)
stop_button = wx.Button(panel, id=wx.ID_CLOSE)
stop_button.Bind(wx.EVT_BUTTON, self.close_button_clicked)
sizer.Add(stop_button, proportion=0, flag=wx.ALIGN_CENTER|wx.ALL, border=10)
panel.SetSizer(sizer)
panel.Layout()
self.timer = wx.PyTimer(self.__watcher)
self.timer.Start(250)
def close_button_clicked(self, event):
self.print_server.stop()
def __watcher(self):
if not self.print_server.is_alive():
self.timer.Stop()
self.timer = None
self.Destroy()
class Print(InkstitchExtension):
def build_environment(self):
if getattr( sys, 'frozen', False ) :
template_dir = os.path.join(sys._MEIPASS, "print", "templates")
else:
template_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "print", "templates")
env = Environment(
loader = FileSystemLoader(template_dir),
autoescape=select_autoescape(['html', 'xml']),
extensions=['jinja2.ext.i18n']
)
env.filters['datetimeformat'] = datetimeformat
env.install_gettext_translations(inkstitch.translation)
return env
def strip_namespaces(self):
# namespace prefixes seem to trip up HTML, so get rid of them
for element in self.document.iter():
if element.tag[0]=='{':
element.tag = element.tag[element.tag.index('}',1) + 1:]
def effect(self):
# It doesn't really make sense to print just a couple of selected
# objects. It's almost certain they meant to print the whole design.
# If they really wanted to print just a few objects, they could set
# the rest invisible temporarily.
self.selected = {}
if not self.get_elements():
return
self.hide_all_layers()
patches = self.elements_to_patches(self.elements)
stitch_plan = patches_to_stitch_plan(patches)
render_stitch_plan(self.document.getroot(), stitch_plan)
self.strip_namespaces()
# Now the stitch plan layer will contain a set of groups, each
# corresponding to a color block. We'll create a set of SVG files
# corresponding to each individual color block and a final one
# for all color blocks together.
svg = self.document.getroot()
layers = svg.findall("./g[@{http://www.inkscape.org/namespaces/inkscape}groupmode='layer']")
stitch_plan_layer = svg.find(".//*[@id='__inkstitch_stitch_plan__']")
# First, delete all of the other layers. We don't need them and they'll
# just bulk up the SVG.
for layer in layers:
if layer is not stitch_plan_layer:
svg.remove(layer)
overview_svg = inkex.etree.tostring(self.document)
color_block_groups = stitch_plan_layer.getchildren()
for i, group in enumerate(color_block_groups):
# clear the stitch plan layer
del stitch_plan_layer[:]
# add in just this group
stitch_plan_layer.append(group)
# save an SVG preview
stitch_plan.color_blocks[i].svg_preview = inkex.etree.tostring(self.document)
env = self.build_environment()
template = env.get_template('index.html')
html = template.render(
view = {'client_overview': False, 'client_detailedview': False, 'operator_overview': True, 'operator_detailedview': True},
logo = {'src' : '', 'title' : 'LOGO'},
date = date.today(),
client = "",
job = {
'title': '',
'num_colors': stitch_plan.num_colors,
'num_color_blocks': len(stitch_plan),
'num_stops': stitch_plan.num_stops,
'num_trims': stitch_plan.num_trims,
'dimensions': stitch_plan.dimensions_mm,
'num_stitches': stitch_plan.num_stitches,
'estimated_time': '', # TODO
'estimated_thread': '', # TODO
},
svg_overview = overview_svg,
svg_scale = '100%',
color_blocks = stitch_plan.color_blocks,
)
print_server = PrintPreviewServer(html=html)
print_server.start()
time.sleep(1)
open_url("http://%s:%s/" % (print_server.host, print_server.port))
app = wx.App()
info_frame = PrintInfoFrame(None, title=_("Ink/Stitch Print"), size=(450, 350), print_server=print_server)
info_frame.Show()
app.MainLoop()
# don't let inkex print the document out
sys.exit(0)
if __name__ == '__main__':
save_stderr()
effect = Print()
effect.affect()
restore_stderr()

Wyświetl plik

@ -5,16 +5,18 @@ import wx
import inkex
import simplestyle
import colorsys
from itertools import izip
import inkstitch
from inkstitch.extensions import InkstitchExtension
from inkstitch import PIXELS_PER_MM
from embroider import _, patches_to_stitches, get_elements, elements_to_patches
from inkstitch.stitch_plan import patches_to_stitch_plan
from inkstitch.svg import color_block_to_point_lists
class EmbroiderySimulator(wx.Frame):
def __init__(self, *args, **kwargs):
stitch_file = kwargs.pop('stitch_file', None)
patches = kwargs.pop('patches', None)
stitch_plan = kwargs.pop('stitch_plan', None)
self.on_close_hook = kwargs.pop('on_close', None)
self.frame_period = kwargs.pop('frame_period', 80)
self.stitches_per_frame = kwargs.pop('stitches_per_frame', 1)
@ -32,7 +34,7 @@ class EmbroiderySimulator(wx.Frame):
self.panel = wx.Panel(self, wx.ID_ANY)
self.panel.SetFocus()
self.load(stitch_file, patches)
self.load(stitch_plan)
if self.target_duration:
self.adjust_speed(self.target_duration)
@ -54,13 +56,10 @@ class EmbroiderySimulator(wx.Frame):
self.Bind(wx.EVT_CLOSE, self.on_close)
def load(self, stitch_file=None, patches=None):
if stitch_file:
self.mirror = True
self.segments = self._parse_stitch_file(stitch_file)
elif patches:
def load(self, stitch_plan=None):
if stitch_plan:
self.mirror = False
self.segments = self._patches_to_segments(patches)
self.segments = self._stitch_plan_to_segments(stitch_plan)
else:
return
@ -114,55 +113,21 @@ class EmbroiderySimulator(wx.Frame):
return string
def color_to_pen(self, color):
# python colorsys module uses floats from 0 to 1.0
color = [value / 255.0 for value in color]
hls = list(colorsys.rgb_to_hls(*color))
# Our background is white. If the color is too close to white, then
# it won't be visible. Capping lightness should make colors visible
# without changing them too much.
hls[1] = min(hls[1], 0.85)
color = colorsys.hls_to_rgb(*hls)
# convert back to values in the range of 0-255
color = [value * 255 for value in color]
return wx.Pen(color)
def _patches_to_segments(self, patches):
stitches = patches_to_stitches(patches)
return wx.Pen(color.visible_on_white.rgb)
def _stitch_plan_to_segments(self, stitch_plan):
segments = []
last_pos = None
last_color = None
pen = None
trimming = False
for color_block in stitch_plan:
pen = self.color_to_pen(color_block.color)
for stitch in stitches:
if stitch.trim:
trimming = True
last_pos = None
continue
if trimming:
if stitch.jump:
for point_list in color_block_to_point_lists(color_block):
# if there's only one point, there's nothing to do, so skip
if len(point_list) < 2:
continue
else:
trimming = False
pos = (stitch.x, stitch.y)
if stitch.color == last_color:
if last_pos:
segments.append(((last_pos, pos), pen))
else:
pen = self.color_to_pen(simplestyle.parseColor(stitch.color))
last_pos = pos
last_color = stitch.color
for start, end in izip(point_list[:-1], point_list[1:]):
segments.append(((start, end), pen))
return segments
@ -292,18 +257,22 @@ class EmbroiderySimulator(wx.Frame):
except IndexError:
self.timer.Stop()
class SimulateEffect(inkex.Effect):
class SimulateEffect(InkstitchExtension):
def __init__(self):
inkex.Effect.__init__(self)
InkstitchExtension.__init__(self)
self.OptionParser.add_option("-P", "--path",
action="store", type="string",
dest="path", default=".",
help="Directory in which to store output file")
def effect(self):
patches = elements_to_patches(get_elements(self))
if not self.get_elements():
return
patches = self.elements_to_patches(self.elements)
stitch_plan = patches_to_stitch_plan(patches)
app = wx.App()
frame = EmbroiderySimulator(None, -1, _("Embroidery Simulation"), wx.DefaultPosition, size=(1000, 1000), patches=patches)
frame = EmbroiderySimulator(None, -1, _("Embroidery Simulation"), wx.DefaultPosition, size=(1000, 1000), stitch_plan=stitch_plan)
app.SetTopWindow(frame)
frame.Show()
wx.CallAfter(frame.go)

Wyświetl plik

@ -1,55 +0,0 @@
#!/usr/bin/python
#
# Update embroidery parameters stored in XML attributes from old to new
# format.
import sys
sys.path.append("/usr/share/inkscape/extensions")
import os
import inkex
import simplestyle
PIXELS_PER_MM = 10
class EmbroiderParams(inkex.Effect):
def __init__(self, *args, **kwargs):
inkex.Effect.__init__(self)
self.mapping = {"zigzag_spacing": "zigzag_spacing_mm",
"row_spacing": "row_spacing_mm",
"pull_compensation": "pull_compensation_mm",
"max_stitch_length": "max_stitch_length_mm",
"satin_underlay": "contour_underlay",
"satin_underlay_inset": "contour_underlay_inset_mm",
"satin_zigzag_underlay_spacing": "zigzag_underlay_spacing_mm",
"satin_center_walk": "center_walk_underlay",
"stitch_length": "running_stitch_length_mm",
}
def effect(self):
for node in self.document.getroot().iter():
for old, new in self.mapping.iteritems():
old = "embroider_%s" % old
new = "embroider_%s" % new
value = node.attrib.pop(old, None)
if value:
if new.endswith('_mm') and value.strip():
value = str(float(value) / PIXELS_PER_MM)
node.set(new, value)
if 'embroider_zigzag_underlay_spacing_mm' in node.attrib:
node.set('embroider_zigzag_underlay', 'yes')
style = simplestyle.parseStyle(node.get('style'))
if style.get('fill', 'none') != 'none' and \
'embroider_auto_fill' not in node.attrib:
node.set('embroider_auto_fill', 'no')
if __name__ == '__main__':
e = EmbroiderParams()
e.affect()

Wyświetl plik

@ -0,0 +1 @@
This directory contains the official Ink/Stitch logo and a companion branding guide. Note that these are plain SVGs and are not embroidery designs.

Wyświetl plik

@ -0,0 +1,705 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Creator: CorelDRAW X7 -->
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="406.913mm" height="360mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 406913 360000"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style type="text/css">
<![CDATA[
.str0 {stroke:#4D4D4D;stroke-width:300}
.str1 {stroke:white;stroke-width:300}
.fil13 {fill:none}
.fil5 {fill:black}
.fil4 {fill:#003399}
.fil10 {fill:gray}
.fil3 {fill:#B2B3B3}
.fil1 {fill:#CCCCCC}
.fil0 {fill:#E6E6E6}
.fil2 {fill:#FEFEFE}
.fil9 {fill:#FFB400}
.fil6 {fill:white}
.fil12 {fill:white}
.fil11 {fill:#2B2A29;fill-rule:nonzero}
.fil14 {fill:#333333;fill-rule:nonzero}
.fil7 {fill:#666666;fill-rule:nonzero}
.fil8 {fill:white;fill-rule:nonzero}
]]>
</style>
</defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"/>
<rect class="fil0" width="406913" height="360000"/>
<rect class="fil1" x="107972" y="238212" width="288951" height="89667"/>
<rect class="fil2" x="9990" y="238212" width="92987" height="89667"/>
<rect class="fil2" x="107972" y="238212" width="92987" height="89667"/>
<rect class="fil2" x="9990" y="332343" width="92987" height="14985"/>
<rect class="fil2" x="107972" y="332343" width="288951" height="14985"/>
<rect class="fil2" x="9990" y="218232" width="190969" height="14985"/>
<rect class="fil3" x="303936" y="104121" width="92987" height="14985"/>
<rect class="fil4" x="205954" y="104121" width="92987" height="14985"/>
<rect class="fil5" x="205954" y="218232" width="190969" height="14985"/>
<rect class="fil3" x="9990" y="104121" width="190969" height="14985"/>
<rect class="fil2" x="9990" y="124101" width="92987" height="89667"/>
<rect class="fil1" x="107972" y="124101" width="92987" height="89667"/>
<rect class="fil1" x="303936" y="9990" width="92987" height="89667"/>
<rect class="fil6" x="205954" y="9990" width="92987" height="89667"/>
<g id="_750756064">
<rect class="fil3" x="205954" y="124101" width="92987" height="89667"/>
<rect class="fil5" x="303936" y="124101" width="92987" height="89667"/>
</g>
<polygon class="fil4" points="91448,289666 91448,275917 91752,275917 100043,283688 100043,276350 102977,276350 102977,290174 102701,290174 94382,282403 94382,289666 "/>
<polygon class="fil4" points="62248,238212 62248,251960 61944,251960 53653,244190 53653,251528 50719,251528 50719,237704 50995,237704 59314,245475 59314,238212 "/>
<polygon class="fil4" points="62248,314563 62248,328312 61944,328312 53653,320541 53653,327879 50719,327879 50719,314055 50995,314055 59314,321826 59314,314563 "/>
<polygon class="fil4" points="9990,289666 9990,275917 10294,275917 18585,283688 18585,276350 21519,276350 21519,290174 21243,290174 12924,282403 12924,289666 "/>
<path class="fil7" d="M19983 342796c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l431 0c56,0 84,29 84,85l0 5278c0,22 12,34 34,34l1937 0c57,0 85,28 85,84l0 355c0,57 -28,85 -85,85l-2486 0z"/>
<path id="1" class="fil7" d="M24550 342864c-434,0 -785,-136 -1053,-406 -268,-271 -402,-629 -402,-1074l0 -3096c0,-446 134,-804 402,-1074 268,-271 619,-406 1053,-406 440,0 795,135 1066,406 270,270 406,628 406,1074l0 3096c0,439 -136,796 -406,1069 -271,274 -626,411 -1066,411zm0 -525c259,0 469,-86 630,-258 161,-172 241,-393 241,-664l0 -3154c0,-277 -80,-501 -241,-673 -161,-172 -371,-258 -630,-258 -254,0 -460,86 -618,258 -157,172 -236,396 -236,673l0 3154c0,271 79,492 236,664 158,172 364,258 618,258z"/>
<path id="2" class="fil7" d="M28390 342864c-434,0 -781,-129 -1041,-385 -259,-257 -389,-599 -389,-1028l0 -3231c0,-428 130,-771 389,-1027 260,-257 607,-385 1041,-385 434,0 782,129 1044,389 263,259 394,603 394,1032l0 363c0,57 -28,85 -85,85l-431 0c-57,0 -85,-28 -85,-85l0 -380c0,-265 -76,-478 -228,-639 -152,-161 -355,-241 -609,-241 -248,0 -450,82 -605,245 -155,164 -233,375 -233,635l0 3248c0,259 78,471 233,634 155,164 357,245 605,245 254,0 457,-80 609,-241 152,-160 228,-373 228,-638l0 -1083c0,-23 -11,-34 -34,-34l-727 0c-56,0 -85,-28 -85,-84l0 -356c0,-56 29,-84 85,-84l1277 0c57,0 85,28 85,84l0 1548c0,429 -131,771 -394,1028 -262,256 -610,385 -1044,385z"/>
<path id="3" class="fil7" d="M32171 342864c-435,0 -786,-136 -1053,-406 -268,-271 -402,-629 -402,-1074l0 -3096c0,-446 134,-804 402,-1074 267,-271 618,-406 1053,-406 439,0 795,135 1065,406 271,270 406,628 406,1074l0 3096c0,439 -135,796 -406,1069 -270,274 -626,411 -1065,411zm0 -525c259,0 469,-86 630,-258 160,-172 241,-393 241,-664l0 -3154c0,-277 -81,-501 -241,-673 -161,-172 -371,-258 -630,-258 -254,0 -460,86 -618,258 -158,172 -237,396 -237,673l0 3154c0,271 79,492 237,664 158,172 364,258 618,258z"/>
<path id="4" class="fil7" d="M37635 342864c-418,0 -756,-138 -1015,-415 -260,-276 -389,-637 -389,-1082l0 -203c0,-57 28,-85 84,-85l423 0c56,0 85,28 85,85l0 177c0,299 76,540 228,723 152,184 347,275 584,275 236,0 434,-87 592,-262 158,-175 236,-406 236,-693 0,-192 -38,-357 -114,-495 -76,-138 -175,-260 -296,-364 -121,-104 -323,-264 -605,-478 -281,-208 -504,-387 -668,-537 -163,-149 -297,-328 -401,-537 -105,-209 -157,-454 -157,-736 0,-440 127,-788 381,-1044 253,-257 583,-385 989,-385 429,0 771,139 1028,418 256,280 385,650 385,1113l0 211c0,56 -28,85 -85,85l-423 0c-56,0 -84,-29 -84,-85l0 -220c0,-299 -75,-540 -224,-723 -150,-183 -349,-275 -597,-275 -225,0 -411,80 -558,241 -147,161 -220,388 -220,681 0,175 33,329 97,461 65,133 163,258 292,376 130,119 322,274 575,466 339,248 591,449 757,604 167,155 295,325 385,508 90,183 136,404 136,664 0,462 -133,833 -398,1112 -265,279 -606,419 -1023,419z"/>
<path id="5" class="fil7" d="M42439 342796c-51,0 -82,-25 -93,-76l-212 -1049c0,-11 -4,-20 -12,-25 -9,-6 -19,-9 -30,-9l-1531 0c-11,0 -21,3 -29,9 -9,5 -13,14 -13,25l-220 1049c-6,51 -37,76 -93,76l-431 0c-29,0 -50,-8 -64,-25 -14,-17 -18,-40 -13,-68l1278 -5751c11,-51 42,-77 93,-77l507 0c56,0 87,26 93,77l1286 5751 0 17c0,51 -26,76 -76,76l-440 0zm-1802 -1683c0,22 9,34 26,34l1328 0c16,0 25,-12 25,-34l-668 -3256c-6,-17 -12,-26 -17,-26 -6,0 -11,9 -17,26l-677 3256z"/>
<path id="6" class="fil7" d="M46524 337315c0,57 -28,85 -85,85l-1945 0c-22,0 -34,11 -34,34l0 2097c0,23 12,34 34,34l1227 0c56,0 84,28 84,85l0 363c0,57 -28,85 -84,85l-1227 0c-22,0 -34,11 -34,34l0 2579c0,57 -28,85 -84,85l-432 0c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l2495 0c57,0 85,29 85,85l0 355z"/>
<path id="7" class="fil7" d="M49958 337315c0,57 -28,85 -85,85l-1962 0c-22,0 -34,11 -34,34l0 2097c0,23 12,34 34,34l1235 0c56,0 85,28 85,85l0 363c0,57 -29,85 -85,85l-1235 0c-22,0 -34,11 -34,34l0 2106c0,22 12,34 34,34l1962 0c57,0 85,28 85,84l0 355c0,57 -28,85 -85,85l-2512 0c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l2512 0c57,0 85,29 85,85l0 355z"/>
<path id="8" class="fil7" d="M53502 336875c56,0 85,29 85,85l0 355c0,57 -29,85 -85,85l-1116 0c-23,0 -34,11 -34,34l0 5277c0,57 -29,85 -85,85l-431 0c-57,0 -85,-28 -85,-85l0 -5277c0,-23 -11,-34 -34,-34l-1048 0c-57,0 -85,-28 -85,-85l0 -355c0,-56 28,-85 85,-85l2833 0z"/>
<path id="9" class="fil7" d="M55456 342788c-57,0 -85,-29 -85,-85l0 -2529c0,-23 -3,-37 -8,-42l-1176 -3155 -8 -34c0,-45 25,-68 76,-68l457 0c50,0 84,23 101,68l829 2478c6,12 14,17 25,17 12,0 20,-5 26,-17l829 -2478c16,-45 50,-68 101,-68l457 0c28,0 49,10 63,30 14,20 16,44 4,72l-1167 3155c-5,5 -8,19 -8,42l0 2529c0,56 -28,85 -85,85l-431 0z"/>
<path id="10" class="fil7" d="M59837 342796c-56,0 -85,-28 -85,-85l0 -5751c0,-56 29,-85 85,-85l440 0c45,0 76,23 93,68l947 2292c6,11 14,17 26,17 11,0 19,-6 25,-17l956 -2292c17,-45 48,-68 93,-68l440 0c56,0 84,29 84,85l0 5751c0,57 -28,85 -84,85l-432 0c-56,0 -84,-28 -84,-85l0 -4330c0,-17 -6,-25 -17,-25 -12,0 -20,5 -26,16l-862 1963c-17,45 -43,67 -76,67 -40,0 -68,-22 -85,-67l-880 -1971c-5,-11 -14,-17 -25,-17 -11,0 -17,9 -17,25l0 4339c0,57 -28,85 -85,85l-431 0z"/>
<path id="11" class="fil7" d="M66697 342796c-51,0 -82,-25 -93,-76l-212 -1049c0,-11 -4,-20 -13,-25 -8,-6 -18,-9 -29,-9l-1531 0c-11,0 -21,3 -30,9 -8,5 -12,14 -12,25l-220 1049c-6,51 -37,76 -93,76l-432 0c-28,0 -49,-8 -63,-25 -14,-17 -18,-40 -13,-68l1277 -5751c12,-51 43,-77 93,-77l508 0c56,0 87,26 93,77l1286 5751 0 17c0,51 -26,76 -77,76l-439 0zm-1802 -1683c0,22 8,34 25,34l1328 0c17,0 26,-12 26,-34l-668 -3256c-6,-17 -12,-26 -17,-26 -6,0 -12,9 -17,26l-677 3256z"/>
<path id="12" class="fil7" d="M70486 342796c-51,0 -85,-23 -102,-68l-871 -2630c-6,-17 -17,-25 -34,-25l-727 0c-23,0 -34,11 -34,33l0 2605c0,57 -28,85 -85,85l-431 0c-56,0 -84,-28 -84,-85l0 -5759c0,-57 28,-85 84,-85l1396 0c411,0 744,149 998,448 253,299 380,691 380,1176 0,372 -79,691 -236,956 -158,265 -373,448 -643,549 -23,6 -31,20 -26,43l922 2664 9 34c0,39 -26,59 -76,59l-440 0zm-1734 -5405c-23,0 -34,12 -34,34l0 2132c0,22 11,33 34,33l761 0c260,0 468,-100 626,-300 158,-200 237,-464 237,-791 0,-338 -79,-607 -237,-807 -158,-201 -366,-301 -626,-301l-761 0z"/>
<path id="13" class="fil7" d="M73159 342864c-435,0 -781,-129 -1041,-385 -259,-257 -389,-599 -389,-1028l0 -3231c0,-428 130,-771 389,-1027 260,-257 606,-385 1041,-385 434,0 782,129 1044,389 262,259 393,603 393,1032l0 363c0,57 -28,85 -84,85l-432 0c-56,0 -84,-28 -84,-85l0 -380c0,-265 -76,-478 -228,-639 -153,-161 -356,-241 -609,-241 -249,0 -450,82 -605,245 -155,164 -233,375 -233,635l0 3248c0,259 78,471 233,634 155,164 356,245 605,245 253,0 456,-80 609,-241 152,-160 228,-373 228,-638l0 -1083c0,-23 -11,-34 -34,-34l-727 0c-57,0 -85,-28 -85,-84l0 -356c0,-56 28,-84 85,-84l1277 0c56,0 84,28 84,84l0 1548c0,429 -131,771 -393,1028 -262,256 -610,385 -1044,385z"/>
<path id="14" class="fil7" d="M75713 342796c-56,0 -85,-28 -85,-85l0 -5751c0,-56 29,-85 85,-85l431 0c57,0 85,29 85,85l0 5751c0,57 -28,85 -85,85l-431 0z"/>
<path id="15" class="fil7" d="M77531 342796c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l449 0c45,0 76,23 93,68l1700 4263c5,17 14,25 25,25 11,0 17,-8 17,-25l0 -4246c0,-56 28,-85 85,-85l423 0c56,0 84,29 84,85l0 5751c0,57 -28,85 -84,85l-449 0c-45,0 -76,-23 -93,-68l-1700 -4262c-5,-17 -14,-24 -25,-22 -11,3 -17,13 -17,30l8 4237c0,57 -28,85 -84,85l-432 0z"/>
<path id="16" class="fil7" d="M82843 342864c-417,0 -756,-138 -1015,-415 -259,-276 -389,-637 -389,-1082l0 -203c0,-57 28,-85 85,-85l422 0c57,0 85,28 85,85l0 177c0,299 76,540 228,723 153,184 347,275 584,275 237,0 434,-87 592,-262 158,-175 237,-406 237,-693 0,-192 -38,-357 -114,-495 -76,-138 -175,-260 -296,-364 -121,-104 -323,-264 -605,-478 -282,-208 -505,-387 -668,-537 -164,-149 -298,-328 -402,-537 -104,-209 -156,-454 -156,-736 0,-440 126,-788 380,-1044 254,-257 584,-385 990,-385 428,0 771,139 1027,418 257,280 385,650 385,1113l0 211c0,56 -28,85 -84,85l-423 0c-57,0 -85,-29 -85,-85l0 -220c0,-299 -75,-540 -224,-723 -149,-183 -348,-275 -596,-275 -226,0 -412,80 -558,241 -147,161 -220,388 -220,681 0,175 32,329 97,461 65,133 162,258 292,376 129,119 321,274 575,466 338,248 591,449 757,604 166,155 294,325 385,508 90,183 135,404 135,664 0,462 -132,833 -398,1112 -265,279 -606,419 -1023,419z"/>
<path id="17" class="fil7" d="M86607 337916c-34,0 -56,-10 -68,-30 -11,-20 -8,-44 9,-72l524 -922c28,-39 62,-59 102,-59l397 0c34,0 55,10 64,30 8,19 4,43 -13,72l-592 922c-28,39 -62,59 -102,59l-321 0z"/>
<path id="18" class="fil7" d="M88569 342796c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l448 0c46,0 77,23 94,68l1700 4263c5,17 14,25 25,25 11,0 17,-8 17,-25l0 -4246c0,-56 28,-85 84,-85l423 0c57,0 85,29 85,85l0 5751c0,57 -28,85 -85,85l-448 0c-45,0 -76,-23 -93,-68l-1700 -4262c-6,-17 -14,-24 -25,-22 -12,3 -17,13 -17,30l8 4237c0,57 -28,85 -84,85l-432 0z"/>
<path id="19" class="fil7" d="M92984 336875c62,0 85,31 68,93l-499 1574c-17,45 -51,67 -102,67l-313 0c-62,0 -84,-31 -67,-93l380 -1564c12,-51 43,-77 93,-77l440 0z"/>
<path class="fil7" d="M44600 227061c6,507 -130,902 -406,1184 -276,282 -646,423 -1108,423l-1294 0c-56,0 -85,-28 -85,-85l0 -5751c0,-56 29,-85 85,-85l1218 0c485,0 866,134 1142,402 276,268 414,650 414,1146 0,632 -234,1063 -702,1294 -11,6 -17,12 -17,17 0,6 3,11 9,17 496,288 744,767 744,1438zm-2258 -3789c-23,0 -34,11 -34,34l0 2038c0,23 11,34 34,34l668 0c304,0 541,-90 710,-271 170,-180 254,-434 254,-761 0,-338 -84,-602 -254,-791 -169,-189 -406,-283 -710,-283l-668 0zm702 4863c299,0 533,-100 702,-300 169,-200 254,-481 254,-842 0,-366 -85,-651 -254,-854 -169,-203 -403,-304 -702,-304l-702 0c-23,0 -34,11 -34,33l0 2233c0,23 11,34 34,34l702 0z"/>
<path id="1" class="fil7" d="M45590 228668c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l431 0c56,0 85,29 85,85l0 5278c0,22 11,34 33,34l1937 0c57,0 85,28 85,84l0 355c0,57 -28,85 -85,85l-2486 0z"/>
<path id="2" class="fil7" d="M51646 228668c-51,0 -82,-25 -93,-76l-212 -1049c0,-11 -4,-20 -12,-25 -9,-6 -19,-9 -30,-9l-1531 0c-11,0 -21,3 -30,9 -8,5 -12,14 -12,25l-220 1049c-6,51 -37,76 -93,76l-432 0c-28,0 -49,-8 -63,-25 -14,-17 -18,-40 -13,-68l1277 -5751c12,-51 43,-77 93,-77l508 0c56,0 87,26 93,77l1286 5751 0 17c0,51 -26,76 -76,76l-440 0zm-1802 -1683c0,22 9,34 26,34l1327 0c17,0 26,-12 26,-34l-668 -3256c-6,-17 -12,-26 -17,-26 -6,0 -12,9 -17,26l-677 3256z"/>
<path id="3" class="fil7" d="M54268 228736c-434,0 -783,-133 -1045,-398 -262,-265 -393,-620 -393,-1066l0 -3137c0,-440 131,-793 393,-1058 262,-265 611,-397 1045,-397 440,0 791,131 1053,393 262,262 393,616 393,1062l0 143c0,57 -28,85 -85,85l-439 25c-57,0 -85,-28 -85,-84l0 -212c0,-265 -76,-479 -228,-643 -153,-163 -356,-245 -609,-245 -248,0 -450,82 -605,245 -155,164 -233,378 -233,643l0 3231c0,265 78,480 233,643 155,164 357,245 605,245 253,0 456,-81 609,-245 152,-163 228,-378 228,-643l0 -211c0,-57 28,-85 85,-85l439 26c57,0 85,28 85,84l0 135c0,446 -132,801 -397,1066 -265,265 -615,398 -1049,398z"/>
<path id="4" class="fil7" d="M56831 228668c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l431 0c56,0 84,29 84,85l0 2740c0,17 6,29 17,34 12,6 20,0 26,-17l1632 -2782c28,-40 62,-60 102,-60l473 0c34,0 57,10 68,30 11,20 8,44 -8,72l-1320 2292c-11,23 -14,39 -8,51l1454 3375 9 33c0,45 -26,68 -76,68l-482 0c-45,0 -77,-23 -93,-68l-1218 -2875c-6,-23 -20,-23 -43,0l-524 812c-6,5 -9,19 -9,42l0 2004c0,57 -28,85 -84,85l-431 0z"/>
<path id="5" class="fil7" d="M63656 228736c-434,0 -784,-150 -1049,-449 -265,-298 -397,-693 -397,-1184l0 -4271c0,-56 28,-85 84,-85l432 0c56,0 84,29 84,85l0 4339c0,310 78,561 233,753 155,191 359,287 613,287 260,0 468,-96 626,-287 158,-192 237,-443 237,-753l0 -4339c0,-56 28,-85 85,-85l431 0c56,0 84,29 84,85l0 4271c0,491 -133,886 -401,1184 -268,299 -622,449 -1062,449z"/>
<path id="6" class="fil7" d="M67513 228736c-417,0 -755,-138 -1015,-415 -259,-276 -389,-637 -389,-1082l0 -203c0,-57 28,-85 85,-85l423 0c56,0 84,28 84,85l0 177c0,299 76,540 229,723 152,184 346,275 583,275 237,0 434,-87 592,-262 158,-175 237,-406 237,-693 0,-192 -38,-357 -114,-495 -76,-138 -175,-260 -296,-364 -121,-104 -323,-264 -605,-478 -282,-208 -505,-387 -668,-537 -164,-149 -298,-328 -402,-537 -104,-209 -156,-454 -156,-736 0,-440 127,-788 380,-1044 254,-257 584,-385 990,-385 428,0 771,139 1028,418 256,280 384,650 384,1113l0 211c0,56 -28,85 -84,85l-423 0c-57,0 -85,-29 -85,-85l0 -220c0,-299 -74,-540 -224,-723 -149,-183 -348,-275 -596,-275 -226,0 -412,80 -558,241 -147,161 -220,388 -220,681 0,175 32,329 97,461 65,133 162,258 292,376 129,119 321,274 575,466 338,248 591,449 757,604 166,155 295,325 385,508 90,183 135,404 135,664 0,462 -132,833 -397,1112 -265,279 -607,419 -1024,419z"/>
<path id="7" class="fil7" d="M72512 223187c0,57 -28,85 -85,85l-1962 0c-23,0 -34,11 -34,34l0 2097c0,23 11,34 34,34l1235 0c56,0 84,28 84,85l0 363c0,57 -28,85 -84,85l-1235 0c-23,0 -34,11 -34,34l0 2106c0,22 11,34 34,34l1962 0c57,0 85,28 85,84l0 355c0,57 -28,85 -85,85l-2512 0c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l2512 0c57,0 85,29 85,85l0 355z"/>
<path id="8" class="fil7" d="M73747 225784c-136,0 -247,-50 -334,-148 -88,-99 -131,-219 -131,-360 0,-135 47,-252 143,-351 96,-98 203,-148 322,-148 118,0 225,50 321,148 96,99 144,216 144,351 0,141 -45,261 -135,360 -91,98 -201,148 -330,148zm0 2842c-136,0 -247,-48 -334,-144 -88,-96 -131,-217 -131,-364 0,-135 47,-252 143,-351 96,-98 203,-148 322,-148 118,0 225,50 321,148 96,99 144,216 144,351 0,141 -45,261 -135,360 -91,98 -201,148 -330,148z"/>
<path id="9" class="fil7" d="M79600 223187c0,57 -28,85 -85,85l-1945 0c-23,0 -34,11 -34,34l0 2097c0,23 11,34 34,34l1226 0c57,0 85,28 85,85l0 363c0,57 -28,85 -85,85l-1226 0c-23,0 -34,11 -34,34l0 2579c0,57 -28,85 -85,85l-431 0c-56,0 -85,-28 -85,-85l0 -5751c0,-56 29,-85 85,-85l2495 0c57,0 85,29 85,85l0 355z"/>
<path id="10" class="fil7" d="M82721 228668c-51,0 -85,-23 -102,-68l-871 -2630c-6,-17 -17,-25 -34,-25l-727 0c-23,0 -34,11 -34,33l0 2605c0,57 -28,85 -85,85l-431 0c-56,0 -84,-28 -84,-85l0 -5759c0,-57 28,-85 84,-85l1396 0c411,0 744,149 998,448 253,299 380,691 380,1176 0,372 -79,691 -236,956 -158,265 -373,448 -643,549 -23,6 -31,20 -26,43l922 2664 9 34c0,39 -26,59 -76,59l-440 0zm-1734 -5405c-23,0 -34,12 -34,34l0 2132c0,22 11,33 34,33l761 0c260,0 468,-100 626,-300 158,-200 237,-464 237,-791 0,-338 -79,-607 -237,-807 -158,-201 -366,-301 -626,-301l-761 0z"/>
<path id="11" class="fil7" d="M85410 228736c-434,0 -785,-136 -1053,-406 -267,-271 -401,-629 -401,-1074l0 -3096c0,-446 134,-804 401,-1074 268,-271 619,-406 1053,-406 440,0 796,135 1066,406 271,270 406,628 406,1074l0 3096c0,439 -135,796 -406,1069 -270,274 -626,411 -1066,411zm0 -525c260,0 470,-86 631,-258 160,-172 241,-393 241,-664l0 -3154c0,-277 -81,-501 -241,-673 -161,-172 -371,-258 -631,-258 -253,0 -459,86 -617,258 -158,172 -237,396 -237,673l0 3154c0,271 79,492 237,664 158,172 364,258 617,258z"/>
<path id="12" class="fil7" d="M88032 228668c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l440 0c45,0 76,23 93,68l948 2292c5,11 14,17 25,17 11,0 20,-6 25,-17l956 -2292c17,-45 48,-68 93,-68l440 0c56,0 85,29 85,85l0 5751c0,57 -29,85 -85,85l-431 0c-57,0 -85,-28 -85,-85l0 -4330c0,-17 -6,-25 -17,-25 -11,0 -20,5 -25,16l-863 1963c-17,45 -42,67 -76,67 -40,0 -68,-22 -85,-67l-879 -1971c-6,-11 -14,-17 -26,-17 -11,0 -17,9 -17,25l0 4339c0,57 -28,85 -84,85l-432 0z"/>
<path id="13" class="fil7" d="M94410 222773c28,-17 65,-26 110,-26l457 0c56,0 84,29 84,85l0 5751c0,57 -28,85 -84,85l-432 0c-56,0 -84,-28 -84,-85l0 -5184c0,-12 -5,-20 -13,-26 -9,-5 -18,-5 -30,0l-702 313 -34 9c-45,0 -67,-26 -67,-76l0 -305c0,-39 20,-73 59,-101l736 -440z"/>
<path id="14" class="fil7" d="M97260 228753c-428,0 -774,-140 -1036,-419 -262,-279 -393,-644 -393,-1095l0 -3062c0,-451 131,-816 393,-1096 262,-279 608,-418 1036,-418 434,0 784,139 1049,418 265,280 398,645 398,1096l0 3062c0,451 -133,816 -398,1095 -265,279 -615,419 -1049,419zm0 -525c254,0 458,-87 613,-262 156,-175 233,-406 233,-694l0 -3129c0,-288 -77,-519 -233,-694 -155,-174 -359,-262 -613,-262 -248,0 -448,88 -600,262 -153,175 -229,406 -229,694l0 3129c0,288 76,519 229,694 152,175 352,262 600,262z"/>
<path id="15" class="fil7" d="M100745 228753c-429,0 -774,-140 -1036,-419 -262,-279 -393,-644 -393,-1095l0 -3062c0,-451 131,-816 393,-1096 262,-279 607,-418 1036,-418 434,0 784,139 1049,418 265,280 397,645 397,1096l0 3062c0,451 -132,816 -397,1095 -265,279 -615,419 -1049,419zm0 -525c254,0 458,-87 613,-262 155,-175 233,-406 233,-694l0 -3129c0,-288 -78,-519 -233,-694 -155,-174 -359,-262 -613,-262 -248,0 -448,88 -601,262 -152,175 -228,406 -228,694l0 3129c0,288 76,519 228,694 153,175 353,262 601,262z"/>
<path id="16" class="fil7" d="M104289 225073c-214,0 -413,-53 -596,-160 -184,-107 -327,-253 -432,-436 -104,-183 -156,-385 -156,-605 0,-220 52,-421 156,-604 105,-184 248,-329 432,-436 183,-107 382,-161 596,-161 214,0 411,54 592,161 180,107 323,252 427,436 104,183 157,384 157,604 0,220 -53,422 -157,605 -104,183 -247,329 -427,436 -181,107 -378,160 -592,160zm-203 3595c-34,0 -58,-10 -72,-30 -14,-19 -13,-43 4,-71l3104 -5760c17,-40 51,-60 102,-60l270 0c34,0 58,10 72,30 14,20 13,44 -4,72l-3104 5760c-17,39 -51,59 -101,59l-271 0zm203 -3950c225,0 416,-83 571,-249 155,-167 232,-366 232,-597 0,-237 -77,-437 -232,-600 -155,-164 -346,-246 -571,-246 -226,0 -417,82 -575,246 -158,163 -237,363 -237,600 0,237 79,437 237,601 158,163 349,245 575,245zm3036 4026c-214,0 -413,-53 -596,-161 -183,-107 -327,-253 -431,-439 -105,-186 -157,-389 -157,-609 0,-215 52,-413 157,-597 104,-183 248,-328 431,-435 183,-107 382,-161 596,-161 215,0 412,54 592,161 181,107 323,252 428,435 104,184 156,382 156,597 0,220 -52,423 -156,609 -105,186 -247,332 -428,439 -180,108 -377,161 -592,161zm0 -355c226,0 416,-83 571,-250 155,-166 233,-368 233,-604 0,-232 -79,-429 -237,-592 -158,-164 -347,-246 -567,-246 -225,0 -417,82 -575,246 -158,163 -237,360 -237,592 0,242 78,445 233,609 155,163 348,245 579,245z"/>
<path id="17" class="fil7" d="M112248 228668c-51,0 -82,-25 -93,-76l-1117 -5752 0 -16c0,-51 26,-77 77,-77l448 0c56,0 87,26 93,77l795 4448c6,12 11,17 17,17 5,0 11,-5 17,-17l685 -4448c11,-51 39,-77 84,-77l390 0c50,0 78,26 84,77l719 4448c6,12 11,17 17,17 6,0 11,-5 17,-17l727 -4448c12,-51 40,-77 85,-77l448 0c28,0 49,9 64,26 14,17 18,39 12,67l-1049 5752c-5,51 -36,76 -93,76l-414 0c-45,0 -73,-25 -85,-76l-710 -4466c-6,-11 -13,-17 -21,-17 -9,0 -13,6 -13,17l-693 4466c-6,51 -34,76 -85,76l-406 0z"/>
<path id="18" class="fil7" d="M118845 222832c0,-56 28,-85 85,-85l431 0c57,0 85,29 85,85l0 5751c0,57 -28,85 -85,85l-431 0c-57,0 -85,-28 -85,-85l0 -2579c0,-23 -11,-34 -34,-34l-1505 0c-23,0 -34,11 -34,34l0 2579c0,57 -28,85 -85,85l-431 0c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l431 0c57,0 85,29 85,85l0 2571c0,23 11,34 34,34l1505 0c23,0 34,-11 34,-34l0 -2571z"/>
<path id="19" class="fil7" d="M120748 228668c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l432 0c56,0 84,29 84,85l0 5751c0,57 -28,85 -84,85l-432 0z"/>
<path id="20" class="fil7" d="M125079 222747c56,0 84,29 84,85l0 355c0,57 -28,85 -84,85l-1117 0c-22,0 -33,11 -33,34l0 5277c0,57 -29,85 -85,85l-431 0c-57,0 -85,-28 -85,-85l0 -5277c0,-23 -11,-34 -34,-34l-1049 0c-56,0 -84,-28 -84,-85l0 -355c0,-56 28,-85 84,-85l2834 0z"/>
<path id="21" class="fil7" d="M128741 223187c0,57 -28,85 -84,85l-1963 0c-22,0 -33,11 -33,34l0 2097c0,23 11,34 33,34l1235 0c57,0 85,28 85,85l0 363c0,57 -28,85 -85,85l-1235 0c-22,0 -33,11 -33,34l0 2106c0,22 11,34 33,34l1963 0c56,0 84,28 84,84l0 355c0,57 -28,85 -84,85l-2512 0c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l2512 0c56,0 84,29 84,85l0 355z"/>
<path id="22" class="fil7" d="M133977 222747c56,0 84,29 84,85l0 355c0,57 -28,85 -84,85l-1117 0c-22,0 -34,11 -34,34l0 5277c0,57 -28,85 -84,85l-431 0c-57,0 -85,-28 -85,-85l0 -5277c0,-23 -11,-34 -34,-34l-1049 0c-56,0 -84,-28 -84,-85l0 -355c0,-56 28,-85 84,-85l2834 0z"/>
<path id="23" class="fil7" d="M136007 228736c-434,0 -785,-136 -1053,-406 -268,-271 -402,-629 -402,-1074l0 -3096c0,-446 134,-804 402,-1074 268,-271 619,-406 1053,-406 440,0 795,135 1065,406 271,270 406,628 406,1074l0 3096c0,439 -135,796 -406,1069 -270,274 -625,411 -1065,411zm0 -525c259,0 469,-86 630,-258 161,-172 241,-393 241,-664l0 -3154c0,-277 -80,-501 -241,-673 -161,-172 -371,-258 -630,-258 -254,0 -460,86 -618,258 -158,172 -237,396 -237,673l0 3154c0,271 79,492 237,664 158,172 364,258 618,258z"/>
<path id="24" class="fil7" d="M140058 228668c-56,0 -84,-28 -84,-85l0 -380c0,-45 11,-82 33,-110 175,-276 274,-434 296,-474 497,-784 889,-1421 1176,-1911 361,-621 541,-1134 541,-1540 0,-293 -67,-527 -203,-702 -135,-174 -313,-262 -532,-262 -215,0 -388,86 -521,258 -132,172 -196,399 -190,681l0 321c0,57 -28,85 -84,85l-440 0c-57,0 -85,-28 -85,-85l0 -338c11,-434 140,-784 385,-1049 245,-265 565,-397 960,-397 395,0 713,136 956,410 242,273 363,633 363,1078 0,530 -200,1128 -600,1793 -322,542 -626,1038 -914,1489 -50,85 -108,182 -173,292 -65,110 -140,230 -224,359 -6,12 -6,22 0,30 6,8 14,13 25,13l1971 0c56,0 85,28 85,84l0 355c0,57 -29,85 -85,85l-2656 0z"/>
<path id="25" class="fil7" d="M144769 228753c-428,0 -774,-140 -1036,-419 -262,-279 -393,-644 -393,-1095l0 -3062c0,-451 131,-816 393,-1096 262,-279 608,-418 1036,-418 435,0 784,139 1049,418 265,280 398,645 398,1096l0 3062c0,451 -133,816 -398,1095 -265,279 -614,419 -1049,419zm0 -525c254,0 459,-87 614,-262 155,-175 232,-406 232,-694l0 -3129c0,-288 -77,-519 -232,-694 -155,-174 -360,-262 -614,-262 -248,0 -448,88 -600,262 -152,175 -229,406 -229,694l0 3129c0,288 77,519 229,694 152,175 352,262 600,262z"/>
<path id="26" class="fil7" d="M148313 225073c-214,0 -413,-53 -596,-160 -183,-107 -327,-253 -431,-436 -105,-183 -157,-385 -157,-605 0,-220 52,-421 157,-604 104,-184 248,-329 431,-436 183,-107 382,-161 596,-161 215,0 412,54 592,161 181,107 323,252 427,436 105,183 157,384 157,604 0,220 -52,422 -157,605 -104,183 -246,329 -427,436 -180,107 -377,160 -592,160zm-203 3595c-34,0 -58,-10 -72,-30 -14,-19 -12,-43 5,-71l3104 -5760c17,-40 50,-60 101,-60l271 0c34,0 58,10 72,30 14,20 12,44 -4,72l-3105 5760c-16,39 -50,59 -101,59l-271 0zm203 -3950c226,0 416,-83 571,-249 155,-167 233,-366 233,-597 0,-237 -78,-437 -233,-600 -155,-164 -345,-246 -571,-246 -225,0 -417,82 -575,246 -158,163 -237,363 -237,600 0,237 79,437 237,601 158,163 350,245 575,245zm3037 4026c-215,0 -413,-53 -597,-161 -183,-107 -327,-253 -431,-439 -104,-186 -156,-389 -156,-609 0,-215 52,-413 156,-597 104,-183 248,-328 431,-435 184,-107 382,-161 597,-161 214,0 411,54 592,161 180,107 323,252 427,435 104,184 156,382 156,597 0,220 -52,423 -156,609 -104,186 -247,332 -427,439 -181,108 -378,161 -592,161zm0 -355c225,0 416,-83 571,-250 155,-166 232,-368 232,-604 0,-232 -79,-429 -237,-592 -157,-164 -346,-246 -566,-246 -226,0 -418,82 -575,246 -158,163 -237,360 -237,592 0,242 77,445 232,609 155,163 349,245 580,245z"/>
<path id="27" class="fil7" d="M156721 228736c-435,0 -781,-129 -1041,-385 -259,-257 -389,-599 -389,-1028l0 -3231c0,-428 130,-771 389,-1027 260,-257 606,-385 1041,-385 434,0 782,129 1044,389 262,259 393,603 393,1032l0 363c0,57 -28,85 -84,85l-431 0c-57,0 -85,-28 -85,-85l0 -380c0,-265 -76,-478 -228,-639 -153,-161 -356,-241 -609,-241 -248,0 -450,82 -605,245 -155,164 -233,375 -233,635l0 3248c0,259 78,471 233,634 155,164 357,245 605,245 253,0 456,-80 609,-241 152,-160 228,-373 228,-638l0 -1083c0,-23 -11,-34 -34,-34l-727 0c-57,0 -85,-28 -85,-84l0 -356c0,-56 28,-84 85,-84l1277 0c56,0 84,28 84,84l0 1548c0,429 -131,771 -393,1028 -262,256 -610,385 -1044,385z"/>
<path id="28" class="fil7" d="M161559 228668c-51,0 -85,-23 -102,-68l-871 -2630c-6,-17 -17,-25 -34,-25l-727 0c-23,0 -34,11 -34,33l0 2605c0,57 -28,85 -85,85l-431 0c-56,0 -85,-28 -85,-85l0 -5759c0,-57 29,-85 85,-85l1396 0c411,0 744,149 998,448 253,299 380,691 380,1176 0,372 -79,691 -237,956 -157,265 -372,448 -642,549 -23,6 -31,20 -26,43l922 2664 9 34c0,39 -26,59 -76,59l-440 0zm-1734 -5405c-23,0 -34,12 -34,34l0 2132c0,22 11,33 34,33l761 0c259,0 468,-100 626,-300 158,-200 237,-464 237,-791 0,-338 -79,-607 -237,-807 -158,-201 -367,-301 -626,-301l-761 0z"/>
<path id="29" class="fil7" d="M165619 223187c0,57 -29,85 -85,85l-1962 0c-23,0 -34,11 -34,34l0 2097c0,23 11,34 34,34l1235 0c56,0 84,28 84,85l0 363c0,57 -28,85 -84,85l-1235 0c-23,0 -34,11 -34,34l0 2106c0,22 11,34 34,34l1962 0c56,0 85,28 85,84l0 355c0,57 -29,85 -85,85l-2512 0c-56,0 -85,-28 -85,-85l0 -5751c0,-56 29,-85 85,-85l2512 0c56,0 85,29 85,85l0 355z"/>
<path id="30" class="fil7" d="M167539 228660c-57,0 -85,-29 -85,-85l0 -2529c0,-23 -3,-37 -9,-42l-1175 -3155 -9 -34c0,-45 26,-68 76,-68l457 0c51,0 85,23 102,68l829 2478c5,12 14,17 25,17 11,0 20,-5 25,-17l829 -2478c17,-45 51,-68 102,-68l456 0c29,0 50,10 64,30 14,20 15,44 4,72l-1167 3155c-6,5 -9,19 -9,42l0 2529c0,56 -28,85 -84,85l-431 0z"/>
<path class="fil8" d="M336186 109254c0,56 -28,84 -84,84l-1895 0c-22,0 -34,12 -34,34l0 1836c0,22 12,33 34,33l1159 0c56,0 84,29 84,85l0 533c0,56 -28,84 -84,84l-1159 0c-22,0 -34,12 -34,34l0 2495c0,57 -28,85 -84,85l-643 0c-57,0 -85,-28 -85,-85l0 -5751c0,-57 28,-85 85,-85l2656 0c56,0 84,28 84,85l0 533z"/>
<path id="1" class="fil8" d="M338318 114625c-463,0 -833,-154 -1113,-461 -279,-308 -418,-712 -418,-1214l0 -4229c0,-57 28,-85 84,-85l643 0c57,0 85,28 85,85l0 4313c0,266 66,480 199,643 132,164 305,246 520,246 220,0 396,-82 528,-246 133,-163 199,-377 199,-643l0 -4313c0,-57 28,-85 85,-85l642 0c57,0 85,28 85,85l0 4229c0,502 -141,906 -423,1214 -282,307 -654,461 -1116,461z"/>
<path id="2" class="fil8" d="M340948 114557c-56,0 -84,-28 -84,-85l0 -5751c0,-57 28,-85 84,-85l643 0c56,0 85,28 85,85l0 5100c0,23 11,34 33,34l1895 0c56,0 85,28 85,85l0 532c0,57 -29,85 -85,85l-2656 0z"/>
<path id="3" class="fil8" d="M344391 114557c-57,0 -85,-28 -85,-85l0 -5751c0,-57 28,-85 85,-85l642 0c57,0 85,28 85,85l0 5100c0,23 11,34 34,34l1894 0c57,0 85,28 85,85l0 532c0,57 -28,85 -85,85l-2655 0z"/>
<path id="4" class="fil8" d="M350844 114625c-457,0 -825,-140 -1104,-419 -279,-279 -418,-650 -418,-1112l0 -3003c0,-462 139,-832 418,-1108 279,-276 647,-414 1104,-414 462,0 833,138 1112,414 279,276 419,646 419,1108l0 135c0,57 -28,85 -85,85l-642 34c-57,0 -85,-28 -85,-85l0 -220c0,-231 -66,-417 -199,-558 -132,-141 -306,-211 -520,-211 -214,0 -386,70 -516,211 -130,141 -194,327 -194,558l0 3113c0,231 64,417 194,558 130,141 302,212 516,212 214,0 388,-71 520,-212 133,-141 199,-327 199,-558l0 -220c0,-56 28,-85 85,-85l642 34c57,0 85,28 85,85l0 127c0,462 -140,833 -419,1112 -279,279 -650,419 -1112,419z"/>
<path id="5" class="fil8" d="M354684 114625c-462,0 -835,-141 -1116,-423 -282,-282 -423,-657 -423,-1125l0 -2952c0,-468 141,-844 423,-1129 281,-285 654,-427 1116,-427 468,0 844,142 1129,427 285,285 427,661 427,1129l0 2952c0,468 -142,843 -427,1125 -285,282 -661,423 -1129,423zm0 -702c226,0 406,-75 541,-225 136,-149 203,-345 203,-587l0 -3028c0,-243 -67,-439 -203,-588 -135,-150 -315,-224 -541,-224 -220,0 -396,74 -529,224 -132,149 -198,345 -198,588l0 3028c0,242 66,438 198,587 133,150 309,225 529,225z"/>
<path id="6" class="fil8" d="M357255 114557c-56,0 -84,-28 -84,-85l0 -5751c0,-57 28,-85 84,-85l643 0c56,0 85,28 85,85l0 5100c0,23 11,34 33,34l1895 0c56,0 85,28 85,85l0 532c0,57 -29,85 -85,85l-2656 0z"/>
<path id="7" class="fil8" d="M362017 114625c-462,0 -834,-141 -1116,-423 -282,-282 -423,-657 -423,-1125l0 -2952c0,-468 141,-844 423,-1129 282,-285 654,-427 1116,-427 468,0 845,142 1129,427 285,285 427,661 427,1129l0 2952c0,468 -142,843 -427,1125 -284,282 -661,423 -1129,423zm0 -702c226,0 406,-75 541,-225 136,-149 203,-345 203,-587l0 -3028c0,-243 -67,-439 -203,-588 -135,-150 -315,-224 -541,-224 -220,0 -396,74 -529,224 -132,149 -198,345 -198,588l0 3028c0,242 66,438 198,587 133,150 309,225 529,225z"/>
<path id="8" class="fil8" d="M366855 114557c-51,0 -84,-23 -101,-68l-787 -2537c-6,-17 -17,-26 -34,-26l-583 0c-23,0 -34,12 -34,34l0 2512c0,57 -28,85 -85,85l-643 0c-56,0 -84,-28 -84,-85l0 -5760c0,-56 28,-84 84,-84l1514 0c288,0 542,70 762,211 219,141 390,340 511,597 122,256 182,548 182,875 0,355 -75,664 -224,926 -149,262 -351,450 -605,563 -17,17 -22,33 -17,50l872 2614 8 34c0,39 -25,59 -76,59l-660 0zm-1505 -5227c-23,0 -34,11 -34,34l0 1894c0,23 11,34 34,34l625 0c232,0 418,-89 559,-266 141,-178 211,-413 211,-707 0,-304 -70,-545 -211,-723 -141,-177 -327,-266 -559,-266l-625 0z"/>
<path class="fil8" d="M232956 114625c-462,0 -835,-141 -1117,-423 -281,-282 -422,-657 -422,-1125l0 -2952c0,-468 141,-844 422,-1129 282,-285 655,-427 1117,-427 468,0 844,142 1129,427 285,285 427,661 427,1129l0 2952c0,468 -142,843 -427,1125 -285,282 -661,423 -1129,423zm0 -702c225,0 406,-75 541,-225 136,-149 203,-345 203,-587l0 -3028c0,-243 -67,-439 -203,-588 -135,-150 -316,-224 -541,-224 -220,0 -396,74 -529,224 -132,149 -198,345 -198,588l0 3028c0,242 66,438 198,587 133,150 309,225 529,225z"/>
<path id="1" class="fil8" d="M238268 109254c0,56 -29,84 -85,84l-1895 0c-22,0 -33,12 -33,34l0 1836c0,22 11,33 33,33l1159 0c57,0 85,29 85,85l0 533c0,56 -28,84 -85,84l-1159 0c-22,0 -33,12 -33,34l0 2495c0,57 -29,85 -85,85l-643 0c-56,0 -84,-28 -84,-85l0 -5751c0,-57 28,-85 84,-85l2656 0c56,0 85,28 85,85l0 533z"/>
<path id="2" class="fil8" d="M241735 109254c0,56 -28,84 -84,84l-1895 0c-22,0 -34,12 -34,34l0 1836c0,22 12,33 34,33l1159 0c56,0 85,29 85,85l0 533c0,56 -29,84 -85,84l-1159 0c-22,0 -34,12 -34,34l0 2495c0,57 -28,85 -84,85l-643 0c-56,0 -85,-28 -85,-85l0 -5751c0,-57 29,-85 85,-85l2656 0c56,0 84,28 84,85l0 533z"/>
<path id="3" class="fil8" d="M242463 114557c-57,0 -85,-28 -85,-85l0 -5751c0,-57 28,-85 85,-85l643 0c56,0 84,28 84,85l0 5751c0,57 -28,85 -84,85l-643 0z"/>
<path id="4" class="fil8" d="M245643 114625c-457,0 -825,-140 -1104,-419 -279,-279 -418,-650 -418,-1112l0 -3003c0,-462 139,-832 418,-1108 279,-276 647,-414 1104,-414 462,0 833,138 1112,414 279,276 419,646 419,1108l0 135c0,57 -28,85 -85,85l-642 34c-57,0 -85,-28 -85,-85l0 -220c0,-231 -66,-417 -199,-558 -132,-141 -306,-211 -520,-211 -214,0 -386,70 -516,211 -130,141 -194,327 -194,558l0 3113c0,231 64,417 194,558 130,141 302,212 516,212 214,0 388,-71 520,-212 133,-141 199,-327 199,-558l0 -220c0,-56 28,-85 85,-85l642 34c57,0 85,28 85,85l0 127c0,462 -140,833 -419,1112 -279,279 -650,419 -1112,419z"/>
<path id="5" class="fil8" d="M248147 114557c-57,0 -85,-28 -85,-85l0 -5751c0,-57 28,-85 85,-85l642 0c57,0 85,28 85,85l0 5751c0,57 -28,85 -85,85l-642 0z"/>
<path id="6" class="fil8" d="M252393 114557c-51,0 -82,-25 -93,-76l-186 -973c0,-11 -5,-20 -13,-25 -9,-6 -19,-9 -30,-9l-1362 0c-11,0 -21,3 -29,9 -9,5 -13,14 -13,25l-194 973c-6,51 -37,76 -93,76l-643 0c-28,0 -50,-9 -64,-25 -14,-17 -18,-40 -12,-68l1260 -5752c11,-50 42,-76 93,-76l744 0c57,0 88,26 93,76l1277 5752 0 17c0,51 -25,76 -76,76l-659 0zm-1582 -1759c0,22 8,33 25,33l1117 0c17,0 25,-11 25,-33l-558 -2893c-6,-17 -11,-25 -17,-25 -6,0 -11,8 -17,25l-575 2893z"/>
<path id="7" class="fil8" d="M253991 114557c-56,0 -84,-28 -84,-85l0 -5751c0,-57 28,-85 84,-85l643 0c56,0 85,28 85,85l0 5100c0,23 11,34 33,34l1895 0c56,0 85,28 85,85l0 532c0,57 -29,85 -85,85l-2656 0z"/>
<path id="8" class="fil8" d="M259125 114557c-56,0 -84,-28 -84,-85l0 -5751c0,-57 28,-85 84,-85l643 0c56,0 85,28 85,85l0 5100c0,23 11,34 33,34l1895 0c56,0 85,28 85,85l0 532c0,57 -29,85 -85,85l-2656 0z"/>
<path id="9" class="fil8" d="M263887 114625c-462,0 -834,-141 -1116,-423 -282,-282 -423,-657 -423,-1125l0 -2952c0,-468 141,-844 423,-1129 282,-285 654,-427 1116,-427 468,0 845,142 1129,427 285,285 427,661 427,1129l0 2952c0,468 -142,843 -427,1125 -284,282 -661,423 -1129,423zm0 -702c226,0 406,-75 541,-225 136,-149 203,-345 203,-587l0 -3028c0,-243 -67,-439 -203,-588 -135,-150 -315,-224 -541,-224 -220,0 -396,74 -529,224 -132,149 -198,345 -198,588l0 3028c0,242 66,438 198,587 133,150 309,225 529,225z"/>
<path id="10" class="fil8" d="M267778 114625c-457,0 -825,-136 -1104,-406 -279,-271 -419,-629 -419,-1075l0 -3095c0,-446 140,-804 419,-1074 279,-271 647,-406 1104,-406 457,0 826,135 1108,406 282,270 423,631 423,1082l0 355c0,57 -28,85 -85,85l-643 0c-56,0 -84,-28 -84,-85l0 -372c0,-231 -67,-417 -199,-558 -133,-141 -306,-211 -520,-211 -214,0 -388,70 -520,211 -133,141 -199,327 -199,558l0 3113c0,231 66,417 199,558 132,141 306,212 520,212 214,0 387,-71 520,-212 132,-141 199,-327 199,-558l0 -930c0,-23 -12,-34 -34,-34l-643 0c-56,0 -84,-29 -84,-85l0 -524c0,-57 28,-85 84,-85l1404 0c57,0 85,28 85,85l0 1564c0,446 -141,804 -423,1075 -282,270 -651,406 -1108,406z"/>
<path id="11" class="fil8" d="M271618 114625c-463,0 -835,-141 -1117,-423 -282,-282 -423,-657 -423,-1125l0 -2952c0,-468 141,-844 423,-1129 282,-285 654,-427 1117,-427 468,0 844,142 1129,427 285,285 427,661 427,1129l0 2952c0,468 -142,843 -427,1125 -285,282 -661,423 -1129,423zm0 -702c225,0 406,-75 541,-225 135,-149 203,-345 203,-587l0 -3028c0,-243 -68,-439 -203,-588 -135,-150 -316,-224 -541,-224 -220,0 -396,74 -529,224 -132,149 -199,345 -199,588l0 3028c0,242 67,438 199,587 133,150 309,225 529,225z"/>
<path class="fil8" d="M235417 228668c-62,0 -98,-31 -109,-93l-1142 -5718 -9 -33c0,-51 31,-77 93,-77l1032 0c68,0 104,31 110,93l482 3045c6,23 14,34 26,34 11,0 19,-11 25,-34l457 -3045c5,-62 42,-93 110,-93l854 0c68,0 104,31 110,93l499 3045c6,23 14,34 25,34 12,0 20,-11 26,-34l431 -3045c6,-62 42,-93 110,-93l998 0c73,0 104,37 93,110l-1074 5718c-6,62 -42,93 -110,93l-914 0c-67,0 -104,-31 -110,-93l-499 -3129c-5,-23 -14,-34 -25,-34 -11,0 -20,11 -25,34l-449 3129c-5,62 -42,93 -110,93l-905 0z"/>
<path id="1" class="fil8" d="M242311 222849c0,-28 10,-52 29,-72 20,-20 44,-30 72,-30l990 0c28,0 52,10 72,30 20,20 29,44 29,72l0 5718c0,28 -9,52 -29,71 -20,20 -44,30 -72,30l-990 0c-28,0 -52,-10 -72,-30 -19,-19 -29,-43 -29,-71l0 -2310c0,-28 -14,-42 -43,-42l-845 0c-29,0 -43,14 -43,42l0 2310c0,28 -9,52 -29,71 -20,20 -44,30 -72,30l-990 0c-28,0 -52,-10 -72,-30 -19,-19 -29,-43 -29,-71l0 -5718c0,-28 10,-52 29,-72 20,-20 44,-30 72,-30l990 0c28,0 52,10 72,30 20,20 29,44 29,72l0 2300c0,29 14,43 43,43l845 0c29,0 43,-14 43,-43l0 -2300z"/>
<path id="2" class="fil8" d="M244349 228668c-28,0 -52,-10 -72,-30 -19,-19 -29,-43 -29,-71l0 -5718c0,-28 10,-52 29,-72 20,-20 44,-30 72,-30l990 0c28,0 52,10 72,30 19,20 29,44 29,72l0 5718c0,28 -10,52 -29,71 -20,20 -44,30 -72,30l-990 0z"/>
<path id="3" class="fil8" d="M249475 222747c28,0 52,10 72,30 19,20 29,44 29,72l0 820c0,29 -10,52 -29,72 -20,20 -44,30 -72,30l-1057 0c-29,0 -43,14 -43,42l0 4754c0,28 -10,52 -29,71 -20,20 -44,30 -72,30l-990 0c-28,0 -52,-10 -72,-30 -19,-19 -29,-43 -29,-71l0 -4754c0,-28 -14,-42 -43,-42l-1015 0c-28,0 -52,-10 -71,-30 -20,-20 -30,-43 -30,-72l0 -820c0,-28 10,-52 30,-72 19,-20 43,-30 71,-30l3350 0z"/>
<path id="4" class="fil8" d="M253256 223669c0,29 -10,52 -30,72 -20,20 -44,30 -72,30l-1768 0c-28,0 -42,14 -42,42l0 1336c0,29 14,43 42,43l1015 0c29,0 53,10 72,29 20,20 30,44 30,72l0 821c0,28 -10,52 -30,72 -19,19 -43,29 -72,29l-1015 0c-28,0 -42,14 -42,42l0 1345c0,29 14,43 42,43l1768 0c28,0 52,9 72,29 20,20 30,44 30,72l0 821c0,28 -10,52 -30,71 -20,20 -44,30 -72,30l-2901 0c-28,0 -52,-10 -72,-30 -20,-19 -29,-43 -29,-71l0 -5718c0,-28 9,-52 29,-72 20,-20 44,-30 72,-30l2901 0c28,0 52,10 72,30 20,20 30,44 30,72l0 820z"/>
<path id="5" class="fil8" d="M257205 228736c-507,0 -914,-160 -1222,-478 -307,-319 -461,-743 -461,-1273l0 -4136c0,-28 10,-52 30,-72 20,-20 44,-30 72,-30l989 0c29,0 53,10 72,30 20,20 30,44 30,72l0 4254c0,181 45,327 135,440 90,113 209,169 355,169 147,0 264,-56 352,-169 87,-113 131,-259 131,-440l0 -4254c0,-28 9,-52 29,-72 20,-20 44,-30 72,-30l990 0c28,0 52,10 72,30 19,20 29,44 29,72l0 4136c0,530 -153,954 -461,1273 -307,318 -712,478 -1214,478z"/>
<path id="6" class="fil8" d="M261155 228736c-327,0 -614,-65 -862,-195 -248,-130 -440,-311 -575,-545 -136,-234 -203,-504 -203,-808l0 -271c0,-28 9,-52 29,-72 20,-19 44,-29 72,-29l973 0c28,0 52,10 72,29 19,20 29,44 29,72l0 212c0,174 44,315 131,423 88,107 199,160 334,160 136,0 249,-50 339,-152 90,-101 135,-234 135,-397 0,-170 -55,-315 -165,-436 -110,-121 -328,-300 -655,-537 -282,-203 -511,-384 -685,-541 -175,-158 -325,-353 -449,-584 -124,-231 -186,-499 -186,-804 0,-479 150,-862 448,-1150 299,-287 691,-431 1176,-431 496,0 897,149 1201,448 305,299 457,691 457,1176l0 203c0,28 -10,52 -30,72 -19,19 -43,29 -72,29l-972 0c-28,0 -52,-10 -72,-29 -20,-20 -30,-44 -30,-72l0 -229c0,-175 -43,-314 -131,-418 -87,-105 -204,-157 -351,-157 -135,0 -244,49 -326,148 -81,99 -122,236 -122,410 0,170 53,319 161,449 107,129 315,310 625,541 350,254 614,461 791,622 178,160 316,339 415,537 98,197 148,431 148,702 0,496 -153,891 -457,1184 -305,293 -702,440 -1193,440z"/>
<path id="7" class="fil8" d="M266467 223669c0,29 -10,52 -29,72 -20,20 -44,30 -72,30l-1768 0c-28,0 -42,14 -42,42l0 1336c0,29 14,43 42,43l1015 0c28,0 52,10 72,29 19,20 29,44 29,72l0 821c0,28 -10,52 -29,72 -20,19 -44,29 -72,29l-1015 0c-28,0 -42,14 -42,42l0 1345c0,29 14,43 42,43l1768 0c28,0 52,9 72,29 19,20 29,44 29,72l0 821c0,28 -10,52 -29,71 -20,20 -44,30 -72,30l-2901 0c-29,0 -53,-10 -72,-30 -20,-19 -30,-43 -30,-71l0 -5718c0,-28 10,-52 30,-72 19,-20 43,-30 72,-30l2901 0c28,0 52,10 72,30 19,20 29,44 29,72l0 820z"/>
<path id="8" class="fil8" d="M267871 225885c-209,0 -380,-70 -516,-211 -135,-141 -203,-316 -203,-525 0,-197 73,-367 220,-511 147,-144 313,-216 499,-216 186,0 353,72 499,216 147,144 220,314 220,511 0,203 -69,377 -207,521 -138,143 -309,215 -512,215zm0 2766c-209,0 -380,-70 -516,-211 -135,-141 -203,-316 -203,-525 0,-197 73,-368 220,-511 147,-144 313,-216 499,-216 186,0 353,72 499,216 147,143 220,314 220,511 0,203 -69,377 -207,520 -138,144 -309,216 -512,216z"/>
<path id="9" class="fil8" d="M274181 223669c0,29 -10,52 -30,72 -19,20 -43,30 -72,30l-1759 0c-28,0 -42,14 -42,42l0 1336c0,29 14,43 42,43l1007 0c28,0 52,10 71,29 20,20 30,44 30,72l0 821c0,28 -10,52 -30,72 -19,19 -43,29 -71,29l-1007 0c-28,0 -42,14 -42,42l0 2310c0,28 -10,52 -30,71 -20,20 -44,30 -72,30l-989 0c-28,0 -52,-10 -72,-30 -20,-19 -30,-43 -30,-71l0 -5718c0,-28 10,-52 30,-72 20,-20 44,-30 72,-30l2892 0c29,0 53,10 72,30 20,20 30,44 30,72l0 820z"/>
<path id="10" class="fil8" d="M276981 228668c-62,0 -102,-28 -119,-85l-651 -2334c-11,-23 -26,-34 -42,-34l-288 0c-28,0 -42,14 -42,42l0 2310c0,28 -10,52 -30,71 -20,20 -44,30 -72,30l-989 0c-29,0 -53,-10 -72,-30 -20,-19 -30,-43 -30,-71l0 -5727c0,-28 10,-52 30,-71 19,-20 43,-30 72,-30l1708 0c310,0 587,76 829,228 242,153 430,364 562,635 133,270 199,578 199,922 0,332 -63,625 -190,879 -127,254 -303,454 -529,601 -11,5 -19,12 -25,21 -6,8 -6,18 0,29l778 2496 9 33c0,57 -31,85 -93,85l-1015 0zm-1100 -4897c-28,0 -42,14 -42,42l0 1438c0,28 14,42 42,42l381 0c174,0 317,-67 427,-203 110,-135 165,-318 165,-550 0,-242 -55,-431 -165,-566 -110,-136 -253,-203 -427,-203l-381 0z"/>
<path id="11" class="fil8" d="M280254 228736c-519,0 -933,-153 -1243,-457 -311,-305 -466,-711 -466,-1218l0 -2707c0,-507 155,-913 466,-1218 310,-304 724,-456 1243,-456 519,0 934,152 1247,456 313,305 470,711 470,1218l0 2707c0,507 -157,913 -470,1218 -313,304 -728,457 -1247,457zm0 -1024c158,0 285,-55 380,-165 96,-110 144,-255 144,-435l0 -2808c0,-181 -48,-326 -144,-436 -95,-110 -222,-165 -380,-165 -158,0 -283,55 -377,165 -93,110 -139,255 -139,436l0 2808c0,180 46,325 139,435 94,110 219,165 377,165z"/>
<path id="12" class="fil8" d="M282715 228668c-28,0 -52,-10 -72,-30 -19,-19 -29,-43 -29,-71l0 -5718c0,-28 10,-52 29,-72 20,-20 44,-30 72,-30l973 0c56,0 96,26 118,77l736 1581c17,34 34,34 51,0l736 -1581c22,-51 62,-77 118,-77l981 0c28,0 52,10 72,30 20,20 30,44 30,72l0 5718c0,28 -10,52 -30,71 -20,20 -44,30 -72,30l-989 0c-28,0 -52,-10 -72,-30 -20,-19 -30,-43 -30,-71l0 -3654c0,-23 -7,-36 -21,-38 -14,-3 -24,7 -30,29l-659 1311c-23,51 -43,76 -59,76 -12,0 -32,-25 -60,-76l-651 -1328c-11,-17 -23,-25 -34,-25 -11,0 -17,11 -17,34l0 3671c0,28 -10,52 -29,71 -20,20 -44,30 -72,30l-990 0z"/>
<path id="13" class="fil8" d="M292171 226283c6,118 9,287 9,507 0,232 -3,412 -9,542 -28,417 -196,755 -503,1015 -307,259 -698,389 -1171,389 -491,0 -893,-130 -1206,-389 -313,-260 -483,-598 -511,-1015 -12,-102 -17,-251 -17,-449 0,-67 34,-101 101,-101l990 0c67,0 101,34 101,101 0,141 3,243 9,305 17,158 73,285 169,380 96,96 217,144 364,144 152,0 277,-49 376,-148 99,-98 156,-224 173,-376 6,-79 7,-174 5,-283 -3,-110 -5,-191 -5,-242 0,-45 2,-124 5,-236 2,-113 1,-206 -5,-279 -22,-158 -81,-284 -177,-377 -96,-93 -220,-139 -372,-139 -91,0 -181,36 -271,110 -34,22 -56,33 -68,33 -22,0 -48,-14 -76,-42l-499 -516c-22,-34 -34,-59 -34,-76 0,-23 12,-45 34,-68l1134 -1260c28,-34 22,-51 -17,-51l-1734 0c-29,0 -52,-10 -72,-29 -20,-20 -30,-44 -30,-72l0 -812c0,-28 10,-52 30,-72 20,-20 43,-30 72,-30l3087 0c28,0 52,10 72,30 20,20 29,44 29,72l0 846c0,50 -14,90 -42,118l-956 1133c-17,29 -11,46 17,51 277,40 508,183 694,432 186,248 287,532 304,854z"/>
<path id="14" class="fil8" d="M294294 228761c-327,0 -614,-70 -862,-211 -249,-141 -442,-342 -580,-601 -138,-259 -207,-558 -207,-896l0 -2690c0,-338 69,-637 207,-897 138,-259 331,-459 580,-600 248,-141 535,-212 862,-212 502,0 905,157 1210,470 304,313 457,726 457,1239l0 2690c0,513 -153,926 -457,1239 -305,313 -708,469 -1210,469zm0 -1023c141,0 255,-57 343,-170 87,-112 131,-262 131,-448l0 -2825c0,-186 -44,-335 -131,-448 -88,-113 -202,-169 -343,-169 -135,0 -245,56 -330,169 -84,113 -126,262 -126,448l0 2825c0,186 42,336 126,448 85,113 195,170 330,170z"/>
<path id="15" class="fil8" d="M297855 225344c-237,0 -457,-59 -660,-178 -203,-118 -363,-280 -482,-486 -118,-206 -177,-430 -177,-672 0,-243 59,-466 177,-669 119,-203 279,-365 482,-486 203,-121 423,-182 660,-182 237,0 455,61 656,182 200,121 358,283 473,486 116,203 174,426 174,669 0,242 -58,466 -174,672 -115,206 -273,368 -473,486 -201,119 -419,178 -656,178zm-355 3324c-40,0 -65,-11 -76,-34 -11,-22 -9,-51 8,-84l3079 -5735c23,-45 65,-68 127,-68l634 0c40,0 65,12 76,34 12,23 9,51 -8,85l-3079 5734c-22,45 -65,68 -127,68l-634 0zm355 -3941c192,0 351,-71 478,-212 127,-141 190,-310 190,-507 0,-198 -64,-365 -194,-504 -130,-138 -288,-207 -474,-207 -192,0 -354,69 -486,207 -133,139 -199,306 -199,504 0,203 66,373 199,511 132,139 294,208 486,208zm3104 4017c-237,0 -455,-60 -655,-182 -200,-121 -360,-284 -478,-490 -119,-206 -178,-430 -178,-673 0,-242 59,-465 178,-668 118,-203 278,-364 478,-482 200,-118 418,-178 655,-178 237,0 456,60 656,178 200,118 359,279 478,482 118,203 177,426 177,668 0,243 -59,467 -177,673 -119,206 -278,369 -478,490 -200,122 -419,182 -656,182zm0 -626c192,0 353,-70 482,-211 130,-141 195,-310 195,-508 0,-197 -66,-365 -199,-503 -132,-138 -292,-207 -478,-207 -191,0 -352,69 -482,207 -130,138 -194,306 -194,503 0,203 64,374 194,512 130,138 291,207 482,207z"/>
<path id="16" class="fil8" d="M306305 228736c-508,0 -915,-145 -1222,-436 -308,-290 -461,-678 -461,-1163l0 -2859c0,-485 153,-872 461,-1163 307,-290 714,-435 1222,-435 507,0 916,146 1226,440 310,293 465,682 465,1167l0 321c0,28 -9,52 -29,72 -20,20 -44,30 -72,30l-990 0c-28,0 -52,-10 -72,-30 -19,-20 -29,-44 -29,-72l0 -338c0,-169 -45,-306 -136,-410 -90,-105 -211,-157 -363,-157 -147,0 -265,52 -355,157 -91,104 -136,241 -136,410l0 2876c0,169 45,305 136,410 90,104 208,156 355,156 152,0 273,-52 363,-156 91,-105 136,-241 136,-410l0 -677c0,-28 -14,-42 -42,-42l-373 0c-28,0 -52,-10 -72,-30 -19,-20 -29,-44 -29,-72l0 -753c0,-28 10,-52 29,-72 20,-19 44,-29 72,-29l1506 0c28,0 52,10 72,29 20,20 29,44 29,72l0 1565c0,485 -155,873 -465,1163 -310,291 -719,436 -1226,436z"/>
<path id="17" class="fil8" d="M310965 228668c-62,0 -101,-28 -118,-85l-651 -2334c-12,-23 -26,-34 -43,-34l-287 0c-29,0 -43,14 -43,42l0 2310c0,28 -9,52 -29,71 -20,20 -44,30 -72,30l-990 0c-28,0 -52,-10 -72,-30 -19,-19 -29,-43 -29,-71l0 -5727c0,-28 10,-52 29,-71 20,-20 44,-30 72,-30l1709 0c310,0 586,76 829,228 242,153 430,364 562,635 133,270 199,578 199,922 0,332 -63,625 -190,879 -127,254 -303,454 -529,601 -11,5 -20,12 -25,21 -6,8 -6,18 0,29l778 2496 8 33c0,57 -31,85 -93,85l-1015 0zm-1099 -4897c-29,0 -43,14 -43,42l0 1438c0,28 14,42 43,42l380 0c175,0 317,-67 427,-203 110,-135 165,-318 165,-550 0,-242 -55,-431 -165,-566 -110,-136 -252,-203 -427,-203l-380 0z"/>
<path id="18" class="fil8" d="M315719 223669c0,29 -10,52 -30,72 -20,20 -44,30 -72,30l-1768 0c-28,0 -42,14 -42,42l0 1336c0,29 14,43 42,43l1015 0c29,0 53,10 72,29 20,20 30,44 30,72l0 821c0,28 -10,52 -30,72 -19,19 -43,29 -72,29l-1015 0c-28,0 -42,14 -42,42l0 1345c0,29 14,43 42,43l1768 0c28,0 52,9 72,29 20,20 30,44 30,72l0 821c0,28 -10,52 -30,71 -20,20 -44,30 -72,30l-2901 0c-28,0 -52,-10 -72,-30 -20,-19 -29,-43 -29,-71l0 -5718c0,-28 9,-52 29,-72 20,-20 44,-30 72,-30l2901 0c28,0 52,10 72,30 20,20 30,44 30,72l0 820z"/>
<path id="19" class="fil8" d="M317453 228660c-29,0 -53,-10 -72,-30 -20,-20 -30,-44 -30,-72l0 -2199 -8 -51 -1184 -3442c-6,-11 -9,-26 -9,-42 0,-51 31,-77 93,-77l1040 0c62,0 102,29 119,85l524 2021c6,17 14,26 26,26 11,0 19,-9 25,-26l524 -2021c17,-56 57,-85 119,-85l1040 0c34,0 59,10 76,30 17,20 20,49 9,89l-1193 3442 -8 51 0 2199c0,28 -10,52 -30,72 -20,20 -44,30 -72,30l-989 0z"/>
<path id="20" class="fil8" d="M325302 222747c28,0 52,10 72,30 19,20 29,44 29,72l0 820c0,29 -10,52 -29,72 -20,20 -44,30 -72,30l-1058 0c-28,0 -42,14 -42,42l0 4754c0,28 -10,52 -30,71 -19,20 -43,30 -71,30l-990 0c-28,0 -52,-10 -72,-30 -20,-19 -29,-43 -29,-71l0 -4754c0,-28 -15,-42 -43,-42l-1015 0c-28,0 -52,-10 -72,-30 -19,-20 -29,-43 -29,-72l0 -820c0,-28 10,-52 29,-72 20,-20 44,-30 72,-30l3350 0z"/>
<path id="21" class="fil8" d="M327442 228736c-519,0 -934,-153 -1244,-457 -310,-305 -465,-711 -465,-1218l0 -2707c0,-507 155,-913 465,-1218 310,-304 725,-456 1244,-456 518,0 934,152 1247,456 313,305 470,711 470,1218l0 2707c0,507 -157,913 -470,1218 -313,304 -729,457 -1247,457zm0 -1024c157,0 284,-55 380,-165 96,-110 144,-255 144,-435l0 -2808c0,-181 -48,-326 -144,-436 -96,-110 -223,-165 -380,-165 -158,0 -284,55 -377,165 -93,110 -139,255 -139,436l0 2808c0,180 46,325 139,435 93,110 219,165 377,165z"/>
<path id="22" class="fil8" d="M331924 222773c29,-17 71,-26 127,-26l1024 0c28,0 52,10 72,30 19,20 29,44 29,72l0 5718c0,28 -10,52 -29,71 -20,20 -44,30 -72,30l-990 0c-28,0 -52,-10 -72,-30 -20,-19 -29,-43 -29,-71l0 -4661c0,-11 -5,-22 -13,-34 -9,-11 -18,-14 -30,-8l-575 118 -34 9c-50,0 -76,-31 -76,-93l0 -728c0,-56 26,-96 76,-118l592 -279z"/>
<path id="23" class="fil8" d="M335316 228761c-327,0 -615,-70 -863,-211 -248,-141 -441,-342 -579,-601 -138,-259 -207,-558 -207,-896l0 -2690c0,-338 69,-637 207,-897 138,-259 331,-459 579,-600 248,-141 536,-212 863,-212 502,0 905,157 1210,470 304,313 456,726 456,1239l0 2690c0,513 -152,926 -456,1239 -305,313 -708,469 -1210,469zm0 -1023c141,0 255,-57 343,-170 87,-112 131,-262 131,-448l0 -2825c0,-186 -44,-335 -131,-448 -88,-113 -202,-169 -343,-169 -135,0 -245,56 -330,169 -84,113 -127,262 -127,448l0 2825c0,186 43,336 127,448 85,113 195,170 330,170z"/>
<path id="24" class="fil8" d="M339038 228761c-327,0 -615,-70 -863,-211 -248,-141 -441,-342 -579,-601 -139,-259 -208,-558 -208,-896l0 -2690c0,-338 69,-637 208,-897 138,-259 331,-459 579,-600 248,-141 536,-212 863,-212 502,0 905,157 1209,470 305,313 457,726 457,1239l0 2690c0,513 -152,926 -457,1239 -304,313 -707,469 -1209,469zm0 -1023c141,0 255,-57 342,-170 88,-112 131,-262 131,-448l0 -2825c0,-186 -43,-335 -131,-448 -87,-113 -201,-169 -342,-169 -136,0 -246,56 -330,169 -85,113 -127,262 -127,448l0 2825c0,186 42,336 127,448 84,113 194,170 330,170z"/>
<path id="25" class="fil8" d="M342599 225344c-237,0 -457,-59 -660,-178 -203,-118 -364,-280 -482,-486 -119,-206 -178,-430 -178,-672 0,-243 59,-466 178,-669 118,-203 279,-365 482,-486 203,-121 423,-182 660,-182 236,0 455,61 655,182 200,121 358,283 474,486 115,203 173,426 173,669 0,242 -58,466 -173,672 -116,206 -274,368 -474,486 -200,119 -419,178 -655,178zm-356 3324c-39,0 -65,-11 -76,-34 -11,-22 -8,-51 9,-84l3078 -5735c23,-45 65,-68 127,-68l635 0c39,0 64,12 76,34 11,23 8,51 -9,85l-3078 5734c-23,45 -65,68 -127,68l-635 0zm356 -3941c191,0 351,-71 477,-212 127,-141 191,-310 191,-507 0,-198 -65,-365 -195,-504 -129,-138 -287,-207 -473,-207 -192,0 -354,69 -487,207 -132,139 -199,306 -199,504 0,203 67,373 199,511 133,139 295,208 487,208zm3104 4017c-237,0 -456,-60 -656,-182 -200,-121 -359,-284 -478,-490 -118,-206 -177,-430 -177,-673 0,-242 59,-465 177,-668 119,-203 278,-364 478,-482 200,-118 419,-178 656,-178 237,0 455,60 655,178 200,118 360,279 478,482 118,203 178,426 178,668 0,243 -60,467 -178,673 -118,206 -278,369 -478,490 -200,122 -418,182 -655,182zm0 -626c191,0 352,-70 482,-211 129,-141 194,-310 194,-508 0,-197 -66,-365 -198,-503 -133,-138 -292,-207 -478,-207 -192,0 -353,69 -482,207 -130,138 -195,306 -195,503 0,203 65,374 195,512 129,138 290,207 482,207z"/>
<path id="26" class="fil8" d="M352850 227036c0,524 -158,927 -474,1209 -316,282 -724,423 -1226,423l-1599 0c-28,0 -52,-10 -72,-30 -20,-19 -29,-43 -29,-71l0 -5718c0,-28 9,-52 29,-72 20,-20 44,-30 72,-30l1413 0c563,0 1005,136 1323,406 319,271 478,674 478,1210 0,558 -192,964 -575,1218 -23,17 -25,34 -8,51 445,315 668,783 668,1404zm-2166 -3265c-28,0 -42,14 -42,42l0 1328c0,28 14,42 42,42l305 0c192,0 341,-60 448,-182 107,-121 161,-291 161,-511 0,-231 -52,-409 -157,-533 -104,-124 -255,-186 -452,-186l-305 0zm373 3865c186,0 332,-68 439,-203 108,-135 161,-327 161,-575 0,-248 -53,-445 -161,-592 -107,-147 -250,-220 -431,-220l-381 0c-28,0 -42,14 -42,42l0 1506c0,28 14,42 42,42l373 0z"/>
<path id="27" class="fil8" d="M353526 228668c-28,0 -52,-10 -71,-30 -20,-19 -30,-43 -30,-71l0 -5718c0,-28 10,-52 30,-72 19,-20 43,-30 71,-30l990 0c28,0 52,10 72,30 20,20 29,44 29,72l0 4753c0,29 15,43 43,43l1776 0c28,0 52,9 72,29 20,20 29,44 29,72l0 821c0,28 -9,52 -29,71 -20,20 -44,30 -72,30l-2910 0z"/>
<path id="28" class="fil8" d="M359735 228668c-68,0 -105,-31 -110,-93l-136 -812c0,-28 -17,-42 -50,-42l-1058 0c-34,0 -50,11 -50,34l-153 820c-5,62 -42,93 -110,93l-989 0c-74,0 -102,-37 -85,-110l1244 -5718c11,-62 47,-93 109,-93l1142 0c62,0 99,31 110,93l1235 5718 9 34c0,51 -31,76 -93,76l-1015 0zm-1218 -1911c-6,28 8,42 42,42l727 0c23,0 34,-14 34,-42l-355 -2183c-6,-17 -14,-25 -25,-25 -12,0 -20,8 -26,25l-397 2183z"/>
<path id="29" class="fil8" d="M362839 228736c-508,0 -915,-151 -1223,-453 -307,-301 -460,-706 -460,-1214l0 -2740c0,-502 153,-902 460,-1201 308,-299 715,-448 1223,-448 513,0 923,149 1230,448 308,299 461,699 461,1201l0 93c0,28 -10,52 -29,72 -20,20 -44,30 -72,30l-990 42c-67,0 -101,-31 -101,-93l0 -220c0,-164 -45,-296 -136,-398 -90,-101 -211,-152 -363,-152 -147,0 -265,51 -356,152 -90,102 -135,234 -135,398l0 2918c0,163 45,295 135,393 91,99 209,148 356,148 152,0 273,-49 363,-148 91,-98 136,-230 136,-393l0 -228c0,-29 10,-53 29,-72 20,-20 44,-30 72,-30l990 42c67,0 101,31 101,93l0 93c0,508 -155,913 -465,1214 -310,302 -719,453 -1226,453z"/>
<path id="30" class="fil8" d="M365266 228668c-28,0 -52,-10 -72,-30 -19,-19 -29,-43 -29,-71l0 -5718c0,-28 10,-52 29,-72 20,-20 44,-30 72,-30l990 0c28,0 52,10 72,30 19,20 29,44 29,72l0 2131c0,23 7,36 21,38 15,3 24,-7 30,-29l1091 -2165c28,-51 68,-77 119,-77l1048 0c40,0 67,10 81,30 14,20 12,49 -5,89l-1251 2436c-6,22 -9,39 -9,50l1328 3198c6,11 9,28 9,50 0,45 -29,68 -85,68l-1057 0c-62,0 -102,-25 -119,-76l-879 -2216c-6,-17 -14,-24 -26,-21 -11,3 -22,10 -34,21l-245 440c-11,22 -17,39 -17,50l0 1701c0,28 -10,52 -29,71 -20,20 -44,30 -72,30l-990 0z"/>
<path class="fil8" d="M76142 109254c0,56 -28,84 -85,84l-1903 0c-22,0 -34,12 -34,34l0 1836c0,22 12,33 34,33l1167 0c57,0 85,29 85,85l0 533c0,56 -28,84 -85,84l-1167 0c-22,0 -34,12 -34,34l0 1844c0,23 12,34 34,34l1903 0c57,0 85,28 85,85l0 532c0,57 -28,85 -85,85l-2664 0c-57,0 -85,-28 -85,-85l0 -5751c0,-57 28,-85 85,-85l2664 0c57,0 85,28 85,85l0 533z"/>
<path id="1" class="fil8" d="M77047 114557c-57,0 -85,-28 -85,-85l0 -5751c0,-57 28,-85 85,-85l643 0c56,0 84,28 84,85l0 5100c0,23 11,34 34,34l1895 0c56,0 84,28 84,85l0 532c0,57 -28,85 -84,85l-2656 0z"/>
<path id="2" class="fil8" d="M83238 109254c0,56 -28,84 -85,84l-1903 0c-22,0 -33,12 -33,34l0 1836c0,22 11,33 33,33l1168 0c56,0 84,29 84,85l0 533c0,56 -28,84 -84,84l-1168 0c-22,0 -33,12 -33,34l0 1844c0,23 11,34 33,34l1903 0c57,0 85,28 85,85l0 532c0,57 -28,85 -85,85l-2664 0c-56,0 -84,-28 -84,-85l0 -5751c0,-57 28,-85 84,-85l2664 0c57,0 85,28 85,85l0 533z"/>
<path id="3" class="fil8" d="M84135 114557c-57,0 -85,-28 -85,-85l0 -5751c0,-57 28,-85 85,-85l642 0c46,0 77,23 93,68l863 2055c6,12 14,17 26,17 11,0 19,-5 25,-17l880 -2055c16,-45 47,-68 93,-68l642 0c57,0 85,28 85,85l0 5751c0,57 -28,85 -85,85l-642 0c-57,0 -85,-28 -85,-85l0 -3831c0,-17 -4,-26 -13,-26 -8,0 -18,6 -29,17l-787 1675c-17,40 -39,59 -68,59 -39,0 -67,-19 -84,-59l-787 -1683c-11,-11 -21,-17 -29,-17 -9,0 -13,8 -13,25l0 3840c0,57 -28,85 -85,85l-642 0z"/>
<path id="4" class="fil8" d="M91307 109254c0,56 -28,84 -85,84l-1903 0c-22,0 -33,12 -33,34l0 1836c0,22 11,33 33,33l1168 0c56,0 84,29 84,85l0 533c0,56 -28,84 -84,84l-1168 0c-22,0 -33,12 -33,34l0 1844c0,23 11,34 33,34l1903 0c57,0 85,28 85,85l0 532c0,57 -28,85 -85,85l-2664 0c-56,0 -84,-28 -84,-85l0 -5751c0,-57 28,-85 84,-85l2664 0c57,0 85,28 85,85l0 533z"/>
<path id="5" class="fil8" d="M92220 114557c-56,0 -84,-28 -84,-85l0 -5751c0,-57 28,-85 84,-85l652 0c45,0 76,23 93,68l1505 3730c6,17 14,24 26,21 11,-3 17,-13 17,-29l0 -3705c0,-57 28,-85 84,-85l635 0c56,0 84,28 84,85l0 5751c0,57 -28,85 -84,85l-660 0c-45,0 -76,-23 -93,-68l-1506 -3730c-5,-17 -14,-25 -25,-25 -11,0 -17,8 -17,25l8 3713c0,57 -28,85 -84,85l-635 0z"/>
<path id="6" class="fil8" d="M99215 108636c57,0 85,28 85,85l0 533c0,56 -28,84 -85,84l-1108 0c-22,0 -34,12 -34,34l0 5100c0,57 -28,85 -84,85l-643 0c-56,0 -84,-28 -84,-85l0 -5100c0,-22 -12,-34 -34,-34l-1049 0c-57,0 -85,-28 -85,-84l0 -533c0,-57 28,-85 85,-85l3036 0z"/>
<path id="7" class="fil8" d="M104848 112941c0,514 -145,911 -435,1193 -291,282 -673,423 -1146,423l-1413 0c-56,0 -84,-28 -84,-85l0 -5751c0,-57 28,-85 84,-85l1294 0c513,0 915,134 1206,402 290,268 435,658 435,1171 0,609 -217,1030 -651,1261 -28,17 -31,31 -9,42 226,135 402,324 529,567 127,242 190,530 190,862zm-2233 -3603c-22,0 -33,12 -33,34l0 1793c0,23 11,34 33,34l542 0c265,0 471,-80 617,-241 147,-161 220,-385 220,-672 0,-299 -73,-532 -220,-698 -146,-167 -352,-250 -617,-250l-542 0zm584 4508c259,0 464,-87 613,-262 150,-175 224,-423 224,-744 0,-327 -73,-582 -219,-766 -147,-183 -350,-274 -609,-274l-593 0c-22,0 -33,11 -33,33l0 1980c0,22 11,33 33,33l584 0z"/>
<path id="8" class="fil8" d="M107978 114557c-51,0 -85,-23 -102,-68l-786 -2537c-6,-17 -17,-26 -34,-26l-584 0c-22,0 -33,12 -33,34l0 2512c0,57 -29,85 -85,85l-643 0c-56,0 -84,-28 -84,-85l0 -5760c0,-56 28,-84 84,-84l1514 0c288,0 541,70 761,211 220,141 391,340 512,597 121,256 182,548 182,875 0,355 -75,664 -224,926 -150,262 -351,450 -605,563 -17,17 -23,33 -17,50l871 2614 9 34c0,39 -26,59 -76,59l-660 0zm-1506 -5227c-22,0 -33,11 -33,34l0 1894c0,23 11,34 33,34l626 0c231,0 418,-89 558,-266 141,-178 212,-413 212,-707 0,-304 -71,-545 -212,-723 -140,-177 -327,-266 -558,-266l-626 0z"/>
<path id="9" class="fil8" d="M112292 109254c0,56 -29,84 -85,84l-1903 0c-23,0 -34,12 -34,34l0 1836c0,22 11,33 34,33l1167 0c56,0 85,29 85,85l0 533c0,56 -29,84 -85,84l-1167 0c-23,0 -34,12 -34,34l0 1844c0,23 11,34 34,34l1903 0c56,0 85,28 85,85l0 532c0,57 -29,85 -85,85l-2664 0c-57,0 -85,-28 -85,-85l0 -5751c0,-57 28,-85 85,-85l2664 0c56,0 85,28 85,85l0 533z"/>
<path id="10" class="fil8" d="M115759 114557c-50,0 -81,-25 -93,-76l-186 -973c0,-11 -4,-20 -12,-25 -9,-6 -19,-9 -30,-9l-1362 0c-11,0 -21,3 -29,9 -9,5 -13,14 -13,25l-195 973c-5,51 -36,76 -93,76l-643 0c-28,0 -49,-9 -63,-25 -14,-17 -18,-40 -13,-68l1261 -5752c11,-50 42,-76 93,-76l744 0c56,0 87,26 93,76l1277 5752 0 17c0,51 -25,76 -76,76l-660 0zm-1581 -1759c0,22 8,33 25,33l1116 0c17,0 26,-11 26,-33l-558 -2893c-6,-17 -12,-25 -17,-25 -6,0 -12,8 -17,25l-575 2893z"/>
<path id="11" class="fil8" d="M117358 114557c-56,0 -85,-28 -85,-85l0 -5751c0,-57 29,-85 85,-85l643 0c56,0 84,28 84,85l0 2537c0,17 6,27 17,30 12,3 20,-4 26,-21l1437 -2572c29,-39 63,-59 102,-59l694 0c33,0 56,10 67,30 12,20 9,44 -8,72l-1303 2351c-5,17 -5,34 0,51l1413 3315 8 34c0,45 -25,68 -76,68l-702 0c-45,0 -76,-23 -93,-68l-1100 -2639c-5,-28 -19,-31 -42,-8l-431 685c-6,6 -9,20 -9,42l0 1903c0,57 -28,85 -84,85l-643 0z"/>
<path id="12" class="fil8" d="M121299 114557c-56,0 -84,-28 -84,-85l0 -5751c0,-57 28,-85 84,-85l1388 0c468,0 840,144 1116,432 276,287 414,676 414,1167l0 2723c0,491 -138,880 -414,1168 -276,287 -648,431 -1116,431l-1388 0zm728 -736c0,23 11,34 34,34l617 -9c214,0 386,-83 516,-249 130,-166 197,-393 203,-681l0 -2639c0,-287 -65,-516 -194,-685 -130,-169 -305,-254 -525,-254l-617 0c-23,0 -34,12 -34,34l0 4449z"/>
<path id="13" class="fil8" d="M126603 114625c-463,0 -835,-141 -1117,-423 -282,-282 -423,-657 -423,-1125l0 -2952c0,-468 141,-844 423,-1129 282,-285 654,-427 1117,-427 468,0 844,142 1129,427 285,285 427,661 427,1129l0 2952c0,468 -142,843 -427,1125 -285,282 -661,423 -1129,423zm0 -702c225,0 406,-75 541,-225 135,-149 203,-345 203,-587l0 -3028c0,-243 -68,-439 -203,-588 -135,-150 -316,-224 -541,-224 -220,0 -397,74 -529,224 -133,149 -199,345 -199,588l0 3028c0,242 66,438 199,587 132,150 309,225 529,225z"/>
<path id="14" class="fil8" d="M129901 114557c-51,0 -82,-25 -93,-76l-1125 -5752 0 -17c0,-50 26,-76 76,-76l669 0c56,0 87,26 93,76l685 3967c5,12 11,17 17,17 5,0 11,-5 17,-17l609 -3967c5,-50 33,-76 84,-76l567 0c51,0 79,26 84,76l652 3967c5,12 11,17 17,17 5,0 11,-5 16,-17l626 -3967c12,-50 40,-76 85,-76l660 0c28,0 49,9 63,26 14,17 18,39 13,67l-1066 5752c-6,51 -37,76 -93,76l-600 0c-46,0 -74,-25 -85,-76l-643 -4001c-5,-11 -13,-17 -21,-17 -8,0 -13,6 -13,17l-609 4001c-5,51 -33,76 -84,76l-601 0z"/>
<path id="15" class="fil8" d="M134545 114557c-57,0 -85,-28 -85,-85l0 -5751c0,-57 28,-85 85,-85l651 0c45,0 76,23 93,68l1506 3730c5,17 14,24 25,21 11,-3 17,-13 17,-29l0 -3705c0,-57 28,-85 84,-85l635 0c56,0 84,28 84,85l0 5751c0,57 -28,85 -84,85l-660 0c-45,0 -76,-23 -93,-68l-1506 -3730c-5,-17 -14,-25 -25,-25 -11,0 -17,8 -17,25l9 3713c0,57 -29,85 -85,85l-634 0z"/>
<path class="fil7" d="M170358 341189c6,507 -130,902 -406,1184 -276,282 -646,423 -1108,423l-1294 0c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l1218 0c485,0 865,134 1142,402 276,268 414,650 414,1146 0,632 -234,1063 -702,1294 -11,6 -17,12 -17,17 0,6 3,11 9,17 496,288 744,767 744,1438zm-2258 -3789c-23,0 -34,11 -34,34l0 2038c0,23 11,34 34,34l668 0c304,0 541,-90 710,-271 169,-180 254,-434 254,-761 0,-338 -85,-602 -254,-791 -169,-189 -406,-283 -710,-283l-668 0zm702 4863c298,0 532,-100 702,-300 169,-200 253,-481 253,-842 0,-366 -84,-651 -253,-854 -170,-203 -404,-304 -702,-304l-702 0c-23,0 -34,11 -34,33l0 2233c0,23 11,34 34,34l702 0z"/>
<path id="1" class="fil7" d="M173631 342796c-51,0 -84,-23 -101,-68l-871 -2630c-6,-17 -17,-25 -34,-25l-728 0c-22,0 -34,11 -34,33l0 2605c0,57 -28,85 -84,85l-431 0c-57,0 -85,-28 -85,-85l0 -5759c0,-57 28,-85 85,-85l1395 0c412,0 744,149 998,448 254,299 381,691 381,1176 0,372 -79,691 -237,956 -158,265 -372,448 -643,549 -22,6 -31,20 -25,43l922 2664 8 34c0,39 -25,59 -76,59l-440 0zm-1734 -5405c-22,0 -34,12 -34,34l0 2132c0,22 12,33 34,33l762 0c259,0 468,-100 625,-300 158,-200 237,-464 237,-791 0,-338 -79,-607 -237,-807 -157,-201 -366,-301 -625,-301l-762 0z"/>
<path id="2" class="fil7" d="M177547 342796c-50,0 -81,-25 -93,-76l-211 -1049c0,-11 -4,-20 -13,-25 -8,-6 -18,-9 -29,-9l-1531 0c-12,0 -22,3 -30,9 -8,5 -13,14 -13,25l-220 1049c-5,51 -36,76 -93,76l-431 0c-28,0 -49,-8 -63,-25 -15,-17 -19,-40 -13,-68l1277 -5751c11,-51 42,-77 93,-77l508 0c56,0 87,26 93,77l1285 5751 0 17c0,51 -25,76 -76,76l-440 0zm-1801 -1683c0,22 8,34 25,34l1328 0c17,0 25,-12 25,-34l-668 -3256c-5,-17 -11,-26 -17,-26 -5,0 -11,9 -17,26l-676 3256z"/>
<path id="3" class="fil7" d="M179053 342796c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l448 0c45,0 76,23 93,68l1700 4263c6,17 14,25 26,25 11,0 17,-8 17,-25l0 -4246c0,-56 28,-85 84,-85l423 0c56,0 85,29 85,85l0 5751c0,57 -29,85 -85,85l-448 0c-45,0 -76,-23 -93,-68l-1700 -4262c-6,-17 -15,-24 -26,-22 -11,3 -17,13 -17,30l9 4237c0,57 -28,85 -85,85l-431 0z"/>
<path id="4" class="fil7" d="M183223 342796c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l1302 0c434,0 781,143 1041,428 259,284 389,666 389,1146l0 2774c0,479 -130,861 -389,1146 -260,285 -607,427 -1041,427l-1302 0zm516 -558c0,22 11,34 33,34l745 -9c248,0 447,-96 596,-287 149,-192 227,-451 233,-779l0 -2723c0,-333 -74,-595 -220,-787 -147,-191 -350,-287 -609,-287l-745 0c-22,0 -33,11 -33,34l0 4804z"/>
<path id="5" class="fil7" d="M191359 336875c57,0 85,29 85,85l0 355c0,57 -28,85 -85,85l-1116 0c-23,0 -34,11 -34,34l0 5277c0,57 -28,85 -85,85l-431 0c-56,0 -85,-28 -85,-85l0 -5277c0,-23 -11,-34 -33,-34l-1049 0c-57,0 -85,-28 -85,-85l0 -355c0,-56 28,-85 85,-85l2833 0z"/>
<path id="6" class="fil7" d="M195022 337315c0,57 -29,85 -85,85l-1962 0c-23,0 -34,11 -34,34l0 2097c0,23 11,34 34,34l1235 0c56,0 84,28 84,85l0 363c0,57 -28,85 -84,85l-1235 0c-23,0 -34,11 -34,34l0 2106c0,22 11,34 34,34l1962 0c56,0 85,28 85,84l0 355c0,57 -29,85 -85,85l-2512 0c-56,0 -85,-28 -85,-85l0 -5751c0,-56 29,-85 85,-85l2512 0c56,0 85,29 85,85l0 355z"/>
<path id="7" class="fil7" d="M195749 342796c-28,0 -49,-10 -63,-30 -15,-19 -16,-43 -5,-71l1184 -2834c12,-17 12,-34 0,-51l-1184 -2833 -8 -34c0,-45 25,-68 76,-68l448 0c45,0 76,23 93,68l880 2250c6,17 14,25 25,25 12,0 20,-8 26,-25l879 -2250c17,-45 48,-68 93,-68l449 0c28,0 49,10 63,30 14,20 16,44 4,72l-1192 2842c-6,17 -6,34 0,51l1192 2825 9 33c0,45 -26,68 -76,68l-449 0c-45,0 -76,-23 -93,-68l-879 -2241c-6,-17 -14,-25 -26,-25 -11,0 -19,8 -25,25l-880 2241c-17,45 -48,68 -93,68l-448 0z"/>
<path id="8" class="fil7" d="M202236 336875c57,0 85,29 85,85l0 355c0,57 -28,85 -85,85l-1116 0c-23,0 -34,11 -34,34l0 5277c0,57 -28,85 -85,85l-431 0c-56,0 -84,-28 -84,-85l0 -5277c0,-23 -12,-34 -34,-34l-1049 0c-56,0 -85,-28 -85,-85l0 -355c0,-56 29,-85 85,-85l2833 0z"/>
<path id="9" class="fil7" d="M207573 337315c0,57 -28,85 -84,85l-1946 0c-22,0 -33,11 -33,34l0 2097c0,23 11,34 33,34l1227 0c56,0 84,28 84,85l0 363c0,57 -28,85 -84,85l-1227 0c-22,0 -33,11 -33,34l0 2579c0,57 -29,85 -85,85l-431 0c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l2495 0c56,0 84,29 84,85l0 355z"/>
<path id="10" class="fil7" d="M209637 342864c-434,0 -785,-136 -1053,-406 -268,-271 -402,-629 -402,-1074l0 -3096c0,-446 134,-804 402,-1074 268,-271 619,-406 1053,-406 440,0 795,135 1066,406 271,270 406,628 406,1074l0 3096c0,439 -135,796 -406,1069 -271,274 -626,411 -1066,411zm0 -525c260,0 470,-86 630,-258 161,-172 241,-393 241,-664l0 -3154c0,-277 -80,-501 -241,-673 -160,-172 -370,-258 -630,-258 -254,0 -459,86 -617,258 -158,172 -237,396 -237,673l0 3154c0,271 79,492 237,664 158,172 363,258 617,258z"/>
<path id="11" class="fil7" d="M212268 342796c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l448 0c45,0 76,23 93,68l1700 4263c6,17 14,25 25,25 12,0 17,-8 17,-25l0 -4246c0,-56 29,-85 85,-85l423 0c56,0 84,29 84,85l0 5751c0,57 -28,85 -84,85l-448 0c-46,0 -77,-23 -93,-68l-1701 -4262c-5,-17 -14,-24 -25,-22 -11,3 -17,13 -17,30l9 4237c0,57 -29,85 -85,85l-431 0z"/>
<path id="12" class="fil7" d="M218950 336875c56,0 84,29 84,85l0 355c0,57 -28,85 -84,85l-1117 0c-22,0 -34,11 -34,34l0 5277c0,57 -28,85 -84,85l-432 0c-56,0 -84,-28 -84,-85l0 -5277c0,-23 -12,-34 -34,-34l-1049 0c-56,0 -84,-28 -84,-85l0 -355c0,-56 28,-85 84,-85l2834 0z"/>
<path id="13" class="fil7" d="M220218 339912c-135,0 -246,-50 -334,-148 -87,-99 -131,-219 -131,-360 0,-135 48,-252 144,-351 96,-98 203,-148 321,-148 119,0 226,50 322,148 96,99 144,216 144,351 0,141 -46,261 -136,360 -90,98 -200,148 -330,148zm0 2842c-135,0 -246,-48 -334,-144 -87,-96 -131,-217 -131,-364 0,-135 48,-252 144,-351 96,-98 203,-148 321,-148 119,0 226,50 322,148 96,99 144,216 144,351 0,141 -46,261 -136,360 -90,98 -200,148 -330,148z"/>
<path id="14" class="fil7" d="M226300 341189c5,507 -130,902 -406,1184 -277,282 -646,423 -1108,423l-1294 0c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l1218 0c485,0 865,134 1141,402 277,268 415,650 415,1146 0,632 -234,1063 -702,1294 -11,6 -17,12 -17,17 0,6 3,11 8,17 497,288 745,767 745,1438zm-2259 -3789c-22,0 -33,11 -33,34l0 2038c0,23 11,34 33,34l669 0c304,0 541,-90 710,-271 169,-180 254,-434 254,-761 0,-338 -85,-602 -254,-791 -169,-189 -406,-283 -710,-283l-669 0zm702 4863c299,0 533,-100 702,-300 170,-200 254,-481 254,-842 0,-366 -84,-651 -254,-854 -169,-203 -403,-304 -702,-304l-702 0c-22,0 -33,11 -33,33l0 2233c0,23 11,34 33,34l702 0z"/>
<path id="15" class="fil7" d="M229455 342796c-51,0 -82,-25 -93,-76l-212 -1049c0,-11 -4,-20 -13,-25 -8,-6 -18,-9 -29,-9l-1531 0c-11,0 -21,3 -30,9 -8,5 -12,14 -12,25l-220 1049c-6,51 -37,76 -93,76l-432 0c-28,0 -49,-8 -63,-25 -14,-17 -18,-40 -13,-68l1277 -5751c12,-51 43,-77 93,-77l508 0c56,0 87,26 93,77l1286 5751 0 17c0,51 -26,76 -77,76l-439 0zm-1802 -1683c0,22 8,34 25,34l1328 0c17,0 26,-12 26,-34l-668 -3256c-6,-17 -12,-26 -17,-26 -6,0 -12,9 -17,26l-677 3256z"/>
<path id="16" class="fil7" d="M233244 342796c-51,0 -85,-23 -102,-68l-871 -2630c-6,-17 -17,-25 -34,-25l-727 0c-23,0 -34,11 -34,33l0 2605c0,57 -28,85 -85,85l-431 0c-56,0 -84,-28 -84,-85l0 -5759c0,-57 28,-85 84,-85l1396 0c411,0 744,149 998,448 253,299 380,691 380,1176 0,372 -79,691 -236,956 -158,265 -373,448 -643,549 -23,6 -31,20 -26,43l922 2664 9 34c0,39 -26,59 -76,59l-440 0zm-1734 -5405c-23,0 -34,12 -34,34l0 2132c0,22 11,33 34,33l761 0c260,0 468,-100 626,-300 158,-200 237,-464 237,-791 0,-338 -79,-607 -237,-807 -158,-201 -366,-301 -626,-301l-761 0z"/>
<path id="17" class="fil7" d="M234707 342796c-56,0 -85,-28 -85,-85l0 -5751c0,-56 29,-85 85,-85l431 0c57,0 85,29 85,85l0 5278c0,22 11,34 34,34l1937 0c56,0 84,28 84,84l0 355c0,57 -28,85 -84,85l-2487 0z"/>
<path id="18" class="fil7" d="M239274 342864c-434,0 -785,-136 -1053,-406 -268,-271 -401,-629 -401,-1074l0 -3096c0,-446 133,-804 401,-1074 268,-271 619,-406 1053,-406 440,0 795,135 1066,406 271,270 406,628 406,1074l0 3096c0,439 -135,796 -406,1069 -271,274 -626,411 -1066,411zm0 -525c260,0 470,-86 630,-258 161,-172 242,-393 242,-664l0 -3154c0,-277 -81,-501 -242,-673 -160,-172 -370,-258 -630,-258 -253,0 -459,86 -617,258 -158,172 -237,396 -237,673l0 3154c0,271 79,492 237,664 158,172 364,258 617,258z"/>
<path id="19" class="fil7" d="M242590 342796c-51,0 -82,-25 -93,-76l-1117 -5752 0 -16c0,-51 26,-77 77,-77l448 0c56,0 87,26 93,77l795 4448c6,12 11,17 17,17 5,0 11,-5 17,-17l685 -4448c11,-51 39,-77 84,-77l390 0c50,0 78,26 84,77l719 4448c6,12 11,17 17,17 6,0 11,-5 17,-17l727 -4448c12,-51 40,-77 85,-77l448 0c28,0 49,9 64,26 14,17 18,39 12,67l-1049 5752c-5,51 -36,76 -93,76l-414 0c-45,0 -73,-25 -85,-76l-710 -4466c-6,-11 -13,-17 -21,-17 -9,0 -13,6 -13,17l-693 4466c-6,51 -34,76 -85,76l-406 0z"/>
<path id="20" class="fil7" d="M251369 337315c0,57 -28,85 -84,85l-1946 0c-22,0 -33,11 -33,34l0 2097c0,23 11,34 33,34l1227 0c56,0 84,28 84,85l0 363c0,57 -28,85 -84,85l-1227 0c-22,0 -33,11 -33,34l0 2579c0,57 -29,85 -85,85l-431 0c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l2495 0c56,0 84,29 84,85l0 355z"/>
<path id="21" class="fil7" d="M254304 342796c-50,0 -81,-25 -93,-76l-211 -1049c0,-11 -4,-20 -13,-25 -8,-6 -18,-9 -29,-9l-1531 0c-12,0 -21,3 -30,9 -8,5 -13,14 -13,25l-219 1049c-6,51 -37,76 -94,76l-431 0c-28,0 -49,-8 -63,-25 -14,-17 -19,-40 -13,-68l1277 -5751c11,-51 42,-77 93,-77l508 0c56,0 87,26 93,77l1285 5751 0 17c0,51 -25,76 -76,76l-440 0zm-1801 -1683c0,22 8,34 25,34l1328 0c17,0 26,-12 26,-34l-669 -3256c-5,-17 -11,-26 -17,-26 -5,0 -11,9 -17,26l-676 3256z"/>
<path id="22" class="fil7" d="M255861 342796c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l439 0c46,0 77,23 94,68l947 2292c5,11 14,17 25,17 11,0 20,-6 26,-17l955 -2292c17,-45 48,-68 93,-68l440 0c57,0 85,29 85,85l0 5751c0,57 -28,85 -85,85l-431 0c-57,0 -85,-28 -85,-85l0 -4330c0,-17 -5,-25 -17,-25 -11,0 -19,5 -25,16l-863 1963c-17,45 -42,67 -76,67 -39,0 -68,-22 -84,-67l-880 -1971c-6,-11 -14,-17 -25,-17 -12,0 -17,9 -17,25l0 4339c0,57 -29,85 -85,85l-431 0z"/>
<path id="23" class="fil7" d="M260259 342796c-56,0 -85,-28 -85,-85l0 -5751c0,-56 29,-85 85,-85l431 0c57,0 85,29 85,85l0 5751c0,57 -28,85 -85,85l-431 0z"/>
<path id="24" class="fil7" d="M262077 342796c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l432 0c56,0 84,29 84,85l0 5278c0,22 12,34 34,34l1937 0c56,0 85,28 85,84l0 355c0,57 -29,85 -85,85l-2487 0z"/>
<path id="25" class="fil7" d="M266095 342788c-56,0 -85,-29 -85,-85l0 -2529c0,-23 -2,-37 -8,-42l-1176 -3155 -8 -34c0,-45 25,-68 76,-68l457 0c50,0 84,23 101,68l829 2478c6,12 14,17 25,17 12,0 20,-5 26,-17l829 -2478c17,-45 50,-68 101,-68l457 0c28,0 49,10 63,30 15,20 16,44 5,72l-1168 3155c-5,5 -8,19 -8,42l0 2529c0,56 -28,85 -85,85l-431 0z"/>
<path id="26" class="fil7" d="M272853 340182c56,209 85,480 85,812 0,254 -17,488 -51,702 -57,378 -196,667 -419,867 -223,201 -517,301 -884,301 -366,0 -661,-99 -884,-296 -222,-198 -365,-494 -427,-888l-25 -254 0 -17c0,-45 25,-68 76,-68l431 0c57,0 88,28 93,85l26 203c90,473 327,710 710,710 181,0 330,-57 449,-173 118,-116 200,-283 245,-503 39,-181 59,-406 59,-677 0,-282 -25,-524 -76,-727 -102,-395 -327,-592 -677,-592 -389,0 -631,194 -727,583 -17,51 -48,76 -93,76l-440 0c-56,0 -85,-28 -85,-84l0 -3282c0,-56 29,-85 85,-85l2394 0c56,0 84,29 84,85l0 355c0,57 -28,85 -84,85l-1844 0c-23,0 -34,11 -34,34l-9 2097c0,12 5,20 13,26 9,5 19,2 30,-9 90,-135 210,-238 359,-309 150,-70 317,-105 504,-105 298,0 544,90 735,270 192,181 319,440 381,778z"/>
<path id="27" class="fil7" d="M276372 340631c56,0 84,28 84,84l0 373c0,56 -28,84 -84,84l-263 0c-22,0 -33,11 -33,34l0 1505c0,57 -29,85 -85,85l-431 0c-57,0 -85,-28 -85,-85l0 -1505c0,-23 -11,-34 -34,-34l-1920 0c-56,0 -84,-28 -84,-84l0 -322c0,-22 5,-56 17,-101l1268 -3722c17,-45 51,-68 102,-68l465 0c62,0 85,31 68,93l-1218 3620c-6,12 -6,22 0,30 5,9 14,13 25,13l1277 0c23,0 34,-12 34,-34l0 -1294c0,-57 28,-85 85,-85l431 0c56,0 85,28 85,85l0 1294c0,22 11,34 33,34l263 0z"/>
<path id="28" class="fil7" d="M280169 342864c-417,0 -755,-138 -1015,-415 -259,-276 -389,-637 -389,-1082l0 -203c0,-57 28,-85 85,-85l423 0c56,0 84,28 84,85l0 177c0,299 76,540 229,723 152,184 346,275 583,275 237,0 434,-87 592,-262 158,-175 237,-406 237,-693 0,-192 -38,-357 -114,-495 -76,-138 -175,-260 -296,-364 -121,-104 -323,-264 -605,-478 -282,-208 -504,-387 -668,-537 -164,-149 -297,-328 -402,-537 -104,-209 -156,-454 -156,-736 0,-440 127,-788 380,-1044 254,-257 584,-385 990,-385 429,0 771,139 1028,418 256,280 384,650 384,1113l0 211c0,56 -28,85 -84,85l-423 0c-56,0 -85,-29 -85,-85l0 -220c0,-299 -74,-540 -224,-723 -149,-183 -348,-275 -596,-275 -226,0 -412,80 -558,241 -147,161 -220,388 -220,681 0,175 32,329 97,461 65,133 162,258 292,376 130,119 321,274 575,466 338,248 591,449 757,604 166,155 295,325 385,508 90,183 135,404 135,664 0,462 -132,833 -397,1112 -265,279 -606,419 -1024,419z"/>
<path id="29" class="fil7" d="M285024 336875c57,0 85,29 85,85l0 355c0,57 -28,85 -85,85l-1116 0c-23,0 -34,11 -34,34l0 5277c0,57 -28,85 -85,85l-431 0c-56,0 -85,-28 -85,-85l0 -5277c0,-23 -11,-34 -33,-34l-1049 0c-57,0 -85,-28 -85,-85l0 -355c0,-56 28,-85 85,-85l2833 0z"/>
<path id="30" class="fil7" d="M286978 342788c-56,0 -85,-29 -85,-85l0 -2529c0,-23 -2,-37 -8,-42l-1176 -3155 -8 -34c0,-45 25,-68 76,-68l457 0c50,0 84,23 101,68l829 2478c6,12 14,17 25,17 12,0 20,-5 26,-17l829 -2478c17,-45 50,-68 101,-68l457 0c28,0 49,10 63,30 15,20 16,44 5,72l-1168 3155c-5,5 -8,19 -8,42l0 2529c0,56 -28,85 -85,85l-431 0z"/>
<path id="31" class="fil7" d="M289617 342796c-56,0 -85,-28 -85,-85l0 -5751c0,-56 29,-85 85,-85l431 0c57,0 85,29 85,85l0 5278c0,22 11,34 34,34l1937 0c56,0 84,28 84,84l0 355c0,57 -28,85 -84,85l-2487 0z"/>
<path id="32" class="fil7" d="M295563 337315c0,57 -28,85 -85,85l-1962 0c-22,0 -34,11 -34,34l0 2097c0,23 12,34 34,34l1235 0c56,0 85,28 85,85l0 363c0,57 -29,85 -85,85l-1235 0c-22,0 -34,11 -34,34l0 2106c0,22 12,34 34,34l1962 0c57,0 85,28 85,84l0 355c0,57 -28,85 -85,85l-2512 0c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l2512 0c57,0 85,29 85,85l0 355z"/>
<path id="33" class="fil7" d="M297737 342864c-418,0 -756,-138 -1015,-415 -260,-276 -389,-637 -389,-1082l0 -203c0,-57 28,-85 84,-85l423 0c56,0 85,28 85,85l0 177c0,299 76,540 228,723 152,184 347,275 584,275 236,0 434,-87 592,-262 158,-175 237,-406 237,-693 0,-192 -39,-357 -115,-495 -76,-138 -174,-260 -296,-364 -121,-104 -322,-264 -604,-478 -282,-208 -505,-387 -669,-537 -163,-149 -297,-328 -401,-537 -105,-209 -157,-454 -157,-736 0,-440 127,-788 381,-1044 254,-257 583,-385 989,-385 429,0 771,139 1028,418 257,280 385,650 385,1113l0 211c0,56 -28,85 -85,85l-423 0c-56,0 -84,-29 -84,-85l0 -220c0,-299 -75,-540 -224,-723 -150,-183 -349,-275 -597,-275 -225,0 -411,80 -558,241 -146,161 -220,388 -220,681 0,175 33,329 97,461 65,133 163,258 292,376 130,119 322,274 575,466 339,248 591,449 757,604 167,155 295,325 385,508 91,183 136,404 136,664 0,462 -133,833 -398,1112 -265,279 -606,419 -1023,419z"/>
<path id="34" class="fil7" d="M301890 342796c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l431 0c56,0 85,29 85,85l0 5278c0,22 11,34 33,34l1937 0c57,0 85,28 85,84l0 355c0,57 -28,85 -85,85l-2486 0z"/>
<path id="35" class="fil7" d="M305239 342796c-56,0 -85,-28 -85,-85l0 -5751c0,-56 29,-85 85,-85l431 0c57,0 85,29 85,85l0 5751c0,57 -28,85 -85,85l-431 0z"/>
<path id="36" class="fil7" d="M308267 342864c-434,0 -782,-133 -1045,-398 -262,-265 -393,-620 -393,-1066l0 -3137c0,-440 131,-793 393,-1058 263,-265 611,-397 1045,-397 440,0 791,131 1053,393 262,262 393,616 393,1062l0 143c0,57 -28,85 -84,85l-440 25c-56,0 -85,-28 -85,-84l0 -212c0,-265 -76,-479 -228,-643 -152,-163 -355,-245 -609,-245 -248,0 -450,82 -605,245 -155,164 -232,378 -232,643l0 3231c0,265 77,480 232,643 155,164 357,245 605,245 254,0 457,-81 609,-245 152,-163 228,-378 228,-643l0 -211c0,-57 29,-85 85,-85l440 26c56,0 84,28 84,84l0 135c0,446 -132,801 -397,1066 -265,265 -615,398 -1049,398z"/>
<path id="37" class="fil7" d="M313426 337315c0,57 -28,85 -84,85l-1962 0c-23,0 -34,11 -34,34l0 2097c0,23 11,34 34,34l1234 0c57,0 85,28 85,85l0 363c0,57 -28,85 -85,85l-1234 0c-23,0 -34,11 -34,34l0 2106c0,22 11,34 34,34l1962 0c56,0 84,28 84,84l0 355c0,57 -28,85 -84,85l-2512 0c-57,0 -85,-28 -85,-85l0 -5751c0,-56 28,-85 85,-85l2512 0c56,0 84,29 84,85l0 355z"/>
<path id="38" class="fil7" d="M314458 342796c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l449 0c45,0 76,23 93,68l1700 4263c5,17 14,25 25,25 11,0 17,-8 17,-25l0 -4246c0,-56 28,-85 85,-85l422 0c57,0 85,29 85,85l0 5751c0,57 -28,85 -85,85l-448 0c-45,0 -76,-23 -93,-68l-1700 -4262c-6,-17 -14,-24 -25,-22 -12,3 -17,13 -17,30l8 4237c0,57 -28,85 -84,85l-432 0z"/>
<path id="39" class="fil7" d="M319770 342864c-417,0 -756,-138 -1015,-415 -259,-276 -389,-637 -389,-1082l0 -203c0,-57 28,-85 84,-85l423 0c57,0 85,28 85,85l0 177c0,299 76,540 228,723 153,184 347,275 584,275 237,0 434,-87 592,-262 158,-175 237,-406 237,-693 0,-192 -38,-357 -114,-495 -76,-138 -175,-260 -296,-364 -122,-104 -323,-264 -605,-478 -282,-208 -505,-387 -668,-537 -164,-149 -298,-328 -402,-537 -104,-209 -157,-454 -157,-736 0,-440 127,-788 381,-1044 254,-257 584,-385 990,-385 428,0 771,139 1027,418 257,280 385,650 385,1113l0 211c0,56 -28,85 -84,85l-423 0c-57,0 -85,-29 -85,-85l0 -220c0,-299 -75,-540 -224,-723 -149,-183 -348,-275 -596,-275 -226,0 -412,80 -559,241 -146,161 -219,388 -219,681 0,175 32,329 97,461 65,133 162,258 292,376 129,119 321,274 575,466 338,248 590,449 757,604 166,155 294,325 385,508 90,183 135,404 135,664 0,462 -133,833 -398,1112 -265,279 -606,419 -1023,419z"/>
<path id="40" class="fil7" d="M324769 337315c0,57 -29,85 -85,85l-1962 0c-23,0 -34,11 -34,34l0 2097c0,23 11,34 34,34l1235 0c56,0 84,28 84,85l0 363c0,57 -28,85 -84,85l-1235 0c-23,0 -34,11 -34,34l0 2106c0,22 11,34 34,34l1962 0c56,0 85,28 85,84l0 355c0,57 -29,85 -85,85l-2512 0c-56,0 -85,-28 -85,-85l0 -5751c0,-56 29,-85 85,-85l2512 0c56,0 85,29 85,85l0 355z"/>
<path id="41" class="fil7" d="M326004 339912c-136,0 -247,-50 -335,-148 -87,-99 -131,-219 -131,-360 0,-135 48,-252 144,-351 96,-98 203,-148 322,-148 118,0 225,50 321,148 96,99 144,216 144,351 0,141 -45,261 -136,360 -90,98 -200,148 -329,148zm0 2842c-136,0 -247,-48 -335,-144 -87,-96 -131,-217 -131,-364 0,-135 48,-252 144,-351 96,-98 203,-148 322,-148 118,0 225,50 321,148 96,99 144,216 144,351 0,141 -45,261 -136,360 -90,98 -200,148 -329,148z"/>
<path id="42" class="fil7" d="M328812 342864c-435,0 -786,-136 -1053,-406 -268,-271 -402,-629 -402,-1074l0 -3096c0,-446 134,-804 402,-1074 267,-271 618,-406 1053,-406 439,0 795,135 1065,406 271,270 406,628 406,1074l0 3096c0,439 -135,796 -406,1069 -270,274 -626,411 -1065,411zm0 -525c259,0 469,-86 630,-258 160,-172 241,-393 241,-664l0 -3154c0,-277 -81,-501 -241,-673 -161,-172 -371,-258 -630,-258 -254,0 -460,86 -618,258 -158,172 -237,396 -237,673l0 3154c0,271 79,492 237,664 158,172 364,258 618,258z"/>
<path id="43" class="fil7" d="M334022 337315c0,57 -28,85 -85,85l-1945 0c-23,0 -34,11 -34,34l0 2097c0,23 11,34 34,34l1226 0c57,0 85,28 85,85l0 363c0,57 -28,85 -85,85l-1226 0c-23,0 -34,11 -34,34l0 2579c0,57 -28,85 -85,85l-431 0c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l2495 0c57,0 85,29 85,85l0 355z"/>
<path id="44" class="fil7" d="M334859 342796c-56,0 -84,-28 -84,-85l0 -5751c0,-56 28,-85 84,-85l432 0c56,0 84,29 84,85l0 5278c0,22 11,34 34,34l1937 0c56,0 84,28 84,84l0 355c0,57 -28,85 -84,85l-2487 0z"/>
<rect class="fil9" x="205954" y="238212" width="92987" height="57306"/>
<rect class="fil6" x="205954" y="298500" width="18597" height="15720"/>
<rect class="fil4" x="261746" y="298500" width="18597" height="15720"/>
<rect class="fil10" x="243149" y="298500" width="18597" height="15720"/>
<rect class="fil9" x="224551" y="298500" width="18597" height="15720"/>
<rect class="fil5" x="280344" y="298500" width="18597" height="15720"/>
<path class="fil8" d="M249238 250239c-366,0 -651,-87 -855,-263 -205,-175 -307,-421 -307,-737l0 -1081c0,-301 103,-543 310,-726 206,-183 490,-274 852,-274 363,0 646,90 850,271 205,182 307,419 307,712l0 127c0,19 -7,35 -20,49 -14,13 -30,20 -50,20l-821 35c-46,0 -69,-23 -69,-69l0 -87c0,-66 -18,-122 -55,-168 -37,-46 -84,-69 -142,-69 -61,0 -110,23 -147,69 -37,46 -55,108 -55,185l0 931c0,77 18,139 55,185 37,46 86,69 147,69 58,0 105,-23 142,-69 37,-46 55,-104 55,-173l0 -87c0,-19 7,-36 20,-49 14,-14 30,-21 49,-21l821 6c20,0 36,7 50,20 13,14 20,30 20,50l0 156c0,312 -101,555 -304,728 -202,174 -486,260 -853,260z"/>
<path id="1" class="fil8" d="M251823 250239c-374,0 -663,-87 -867,-263 -205,-175 -307,-421 -307,-737l0 -1081c0,-305 104,-547 312,-729 209,-181 496,-271 862,-271 366,0 651,90 856,271 204,182 306,424 306,729l0 1081c0,316 -101,562 -303,737 -203,176 -489,263 -859,263zm0 -826c62,0 111,-24 147,-70 37,-46 55,-106 55,-179l0 -931c0,-77 -18,-139 -55,-185 -36,-46 -85,-69 -147,-69 -62,0 -113,23 -153,69 -41,46 -61,108 -61,185l0 931c0,73 19,133 58,179 38,46 90,70 156,70z"/>
<path id="2" class="fil8" d="M253349 250193c-19,0 -35,-7 -49,-20 -13,-14 -20,-30 -20,-49l0 -3909c0,-19 7,-35 20,-49 14,-13 30,-20 49,-20l821 0c20,0 36,7 50,20 13,14 20,30 20,49l0 3909c0,19 -7,35 -20,49 -14,13 -30,20 -50,20l-821 0z"/>
<path id="3" class="fil8" d="M255703 250239c-374,0 -663,-87 -868,-263 -204,-175 -306,-421 -306,-737l0 -1081c0,-305 104,-547 312,-729 208,-181 495,-271 862,-271 366,0 651,90 855,271 205,182 307,424 307,729l0 1081c0,316 -102,562 -304,737 -202,176 -488,263 -858,263zm0 -826c61,0 110,-24 147,-70 37,-46 55,-106 55,-179l0 -931c0,-77 -18,-139 -55,-185 -37,-46 -86,-69 -147,-69 -62,0 -113,23 -154,69 -40,46 -60,108 -60,185l0 931c0,73 19,133 57,179 39,46 91,70 157,70z"/>
<path id="4" class="fil8" d="M258634 247163c100,0 181,22 243,64 31,19 42,48 34,87l-133 815c-3,42 -30,58 -80,46 -54,-15 -103,-23 -145,-23 -66,0 -127,12 -185,35 -69,23 -126,71 -171,144 -44,74 -66,155 -66,243l0 1544c0,19 -7,36 -20,49 -14,14 -30,20 -49,20l-821 0c-20,0 -36,-6 -50,-20 -13,-13 -20,-30 -20,-49l0 -2845c0,-19 7,-35 20,-49 14,-13 30,-20 50,-20l821 0c19,0 35,7 49,20 13,14 20,30 20,49l0 185c0,16 3,24 9,26 5,2 12,-3 20,-14 100,-204 258,-307 474,-307z"/>
<path id="5" class="fil8" d="M259819 248314c-162,0 -295,-54 -399,-162 -104,-108 -156,-239 -156,-393 0,-154 56,-285 168,-393 112,-108 241,-162 387,-162 143,0 270,54 382,162 112,108 167,239 167,393 0,154 -52,285 -156,393 -104,108 -235,162 -393,162zm0 1873c-162,0 -295,-54 -399,-162 -104,-107 -156,-239 -156,-393 0,-154 56,-285 168,-393 112,-108 241,-162 387,-162 143,0 270,54 382,162 112,108 167,239 167,393 0,154 -52,286 -156,393 -104,108 -235,162 -393,162z"/>
<path id="6" class="fil8" d="M263144 250239c-312,0 -564,-95 -755,-286 -191,-191 -286,-444 -286,-760l0 -2053c0,-316 95,-568 286,-757 191,-189 443,-283 755,-283 316,0 569,94 760,283 191,189 286,441 286,757l0 93c0,38 -19,58 -58,58l-439 23c-38,0 -58,-19 -58,-58l0 -150c0,-158 -45,-286 -136,-382 -90,-96 -209,-144 -355,-144 -147,0 -264,48 -353,144 -89,96 -133,224 -133,382l0 2127c0,158 44,286 133,382 89,96 206,145 353,145 146,0 265,-49 355,-145 91,-96 136,-224 136,-382l0 -150c0,-39 20,-58 58,-58l439 23c39,0 58,20 58,58l0 87c0,316 -95,569 -286,760 -191,191 -444,286 -760,286z"/>
<path id="7" class="fil8" d="M265613 250239c-301,0 -539,-82 -714,-248 -176,-166 -264,-388 -264,-665l0 -1203c0,-273 89,-495 266,-665 178,-169 415,-254 712,-254 300,0 538,85 714,254 175,170 263,392 263,665l0 1203c0,277 -88,499 -263,665 -176,166 -414,248 -714,248zm0 -485c123,0 224,-44 303,-130 79,-87 119,-200 119,-339l0 -1127c0,-139 -40,-253 -119,-341 -79,-89 -180,-133 -303,-133 -124,0 -225,44 -304,133 -79,88 -118,202 -118,341l0 1127c0,139 39,252 118,339 79,86 180,130 304,130z"/>
<path id="8" class="fil8" d="M267174 250193c-39,0 -58,-19 -58,-58l0 -3931c0,-39 19,-58 58,-58l439 0c39,0 58,19 58,58l0 3931c0,39 -19,58 -58,58l-439 0z"/>
<path id="9" class="fil8" d="M269168 250239c-300,0 -538,-82 -714,-248 -175,-166 -263,-388 -263,-665l0 -1203c0,-273 89,-495 266,-665 178,-169 415,-254 711,-254 301,0 539,85 714,254 176,170 264,392 264,665l0 1203c0,277 -88,499 -264,665 -175,166 -413,248 -714,248zm0 -485c124,0 225,-44 304,-130 79,-87 118,-200 118,-339l0 -1127c0,-139 -39,-253 -118,-341 -79,-89 -180,-133 -304,-133 -123,0 -224,44 -303,133 -79,88 -119,202 -119,341l0 1127c0,139 40,252 119,339 79,86 180,130 303,130z"/>
<path id="10" class="fil8" d="M271811 247221c96,0 179,22 248,64 27,15 37,40 29,75l-87 439c-3,35 -26,47 -69,35 -50,-19 -108,-29 -173,-29 -43,0 -74,2 -93,6 -119,15 -219,83 -298,202 -79,120 -118,264 -118,434l0 1688c0,39 -19,58 -58,58l-439 0c-39,0 -58,-19 -58,-58l0 -2827c0,-39 19,-58 58,-58l439 0c39,0 58,19 58,58l0 335c0,12 3,19 9,21 5,2 10,-3 14,-15 112,-285 291,-428 538,-428z"/>
<path id="11" class="fil8" d="M274777 247204c254,0 452,83 592,249 141,165 211,387 211,664l0 1203c0,285 -71,509 -213,671 -143,162 -340,243 -590,243 -100,0 -200,-21 -298,-61 -98,-41 -184,-103 -257,-188 -8,-8 -15,-10 -20,-6 -6,4 -9,10 -9,18l0 1243c0,38 -19,57 -58,57l-439 0c-39,0 -58,-19 -58,-57l0 -3932c0,-39 19,-58 58,-58l439 0c39,0 58,19 58,58l0 133c0,8 4,13 11,14 8,2 16,-2 24,-14 73,-81 158,-141 254,-179 96,-39 195,-58 295,-58zm248 948c0,-139 -38,-251 -115,-338 -77,-87 -177,-130 -301,-130 -123,0 -222,43 -298,130 -75,87 -112,199 -112,338l0 1133c0,139 37,253 112,342 76,88 175,133 298,133 124,0 224,-45 301,-133 77,-89 115,-203 115,-342l0 -1133z"/>
<path id="12" class="fil8" d="M277061 247204c281,0 511,89 691,266 179,177 268,410 268,700l0 1965c0,39 -19,58 -57,58l-440 0c-38,0 -58,-19 -58,-58l0 -127c0,-8 -3,-13 -8,-17 -6,-4 -13,-2 -21,6 -134,161 -333,242 -595,242 -220,0 -413,-62 -581,-188 -168,-125 -252,-347 -252,-667 0,-336 102,-581 304,-737 202,-157 467,-235 795,-235l335 0c16,0 23,-7 23,-23l0 -167c0,-162 -38,-292 -115,-391 -77,-98 -178,-147 -301,-147 -96,0 -177,33 -243,98 -65,66 -104,150 -115,255 0,38 -20,57 -58,57l-469 0c-38,0 -57,-19 -57,-57 19,-247 117,-448 295,-602 177,-154 397,-231 659,-231zm-99 2550c135,0 253,-43 353,-127 100,-85 150,-205 150,-359l0 -393c0,-16 -7,-23 -23,-23l-352 0c-155,0 -278,41 -370,124 -93,83 -139,203 -139,361 0,139 34,243 104,313 69,69 162,104 277,104z"/>
<path id="13" class="fil8" d="M278604 250193c-38,0 -57,-19 -57,-58l0 -3931c0,-39 19,-58 57,-58l440 0c38,0 58,19 58,58l0 3931c0,39 -20,58 -58,58l-440 0z"/>
<path id="14" class="fil8" d="M281565 248892c0,39 -20,58 -58,58l-1307 0c-15,0 -23,8 -23,23l0 312c0,139 39,253 116,342 77,88 177,133 300,133 108,0 199,-33 272,-99 73,-65 120,-150 139,-254 11,-31 33,-46 63,-46l428 23c20,0 34,5 44,17 9,12 12,25 8,41 -27,250 -122,446 -286,586 -164,141 -386,211 -668,211 -296,0 -533,-82 -708,-248 -175,-166 -263,-388 -263,-665l0 -1203c0,-273 88,-495 263,-665 175,-169 412,-254 708,-254 301,0 538,85 711,254 174,170 261,392 261,665l0 769zm-972 -1208c-123,0 -223,44 -300,133 -77,88 -116,202 -116,341l0 306c0,16 8,24 23,24l792 0c16,0 23,-8 23,-24l0 -306c0,-139 -38,-253 -115,-341 -77,-89 -179,-133 -307,-133z"/>
<path id="15" class="fil8" d="M283212 247597c0,39 -19,58 -57,58l-405 0c-15,0 -23,8 -23,23l0 1625c0,154 27,261 81,321 54,59 139,87 254,83l52 0c39,0 58,20 58,58l0 370c0,39 -19,58 -58,58l-179 0c-247,0 -433,-48 -558,-144 -125,-97 -188,-280 -188,-550l0 -1821c0,-15 -8,-23 -23,-23l-226 0c-38,0 -57,-19 -57,-58l0 -289c0,-39 19,-58 57,-58l226 0c15,0 23,-7 23,-23l0 -653c0,-39 19,-58 58,-58l422 0c39,0 58,19 58,58l0 653c0,16 8,23 23,23l405 0c38,0 57,19 57,58l0 289z"/>
<path id="16" class="fil8" d="M284802 247597c0,39 -19,58 -57,58l-405 0c-15,0 -23,8 -23,23l0 1625c0,154 27,261 81,321 54,59 139,87 254,83l52 0c39,0 58,20 58,58l0 370c0,39 -19,58 -58,58l-179 0c-247,0 -433,-48 -558,-144 -125,-97 -188,-280 -188,-550l0 -1821c0,-15 -8,-23 -23,-23l-226 0c-38,0 -57,-19 -57,-58l0 -289c0,-39 19,-58 57,-58l226 0c15,0 23,-7 23,-23l0 -653c0,-39 19,-58 58,-58l422 0c39,0 58,19 58,58l0 653c0,16 8,23 23,23l405 0c38,0 57,19 57,58l0 289z"/>
<path id="17" class="fil8" d="M287133 248892c0,39 -20,58 -58,58l-1307 0c-15,0 -23,8 -23,23l0 312c0,139 38,253 116,342 77,88 177,133 300,133 108,0 199,-33 272,-99 73,-65 119,-150 139,-254 11,-31 32,-46 63,-46l428 23c19,0 34,5 44,17 9,12 12,25 8,41 -27,250 -122,446 -286,586 -164,141 -386,211 -668,211 -297,0 -533,-82 -708,-248 -175,-166 -263,-388 -263,-665l0 -1203c0,-273 88,-495 263,-665 175,-169 411,-254 708,-254 301,0 538,85 711,254 174,170 261,392 261,665l0 769zm-972 -1208c-123,0 -223,44 -300,133 -78,88 -116,202 -116,341l0 306c0,16 8,24 23,24l792 0c16,0 23,-8 23,-24l0 -306c0,-139 -38,-253 -115,-341 -77,-89 -180,-133 -307,-133z"/>
<path id="18" class="fil8" d="M258160 257432c-39,0 -58,-19 -58,-58l0 -381c0,-31 8,-56 23,-76l179 -266c367,-528 650,-956 850,-1283 232,-393 347,-721 347,-983 0,-174 -39,-311 -118,-413 -79,-103 -182,-154 -310,-154 -127,0 -229,50 -306,151 -77,100 -114,233 -110,399l0 231c0,38 -19,58 -58,58l-451 0c-38,0 -57,-20 -57,-58l0 -249c11,-304 109,-549 294,-734 185,-185 422,-278 712,-278 289,0 522,97 699,290 177,192 266,447 266,763 0,189 -34,380 -101,575 -67,195 -171,404 -309,627 -108,182 -235,381 -382,599 -146,218 -243,363 -289,436l-197 295c-3,8 -3,15 0,20 4,6 10,9 18,9l1301 0c38,0 57,19 57,58l0 364c0,39 -19,58 -57,58l-1943 0z"/>
<path id="19" class="fil8" d="M262496 255703c31,147 46,309 46,486 0,146 -9,293 -28,439 -27,274 -126,484 -295,630 -170,147 -393,220 -671,220 -270,0 -488,-71 -653,-214 -166,-142 -270,-354 -313,-636l-17 -173c0,-39 19,-58 58,-58l439 0c39,0 58,19 58,58l18 127c50,278 186,416 410,416 108,0 197,-34 266,-104 69,-69 116,-169 139,-300 23,-116 34,-251 34,-405 0,-162 -15,-305 -46,-428 -27,-116 -74,-204 -141,-266 -68,-62 -152,-92 -252,-92 -227,0 -368,109 -422,329 -12,35 -33,52 -64,52l-445 0c-38,0 -58,-19 -58,-58l0 -2283c0,-39 20,-58 58,-58l1787 0c38,0 58,19 58,58l0 364c0,38 -20,58 -58,58l-1266 0c-16,0 -24,7 -24,23l0 1272c0,7 3,12 9,14 6,2 13,-1 20,-9 62,-77 141,-137 237,-182 97,-44 205,-66 324,-66 220,0 398,68 535,205 137,137 223,331 257,581z"/>
<path id="20" class="fil8" d="M264925 255703c30,147 46,309 46,486 0,146 -10,293 -29,439 -27,274 -125,484 -295,630 -169,147 -393,220 -671,220 -269,0 -487,-71 -653,-214 -166,-142 -270,-354 -312,-636l-17 -173c0,-39 19,-58 57,-58l440 0c38,0 58,19 58,58l17 127c50,278 187,416 410,416 108,0 197,-34 266,-104 70,-69 116,-169 139,-300 23,-116 35,-251 35,-405 0,-162 -16,-305 -46,-428 -27,-116 -75,-204 -142,-266 -68,-62 -151,-92 -252,-92 -227,0 -368,109 -422,329 -11,35 -32,52 -63,52l-445 0c-39,0 -58,-19 -58,-58l0 -2283c0,-39 19,-58 58,-58l1786 0c39,0 58,19 58,58l0 364c0,38 -19,58 -58,58l-1266 0c-16,0 -23,7 -23,23l0 1272c0,7 3,12 8,14 6,2 13,-1 21,-9 61,-77 140,-137 237,-182 96,-44 204,-66 324,-66 219,0 398,68 534,205 137,137 223,331 258,581z"/>
<path id="21" class="fil8" d="M265804 257432c-108,0 -198,-39 -269,-116 -72,-77 -107,-173 -107,-289 0,-108 38,-200 115,-277 77,-77 164,-116 261,-116 100,0 188,39 265,116 78,77 116,169 116,277 0,112 -37,207 -110,286 -73,79 -164,119 -271,119z"/>
<path id="22" class="fil8" d="M267104 253402c24,-12 49,-17 76,-17l456 0c39,0 58,19 58,58l0 3931c0,39 -19,58 -58,58l-439 0c-39,0 -58,-19 -58,-58l0 -3423c0,-7 -3,-13 -9,-17 -5,-4 -12,-4 -20,0l-451 168 -23 5c-31,0 -46,-17 -46,-52l0 -323c0,-35 13,-58 40,-70l474 -260z"/>
<path id="23" class="fil8" d="M269776 255281c-16,12 -16,23 0,35 131,73 229,185 294,335 85,181 128,393 128,636 0,201 -29,384 -87,549 -73,201 -189,358 -347,472 -158,113 -345,170 -561,170 -212,0 -395,-56 -549,-167 -154,-112 -270,-270 -347,-475 -54,-169 -81,-354 -81,-555 0,-231 35,-429 104,-595 66,-162 172,-283 318,-364 19,-12 19,-24 0,-35 -135,-77 -237,-187 -306,-330 -77,-162 -116,-352 -116,-572 0,-227 39,-416 116,-567 77,-158 190,-280 341,-367 150,-87 324,-130 520,-130 197,0 370,42 521,127 150,85 265,207 346,365 85,154 128,346 128,578 0,219 -39,406 -116,561 -69,142 -172,252 -306,329zm-937 -1208c-46,104 -69,225 -69,364 0,150 25,276 75,376 27,85 72,151 136,199 63,48 137,73 222,73 93,0 172,-26 237,-79 66,-52 114,-122 145,-211 46,-100 69,-219 69,-358 0,-150 -27,-276 -81,-376 -34,-81 -83,-144 -144,-191 -62,-46 -137,-69 -226,-69 -85,0 -159,24 -222,72 -64,48 -111,115 -142,200zm769 2532c27,-115 40,-231 40,-347 0,-158 -23,-300 -69,-428 -27,-100 -73,-177 -139,-231 -65,-54 -144,-81 -237,-81 -88,0 -166,28 -231,84 -66,56 -112,138 -139,246 -38,104 -58,239 -58,404 0,151 16,274 47,370 27,120 73,212 138,275 66,64 147,96 243,96 100,0 186,-34 257,-102 72,-67 121,-163 148,-286z"/>
<path id="24" class="fil8" d="M271666 257490c-308,0 -557,-99 -746,-295 -188,-197 -283,-459 -283,-786l0 -2001c0,-328 95,-590 283,-786 189,-197 438,-295 746,-295 312,0 564,98 755,295 191,196 286,458 286,786l0 2001c0,327 -95,589 -286,786 -191,196 -443,295 -755,295zm0 -480c147,0 264,-52 353,-156 89,-104 133,-241 133,-411l0 -2070c0,-169 -44,-306 -133,-410 -89,-104 -206,-156 -353,-156 -142,0 -257,52 -344,156 -87,104 -130,241 -130,410l0 2070c0,170 43,307 130,411 87,104 202,156 344,156z"/>
<path id="25" class="fil8" d="M273540 257432c-108,0 -198,-39 -269,-116 -72,-77 -107,-173 -107,-289 0,-108 38,-200 115,-277 77,-77 164,-116 261,-116 100,0 188,39 265,116 78,77 116,169 116,277 0,112 -37,207 -110,286 -73,79 -164,119 -271,119z"/>
<path id="26" class="fil8" d="M275210 257490c-308,0 -557,-99 -745,-295 -189,-197 -284,-459 -284,-786l0 -2001c0,-328 95,-590 284,-786 188,-197 437,-295 745,-295 313,0 564,98 755,295 191,196 286,458 286,786l0 2001c0,327 -95,589 -286,786 -191,196 -442,295 -755,295zm0 -480c147,0 264,-52 353,-156 89,-104 133,-241 133,-411l0 -2070c0,-169 -44,-306 -133,-410 -89,-104 -206,-156 -353,-156 -142,0 -257,52 -344,156 -86,104 -130,241 -130,410l0 2070c0,170 44,307 130,411 87,104 202,156 344,156z"/>
<path id="27" class="fil8" d="M277650 257490c-308,0 -557,-99 -746,-295 -188,-197 -283,-459 -283,-786l0 -2001c0,-328 95,-590 283,-786 189,-197 438,-295 746,-295 313,0 564,98 755,295 191,196 286,458 286,786l0 2001c0,327 -95,589 -286,786 -191,196 -442,295 -755,295zm0 -480c147,0 264,-52 353,-156 89,-104 133,-241 133,-411l0 -2070c0,-169 -44,-306 -133,-410 -89,-104 -206,-156 -353,-156 -142,0 -257,52 -344,156 -86,104 -130,241 -130,410l0 2070c0,170 44,307 130,411 87,104 202,156 344,156z"/>
<path id="28" class="fil8" d="M280090 257490c-308,0 -557,-99 -746,-295 -188,-197 -283,-459 -283,-786l0 -2001c0,-328 95,-590 283,-786 189,-197 438,-295 746,-295 312,0 564,98 755,295 191,196 286,458 286,786l0 2001c0,327 -95,589 -286,786 -191,196 -443,295 -755,295zm0 -480c147,0 264,-52 353,-156 89,-104 133,-241 133,-411l0 -2070c0,-169 -44,-306 -133,-410 -89,-104 -206,-156 -353,-156 -142,0 -257,52 -344,156 -87,104 -130,241 -130,410l0 2070c0,170 43,307 130,411 87,104 202,156 344,156z"/>
<path id="29" class="fil8" d="M249568 254402c100,0 181,21 243,64 31,19 42,48 35,87l-133 815c-4,42 -31,58 -81,46 -54,-15 -103,-23 -145,-23 -65,0 -127,12 -185,35 -69,23 -126,71 -171,144 -44,73 -66,154 -66,243l0 1544c0,19 -7,35 -20,49 -14,13 -30,20 -49,20l-821 0c-20,0 -36,-7 -50,-20 -13,-14 -20,-30 -20,-49l0 -2845c0,-19 7,-36 20,-49 14,-13 30,-20 50,-20l821 0c19,0 35,7 49,20 13,13 20,30 20,49l0 185c0,16 3,24 9,26 5,2 12,-3 20,-14 100,-205 258,-307 474,-307z"/>
<path id="30" class="fil8" d="M251285 254512c0,-19 7,-36 20,-49 14,-13 30,-20 50,-20l821 0c19,0 35,7 49,20 13,13 20,30 20,49l0 2746c0,286 -40,529 -121,729 -81,200 -229,359 -443,477 -214,118 -513,176 -899,176 -61,0 -166,-4 -312,-11 -46,-4 -69,-29 -69,-75l0 -688c0,-51 25,-72 75,-64l133 6c185,0 325,-22 422,-67 96,-44 162,-106 196,-185 35,-79 54,-182 58,-309 0,-15 -5,-24 -14,-26 -10,-2 -19,3 -26,14 -120,155 -293,232 -521,232 -269,0 -469,-87 -598,-261 -129,-173 -194,-420 -194,-740l0 -1069c0,-667 264,-1000 792,-1000 236,0 411,86 527,260 7,11 15,16 23,14 7,-2 11,-9 11,-20l0 -139zm-202 2128c62,0 111,-23 147,-70 37,-46 55,-106 55,-179l0 -919c0,-77 -18,-139 -55,-185 -36,-46 -85,-69 -147,-69 -58,0 -104,23 -139,69 -35,46 -52,108 -52,185l0 919c0,77 17,138 52,182 35,45 81,67 139,67z"/>
<path id="31" class="fil8" d="M254089 254397c529,0 793,333 793,1000l0 1081c0,667 -264,1000 -793,1000 -223,0 -399,-81 -526,-243 -7,-7 -15,-10 -23,-8 -8,2 -11,8 -11,20l0 116c0,19 -7,35 -21,49 -13,13 -30,20 -49,20l-821 0c-19,0 -35,-7 -49,-20 -13,-14 -20,-30 -20,-49l0 -3909c0,-19 7,-36 20,-49 14,-14 30,-20 49,-20l821 0c19,0 36,6 49,20 14,13 21,30 21,49l0 1191c0,8 2,12 5,12 12,0 35,-18 70,-52 123,-139 285,-208 485,-208zm-167 1075c0,-77 -18,-139 -52,-185 -35,-46 -81,-69 -139,-69 -62,0 -111,23 -147,69 -37,46 -55,108 -55,185l0 931c0,77 18,139 55,185 36,46 85,69 147,69 58,0 104,-23 139,-69 34,-46 52,-108 52,-185l0 -931z"/>
<path id="32" class="fil8" d="M255893 255553c-161,0 -294,-54 -399,-162 -104,-108 -156,-239 -156,-393 0,-154 56,-285 168,-393 112,-108 241,-162 387,-162 143,0 270,54 382,162 112,108 168,239 168,393 0,154 -52,285 -156,393 -105,108 -236,162 -394,162zm0 1873c-161,0 -294,-54 -399,-162 -104,-108 -156,-239 -156,-393 0,-154 56,-285 168,-393 112,-108 241,-162 387,-162 143,0 270,54 382,162 112,108 168,239 168,393 0,154 -52,285 -156,393 -105,108 -236,162 -394,162z"/>
<path id="33" class="fil8" d="M276985 260641c24,-12 49,-18 76,-18l456 0c39,0 58,20 58,58l0 3932c0,38 -19,58 -58,58l-439 0c-39,0 -58,-20 -58,-58l0 -3423c0,-8 -3,-13 -8,-17 -6,-4 -13,-4 -21,0l-451 167 -23 6c-31,0 -46,-17 -46,-52l0 -324c0,-34 13,-57 40,-69l474 -260z"/>
<path id="34" class="fil8" d="M278500 264671c-108,0 -197,-39 -269,-116 -71,-77 -107,-173 -107,-289 0,-108 39,-200 116,-278 77,-77 164,-115 260,-115 101,0 189,38 266,115 77,78 116,170 116,278 0,112 -37,207 -110,286 -73,79 -164,119 -272,119z"/>
<path id="35" class="fil8" d="M279801 260641c23,-12 48,-18 75,-18l457 0c39,0 58,20 58,58l0 3932c0,38 -19,58 -58,58l-439 0c-39,0 -58,-20 -58,-58l0 -3423c0,-8 -3,-13 -9,-17 -6,-4 -12,-4 -20,0l-451 167 -23 6c-31,0 -46,-17 -46,-52l0 -324c0,-34 13,-57 40,-69l474 -260z"/>
<path id="36" class="fil8" d="M282866 262942c30,146 46,308 46,486 0,146 -10,293 -29,439 -27,274 -125,484 -295,630 -170,147 -393,220 -671,220 -269,0 -487,-71 -653,-214 -166,-143 -270,-355 -312,-636l-18 -173c0,-39 20,-58 58,-58l440 0c38,0 57,19 57,58l18 127c50,277 187,416 410,416 108,0 197,-35 266,-104 70,-69 116,-170 139,-301 23,-115 35,-250 35,-404 0,-162 -16,-305 -47,-428 -27,-116 -74,-204 -141,-266 -68,-62 -151,-93 -252,-93 -227,0 -368,110 -422,330 -11,35 -33,52 -63,52l-446 0c-38,0 -57,-19 -57,-58l0 -2284c0,-38 19,-58 57,-58l1787 0c39,0 58,20 58,58l0 365c0,38 -19,57 -58,57l-1266 0c-16,0 -23,8 -23,24l0 1272c0,7 3,12 8,14 6,2 13,-1 21,-9 61,-77 140,-138 237,-182 96,-44 204,-66 323,-66 220,0 398,68 535,205 137,137 223,330 258,581z"/>
<path id="37" class="fil8" d="M284901 262520c-16,11 -16,23 0,35 131,73 229,185 295,335 84,181 127,393 127,636 0,200 -29,383 -87,549 -73,201 -189,358 -347,471 -158,114 -345,171 -561,171 -212,0 -395,-56 -549,-168 -154,-111 -270,-269 -347,-474 -54,-169 -81,-354 -81,-555 0,-231 35,-430 104,-595 66,-162 172,-284 318,-365 20,-11 20,-23 0,-34 -135,-77 -237,-187 -306,-330 -77,-162 -116,-353 -116,-572 0,-228 39,-417 116,-567 77,-158 191,-280 341,-367 150,-87 324,-130 520,-130 197,0 370,42 521,127 150,85 266,206 347,364 84,155 127,347 127,579 0,219 -39,406 -116,560 -69,143 -171,253 -306,330zm-937 -1208c-46,104 -69,225 -69,364 0,150 25,275 75,376 27,84 72,151 136,199 63,48 138,72 222,72 93,0 172,-26 237,-78 66,-52 114,-122 145,-211 46,-100 69,-219 69,-358 0,-151 -27,-276 -81,-376 -34,-81 -82,-145 -144,-191 -62,-46 -137,-69 -226,-69 -84,0 -159,24 -222,72 -64,48 -111,115 -142,200zm769 2532c27,-116 41,-231 41,-347 0,-158 -24,-301 -70,-428 -27,-100 -73,-177 -139,-231 -65,-54 -144,-81 -237,-81 -88,0 -165,28 -231,84 -65,56 -112,138 -139,246 -38,104 -57,239 -57,404 0,151 15,274 46,370 27,120 73,211 139,275 65,64 146,95 242,95 101,0 186,-33 258,-101 71,-67 120,-163 147,-286z"/>
<path id="38" class="fil8" d="M287954 264717c-297,0 -533,-83 -709,-249 -175,-165 -263,-389 -263,-670l0 -1197c0,-274 88,-495 263,-665 176,-170 412,-254 709,-254 196,0 369,37 517,112 148,75 262,178 341,307 79,129 119,274 119,436l0 75c0,39 -20,58 -58,58l-440 18c-38,0 -57,-20 -57,-58l0 -58c0,-112 -41,-208 -122,-289 -81,-81 -181,-122 -300,-122 -124,0 -224,45 -301,133 -77,89 -116,203 -116,342l0 1127c0,139 39,252 116,341 77,89 177,133 301,133 119,0 219,-40 300,-121 81,-81 122,-178 122,-289l0 -58c0,-39 19,-58 57,-58l440 6c38,0 58,19 58,58l0 86c0,251 -89,456 -266,616 -178,160 -415,240 -711,240z"/>
<path id="39" class="fil8" d="M291897 261687c239,0 423,86 552,258 129,171 194,411 194,719l0 1949c0,38 -20,58 -58,58l-434 0c-38,0 -58,-20 -58,-58l0 -1908c0,-170 -34,-302 -104,-396 -69,-95 -162,-142 -277,-142 -124,0 -222,47 -295,142 -73,94 -110,224 -110,390l0 1914c0,38 -19,58 -58,58l-433 0c-39,0 -58,-20 -58,-58l0 -1908c0,-170 -35,-302 -104,-396 -70,-95 -162,-142 -278,-142 -123,0 -221,47 -295,142 -73,94 -110,224 -110,390l0 1914c0,38 -19,58 -57,58l-434 0c-39,0 -58,-20 -58,-58l0 -2827c0,-39 19,-58 58,-58l434 0c38,0 57,19 57,58l0 144c0,8 3,14 9,18 6,3 13,1 20,-6 77,-85 166,-149 266,-191 101,-42 201,-64 301,-64 293,0 503,129 630,388 4,7 10,10 18,8 7,-2 13,-10 17,-26 77,-131 175,-225 295,-283 119,-58 243,-87 370,-87z"/>
<path id="40" class="fil8" d="M249580 262277c0,19 -7,36 -21,49 -13,14 -30,20 -49,20l-295 0c-19,0 -29,10 -29,29l0 1238c0,88 19,150 55,185 37,34 92,50 165,46l29 0c19,0 36,7 49,20 14,14 20,30 20,49l0 688c0,20 -6,36 -20,50 -13,13 -30,20 -49,20l-260 0c-301,0 -527,-47 -680,-139 -152,-93 -228,-272 -228,-538l0 -1619c0,-19 -10,-29 -29,-29l-185 0c-19,0 -35,-6 -49,-20 -13,-13 -20,-30 -20,-49l0 -526c0,-19 7,-36 20,-49 14,-14 30,-20 49,-20l185 0c19,0 29,-10 29,-29l0 -642c0,-19 7,-36 20,-49 14,-14 30,-21 49,-21l781 0c19,0 36,7 49,21 14,13 20,30 20,49l0 642c0,19 10,29 29,29l295 0c19,0 36,6 49,20 14,13 21,30 21,49l0 526z"/>
<path id="41" class="fil8" d="M251337 261635c274,0 476,89 607,266 131,178 197,428 197,752l0 1948c0,20 -7,36 -20,50 -14,13 -30,20 -49,20l-821 0c-20,0 -36,-7 -50,-20 -13,-14 -20,-30 -20,-50l0 -1884c0,-174 -61,-261 -185,-261 -65,0 -115,23 -150,70 -35,46 -52,111 -52,196l0 1879c0,20 -7,36 -20,50 -14,13 -30,20 -50,20l-821 0c-19,0 -35,-7 -49,-20 -13,-14 -20,-30 -20,-50l0 -3908c0,-19 7,-36 20,-49 14,-14 30,-21 49,-21l821 0c20,0 36,7 50,21 13,13 20,30 20,49l0 1174c0,7 4,11 11,11 16,0 31,-11 47,-35 115,-138 277,-208 485,-208z"/>
<path id="42" class="fil8" d="M253928 261641c100,0 181,21 242,64 31,19 43,48 35,86l-133 816c-4,42 -31,57 -81,46 -54,-16 -102,-23 -144,-23 -66,0 -128,11 -185,34 -70,24 -127,72 -171,145 -44,73 -66,154 -66,243l0 1544c0,19 -7,35 -21,49 -13,13 -30,20 -49,20l-821 0c-19,0 -36,-7 -49,-20 -14,-14 -20,-30 -20,-49l0 -2845c0,-19 6,-36 20,-49 13,-14 30,-20 49,-20l821 0c19,0 36,6 49,20 14,13 21,30 21,49l0 185c0,15 2,24 8,26 6,2 13,-3 20,-14 101,-205 259,-307 475,-307z"/>
<path id="43" class="fil8" d="M256651 263387c0,19 -7,36 -21,49 -13,14 -29,21 -49,21l-1260 0c-19,0 -29,9 -29,28l0 157c0,77 18,138 55,185 37,46 86,69 147,69 54,0 99,-19 133,-58 35,-38 58,-87 70,-144 7,-50 32,-72 75,-64l804 104c42,8 61,33 57,75 -19,289 -125,513 -318,671 -192,158 -466,237 -821,237 -366,0 -651,-88 -855,-263 -205,-175 -307,-421 -307,-737l0 -1081c0,-301 103,-543 310,-726 206,-183 490,-275 852,-275 363,0 646,91 850,272 205,181 307,424 307,729l0 751zm-1157 -931c-61,0 -110,23 -147,70 -37,46 -55,108 -55,185l0 138c0,20 10,29 29,29l341 0c19,0 29,-9 29,-29l0 -138c0,-74 -18,-134 -55,-182 -37,-49 -84,-73 -142,-73z"/>
<path id="44" class="fil8" d="M258090 261635c355,0 641,89 859,266 218,178 327,411 327,700l0 2000c0,20 -7,36 -21,50 -13,13 -29,20 -49,20l-821 0c-19,0 -35,-7 -49,-20 -13,-14 -20,-30 -20,-50l0 -138c0,-12 -4,-20 -12,-24 -7,-3 -15,0 -23,12 -127,177 -331,266 -613,266 -532,0 -798,-303 -798,-908 0,-258 49,-455 145,-589 96,-135 228,-225 396,-269 168,-45 383,-67 645,-67l231 0c19,0 29,-9 29,-29l0 -138c0,-78 -22,-140 -67,-188 -44,-49 -99,-73 -164,-73 -50,0 -92,15 -125,44 -32,29 -55,70 -66,124 -4,46 -27,69 -70,69l-838 -5c-46,0 -69,-24 -69,-70 15,-304 131,-544 347,-720 215,-175 491,-263 826,-263zm-40 2371c65,0 126,-22 182,-67 56,-44 84,-101 84,-170l0 -214c0,-19 -10,-29 -29,-29l-179 0c-73,0 -134,23 -182,69 -49,47 -73,108 -73,185 0,74 19,129 55,168 37,39 84,58 142,58z"/>
<path id="45" class="fil8" d="M260906 260693c0,-19 7,-36 20,-49 14,-14 30,-21 50,-21l821 0c19,0 35,7 49,21 13,13 20,30 20,49l0 3908c0,20 -7,36 -20,50 -14,13 -30,20 -49,20l-821 0c-20,0 -36,-7 -50,-20 -13,-14 -20,-30 -20,-50l0 -115c0,-12 -4,-19 -11,-21 -8,-1 -16,1 -24,9 -127,162 -302,243 -526,243 -528,0 -792,-333 -792,-1000l0 -1081c0,-667 264,-1001 792,-1001 224,0 399,85 526,255 8,11 16,16 24,14 7,-2 11,-9 11,-20l0 -1191zm-202 3203c61,0 111,-23 147,-69 37,-47 55,-108 55,-185l0 -931c0,-77 -18,-139 -55,-185 -36,-47 -86,-70 -147,-70 -58,0 -104,23 -139,70 -35,46 -52,108 -52,185l0 931c0,77 17,138 52,185 35,46 81,69 139,69z"/>
<path id="46" class="fil8" d="M264693 261751c0,-19 7,-36 21,-49 13,-14 29,-20 49,-20l821 0c19,0 35,6 49,20 13,13 20,30 20,49l0 2850c0,20 -7,36 -20,50 -14,13 -30,20 -49,20l-821 0c-20,0 -36,-7 -49,-20 -14,-14 -21,-30 -21,-50l0 -75c0,-11 -4,-18 -11,-20 -8,-2 -16,3 -23,14 -58,74 -129,125 -211,154 -83,29 -181,43 -292,43 -232,0 -424,-71 -579,-214 -154,-143 -231,-362 -231,-659l0 -2093c0,-19 7,-36 20,-49 14,-14 30,-20 50,-20l821 0c19,0 35,6 49,20 13,13 20,30 20,49l0 1879c0,173 62,260 185,260 65,0 116,-23 150,-69 35,-46 52,-112 52,-197l0 -1873z"/>
<path id="47" class="fil8" d="M267075 264717c-350,0 -630,-84 -838,-252 -208,-167 -312,-388 -312,-662l0 -34c0,-19 7,-36 20,-49 14,-14 30,-21 49,-21l775 0c19,0 36,4 49,12 14,8 20,17 20,29l0 40c0,70 24,125 73,165 48,41 101,61 159,61 54,0 96,-17 127,-49 31,-33 46,-75 46,-125 0,-69 -33,-122 -98,-159 -66,-36 -170,-78 -312,-124l-128 -40c-497,-170 -745,-478 -745,-925 0,-293 98,-525 294,-694 197,-170 459,-255 787,-255 335,0 603,92 803,275 201,183 301,425 301,726 0,42 -23,63 -69,63l-752 0c-19,0 -36,-6 -49,-17 -14,-12 -20,-25 -20,-41l0 -57c0,-62 -18,-111 -52,-148 -35,-37 -81,-55 -139,-55 -58,0 -103,20 -136,61 -33,40 -49,88 -49,142 0,84 38,150 115,196 78,46 185,93 324,139 170,58 316,118 440,182 123,64 229,154 318,272 88,117 133,267 133,448 0,277 -103,496 -310,656 -206,160 -481,240 -824,240z"/>
<path id="48" class="fil8" d="M270741 263387c0,19 -7,36 -20,49 -14,14 -30,21 -49,21l-1261 0c-19,0 -29,9 -29,28l0 157c0,77 19,138 55,185 37,46 86,69 148,69 54,0 98,-19 133,-58 34,-38 57,-87 69,-144 8,-50 33,-72 75,-64l804 104c42,8 62,33 58,75 -20,289 -126,513 -318,671 -193,158 -467,237 -821,237 -367,0 -652,-88 -856,-263 -204,-175 -306,-421 -306,-737l0 -1081c0,-301 103,-543 309,-726 206,-183 490,-275 853,-275 362,0 645,91 850,272 204,181 306,424 306,729l0 751zm-1156 -931c-62,0 -111,23 -148,70 -36,46 -55,108 -55,185l0 138c0,20 10,29 29,29l341 0c20,0 29,-9 29,-29l0 -138c0,-74 -18,-134 -55,-182 -36,-49 -84,-73 -141,-73z"/>
<path id="49" class="fil8" d="M272354 260693c0,-19 7,-36 20,-49 14,-14 30,-21 50,-21l821 0c19,0 35,7 49,21 13,13 20,30 20,49l0 3908c0,20 -7,36 -20,50 -14,13 -30,20 -49,20l-821 0c-20,0 -36,-7 -50,-20 -13,-14 -20,-30 -20,-50l0 -115c0,-12 -4,-19 -11,-21 -8,-1 -16,1 -24,9 -127,162 -302,243 -526,243 -528,0 -792,-333 -792,-1000l0 -1081c0,-667 264,-1001 792,-1001 224,0 399,85 526,255 8,11 16,16 24,14 7,-2 11,-9 11,-20l0 -1191zm-202 3203c61,0 111,-23 147,-69 37,-47 55,-108 55,-185l0 -931c0,-77 -18,-139 -55,-185 -36,-47 -86,-70 -147,-70 -58,0 -104,23 -139,70 -35,46 -52,108 -52,185l0 931c0,77 17,138 52,185 35,46 81,69 139,69z"/>
<path id="50" class="fil8" d="M274355 262792c-162,0 -295,-54 -399,-162 -104,-108 -156,-239 -156,-393 0,-155 56,-286 167,-394 112,-107 241,-161 388,-161 142,0 270,54 381,161 112,108 168,239 168,394 0,154 -52,285 -156,393 -104,108 -235,162 -393,162zm0 1873c-162,0 -295,-54 -399,-162 -104,-108 -156,-239 -156,-393 0,-154 56,-285 167,-393 112,-108 241,-162 388,-162 142,0 270,54 381,162 112,108 168,239 168,393 0,154 -52,285 -156,393 -104,108 -235,162 -393,162z"/>
<path id="51" class="fil8" d="M249608 268874c274,0 477,89 608,266 131,177 196,428 196,752l0 1948c0,19 -7,36 -20,49 -14,14 -30,21 -49,21l-821 0c-20,0 -36,-7 -49,-21 -14,-13 -21,-30 -21,-49l0 -1885c0,-173 -61,-260 -185,-260 -65,0 -115,23 -150,70 -35,46 -52,111 -52,196l0 1879c0,19 -7,36 -20,49 -14,14 -30,21 -49,21l-821 0c-20,0 -36,-7 -50,-21 -13,-13 -20,-30 -20,-49l0 -2850c0,-20 7,-36 20,-49 14,-14 30,-21 50,-21l821 0c19,0 35,7 49,21 13,13 20,29 20,49l0 115c0,8 4,12 12,12 15,0 30,-12 46,-35 115,-139 277,-208 485,-208z"/>
<path id="52" class="fil8" d="M252199 268880c100,0 181,21 243,63 30,20 42,49 34,87l-133 815c-4,43 -31,58 -81,47 -54,-16 -102,-23 -144,-23 -66,0 -127,11 -185,34 -70,23 -126,72 -171,145 -44,73 -66,154 -66,243l0 1543c0,20 -7,36 -21,50 -13,13 -29,20 -49,20l-821 0c-19,0 -35,-7 -49,-20 -13,-14 -20,-30 -20,-50l0 -2844c0,-20 7,-36 20,-49 14,-14 30,-21 49,-21l821 0c20,0 36,7 49,21 14,13 21,29 21,49l0 185c0,15 3,24 8,26 6,2 13,-3 21,-15 100,-204 258,-306 474,-306z"/>
<path id="53" class="fil8" d="M253320 271944c-158,0 -289,-54 -393,-162 -104,-108 -156,-241 -156,-399 0,-150 56,-279 168,-387 112,-108 239,-162 381,-162 147,0 276,54 388,162 112,108 167,237 167,387 0,158 -52,291 -156,399 -104,108 -237,162 -399,162z"/>
<path id="54" class="fil8" d="M256593 271956c-351,0 -630,-84 -838,-252 -209,-167 -313,-388 -313,-662l0 -34c0,-20 7,-36 21,-50 13,-13 29,-20 49,-20l774 0c20,0 36,4 50,12 13,7 20,17 20,29l0 40c0,70 24,124 72,165 48,40 101,61 159,61 54,0 96,-17 127,-50 31,-32 47,-74 47,-124 0,-69 -33,-122 -99,-159 -65,-36 -169,-78 -312,-124l-127 -41c-497,-169 -746,-478 -746,-925 0,-293 98,-524 295,-693 196,-170 459,-255 786,-255 336,0 603,92 804,275 200,183 301,425 301,725 0,43 -24,64 -70,64l-751 0c-20,0 -36,-6 -50,-17 -13,-12 -20,-25 -20,-41l0 -58c0,-61 -17,-110 -52,-147 -35,-37 -81,-55 -139,-55 -57,0 -103,20 -136,61 -32,40 -49,87 -49,141 0,85 39,151 116,197 77,46 185,92 324,139 169,57 316,118 439,182 123,63 229,154 318,272 89,117 133,266 133,448 0,277 -103,496 -309,656 -206,160 -481,240 -824,240z"/>
<path id="55" class="fil8" d="M259443 269516c0,19 -6,36 -20,49 -13,14 -30,20 -49,20l-295 0c-19,0 -29,10 -29,29l0 1237c0,89 18,151 55,185 37,35 92,51 165,47l29 0c19,0 35,6 49,20 13,13 20,30 20,49l0 688c0,19 -7,36 -20,49 -14,14 -30,21 -49,21l-260 0c-301,0 -528,-47 -680,-139 -152,-93 -228,-272 -228,-538l0 -1619c0,-19 -10,-29 -29,-29l-185 0c-19,0 -36,-6 -49,-20 -14,-13 -20,-30 -20,-49l0 -526c0,-20 6,-36 20,-49 13,-14 30,-21 49,-21l185 0c19,0 29,-9 29,-29l0 -641c0,-20 7,-36 20,-49 14,-14 30,-21 49,-21l781 0c19,0 35,7 49,21 13,13 20,29 20,49l0 641c0,20 10,29 29,29l295 0c19,0 36,7 49,21 14,13 20,29 20,49l0 526z"/>
<path id="56" class="fil8" d="M260212 268724c-162,0 -293,-50 -393,-151 -100,-100 -150,-233 -150,-398 0,-162 50,-294 150,-397 100,-102 231,-153 393,-153 162,0 293,51 393,153 101,103 151,235 151,397 0,165 -49,298 -148,398 -98,101 -230,151 -396,151zm-410 3186c-19,0 -36,-7 -49,-21 -14,-13 -21,-30 -21,-49l0 -2850c0,-20 7,-36 21,-49 13,-14 30,-21 49,-21l821 0c19,0 35,7 49,21 13,13 20,29 20,49l0 2850c0,19 -7,36 -20,49 -14,14 -30,21 -49,21l-821 0z"/>
<path id="57" class="fil8" d="M262537 269516c0,19 -7,36 -21,49 -13,14 -30,20 -49,20l-295 0c-19,0 -29,10 -29,29l0 1237c0,89 19,151 55,185 37,35 92,51 165,47l29 0c19,0 36,6 49,20 14,13 20,30 20,49l0 688c0,19 -6,36 -20,49 -13,14 -30,21 -49,21l-260 0c-301,0 -527,-47 -680,-139 -152,-93 -228,-272 -228,-538l0 -1619c0,-19 -10,-29 -29,-29l-185 0c-19,0 -35,-6 -49,-20 -13,-13 -20,-30 -20,-49l0 -526c0,-20 7,-36 20,-49 14,-14 30,-21 49,-21l185 0c19,0 29,-9 29,-29l0 -641c0,-20 7,-36 20,-49 14,-14 30,-21 49,-21l781 0c19,0 36,7 49,21 14,13 20,29 20,49l0 641c0,20 10,29 29,29l295 0c19,0 36,7 49,21 14,13 21,29 21,49l0 526z"/>
<path id="58" class="fil8" d="M263924 271956c-366,0 -651,-88 -855,-263 -205,-176 -307,-421 -307,-737l0 -1082c0,-300 103,-542 309,-725 207,-183 491,-275 853,-275 363,0 646,91 850,272 204,181 307,418 307,711l0 127c0,19 -7,36 -21,49 -13,14 -29,21 -49,21l-821 34c-46,0 -69,-23 -69,-69l0 -87c0,-65 -18,-121 -55,-167 -37,-47 -84,-70 -142,-70 -61,0 -111,23 -147,70 -37,46 -55,107 -55,185l0 930c0,77 18,139 55,185 36,47 86,70 147,70 58,0 105,-23 142,-70 37,-46 55,-104 55,-173l0 -87c0,-19 7,-35 20,-49 14,-13 30,-20 49,-20l821 6c20,0 36,6 49,20 14,13 21,30 21,49l0 156c0,312 -102,555 -304,729 -202,173 -487,260 -853,260z"/>
<path id="59" class="fil8" d="M266867 268874c274,0 476,89 607,266 131,177 197,428 197,752l0 1948c0,19 -7,36 -20,49 -14,14 -30,21 -50,21l-821 0c-19,0 -35,-7 -49,-21 -13,-13 -20,-30 -20,-49l0 -1885c0,-173 -62,-260 -185,-260 -65,0 -116,23 -150,70 -35,46 -52,111 -52,196l0 1879c0,19 -7,36 -21,49 -13,14 -29,21 -49,21l-821 0c-19,0 -35,-7 -49,-21 -13,-13 -20,-30 -20,-49l0 -3908c0,-20 7,-36 20,-49 14,-14 30,-21 49,-21l821 0c20,0 36,7 49,21 14,13 21,29 21,49l0 1173c0,8 4,12 11,12 16,0 31,-12 47,-35 115,-139 277,-208 485,-208z"/>
<path id="60" class="fil8" d="M270284 270626c0,19 -7,36 -20,49 -14,14 -30,20 -49,20l-1261 0c-19,0 -29,10 -29,29l0 156c0,77 19,139 55,185 37,47 86,70 148,70 54,0 98,-19 133,-58 35,-39 58,-87 69,-145 8,-50 33,-71 75,-63l804 104c42,8 62,33 58,75 -19,289 -125,513 -318,671 -193,158 -467,237 -821,237 -366,0 -652,-88 -856,-263 -204,-176 -306,-421 -306,-737l0 -1082c0,-300 103,-542 309,-725 206,-183 491,-275 853,-275 362,0 645,91 850,272 204,181 306,424 306,728l0 752zm-1156 -931c-62,0 -111,23 -148,70 -36,46 -55,107 -55,185l0 138c0,20 10,29 29,29l342 0c19,0 28,-9 28,-29l0 -138c0,-74 -18,-134 -54,-183 -37,-48 -84,-72 -142,-72z"/>
<path id="61" class="fil8" d="M271660 271956c-350,0 -630,-84 -838,-252 -208,-167 -312,-388 -312,-662l0 -34c0,-20 6,-36 20,-50 13,-13 30,-20 49,-20l775 0c19,0 36,4 49,12 14,7 20,17 20,29l0 40c0,70 24,124 73,165 48,40 101,61 159,61 53,0 96,-17 127,-50 31,-32 46,-74 46,-124 0,-69 -33,-122 -98,-159 -66,-36 -170,-78 -313,-124l-127 -41c-497,-169 -746,-478 -746,-925 0,-293 99,-524 295,-693 197,-170 459,-255 787,-255 335,0 603,92 803,275 201,183 301,425 301,725 0,43 -23,64 -69,64l-752 0c-19,0 -36,-6 -49,-17 -14,-12 -20,-25 -20,-41l0 -58c0,-61 -18,-110 -52,-147 -35,-37 -81,-55 -139,-55 -58,0 -103,20 -136,61 -33,40 -49,87 -49,141 0,85 38,151 115,197 77,46 185,92 324,139 170,57 316,118 440,182 123,63 229,154 318,272 88,117 133,266 133,448 0,277 -104,496 -310,656 -206,160 -481,240 -824,240z"/>
<path id="62" class="fil8" d="M273742 270030c-162,0 -295,-53 -399,-161 -104,-108 -156,-239 -156,-394 0,-154 56,-285 167,-393 112,-108 241,-162 388,-162 142,0 270,54 381,162 112,108 168,239 168,393 0,155 -52,286 -156,394 -104,108 -235,161 -393,161zm0 1874c-162,0 -295,-54 -399,-162 -104,-108 -156,-239 -156,-393 0,-154 56,-286 167,-393 112,-108 241,-162 388,-162 142,0 270,54 381,162 112,107 168,239 168,393 0,154 -52,285 -156,393 -104,108 -235,162 -393,162z"/>
<path id="63" class="fil8" d="M276008 271910c-38,0 -58,-20 -58,-58l0 -382c0,-31 8,-56 24,-75l179 -266c366,-528 649,-956 850,-1284 231,-393 347,-720 347,-982 0,-174 -40,-312 -119,-414 -79,-102 -182,-153 -309,-153 -127,0 -230,50 -307,150 -77,100 -113,233 -110,399l0 231c0,39 -19,58 -57,58l-451 0c-39,0 -58,-19 -58,-58l0 -248c11,-305 110,-549 295,-734 185,-185 422,-278 711,-278 289,0 522,96 699,289 178,193 266,447 266,763 0,189 -33,381 -101,576 -67,194 -170,403 -309,627 -108,181 -235,381 -382,598 -146,218 -242,364 -289,437l-196 295c-4,7 -4,14 0,20 4,6 9,9 17,9l1301 0c38,0 58,19 58,57l0 365c0,38 -20,58 -58,58l-1943 0z"/>
<path id="64" class="fil8" d="M278795 271910c-108,0 -198,-39 -269,-116 -71,-77 -107,-174 -107,-289 0,-108 39,-201 116,-278 77,-77 164,-115 260,-115 100,0 189,38 266,115 77,77 116,170 116,278 0,112 -37,207 -110,286 -73,79 -164,119 -272,119z"/>
<path id="65" class="fil8" d="M280096 267880c23,-12 48,-18 75,-18l457 0c38,0 58,20 58,58l0 3932c0,38 -20,58 -58,58l-440 0c-38,0 -57,-20 -57,-58l0 -3423c0,-8 -3,-14 -9,-17 -6,-4 -13,-4 -20,0l-451 167 -23 6c-31,0 -47,-17 -47,-52l0 -324c0,-34 14,-58 41,-69l474 -260z"/>
<path id="66" class="fil8" d="M281235 271910c-39,0 -58,-20 -58,-58l0 -382c0,-31 8,-56 23,-75l179 -266c367,-528 650,-956 850,-1284 232,-393 347,-720 347,-982 0,-174 -39,-312 -118,-414 -79,-102 -182,-153 -310,-153 -127,0 -229,50 -306,150 -77,100 -114,233 -110,399l0 231c0,39 -19,58 -58,58l-451 0c-38,0 -57,-19 -57,-58l0 -248c11,-305 109,-549 294,-734 185,-185 422,-278 712,-278 289,0 522,96 699,289 177,193 266,447 266,763 0,189 -34,381 -101,576 -67,194 -171,403 -309,627 -108,181 -235,381 -382,598 -146,218 -243,364 -289,437l-197 295c-3,7 -3,14 0,20 4,6 10,9 18,9l1301 0c38,0 57,19 57,57l0 365c0,38 -19,58 -57,58l-1943 0z"/>
<path id="67" class="fil8" d="M285571 270181c31,146 46,308 46,485 0,147 -9,293 -28,440 -27,274 -126,484 -295,630 -170,147 -393,220 -671,220 -270,0 -488,-72 -653,-214 -166,-143 -270,-355 -313,-636l-17 -174c0,-38 19,-57 58,-57l439 0c39,0 58,19 58,57l18 128c50,277 186,416 410,416 108,0 197,-35 266,-104 69,-70 116,-170 139,-301 23,-115 34,-250 34,-405 0,-161 -15,-304 -46,-427 -27,-116 -74,-205 -141,-266 -68,-62 -152,-93 -252,-93 -227,0 -368,110 -422,330 -12,34 -33,52 -64,52l-445 0c-38,0 -58,-20 -58,-58l0 -2284c0,-38 20,-58 58,-58l1787 0c38,0 58,20 58,58l0 364c0,39 -20,58 -58,58l-1266 0c-16,0 -24,8 -24,23l0 1272c0,8 3,13 9,15 6,2 13,-1 20,-9 62,-77 141,-138 237,-182 97,-44 205,-67 324,-67 220,0 398,69 535,206 137,137 223,330 257,581z"/>
<path id="68" class="fil8" d="M270747 275118c23,-11 48,-17 75,-17l457 0c38,0 58,19 58,58l0 3932c0,38 -20,57 -58,57l-440 0c-38,0 -58,-19 -58,-57l0 -3423c0,-8 -2,-14 -8,-18 -6,-3 -13,-3 -20,0l-451 168 -24 6c-30,0 -46,-18 -46,-52l0 -324c0,-35 14,-58 41,-69l474 -261z"/>
<path id="69" class="fil8" d="M271886 279148c-39,0 -58,-19 -58,-57l0 -382c0,-31 8,-56 23,-75l179 -266c367,-528 650,-956 850,-1284 232,-393 347,-721 347,-983 0,-173 -39,-311 -118,-413 -79,-102 -182,-153 -310,-153 -127,0 -229,50 -306,150 -77,100 -114,233 -110,399l0 231c0,39 -19,58 -58,58l-451 0c-38,0 -58,-19 -58,-58l0 -248c12,-305 110,-550 295,-735 185,-185 422,-277 711,-277 290,0 523,96 700,289 177,193 266,447 266,763 0,189 -34,381 -101,575 -68,195 -171,404 -309,628 -108,181 -236,380 -382,598 -147,218 -243,363 -289,437l-197 295c-4,7 -4,14 0,20 4,6 10,8 18,8l1301 0c38,0 57,20 57,58l0 365c0,38 -19,57 -57,57l-1943 0z"/>
<path id="70" class="fil8" d="M249608 276113c274,0 477,89 608,266 131,177 196,428 196,752l0 1948c0,19 -7,36 -20,49 -14,14 -30,20 -49,20l-821 0c-20,0 -36,-6 -49,-20 -14,-13 -21,-30 -21,-49l0 -1885c0,-173 -61,-260 -185,-260 -65,0 -115,23 -150,69 -35,47 -52,112 -52,197l0 1879c0,19 -7,36 -20,49 -14,14 -30,20 -49,20l-821 0c-20,0 -36,-6 -50,-20 -13,-13 -20,-30 -20,-49l0 -2850c0,-20 7,-36 20,-50 14,-13 30,-20 50,-20l821 0c19,0 35,7 49,20 13,14 20,30 20,50l0 115c0,8 4,12 12,12 15,0 30,-12 46,-35 115,-139 277,-208 485,-208z"/>
<path id="71" class="fil8" d="M252199 276119c100,0 181,21 243,63 30,20 42,48 34,87l-133 815c-4,43 -31,58 -81,47 -54,-16 -102,-24 -144,-24 -66,0 -127,12 -185,35 -70,23 -126,71 -171,145 -44,73 -66,154 -66,242l0 1544c0,19 -7,36 -21,49 -13,14 -29,21 -49,21l-821 0c-19,0 -35,-7 -49,-21 -13,-13 -20,-30 -20,-49l0 -2844c0,-20 7,-36 20,-50 14,-13 30,-20 49,-20l821 0c20,0 36,7 49,20 14,14 21,30 21,50l0 185c0,15 3,24 8,26 6,2 13,-3 21,-15 100,-204 258,-306 474,-306z"/>
<path id="72" class="fil8" d="M253320 279183c-158,0 -289,-54 -393,-162 -104,-108 -156,-241 -156,-399 0,-150 56,-279 168,-387 112,-108 239,-162 381,-162 147,0 276,54 388,162 112,108 167,237 167,387 0,158 -52,291 -156,399 -104,108 -237,162 -399,162z"/>
<path id="73" class="fil8" d="M256593 279195c-351,0 -630,-84 -838,-252 -209,-168 -313,-388 -313,-662l0 -35c0,-19 7,-35 21,-49 13,-13 29,-20 49,-20l774 0c20,0 36,4 50,12 13,7 20,17 20,28l0 41c0,69 24,124 72,165 48,40 101,60 159,60 54,0 96,-16 127,-49 31,-32 47,-74 47,-124 0,-69 -33,-122 -99,-159 -65,-37 -169,-78 -312,-124l-127 -41c-497,-169 -746,-478 -746,-925 0,-293 98,-524 295,-694 196,-169 459,-254 786,-254 336,0 603,91 804,275 200,183 301,425 301,725 0,43 -24,64 -70,64l-751 0c-20,0 -36,-6 -50,-18 -13,-11 -20,-25 -20,-40l0 -58c0,-62 -17,-111 -52,-147 -35,-37 -81,-55 -139,-55 -57,0 -103,20 -136,60 -32,41 -49,88 -49,142 0,85 39,150 116,197 77,46 185,92 324,138 169,58 316,119 439,183 123,63 229,154 318,271 89,118 133,267 133,448 0,278 -103,497 -309,657 -206,160 -481,240 -824,240z"/>
<path id="74" class="fil8" d="M259443 276755c0,19 -6,35 -20,49 -13,13 -30,20 -49,20l-295 0c-19,0 -29,10 -29,29l0 1237c0,89 18,151 55,185 37,35 92,50 165,47l29 0c19,0 35,6 49,20 13,13 20,30 20,49l0 688c0,19 -7,36 -20,49 -14,14 -30,20 -49,20l-260 0c-301,0 -528,-46 -680,-138 -152,-93 -228,-272 -228,-538l0 -1619c0,-19 -10,-29 -29,-29l-185 0c-19,0 -36,-7 -49,-20 -14,-14 -20,-30 -20,-49l0 -526c0,-20 6,-36 20,-50 13,-13 30,-20 49,-20l185 0c19,0 29,-9 29,-29l0 -642c0,-19 7,-35 20,-49 14,-13 30,-20 49,-20l781 0c19,0 35,7 49,20 13,14 20,30 20,49l0 642c0,20 10,29 29,29l295 0c19,0 36,7 49,20 14,14 20,30 20,50l0 526z"/>
<path id="75" class="fil8" d="M260843 279195c-374,0 -663,-88 -868,-263 -204,-176 -306,-422 -306,-738l0 -1081c0,-304 104,-547 312,-728 208,-182 495,-272 862,-272 366,0 651,90 855,272 205,181 307,424 307,728l0 1081c0,316 -102,562 -304,738 -202,175 -488,263 -858,263zm0 -827c61,0 110,-23 147,-70 37,-46 55,-106 55,-179l0 -931c0,-77 -18,-138 -55,-185 -37,-46 -86,-69 -147,-69 -62,0 -113,23 -154,69 -40,47 -60,108 -60,185l0 931c0,73 19,133 57,179 39,47 91,70 157,70z"/>
<path id="76" class="fil8" d="M263849 276113c528,0 792,333 792,1000l0 1081c0,667 -264,1001 -792,1001 -223,0 -399,-85 -526,-255 -8,-11 -15,-16 -23,-14 -8,2 -12,8 -12,20l0 1191c0,19 -6,36 -20,49 -13,14 -30,20 -49,20l-821 0c-19,0 -36,-6 -49,-20 -14,-13 -21,-30 -21,-49l0 -3908c0,-20 7,-36 21,-50 13,-13 30,-20 49,-20l821 0c19,0 36,7 49,20 14,14 20,30 20,50l0 115c0,8 4,12 12,12 15,0 35,-16 58,-47 127,-131 291,-196 491,-196zm-168 1075c0,-77 -17,-138 -52,-185 -34,-46 -81,-69 -138,-69 -62,0 -111,23 -148,69 -36,47 -55,108 -55,185l0 931c0,77 19,139 55,185 37,46 86,70 148,70 57,0 104,-24 138,-70 35,-46 52,-108 52,-185l0 -931z"/>
<path id="77" class="fil8" d="M266035 279195c-351,0 -631,-84 -839,-252 -208,-168 -312,-388 -312,-662l0 -35c0,-19 7,-35 20,-49 14,-13 30,-20 49,-20l775 0c19,0 36,4 49,12 14,7 21,17 21,28l0 41c0,69 24,124 72,165 48,40 101,60 159,60 54,0 96,-16 127,-49 31,-32 46,-74 46,-124 0,-69 -32,-122 -98,-159 -66,-37 -170,-78 -312,-124l-127 -41c-498,-169 -746,-478 -746,-925 0,-293 98,-524 295,-694 196,-169 458,-254 786,-254 335,0 603,91 804,275 200,183 300,425 300,725 0,43 -23,64 -69,64l-752 0c-19,0 -35,-6 -49,-18 -13,-11 -20,-25 -20,-40l0 -58c0,-62 -18,-111 -52,-147 -35,-37 -81,-55 -139,-55 -58,0 -103,20 -136,60 -33,41 -49,88 -49,142 0,85 39,150 116,197 77,46 185,92 323,138 170,58 317,119 440,183 123,63 229,154 318,271 89,118 133,267 133,448 0,278 -103,497 -309,657 -207,160 -481,240 -824,240z"/>
<path id="78" class="fil8" d="M268116 277269c-162,0 -295,-54 -399,-162 -104,-108 -156,-239 -156,-393 0,-154 56,-285 168,-393 111,-108 241,-162 387,-162 143,0 270,54 382,162 111,108 167,239 167,393 0,154 -52,285 -156,393 -104,108 -235,162 -393,162zm0 1874c-162,0 -295,-54 -399,-162 -104,-108 -156,-239 -156,-393 0,-155 56,-286 168,-394 111,-108 241,-162 387,-162 143,0 270,54 382,162 111,108 167,239 167,394 0,154 -52,285 -156,393 -104,108 -235,162 -393,162z"/>
<path id="79" class="fil8" d="M249608 283352c274,0 477,88 608,266 131,177 196,428 196,751l0 1949c0,19 -7,35 -20,49 -14,13 -30,20 -49,20l-821 0c-20,0 -36,-7 -49,-20 -14,-14 -21,-30 -21,-49l0 -1885c0,-174 -61,-260 -185,-260 -65,0 -115,23 -150,69 -35,46 -52,112 -52,197l0 1879c0,19 -7,35 -20,49 -14,13 -30,20 -49,20l-821 0c-20,0 -36,-7 -50,-20 -13,-14 -20,-30 -20,-49l0 -2851c0,-19 7,-35 20,-49 14,-13 30,-20 50,-20l821 0c19,0 35,7 49,20 13,14 20,30 20,49l0 116c0,8 4,12 12,12 15,0 30,-12 46,-35 115,-139 277,-208 485,-208z"/>
<path id="80" class="fil8" d="M252199 283357c100,0 181,22 243,64 30,19 42,48 34,87l-133 815c-4,42 -31,58 -81,46 -54,-15 -102,-23 -144,-23 -66,0 -127,12 -185,35 -70,23 -126,71 -171,144 -44,74 -66,155 -66,243l0 1544c0,19 -7,36 -21,49 -13,14 -29,20 -49,20l-821 0c-19,0 -35,-6 -49,-20 -13,-13 -20,-30 -20,-49l0 -2845c0,-19 7,-35 20,-49 14,-13 30,-20 49,-20l821 0c20,0 36,7 49,20 14,14 21,30 21,49l0 185c0,16 3,24 8,26 6,2 13,-3 21,-14 100,-204 258,-307 474,-307z"/>
<path id="81" class="fil8" d="M253320 286422c-158,0 -289,-54 -393,-162 -104,-108 -156,-241 -156,-399 0,-150 56,-279 168,-387 112,-108 239,-162 381,-162 147,0 276,54 388,162 112,108 167,237 167,387 0,158 -52,291 -156,399 -104,108 -237,162 -399,162z"/>
<path id="82" class="fil8" d="M256980 283993c0,20 -6,36 -20,50 -13,13 -30,20 -49,20l-295 0c-19,0 -29,10 -29,29l0 1237c0,89 18,150 55,185 37,35 92,50 165,46l29 0c19,0 35,7 49,21 13,13 20,29 20,49l0 688c0,19 -7,35 -20,49 -14,13 -30,20 -49,20l-260 0c-301,0 -528,-46 -680,-139 -152,-92 -228,-271 -228,-537l0 -1619c0,-19 -10,-29 -29,-29l-185 0c-19,0 -36,-7 -49,-20 -14,-14 -20,-30 -20,-50l0 -526c0,-19 6,-35 20,-49 13,-13 30,-20 49,-20l185 0c19,0 29,-10 29,-29l0 -642c0,-19 7,-35 20,-49 14,-13 30,-20 49,-20l781 0c19,0 35,7 49,20 13,14 20,30 20,49l0 642c0,19 10,29 29,29l295 0c19,0 36,7 49,20 14,14 20,30 20,49l0 526z"/>
<path id="83" class="fil8" d="M258698 283357c100,0 181,22 242,64 31,19 43,48 35,87l-133 815c-4,42 -31,58 -81,46 -54,-15 -102,-23 -144,-23 -66,0 -128,12 -185,35 -70,23 -127,71 -171,144 -44,74 -66,155 -66,243l0 1544c0,19 -7,36 -21,49 -13,14 -30,20 -49,20l-821 0c-19,0 -36,-6 -49,-20 -14,-13 -20,-30 -20,-49l0 -2845c0,-19 6,-35 20,-49 13,-13 30,-20 49,-20l821 0c19,0 36,7 49,20 14,14 21,30 21,49l0 185c0,16 2,24 8,26 6,2 13,-3 20,-14 101,-204 259,-307 475,-307z"/>
<path id="84" class="fil8" d="M259692 283201c-162,0 -293,-50 -393,-150 -100,-100 -150,-233 -150,-399 0,-162 50,-294 150,-396 100,-102 231,-153 393,-153 162,0 293,51 393,153 100,102 150,234 150,396 0,166 -49,299 -147,399 -98,100 -230,150 -396,150zm-411 3186c-19,0 -35,-7 -49,-20 -13,-14 -20,-30 -20,-49l0 -2851c0,-19 7,-35 20,-49 14,-13 30,-20 49,-20l822 0c19,0 35,7 49,20 13,14 20,30 20,49l0 2851c0,19 -7,35 -20,49 -14,13 -30,20 -49,20l-822 0z"/>
<path id="85" class="fil8" d="M263381 283352c273,0 476,88 607,266 131,177 196,429 196,757l0 1943c0,19 -6,35 -20,49 -13,13 -30,20 -49,20l-821 0c-19,0 -36,-7 -49,-20 -14,-14 -20,-30 -20,-49l0 -1874c0,-84 -17,-151 -49,-199 -33,-48 -79,-72 -136,-72 -62,0 -110,23 -145,69 -35,46 -52,112 -52,197l0 1879c0,19 -7,35 -20,49 -14,13 -30,20 -49,20l-821 0c-20,0 -36,-7 -49,-20 -14,-14 -21,-30 -21,-49l0 -1874c0,-84 -16,-151 -49,-199 -33,-48 -78,-72 -136,-72 -61,0 -110,23 -144,69 -35,46 -52,112 -52,197l0 1879c0,19 -7,35 -21,49 -13,13 -29,20 -49,20l-821 0c-19,0 -35,-7 -49,-20 -13,-14 -20,-30 -20,-49l0 -2851c0,-19 7,-35 20,-49 14,-13 30,-20 49,-20l821 0c20,0 36,7 49,20 14,14 21,30 21,49l0 58c0,12 4,19 11,23 8,4 16,2 23,-5 135,-128 303,-191 503,-191 305,0 523,113 654,341l11 6c16,0 31,-12 47,-35 142,-208 352,-312 630,-312z"/>
<path id="86" class="fil8" d="M265589 286433c-350,0 -630,-83 -838,-251 -208,-168 -312,-388 -312,-662l0 -35c0,-19 7,-35 20,-49 14,-13 30,-20 49,-20l775 0c19,0 36,4 49,11 14,8 20,18 20,29l0 41c0,69 24,124 73,165 48,40 101,60 159,60 54,0 96,-16 127,-49 31,-33 46,-74 46,-124 0,-70 -33,-123 -98,-159 -66,-37 -170,-78 -312,-125l-128 -40c-497,-170 -745,-478 -745,-925 0,-293 98,-524 294,-694 197,-169 459,-254 787,-254 335,0 603,91 803,274 201,183 301,425 301,726 0,42 -23,64 -69,64l-752 0c-19,0 -36,-6 -49,-18 -14,-11 -20,-25 -20,-40l0 -58c0,-62 -18,-111 -52,-148 -35,-36 -81,-54 -139,-54 -58,0 -103,20 -136,60 -33,41 -49,88 -49,142 0,85 38,150 115,197 78,46 185,92 324,138 170,58 316,119 440,182 123,64 229,155 318,272 88,118 133,267 133,448 0,278 -103,496 -310,656 -206,160 -481,240 -824,240z"/>
<path id="87" class="fil8" d="M267671 284508c-162,0 -295,-54 -399,-162 -104,-108 -156,-239 -156,-393 0,-154 56,-285 167,-393 112,-108 241,-162 388,-162 142,0 270,54 381,162 112,108 168,239 168,393 0,154 -52,285 -156,393 -104,108 -235,162 -393,162zm0 1873c-162,0 -295,-54 -399,-162 -104,-107 -156,-239 -156,-393 0,-154 56,-285 167,-393 112,-108 241,-162 388,-162 142,0 270,54 381,162 112,108 168,239 168,393 0,154 -52,286 -156,393 -104,108 -235,162 -393,162z"/>
<path id="88" class="fil8" d="M271874 284658c31,147 46,309 46,486 0,147 -9,293 -28,439 -27,274 -126,484 -295,631 -170,146 -393,219 -671,219 -270,0 -488,-71 -653,-214 -166,-142 -270,-354 -313,-636l-17 -173c0,-39 19,-58 58,-58l439 0c39,0 58,19 58,58l18 127c50,278 186,417 410,417 108,0 197,-35 266,-105 69,-69 116,-169 139,-300 23,-116 34,-251 34,-405 0,-162 -15,-304 -46,-428 -27,-115 -74,-204 -141,-266 -68,-61 -152,-92 -252,-92 -227,0 -368,110 -422,329 -12,35 -33,52 -64,52l-445 0c-38,0 -58,-19 -58,-57l0 -2284c0,-39 20,-58 58,-58l1787 0c38,0 58,19 58,58l0 364c0,39 -20,58 -58,58l-1266 0c-16,0 -24,7 -24,23l0 1272c0,8 3,12 9,14 6,2 13,-1 20,-8 62,-77 141,-138 237,-182 97,-45 205,-67 324,-67 220,0 398,68 535,205 137,137 223,331 257,581z"/>
<rect class="fil5" x="205954" y="314219" width="92987" height="13659"/>
<path class="fil8" d="M217499 319322c314,0 566,96 757,289 191,192 286,445 286,759 0,310 -97,559 -291,748 -195,189 -450,284 -768,284l-1037 0c-18,0 -27,9 -27,26l0 1572c0,47 -23,70 -69,70l-241 0c-46,0 -69,-23 -69,-70l0 -3609c0,-46 23,-69 69,-69l1390 0zm-42 1764c210,0 381,-65 513,-195 132,-130 198,-302 198,-516 0,-217 -66,-392 -198,-524 -132,-132 -303,-198 -513,-198l-1011 0c-18,0 -27,9 -27,27l0 1380c0,17 9,26 27,26l1011 0z"/>
<path id="1" class="fil8" d="M220258 320338c118,0 216,21 294,64 36,14 48,43 38,85l-54 236c-10,42 -39,57 -85,42 -68,-21 -155,-30 -262,-26 -186,7 -339,75 -460,206 -121,130 -182,295 -182,494l0 1561c0,47 -23,70 -69,70l-241 0c-46,0 -69,-23 -69,-70l0 -2566c0,-46 23,-70 69,-70l241 0c46,0 69,24 69,70l0 299c0,15 3,23 8,24 6,2 12,-2 19,-13 75,-128 170,-228 286,-299 116,-72 249,-107 398,-107z"/>
<path id="2" class="fil8" d="M222124 323113c-260,0 -482,-66 -665,-198 -184,-132 -311,-314 -383,-546 -50,-164 -75,-383 -75,-657 0,-271 24,-489 70,-652 71,-229 199,-409 382,-540 184,-132 407,-198 671,-198 257,0 477,66 661,198 183,131 309,310 376,534 50,171 75,390 75,658 0,274 -25,493 -75,657 -71,232 -198,414 -382,546 -183,132 -402,198 -655,198zm0 -332c171,0 317,-47 439,-142 121,-94 203,-221 246,-382 28,-114 42,-294 42,-540 0,-256 -14,-436 -42,-540 -40,-160 -121,-288 -244,-382 -123,-95 -273,-142 -451,-142 -172,0 -318,47 -439,142 -121,94 -203,222 -246,382 -28,104 -43,284 -43,540 0,257 15,437 43,540 39,161 120,288 243,382 123,95 274,142 452,142z"/>
<path id="3" class="fil8" d="M225642 320434c0,-46 23,-70 70,-70l240 0c47,0 70,24 70,70l0 2566c0,47 -23,70 -70,70l-240 0c-47,0 -70,-23 -70,-70l0 -203c0,-11 -3,-18 -10,-21 -8,-4 -15,0 -22,10 -153,214 -388,321 -706,321 -171,0 -328,-34 -473,-104 -144,-69 -258,-170 -342,-302 -84,-132 -126,-291 -126,-476l0 -1791c0,-46 24,-70 70,-70l241 0c46,0 69,24 69,70l0 1679c0,203 57,364 171,484 114,119 269,179 465,179 203,0 365,-61 484,-182 120,-121 179,-282 179,-481l0 -1679z"/>
<path id="4" class="fil8" d="M228535 319397c0,-47 23,-70 69,-70l241 0c46,0 69,23 69,70l0 3603c0,47 -23,70 -69,70l-241 0c-46,0 -69,-23 -69,-70l0 -203c0,-11 -4,-17 -11,-19 -7,-1 -14,1 -21,8 -79,104 -176,184 -292,241 -116,57 -245,86 -387,86 -250,0 -459,-65 -629,-193 -169,-128 -286,-303 -350,-524 -50,-160 -75,-387 -75,-679 0,-296 22,-517 65,-663 64,-228 181,-407 352,-537 172,-130 384,-195 637,-195 139,0 267,27 385,83 117,55 215,134 294,237 7,11 14,15 21,11 7,-3 11,-11 11,-21l0 -1235zm-102 2972c32,-71 55,-155 70,-251 14,-96 21,-230 21,-401 0,-171 -7,-305 -21,-404 -15,-98 -40,-184 -75,-259 -43,-121 -113,-218 -211,-291 -98,-73 -215,-110 -351,-110 -142,0 -265,36 -368,107 -104,71 -179,166 -225,283 -43,79 -74,167 -94,265 -19,98 -29,235 -29,409 0,168 7,299 21,393 15,95 40,179 75,254 43,128 119,230 227,305 109,75 238,112 388,112 143,0 262,-37 358,-112 97,-75 168,-175 214,-300z"/>
<path id="5" class="fil8" d="M229839 323070c-46,0 -69,-23 -69,-70l0 -3603c0,-47 23,-70 69,-70l241 0c46,0 69,23 69,70l0 3603c0,47 -23,70 -69,70l-241 0z"/>
<path id="6" class="fil8" d="M230887 324139c-25,0 -37,-23 -37,-69l0 -187c0,-47 12,-70 37,-70l38 0c139,0 247,-20 323,-59 77,-39 143,-108 198,-208 55,-100 115,-253 179,-460 4,-7 4,-18 0,-32l-898 -2609c-4,-7 -5,-16 -5,-27 0,-14 6,-27 18,-37 13,-11 28,-17 46,-17l251 0c43,0 70,20 80,59l690 2096c3,14 9,22 16,22 7,0 12,-8 16,-22l674 -2096c10,-39 35,-59 75,-59l256 0c25,0 43,8 54,22 10,14 12,34 5,59l-984 2860c-85,239 -166,415 -240,529 -75,114 -169,194 -281,238 -112,45 -270,67 -473,67l-38 0z"/>
<path id="7" class="fil8" d="M236213 320434c0,-46 23,-70 69,-70l241 0c46,0 69,24 69,70l0 2545c0,399 -116,691 -347,877 -232,185 -548,278 -947,278 -75,0 -132,-2 -171,-6 -46,-3 -69,-28 -69,-74l10 -214c0,-50 24,-72 70,-64 378,17 651,-38 821,-166 169,-128 254,-342 254,-642l0 -187c0,-11 -4,-18 -11,-21 -7,-4 -14,0 -22,10 -164,211 -395,316 -695,316 -231,0 -437,-62 -617,-187 -180,-125 -300,-301 -361,-530 -43,-146 -64,-363 -64,-652 0,-157 4,-289 13,-395 9,-107 28,-204 56,-289 64,-214 180,-386 348,-516 167,-130 369,-195 604,-195 310,0 549,101 716,304 8,11 15,15 22,11 7,-3 11,-11 11,-21l0 -182zm-27 1818c10,-54 18,-120 21,-198 4,-78 6,-192 6,-342 0,-182 -2,-304 -6,-366 -3,-63 -12,-121 -27,-174 -28,-150 -98,-274 -211,-372 -112,-98 -254,-147 -425,-147 -167,0 -309,48 -425,145 -116,96 -197,221 -243,374 -36,114 -54,292 -54,534 0,261 18,441 54,540 36,150 113,274 232,372 120,98 265,147 436,147 175,0 318,-48 431,-144 112,-97 182,-219 211,-369z"/>
<path id="8" class="fil8" d="M238458 322786c160,-3 299,-40 414,-109 116,-70 206,-167 270,-292 8,-17 20,-30 38,-37 18,-7 35,-5 53,5l155 86c43,25 54,55 32,91 -85,178 -213,320 -385,425 -171,105 -374,158 -609,158 -250,0 -460,-59 -631,-177 -171,-117 -294,-281 -369,-492 -68,-178 -101,-424 -101,-738 0,-153 2,-275 8,-366 5,-91 18,-175 40,-254 60,-231 182,-417 366,-556 184,-139 405,-208 666,-208 310,0 553,80 729,240 177,161 290,387 340,679 21,114 32,293 32,535 0,46 -23,69 -70,69l-1710 0c-18,0 -27,9 -27,27 0,178 11,309 32,391 39,160 122,287 249,382 126,94 286,141 478,141zm-53 -2133c-179,0 -325,46 -439,137 -114,90 -189,212 -224,366 -22,71 -36,192 -43,363 0,18 9,27 27,27l1374 0c17,0 26,-9 26,-27 -7,-156 -17,-271 -32,-342 -39,-160 -118,-288 -238,-382 -119,-95 -270,-142 -451,-142z"/>
<path id="9" class="fil8" d="M241383 320327c281,0 507,84 676,251 169,168 254,392 254,674l0 1748c0,47 -23,70 -70,70l-240 0c-46,0 -70,-23 -70,-70l0 -1673c0,-200 -58,-361 -176,-484 -118,-123 -271,-184 -460,-184 -182,0 -332,51 -452,155 -119,103 -188,238 -206,406l0 1780c0,47 -23,70 -69,70l-241 0c-46,0 -69,-23 -69,-70l0 -2566c0,-46 23,-70 69,-70l241 0c46,0 69,24 69,70l0 198c0,10 4,19 11,24 7,5 13,3 16,-8 157,-214 396,-321 717,-321z"/>
<path id="10" class="fil8" d="M244195 322786c160,-3 298,-40 414,-109 116,-70 206,-167 270,-292 7,-17 20,-30 38,-37 18,-7 35,-5 53,5l155 86c43,25 54,55 32,91 -85,178 -214,320 -385,425 -171,105 -374,158 -609,158 -250,0 -460,-59 -631,-177 -171,-117 -294,-281 -369,-492 -68,-178 -102,-424 -102,-738 0,-153 3,-275 8,-366 6,-91 19,-175 41,-254 60,-231 182,-417 366,-556 183,-139 405,-208 665,-208 311,0 554,80 730,240 177,161 290,387 340,679 21,114 32,293 32,535 0,46 -23,69 -70,69l-1711 0c-17,0 -26,9 -26,27 0,178 10,309 32,391 39,160 122,287 248,382 127,94 286,141 479,141zm-54 -2133c-178,0 -324,46 -438,137 -114,90 -189,212 -224,366 -22,71 -36,192 -43,363 0,18 9,27 26,27l1375 0c17,0 26,-9 26,-27 -7,-156 -18,-271 -32,-342 -39,-160 -118,-288 -238,-382 -119,-95 -270,-142 -452,-142z"/>
<path id="11" class="fil8" d="M247087 320338c118,0 216,21 295,64 35,14 48,43 37,85l-53 236c-11,42 -40,57 -86,42 -68,-21 -155,-30 -262,-26 -185,7 -339,75 -460,206 -121,130 -182,295 -182,494l0 1561c0,47 -23,70 -69,70l-241 0c-46,0 -69,-23 -69,-70l0 -2566c0,-46 23,-70 69,-70l241 0c46,0 69,24 69,70l0 299c0,15 3,23 8,24 6,2 12,-2 19,-13 75,-128 170,-228 286,-299 116,-72 249,-107 398,-107z"/>
<path id="12" class="fil8" d="M248868 320322c321,0 569,82 746,246 176,164 264,381 264,652l0 1780c0,47 -23,70 -69,70l-241 0c-46,0 -69,-23 -69,-70l0 -192c0,-11 -4,-18 -11,-22 -7,-3 -14,0 -21,11 -96,104 -217,182 -361,235 -145,54 -302,81 -473,81 -250,0 -459,-65 -629,-193 -169,-128 -254,-324 -254,-588 0,-267 98,-479 292,-634 194,-155 464,-232 810,-232l620 0c18,0 27,-9 27,-27l0 -198c0,-181 -51,-325 -153,-430 -101,-105 -259,-158 -473,-158 -167,0 -304,32 -411,96 -107,65 -175,154 -204,268 -10,43 -37,60 -80,53l-262 -32c-46,-7 -67,-27 -64,-59 36,-196 145,-354 329,-476 183,-121 412,-181 687,-181zm-150 2464c211,0 393,-52 548,-157 155,-105 233,-247 233,-425l0 -412c0,-18 -9,-27 -27,-27l-561 0c-236,0 -424,48 -567,145 -143,96 -214,230 -214,401 0,156 55,275 166,355 110,80 251,120 422,120z"/>
<path id="13" class="fil8" d="M251857 320610c0,47 -24,70 -70,70l-583 0c-17,0 -26,9 -26,27l0 1561c0,171 38,291 115,361 76,69 197,104 360,104l118 0c46,0 70,23 70,70l0 187c0,46 -24,71 -70,75l-182 0c-256,0 -451,-49 -582,-145 -132,-96 -198,-274 -198,-535l0 -1678c0,-18 -9,-27 -27,-27l-305 0c-46,0 -69,-23 -69,-70l0 -176c0,-46 23,-70 69,-70l305 0c18,0 27,-8 27,-26l0 -599c0,-46 23,-70 69,-70l230 0c46,0 70,24 70,70l0 599c0,18 9,26 26,26l583 0c46,0 70,24 70,70l0 176z"/>
<path id="14" class="fil8" d="M253562 322786c161,-3 299,-40 415,-109 115,-70 205,-167 270,-292 7,-17 19,-30 37,-37 18,-7 36,-5 54,5l155 86c42,25 53,55 32,91 -86,178 -214,320 -385,425 -171,105 -375,158 -610,158 -249,0 -460,-59 -631,-177 -171,-117 -294,-281 -369,-492 -67,-178 -101,-424 -101,-738 0,-153 2,-275 8,-366 5,-91 19,-175 40,-254 60,-231 183,-417 366,-556 184,-139 406,-208 666,-208 310,0 553,80 730,240 176,161 289,387 339,679 21,114 32,293 32,535 0,46 -23,69 -69,69l-1711 0c-18,0 -27,9 -27,27 0,178 11,309 32,391 39,160 122,287 249,382 126,94 286,141 478,141zm-53 -2133c-178,0 -325,46 -439,137 -114,90 -189,212 -224,366 -22,71 -36,192 -43,363 0,18 9,27 27,27l1374 0c18,0 27,-9 27,-27 -8,-156 -18,-271 -32,-342 -40,-160 -119,-288 -238,-382 -120,-95 -270,-142 -452,-142z"/>
<path id="15" class="fil8" d="M257027 319397c0,-47 23,-70 69,-70l241 0c46,0 69,23 69,70l0 3603c0,47 -23,70 -69,70l-241 0c-46,0 -69,-23 -69,-70l0 -203c0,-11 -4,-17 -11,-19 -7,-1 -14,1 -21,8 -79,104 -176,184 -292,241 -115,57 -245,86 -387,86 -250,0 -459,-65 -628,-193 -170,-128 -286,-303 -351,-524 -50,-160 -75,-387 -75,-679 0,-296 22,-517 65,-663 64,-228 181,-407 353,-537 171,-130 383,-195 636,-195 139,0 267,27 385,83 117,55 215,134 294,237 7,11 14,15 21,11 7,-3 11,-11 11,-21l0 -1235zm-102 2972c32,-71 56,-155 70,-251 14,-96 21,-230 21,-401 0,-171 -7,-305 -21,-404 -14,-98 -39,-184 -75,-259 -43,-121 -113,-218 -211,-291 -98,-73 -215,-110 -350,-110 -143,0 -266,36 -369,107 -104,71 -179,166 -225,283 -43,79 -74,167 -93,265 -20,98 -30,235 -30,409 0,168 7,299 21,393 15,95 40,179 75,254 43,128 119,230 228,305 108,75 237,112 387,112 143,0 262,-37 358,-112 97,-75 168,-175 214,-300z"/>
<path id="16" class="fil8" d="M260401 319659c-196,0 -330,43 -401,131 -72,87 -107,236 -107,446l0 102c0,18 9,26 26,26l578 0c46,0 69,24 69,70l0 208c0,47 -23,70 -69,70l-578 0c-17,0 -26,9 -26,27l0 2261c0,47 -23,70 -70,70l-235 0c-46,0 -70,-23 -70,-70l0 -2261c0,-18 -9,-27 -26,-27l-337 0c-46,0 -70,-23 -70,-70l0 -208c0,-46 24,-70 70,-70l337 0c17,0 26,-8 26,-26l0 -123c0,-221 25,-395 75,-522 50,-126 137,-219 260,-278 123,-58 295,-88 516,-88l139 0c46,0 69,23 69,70l0 192c0,47 -23,70 -69,70l-107 0z"/>
<path id="17" class="fil8" d="M262021 323113c-261,0 -482,-66 -666,-198 -184,-132 -311,-314 -382,-546 -50,-164 -75,-383 -75,-657 0,-271 23,-489 69,-652 72,-229 199,-409 383,-540 183,-132 407,-198 671,-198 256,0 476,66 660,198 183,131 309,310 377,534 50,171 75,390 75,658 0,274 -25,493 -75,657 -71,232 -199,414 -382,546 -184,132 -402,198 -655,198zm0 -332c171,0 317,-47 438,-142 121,-94 203,-221 246,-382 28,-114 43,-294 43,-540 0,-256 -15,-436 -43,-540 -39,-160 -120,-288 -243,-382 -123,-95 -274,-142 -452,-142 -171,0 -317,47 -438,142 -122,94 -204,222 -246,382 -29,104 -43,284 -43,540 0,257 14,437 43,540 39,161 120,288 243,382 123,95 273,142 452,142z"/>
<path id="18" class="fil8" d="M264993 320338c118,0 216,21 294,64 36,14 48,43 38,85l-54 236c-10,42 -39,57 -85,42 -68,-21 -155,-30 -262,-26 -186,7 -339,75 -460,206 -121,130 -182,295 -182,494l0 1561c0,47 -23,70 -69,70l-241 0c-46,0 -69,-23 -69,-70l0 -2566c0,-46 23,-70 69,-70l241 0c46,0 69,24 69,70l0 299c0,15 3,23 8,24 6,2 12,-2 19,-13 75,-128 170,-228 286,-299 116,-72 249,-107 398,-107z"/>
<path id="19" class="fil8" d="M267062 323070c-46,0 -69,-23 -69,-70l0 -3603c0,-47 23,-70 69,-70l241 0c46,0 70,23 70,70l0 3603c0,47 -24,70 -70,70l-241 0z"/>
<path id="20" class="fil8" d="M269426 320327c281,0 507,84 676,251 169,168 254,392 254,674l0 1748c0,47 -23,70 -70,70l-240 0c-46,0 -70,-23 -70,-70l0 -1673c0,-200 -58,-361 -176,-484 -118,-123 -271,-184 -460,-184 -182,0 -332,51 -452,155 -119,103 -188,238 -206,406l0 1780c0,47 -23,70 -69,70l-241 0c-46,0 -69,-23 -69,-70l0 -2566c0,-46 23,-70 69,-70l241 0c46,0 69,24 69,70l0 198c0,10 4,19 11,24 7,5 13,3 16,-8 157,-214 396,-321 717,-321z"/>
<path id="21" class="fil8" d="M271249 323070c-46,0 -70,-23 -70,-70l0 -3603c0,-47 24,-70 70,-70l240 0c47,0 70,23 70,70l0 2160c0,10 4,18 11,24 7,5 14,2 21,-8l1118 -1171c21,-25 49,-38 85,-38l283 0c40,0 59,15 59,43 0,11 -5,25 -16,43l-663 733c-10,10 -12,23 -5,37l802 1770c7,14 11,25 11,32 0,32 -22,48 -65,48l-251 0c-36,0 -62,-18 -80,-54l-679 -1545c-4,-7 -9,-11 -16,-13 -7,-2 -14,1 -22,8l-582 609c-7,15 -11,27 -11,38l0 887c0,47 -23,70 -70,70l-240 0z"/>
<path id="22" class="fil8" d="M273671 323070c-25,0 -43,-7 -54,-22 -10,-14 -12,-33 -5,-58l1176 -3604c11,-39 36,-59 75,-59l235 0c25,0 43,7 54,22 11,14 12,33 5,58l-1176 3604c-11,39 -36,59 -75,59l-235 0z"/>
<path id="23" class="fil8" d="M276932 323113c-260,0 -487,-41 -681,-123 -195,-82 -344,-199 -450,-351 -105,-151 -157,-327 -157,-526l0 -150c0,-46 23,-69 69,-69l230 0c46,0 70,23 70,69l0 128c0,204 85,369 256,498 171,128 401,192 690,192 274,0 483,-58 626,-174 142,-115 213,-270 213,-462 0,-125 -33,-232 -99,-321 -65,-89 -166,-173 -302,-251 -135,-79 -329,-170 -582,-273 -268,-107 -475,-200 -623,-281 -148,-80 -268,-183 -358,-310 -91,-126 -137,-286 -137,-478 0,-300 104,-532 313,-698 208,-166 496,-249 863,-249 393,0 703,93 931,278 228,186 342,432 342,738l0 102c0,46 -23,69 -70,69l-235 0c-46,0 -69,-23 -69,-69l0 -80c0,-207 -81,-376 -241,-508 -160,-132 -387,-198 -679,-198 -253,0 -446,52 -580,155 -134,103 -201,253 -201,449 0,128 33,234 99,318 66,84 161,157 284,219 123,63 311,144 564,244 260,107 470,206 631,299 160,93 288,206 385,340 96,133 144,296 144,489 0,296 -110,534 -329,714 -219,180 -525,270 -917,270z"/>
<path id="24" class="fil8" d="M280113 320610c0,47 -23,70 -69,70l-583 0c-18,0 -27,9 -27,27l0 1561c0,171 39,291 115,361 77,69 197,104 361,104l118 0c46,0 69,23 69,70l0 187c0,46 -23,71 -69,75l-182 0c-257,0 -451,-49 -583,-145 -132,-96 -197,-274 -197,-535l0 -1678c0,-18 -9,-27 -27,-27l-305 0c-46,0 -69,-23 -69,-70l0 -176c0,-46 23,-70 69,-70l305 0c18,0 27,-8 27,-26l0 -599c0,-46 23,-70 69,-70l230 0c46,0 69,24 69,70l0 599c0,18 9,26 27,26l583 0c46,0 69,24 69,70l0 176z"/>
<path id="25" class="fil8" d="M281076 319878c-86,0 -155,-26 -209,-78 -53,-51 -80,-118 -80,-200 0,-82 27,-148 80,-198 54,-50 123,-75 209,-75 85,0 155,25 208,75 54,50 81,116 81,198 0,82 -27,149 -81,200 -53,52 -123,78 -208,78zm-118 3192c-46,0 -69,-23 -69,-70l0 -2566c0,-46 23,-70 69,-70l241 0c46,0 69,24 69,70l0 2566c0,47 -23,70 -69,70l-241 0z"/>
<path id="26" class="fil8" d="M283370 320610c0,47 -24,70 -70,70l-583 0c-18,0 -26,9 -26,27l0 1561c0,171 38,291 114,361 77,69 197,104 361,104l118 0c46,0 70,23 70,70l0 187c0,46 -24,71 -70,75l-182 0c-256,0 -451,-49 -583,-145 -131,-96 -197,-274 -197,-535l0 -1678c0,-18 -9,-27 -27,-27l-305 0c-46,0 -69,-23 -69,-70l0 -176c0,-46 23,-70 69,-70l305 0c18,0 27,-8 27,-26l0 -599c0,-46 23,-70 69,-70l230 0c46,0 70,24 70,70l0 599c0,18 8,26 26,26l583 0c46,0 70,24 70,70l0 176z"/>
<path id="27" class="fil8" d="M285043 323113c-257,0 -477,-67 -660,-201 -184,-134 -309,-314 -377,-543 -46,-156 -70,-377 -70,-663 0,-256 24,-474 70,-652 64,-221 189,-398 374,-532 185,-133 406,-200 663,-200 260,0 486,66 676,198 191,131 315,295 372,491 14,50 25,98 32,145l0 10c0,40 -21,63 -64,70l-235 27 -16 0c-32,0 -54,-20 -65,-59 0,-14 -3,-36 -10,-64 -32,-136 -111,-251 -235,-345 -125,-95 -277,-142 -455,-142 -178,0 -327,47 -446,142 -120,94 -197,220 -233,377 -32,135 -48,315 -48,540 0,235 16,417 48,545 36,161 113,288 233,382 119,95 268,142 446,142 175,0 325,-45 452,-136 126,-91 204,-206 232,-345 4,-7 6,-16 6,-27l5 -5c4,-46 30,-66 80,-59l230 37c47,8 68,34 64,81l-21 91c-53,206 -176,374 -369,502 -192,128 -419,193 -679,193z"/>
<path id="28" class="fil8" d="M287925 320327c281,0 507,84 676,251 170,168 254,392 254,674l0 1748c0,47 -23,70 -69,70l-241 0c-46,0 -69,-23 -69,-70l0 -1673c0,-200 -59,-361 -177,-484 -117,-123 -271,-184 -460,-184 -181,0 -332,51 -451,155 -120,103 -188,238 -206,406l0 1780c0,47 -23,70 -70,70l-240 0c-47,0 -70,-23 -70,-70l0 -3603c0,-47 23,-70 70,-70l240 0c47,0 70,23 70,70l0 1235c0,10 3,19 10,24 8,5 13,3 16,-8 157,-214 396,-321 717,-321z"/>
<g id="_751625392">
<path class="fil11" d="M310986 264963c-134,0 -200,-67 -200,-201l0 -13632c0,-134 66,-201 200,-201l1524 0c133,0 200,67 200,201l0 13632c0,134 -67,201 -200,201l-1524 0z"/>
<path id="1" class="fil11" d="M315617 264963c-134,0 -200,-67 -200,-201l0 -13632c0,-134 66,-201 200,-201l1544 0c107,0 180,54 220,161l3569 8841c13,40 33,56 60,50 27,-7 40,-30 40,-70l0 -8781c0,-134 67,-201 200,-201l1504 0c134,0 200,67 200,201l0 13632c0,134 -66,201 -200,201l-1564 0c-107,0 -180,-54 -220,-161l-3569 -8841c-13,-40 -33,-60 -60,-60 -27,0 -40,20 -40,60l20 8801c0,134 -67,201 -200,201l-1504 0z"/>
<path id="2" class="fil11" d="M325841 264963c-133,0 -200,-67 -200,-201l0 -13632c0,-134 67,-201 200,-201l1524 0c134,0 200,67 200,201l0 6014c0,40 14,63 40,70 27,7 47,-10 61,-50l3408 -6094c67,-94 147,-141 240,-141l1644 0c80,0 134,24 161,70 26,47 20,104 -20,171l-3088 5573c-13,40 -13,80 0,120l3348 7859 20 80c0,107 -60,161 -180,161l-1664 0c-107,0 -181,-54 -221,-161l-2606 -6255c-13,-67 -47,-73 -100,-20l-1023 1624c-13,13 -20,47 -20,100l0 4511c0,134 -66,201 -200,201l-1524 0z"/>
<path id="3" class="fil11" d="M334783 264963c-67,0 -117,-20 -151,-61 -33,-40 -43,-93 -30,-160l3909 -13652c40,-107 114,-161 221,-161l1503 0c67,0 117,20 151,60 33,40 43,94 30,161l-3909 13652c-40,107 -114,161 -221,161l-1503 0z"/>
<path id="4" class="fil11" d="M345267 265123c-1055,0 -1907,-331 -2556,-992 -648,-662 -972,-1527 -972,-2597l0 -541c0,-134 67,-200 201,-200l1483 0c134,0 201,66 201,200l0 441c0,615 153,1106 461,1474 307,367 701,551 1182,551 482,0 879,-177 1193,-531 314,-354 471,-819 471,-1394 0,-387 -83,-728 -250,-1022 -167,-294 -388,-558 -662,-792 -274,-234 -718,-578 -1333,-1032 -682,-508 -1216,-943 -1604,-1303 -387,-361 -715,-796 -982,-1304 -267,-507 -401,-1102 -401,-1784 0,-1082 321,-1941 962,-2576 642,-635 1477,-952 2506,-952 1069,0 1928,341 2576,1022 649,682 973,1577 973,2687l0 501c0,133 -67,200 -201,200l-1483 0c-134,0 -201,-67 -201,-200l0 -541c0,-602 -154,-1086 -461,-1454 -307,-367 -708,-551 -1203,-551 -468,0 -845,164 -1132,491 -288,327 -431,785 -431,1373 0,535 147,986 441,1353 294,368 855,859 1684,1474 815,601 1426,1089 1834,1463 408,375 722,786 942,1233 221,448 331,979 331,1594 0,1123 -331,2022 -992,2697 -662,674 -1521,1012 -2577,1012z"/>
<path id="5" class="fil11" d="M357517 250929c133,0 200,67 200,201l0 1263c0,133 -67,200 -200,200l-2627 0c-53,0 -80,27 -80,80l0 12089c0,134 -67,201 -200,201l-1524 0c-134,0 -200,-67 -200,-201l0 -12089c0,-53 -27,-80 -81,-80l-2486 0c-133,0 -200,-67 -200,-200l0 -1263c0,-134 67,-201 200,-201l7198 0z"/>
<path id="6" class="fil11" d="M359962 264963c-133,0 -200,-67 -200,-201l0 -13632c0,-134 67,-201 200,-201l1524 0c134,0 200,67 200,201l0 13632c0,134 -66,201 -200,201l-1524 0z"/>
<path id="7" class="fil11" d="M371129 250929c134,0 200,67 200,201l0 1263c0,133 -66,200 -200,200l-2626 0c-54,0 -80,27 -80,80l0 12089c0,134 -67,201 -201,201l-1524 0c-133,0 -200,-67 -200,-201l0 -12089c0,-53 -27,-80 -80,-80l-2486 0c-134,0 -201,-67 -201,-200l0 -1263c0,-134 67,-201 201,-201l7197 0z"/>
<path id="8" class="fil11" d="M376161 265123c-1083,0 -1955,-331 -2616,-992 -662,-662 -993,-1541 -993,-2637l0 -7117c0,-1096 331,-1971 993,-2626 661,-655 1533,-982 2616,-982 1096,0 1975,327 2636,982 662,655 993,1530 993,2626l0 321c0,134 -67,201 -201,201l-1524 80c-133,0 -200,-67 -200,-201l0 -521c0,-548 -157,-989 -471,-1323 -314,-334 -725,-501 -1233,-501 -508,0 -916,167 -1223,501 -307,334 -461,775 -461,1323l0 7378c0,548 154,989 461,1323 307,334 715,501 1223,501 508,0 919,-167 1233,-501 314,-334 471,-775 471,-1323l0 -522c0,-133 67,-200 200,-200l1524 80c134,0 201,67 201,201l0 300c0,1096 -331,1975 -993,2637 -661,661 -1540,992 -2636,992z"/>
<path id="9" class="fil11" d="M387207 251130c0,-134 67,-201 201,-201l1523 0c134,0 201,67 201,201l0 13632c0,134 -67,201 -201,201l-1523 0c-134,0 -201,-67 -201,-201l0 -5914c0,-53 -27,-80 -80,-80l-3027 0c-54,0 -80,27 -80,80l0 5914c0,134 -67,201 -201,201l-1524 0c-133,0 -200,-67 -200,-201l0 -13632c0,-134 67,-201 200,-201l1524 0c134,0 201,67 201,201l0 5894c0,53 26,80 80,80l3027 0c53,0 80,-27 80,-80l0 -5894z"/>
<path class="fil11" d="M317501 277492c0,134 -66,201 -200,201l-4511 0c-53,0 -80,26 -80,80l0 4350c0,54 27,80 80,80l2767 0c133,0 200,67 200,201l0 1263c0,134 -67,200 -200,200l-2767 0c-53,0 -80,27 -80,81l0 4370c0,53 27,80 80,80l4511 0c134,0 200,67 200,201l0 1263c0,133 -66,200 -200,200l-6315 0c-134,0 -200,-67 -200,-200l0 -13633c0,-133 66,-200 200,-200l6315 0c134,0 200,67 200,200l0 1263z"/>
<path id="1" class="fil11" d="M319025 290062c-134,0 -200,-67 -200,-200l0 -13633c0,-133 66,-200 200,-200l1524 0c107,0 180,53 220,160l2045 4872c13,26 34,40 60,40 27,0 47,-14 60,-40l2085 -4872c40,-107 114,-160 221,-160l1524 0c133,0 200,67 200,200l0 13633c0,133 -67,200 -200,200l-1524 0c-134,0 -201,-67 -201,-200l0 -9082c0,-40 -10,-60 -30,-60 -20,0 -43,13 -70,40l-1864 3969c-40,94 -94,141 -161,141 -93,0 -160,-47 -200,-141l-1865 -3989c-26,-27 -50,-40 -70,-40 -20,0 -30,20 -30,60l0 9102c0,133 -67,200 -200,200l-1524 0z"/>
<path id="2" class="fil11" d="M336005 286233c0,1216 -344,2158 -1032,2827 -688,668 -1594,1002 -2716,1002l-3348 0c-134,0 -201,-67 -201,-200l0 -13633c0,-133 67,-200 201,-200l3067 0c1216,0 2168,317 2857,952 688,635 1032,1560 1032,2777 0,1443 -514,2439 -1544,2987 -66,40 -73,73 -20,100 535,321 953,768 1253,1343 301,575 451,1256 451,2045zm-5292 -8540c-54,0 -80,26 -80,80l0 4250c0,53 26,80 80,80l1283 0c628,0 1116,-190 1463,-571 348,-381 522,-912 522,-1594 0,-708 -174,-1260 -522,-1654 -347,-394 -835,-591 -1463,-591l-1283 0zm1383 10685c615,0 1099,-207 1454,-621 354,-415 531,-1003 531,-1765 0,-775 -174,-1380 -521,-1814 -348,-434 -829,-651 -1444,-651l-1403 0c-54,0 -80,26 -80,80l0 4691c0,53 26,80 80,80l1383 0z"/>
<path id="3" class="fil11" d="M342822 290062c-121,0 -201,-53 -241,-160l-1864 -6015c-14,-40 -40,-60 -81,-60l-1383 0c-53,0 -80,27 -80,80l0 5955c0,133 -67,200 -201,200l-1523 0c-134,0 -201,-67 -201,-200l0 -13653c0,-133 67,-200 201,-200l3588 0c682,0 1283,167 1805,501 521,334 925,805 1213,1413 287,608 431,1300 431,2075 0,842 -178,1574 -532,2195 -354,622 -832,1066 -1433,1334 -40,40 -54,80 -40,120l2065 6195 20 80c0,93 -60,140 -181,140l-1563 0zm-3569 -12389c-53,0 -80,26 -80,80l0 4490c0,54 27,81 80,81l1484 0c548,0 989,-211 1323,-632 334,-421 501,-979 501,-1674 0,-722 -167,-1293 -501,-1714 -334,-421 -775,-631 -1323,-631l-1484 0z"/>
<path id="4" class="fil11" d="M349097 290222c-1096,0 -1978,-334 -2647,-1002 -668,-668 -1002,-1557 -1002,-2666l0 -6997c0,-1109 334,-2001 1002,-2676 669,-675 1551,-1013 2647,-1013 1109,0 2001,338 2676,1013 675,675 1012,1567 1012,2676l0 6997c0,1109 -337,1998 -1012,2666 -675,668 -1567,1002 -2676,1002zm0 -1664c534,0 962,-177 1283,-531 320,-354 481,-818 481,-1393l0 -7177c0,-575 -161,-1039 -481,-1393 -321,-355 -749,-532 -1283,-532 -522,0 -939,177 -1253,532 -314,354 -471,818 -471,1393l0 7177c0,575 157,1039 471,1393 314,354 731,531 1253,531z"/>
<path id="5" class="fil11" d="M354590 290062c-134,0 -201,-67 -201,-200l0 -13633c0,-133 67,-200 201,-200l1523 0c134,0 201,67 201,200l0 13633c0,133 -67,200 -201,200l-1523 0z"/>
<path id="6" class="fil11" d="M358399 290062c-134,0 -201,-67 -201,-200l0 -13633c0,-133 67,-200 201,-200l3288 0c1109,0 1991,341 2646,1022 655,682 982,1604 982,2767l0 6455c0,1163 -327,2085 -982,2767 -655,681 -1537,1022 -2646,1022l-3288 0zm1724 -1744c0,53 27,80 80,80l1464 -20c507,0 915,-197 1222,-591 308,-395 468,-933 482,-1614l0 -6255c0,-682 -154,-1223 -462,-1624 -307,-401 -721,-601 -1242,-601l-1464 0c-53,0 -80,26 -80,80l0 10545z"/>
<path id="7" class="fil11" d="M373595 277492c0,134 -67,201 -201,201l-4510 0c-54,0 -81,26 -81,80l0 4350c0,54 27,80 81,80l2766 0c134,0 201,67 201,201l0 1263c0,134 -67,200 -201,200l-2766 0c-54,0 -81,27 -81,81l0 4370c0,53 27,80 81,80l4510 0c134,0 201,67 201,201l0 1263c0,133 -67,200 -201,200l-6315 0c-133,0 -200,-67 -200,-200l0 -13633c0,-133 67,-200 200,-200l6315 0c134,0 201,67 201,200l0 1263z"/>
<path id="8" class="fil11" d="M380511 290062c-120,0 -200,-53 -240,-160l-1865 -6015c-13,-40 -40,-60 -80,-60l-1383 0c-54,0 -80,27 -80,80l0 5955c0,133 -67,200 -201,200l-1523 0c-134,0 -201,-67 -201,-200l0 -13653c0,-133 67,-200 201,-200l3588 0c682,0 1283,167 1804,501 522,334 926,805 1213,1413 288,608 431,1300 431,2075 0,842 -177,1574 -531,2195 -354,622 -832,1066 -1433,1334 -40,40 -54,80 -40,120l2064 6195 20 80c0,93 -60,140 -180,140l-1564 0zm-3568 -12389c-54,0 -80,26 -80,80l0 4490c0,54 26,81 80,81l1483 0c548,0 989,-211 1324,-632 334,-421 501,-979 501,-1674 0,-722 -167,-1293 -501,-1714 -335,-421 -776,-631 -1324,-631l-1483 0z"/>
<path id="9" class="fil11" d="M385503 290042c-133,0 -200,-67 -200,-200l0 -5734 -20 -100 -2787 -7759 -20 -80c0,-93 60,-140 181,-140l1603 0c121,0 201,53 241,160l1704 5533c13,27 33,40 60,40 27,0 47,-13 60,-40l1704 -5533c40,-107 121,-160 241,-160l1604 0c147,0 200,73 160,220l-2787 7759 -20 100 0 5734c0,133 -66,200 -200,200l-1524 0z"/>
<path class="fil11" d="M318083 311332c0,1217 -344,2159 -1033,2827 -688,668 -1593,1002 -2716,1002l-3348 0c-134,0 -200,-66 -200,-200l0 -13632c0,-134 66,-201 200,-201l3067 0c1216,0 2169,318 2857,952 688,635 1032,1561 1032,2777 0,1443 -514,2439 -1543,2987 -67,40 -74,74 -20,100 534,321 952,769 1253,1344 300,574 451,1256 451,2044zm-5293 -8540c-53,0 -80,27 -80,80l0 4250c0,54 27,81 80,81l1283 0c628,0 1116,-191 1464,-572 347,-381 521,-912 521,-1594 0,-708 -174,-1259 -521,-1654 -348,-394 -836,-591 -1464,-591l-1283 0zm1384 10685c614,0 1099,-207 1453,-621 354,-414 531,-1002 531,-1764 0,-775 -173,-1380 -521,-1815 -347,-434 -829,-651 -1443,-651l-1404 0c-53,0 -80,27 -80,80l0 4691c0,54 27,80 80,80l1384 0z"/>
<path id="1" class="fil11" d="M325821 315161c-120,0 -200,-53 -240,-160l-1865 -6014c-13,-40 -40,-60 -80,-60l-1383 0c-54,0 -80,26 -80,80l0 5954c0,134 -67,200 -201,200l-1524 0c-133,0 -200,-66 -200,-200l0 -13652c0,-134 67,-201 200,-201l3589 0c682,0 1283,167 1804,501 522,334 926,806 1213,1414 288,608 431,1299 431,2075 0,842 -177,1573 -531,2195 -354,621 -832,1066 -1433,1333 -41,40 -54,80 -41,120l2065 6195 20 80c0,94 -60,140 -180,140l-1564 0zm-3568 -12389c-54,0 -80,27 -80,80l0 4491c0,53 26,80 80,80l1483 0c548,0 989,-210 1323,-631 335,-421 502,-979 502,-1674 0,-722 -167,-1293 -502,-1714 -334,-421 -775,-632 -1323,-632l-1483 0z"/>
<path id="2" class="fil11" d="M335705 315161c-121,0 -194,-60 -221,-180l-441 -2305c0,-27 -10,-47 -30,-61 -20,-13 -43,-20 -70,-20l-3228 0c-27,0 -50,7 -70,20 -20,14 -30,34 -30,61l-461 2305c-13,120 -87,180 -221,180l-1523 0c-67,0 -117,-20 -151,-60 -33,-40 -43,-93 -30,-160l2987 -13632c27,-121 101,-181 221,-181l1764 0c134,0 207,60 221,181l3027 13632 0 40c0,120 -60,180 -181,180l-1563 0zm-3749 -4169c0,53 20,80 60,80l2646 0c40,0 60,-27 60,-80l-1323 -6857c-13,-40 -27,-60 -40,-60 -13,0 -27,20 -40,60l-1363 6857z"/>
<path id="3" class="fil11" d="M339835 315161c-134,0 -201,-66 -201,-200l0 -13632c0,-134 67,-201 201,-201l1543 0c107,0 181,54 221,161l3568 8841c14,40 34,56 60,50 27,-7 40,-30 40,-71l0 -8780c0,-134 67,-201 201,-201l1503 0c134,0 201,67 201,201l0 13632c0,134 -67,200 -201,200l-1563 0c-107,0 -181,-53 -221,-160l-3568 -8841c-14,-40 -34,-60 -60,-60 -27,0 -40,20 -40,60l20 8801c0,134 -67,200 -201,200l-1503 0z"/>
<path id="4" class="fil11" d="M350179 315161c-134,0 -200,-66 -200,-200l0 -13632c0,-134 66,-201 200,-201l3288 0c1109,0 1991,341 2646,1023 655,681 982,1603 982,2766l0 6455c0,1163 -327,2085 -982,2767 -655,682 -1537,1022 -2646,1022l-3288 0zm1724 -1744c0,54 27,80 80,80l1464 -20c508,0 915,-197 1223,-591 307,-394 468,-932 481,-1614l0 -6255c0,-681 -154,-1223 -461,-1623 -308,-401 -722,-602 -1243,-602l-1464 0c-53,0 -80,27 -80,80l0 10545z"/>
<path id="5" class="fil11" d="M359902 315161c-133,0 -200,-66 -200,-200l0 -13632c0,-134 67,-201 200,-201l1524 0c133,0 200,67 200,201l0 13632c0,134 -67,200 -200,200l-1524 0z"/>
<path id="6" class="fil11" d="M364654 315161c-134,0 -201,-66 -201,-200l0 -13632c0,-134 67,-201 201,-201l1543 0c107,0 181,54 221,161l3568 8841c14,40 34,56 60,50 27,-7 40,-30 40,-71l0 -8780c0,-134 67,-201 201,-201l1503 0c134,0 201,67 201,201l0 13632c0,134 -67,200 -201,200l-1563 0c-107,0 -181,-53 -221,-160l-3568 -8841c-14,-40 -34,-60 -60,-60 -27,0 -40,20 -40,60l20 8801c0,134 -67,200 -201,200l-1503 0z"/>
<path id="7" class="fil11" d="M378126 315322c-1083,0 -1955,-321 -2617,-962 -661,-642 -992,-1491 -992,-2546l0 -7338c0,-1056 331,-1904 992,-2546 662,-641 1534,-962 2617,-962 1082,0 1957,321 2626,962 668,642 1002,1497 1002,2566l0 842c0,134 -67,201 -200,201l-1524 0c-134,0 -200,-67 -200,-201l0 -882c0,-548 -157,-989 -472,-1323 -314,-334 -725,-501 -1232,-501 -508,0 -919,167 -1233,501 -315,334 -472,775 -472,1323l0 7378c0,548 157,989 472,1323 314,334 725,501 1233,501 507,0 918,-167 1232,-501 315,-334 472,-775 472,-1323l0 -2206c0,-53 -27,-80 -81,-80l-1523 0c-134,0 -201,-67 -201,-200l0 -1243c0,-134 67,-201 201,-201l3328 0c133,0 200,67 200,201l0 3709c0,1055 -334,1904 -1002,2546 -669,641 -1544,962 -2626,962z"/>
</g>
<path class="fil11" d="M120569 254495c-8,3 -12,8 -12,15 0,7 4,14 12,19 266,133 398,362 398,686 0,274 -93,481 -279,620 -186,140 -430,210 -732,210l-1076 0c-48,0 -72,-24 -72,-72l0 -2819c0,-48 24,-72 72,-72l1042 0c669,0 1003,270 1003,812 0,285 -119,486 -356,601zm-1138 -901c-17,0 -26,8 -26,25l0 652c0,17 9,25 26,25l491 0c132,0 235,-31 309,-93 73,-62 110,-146 110,-254 0,-110 -37,-196 -110,-260 -74,-63 -177,-95 -309,-95l-491 0zm525 1934c129,0 231,-33 304,-99 74,-66 110,-157 110,-273 0,-116 -36,-207 -110,-273 -73,-67 -176,-100 -309,-100l-520 0c-17,0 -26,9 -26,26l0 694c0,17 9,25 26,25l525 0z"/>
<path id="1" class="fil11" d="M122254 253835c184,0 347,32 491,95 144,64 256,151 337,261 80,110 121,232 121,368l0 1414c0,48 -24,72 -72,72l-453 0c-48,0 -72,-24 -72,-72l0 -102c0,-11 -3,-17 -9,-19 -6,-1 -13,2 -21,11 -130,144 -323,216 -580,216 -217,0 -392,-54 -525,-161 -133,-107 -199,-265 -199,-474 0,-218 76,-386 229,-506 152,-120 369,-180 652,-180l427 0c17,0 26,-9 26,-25l0 -89c0,-94 -29,-166 -87,-218 -58,-53 -142,-79 -252,-79 -85,0 -155,14 -210,43 -55,28 -92,67 -112,118 -17,40 -45,58 -84,55l-470 -59c-23,-3 -41,-9 -53,-19 -13,-10 -18,-23 -15,-40 14,-116 63,-220 146,-314 83,-93 193,-165 330,-218 137,-52 289,-78 455,-78zm-84 1799c121,0 224,-32 309,-97 84,-65 127,-148 127,-250l0 -148c0,-17 -9,-25 -26,-25l-300 0c-127,0 -228,24 -301,71 -73,48 -110,116 -110,204 0,76 28,136 83,180 55,43 127,65 218,65z"/>
<path id="2" class="fil11" d="M124701 253839c90,0 165,17 224,51 34,17 47,47 39,89l-81 444c-3,26 -10,41 -23,47 -13,6 -33,6 -62,0 -45,-11 -86,-17 -122,-17 -20,0 -53,3 -98,9 -101,8 -187,45 -258,112 -70,66 -106,154 -106,264l0 1135c0,48 -24,72 -72,72l-453 0c-48,0 -72,-24 -72,-72l0 -2032c0,-48 24,-72 72,-72l453 0c48,0 72,24 72,72l0 131c0,11 3,18 9,21 5,3 12,0 21,-8 113,-164 265,-246 457,-246z"/>
<path id="3" class="fil11" d="M125319 256045c-48,0 -72,-24 -72,-72l0 -2819c0,-48 24,-72 72,-72l453 0c48,0 72,24 72,72l0 2819c0,48 -24,72 -72,72l-453 0z"/>
<path id="4" class="fil11" d="M127258 256079c-240,0 -444,-62 -614,-187 -169,-124 -285,-293 -347,-508 -39,-132 -59,-276 -59,-431 0,-172 21,-322 63,-449 65,-209 182,-373 350,-491 168,-119 371,-178 611,-178 232,0 430,59 595,178 165,118 280,281 345,487 42,130 64,278 64,444 0,147 -19,289 -55,428 -65,220 -182,393 -350,518 -168,126 -369,189 -603,189zm0 -513c90,0 168,-28 233,-84 65,-57 111,-134 140,-233 22,-76 33,-175 33,-296 0,-119 -11,-219 -33,-301 -29,-96 -75,-171 -140,-224 -65,-54 -145,-81 -241,-81 -94,0 -173,27 -237,81 -65,53 -112,128 -140,224 -23,82 -34,182 -34,301 0,115 11,214 34,296 28,99 75,176 142,233 66,56 147,84 243,84z"/>
<path id="5" class="fil11" d="M129095 256045c-39,0 -66,-20 -80,-59l-597 -2037c-3,-5 -4,-14 -4,-25 0,-37 21,-55 63,-55l466 0c45,0 72,21 80,63l292 1253c3,12 9,17 17,17 9,0 14,-5 17,-17l314 -1253c8,-42 35,-63 80,-63l415 0c45,0 72,21 80,63l322 1258c3,11 8,17 17,17 8,0 14,-6 17,-17l322 -1258c8,-42 35,-63 80,-63l466 4c25,0 43,8 53,23 10,16 12,35 6,58l-605 2032c-14,39 -41,59 -81,59l-474 0c-39,0 -66,-20 -80,-59l-318 -1110c-6,-11 -12,-16 -19,-16 -7,0 -12,5 -15,16l-279 1105c-9,43 -35,64 -81,64l-474 0z"/>
<path id="6" class="fil11" d="M132994 253518c-67,0 -123,-21 -165,-62 -42,-41 -63,-94 -63,-159 0,-64 21,-117 63,-156 42,-40 98,-59 165,-59 68,0 123,19 165,59 43,39 64,92 64,156 0,65 -21,118 -64,159 -42,41 -97,62 -165,62zm-93 2527c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 2032c0,37 -19,55 -55,55l-191 0z"/>
<path id="7" class="fil11" d="M134552 256066c-158,0 -298,-25 -421,-76 -123,-51 -217,-119 -284,-203 -66,-85 -99,-180 -99,-284l0 -38c0,-37 18,-55 55,-55l182 0c17,0 30,3 40,10 10,7 15,17 15,28l0 38c0,93 48,174 144,243 96,70 217,104 364,104 147,0 265,-33 356,-99 90,-67 135,-151 135,-252 0,-71 -23,-129 -68,-174 -45,-45 -100,-80 -165,-106 -65,-25 -162,-57 -292,-97 -158,-45 -288,-90 -389,-135 -102,-46 -188,-108 -259,-189 -70,-80 -105,-183 -105,-307 0,-180 71,-324 213,-432 143,-107 330,-160 561,-160 155,0 293,25 413,76 120,51 212,120 277,209 65,89 98,189 98,299 0,37 -19,55 -55,55l-174 0c-37,0 -55,-10 -55,-30l0 -25c0,-96 -46,-177 -138,-241 -91,-65 -215,-98 -370,-98 -144,0 -260,29 -347,87 -88,58 -131,138 -131,239 0,96 41,169 124,220 84,51 214,102 392,153 164,45 296,89 398,131 102,42 189,104 262,186 74,82 111,188 111,318 0,183 -72,330 -214,440 -143,110 -334,165 -574,165z"/>
<path id="8" class="fil11" d="M137477 253869c254,0 451,65 591,195 140,129 210,302 210,516l0 1410c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -153c0,-8 -3,-14 -8,-17 -6,-2 -12,0 -17,9 -77,82 -172,144 -286,186 -114,43 -239,64 -375,64 -197,0 -363,-51 -497,-153 -134,-101 -201,-257 -201,-465 0,-212 77,-379 230,-502 154,-123 368,-184 642,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-144 -40,-257 -121,-341 -80,-83 -205,-125 -374,-125 -133,0 -242,26 -326,77 -85,50 -139,121 -161,211 -9,34 -30,48 -64,43l-207 -26c-37,-5 -54,-21 -51,-46 28,-156 115,-281 260,-377 146,-96 327,-144 544,-144zm-118 1951c166,0 311,-41 434,-124 123,-84 184,-196 184,-337l0 -326c0,-14 -7,-21 -21,-21l-445 0c-186,0 -336,38 -448,114 -113,76 -170,182 -170,318 0,124 44,218 131,281 88,64 199,95 335,95z"/>
<path id="9" class="fil11" d="M140449 256066c-158,0 -298,-25 -421,-76 -123,-51 -217,-119 -284,-203 -66,-85 -99,-180 -99,-284l0 -38c0,-37 18,-55 55,-55l182 0c17,0 30,3 40,10 10,7 15,17 15,28l0 38c0,93 48,174 144,243 96,70 217,104 364,104 147,0 265,-33 356,-99 90,-67 135,-151 135,-252 0,-71 -23,-129 -68,-174 -45,-45 -100,-80 -165,-106 -65,-25 -162,-57 -292,-97 -158,-45 -288,-90 -389,-135 -102,-46 -188,-108 -259,-189 -70,-80 -105,-183 -105,-307 0,-180 71,-324 213,-432 143,-107 330,-160 561,-160 156,0 293,25 413,76 120,51 212,120 277,209 65,89 98,189 98,299 0,37 -19,55 -55,55l-174 0c-37,0 -55,-10 -55,-30l0 -25c0,-96 -46,-177 -138,-241 -91,-65 -215,-98 -370,-98 -144,0 -260,29 -347,87 -88,58 -131,138 -131,239 0,96 41,169 125,220 83,51 213,102 391,153 164,45 297,89 398,131 102,42 189,104 263,186 73,82 110,188 110,318 0,183 -72,330 -214,440 -143,110 -334,165 -574,165z"/>
<path id="10" class="fil11" d="M141842 256045c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 2853c0,37 -19,55 -55,55l-191 0z"/>
<path id="11" class="fil11" d="M142951 253518c-68,0 -123,-21 -165,-62 -42,-41 -63,-94 -63,-159 0,-64 21,-117 63,-156 42,-40 97,-59 165,-59 68,0 123,19 165,59 43,39 64,92 64,156 0,65 -21,118 -64,159 -42,41 -97,62 -165,62zm-93 2527c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 2032c0,37 -19,55 -55,55l-191 0z"/>
<path id="12" class="fil11" d="M145127 253958c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 2015c0,316 -92,547 -275,694 -184,147 -434,220 -750,220 -59,0 -104,-1 -135,-4 -37,-3 -55,-23 -55,-59l8 -170c0,-39 19,-56 55,-50 299,14 516,-30 650,-132 134,-101 201,-271 201,-508l0 -148c0,-8 -3,-14 -8,-17 -6,-3 -12,0 -17,9 -130,166 -314,250 -551,250 -183,0 -346,-50 -489,-149 -142,-98 -237,-238 -285,-419 -34,-115 -51,-288 -51,-516 0,-124 3,-229 10,-313 8,-85 22,-161 45,-229 51,-169 142,-306 275,-409 133,-103 292,-154 478,-154 246,0 435,80 568,241 5,9 11,12 17,9 5,-3 8,-9 8,-17l0 -144zm-21 1439c8,-42 14,-94 17,-156 3,-63 4,-153 4,-271 0,-144 -1,-241 -4,-290 -3,-50 -10,-96 -21,-138 -23,-119 -79,-217 -168,-294 -88,-78 -201,-117 -336,-117 -133,0 -245,38 -337,115 -91,76 -156,175 -192,296 -28,90 -43,231 -43,423 0,206 15,349 43,428 28,118 89,217 184,294 94,78 209,117 345,117 138,0 252,-39 341,-115 89,-76 144,-173 167,-292z"/>
<path id="13" class="fil11" d="M146960 253873c223,0 402,66 536,199 134,133 201,311 201,534l0 1384c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -46,-286 -140,-383 -93,-98 -214,-146 -364,-146 -144,0 -263,41 -357,122 -95,82 -149,189 -163,322l0 1410c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 977c0,9 3,15 8,20 6,4 10,2 13,-7 124,-169 313,-254 567,-254z"/>
<path id="14" class="fil11" d="M149314 254098c0,36 -19,55 -55,55l-462 0c-14,0 -21,7 -21,21l0 1236c0,135 30,231 91,286 61,55 156,82 286,82l93 0c37,0 55,18 55,55l0 148c0,37 -18,57 -55,60l-144 0c-203,0 -357,-38 -461,-115 -105,-76 -157,-217 -157,-423l0 -1329c0,-14 -7,-21 -21,-21l-241 0c-37,0 -55,-19 -55,-55l0 -140c0,-37 18,-55 55,-55l241 0c14,0 21,-7 21,-21l0 -474c0,-37 18,-56 55,-56l182 0c37,0 55,19 55,56l0 474c0,14 7,21 21,21l462 0c36,0 55,18 55,55l0 140z"/>
<path id="15" class="fil11" d="M149949 256045c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2853c0,37 -18,55 -55,55l-190 0z"/>
<path id="16" class="fil11" d="M150778 256892c-19,0 -29,-19 -29,-56l0 -148c0,-36 10,-55 29,-55l30 0c110,0 196,-15 256,-46 61,-31 113,-86 157,-165 44,-79 91,-201 142,-364 2,-6 2,-15 0,-26l-712 -2066c-2,-5 -4,-12 -4,-21 0,-11 5,-21 15,-29 10,-9 22,-13 36,-13l199 0c34,0 55,15 63,46l547 1660c2,11 7,17 12,17 6,0 10,-6 13,-17l533 -1660c9,-31 29,-46 60,-46l203 0c20,0 34,5 42,17 9,11 10,27 4,46l-779 2265c-67,189 -131,329 -190,419 -59,91 -133,153 -222,189 -89,35 -214,53 -375,53l-30 0z"/>
<path id="17" class="fil11" d="M154538 253882c93,0 170,17 233,50 28,12 38,34 29,68l-42 186c-9,34 -31,46 -68,34 -54,-17 -123,-24 -207,-21 -147,6 -268,60 -364,163 -96,103 -144,234 -144,392l0 1236c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 237c0,11 2,18 6,19 4,1 9,-2 15,-11 59,-101 135,-180 226,-237 92,-56 197,-84 316,-84z"/>
<path id="18" class="fil11" d="M156015 256079c-206,0 -382,-52 -527,-157 -145,-104 -246,-248 -303,-432 -39,-130 -59,-303 -59,-520 0,-215 19,-387 55,-517 57,-180 158,-323 303,-427 145,-105 322,-157 531,-157 203,0 378,52 523,157 145,104 245,245 298,423 40,135 60,309 60,521 0,217 -20,390 -60,520 -56,184 -157,328 -302,432 -146,105 -318,157 -519,157zm0 -263c136,0 251,-37 347,-112 96,-75 161,-176 195,-303 23,-90 34,-232 34,-427 0,-203 -11,-346 -34,-428 -31,-127 -95,-228 -193,-302 -97,-75 -216,-113 -357,-113 -136,0 -251,38 -347,113 -96,74 -161,175 -195,302 -23,82 -34,225 -34,428 0,203 11,346 34,427 31,127 95,228 192,303 98,75 217,112 358,112z"/>
<path id="19" class="fil11" d="M158801 253958c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2032c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -161c0,-9 -3,-14 -9,-17 -5,-3 -11,0 -17,8 -121,170 -307,254 -558,254 -136,0 -261,-27 -375,-82 -114,-55 -205,-135 -271,-239 -66,-105 -100,-230 -100,-377l0 -1418c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 1329c0,161 45,289 135,383 91,95 214,142 369,142 161,0 288,-48 383,-144 94,-96 142,-223 142,-381l0 -1329z"/>
<path id="20" class="fil11" d="M160663 253873c223,0 402,66 536,199 134,133 201,311 201,534l0 1384c0,37 -18,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -1325c0,-158 -46,-286 -139,-383 -93,-98 -215,-146 -364,-146 -144,0 -264,41 -358,122 -95,82 -149,189 -163,322l0 1410c0,37 -18,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -2032c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 156c0,9 3,15 8,20 6,4 10,2 13,-7 124,-169 313,-254 567,-254z"/>
<path id="21" class="fil11" d="M163373 253137c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2853c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -161c0,-9 -3,-13 -9,-15 -6,-1 -11,1 -17,6 -62,82 -139,146 -231,191 -91,45 -194,68 -306,68 -198,0 -364,-51 -498,-153 -134,-101 -226,-240 -277,-415 -40,-127 -59,-306 -59,-537 0,-234 17,-409 50,-525 51,-181 144,-323 280,-426 135,-103 303,-154 504,-154 110,0 211,22 304,66 93,43 171,106 233,188 6,8 11,11 17,8 6,-2 9,-8 9,-17l0 -977zm-81 2353c26,-56 44,-122 55,-199 11,-76 17,-182 17,-317 0,-136 -6,-242 -17,-320 -11,-77 -31,-146 -59,-205 -34,-96 -90,-173 -167,-231 -78,-58 -170,-87 -278,-87 -112,0 -210,29 -292,85 -82,57 -141,131 -177,224 -34,63 -59,132 -75,210 -15,78 -23,186 -23,324 0,132 6,236 17,311 11,75 31,142 59,201 34,102 94,182 180,241 86,60 189,89 307,89 113,0 208,-29 284,-89 76,-59 132,-138 169,-237z"/>
<path id="22" class="fil11" d="M165184 255820c127,-2 237,-31 328,-86 92,-55 163,-132 214,-231 6,-14 16,-24 30,-30 14,-5 28,-4 42,5l123 67c34,20 42,44 25,72 -67,141 -169,254 -304,337 -136,83 -297,125 -483,125 -198,0 -364,-47 -500,-140 -135,-93 -232,-223 -292,-389 -53,-142 -80,-336 -80,-585 0,-121 2,-218 6,-290 4,-72 15,-139 32,-201 48,-183 145,-330 290,-440 145,-110 321,-165 527,-165 246,0 438,63 578,190 140,127 229,307 269,538 17,90 25,231 25,423 0,37 -18,55 -55,55l-1355 0c-14,0 -21,7 -21,22 0,141 9,244 26,309 31,127 96,228 196,302 101,75 227,112 379,112zm-42 -1689c-141,0 -257,36 -347,108 -90,72 -150,169 -178,290 -17,57 -28,153 -34,288 0,14 7,21 21,21l1088 0c14,0 22,-7 22,-21 -6,-124 -15,-214 -26,-271 -31,-127 -94,-228 -188,-302 -95,-75 -214,-113 -358,-113z"/>
<path id="23" class="fil11" d="M167928 253137c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2853c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -161c0,-9 -3,-13 -9,-15 -6,-1 -11,1 -17,6 -62,82 -139,146 -231,191 -91,45 -194,68 -306,68 -198,0 -364,-51 -498,-153 -134,-101 -226,-240 -277,-415 -40,-127 -59,-306 -59,-537 0,-234 17,-409 50,-525 51,-181 144,-323 280,-426 135,-103 303,-154 504,-154 110,0 211,22 304,66 93,43 171,106 233,188 6,8 11,11 17,8 6,-2 9,-8 9,-17l0 -977zm-81 2353c26,-56 44,-122 55,-199 11,-76 17,-182 17,-317 0,-136 -6,-242 -17,-320 -11,-77 -31,-146 -59,-205 -34,-96 -90,-173 -167,-231 -78,-58 -170,-87 -278,-87 -112,0 -210,29 -292,85 -82,57 -141,131 -177,224 -34,63 -59,132 -75,210 -15,78 -23,186 -23,324 0,132 6,236 17,311 11,75 31,142 59,201 34,102 94,182 180,241 86,60 189,89 307,89 113,0 208,-29 284,-89 76,-59 132,-138 169,-237z"/>
<path id="24" class="fil11" d="M168846 256379c-20,0 -34,-5 -42,-15 -9,-9 -11,-24 -9,-44l182 -881c9,-33 29,-50 60,-50l161 0c39,0 55,19 46,59l-228 885c-9,31 -30,46 -64,46l-106 0z"/>
<path id="25" class="fil11" d="M170866 256045c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2853c0,37 -18,55 -55,55l-190 0z"/>
<path id="26" class="fil11" d="M172614 256079c-206,0 -382,-52 -527,-157 -146,-104 -246,-248 -303,-432 -39,-130 -59,-303 -59,-520 0,-215 18,-387 55,-517 56,-180 157,-323 303,-427 145,-105 322,-157 531,-157 203,0 377,52 523,157 145,104 245,245 298,423 40,135 59,309 59,521 0,217 -19,390 -59,520 -56,184 -157,328 -303,432 -145,105 -318,157 -518,157zm0 -263c135,0 251,-37 347,-112 96,-75 161,-176 195,-303 22,-90 34,-232 34,-427 0,-203 -12,-346 -34,-428 -31,-127 -96,-228 -193,-302 -97,-75 -216,-113 -358,-113 -135,0 -251,38 -347,113 -96,74 -161,175 -194,302 -23,82 -34,225 -34,428 0,203 11,346 34,427 31,127 95,228 192,303 98,75 217,112 358,112z"/>
<path id="27" class="fil11" d="M174472 256045c-31,0 -51,-16 -59,-47l-593 -2032c-2,-5 -4,-12 -4,-21 0,-11 5,-21 15,-29 10,-9 22,-13 36,-13l199 0c31,0 51,15 59,46l440 1651c3,9 7,13 13,13 6,0 10,-4 13,-13l453 -1651c8,-31 28,-46 59,-46l186 0c31,0 51,15 60,46l461 1651c3,9 7,13 13,13 5,0 10,-4 12,-13l453 -1651c9,-31 30,-46 64,-46l195 4c19,0 33,6 42,17 8,11 10,27 4,47l-601 2027c-8,31 -28,47 -59,47l-208 0c-31,0 -50,-16 -59,-47l-457 -1562c-3,-8 -7,-13 -13,-13 -5,0 -10,5 -13,13l-440 1562c-8,31 -28,47 -59,47l-212 0z"/>
<path id="28" class="fil11" d="M176881 254860c-37,0 -55,-19 -55,-56l0 -152c0,-37 18,-55 55,-55l1228 0c36,0 55,18 55,55l0 152c0,37 -19,56 -55,56l-1228 0z"/>
<path id="29" class="fil11" d="M119697 261379c-203,0 -377,-53 -522,-159 -146,-106 -245,-249 -299,-430 -37,-124 -55,-299 -55,-525 0,-203 18,-375 55,-516 51,-175 150,-315 296,-421 147,-106 322,-159 525,-159 206,0 385,52 536,157 151,104 249,234 294,389 11,40 20,78 26,114l0 9c0,31 -17,49 -51,55l-187 21 -12 0c-26,0 -43,-15 -51,-46 0,-12 -3,-29 -9,-51 -25,-108 -87,-199 -186,-273 -99,-75 -219,-113 -360,-113 -141,0 -259,38 -353,113 -95,74 -156,174 -184,298 -26,107 -38,250 -38,428 0,186 12,330 38,431 28,127 89,228 184,303 94,75 212,112 353,112 139,0 258,-36 358,-108 100,-72 162,-163 184,-273 3,-5 4,-12 4,-21l5 -4c3,-37 24,-52 63,-47l182 30c37,6 54,27 51,64l-17 71c-42,164 -140,297 -292,398 -152,102 -332,153 -538,153z"/>
<path id="30" class="fil11" d="M121899 261379c-206,0 -382,-52 -527,-157 -146,-104 -247,-248 -303,-432 -40,-129 -59,-303 -59,-520 0,-215 18,-387 55,-517 56,-180 157,-323 302,-427 146,-105 323,-157 532,-157 203,0 377,52 522,157 146,104 245,245 299,423 39,135 59,309 59,521 0,217 -20,391 -59,520 -57,184 -157,328 -303,432 -145,105 -318,157 -518,157zm0 -263c135,0 251,-37 347,-112 96,-75 161,-176 195,-303 22,-90 33,-232 33,-427 0,-203 -11,-346 -33,-428 -32,-127 -96,-228 -193,-302 -97,-75 -217,-113 -358,-113 -135,0 -251,38 -347,113 -96,74 -161,175 -195,302 -22,82 -34,225 -34,428 0,203 12,346 34,427 31,127 96,228 193,303 97,75 217,112 358,112z"/>
<path id="31" class="fil11" d="M124278 259173c223,0 401,67 535,199 134,133 201,311 201,534l0 1384c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -47,-286 -140,-383 -93,-98 -214,-146 -364,-146 -144,0 -263,41 -358,122 -94,82 -149,190 -163,322l0 1410c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 157c0,8 3,14 9,19 5,4 10,2 13,-7 124,-169 313,-254 567,-254z"/>
<path id="32" class="fil11" d="M126631 259398c0,36 -18,55 -55,55l-461 0c-14,0 -21,7 -21,21l0 1236c0,135 30,231 91,286 61,55 156,82 286,82l93 0c36,0 55,19 55,55l0 148c0,37 -19,57 -55,60l-144 0c-203,0 -357,-38 -462,-115 -104,-76 -156,-217 -156,-423l0 -1329c0,-14 -7,-21 -21,-21l-242 0c-36,0 -55,-19 -55,-55l0 -140c0,-37 19,-55 55,-55l242 0c14,0 21,-7 21,-21l0 -474c0,-37 18,-55 55,-55l182 0c36,0 55,18 55,55l0 474c0,14 7,21 21,21l461 0c37,0 55,18 55,55l0 140z"/>
<path id="33" class="fil11" d="M128075 259182c93,0 171,17 233,51 28,11 38,33 29,67l-42 187c-8,33 -31,45 -68,33 -53,-17 -122,-24 -207,-21 -147,6 -268,60 -364,163 -96,103 -144,234 -144,392l0 1236c0,37 -18,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -2032c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 237c0,11 2,18 6,19 5,1 10,-2 15,-11 59,-101 135,-180 227,-237 91,-56 196,-84 315,-84z"/>
<path id="34" class="fil11" d="M129485 259169c254,0 451,65 590,195 140,130 210,302 210,516l0 1410c0,37 -19,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -152c0,-9 -3,-15 -8,-17 -6,-3 -11,0 -17,8 -76,82 -172,144 -286,186 -114,43 -239,64 -375,64 -197,0 -363,-51 -497,-153 -134,-101 -201,-256 -201,-465 0,-212 77,-379 231,-502 154,-123 367,-184 641,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-144 -40,-257 -120,-341 -81,-83 -206,-125 -375,-125 -133,0 -241,26 -326,77 -85,50 -138,121 -161,211 -8,34 -29,48 -63,43l-208 -26c-36,-5 -53,-21 -51,-46 29,-155 115,-281 261,-377 145,-96 326,-144 544,-144zm-119 1952c167,0 311,-42 434,-125 123,-84 184,-196 184,-337l0 -326c0,-14 -7,-21 -21,-21l-444 0c-187,0 -336,38 -449,114 -113,77 -169,182 -169,318 0,124 43,218 131,281 87,64 199,96 334,96z"/>
<path id="35" class="fil11" d="M131610 261366c-158,0 -299,-25 -421,-76 -123,-51 -218,-119 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-37 18,-55 55,-55l182 0c17,0 30,3 40,11 10,7 15,16 15,27l0 38c0,93 48,174 144,244 95,69 217,103 364,103 146,0 265,-33 355,-99 91,-67 136,-150 136,-252 0,-71 -23,-128 -68,-174 -45,-45 -100,-80 -165,-105 -65,-26 -162,-58 -292,-98 -158,-45 -288,-90 -390,-135 -101,-45 -187,-108 -258,-189 -71,-80 -106,-182 -106,-307 0,-180 71,-324 214,-431 143,-108 329,-161 561,-161 155,0 293,25 413,76 120,51 212,121 277,209 65,89 97,189 97,299 0,37 -18,55 -55,55l-173 0c-37,0 -55,-10 -55,-30l0 -25c0,-96 -46,-176 -138,-241 -92,-65 -215,-98 -370,-98 -144,0 -260,29 -347,87 -88,58 -132,138 -132,239 0,96 42,170 125,220 83,51 214,102 392,153 163,45 296,89 398,131 101,42 189,104 262,186 74,82 110,188 110,318 0,183 -71,330 -214,440 -142,110 -333,165 -573,165z"/>
<path id="36" class="fil11" d="M133904 259398c0,36 -18,55 -55,55l-461 0c-14,0 -21,7 -21,21l0 1236c0,135 30,231 91,286 60,55 156,82 285,82l94 0c36,0 55,19 55,55l0 148c0,37 -19,57 -55,60l-144 0c-204,0 -357,-38 -462,-115 -104,-76 -156,-217 -156,-423l0 -1329c0,-14 -8,-21 -22,-21l-241 0c-37,0 -55,-19 -55,-55l0 -140c0,-37 18,-55 55,-55l241 0c14,0 22,-7 22,-21l0 -474c0,-37 18,-55 55,-55l182 0c36,0 55,18 55,55l0 474c0,14 7,21 21,21l461 0c37,0 55,18 55,55l0 140z"/>
<path id="37" class="fil11" d="M134484 261679c-20,0 -34,-5 -42,-14 -9,-10 -11,-25 -9,-45l182 -880c9,-34 29,-51 60,-51l161 0c39,0 55,20 46,59l-228 885c-9,31 -30,46 -64,46l-106 0z"/>
<path id="38" class="fil11" d="M137769 259258c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 2015c0,316 -92,547 -275,694 -184,147 -434,220 -750,220 -59,0 -104,-1 -135,-4 -37,-3 -55,-22 -55,-59l8 -169c0,-40 19,-57 55,-51 300,14 516,-30 650,-131 134,-102 201,-271 201,-508l0 -149c0,-8 -3,-14 -8,-17 -6,-2 -11,0 -17,9 -130,166 -313,250 -550,250 -184,0 -347,-50 -489,-149 -143,-98 -238,-238 -286,-419 -34,-115 -51,-287 -51,-516 0,-124 4,-229 11,-313 7,-85 22,-161 44,-229 51,-169 143,-305 275,-408 133,-103 292,-155 479,-155 245,0 434,80 567,241 6,9 11,12 17,9 5,-3 8,-9 8,-17l0 -144zm-21 1439c9,-42 14,-94 17,-156 3,-62 4,-153 4,-271 0,-144 -1,-241 -4,-290 -3,-50 -10,-96 -21,-138 -23,-118 -78,-216 -167,-294 -89,-78 -201,-117 -337,-117 -133,0 -245,39 -336,115 -92,76 -156,175 -193,296 -28,90 -42,232 -42,423 0,206 14,349 42,428 28,119 90,217 184,294 95,78 210,117 345,117 138,0 252,-38 341,-115 89,-76 145,-173 167,-292z"/>
<path id="39" class="fil11" d="M139577 259182c93,0 171,17 233,51 28,11 38,33 29,67l-42 187c-8,33 -31,45 -68,33 -53,-17 -122,-24 -207,-21 -147,6 -268,60 -364,163 -96,103 -144,234 -144,392l0 1236c0,37 -18,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -2032c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 237c0,11 2,18 6,19 4,1 9,-2 15,-11 59,-101 135,-180 227,-237 91,-56 196,-84 315,-84z"/>
<path id="40" class="fil11" d="M141054 261379c-206,0 -381,-52 -527,-157 -145,-104 -246,-248 -302,-432 -40,-129 -60,-303 -60,-520 0,-215 19,-387 55,-517 57,-180 158,-323 303,-427 145,-105 323,-157 531,-157 204,0 378,52 523,157 146,104 245,245 299,423 39,135 59,309 59,521 0,217 -20,391 -59,520 -57,184 -158,328 -303,432 -145,105 -318,157 -519,157zm0 -263c136,0 252,-37 348,-112 95,-75 160,-176 194,-303 23,-90 34,-232 34,-427 0,-203 -11,-346 -34,-428 -31,-127 -95,-228 -192,-302 -98,-75 -217,-113 -358,-113 -136,0 -251,38 -347,113 -96,74 -161,175 -195,302 -23,82 -34,225 -34,428 0,203 11,346 34,427 31,127 95,228 193,303 97,75 216,112 357,112z"/>
<path id="41" class="fil11" d="M143480 259398c0,36 -18,55 -55,55l-461 0c-15,0 -22,7 -22,21l0 1236c0,135 31,231 91,286 61,55 156,82 286,82l93 0c37,0 55,19 55,55l0 148c0,37 -18,57 -55,60l-144 0c-203,0 -357,-38 -461,-115 -104,-76 -157,-217 -157,-423l0 -1329c0,-14 -7,-21 -21,-21l-241 0c-37,0 -55,-19 -55,-55l0 -140c0,-37 18,-55 55,-55l241 0c14,0 21,-7 21,-21l0 -474c0,-37 19,-55 55,-55l182 0c37,0 55,18 55,55l0 474c0,14 7,21 22,21l461 0c37,0 55,18 55,55l0 140z"/>
<path id="42" class="fil11" d="M144830 261121c127,-3 237,-32 329,-87 91,-55 163,-132 213,-231 6,-14 16,-24 30,-30 14,-5 28,-4 42,5l123 67c34,20 42,44 25,72 -67,141 -169,254 -304,337 -136,83 -297,125 -483,125 -197,0 -364,-47 -499,-140 -136,-93 -233,-223 -293,-389 -53,-141 -80,-336 -80,-585 0,-121 2,-218 6,-290 5,-71 15,-139 32,-201 48,-183 145,-330 290,-440 145,-110 321,-165 527,-165 246,0 438,64 578,191 140,127 229,306 269,537 17,90 25,232 25,423 0,37 -18,56 -55,56l-1354 0c-15,0 -22,7 -22,21 0,141 9,244 26,309 31,127 96,228 197,302 100,75 226,113 378,113zm-42 -1690c-141,0 -257,36 -347,108 -90,72 -150,169 -178,290 -17,57 -28,153 -34,288 0,14 7,21 22,21l1087 0c15,0 22,-7 22,-21 -6,-124 -14,-214 -26,-271 -31,-127 -94,-228 -188,-302 -95,-75 -214,-113 -358,-113z"/>
<path id="43" class="fil11" d="M146960 261366c-158,0 -299,-25 -421,-76 -123,-51 -218,-119 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-37 18,-55 55,-55l182 0c17,0 30,3 40,11 10,7 15,16 15,27l0 38c0,93 48,174 144,244 95,69 217,103 364,103 146,0 265,-33 355,-99 91,-67 136,-150 136,-252 0,-71 -23,-128 -68,-174 -45,-45 -100,-80 -165,-105 -65,-26 -162,-58 -292,-98 -158,-45 -288,-90 -390,-135 -101,-45 -187,-108 -258,-189 -71,-80 -106,-182 -106,-307 0,-180 71,-324 214,-431 143,-108 329,-161 561,-161 155,0 293,25 413,76 120,51 212,121 277,209 65,89 97,189 97,299 0,37 -18,55 -55,55l-173 0c-37,0 -55,-10 -55,-30l0 -25c0,-96 -46,-176 -138,-241 -92,-65 -215,-98 -370,-98 -144,0 -260,29 -347,87 -88,58 -132,138 -132,239 0,96 42,170 125,220 83,51 214,102 392,153 163,45 296,89 398,131 101,42 189,104 262,186 74,82 110,188 110,318 0,183 -71,330 -214,440 -142,110 -333,165 -573,165z"/>
<path id="44" class="fil11" d="M148353 261345c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 1710c0,8 3,15 9,19 5,4 11,2 17,-6l884 -927c17,-20 40,-30 68,-30l224 0c31,0 47,11 47,34 0,8 -4,20 -13,34l-525 580c-8,8 -10,18 -4,29l635 1401c6,12 9,20 9,26 0,25 -17,38 -51,38l-199 0c-28,0 -50,-14 -64,-42l-537 -1224c-3,-5 -7,-9 -13,-10 -6,-2 -11,0 -17,6l-461 483c-6,11 -9,21 -9,29l0 703c0,37 -18,55 -55,55l-190 0z"/>
<path id="45" class="fil11" d="M152226 259398c0,36 -18,55 -55,55l-461 0c-14,0 -21,7 -21,21l0 1236c0,135 30,231 91,286 60,55 155,82 285,82l93 0c37,0 55,19 55,55l0 148c0,37 -18,57 -55,60l-143 0c-204,0 -358,-38 -462,-115 -104,-76 -157,-217 -157,-423l0 -1329c0,-14 -7,-21 -21,-21l-241 0c-37,0 -55,-19 -55,-55l0 -140c0,-37 18,-55 55,-55l241 0c14,0 21,-7 21,-21l0 -474c0,-37 19,-55 55,-55l183 0c36,0 55,18 55,55l0 474c0,14 7,21 21,21l461 0c37,0 55,18 55,55l0 140z"/>
<path id="46" class="fil11" d="M152709 262192c-20,0 -30,-19 -30,-55l0 -149c0,-36 10,-55 30,-55l29 0c110,0 196,-15 256,-46 61,-31 113,-86 157,-165 44,-79 91,-201 142,-364 3,-6 3,-14 0,-26l-711 -2066c-3,-5 -4,-12 -4,-21 0,-11 4,-21 14,-29 10,-9 22,-13 36,-13l199 0c34,0 55,15 64,46l546 1660c3,11 7,17 13,17 5,0 9,-6 12,-17l534 -1660c8,-31 28,-46 59,-46l203 0c20,0 34,6 42,17 9,11 10,27 5,46l-779 2265c-68,189 -131,329 -191,419 -59,91 -133,153 -222,189 -89,35 -214,53 -375,53l-29 0z"/>
<path id="47" class="fil11" d="M156421 259736c40,127 60,307 60,538 0,234 -17,409 -51,525 -51,180 -144,322 -280,425 -135,103 -303,155 -503,155 -110,0 -212,-22 -305,-66 -93,-44 -171,-106 -233,-188 -6,-9 -11,-11 -17,-9 -5,3 -8,9 -8,17l0 978c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 161c0,8 3,13 8,15 6,1 11,-1 17,-7 62,-82 139,-145 231,-190 92,-45 194,-68 307,-68 197,0 363,51 497,152 134,102 227,240 277,415zm-338 1071c34,-62 58,-132 74,-209 15,-78 23,-186 23,-324 0,-133 -6,-236 -17,-311 -11,-75 -31,-142 -59,-201 -34,-102 -94,-182 -180,-242 -86,-59 -188,-89 -307,-89 -113,0 -207,30 -284,89 -76,60 -132,139 -169,237 -25,57 -44,123 -55,199 -11,77 -17,182 -17,318 0,135 6,242 17,320 11,77 31,146 59,205 34,96 90,173 168,231 77,57 170,86 277,86 113,0 210,-28 292,-84 82,-57 141,-132 178,-225z"/>
<path id="48" class="fil11" d="M157911 261121c127,-3 237,-32 329,-87 91,-55 163,-132 213,-231 6,-14 16,-24 30,-30 14,-5 28,-4 42,5l123 67c34,20 42,44 25,72 -67,141 -169,254 -304,337 -136,83 -297,125 -483,125 -197,0 -364,-47 -499,-140 -136,-93 -233,-223 -293,-389 -53,-141 -80,-336 -80,-585 0,-121 2,-218 6,-290 5,-71 15,-139 32,-201 48,-183 145,-330 290,-440 145,-110 321,-165 527,-165 246,0 438,64 578,191 140,127 229,306 269,537 17,90 25,232 25,423 0,37 -18,56 -55,56l-1354 0c-15,0 -22,7 -22,21 0,141 9,244 26,309 31,127 96,228 197,302 100,75 226,113 378,113zm-42 -1690c-141,0 -257,36 -347,108 -90,72 -150,169 -178,290 -17,57 -28,153 -34,288 0,14 7,21 22,21l1087 0c15,0 22,-7 22,-21 -6,-124 -14,-214 -26,-271 -31,-127 -94,-228 -188,-302 -95,-75 -214,-113 -358,-113z"/>
<path id="49" class="fil11" d="M161031 258644c-155,0 -261,35 -317,104 -56,69 -85,187 -85,353l0 81c0,14 7,21 21,21l458 0c36,0 55,18 55,55l0 165c0,37 -19,55 -55,55l-458 0c-14,0 -21,7 -21,21l0 1791c0,37 -18,55 -55,55l-186 0c-37,0 -55,-18 -55,-55l0 -1791c0,-14 -7,-21 -21,-21l-267 0c-37,0 -55,-18 -55,-55l0 -165c0,-37 18,-55 55,-55l267 0c14,0 21,-7 21,-21l0 -98c0,-175 20,-312 59,-412 40,-101 108,-174 206,-221 97,-46 233,-69 408,-69l110 0c37,0 55,18 55,55l0 152c0,37 -18,55 -55,55l-85 0z"/>
<path id="50" class="fil11" d="M162357 259169c254,0 450,65 590,195 140,130 210,302 210,516l0 1410c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -152c0,-9 -3,-15 -8,-17 -6,-3 -12,0 -17,8 -77,82 -172,144 -286,186 -114,43 -239,64 -375,64 -197,0 -363,-51 -497,-153 -134,-101 -201,-256 -201,-465 0,-212 77,-379 230,-502 154,-123 368,-184 642,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-144 -40,-257 -121,-341 -80,-83 -205,-125 -374,-125 -133,0 -242,26 -326,77 -85,50 -138,121 -161,211 -9,34 -30,48 -64,43l-207 -26c-37,-5 -54,-21 -51,-46 28,-155 115,-281 261,-377 145,-96 326,-144 544,-144zm-119 1952c167,0 311,-42 434,-125 123,-84 184,-196 184,-337l0 -326c0,-14 -7,-21 -21,-21l-445 0c-186,0 -335,38 -448,114 -113,77 -170,182 -170,318 0,124 44,218 132,281 87,64 199,96 334,96z"/>
<path id="51" class="fil11" d="M165946 259173c212,0 379,64 502,191 123,127 184,300 184,520l0 1406c0,37 -18,55 -55,55l-186 0c-37,0 -55,-18 -55,-55l0 -1346c0,-155 -45,-279 -134,-371 -88,-91 -205,-137 -349,-137 -149,0 -270,45 -362,135 -91,91 -137,212 -137,364l0 1355c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -1346c0,-155 -44,-279 -131,-371 -88,-91 -205,-137 -351,-137 -150,0 -269,45 -358,135 -89,91 -134,212 -134,364l0 1355c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 148c0,9 3,14 9,17 6,3 11,0 17,-8 62,-82 141,-143 237,-182 96,-40 203,-60 322,-60 144,0 268,30 372,89 105,59 184,143 237,250 9,17 17,18 26,4 62,-116 149,-202 262,-258 113,-57 241,-85 385,-85z"/>
<path id="52" class="fil11" d="M167462 258818c-68,0 -123,-21 -165,-62 -43,-41 -64,-94 -64,-158 0,-65 21,-118 64,-157 42,-40 97,-59 165,-59 68,0 123,19 165,59 42,39 63,92 63,157 0,64 -21,117 -63,158 -42,41 -97,62 -165,62zm-93 2527c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2032c0,37 -18,55 -55,55l-190 0z"/>
<path id="53" class="fil11" d="M168372 261345c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 2853c0,37 -19,55 -55,55l-191 0z"/>
<path id="54" class="fil11" d="M169202 262192c-20,0 -30,-19 -30,-55l0 -149c0,-36 10,-55 30,-55l29 0c110,0 196,-15 256,-46 61,-31 113,-86 157,-165 44,-79 91,-201 142,-364 3,-6 3,-14 0,-26l-711 -2066c-3,-5 -4,-12 -4,-21 0,-11 4,-21 14,-29 10,-9 22,-13 36,-13l199 0c34,0 55,15 64,46l546 1660c3,11 7,17 13,17 5,0 9,-6 12,-17l534 -1660c8,-31 28,-46 59,-46l203 0c20,0 34,6 42,17 9,11 10,27 5,46l-779 2265c-68,189 -131,329 -191,419 -59,91 -133,153 -222,189 -89,35 -214,53 -375,53l-29 0z"/>
<path id="55" class="fil11" d="M171297 261332c-76,0 -139,-24 -188,-72 -50,-48 -74,-107 -74,-178 0,-67 26,-126 78,-175 52,-50 114,-74 184,-74 68,0 129,24 182,74 54,49 81,108 81,175 0,71 -26,130 -76,178 -51,48 -113,72 -187,72z"/>
<path id="56" class="fil11" d="M173185 261345c-36,0 -55,-18 -55,-55l0 -2853c0,-37 19,-55 55,-55l987 0c279,0 501,73 666,220 166,147 248,345 248,597l0 1329c0,251 -82,450 -248,597 -165,147 -387,220 -666,220l-987 0zm246 -284c0,14 7,21 21,21l732 0c184,0 330,-53 439,-160 108,-108 163,-252 163,-432l0 -1249c0,-183 -54,-329 -161,-436 -108,-107 -254,-161 -441,-161l-732 0c-14,0 -21,7 -21,21l0 2396z"/>
<path id="57" class="fil11" d="M176551 259182c93,0 171,17 233,51 28,11 38,33 29,67l-42 187c-9,33 -31,45 -68,33 -53,-17 -123,-24 -207,-21 -147,6 -268,60 -364,163 -96,103 -144,234 -144,392l0 1236c0,37 -19,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -2032c0,-37 19,-55 55,-55l191 0c36,0 55,18 55,55l0 237c0,11 2,18 6,19 4,1 9,-2 15,-11 59,-101 135,-180 226,-237 92,-56 197,-84 316,-84z"/>
<path id="58" class="fil11" d="M177961 259169c254,0 450,65 590,195 140,130 210,302 210,516l0 1410c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -152c0,-9 -3,-15 -8,-17 -6,-3 -12,0 -17,8 -77,82 -172,144 -286,186 -114,43 -239,64 -375,64 -197,0 -363,-51 -497,-153 -134,-101 -201,-256 -201,-465 0,-212 77,-379 230,-502 154,-123 368,-184 642,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-144 -40,-257 -121,-341 -80,-83 -205,-125 -374,-125 -133,0 -242,26 -326,77 -85,50 -138,121 -161,211 -9,34 -30,48 -64,43l-207 -26c-37,-5 -54,-21 -51,-46 28,-155 115,-281 261,-377 145,-96 326,-144 544,-144zm-119 1952c167,0 311,-42 434,-125 123,-84 184,-196 184,-337l0 -326c0,-14 -7,-21 -21,-21l-445 0c-186,0 -335,38 -448,114 -113,77 -170,182 -170,318 0,124 44,218 132,281 87,64 199,96 334,96z"/>
<path id="59" class="fil11" d="M179810 261345c-31,0 -50,-16 -59,-47l-592 -2032c-3,-5 -5,-12 -5,-21 0,-11 5,-21 15,-29 10,-9 22,-13 36,-13l199 0c31,0 51,15 59,46l441 1651c2,9 7,13 12,13 6,0 10,-4 13,-13l453 -1651c8,-31 28,-46 59,-46l187 0c31,0 50,15 59,46l461 1651c3,9 7,13 13,13 6,0 10,-4 13,-13l453 -1651c8,-31 29,-46 63,-46l195 4c20,0 34,6 42,17 9,11 10,27 4,47l-601 2027c-8,31 -28,47 -59,47l-207 0c-32,0 -51,-16 -60,-47l-457 -1562c-3,-8 -7,-12 -13,-12 -5,0 -10,4 -12,12l-441 1562c-8,31 -28,47 -59,47l-212 0z"/>
<path id="60" class="fil11" d="M182592 258818c-68,0 -123,-21 -165,-62 -43,-41 -64,-94 -64,-158 0,-65 21,-118 64,-157 42,-40 97,-59 165,-59 67,0 123,19 165,59 42,39 63,92 63,157 0,64 -21,117 -63,158 -42,41 -98,62 -165,62zm-93 2527c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2032c0,37 -18,55 -55,55l-190 0z"/>
<path id="61" class="fil11" d="M184336 259173c223,0 401,67 535,199 134,133 202,311 202,534l0 1384c0,37 -19,55 -56,55l-190 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -47,-286 -140,-383 -93,-98 -214,-146 -364,-146 -144,0 -263,41 -358,122 -94,82 -148,190 -163,322l0 1410c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 157c0,8 3,14 9,19 6,4 10,2 13,-7 124,-169 313,-254 567,-254z"/>
<path id="62" class="fil11" d="M187049 259258c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 2015c0,316 -92,547 -275,694 -184,147 -433,220 -749,220 -60,0 -105,-1 -136,-4 -37,-3 -55,-22 -55,-59l8 -169c0,-40 19,-57 56,-51 299,14 515,-30 649,-131 134,-102 201,-271 201,-508l0 -149c0,-8 -2,-14 -8,-17 -6,-2 -11,0 -17,9 -130,166 -313,250 -550,250 -184,0 -347,-50 -489,-149 -143,-98 -238,-238 -286,-419 -34,-115 -51,-287 -51,-516 0,-124 4,-229 11,-313 7,-85 22,-161 44,-229 51,-169 143,-305 275,-408 133,-103 292,-155 479,-155 245,0 434,80 567,241 6,9 11,12 17,9 6,-3 8,-9 8,-17l0 -144zm-21 1439c9,-42 14,-94 17,-156 3,-62 4,-153 4,-271 0,-144 -1,-241 -4,-290 -3,-50 -10,-96 -21,-138 -23,-118 -78,-216 -167,-294 -89,-78 -201,-117 -337,-117 -132,0 -245,39 -336,115 -92,76 -156,175 -193,296 -28,90 -42,232 -42,423 0,206 14,349 42,428 28,119 90,217 184,294 95,78 210,117 345,117 139,0 252,-38 341,-115 89,-76 145,-173 167,-292z"/>
<path id="63" class="fil11" d="M119735 263944c-155,0 -261,35 -317,104 -56,69 -85,187 -85,353l0 81c0,14 7,21 21,21l458 0c36,0 55,18 55,55l0 165c0,37 -19,55 -55,55l-458 0c-14,0 -21,7 -21,21l0 1791c0,37 -18,55 -55,55l-186 0c-37,0 -55,-18 -55,-55l0 -1791c0,-14 -7,-21 -21,-21l-267 0c-37,0 -55,-18 -55,-55l0 -165c0,-37 18,-55 55,-55l267 0c14,0 21,-7 21,-21l0 -98c0,-175 20,-312 59,-412 40,-100 108,-174 206,-220 97,-47 233,-70 408,-70l110 0c37,0 55,18 55,55l0 152c0,37 -18,55 -55,55l-85 0z"/>
<path id="64" class="fil11" d="M121260 264482c93,0 170,17 232,51 29,11 38,33 30,67l-42 187c-9,33 -31,45 -68,33 -54,-16 -123,-23 -208,-21 -146,6 -268,60 -364,163 -96,103 -144,234 -144,392l0 1236c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 237c0,11 3,18 7,19 4,2 9,-2 15,-10 59,-102 134,-181 226,-238 92,-56 197,-84 316,-84z"/>
<path id="65" class="fil11" d="M122737 266679c-206,0 -382,-52 -527,-157 -145,-104 -246,-248 -303,-432 -39,-129 -59,-303 -59,-520 0,-215 18,-387 55,-517 56,-180 157,-323 303,-427 145,-105 322,-157 531,-157 203,0 377,52 523,157 145,104 245,245 298,423 40,136 60,309 60,521 0,217 -20,391 -60,520 -56,184 -157,328 -302,432 -146,105 -319,157 -519,157zm0 -263c135,0 251,-37 347,-112 96,-75 161,-175 195,-302 22,-91 34,-233 34,-428 0,-203 -12,-346 -34,-428 -31,-127 -95,-227 -193,-302 -97,-75 -216,-112 -357,-112 -136,0 -252,37 -348,112 -96,75 -160,175 -194,302 -23,82 -34,225 -34,428 0,203 11,346 34,428 31,127 95,227 192,302 98,75 217,112 358,112z"/>
<path id="66" class="fil11" d="M126395 264473c211,0 378,64 501,191 123,127 184,300 184,521l0 1405c0,37 -18,55 -55,55l-186 0c-37,0 -55,-18 -55,-55l0 -1346c0,-155 -44,-279 -133,-371 -89,-91 -206,-137 -350,-137 -149,0 -270,45 -362,135 -91,91 -137,212 -137,364l0 1355c0,37 -18,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -1346c0,-155 -43,-279 -131,-371 -87,-91 -205,-137 -351,-137 -150,0 -269,45 -358,135 -89,91 -133,212 -133,364l0 1355c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 148c0,9 3,14 8,17 6,3 11,0 17,-8 62,-82 141,-143 237,-182 96,-40 203,-60 322,-60 144,0 268,30 372,89 105,60 184,143 237,250 9,17 17,18 26,4 62,-115 149,-202 262,-258 113,-56 242,-85 386,-85z"/>
<path id="67" class="fil11" d="M129536 264698c0,36 -19,55 -55,55l-462 0c-14,0 -21,7 -21,21l0 1236c0,136 30,231 91,286 61,55 156,82 286,82l93 0c37,0 55,19 55,55l0 149c0,36 -18,56 -55,59l-144 0c-203,0 -357,-38 -461,-114 -105,-77 -157,-218 -157,-424l0 -1329c0,-14 -7,-21 -21,-21l-242 0c-36,0 -55,-19 -55,-55l0 -140c0,-37 19,-55 55,-55l242 0c14,0 21,-7 21,-21l0 -474c0,-37 18,-55 55,-55l182 0c37,0 55,18 55,55l0 474c0,14 7,21 21,21l462 0c36,0 55,18 55,55l0 140z"/>
<path id="68" class="fil11" d="M131005 264473c223,0 401,67 535,199 134,133 201,311 201,534l0 1384c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -47,-286 -140,-383 -93,-97 -215,-146 -364,-146 -144,0 -263,41 -358,123 -94,81 -149,189 -163,321l0 1410c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 978c0,8 3,14 9,19 5,4 10,2 12,-7 125,-169 314,-254 568,-254z"/>
<path id="69" class="fil11" d="M133231 266421c127,-3 237,-32 328,-87 92,-55 163,-132 214,-231 6,-14 16,-24 30,-29 14,-6 28,-5 42,4l123 68c34,19 42,43 25,71 -67,142 -169,254 -305,337 -135,83 -296,125 -482,125 -198,0 -364,-47 -500,-140 -135,-93 -232,-223 -292,-389 -53,-141 -80,-336 -80,-584 0,-122 2,-218 6,-290 4,-72 15,-139 32,-202 48,-183 145,-330 290,-440 145,-110 321,-165 527,-165 245,0 438,64 578,191 139,127 229,306 269,537 17,91 25,232 25,424 0,36 -18,55 -55,55l-1355 0c-14,0 -21,7 -21,21 0,141 9,244 26,309 31,127 96,228 196,303 101,74 227,112 379,112zm-42 -1689c-141,0 -257,36 -347,108 -90,72 -150,168 -178,290 -17,56 -28,152 -34,287 0,15 7,22 21,22l1088 0c14,0 21,-7 21,-22 -5,-124 -14,-214 -25,-271 -31,-127 -94,-227 -188,-302 -95,-75 -214,-112 -358,-112z"/>
<path id="70" class="fil11" d="M136059 266645c-34,0 -55,-15 -63,-47l-686 -2032c-3,-5 -4,-12 -4,-21 0,-11 5,-21 14,-29 10,-9 22,-13 36,-13l216 0c31,0 51,16 60,47l529 1646c3,12 7,17 12,17 6,0 10,-5 13,-17l529 -1646c9,-31 29,-47 60,-47l216 4c19,0 33,6 40,17 7,11 7,27 2,47l-682 2027c-8,32 -29,47 -63,47l-229 0z"/>
<path id="71" class="fil11" d="M137697 264118c-67,0 -122,-21 -165,-62 -42,-41 -63,-93 -63,-158 0,-65 21,-117 63,-157 43,-40 98,-59 165,-59 68,0 123,19 166,59 42,40 63,92 63,157 0,65 -21,117 -63,158 -43,41 -98,62 -166,62zm-93 2527c-36,0 -55,-18 -55,-55l0 -2032c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 2032c0,37 -18,55 -55,55l-191 0z"/>
<path id="72" class="fil11" d="M139255 266666c-158,0 -298,-25 -421,-76 -123,-51 -217,-119 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-37 18,-55 55,-55l182 0c17,0 30,4 40,11 10,7 15,16 15,27l0 38c0,93 48,175 144,244 96,69 217,103 364,103 147,0 265,-33 356,-99 90,-66 135,-150 135,-252 0,-71 -22,-128 -68,-174 -45,-45 -100,-80 -165,-105 -65,-26 -162,-58 -292,-98 -158,-45 -288,-90 -389,-135 -102,-45 -188,-108 -258,-189 -71,-80 -106,-182 -106,-307 0,-180 71,-324 213,-431 143,-108 330,-161 561,-161 156,0 293,25 413,76 120,51 213,121 277,210 65,88 98,188 98,298 0,37 -19,55 -55,55l-174 0c-36,0 -55,-10 -55,-30l0 -25c0,-96 -46,-176 -137,-241 -92,-65 -216,-98 -371,-98 -144,0 -259,29 -347,87 -87,58 -131,138 -131,239 0,96 41,170 125,220 83,51 213,102 391,153 164,45 297,89 398,131 102,42 189,105 263,186 73,82 110,188 110,318 0,183 -72,330 -214,440 -143,110 -334,165 -574,165z"/>
<path id="73" class="fil11" d="M141889 264558c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2032c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -161c0,-8 -3,-14 -9,-17 -6,-3 -11,0 -17,9 -121,169 -308,254 -559,254 -135,0 -260,-28 -374,-83 -115,-55 -205,-135 -271,-239 -67,-104 -100,-230 -100,-377l0 -1418c0,-37 19,-55 55,-55l191 0c36,0 55,18 55,55l0 1329c0,161 45,289 135,383 91,95 213,142 369,142 160,0 288,-48 383,-144 94,-96 142,-223 142,-381l0 -1329z"/>
<path id="74" class="fil11" d="M143603 264469c254,0 451,65 590,195 140,130 210,302 210,516l0 1410c0,37 -18,55 -55,55l-190 0c-37,0 -56,-18 -56,-55l0 -152c0,-9 -2,-14 -8,-17 -6,-3 -11,0 -17,8 -76,82 -171,144 -286,186 -114,43 -239,64 -374,64 -198,0 -364,-51 -498,-152 -134,-102 -201,-257 -201,-466 0,-212 77,-379 231,-502 154,-123 367,-184 641,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-144 -40,-257 -120,-341 -81,-83 -205,-124 -375,-124 -132,0 -241,25 -326,76 -84,51 -138,121 -161,211 -8,34 -29,48 -63,43l-208 -26c-36,-5 -53,-21 -50,-46 28,-155 115,-281 260,-377 145,-96 327,-144 544,-144zm-119 1952c167,0 312,-42 434,-125 123,-83 184,-196 184,-337l0 -326c0,-14 -7,-21 -21,-21l-444 0c-186,0 -336,38 -449,114 -113,77 -169,182 -169,318 0,124 43,218 131,281 87,64 199,96 334,96z"/>
<path id="75" class="fil11" d="M145080 266645c-36,0 -55,-18 -55,-55l0 -2853c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 2853c0,37 -18,55 -55,55l-191 0z"/>
<path id="76" class="fil11" d="M147557 266666c-158,0 -299,-25 -421,-76 -123,-51 -218,-119 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-37 18,-55 55,-55l182 0c17,0 30,4 40,11 10,7 15,16 15,27l0 38c0,93 48,175 144,244 95,69 217,103 364,103 146,0 265,-33 355,-99 91,-66 136,-150 136,-252 0,-71 -23,-128 -68,-174 -45,-45 -100,-80 -165,-105 -65,-26 -162,-58 -292,-98 -158,-45 -288,-90 -390,-135 -101,-45 -187,-108 -258,-189 -71,-80 -106,-182 -106,-307 0,-180 71,-324 214,-431 143,-108 329,-161 561,-161 155,0 293,25 413,76 120,51 212,121 277,210 65,88 97,188 97,298 0,37 -18,55 -55,55l-173 0c-37,0 -55,-10 -55,-30l0 -25c0,-96 -46,-176 -138,-241 -92,-65 -215,-98 -370,-98 -144,0 -260,29 -347,87 -88,58 -132,138 -132,239 0,96 42,170 125,220 83,51 214,102 392,153 163,45 296,89 398,131 101,42 189,105 262,186 74,82 110,188 110,318 0,183 -71,330 -214,440 -142,110 -333,165 -573,165z"/>
<path id="77" class="fil11" d="M149851 264698c0,36 -18,55 -55,55l-461 0c-14,0 -21,7 -21,21l0 1236c0,136 30,231 91,286 60,55 156,82 285,82l94 0c36,0 55,19 55,55l0 149c0,36 -19,56 -55,59l-144 0c-204,0 -357,-38 -462,-114 -104,-77 -156,-218 -156,-424l0 -1329c0,-14 -8,-21 -22,-21l-241 0c-37,0 -55,-19 -55,-55l0 -140c0,-37 18,-55 55,-55l241 0c14,0 22,-7 22,-21l0 -474c0,-37 18,-55 55,-55l182 0c36,0 55,18 55,55l0 474c0,14 7,21 21,21l461 0c37,0 55,18 55,55l0 140z"/>
<path id="78" class="fil11" d="M150334 267492c-20,0 -30,-19 -30,-55l0 -148c0,-37 10,-56 30,-56l29 0c111,0 196,-15 257,-46 60,-31 112,-86 156,-165 44,-79 91,-201 142,-364 3,-6 3,-14 0,-26l-711 -2066c-3,-5 -4,-12 -4,-21 0,-11 5,-21 14,-29 10,-9 22,-13 36,-13l199 0c34,0 55,16 64,47l546 1659c3,11 7,17 13,17 5,0 10,-6 12,-17l534 -1659c8,-31 28,-47 59,-47l203 0c20,0 34,6 43,17 8,11 9,27 4,46l-779 2265c-68,189 -131,329 -191,419 -59,91 -133,154 -222,189 -89,35 -214,53 -375,53l-29 0z"/>
<path id="79" class="fil11" d="M152442 266645c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 2853c0,37 -19,55 -55,55l-191 0z"/>
<path id="80" class="fil11" d="M154203 266421c127,-3 236,-32 328,-87 92,-55 163,-132 214,-231 6,-14 15,-24 30,-29 14,-6 28,-5 42,4l123 68c34,19 42,43 25,71 -68,142 -169,254 -305,337 -135,83 -296,125 -482,125 -198,0 -364,-47 -500,-140 -135,-93 -233,-223 -292,-389 -54,-141 -80,-336 -80,-584 0,-122 2,-218 6,-290 4,-72 15,-139 32,-202 48,-183 144,-330 290,-440 145,-110 321,-165 527,-165 245,0 438,64 578,191 139,127 229,306 268,537 17,91 26,232 26,424 0,36 -19,55 -55,55l-1355 0c-14,0 -21,7 -21,21 0,141 8,244 25,309 31,127 97,228 197,303 100,74 227,112 379,112zm-42 -1689c-141,0 -257,36 -347,108 -91,72 -150,168 -178,290 -17,56 -28,152 -34,287 0,15 7,22 21,22l1088 0c14,0 21,-7 21,-22 -5,-124 -14,-214 -25,-271 -31,-127 -94,-227 -189,-302 -94,-75 -213,-112 -357,-112z"/>
<path id="81" class="fil11" d="M157298 266679c-206,0 -382,-52 -527,-157 -146,-104 -247,-248 -303,-432 -40,-129 -59,-303 -59,-520 0,-215 18,-387 55,-517 56,-180 157,-323 302,-427 146,-105 323,-157 532,-157 203,0 377,52 522,157 146,104 245,245 299,423 39,136 59,309 59,521 0,217 -20,391 -59,520 -57,184 -157,328 -303,432 -145,105 -318,157 -518,157zm0 -263c135,0 251,-37 347,-112 96,-75 161,-175 195,-302 22,-91 33,-233 33,-428 0,-203 -11,-346 -33,-428 -32,-127 -96,-227 -193,-302 -97,-75 -217,-112 -358,-112 -135,0 -251,37 -347,112 -96,75 -161,175 -195,302 -22,82 -34,225 -34,428 0,203 12,346 34,428 31,127 96,227 193,302 97,75 217,112 358,112z"/>
<path id="82" class="fil11" d="M159609 263944c-155,0 -261,35 -317,104 -57,69 -85,187 -85,353l0 81c0,14 7,21 21,21l457 0c37,0 55,18 55,55l0 165c0,37 -18,55 -55,55l-457 0c-14,0 -21,7 -21,21l0 1791c0,37 -18,55 -55,55l-186 0c-37,0 -55,-18 -55,-55l0 -1791c0,-14 -7,-21 -22,-21l-266 0c-37,0 -55,-18 -55,-55l0 -165c0,-37 18,-55 55,-55l266 0c15,0 22,-7 22,-21l0 -98c0,-175 19,-312 59,-412 39,-100 108,-174 205,-220 98,-47 234,-70 409,-70l110 0c36,0 55,18 55,55l0 152c0,37 -19,55 -55,55l-85 0z"/>
<path id="83" class="fil11" d="M162077 264698c0,36 -18,55 -55,55l-461 0c-14,0 -21,7 -21,21l0 1236c0,136 30,231 91,286 60,55 155,82 285,82l93 0c37,0 55,19 55,55l0 149c0,36 -18,56 -55,59l-143 0c-204,0 -358,-38 -462,-114 -104,-77 -157,-218 -157,-424l0 -1329c0,-14 -7,-21 -21,-21l-241 0c-37,0 -55,-19 -55,-55l0 -140c0,-37 18,-55 55,-55l241 0c14,0 21,-7 21,-21l0 -474c0,-37 19,-55 55,-55l183 0c36,0 55,18 55,55l0 474c0,14 7,21 21,21l461 0c37,0 55,18 55,55l0 140z"/>
<path id="84" class="fil11" d="M163546 264473c223,0 402,67 536,199 134,133 201,311 201,534l0 1384c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -46,-286 -140,-383 -93,-97 -214,-146 -364,-146 -144,0 -263,41 -357,123 -95,81 -149,189 -163,321l0 1410c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 978c0,8 3,14 8,19 6,4 10,2 13,-7 124,-169 313,-254 567,-254z"/>
<path id="85" class="fil11" d="M165773 266421c127,-3 236,-32 328,-87 92,-55 163,-132 214,-231 5,-14 15,-24 29,-29 14,-6 28,-5 43,4l122 68c34,19 43,43 26,71 -68,142 -170,254 -305,337 -135,83 -296,125 -483,125 -197,0 -364,-47 -499,-140 -136,-93 -233,-223 -292,-389 -54,-141 -81,-336 -81,-584 0,-122 2,-218 7,-290 4,-72 14,-139 31,-202 48,-183 145,-330 290,-440 146,-110 321,-165 527,-165 246,0 439,64 578,191 140,127 230,306 269,537 17,91 26,232 26,424 0,36 -19,55 -56,55l-1354 0c-14,0 -21,7 -21,21 0,141 8,244 25,309 31,127 97,228 197,303 100,74 226,112 379,112zm-43 -1689c-141,0 -256,36 -347,108 -90,72 -149,168 -177,290 -17,56 -29,152 -34,287 0,15 7,22 21,22l1088 0c14,0 21,-7 21,-22 -6,-124 -14,-214 -25,-271 -32,-127 -94,-227 -189,-302 -94,-75 -214,-112 -358,-112z"/>
<path id="86" class="fil11" d="M169007 266683c-197,0 -371,-39 -521,-116 -149,-78 -266,-188 -349,-330 -83,-143 -125,-307 -125,-494l0 -1164c0,-183 42,-346 125,-487 83,-141 200,-250 349,-328 150,-77 324,-116 521,-116 198,0 371,38 521,114 149,76 266,184 349,322 83,138 125,298 125,478 0,26 -18,41 -55,47l-191 13 -12 0c-12,0 -21,-3 -30,-9 -8,-6 -13,-11 -13,-17l0 -25c0,-201 -63,-361 -190,-481 -127,-120 -295,-180 -504,-180 -209,0 -377,61 -504,182 -127,122 -190,281 -190,479l0 1185c0,198 63,357 190,478 127,122 295,182 504,182 209,0 377,-60 504,-179 127,-120 190,-281 190,-481 0,-34 19,-49 55,-47l191 9c37,0 55,7 55,21l0 21c0,184 -42,345 -125,485 -83,140 -200,248 -349,324 -150,76 -323,114 -521,114z"/>
<path id="87" class="fil11" d="M171327 264469c254,0 451,65 590,195 140,130 210,302 210,516l0 1410c0,37 -18,55 -55,55l-190 0c-37,0 -56,-18 -56,-55l0 -152c0,-9 -2,-14 -8,-17 -6,-3 -11,0 -17,8 -76,82 -171,144 -286,186 -114,43 -239,64 -374,64 -198,0 -364,-51 -498,-152 -134,-102 -201,-257 -201,-466 0,-212 77,-379 231,-502 154,-123 367,-184 641,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-144 -40,-257 -120,-341 -81,-83 -205,-124 -375,-124 -132,0 -241,25 -326,76 -84,51 -138,121 -161,211 -8,34 -29,48 -63,43l-208 -26c-36,-5 -53,-21 -50,-46 28,-155 115,-281 260,-377 145,-96 327,-144 544,-144zm-119 1952c167,0 312,-42 434,-125 123,-83 184,-196 184,-337l0 -326c0,-14 -7,-21 -21,-21l-444 0c-186,0 -336,38 -449,114 -113,77 -169,182 -169,318 0,124 43,218 131,281 87,64 199,96 334,96z"/>
<path id="88" class="fil11" d="M172804 266645c-36,0 -55,-18 -55,-55l0 -2853c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 2853c0,37 -18,55 -55,55l-191 0z"/>
<path id="89" class="fil11" d="M173913 264118c-67,0 -122,-21 -165,-62 -42,-41 -63,-93 -63,-158 0,-65 21,-117 63,-157 43,-40 98,-59 165,-59 68,0 123,19 166,59 42,40 63,92 63,157 0,65 -21,117 -63,158 -43,41 -98,62 -166,62zm-93 2527c-36,0 -55,-18 -55,-55l0 -2032c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 2032c0,37 -18,55 -55,55l-191 0z"/>
<path id="90" class="fil11" d="M175615 263944c-155,0 -261,35 -317,104 -57,69 -85,187 -85,353l0 81c0,14 7,21 21,21l457 0c37,0 56,18 56,55l0 165c0,37 -19,55 -56,55l-457 0c-14,0 -21,7 -21,21l0 1791c0,37 -18,55 -55,55l-186 0c-37,0 -55,-18 -55,-55l0 -1791c0,-14 -7,-21 -21,-21l-267 0c-37,0 -55,-18 -55,-55l0 -165c0,-37 18,-55 55,-55l267 0c14,0 21,-7 21,-21l0 -98c0,-175 20,-312 59,-412 40,-100 108,-174 205,-220 98,-47 234,-70 409,-70l110 0c37,0 55,18 55,55l0 152c0,37 -18,55 -55,55l-85 0z"/>
<path id="91" class="fil11" d="M176898 266679c-206,0 -382,-52 -527,-157 -145,-104 -246,-248 -303,-432 -39,-129 -59,-303 -59,-520 0,-215 18,-387 55,-517 56,-180 157,-323 303,-427 145,-105 322,-157 531,-157 203,0 377,52 523,157 145,104 245,245 298,423 40,136 60,309 60,521 0,217 -20,391 -60,520 -56,184 -157,328 -302,432 -146,105 -319,157 -519,157zm0 -263c135,0 251,-37 347,-112 96,-75 161,-175 195,-302 22,-91 34,-233 34,-428 0,-203 -12,-346 -34,-428 -31,-127 -95,-227 -193,-302 -97,-75 -216,-112 -357,-112 -136,0 -252,37 -348,112 -96,75 -160,175 -194,302 -23,82 -34,225 -34,428 0,203 11,346 34,428 31,127 95,227 192,302 98,75 217,112 358,112z"/>
<path id="92" class="fil11" d="M179252 264482c93,0 170,17 233,51 28,11 38,33 29,67l-42 187c-9,33 -31,45 -68,33 -54,-16 -123,-23 -207,-21 -147,6 -268,60 -364,163 -96,103 -144,234 -144,392l0 1236c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 237c0,11 2,18 6,19 4,2 9,-2 15,-10 59,-102 135,-181 226,-238 92,-56 197,-84 316,-84z"/>
<path id="93" class="fil11" d="M180818 264473c223,0 401,67 536,199 134,133 201,311 201,534l0 1384c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -47,-286 -140,-383 -93,-97 -214,-146 -364,-146 -144,0 -263,41 -357,123 -95,81 -149,189 -163,321l0 1410c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 157c0,8 2,14 8,19 6,4 10,2 13,-7 124,-169 313,-254 567,-254z"/>
<path id="94" class="fil11" d="M182393 264118c-68,0 -123,-21 -165,-62 -43,-41 -64,-93 -64,-158 0,-65 21,-117 64,-157 42,-40 97,-59 165,-59 67,0 123,19 165,59 42,40 63,92 63,157 0,65 -21,117 -63,158 -42,41 -98,62 -165,62zm-93 2527c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2032c0,37 -18,55 -55,55l-190 0z"/>
<path id="95" class="fil11" d="M183989 264469c254,0 451,65 590,195 140,130 210,302 210,516l0 1410c0,37 -19,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -152c0,-9 -3,-14 -8,-17 -6,-3 -11,0 -17,8 -76,82 -172,144 -286,186 -114,43 -239,64 -375,64 -197,0 -363,-51 -497,-152 -134,-102 -201,-257 -201,-466 0,-212 77,-379 231,-502 154,-123 367,-184 641,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-144 -40,-257 -120,-341 -81,-83 -206,-124 -375,-124 -133,0 -241,25 -326,76 -85,51 -138,121 -161,211 -8,34 -29,48 -63,43l-208 -26c-36,-5 -53,-21 -51,-46 29,-155 115,-281 261,-377 145,-96 326,-144 544,-144zm-119 1952c167,0 311,-42 434,-125 123,-83 184,-196 184,-337l0 -326c0,-14 -7,-21 -21,-21l-444 0c-187,0 -336,38 -449,114 -113,77 -169,182 -169,318 0,124 43,218 131,281 87,64 199,96 334,96z"/>
<path id="96" class="fil11" d="M120553 270336c39,127 59,307 59,538 0,234 -17,409 -51,525 -51,181 -144,322 -279,426 -136,103 -304,154 -504,154 -110,0 -212,-22 -305,-66 -93,-43 -171,-106 -233,-188 -5,-8 -11,-11 -17,-8 -5,2 -8,8 -8,16l0 978c0,37 -19,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -2853c0,-37 19,-55 55,-55l191 0c36,0 55,18 55,55l0 161c0,8 3,13 8,15 6,1 12,-1 17,-7 62,-81 139,-145 231,-190 92,-45 194,-68 307,-68 197,0 363,51 497,153 134,101 227,240 278,414zm-339 1072c34,-63 58,-132 74,-210 15,-78 23,-186 23,-324 0,-133 -5,-236 -17,-311 -11,-75 -31,-142 -59,-201 -34,-102 -94,-182 -180,-241 -86,-60 -188,-89 -307,-89 -113,0 -207,29 -283,89 -77,59 -133,138 -170,237 -25,56 -44,122 -55,199 -11,76 -17,182 -17,317 0,136 6,242 17,320 11,77 31,146 59,205 34,96 90,173 168,231 77,58 170,87 277,87 113,0 210,-29 292,-85 82,-57 141,-131 178,-224z"/>
<path id="97" class="fil11" d="M122504 269858c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 2032c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -161c0,-8 -3,-14 -8,-17 -6,-3 -12,0 -17,9 -122,169 -308,254 -559,254 -136,0 -261,-28 -375,-83 -114,-55 -204,-135 -271,-239 -66,-104 -99,-230 -99,-377l0 -1418c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 1329c0,161 45,289 136,384 90,94 213,141 368,141 161,0 289,-48 383,-144 95,-96 142,-223 142,-381l0 -1329z"/>
<path id="98" class="fil11" d="M125124 270349c34,116 51,291 51,525 0,232 -20,411 -59,538 -51,175 -143,313 -277,415 -134,101 -300,152 -498,152 -113,0 -215,-23 -307,-68 -91,-45 -168,-108 -230,-190 -6,-6 -12,-8 -17,-7 -6,2 -9,7 -9,15l0 161c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 978c0,8 3,14 9,17 5,3 11,0 17,-9 62,-82 139,-144 232,-188 94,-44 195,-66 305,-66 201,0 369,52 504,155 135,103 229,245 279,425zm-326 1037c29,-59 48,-126 60,-201 11,-75 17,-178 17,-311 0,-138 -8,-246 -24,-324 -15,-77 -40,-147 -74,-209 -36,-93 -96,-168 -178,-225 -81,-56 -179,-84 -292,-84 -107,0 -199,29 -277,86 -78,58 -133,135 -167,231 -28,59 -48,128 -59,206 -12,77 -17,184 -17,319 0,136 5,241 17,318 11,76 29,142 55,199 36,98 93,177 169,237 76,59 171,89 284,89 118,0 220,-30 306,-89 87,-60 147,-140 180,-242z"/>
<path id="99" class="fil11" d="M125827 271945c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 2853c0,37 -19,55 -55,55l-191 0z"/>
<path id="100" class="fil11" d="M126936 269418c-68,0 -123,-21 -165,-62 -42,-40 -63,-93 -63,-158 0,-65 21,-117 63,-157 42,-39 97,-59 165,-59 68,0 123,20 165,59 43,40 64,92 64,157 0,65 -21,118 -64,158 -42,41 -97,62 -165,62zm-93 2527c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 2032c0,37 -19,55 -55,55l-191 0z"/>
<path id="101" class="fil11" d="M128600 271979c-203,0 -378,-53 -523,-159 -145,-106 -245,-249 -298,-429 -37,-125 -55,-300 -55,-525 0,-204 18,-376 55,-517 50,-175 149,-315 296,-421 147,-106 322,-159 525,-159 206,0 384,52 535,157 151,104 249,234 295,389 11,40 19,78 25,115l0 8c0,31 -17,49 -51,55l-186 21 -13 0c-25,0 -42,-15 -51,-46 0,-12 -2,-28 -8,-51 -25,-107 -88,-198 -186,-273 -99,-75 -219,-112 -360,-112 -141,0 -259,37 -354,112 -94,75 -156,174 -184,298 -25,108 -38,250 -38,428 0,186 13,330 38,432 28,127 90,228 184,302 95,75 213,113 354,113 138,0 257,-36 358,-108 100,-72 161,-163 184,-273 3,-6 4,-13 4,-22l4 -4c3,-37 24,-52 64,-46l182 29c36,6 53,27 51,64l-17 72c-43,163 -140,296 -292,398 -153,101 -332,152 -538,152z"/>
<path id="102" class="fil11" d="M129878 272280c-19,0 -34,-5 -42,-15 -8,-10 -11,-25 -8,-45l182 -880c8,-34 28,-51 59,-51l161 0c39,0 55,20 46,59l-228 885c-9,31 -30,47 -64,47l-106 0z"/>
<path id="103" class="fil11" d="M133396 270400c-17,8 -17,17 0,25 150,62 263,154 341,276 78,121 116,268 116,440 0,254 -81,451 -243,592 -162,142 -376,212 -641,212l-1012 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l982 0c274,0 489,68 646,203 156,136 235,326 235,572 0,155 -36,286 -108,393 -72,107 -177,191 -316,250zm-1172 -1156c-14,0 -22,7 -22,21l0 1008c0,14 8,21 22,21l715 0c178,0 320,-46 425,-140 106,-93 159,-217 159,-372 0,-164 -53,-294 -159,-392 -105,-97 -247,-146 -425,-146l-715 0zm745 2434c177,0 319,-50 425,-152 106,-102 159,-238 159,-411 0,-172 -54,-309 -163,-412 -109,-103 -255,-155 -438,-155l-728 0c-14,0 -22,7 -22,21l0 1088c0,14 8,21 22,21l745 0z"/>
<path id="104" class="fil11" d="M135212 269769c254,0 451,65 591,195 140,130 209,302 209,516l0 1410c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -152c0,-9 -3,-14 -9,-17 -5,-3 -11,0 -17,8 -76,82 -171,144 -285,187 -115,42 -239,63 -375,63 -197,0 -363,-51 -497,-152 -134,-102 -201,-257 -201,-466 0,-212 76,-379 230,-502 154,-122 368,-184 642,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-144 -40,-257 -121,-340 -80,-84 -205,-125 -374,-125 -133,0 -242,25 -326,76 -85,51 -139,121 -161,212 -9,33 -30,48 -64,42l-207 -26c-37,-5 -54,-21 -51,-46 28,-155 115,-281 260,-377 146,-96 327,-144 544,-144zm-118 1952c166,0 311,-42 434,-125 122,-83 184,-196 184,-337l0 -326c0,-14 -7,-21 -21,-21l-445 0c-186,0 -336,38 -449,115 -112,76 -169,182 -169,317 0,124 44,218 131,282 88,63 199,95 335,95z"/>
<path id="105" class="fil11" d="M137498 269782c93,0 171,17 233,51 28,11 38,34 30,67l-43 187c-8,34 -31,45 -67,34 -54,-17 -123,-24 -208,-22 -146,6 -268,60 -364,163 -96,103 -144,234 -144,392l0 1236c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 237c0,11 2,18 7,19 4,2 9,-2 14,-10 60,-102 135,-181 227,-237 92,-57 197,-85 315,-85z"/>
<path id="106" class="fil11" d="M138231 271945c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2853c0,37 -18,55 -55,55l-190 0z"/>
<path id="107" class="fil11" d="M139979 271979c-206,0 -382,-52 -527,-157 -145,-104 -246,-248 -303,-431 -39,-130 -59,-304 -59,-521 0,-215 18,-387 55,-517 56,-180 157,-323 303,-427 145,-105 322,-157 531,-157 203,0 377,52 523,157 145,104 245,245 298,423 40,136 60,309 60,521 0,217 -20,391 -60,521 -56,183 -157,327 -302,431 -146,105 -319,157 -519,157zm0 -262c135,0 251,-38 347,-113 96,-74 161,-175 195,-302 22,-91 34,-233 34,-428 0,-203 -12,-346 -34,-427 -31,-127 -95,-228 -193,-303 -97,-75 -216,-112 -357,-112 -136,0 -252,37 -348,112 -96,75 -160,176 -194,303 -23,81 -34,224 -34,427 0,203 11,346 34,428 31,127 95,228 192,302 98,75 217,113 358,113z"/>
<path id="108" class="fil11" d="M141837 271945c-31,0 -50,-15 -59,-46l-593 -2032c-2,-6 -4,-13 -4,-22 0,-11 5,-21 15,-29 10,-9 22,-13 36,-13l199 0c31,0 51,16 59,47l441 1651c2,8 7,12 12,12 6,0 10,-4 13,-12l453 -1651c8,-31 28,-47 59,-47l186 0c31,0 51,16 60,47l461 1651c3,8 7,12 13,12 5,0 10,-4 12,-12l453 -1651c9,-31 30,-47 64,-47l195 4c19,0 34,6 42,17 8,12 10,27 4,47l-601 2028c-8,31 -28,46 -59,46l-208 0c-31,0 -50,-15 -59,-46l-457 -1563c-3,-8 -7,-12 -13,-12 -5,0 -10,4 -12,12l-441 1563c-8,31 -28,46 -59,46l-212 0z"/>
<path id="109" class="fil11" d="M145986 271966c-158,0 -298,-25 -421,-76 -123,-51 -217,-118 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-37 18,-55 55,-55l182 0c17,0 30,4 40,11 10,7 15,16 15,27l0 38c0,93 48,175 144,244 96,69 217,103 364,103 147,0 265,-33 355,-99 91,-66 136,-150 136,-252 0,-70 -23,-128 -68,-173 -45,-46 -100,-81 -165,-106 -65,-26 -162,-58 -292,-98 -158,-45 -288,-90 -390,-135 -101,-45 -187,-108 -258,-188 -70,-81 -106,-183 -106,-307 0,-181 72,-325 214,-432 143,-107 330,-161 561,-161 155,0 293,25 413,76 120,51 212,121 277,210 65,89 98,188 98,298 0,37 -19,55 -56,55l-173 0c-37,0 -55,-10 -55,-29l0 -26c0,-96 -46,-176 -138,-241 -91,-65 -215,-98 -370,-98 -144,0 -260,29 -347,87 -88,58 -131,138 -131,239 0,96 41,170 124,221 84,50 214,101 392,152 164,45 296,89 398,131 102,43 189,105 262,186 74,82 110,188 110,318 0,183 -71,330 -213,440 -143,110 -334,165 -574,165z"/>
<path id="110" class="fil11" d="M148213 269773c223,0 401,67 535,199 134,133 201,311 201,534l0 1384c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -47,-286 -140,-383 -93,-97 -214,-146 -364,-146 -144,0 -263,41 -358,123 -94,82 -149,189 -163,321l0 1410c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 978c0,8 3,15 9,19 5,4 10,2 13,-7 124,-169 313,-254 567,-254z"/>
<path id="111" class="fil11" d="M150346 269769c254,0 451,65 591,195 140,130 209,302 209,516l0 1410c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -152c0,-9 -3,-14 -9,-17 -5,-3 -11,0 -17,8 -76,82 -171,144 -285,187 -115,42 -239,63 -375,63 -197,0 -363,-51 -497,-152 -134,-102 -201,-257 -201,-466 0,-212 76,-379 230,-502 154,-122 368,-184 642,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-144 -40,-257 -121,-340 -80,-84 -205,-125 -374,-125 -133,0 -242,25 -326,76 -85,51 -139,121 -161,212 -9,33 -30,48 -64,42l-207 -26c-37,-5 -54,-21 -51,-46 28,-155 115,-281 260,-377 146,-96 327,-144 544,-144zm-118 1952c166,0 311,-42 434,-125 122,-83 184,-196 184,-337l0 -326c0,-14 -7,-21 -21,-21l-445 0c-186,0 -336,38 -449,115 -112,76 -169,182 -169,317 0,124 44,218 131,282 88,63 199,95 335,95z"/>
<path id="112" class="fil11" d="M152632 269782c93,0 171,17 233,51 28,11 38,34 30,67l-43 187c-8,34 -31,45 -67,34 -54,-17 -123,-24 -208,-22 -146,6 -268,60 -364,163 -96,103 -144,234 -144,392l0 1236c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 237c0,11 2,18 7,19 4,2 9,-2 14,-10 60,-102 135,-181 227,-237 92,-57 197,-85 315,-85z"/>
<path id="113" class="fil11" d="M154122 271721c127,-3 237,-32 329,-87 91,-55 163,-132 213,-231 6,-14 16,-24 30,-29 14,-6 28,-5 42,4l123 68c34,19 42,43 25,72 -67,141 -169,253 -304,336 -136,83 -297,125 -483,125 -197,0 -364,-47 -499,-140 -136,-93 -233,-223 -293,-389 -53,-141 -80,-336 -80,-584 0,-122 2,-218 6,-290 5,-72 15,-139 32,-201 48,-184 145,-331 290,-441 145,-110 321,-165 527,-165 246,0 438,64 578,191 140,127 229,306 269,537 17,91 25,232 25,424 0,36 -18,55 -55,55l-1354 0c-15,0 -22,7 -22,21 0,141 9,244 26,309 31,127 96,228 197,303 100,74 226,112 378,112zm-42 -1689c-141,0 -257,36 -347,108 -90,72 -150,168 -178,290 -17,56 -28,152 -34,287 0,15 7,22 22,22l1087 0c15,0 22,-7 22,-22 -6,-124 -14,-214 -26,-270 -31,-127 -94,-228 -188,-303 -95,-75 -214,-112 -358,-112z"/>
<path id="114" class="fil11" d="M156252 271966c-158,0 -299,-25 -421,-76 -123,-51 -218,-118 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-37 18,-55 55,-55l182 0c17,0 30,4 40,11 10,7 15,16 15,27l0 38c0,93 48,175 144,244 95,69 217,103 364,103 146,0 265,-33 355,-99 91,-66 136,-150 136,-252 0,-70 -23,-128 -68,-173 -45,-46 -100,-81 -165,-106 -65,-26 -162,-58 -292,-98 -158,-45 -288,-90 -390,-135 -101,-45 -187,-108 -258,-188 -71,-81 -106,-183 -106,-307 0,-181 71,-325 214,-432 143,-107 329,-161 561,-161 155,0 293,25 413,76 120,51 212,121 277,210 65,89 97,188 97,298 0,37 -18,55 -55,55l-173 0c-37,0 -55,-10 -55,-29l0 -26c0,-96 -46,-176 -138,-241 -92,-65 -215,-98 -370,-98 -144,0 -260,29 -347,87 -88,58 -132,138 -132,239 0,96 42,170 125,221 83,50 214,101 392,152 163,45 296,89 398,131 101,43 189,105 262,186 74,82 110,188 110,318 0,183 -71,330 -214,440 -142,110 -333,165 -573,165z"/>
<path id="115" class="fil11" d="M159753 269858c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2853c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -978c0,-8 -3,-14 -9,-16 -5,-3 -11,0 -17,8 -62,82 -139,145 -232,188 -93,44 -195,66 -305,66 -201,0 -368,-51 -504,-154 -135,-104 -229,-245 -279,-426 -34,-116 -51,-291 -51,-525 0,-231 20,-411 59,-538 51,-174 143,-313 277,-414 134,-102 300,-153 498,-153 113,0 215,23 307,68 91,45 168,109 230,190 6,6 12,8 17,7 6,-2 9,-7 9,-15l0 -161zm-85 1541c28,-59 48,-128 59,-205 12,-78 17,-184 17,-320 0,-135 -5,-241 -17,-317 -11,-77 -29,-143 -55,-199 -36,-99 -93,-178 -169,-237 -76,-60 -171,-89 -284,-89 -118,0 -220,29 -306,89 -87,59 -146,139 -180,241 -29,59 -48,126 -60,201 -11,75 -17,178 -17,311 0,138 8,246 24,324 15,78 40,147 74,210 37,93 96,167 178,224 81,56 179,85 292,85 107,0 199,-29 277,-87 78,-58 133,-135 167,-231z"/>
<path id="116" class="fil11" d="M162052 269858c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2032c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -161c0,-8 -3,-14 -9,-17 -6,-3 -11,0 -17,9 -121,169 -308,254 -559,254 -135,0 -260,-28 -374,-83 -115,-55 -205,-135 -271,-239 -67,-104 -100,-230 -100,-377l0 -1418c0,-37 19,-55 55,-55l191 0c36,0 55,18 55,55l0 1329c0,161 45,289 135,384 91,94 213,141 369,141 160,0 288,-48 383,-144 94,-96 142,-223 142,-381l0 -1329z"/>
<path id="117" class="fil11" d="M163766 269769c254,0 451,65 590,195 140,130 210,302 210,516l0 1410c0,37 -18,55 -55,55l-190 0c-37,0 -56,-18 -56,-55l0 -152c0,-9 -2,-14 -8,-17 -6,-3 -11,0 -17,8 -76,82 -171,144 -286,187 -114,42 -239,63 -374,63 -198,0 -364,-51 -498,-152 -134,-102 -201,-257 -201,-466 0,-212 77,-379 231,-502 154,-122 367,-184 641,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-144 -40,-257 -120,-340 -81,-84 -205,-125 -375,-125 -132,0 -241,25 -326,76 -84,51 -138,121 -161,212 -8,33 -29,48 -63,42l-208 -26c-36,-5 -53,-21 -50,-46 28,-155 115,-281 260,-377 145,-96 327,-144 544,-144zm-119 1952c167,0 312,-42 434,-125 123,-83 184,-196 184,-337l0 -326c0,-14 -7,-21 -21,-21l-444 0c-186,0 -336,38 -449,115 -113,76 -169,182 -169,317 0,124 43,218 131,282 87,63 199,95 334,95z"/>
<path id="118" class="fil11" d="M165243 271945c-36,0 -55,-18 -55,-55l0 -2853c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 2853c0,37 -18,55 -55,55l-191 0z"/>
<path id="119" class="fil11" d="M166352 269418c-67,0 -122,-21 -165,-62 -42,-40 -63,-93 -63,-158 0,-65 21,-117 63,-157 43,-39 98,-59 165,-59 68,0 123,20 166,59 42,40 63,92 63,157 0,65 -21,118 -63,158 -43,41 -98,62 -166,62zm-93 2527c-36,0 -55,-18 -55,-55l0 -2032c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 2032c0,37 -18,55 -55,55l-191 0z"/>
<path id="120" class="fil11" d="M168169 269998c0,37 -19,55 -55,55l-462 0c-14,0 -21,7 -21,21l0 1236c0,136 30,231 91,286 61,55 156,82 286,82l93 0c37,0 55,19 55,55l0 149c0,36 -18,56 -55,59l-144 0c-203,0 -357,-38 -462,-114 -104,-77 -156,-218 -156,-424l0 -1329c0,-14 -7,-21 -21,-21l-242 0c-36,0 -55,-18 -55,-55l0 -140c0,-37 19,-55 55,-55l242 0c14,0 21,-7 21,-21l0 -474c0,-37 18,-55 55,-55l182 0c37,0 55,18 55,55l0 474c0,14 7,21 21,21l462 0c36,0 55,18 55,55l0 140z"/>
<path id="121" class="fil11" d="M168931 269418c-68,0 -123,-21 -166,-62 -42,-40 -63,-93 -63,-158 0,-65 21,-117 63,-157 43,-39 98,-59 166,-59 67,0 122,20 165,59 42,40 63,92 63,157 0,65 -21,118 -63,158 -43,41 -98,62 -165,62zm-94 2527c-36,0 -55,-18 -55,-55l0 -2032c0,-37 19,-55 55,-55l191 0c37,0 55,18 55,55l0 2032c0,37 -18,55 -55,55l-191 0z"/>
<path id="122" class="fil11" d="M170620 271721c127,-3 236,-32 328,-87 91,-55 163,-132 214,-231 5,-14 15,-24 29,-29 14,-6 28,-5 43,4l122 68c34,19 43,43 26,72 -68,141 -170,253 -305,336 -136,83 -296,125 -483,125 -197,0 -364,-47 -499,-140 -136,-93 -233,-223 -292,-389 -54,-141 -81,-336 -81,-584 0,-122 2,-218 7,-290 4,-72 14,-139 31,-201 48,-184 145,-331 290,-441 146,-110 321,-165 527,-165 246,0 438,64 578,191 140,127 229,306 269,537 17,91 25,232 25,424 0,36 -18,55 -55,55l-1354 0c-14,0 -21,7 -21,21 0,141 8,244 25,309 31,127 97,228 197,303 100,74 226,112 379,112zm-43 -1689c-141,0 -256,36 -347,108 -90,72 -149,168 -178,290 -17,56 -28,152 -33,287 0,15 7,22 21,22l1088 0c14,0 21,-7 21,-22 -6,-124 -14,-214 -26,-270 -31,-127 -93,-228 -188,-303 -94,-75 -214,-112 -358,-112z"/>
<path id="123" class="fil11" d="M172749 271966c-158,0 -298,-25 -421,-76 -123,-51 -217,-118 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-37 18,-55 55,-55l182 0c17,0 30,4 40,11 10,7 15,16 15,27l0 38c0,93 48,175 144,244 96,69 217,103 364,103 147,0 265,-33 355,-99 91,-66 136,-150 136,-252 0,-70 -23,-128 -68,-173 -45,-46 -100,-81 -165,-106 -65,-26 -162,-58 -292,-98 -158,-45 -288,-90 -390,-135 -101,-45 -187,-108 -258,-188 -70,-81 -106,-183 -106,-307 0,-181 72,-325 214,-432 143,-107 330,-161 561,-161 155,0 293,25 413,76 120,51 212,121 277,210 65,89 98,188 98,298 0,37 -19,55 -56,55l-173 0c-37,0 -55,-10 -55,-29l0 -26c0,-96 -46,-176 -138,-241 -91,-65 -215,-98 -370,-98 -144,0 -260,29 -347,87 -88,58 -131,138 -131,239 0,96 41,170 124,221 84,50 214,101 392,152 164,45 296,89 398,131 102,43 189,105 262,186 74,82 110,188 110,318 0,183 -71,330 -213,440 -143,110 -334,165 -574,165z"/>
<path id="124" class="fil11" d="M175386 271945c-31,0 -50,-15 -59,-46l-592 -2032c-3,-6 -5,-13 -5,-22 0,-11 5,-21 15,-29 10,-9 22,-13 36,-13l199 0c31,0 51,16 59,47l441 1651c2,8 7,12 12,12 6,0 10,-4 13,-12l453 -1651c8,-31 28,-47 59,-47l187 0c31,0 50,16 59,47l461 1651c3,8 7,12 13,12 6,0 10,-4 13,-12l453 -1651c8,-31 29,-47 63,-47l195 4c20,0 34,6 42,17 9,12 10,27 4,47l-601 2028c-8,31 -28,46 -59,46l-207 0c-32,0 -51,-15 -60,-46l-457 -1563c-3,-8 -7,-12 -13,-12 -5,0 -10,4 -12,12l-441 1563c-8,31 -28,46 -59,46l-212 0z"/>
<path id="125" class="fil11" d="M178168 269418c-68,0 -123,-21 -165,-62 -43,-40 -64,-93 -64,-158 0,-65 21,-117 64,-157 42,-39 97,-59 165,-59 67,0 123,20 165,59 42,40 63,92 63,157 0,65 -21,118 -63,158 -42,41 -98,62 -165,62zm-93 2527c-37,0 -55,-18 -55,-55l0 -2032c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2032c0,37 -18,55 -55,55l-190 0z"/>
<path id="126" class="fil11" d="M179984 269998c0,37 -18,55 -55,55l-462 0c-14,0 -21,7 -21,21l0 1236c0,136 31,231 91,286 61,55 156,82 286,82l93 0c37,0 55,19 55,55l0 149c0,36 -18,56 -55,59l-144 0c-203,0 -357,-38 -461,-114 -105,-77 -157,-218 -157,-424l0 -1329c0,-14 -7,-21 -21,-21l-241 0c-37,0 -55,-18 -55,-55l0 -140c0,-37 18,-55 55,-55l241 0c14,0 21,-7 21,-21l0 -474c0,-37 18,-55 55,-55l182 0c37,0 55,18 55,55l0 474c0,14 7,21 21,21l462 0c37,0 55,18 55,55l0 140z"/>
<path id="127" class="fil11" d="M181453 269773c223,0 401,67 535,199 134,133 201,311 201,534l0 1384c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -47,-286 -140,-383 -93,-97 -214,-146 -364,-146 -144,0 -263,41 -358,123 -94,82 -149,189 -163,321l0 1410c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 978c0,8 3,15 9,19 5,4 10,2 13,-7 124,-169 313,-254 567,-254z"/>
<path id="128" class="fil11" d="M184653 269998c0,37 -18,55 -55,55l-461 0c-14,0 -21,7 -21,21l0 1236c0,136 30,231 91,286 60,55 155,82 285,82l93 0c37,0 55,19 55,55l0 149c0,36 -18,56 -55,59l-143 0c-204,0 -358,-38 -462,-114 -104,-77 -157,-218 -157,-424l0 -1329c0,-14 -7,-21 -21,-21l-241 0c-37,0 -55,-18 -55,-55l0 -140c0,-37 18,-55 55,-55l241 0c14,0 21,-7 21,-21l0 -474c0,-37 19,-55 55,-55l183 0c36,0 55,18 55,55l0 474c0,14 7,21 21,21l461 0c37,0 55,18 55,55l0 140z"/>
<path id="129" class="fil11" d="M186122 269773c223,0 402,67 536,199 134,133 201,311 201,534l0 1384c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -46,-286 -140,-383 -93,-97 -214,-146 -364,-146 -144,0 -263,41 -357,123 -95,82 -149,189 -163,321l0 1410c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l191 0c36,0 55,18 55,55l0 978c0,8 3,15 8,19 6,4 10,2 13,-7 124,-169 313,-254 567,-254z"/>
<path id="130" class="fil11" d="M188349 271721c127,-3 236,-32 328,-87 92,-55 163,-132 214,-231 5,-14 15,-24 29,-29 14,-6 28,-5 43,4l122 68c34,19 43,43 26,72 -68,141 -170,253 -305,336 -135,83 -296,125 -483,125 -197,0 -364,-47 -499,-140 -136,-93 -233,-223 -292,-389 -54,-141 -81,-336 -81,-584 0,-122 2,-218 7,-290 4,-72 14,-139 31,-201 48,-184 145,-331 290,-441 146,-110 321,-165 527,-165 246,0 439,64 578,191 140,127 230,306 269,537 17,91 26,232 26,424 0,36 -19,55 -56,55l-1354 0c-14,0 -21,7 -21,21 0,141 8,244 25,309 31,127 97,228 197,303 100,74 226,112 379,112zm-43 -1689c-141,0 -256,36 -347,108 -90,72 -149,168 -177,290 -17,56 -29,152 -34,287 0,15 7,22 21,22l1088 0c14,0 21,-7 21,-22 -6,-124 -14,-214 -25,-270 -32,-127 -94,-228 -189,-303 -94,-75 -214,-112 -358,-112z"/>
<path id="131" class="fil11" d="M119592 277266c-159,0 -299,-25 -422,-76 -122,-51 -217,-118 -283,-203 -67,-85 -100,-179 -100,-284l0 -38c0,-36 19,-55 55,-55l182 0c17,0 31,4 40,11 10,7 15,16 15,27l0 38c0,94 48,175 144,244 96,69 218,104 364,104 147,0 266,-34 356,-100 90,-66 135,-150 135,-252 0,-70 -22,-128 -67,-173 -46,-45 -101,-81 -165,-106 -65,-26 -163,-58 -293,-98 -158,-45 -287,-90 -389,-135 -102,-45 -188,-108 -258,-188 -71,-81 -106,-183 -106,-307 0,-181 71,-325 214,-432 142,-107 329,-161 561,-161 155,0 292,25 412,76 120,51 213,121 278,210 65,89 97,188 97,298 0,37 -18,55 -55,55l-174 0c-36,0 -55,-10 -55,-29l0 -26c0,-96 -45,-176 -137,-241 -92,-65 -215,-97 -371,-97 -144,0 -259,28 -347,86 -87,58 -131,138 -131,240 0,95 42,169 125,220 83,50 214,101 391,152 164,45 297,89 398,131 102,43 189,105 263,187 73,81 110,187 110,317 0,183 -71,330 -214,440 -142,110 -334,165 -573,165z"/>
<path id="132" class="fil11" d="M121886 275298c0,37 -18,55 -55,55l-461 0c-15,0 -22,7 -22,21l0 1236c0,136 31,231 91,286 61,55 156,83 286,83l93 0c37,0 55,18 55,55l0 148c0,36 -18,56 -55,59l-144 0c-203,0 -357,-38 -461,-114 -105,-76 -157,-218 -157,-424l0 -1329c0,-14 -7,-21 -21,-21l-241 0c-37,0 -55,-18 -55,-55l0 -140c0,-36 18,-55 55,-55l241 0c14,0 21,-7 21,-21l0 -474c0,-37 19,-55 55,-55l182 0c37,0 55,18 55,55l0 474c0,14 7,21 22,21l461 0c37,0 55,19 55,55l0 140z"/>
<path id="133" class="fil11" d="M123207 275069c254,0 451,65 590,195 140,130 210,302 210,517l0 1409c0,37 -19,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -152c0,-9 -3,-14 -8,-17 -6,-3 -11,0 -17,8 -76,82 -172,144 -286,187 -114,42 -239,63 -375,63 -197,0 -363,-51 -497,-152 -134,-102 -201,-257 -201,-466 0,-212 77,-379 231,-502 154,-122 367,-184 641,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-143 -40,-257 -120,-340 -81,-84 -206,-125 -375,-125 -133,0 -241,25 -326,76 -85,51 -138,121 -161,212 -8,34 -29,48 -63,42l-208 -25c-36,-6 -53,-22 -51,-47 29,-155 115,-281 261,-377 145,-96 326,-144 544,-144zm-119 1952c167,0 311,-42 434,-125 123,-83 184,-195 184,-337l0 -326c0,-14 -7,-21 -21,-21l-444 0c-187,0 -336,38 -449,115 -113,76 -169,182 -169,317 0,124 43,218 131,282 87,63 199,95 334,95z"/>
<path id="134" class="fil11" d="M125573 275298c0,37 -18,55 -55,55l-461 0c-14,0 -21,7 -21,21l0 1236c0,136 30,231 91,286 60,55 155,83 285,83l93 0c37,0 55,18 55,55l0 148c0,36 -18,56 -55,59l-143 0c-204,0 -358,-38 -462,-114 -104,-76 -157,-218 -157,-424l0 -1329c0,-14 -7,-21 -21,-21l-241 0c-37,0 -55,-18 -55,-55l0 -140c0,-36 18,-55 55,-55l241 0c14,0 21,-7 21,-21l0 -474c0,-37 19,-55 55,-55l183 0c36,0 55,18 55,55l0 474c0,14 7,21 21,21l461 0c37,0 55,19 55,55l0 140z"/>
<path id="135" class="fil11" d="M126924 277021c127,-3 236,-32 328,-87 91,-55 163,-132 213,-231 6,-14 16,-24 30,-29 14,-6 28,-4 42,4l123 68c34,19 43,43 26,72 -68,141 -170,253 -305,336 -136,83 -297,125 -483,125 -197,0 -364,-46 -499,-140 -136,-93 -233,-223 -292,-389 -54,-141 -81,-336 -81,-584 0,-122 2,-218 6,-290 5,-72 15,-139 32,-201 48,-184 145,-331 290,-441 146,-110 321,-165 527,-165 246,0 438,64 578,191 140,127 229,306 269,537 17,91 25,232 25,424 0,36 -18,55 -55,55l-1354 0c-14,0 -22,7 -22,21 0,141 9,244 26,309 31,127 97,228 197,303 100,74 226,112 379,112zm-43 -1689c-141,0 -257,36 -347,108 -90,72 -149,168 -178,290 -17,56 -28,152 -34,288 0,14 8,21 22,21l1088 0c14,0 21,-7 21,-21 -6,-125 -14,-215 -26,-271 -31,-127 -94,-228 -188,-303 -95,-75 -214,-112 -358,-112z"/>
<path id="136" class="fil11" d="M128147 275158c-37,0 -55,-18 -55,-55l-30 -758c0,-36 17,-55 51,-55l203 0c34,0 51,19 51,55l-29 758c0,37 -19,55 -56,55l-135 0z"/>
<path id="137" class="fil11" d="M129421 277266c-158,0 -298,-25 -421,-76 -123,-51 -217,-118 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-36 18,-55 55,-55l182 0c17,0 30,4 40,11 10,7 15,16 15,27l0 38c0,94 48,175 144,244 96,69 217,104 364,104 147,0 265,-34 356,-100 90,-66 135,-150 135,-252 0,-70 -23,-128 -68,-173 -45,-45 -100,-81 -165,-106 -65,-26 -162,-58 -292,-98 -158,-45 -288,-90 -389,-135 -102,-45 -188,-108 -259,-188 -70,-81 -105,-183 -105,-307 0,-181 71,-325 213,-432 143,-107 330,-161 561,-161 156,0 293,25 413,76 120,51 212,121 277,210 65,89 98,188 98,298 0,37 -19,55 -55,55l-174 0c-37,0 -55,-10 -55,-29l0 -26c0,-96 -46,-176 -138,-241 -91,-65 -215,-97 -370,-97 -144,0 -260,28 -347,86 -88,58 -131,138 -131,240 0,95 41,169 125,220 83,50 213,101 391,152 164,45 297,89 398,131 102,43 189,105 263,187 73,81 110,187 110,317 0,183 -72,330 -214,440 -143,110 -334,165 -574,165z"/>
<path id="138" class="fil11" d="M132414 277279c-203,0 -377,-53 -523,-159 -145,-105 -244,-249 -298,-429 -37,-124 -55,-299 -55,-525 0,-203 18,-376 55,-517 51,-175 150,-315 296,-421 147,-106 322,-159 525,-159 206,0 385,53 536,157 151,104 249,234 294,389 11,40 20,78 25,115l0 8c0,31 -17,50 -50,55l-187 21 -12 0c-26,0 -43,-15 -51,-46 0,-11 -3,-28 -9,-51 -25,-107 -87,-198 -186,-273 -99,-75 -219,-112 -360,-112 -141,0 -259,37 -353,112 -95,75 -156,174 -184,298 -26,108 -38,250 -38,428 0,186 12,330 38,432 28,127 89,228 184,302 94,75 212,113 353,113 139,0 258,-36 358,-108 100,-72 162,-163 184,-273 3,-6 4,-13 4,-22l5 -4c2,-36 24,-52 63,-46l182 29c37,6 54,27 51,64l-17 72c-42,163 -140,296 -292,398 -152,101 -332,152 -538,152z"/>
<path id="139" class="fil11" d="M134548 275069c254,0 451,65 590,195 140,130 210,302 210,517l0 1409c0,37 -18,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -152c0,-9 -2,-14 -8,-17 -6,-3 -11,0 -17,8 -76,82 -171,144 -286,187 -114,42 -239,63 -374,63 -198,0 -364,-51 -498,-152 -134,-102 -201,-257 -201,-466 0,-212 77,-379 231,-502 154,-122 367,-184 641,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-143 -40,-257 -120,-340 -81,-84 -206,-125 -375,-125 -133,0 -241,25 -326,76 -85,51 -138,121 -161,212 -8,34 -29,48 -63,42l-208 -25c-36,-6 -53,-22 -50,-47 28,-155 115,-281 260,-377 145,-96 327,-144 544,-144zm-119 1952c167,0 311,-42 434,-125 123,-83 184,-195 184,-337l0 -326c0,-14 -7,-21 -21,-21l-444 0c-187,0 -336,38 -449,115 -113,76 -169,182 -169,317 0,124 43,218 131,282 87,63 199,95 334,95z"/>
<path id="140" class="fil11" d="M136834 275082c93,0 171,17 233,51 28,11 38,34 29,68l-42 186c-9,34 -31,45 -68,34 -53,-17 -123,-24 -207,-21 -147,5 -268,60 -364,163 -96,103 -144,233 -144,391l0 1236c0,37 -19,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -2032c0,-36 19,-55 55,-55l191 0c36,0 55,19 55,55l0 237c0,12 2,18 6,19 4,2 9,-2 15,-10 59,-102 135,-181 226,-237 92,-57 197,-85 316,-85z"/>
<path id="141" class="fil11" d="M140022 275637c39,127 59,306 59,537 0,234 -17,409 -51,525 -51,181 -144,323 -279,426 -136,103 -304,154 -504,154 -110,0 -212,-22 -305,-65 -93,-44 -171,-107 -233,-189 -5,-8 -11,-11 -17,-8 -5,2 -8,8 -8,17l0 977c0,37 -19,56 -55,56l-191 0c-36,0 -55,-19 -55,-56l0 -2853c0,-36 19,-55 55,-55l191 0c36,0 55,19 55,55l0 161c0,9 3,14 8,15 6,1 12,-1 17,-6 62,-82 139,-146 231,-191 92,-45 194,-68 307,-68 197,0 363,51 497,153 134,101 227,240 278,415zm-339 1071c34,-62 58,-132 74,-210 15,-78 23,-185 23,-324 0,-132 -5,-236 -17,-311 -11,-75 -31,-142 -59,-201 -34,-102 -94,-182 -180,-241 -86,-60 -188,-89 -307,-89 -113,0 -207,29 -283,89 -77,59 -133,138 -170,237 -25,56 -44,123 -55,199 -11,76 -17,182 -17,317 0,136 6,242 17,320 11,77 31,146 59,205 34,96 90,173 168,231 77,58 170,87 277,87 113,0 210,-29 292,-85 82,-56 141,-131 178,-224z"/>
<path id="142" class="fil11" d="M140733 277245c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2853c0,37 -18,55 -55,55l-190 0z"/>
<path id="143" class="fil11" d="M142401 275069c254,0 450,65 590,195 140,130 210,302 210,517l0 1409c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -152c0,-9 -3,-14 -8,-17 -6,-3 -12,0 -17,8 -77,82 -172,144 -286,187 -114,42 -239,63 -375,63 -197,0 -363,-51 -497,-152 -134,-102 -201,-257 -201,-466 0,-212 77,-379 230,-502 154,-122 368,-184 642,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-143 -40,-257 -121,-340 -80,-84 -205,-125 -374,-125 -133,0 -242,25 -326,76 -85,51 -138,121 -161,212 -9,34 -30,48 -64,42l-207 -25c-37,-6 -54,-22 -51,-47 28,-155 115,-281 261,-377 145,-96 326,-144 544,-144zm-119 1952c167,0 311,-42 434,-125 123,-83 184,-195 184,-337l0 -326c0,-14 -7,-21 -21,-21l-445 0c-186,0 -335,38 -448,115 -113,76 -170,182 -170,317 0,124 44,218 132,282 87,63 199,95 334,95z"/>
<path id="144" class="fil11" d="M144767 275298c0,37 -18,55 -55,55l-461 0c-15,0 -22,7 -22,21l0 1236c0,136 31,231 91,286 61,55 156,83 286,83l93 0c37,0 55,18 55,55l0 148c0,36 -18,56 -55,59l-144 0c-203,0 -357,-38 -461,-114 -105,-76 -157,-218 -157,-424l0 -1329c0,-14 -7,-21 -21,-21l-241 0c-37,0 -55,-18 -55,-55l0 -140c0,-36 18,-55 55,-55l241 0c14,0 21,-7 21,-21l0 -474c0,-37 19,-55 55,-55l182 0c37,0 55,18 55,55l0 474c0,14 7,21 22,21l461 0c37,0 55,19 55,55l0 140z"/>
<path id="145" class="fil11" d="M146117 277021c127,-3 237,-32 328,-87 92,-55 163,-132 214,-231 6,-14 16,-24 30,-29 14,-6 28,-4 42,4l123 68c34,19 42,43 25,72 -67,141 -169,253 -304,336 -136,83 -297,125 -483,125 -198,0 -364,-46 -500,-140 -135,-93 -232,-223 -292,-389 -53,-141 -80,-336 -80,-584 0,-122 2,-218 6,-290 4,-72 15,-139 32,-201 48,-184 145,-331 290,-441 145,-110 321,-165 527,-165 246,0 438,64 578,191 140,127 229,306 269,537 17,91 25,232 25,424 0,36 -18,55 -55,55l-1355 0c-14,0 -21,7 -21,21 0,141 9,244 26,309 31,127 96,228 196,303 101,74 227,112 379,112zm-42 -1689c-141,0 -257,36 -347,108 -90,72 -150,168 -178,290 -17,56 -28,152 -34,288 0,14 7,21 21,21l1088 0c14,0 22,-7 22,-21 -6,-125 -15,-215 -26,-271 -31,-127 -94,-228 -188,-303 -95,-75 -214,-112 -358,-112z"/>
<path id="146" class="fil11" d="M148247 277266c-158,0 -299,-25 -421,-76 -123,-51 -218,-118 -284,-203 -66,-85 -100,-179 -100,-284l0 -38c0,-36 19,-55 55,-55l182 0c17,0 31,4 41,11 10,7 15,16 15,27l0 38c0,94 47,175 143,244 96,69 218,104 365,104 146,0 265,-34 355,-100 90,-66 136,-150 136,-252 0,-70 -23,-128 -68,-173 -45,-45 -100,-81 -165,-106 -65,-26 -163,-58 -292,-98 -158,-45 -288,-90 -390,-135 -101,-45 -187,-108 -258,-188 -71,-81 -106,-183 -106,-307 0,-181 71,-325 214,-432 142,-107 329,-161 561,-161 155,0 293,25 413,76 119,51 212,121 277,210 65,89 97,188 97,298 0,37 -18,55 -55,55l-173 0c-37,0 -55,-10 -55,-29l0 -26c0,-96 -46,-176 -138,-241 -92,-65 -215,-97 -370,-97 -144,0 -260,28 -348,86 -87,58 -131,138 -131,240 0,95 42,169 125,220 83,50 214,101 392,152 163,45 296,89 398,131 101,43 189,105 262,187 73,81 110,187 110,317 0,183 -71,330 -214,440 -142,110 -333,165 -573,165z"/>
<path id="147" class="fil11" d="M149585 277580c-20,0 -34,-5 -43,-15 -8,-10 -11,-25 -8,-45l182 -880c8,-34 28,-51 59,-51l161 0c39,0 55,20 46,59l-228 885c-9,31 -30,47 -64,47l-105 0z"/>
<path id="148" class="fil11" d="M152438 275074c223,0 401,66 535,199 134,132 201,310 201,533l0 1384c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -47,-286 -140,-383 -93,-97 -214,-146 -364,-146 -144,0 -263,41 -358,123 -94,82 -149,189 -163,322l0 1409c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 978c0,8 3,15 9,19 5,4 10,2 13,-6 124,-170 313,-254 567,-254z"/>
<path id="149" class="fil11" d="M154013 274718c-68,0 -123,-20 -166,-61 -42,-41 -63,-94 -63,-159 0,-65 21,-117 63,-157 43,-39 98,-59 166,-59 67,0 122,20 165,59 42,40 63,92 63,157 0,65 -21,118 -63,159 -43,41 -98,61 -165,61zm-94 2527c-36,0 -55,-18 -55,-55l0 -2032c0,-36 19,-55 55,-55l191 0c37,0 55,19 55,55l0 2032c0,37 -18,55 -55,55l-191 0z"/>
<path id="150" class="fil11" d="M156189 275158c0,-36 18,-55 55,-55l190 0c37,0 55,19 55,55l0 2015c0,316 -92,548 -275,695 -184,146 -433,220 -749,220 -60,0 -105,-2 -136,-5 -37,-2 -55,-22 -55,-59l9 -169c0,-40 18,-57 55,-51 299,14 515,-30 649,-131 134,-102 202,-271 202,-508l0 -148c0,-9 -3,-14 -9,-17 -6,-3 -11,0 -17,8 -130,167 -313,250 -550,250 -184,0 -347,-49 -489,-148 -143,-99 -238,-239 -286,-419 -34,-116 -51,-288 -51,-517 0,-124 4,-228 11,-313 7,-85 22,-161 44,-229 51,-169 143,-305 275,-408 133,-103 293,-155 479,-155 245,0 434,81 567,242 6,8 11,11 17,8 6,-3 9,-8 9,-17l0 -144zm-22 1440c9,-43 14,-95 17,-157 3,-62 5,-152 5,-271 0,-144 -2,-241 -5,-290 -3,-49 -10,-95 -21,-138 -22,-118 -78,-216 -167,-294 -89,-77 -201,-116 -337,-116 -132,0 -244,38 -336,114 -92,76 -156,175 -193,296 -28,91 -42,232 -42,424 0,206 14,348 42,427 28,119 90,217 184,295 95,77 210,116 345,116 139,0 252,-38 341,-114 89,-77 145,-174 167,-292z"/>
<path id="151" class="fil11" d="M158022 275074c222,0 401,66 535,199 134,132 201,310 201,533l0 1384c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -47,-286 -140,-383 -93,-97 -215,-146 -364,-146 -144,0 -263,41 -358,123 -94,82 -149,189 -163,322l0 1409c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 978c0,8 3,15 9,19 5,4 9,2 12,-6 124,-170 314,-254 568,-254z"/>
<path id="152" class="fil11" d="M159829 277245c-31,0 -51,-15 -59,-46l-593 -2032c-3,-6 -4,-13 -4,-21 0,-12 5,-22 15,-30 10,-9 22,-13 36,-13l199 0c31,0 50,16 59,47l440 1651c3,8 7,12 13,12 6,0 10,-4 13,-12l453 -1651c8,-31 28,-47 59,-47l186 0c31,0 51,16 59,47l462 1651c3,8 7,12 12,12 6,0 10,-4 13,-12l453 -1651c9,-31 30,-47 64,-47l194 4c20,0 34,6 43,17 8,12 10,27 4,47l-601 2028c-9,31 -28,46 -59,46l-208 0c-31,0 -51,-15 -59,-46l-457 -1562c-3,-9 -7,-13 -13,-13 -6,0 -10,4 -13,13l-440 1562c-8,31 -28,46 -59,46l-212 0z"/>
<path id="153" class="fil11" d="M163123 275069c254,0 450,65 590,195 140,130 210,302 210,517l0 1409c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -152c0,-9 -3,-14 -8,-17 -6,-3 -12,0 -17,8 -77,82 -172,144 -286,187 -114,42 -239,63 -375,63 -197,0 -363,-51 -497,-152 -134,-102 -201,-257 -201,-466 0,-212 77,-379 230,-502 154,-122 368,-184 642,-184l491 0c14,0 21,-7 21,-21l0 -157c0,-143 -40,-257 -121,-340 -80,-84 -205,-125 -374,-125 -133,0 -242,25 -326,76 -85,51 -138,121 -161,212 -9,34 -30,48 -64,42l-207 -25c-37,-6 -54,-22 -51,-47 28,-155 115,-281 261,-377 145,-96 326,-144 544,-144zm-119 1952c167,0 311,-42 434,-125 123,-83 184,-195 184,-337l0 -326c0,-14 -7,-21 -21,-21l-445 0c-186,0 -335,38 -448,115 -113,76 -170,182 -170,317 0,124 44,218 132,282 87,63 199,95 334,95z"/>
<path id="154" class="fil11" d="M164422 278092c-20,0 -29,-18 -29,-55l0 -148c0,-37 9,-55 29,-55l30 0c110,0 195,-16 256,-47 61,-31 113,-86 157,-165 43,-79 91,-200 141,-364 3,-6 3,-14 0,-25l-711 -2066c-3,-6 -4,-13 -4,-21 0,-12 5,-22 15,-30 10,-9 22,-13 36,-13l199 0c34,0 55,16 63,47l546 1659c3,12 7,17 13,17 6,0 10,-5 13,-17l533 -1659c9,-31 28,-47 59,-47l204 0c19,0 33,6 42,17 8,11 10,27 4,47l-779 2265c-68,189 -131,328 -190,419 -60,90 -134,153 -223,188 -88,35 -213,53 -374,53l-30 0z"/>
<path id="155" class="fil11" d="M168021 277266c-159,0 -299,-25 -422,-76 -122,-51 -217,-118 -283,-203 -67,-85 -100,-179 -100,-284l0 -38c0,-36 19,-55 55,-55l182 0c17,0 31,4 40,11 10,7 15,16 15,27l0 38c0,94 48,175 144,244 96,69 218,104 364,104 147,0 266,-34 356,-100 90,-66 135,-150 135,-252 0,-70 -22,-128 -67,-173 -46,-45 -101,-81 -165,-106 -65,-26 -163,-58 -293,-98 -158,-45 -287,-90 -389,-135 -102,-45 -188,-108 -258,-188 -71,-81 -106,-183 -106,-307 0,-181 71,-325 214,-432 142,-107 329,-161 561,-161 155,0 292,25 412,76 120,51 213,121 278,210 65,89 97,188 97,298 0,37 -18,55 -55,55l-174 0c-36,0 -55,-10 -55,-29l0 -26c0,-96 -45,-176 -137,-241 -92,-65 -215,-97 -371,-97 -144,0 -259,28 -347,86 -87,58 -131,138 -131,240 0,95 42,169 125,220 83,50 214,101 391,152 164,45 297,89 398,131 102,43 189,105 263,187 73,81 110,187 110,317 0,183 -71,330 -214,440 -142,110 -334,165 -573,165z"/>
<path id="156" class="fil11" d="M169540 274718c-67,0 -122,-20 -165,-61 -42,-41 -63,-94 -63,-159 0,-65 21,-117 63,-157 43,-39 98,-59 165,-59 68,0 123,20 165,59 43,40 64,92 64,157 0,65 -21,118 -64,159 -42,41 -97,61 -165,61zm-93 2527c-36,0 -55,-18 -55,-55l0 -2032c0,-36 19,-55 55,-55l191 0c36,0 55,19 55,55l0 2032c0,37 -19,55 -55,55l-191 0z"/>
<path id="157" class="fil11" d="M171716 275158c0,-36 19,-55 55,-55l191 0c37,0 55,19 55,55l0 2015c0,316 -92,548 -275,695 -184,146 -434,220 -750,220 -59,0 -104,-2 -135,-5 -37,-2 -55,-22 -55,-59l8 -169c0,-40 19,-57 55,-51 300,14 516,-30 650,-131 134,-102 201,-271 201,-508l0 -148c0,-9 -3,-14 -8,-17 -6,-3 -11,0 -17,8 -130,167 -313,250 -550,250 -184,0 -347,-49 -489,-148 -143,-99 -238,-239 -286,-419 -34,-116 -51,-288 -51,-517 0,-124 4,-228 11,-313 7,-85 22,-161 44,-229 51,-169 143,-305 275,-408 133,-103 292,-155 479,-155 245,0 434,81 567,242 6,8 11,11 17,8 5,-3 8,-8 8,-17l0 -144zm-21 1440c9,-43 14,-95 17,-157 3,-62 4,-152 4,-271 0,-144 -1,-241 -4,-290 -3,-49 -10,-95 -21,-138 -23,-118 -78,-216 -167,-294 -89,-77 -201,-116 -337,-116 -133,0 -245,38 -336,114 -92,76 -156,175 -193,296 -28,91 -42,232 -42,424 0,206 14,348 42,427 28,119 90,217 184,295 95,77 210,116 345,116 138,0 252,-38 341,-114 89,-77 145,-174 167,-292z"/>
<path id="158" class="fil11" d="M173549 275074c223,0 402,66 536,199 134,132 201,310 201,533l0 1384c0,37 -18,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -1325c0,-158 -46,-286 -139,-383 -93,-97 -215,-146 -364,-146 -144,0 -264,41 -358,123 -95,82 -149,189 -163,322l0 1409c0,37 -18,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -2032c0,-36 19,-55 55,-55l191 0c37,0 55,19 55,55l0 157c0,8 3,15 8,19 6,4 10,2 13,-6 124,-170 313,-254 567,-254z"/>
<path id="159" class="fil11" d="M175645 277266c-158,0 -299,-25 -421,-76 -123,-51 -218,-118 -284,-203 -66,-85 -100,-179 -100,-284l0 -38c0,-36 19,-55 55,-55l182 0c17,0 31,4 41,11 10,7 15,16 15,27l0 38c0,94 47,175 143,244 96,69 218,104 365,104 146,0 265,-34 355,-100 90,-66 136,-150 136,-252 0,-70 -23,-128 -68,-173 -45,-45 -100,-81 -165,-106 -65,-26 -163,-58 -292,-98 -158,-45 -288,-90 -390,-135 -101,-45 -187,-108 -258,-188 -71,-81 -106,-183 -106,-307 0,-181 71,-325 214,-432 142,-107 329,-161 561,-161 155,0 293,25 413,76 119,51 212,121 277,210 65,89 97,188 97,298 0,37 -18,55 -55,55l-173 0c-37,0 -55,-10 -55,-29l0 -26c0,-96 -46,-176 -138,-241 -92,-65 -215,-97 -370,-97 -144,0 -260,28 -348,86 -87,58 -131,138 -131,240 0,95 42,169 125,220 83,50 214,101 392,152 163,45 296,89 398,131 101,43 189,105 262,187 73,81 110,187 110,317 0,183 -71,330 -214,440 -142,110 -333,165 -573,165z"/>
<path id="160" class="fil11" d="M176983 277580c-20,0 -34,-5 -43,-15 -8,-10 -11,-25 -8,-45l182 -880c8,-34 28,-51 59,-51l161 0c39,0 55,20 46,59l-228 885c-9,31 -30,47 -64,47l-105 0z"/>
<path id="161" class="fil11" d="M120536 280949c33,116 50,291 50,525 0,232 -19,411 -59,538 -51,175 -143,313 -277,415 -134,101 -300,152 -498,152 -112,0 -215,-22 -307,-68 -91,-45 -168,-108 -230,-190 -6,-6 -12,-8 -17,-6 -6,1 -9,6 -9,14l0 161c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2853c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 978c0,8 3,14 9,17 5,3 11,0 17,-9 62,-81 139,-144 233,-188 93,-44 194,-66 304,-66 201,0 369,52 504,155 136,103 229,245 280,425zm-326 1038c28,-60 48,-127 59,-202 11,-74 17,-178 17,-311 0,-138 -8,-246 -23,-324 -16,-77 -41,-147 -75,-209 -36,-93 -96,-168 -177,-224 -82,-57 -180,-85 -292,-85 -108,0 -200,29 -278,87 -77,58 -133,134 -167,230 -28,60 -48,128 -59,206 -12,77 -17,184 -17,319 0,136 5,242 17,318 11,76 29,142 55,199 36,99 93,178 169,237 76,59 171,89 284,89 118,0 221,-30 307,-89 86,-59 146,-140 180,-241z"/>
<path id="162" class="fil11" d="M122479 280458c0,-36 18,-55 55,-55l190 0c37,0 55,19 55,55l0 2032c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -161c0,-8 -3,-14 -9,-16 -6,-3 -11,0 -17,8 -121,169 -307,254 -559,254 -135,0 -260,-28 -374,-83 -115,-55 -205,-134 -271,-239 -66,-104 -100,-230 -100,-377l0 -1418c0,-36 19,-55 55,-55l191 0c37,0 55,19 55,55l0 1330c0,160 45,288 135,383 91,94 213,142 369,142 161,0 288,-48 383,-144 94,-96 142,-223 142,-381l0 -1330z"/>
<path id="163" class="fil11" d="M124155 282567c-158,0 -299,-26 -421,-77 -123,-50 -218,-118 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-36 18,-55 55,-55l182 0c17,0 30,4 40,11 10,7 15,16 15,27l0 39c0,93 48,174 144,243 96,69 217,104 364,104 146,0 265,-33 355,-100 91,-66 136,-150 136,-252 0,-70 -23,-128 -68,-173 -45,-45 -100,-81 -165,-106 -65,-25 -162,-58 -292,-97 -158,-46 -288,-91 -390,-136 -101,-45 -187,-108 -258,-188 -70,-81 -106,-183 -106,-307 0,-181 72,-325 214,-432 143,-107 330,-161 561,-161 155,0 293,26 413,76 120,51 212,121 277,210 65,89 97,188 97,298 0,37 -18,55 -55,55l-173 0c-37,0 -55,-10 -55,-29l0 -26c0,-96 -46,-176 -138,-241 -92,-65 -215,-97 -370,-97 -144,0 -260,29 -347,86 -88,58 -132,138 -132,240 0,96 42,169 125,220 84,51 214,101 392,152 164,45 296,89 398,131 101,43 189,105 262,187 74,82 110,187 110,317 0,184 -71,330 -213,440 -143,110 -334,166 -574,166z"/>
<path id="164" class="fil11" d="M126132 282567c-158,0 -299,-26 -421,-77 -123,-50 -218,-118 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-36 18,-55 55,-55l182 0c17,0 30,4 40,11 10,7 15,16 15,27l0 39c0,93 48,174 144,243 96,69 217,104 364,104 146,0 265,-33 355,-100 91,-66 136,-150 136,-252 0,-70 -23,-128 -68,-173 -45,-45 -100,-81 -165,-106 -65,-25 -162,-58 -292,-97 -158,-46 -288,-91 -390,-136 -101,-45 -187,-108 -258,-188 -70,-81 -106,-183 -106,-307 0,-181 72,-325 214,-432 143,-107 330,-161 561,-161 155,0 293,26 413,76 120,51 212,121 277,210 65,89 97,188 97,298 0,37 -18,55 -55,55l-173 0c-37,0 -55,-10 -55,-29l0 -26c0,-96 -46,-176 -138,-241 -92,-65 -215,-97 -370,-97 -144,0 -260,29 -347,86 -88,58 -132,138 -132,240 0,96 42,169 125,220 84,51 214,101 392,152 164,45 296,89 398,131 101,43 189,105 262,187 74,82 110,187 110,317 0,184 -71,330 -213,440 -143,110 -334,166 -574,166z"/>
<path id="165" class="fil11" d="M128304 282321c127,-3 236,-32 328,-87 91,-55 163,-132 214,-231 5,-14 15,-24 29,-29 14,-6 28,-4 43,4l122 68c34,20 43,44 26,72 -68,141 -170,253 -305,336 -136,84 -296,125 -483,125 -197,0 -364,-46 -499,-139 -136,-94 -233,-223 -292,-390 -54,-141 -81,-336 -81,-584 0,-121 2,-218 7,-290 4,-72 14,-139 31,-201 48,-184 145,-330 290,-440 146,-111 321,-166 527,-166 246,0 438,64 578,191 140,127 229,306 269,538 17,90 25,231 25,423 0,37 -18,55 -55,55l-1354 0c-14,0 -21,7 -21,21 0,141 8,244 25,309 31,127 97,228 197,303 100,75 226,112 379,112zm-43 -1689c-141,0 -256,36 -347,108 -90,72 -149,168 -178,290 -17,56 -28,152 -33,288 0,14 7,21 21,21l1088 0c14,0 21,-7 21,-21 -6,-124 -14,-215 -26,-271 -31,-127 -93,-228 -188,-303 -94,-75 -214,-112 -358,-112z"/>
<path id="166" class="fil11" d="M130433 282567c-158,0 -298,-26 -421,-77 -123,-50 -217,-118 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-36 18,-55 55,-55l182 0c17,0 30,4 40,11 10,7 15,16 15,27l0 39c0,93 48,174 144,243 96,69 217,104 364,104 147,0 265,-33 355,-100 91,-66 136,-150 136,-252 0,-70 -23,-128 -68,-173 -45,-45 -100,-81 -165,-106 -65,-25 -162,-58 -292,-97 -158,-46 -288,-91 -390,-136 -101,-45 -187,-108 -258,-188 -70,-81 -106,-183 -106,-307 0,-181 72,-325 214,-432 143,-107 330,-161 561,-161 155,0 293,26 413,76 120,51 212,121 277,210 65,89 98,188 98,298 0,37 -19,55 -56,55l-173 0c-37,0 -55,-10 -55,-29l0 -26c0,-96 -46,-176 -138,-241 -91,-65 -215,-97 -370,-97 -144,0 -260,29 -347,86 -88,58 -131,138 -131,240 0,96 41,169 124,220 84,51 214,101 392,152 164,45 296,89 398,131 102,43 189,105 262,187 74,82 110,187 110,317 0,184 -71,330 -213,440 -143,110 -334,166 -574,166z"/>
<path id="167" class="fil11" d="M131771 282880c-20,0 -34,-5 -43,-15 -8,-10 -11,-25 -8,-44l182 -881c9,-34 28,-51 59,-51l161 0c40,0 55,20 47,59l-229 885c-8,31 -29,47 -63,47l-106 0z"/>
<path id="168" class="fil11" d="M134476 280369c254,0 451,65 590,195 140,130 210,302 210,517l0 1409c0,37 -18,55 -55,55l-190 0c-37,0 -56,-18 -56,-55l0 -152c0,-9 -2,-14 -8,-17 -6,-3 -11,0 -17,8 -76,82 -171,144 -286,187 -114,42 -239,63 -374,63 -198,0 -364,-51 -498,-152 -134,-102 -201,-257 -201,-466 0,-212 77,-379 231,-501 154,-123 367,-185 641,-185l491 0c14,0 21,-7 21,-21l0 -156c0,-144 -40,-258 -120,-341 -81,-83 -205,-125 -375,-125 -132,0 -241,25 -326,76 -84,51 -138,121 -161,212 -8,34 -29,48 -63,42l-208 -25c-36,-6 -53,-21 -50,-47 28,-155 115,-281 260,-377 145,-96 327,-144 544,-144zm-119 1952c167,0 312,-42 434,-125 123,-83 184,-195 184,-336l0 -326c0,-15 -7,-22 -21,-22l-444 0c-186,0 -336,39 -449,115 -113,76 -169,182 -169,317 0,124 43,218 131,282 87,63 199,95 334,95z"/>
<path id="169" class="fil11" d="M136787 280374c223,0 402,66 536,199 134,132 201,310 201,533l0 1384c0,37 -18,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -1325c0,-158 -46,-285 -139,-383 -93,-97 -215,-146 -364,-146 -144,0 -264,41 -358,123 -95,82 -149,189 -163,322l0 1409c0,37 -18,55 -55,55l-191 0c-36,0 -55,-18 -55,-55l0 -2032c0,-36 19,-55 55,-55l191 0c37,0 55,19 55,55l0 157c0,8 3,15 8,19 6,4 10,2 13,-6 124,-170 313,-254 567,-254z"/>
<path id="170" class="fil11" d="M139497 279637c0,-37 18,-55 55,-55l190 0c37,0 55,18 55,55l0 2853c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -161c0,-8 -3,-13 -9,-14 -6,-2 -11,0 -17,6 -62,82 -139,145 -231,190 -91,46 -194,68 -306,68 -198,0 -364,-51 -498,-152 -134,-102 -226,-240 -277,-415 -40,-127 -59,-306 -59,-538 0,-234 17,-409 50,-525 51,-180 144,-322 280,-425 135,-103 303,-155 504,-155 110,0 211,22 304,66 93,44 171,107 233,188 6,9 11,12 17,9 6,-3 9,-9 9,-17l0 -978zm-81 2354c26,-57 44,-123 55,-199 11,-76 17,-182 17,-318 0,-135 -6,-242 -17,-319 -11,-78 -31,-146 -59,-206 -34,-96 -90,-172 -167,-230 -78,-58 -170,-87 -278,-87 -112,0 -210,28 -292,85 -82,56 -141,131 -177,224 -34,62 -59,132 -75,209 -15,78 -23,186 -23,324 0,133 6,237 17,311 11,75 31,142 59,202 34,101 94,182 180,241 86,59 189,89 307,89 113,0 208,-30 284,-89 76,-59 132,-138 169,-237z"/>
<path id="171" class="fil11" d="M142282 280598c0,37 -18,55 -55,55l-461 0c-15,0 -22,7 -22,21l0 1236c0,136 31,231 91,286 61,55 156,83 286,83l93 0c37,0 55,18 55,55l0 148c0,37 -18,56 -55,59l-144 0c-203,0 -357,-38 -461,-114 -104,-76 -157,-217 -157,-424l0 -1329c0,-14 -7,-21 -21,-21l-241 0c-37,0 -55,-18 -55,-55l0 -140c0,-36 18,-55 55,-55l241 0c14,0 21,-7 21,-21l0 -474c0,-37 19,-55 55,-55l182 0c37,0 55,18 55,55l0 474c0,14 7,21 22,21l461 0c37,0 55,19 55,55l0 140z"/>
<path id="172" class="fil11" d="M143726 280382c93,0 170,17 232,51 29,11 39,34 30,68l-42 186c-9,34 -31,45 -68,34 -54,-17 -123,-24 -207,-21 -147,5 -269,60 -364,163 -96,103 -144,233 -144,391l0 1236c0,37 -19,55 -55,55l-191 0c-37,0 -55,-18 -55,-55l0 -2032c0,-36 18,-55 55,-55l191 0c36,0 55,19 55,55l0 237c0,12 2,18 6,19 4,2 9,-2 15,-10 59,-102 135,-181 226,-237 92,-57 197,-85 316,-85z"/>
<path id="173" class="fil11" d="M145135 280369c254,0 451,65 591,195 140,130 209,302 209,517l0 1409c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -152c0,-9 -3,-14 -9,-17 -5,-3 -11,0 -17,8 -76,82 -171,144 -285,187 -115,42 -239,63 -375,63 -197,0 -363,-51 -497,-152 -134,-102 -201,-257 -201,-466 0,-212 76,-379 230,-501 154,-123 368,-185 642,-185l491 0c14,0 21,-7 21,-21l0 -156c0,-144 -40,-258 -121,-341 -80,-83 -205,-125 -374,-125 -133,0 -242,25 -326,76 -85,51 -139,121 -161,212 -9,34 -30,48 -64,42l-207 -25c-37,-6 -54,-21 -51,-47 28,-155 115,-281 260,-377 146,-96 327,-144 544,-144zm-118 1952c166,0 311,-42 434,-125 122,-83 184,-195 184,-336l0 -326c0,-15 -7,-22 -21,-22l-445 0c-186,0 -336,39 -449,115 -112,76 -169,182 -169,317 0,124 44,218 131,282 88,63 199,95 335,95z"/>
<path id="174" class="fil11" d="M146740 280018c-68,0 -123,-20 -165,-61 -43,-41 -64,-94 -64,-159 0,-65 21,-117 64,-157 42,-39 97,-59 165,-59 67,0 123,20 165,59 42,40 63,92 63,157 0,65 -21,118 -63,159 -42,41 -98,61 -165,61zm-93 2527c-37,0 -55,-18 -55,-55l0 -2032c0,-36 18,-55 55,-55l190 0c37,0 55,19 55,55l0 2032c0,37 -18,55 -55,55l-190 0z"/>
<path id="175" class="fil11" d="M148484 280374c223,0 401,66 535,199 134,132 202,310 202,533l0 1384c0,37 -19,55 -56,55l-190 0c-37,0 -55,-18 -55,-55l0 -1325c0,-158 -47,-285 -140,-383 -93,-97 -214,-146 -364,-146 -144,0 -263,41 -358,123 -94,82 -148,189 -163,322l0 1409c0,37 -18,55 -55,55l-190 0c-37,0 -55,-18 -55,-55l0 -2032c0,-36 18,-55 55,-55l190 0c37,0 55,19 55,55l0 157c0,8 3,15 9,19 6,4 10,2 13,-6 124,-170 313,-254 567,-254z"/>
<path id="176" class="fil11" d="M150579 282567c-158,0 -298,-26 -421,-77 -123,-50 -217,-118 -284,-203 -66,-85 -99,-179 -99,-284l0 -38c0,-36 18,-55 55,-55l182 0c17,0 30,4 40,11 10,7 15,16 15,27l0 39c0,93 48,174 144,243 96,69 217,104 364,104 147,0 265,-33 356,-100 90,-66 135,-150 135,-252 0,-70 -22,-128 -68,-173 -45,-45 -100,-81 -165,-106 -65,-25 -162,-58 -292,-97 -158,-46 -288,-91 -389,-136 -102,-45 -188,-108 -258,-188 -71,-81 -106,-183 -106,-307 0,-181 71,-325 213,-432 143,-107 330,-161 561,-161 156,0 293,26 413,76 120,51 213,121 277,210 65,89 98,188 98,298 0,37 -19,55 -55,55l-174 0c-36,0 -55,-10 -55,-29l0 -26c0,-96 -46,-176 -137,-241 -92,-65 -216,-97 -371,-97 -144,0 -259,29 -347,86 -87,58 -131,138 -131,240 0,96 41,169 125,220 83,51 213,101 391,152 164,45 297,89 398,131 102,43 189,105 263,187 73,82 110,187 110,317 0,184 -72,330 -214,440 -143,110 -334,166 -574,166z"/>
<path id="177" class="fil11" d="M152150 282533c-76,0 -139,-24 -188,-72 -50,-48 -75,-108 -75,-178 0,-68 27,-126 79,-176 52,-49 113,-74 184,-74 68,0 128,25 182,74 54,50 80,108 80,176 0,70 -25,130 -76,178 -51,48 -113,72 -186,72z"/>
<path id="178" class="fil11" d="M120938 290182c36,0 52,19 46,55l-17 157c-2,17 -10,30 -21,40 -11,10 -25,15 -42,15l-788 0c-14,0 -21,7 -21,21l-321 2621c-3,16 -10,30 -22,40 -11,10 -24,15 -38,15l-186 0c-37,0 -52,-19 -47,-55l322 -2621c0,-14 -5,-21 -17,-21l-757 0c-37,0 -53,-18 -47,-55l21 -157c6,-36 26,-55 59,-55l1876 0z"/>
<path id="179" class="fil11" d="M122263 290974c195,0 348,55 461,165 113,110 170,260 170,449 0,22 -3,62 -9,118l-169 1385c-6,36 -26,55 -60,55l-186 0c-14,0 -26,-5 -36,-15 -10,-10 -13,-24 -10,-40l165 -1326c3,-19 4,-47 4,-84 0,-136 -38,-244 -114,-324 -77,-80 -181,-121 -314,-121 -138,0 -258,41 -359,123 -102,82 -168,189 -199,322l-174 1410c-3,16 -10,30 -21,40 -11,10 -26,15 -42,15l-182 0c-37,0 -53,-19 -47,-55l351 -2854c6,-36 26,-55 60,-55l182 0c36,0 52,19 46,55l-118 978c0,9 2,15 6,19 4,4 9,2 15,-6 135,-169 329,-254 580,-254z"/>
<path id="180" class="fil11" d="M124185 292921c124,-3 234,-32 330,-87 96,-55 173,-132 233,-230 8,-14 19,-24 34,-30 14,-6 26,-4 38,4l114 68c17,8 25,21 25,38 0,9 -4,20 -12,34 -82,141 -194,253 -337,337 -142,83 -304,124 -485,124 -192,0 -347,-46 -467,-139 -120,-93 -199,-223 -235,-390 -17,-82 -26,-169 -26,-262 0,-82 7,-189 21,-322 15,-121 29,-218 43,-290 14,-72 32,-139 55,-201 68,-183 179,-330 334,-440 155,-110 333,-165 534,-165 245,0 429,69 550,207 121,138 182,330 182,576 0,90 -10,213 -30,368 -5,37 -25,55 -59,55l-1312 0c-17,0 -26,7 -26,21 -11,82 -17,160 -17,233 0,147 46,265 136,356 90,90 216,135 377,135zm165 -1689c-136,0 -251,36 -347,108 -96,72 -167,169 -212,290 -23,59 -45,155 -68,288 0,14 6,21 17,21l1059 0c14,0 21,-7 21,-21 8,-127 11,-217 8,-271 -14,-127 -63,-228 -146,-303 -83,-75 -194,-112 -332,-112z"/>
<path id="181" class="fil11" d="M128058 291600c-17,9 -18,17 -4,26 121,53 212,130 273,231 61,100 91,219 91,357 0,28 -3,71 -9,127 -31,254 -134,452 -309,593 -175,141 -390,212 -647,212l-982 0c-14,0 -26,-5 -36,-15 -10,-10 -14,-24 -11,-40l351 -2854c3,-17 10,-30 22,-40 11,-10 24,-15 38,-15l952 0c243,0 432,57 567,170 136,112 204,273 204,482 0,186 -44,344 -132,474 -87,130 -210,227 -368,292zm-995 -1155c-11,0 -19,7 -25,21l-123 1007c0,15 6,22 17,22l694 0c189,0 343,-55 460,-163 117,-109 175,-252 175,-430 0,-141 -45,-253 -135,-335 -90,-81 -213,-122 -368,-122l-695 0zm424 2434c189,0 343,-60 461,-180 119,-120 178,-277 178,-472 0,-147 -46,-263 -138,-349 -91,-86 -218,-129 -379,-129l-707 0c-14,0 -21,7 -21,21l-135 1088c0,14 5,21 17,21l724 0z"/>
<path id="182" class="fil11" d="M130391 291059c3,-17 10,-31 21,-41 11,-10 25,-14 42,-14l182 0c37,0 52,18 47,55l-250 2032c-6,36 -25,55 -59,55l-182 0c-34,0 -51,-19 -51,-55l21 -157c3,-9 2,-14 -4,-17 -6,-3 -13,0 -21,8 -71,82 -153,145 -246,189 -93,44 -193,65 -300,65 -192,0 -347,-50 -464,-152 -117,-102 -190,-240 -218,-415 -11,-53 -17,-118 -17,-195 0,-101 9,-215 26,-342 28,-235 66,-410 114,-525 70,-181 178,-323 322,-426 143,-103 313,-154 508,-154 107,0 202,21 285,63 84,42 151,105 201,186 3,9 8,12 15,9 7,-3 11,-9 11,-17l17 -152zm-259 1532c32,-59 57,-126 77,-201 19,-75 38,-180 55,-315 14,-102 21,-201 21,-297 0,-79 -10,-155 -30,-228 -22,-96 -67,-173 -133,-231 -66,-58 -153,-87 -260,-87 -108,0 -205,28 -293,85 -87,56 -155,131 -203,224 -39,62 -71,133 -95,212 -24,79 -44,186 -61,322 -14,98 -22,194 -22,287 0,77 10,151 30,225 23,101 72,182 148,241 76,59 171,89 284,89 110,0 206,-29 288,-87 82,-58 146,-137 194,-239z"/>
<path id="183" class="fil11" d="M132190 290982c87,0 161,17 220,51 23,11 30,34 21,68l-68 186c-8,37 -31,48 -67,34 -51,-17 -117,-24 -199,-21 -144,5 -268,60 -373,163 -104,103 -166,233 -186,391l-152 1237c-3,16 -10,30 -22,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-19 -47,-55l250 -2032c6,-37 26,-55 59,-55l187 0c14,0 26,4 36,14 10,10 13,24 10,41l-29 237c-3,11 -2,17 4,19 6,1 11,-2 17,-11 68,-102 149,-181 245,-237 96,-56 202,-85 318,-85z"/>
<path id="184" class="fil11" d="M132634 293146c-36,0 -52,-19 -46,-55l351 -2854c6,-36 26,-55 59,-55l183 0c36,0 52,19 46,55l-347 2854c-3,16 -10,30 -21,40 -12,10 -26,15 -43,15l-182 0z"/>
<path id="185" class="fil11" d="M134324 293179c-201,0 -365,-52 -494,-156 -128,-105 -208,-249 -239,-432 -8,-59 -13,-127 -13,-203 0,-85 8,-191 22,-318 25,-209 63,-381 114,-516 76,-181 192,-323 347,-428 155,-104 333,-156 533,-156 198,0 361,52 489,156 129,105 209,246 240,424 8,62 12,129 12,203 0,84 -7,190 -21,317 -28,215 -68,388 -118,521 -77,183 -192,327 -348,432 -155,104 -330,156 -524,156zm33 -262c130,0 247,-37 350,-112 103,-75 178,-176 226,-303 31,-82 59,-224 85,-427 17,-127 25,-236 25,-326 0,-48 -1,-82 -4,-102 -14,-127 -64,-228 -150,-303 -86,-75 -197,-112 -333,-112 -132,0 -249,37 -349,112 -100,75 -176,176 -226,303 -31,76 -60,219 -85,428 -17,127 -25,235 -25,325 0,159 43,284 129,377 86,93 205,140 357,140z"/>
<path id="186" class="fil11" d="M136131 293146c-31,0 -48,-16 -51,-47l-326 -2032 0 -13c0,-14 5,-26 15,-36 10,-10 22,-14 36,-14l195 0c31,0 48,15 51,46l224 1651c3,9 7,13 13,13 5,0 10,-4 12,-13l644 -1651c11,-31 32,-46 63,-46l178 0c34,0 52,15 55,46l242 1651c2,9 7,13 12,13 6,0 10,-4 13,-13l643 -1651c12,-31 34,-46 68,-46l186 4c20,0 34,5 41,17 7,11 6,26 -2,46l-830 2028c-11,31 -33,47 -64,47l-203 0c-31,0 -48,-16 -51,-47l-254 -1562c0,-9 -3,-13 -8,-13 -6,0 -10,4 -13,13l-622 1562c-11,31 -33,47 -64,47l-203 0z"/>
<path id="187" class="fil11" d="M141283 291537c11,56 17,123 17,199 0,56 -8,169 -25,339 -29,234 -67,409 -115,524 -70,181 -177,323 -321,426 -144,103 -314,154 -508,154 -110,0 -207,-21 -290,-65 -84,-44 -151,-107 -201,-189 -3,-8 -7,-11 -13,-8 -6,3 -10,8 -13,17l-118 978c-3,17 -10,30 -22,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-19 -46,-55l351 -2853c6,-37 25,-55 59,-55l182 0c37,0 52,18 47,55l-17 160c-3,9 -2,14 4,15 6,2 11,0 17,-6 71,-82 153,-145 248,-191 94,-45 197,-67 307,-67 191,0 346,50 463,152 117,102 190,240 218,415zm-461 1071c42,-62 75,-132 99,-210 24,-77 45,-185 62,-323 14,-99 21,-195 21,-288 0,-77 -10,-151 -30,-225 -22,-101 -72,-182 -148,-241 -76,-59 -171,-89 -284,-89 -110,0 -206,30 -290,89 -83,59 -147,138 -192,237 -31,59 -57,126 -76,201 -20,75 -39,180 -56,316 -14,101 -21,200 -21,296 0,79 10,155 30,228 23,96 67,173 133,231 67,58 153,87 261,87 107,0 204,-28 292,-85 87,-56 154,-131 199,-224z"/>
<path id="188" class="fil11" d="M142828 290982c88,0 161,17 220,51 23,11 30,34 22,68l-68 186c-9,37 -31,48 -68,34 -51,-17 -117,-24 -199,-21 -144,5 -268,60 -372,163 -105,103 -167,233 -187,391l-152 1237c-3,16 -10,30 -21,40 -12,10 -26,15 -43,15l-182 0c-36,0 -52,-19 -46,-55l250 -2032c5,-37 25,-55 59,-55l186 0c14,0 26,4 36,14 10,10 14,24 11,41l-30 237c-3,11 -1,17 4,19 6,1 12,-2 17,-11 68,-102 150,-181 246,-237 96,-56 202,-85 317,-85z"/>
<path id="189" class="fil11" d="M143988 293179c-200,0 -365,-52 -493,-156 -128,-105 -208,-249 -239,-432 -9,-59 -13,-127 -13,-203 0,-85 7,-191 21,-318 26,-209 64,-381 115,-516 76,-181 192,-323 347,-428 155,-104 333,-156 533,-156 198,0 361,52 489,156 128,105 208,246 239,424 9,62 13,129 13,203 0,84 -7,190 -21,317 -28,215 -68,388 -119,521 -76,183 -192,327 -347,432 -155,104 -330,156 -525,156zm34 -262c130,0 246,-37 349,-112 103,-75 179,-176 227,-303 31,-82 59,-224 84,-427 17,-127 26,-236 26,-326 0,-48 -2,-82 -4,-102 -14,-127 -65,-228 -151,-303 -86,-75 -196,-112 -332,-112 -133,0 -249,37 -349,112 -100,75 -176,176 -227,303 -31,76 -59,219 -84,428 -17,127 -26,235 -26,325 0,159 43,284 129,377 86,93 206,140 358,140z"/>
<path id="190" class="fil11" d="M145906 290627c-59,0 -107,-17 -144,-51 -37,-34 -55,-79 -55,-136 0,-70 26,-130 78,-179 52,-50 111,-75 176,-75 59,0 107,18 144,53 36,36 55,82 55,138 0,71 -24,130 -72,178 -48,48 -109,72 -182,72zm-991 3399c-36,0 -52,-18 -46,-55l17 -148c5,-37 25,-55 59,-55 288,-9 449,-154 482,-436l280 -2273c6,-37 25,-55 59,-55l186 0c15,0 27,4 36,14 10,10 14,24 11,41l-279 2273c-31,240 -110,415 -237,525 -127,110 -317,166 -568,169z"/>
<path id="191" class="fil11" d="M147235 292921c124,-3 234,-32 330,-87 96,-55 174,-132 233,-230 9,-14 20,-24 34,-30 14,-6 27,-4 38,4l114 68c17,8 26,21 26,38 0,9 -4,20 -13,34 -82,141 -194,253 -336,337 -143,83 -305,124 -485,124 -192,0 -348,-46 -468,-139 -120,-93 -198,-223 -235,-390 -17,-82 -25,-169 -25,-262 0,-82 7,-189 21,-322 14,-121 28,-218 42,-290 14,-72 33,-139 55,-201 68,-183 179,-330 335,-440 155,-110 333,-165 533,-165 246,0 429,69 550,207 122,138 182,330 182,576 0,90 -9,213 -29,368 -6,37 -26,55 -59,55l-1313 0c-17,0 -25,7 -25,21 -12,82 -17,160 -17,233 0,147 45,265 135,356 91,90 216,135 377,135zm165 -1689c-135,0 -251,36 -347,108 -96,72 -166,169 -212,290 -22,59 -45,155 -67,288 0,14 5,21 17,21l1058 0c14,0 21,-7 21,-21 9,-127 11,-217 9,-271 -15,-127 -63,-228 -147,-303 -83,-75 -194,-112 -332,-112z"/>
<path id="192" class="fil11" d="M149369 293179c-198,0 -360,-52 -487,-158 -127,-106 -206,-249 -237,-430 -9,-56 -13,-116 -13,-178 0,-101 8,-217 25,-347 26,-209 65,-381 119,-516 71,-175 183,-316 339,-422 155,-105 331,-158 529,-158 200,0 367,52 499,156 133,105 212,235 237,390 6,28 9,66 9,114 0,37 -19,58 -55,64l-182 21 -13 0c-28,0 -42,-16 -42,-47l-4 -51c-12,-107 -61,-198 -149,-273 -87,-75 -199,-112 -334,-112 -136,0 -254,37 -356,112 -101,75 -173,175 -216,299 -39,101 -69,244 -88,427 -15,110 -22,216 -22,318 0,56 2,94 5,114 11,124 57,224 139,301 82,76 192,114 330,114 136,0 256,-36 360,-108 105,-72 175,-163 212,-273 6,-6 8,-13 8,-21 0,0 0,-1 0,-2 0,-2 2,-2 5,-2 8,-37 31,-53 67,-47l174 30c17,2 29,9 36,21 7,11 8,25 2,42l-21 72c-62,164 -173,296 -332,398 -160,102 -341,152 -544,152z"/>
<path id="193" class="fil11" d="M151896 291198c-3,17 -10,31 -21,40 -12,10 -24,15 -38,15l-449 0c-11,0 -20,7 -25,21l-149 1237c-2,22 -4,53 -4,93 0,98 26,169 78,211 53,43 134,64 244,64l93 0c14,0 26,5 36,15 10,10 13,23 11,40l-22 148c-5,37 -25,56 -59,59l-140 0c-177,0 -312,-30 -404,-91 -92,-60 -137,-170 -137,-328 0,-22 2,-62 8,-118l165 -1330c0,-14 -7,-21 -21,-21l-233 0c-37,0 -52,-18 -46,-55l16 -139c6,-37 26,-55 60,-55l237 0c5,0 10,-3 15,-7 4,-4 6,-9 6,-15l59 -474c6,-36 26,-55 60,-55l177 0c14,0 26,5 36,15 10,10 14,23 11,40l-59 474c0,14 5,22 17,22l448 0c37,0 52,18 47,55l-17 139z"/>
<path id="194" class="fil11" d="M153526 290618c-59,0 -107,-17 -144,-51 -37,-33 -55,-79 -55,-135 0,-71 24,-130 72,-178 48,-48 108,-72 182,-72 59,0 107,17 144,51 36,34 55,78 55,131 0,74 -24,134 -72,182 -48,48 -109,72 -182,72zm-398 2528c-37,0 -52,-19 -47,-55l246 -2032c3,-17 10,-31 21,-41 11,-10 25,-14 42,-14l182 0c37,0 53,18 47,55l-250 2032c-5,36 -25,55 -59,55l-182 0z"/>
<path id="195" class="fil11" d="M154728 293167c-217,0 -391,-48 -521,-144 -129,-96 -194,-218 -194,-364 0,-26 1,-44 4,-55l4 -38c6,-37 25,-55 59,-55l178 0c14,0 26,3 36,10 10,7 14,16 11,28l-5 38c-11,93 26,174 111,243 84,69 197,104 338,104 150,0 275,-38 375,-112 100,-75 150,-168 150,-278 0,-62 -20,-112 -61,-152 -41,-39 -88,-71 -142,-93 -54,-23 -141,-54 -263,-93 -141,-45 -256,-88 -345,-129 -88,-41 -163,-97 -224,-168 -61,-70 -91,-159 -91,-266 0,-28 1,-51 4,-68 23,-181 110,-325 263,-432 152,-107 340,-161 563,-161 211,0 381,49 508,146 127,98 190,223 190,375 0,28 -1,49 -4,64 -3,16 -10,30 -21,40 -11,10 -25,15 -42,15l-166 0c-16,0 -30,-3 -40,-9 -10,-6 -13,-13 -10,-21l4 -25c11,-96 -24,-177 -106,-242 -82,-65 -197,-97 -347,-97 -147,0 -267,32 -362,97 -95,65 -142,153 -142,263 0,84 37,150 110,197 74,46 188,93 343,141 147,46 265,87 354,125 89,38 165,93 228,165 64,72 95,163 95,273 0,31 -1,55 -4,72 -22,184 -110,331 -262,441 -153,110 -345,165 -576,165z"/>
<path id="196" class="fil11" d="M156904 293146c-37,0 -52,-19 -47,-55l352 -2854c5,-36 25,-55 59,-55l182 0c37,0 52,19 47,55l-347 2854c-3,16 -10,30 -22,40 -11,10 -25,15 -42,15l-182 0z"/>
<path id="197" class="fil11" d="M158640 292921c124,-3 234,-32 330,-87 96,-55 173,-132 233,-230 8,-14 19,-24 34,-30 14,-6 26,-4 38,4l114 68c17,8 25,21 25,38 0,9 -4,20 -12,34 -82,141 -194,253 -337,337 -142,83 -304,124 -485,124 -192,0 -347,-46 -467,-139 -120,-93 -199,-223 -235,-390 -17,-82 -26,-169 -26,-262 0,-82 7,-189 21,-322 15,-121 29,-218 43,-290 14,-72 32,-139 55,-201 68,-183 179,-330 334,-440 155,-110 333,-165 534,-165 245,0 429,69 550,207 121,138 182,330 182,576 0,90 -10,213 -30,368 -5,37 -25,55 -59,55l-1312 0c-17,0 -26,7 -26,21 -11,82 -17,160 -17,233 0,147 46,265 136,356 90,90 216,135 377,135zm165 -1689c-136,0 -251,36 -347,108 -96,72 -167,169 -212,290 -23,59 -45,155 -68,288 0,14 6,21 17,21l1059 0c14,0 21,-7 21,-21 8,-127 11,-217 8,-271 -14,-127 -63,-228 -146,-303 -83,-75 -194,-112 -332,-112z"/>
<path id="198" class="fil11" d="M161628 290237c3,-17 10,-30 22,-40 11,-10 23,-15 38,-15l186 0c37,0 52,19 46,55l-351 2854c-6,36 -25,55 -59,55l-186 0c-15,0 -27,-5 -36,-15 -10,-10 -14,-24 -11,-40l21 -161c3,-9 2,-14 -4,-15 -6,-2 -11,1 -17,6 -150,172 -334,258 -555,258 -192,0 -346,-50 -463,-152 -117,-102 -190,-240 -218,-415 -11,-53 -17,-118 -17,-195 0,-101 8,-215 25,-342 29,-235 67,-410 115,-525 70,-181 177,-323 321,-426 144,-103 314,-154 508,-154 110,0 207,22 290,65 84,44 151,107 201,189 3,8 7,11 13,8 6,-3 10,-8 13,-17l118 -978zm-364 2354c31,-59 57,-126 76,-201 20,-75 39,-180 56,-315 14,-102 21,-201 21,-297 0,-79 -10,-155 -30,-228 -23,-96 -67,-173 -133,-231 -67,-58 -153,-87 -261,-87 -107,0 -204,28 -292,85 -87,56 -155,131 -203,224 -39,62 -71,133 -95,212 -24,79 -45,186 -62,322 -14,98 -21,194 -21,287 0,77 10,151 30,225 22,101 72,182 148,241 76,59 171,89 284,89 110,0 206,-29 288,-87 81,-58 146,-137 194,-239z"/>
<path id="199" class="fil11" d="M164837 291550c9,50 13,104 13,160 0,85 -10,206 -30,365 -28,231 -69,410 -122,537 -71,175 -178,313 -320,415 -143,102 -310,152 -502,152 -110,0 -206,-21 -290,-65 -83,-44 -150,-108 -201,-193 -3,-5 -7,-8 -13,-6 -5,1 -9,6 -12,15l-17 161c-3,16 -10,30 -21,40 -12,10 -26,15 -43,15l-182 0c-36,0 -52,-19 -46,-55l351 -2854c6,-36 26,-55 59,-55l182 0c37,0 53,19 47,55l-119 978c0,9 3,14 7,17 4,3 10,0 19,-8 70,-82 153,-145 247,-189 95,-43 196,-65 303,-65 195,0 352,51 470,154 119,103 192,245 220,426zm-444 1037c34,-60 60,-127 80,-201 20,-75 38,-179 55,-311 14,-122 21,-212 21,-271 0,-99 -15,-187 -46,-263 -26,-93 -75,-168 -148,-224 -74,-57 -164,-85 -271,-85 -108,0 -201,28 -282,85 -80,56 -143,134 -188,233 -34,62 -62,131 -83,207 -21,76 -40,182 -57,318 -14,104 -21,204 -21,300 0,88 10,160 30,216 22,99 67,178 135,237 68,59 155,89 262,89 113,0 216,-30 307,-89 92,-59 161,-140 206,-241z"/>
<path id="200" class="fil11" d="M165032 293992c-20,0 -27,-18 -21,-55l17 -148c3,-17 7,-30 14,-40 8,-10 15,-15 24,-15l29 0c108,0 192,-16 254,-47 63,-31 119,-85 170,-163 51,-77 111,-199 182,-366 5,-5 7,-14 4,-25l-436 -2066 0 -13c0,-14 5,-26 15,-36 10,-10 23,-14 40,-14l191 0c31,0 49,15 55,46l326 1660c2,11 7,16 12,16 6,0 10,-5 13,-16l724 -1660c8,-31 28,-46 59,-46l199 0c20,0 33,5 40,16 7,12 7,27 -2,47l-1033 2265c-87,189 -166,329 -235,419 -69,90 -149,153 -239,188 -90,36 -214,53 -372,53l-30 0z"/>
<path id="201" class="fil11" d="M168668 293179c-256,0 -460,-68 -611,-205 -151,-137 -227,-321 -227,-552 0,-29 3,-71 9,-127l25 -195c3,-17 10,-30 21,-40 12,-10 24,-15 38,-15l187 0c36,0 52,18 46,55l-25 195c-3,22 -4,53 -4,93 0,161 51,289 154,385 103,96 243,144 421,144 195,0 359,-57 491,-171 133,-115 211,-265 233,-451l254 -2058c0,-17 6,-30 17,-40 11,-10 25,-15 42,-15l182 0c37,0 53,19 47,55l-250 2058c-22,175 -81,329 -175,463 -95,134 -218,238 -369,311 -151,74 -319,110 -506,110z"/>
<path id="202" class="fil11" d="M171166 292921c124,-3 234,-32 330,-87 96,-55 174,-132 233,-230 8,-14 20,-24 34,-30 14,-6 27,-4 38,4l114 68c17,8 26,21 26,38 0,9 -5,20 -13,34 -82,141 -194,253 -337,337 -142,83 -304,124 -484,124 -192,0 -348,-46 -468,-139 -120,-93 -198,-223 -235,-390 -17,-82 -25,-169 -25,-262 0,-82 7,-189 21,-322 14,-121 28,-218 42,-290 14,-72 33,-139 55,-201 68,-183 179,-330 335,-440 155,-110 333,-165 533,-165 245,0 429,69 550,207 122,138 182,330 182,576 0,90 -10,213 -29,368 -6,37 -26,55 -60,55l-1312 0c-17,0 -25,7 -25,21 -12,82 -17,160 -17,233 0,147 45,265 135,356 91,90 216,135 377,135zm165 -1689c-135,0 -251,36 -347,108 -96,72 -167,169 -212,290 -22,59 -45,155 -67,288 0,14 5,21 16,21l1059 0c14,0 21,-7 21,-21 8,-127 11,-217 8,-271 -14,-127 -62,-228 -146,-303 -83,-75 -194,-112 -332,-112z"/>
<path id="203" class="fil11" d="M173625 290982c88,0 161,17 221,51 22,11 29,34 21,68l-68 186c-8,37 -31,48 -68,34 -50,-17 -117,-24 -199,-21 -144,5 -268,60 -372,163 -105,103 -167,233 -186,391l-153 1237c-3,16 -10,30 -21,40 -11,10 -25,15 -42,15l-182 0c-37,0 -53,-19 -47,-55l250 -2032c5,-37 25,-55 59,-55l186 0c14,0 26,4 36,14 10,10 14,24 11,41l-30 237c-3,11 -1,17 5,19 5,1 11,-2 16,-11 68,-102 150,-181 246,-237 96,-56 202,-85 317,-85z"/>
<path id="204" class="fil11" d="M174832 292921c124,-3 234,-32 330,-87 96,-55 174,-132 233,-230 8,-14 20,-24 34,-30 14,-6 27,-4 38,4l114 68c17,8 26,21 26,38 0,9 -5,20 -13,34 -82,141 -194,253 -337,337 -142,83 -304,124 -484,124 -192,0 -348,-46 -468,-139 -120,-93 -198,-223 -235,-390 -17,-82 -25,-169 -25,-262 0,-82 7,-189 21,-322 14,-121 28,-218 42,-290 14,-72 33,-139 55,-201 68,-183 179,-330 335,-440 155,-110 333,-165 533,-165 245,0 429,69 550,207 122,138 182,330 182,576 0,90 -10,213 -29,368 -6,37 -26,55 -60,55l-1312 0c-17,0 -25,7 -25,21 -12,82 -17,160 -17,233 0,147 45,265 135,356 91,90 216,135 377,135zm165 -1689c-135,0 -251,36 -347,108 -96,72 -167,169 -212,290 -22,59 -45,155 -67,288 0,14 5,21 16,21l1059 0c14,0 21,-7 21,-21 8,-127 11,-217 8,-271 -14,-127 -62,-228 -146,-303 -83,-75 -194,-112 -332,-112z"/>
<path id="205" class="fil11" d="M178557 290974c184,0 327,51 430,154 103,103 154,247 154,430 0,23 -2,65 -8,127l-169 1406c-3,16 -10,30 -22,40 -11,10 -25,15 -42,15l-178 0c-36,0 -52,-19 -46,-55l165 -1347c3,-19 4,-48 4,-84 0,-130 -37,-233 -110,-309 -73,-77 -174,-115 -301,-115 -146,0 -269,45 -368,136 -99,90 -158,211 -178,364l-165 1355c-3,16 -10,30 -21,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-19 -47,-55l165 -1347c3,-19 5,-49 5,-89 0,-129 -37,-232 -111,-306 -73,-75 -173,-113 -300,-113 -144,0 -265,45 -362,136 -97,90 -156,211 -176,364l-165 1355c-3,16 -10,30 -21,40 -11,10 -25,15 -42,15l-182 0c-37,0 -53,-19 -47,-55l250 -2032c5,-37 25,-55 59,-55l186 0c14,0 26,4 36,14 10,10 14,24 11,41l-21 148c0,8 2,14 6,17 4,2 11,0 19,-9 141,-161 332,-241 572,-241 138,0 254,30 349,89 94,59 161,142 201,250 3,16 11,18 25,4 74,-116 169,-202 286,-258 117,-57 245,-85 383,-85z"/>
<path id="206" class="fil11" d="M179383 293992c-20,0 -27,-18 -21,-55l16 -148c3,-17 8,-30 15,-40 7,-10 15,-15 24,-15l29 0c107,0 192,-16 254,-47 62,-31 119,-85 170,-163 50,-77 111,-199 182,-366 5,-5 7,-14 4,-25l-436 -2066 0 -13c0,-14 5,-26 15,-36 9,-10 23,-14 40,-14l190 0c31,0 50,15 55,46l326 1660c3,11 7,16 13,16 6,0 10,-5 13,-16l724 -1660c8,-31 28,-46 59,-46l199 0c20,0 33,5 40,16 7,12 6,27 -2,47l-1033 2265c-87,189 -166,329 -235,419 -69,90 -149,153 -239,188 -90,36 -215,53 -373,53l-29 0z"/>
<path id="207" class="fil11" d="M120938 295482c36,0 52,19 46,55l-17 157c-2,17 -10,30 -21,40 -11,10 -25,15 -42,15l-788 0c-14,0 -21,7 -21,21l-321 2621c-3,17 -10,30 -22,40 -11,10 -24,15 -38,15l-186 0c-37,0 -52,-19 -47,-55l322 -2621c0,-14 -5,-21 -17,-21l-757 0c-37,0 -53,-18 -47,-55l21 -157c6,-36 26,-55 59,-55l1876 0z"/>
<path id="208" class="fil11" d="M122013 296282c87,0 161,17 220,51 23,12 30,34 21,68l-67 186c-9,37 -32,48 -68,34 -51,-17 -117,-24 -199,-21 -144,6 -268,60 -373,163 -104,103 -166,233 -186,391l-152 1237c-3,17 -10,30 -22,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-19 -46,-55l249 -2032c6,-37 26,-55 60,-55l186 0c14,0 26,5 36,14 10,10 13,24 10,41l-29 237c-3,11 -2,17 4,19 6,1 11,-2 17,-11 68,-101 150,-180 245,-237 96,-56 202,-85 318,-85z"/>
<path id="209" class="fil11" d="M122889 295918c-59,0 -107,-17 -144,-50 -36,-34 -55,-79 -55,-136 0,-70 24,-130 72,-178 48,-48 109,-72 182,-72 60,0 108,17 144,51 37,34 55,78 55,131 0,74 -24,134 -72,182 -48,48 -108,72 -182,72zm-398 2528c-36,0 -52,-19 -46,-55l245 -2032c3,-17 10,-31 22,-41 11,-9 25,-14 42,-14l182 0c37,0 52,18 46,55l-249 2032c-6,36 -26,55 -60,55l-182 0z"/>
<path id="210" class="fil11" d="M125205 296850c8,50 13,104 13,161 0,84 -10,206 -30,364 -28,231 -69,410 -123,537 -70,175 -177,314 -319,415 -143,102 -310,153 -502,153 -110,0 -207,-22 -290,-66 -83,-44 -150,-108 -201,-193 -3,-5 -7,-7 -13,-6 -5,1 -10,6 -13,15l-16 161c-3,17 -10,30 -22,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-19 -47,-55l352 -2854c5,-36 25,-55 59,-55l182 0c37,0 52,19 47,55l-119 978c0,9 2,14 6,17 5,3 11,0 20,-8 70,-82 153,-145 247,-189 95,-43 196,-65 303,-65 195,0 351,51 470,154 118,103 192,245 220,426zm-445 1037c34,-59 61,-126 81,-201 20,-75 38,-179 55,-311 14,-122 21,-212 21,-271 0,-99 -15,-187 -47,-263 -25,-93 -74,-168 -148,-224 -73,-57 -163,-85 -271,-85 -107,0 -201,28 -281,85 -81,56 -143,134 -189,233 -33,62 -61,131 -82,207 -21,76 -40,182 -57,318 -14,104 -21,204 -21,300 0,88 9,160 29,216 23,99 68,178 136,237 67,59 155,89 262,89 113,0 215,-30 307,-89 92,-59 160,-140 205,-241z"/>
<path id="211" class="fil11" d="M127427 296850c9,50 13,104 13,161 0,84 -10,206 -30,364 -28,231 -69,410 -122,537 -71,175 -177,314 -320,415 -142,102 -310,153 -502,153 -110,0 -206,-22 -290,-66 -83,-44 -150,-108 -201,-193 -2,-5 -7,-7 -12,-6 -6,1 -10,6 -13,15l-17 161c-3,17 -10,30 -21,40 -11,10 -26,15 -42,15l-182 0c-37,0 -53,-19 -47,-55l351 -2854c6,-36 26,-55 60,-55l182 0c36,0 52,19 46,55l-118 978c0,9 2,14 6,17 4,3 11,0 19,-8 71,-82 153,-145 248,-189 94,-43 195,-65 302,-65 195,0 352,51 470,154 119,103 192,245 220,426zm-444 1037c34,-59 61,-126 80,-201 20,-75 38,-179 55,-311 14,-122 22,-212 22,-271 0,-99 -16,-187 -47,-263 -25,-93 -75,-168 -148,-224 -74,-57 -164,-85 -271,-85 -107,0 -201,28 -282,85 -80,56 -143,134 -188,233 -34,62 -61,131 -83,207 -21,76 -40,182 -57,318 -14,104 -21,204 -21,300 0,88 10,160 30,216 22,99 67,178 135,237 68,59 155,89 263,89 113,0 215,-30 307,-89 91,-59 160,-140 205,-241z"/>
<path id="212" class="fil11" d="M127622 299292c-20,0 -27,-18 -21,-55l17 -148c3,-17 8,-30 15,-40 7,-10 15,-15 23,-15l30 0c107,0 192,-15 254,-46 62,-32 118,-86 169,-163 51,-78 111,-200 182,-367 6,-5 7,-14 4,-25l-436 -2066 0 -13c0,-14 5,-26 15,-36 10,-9 23,-14 40,-14l191 0c31,0 49,15 55,46l326 1660c3,11 7,17 12,17 6,0 10,-6 13,-17l724 -1660c8,-31 28,-46 59,-46l199 0c20,0 33,5 40,17 8,11 7,26 -2,46l-1033 2265c-87,189 -165,329 -235,419 -69,90 -148,153 -239,188 -90,36 -214,53 -372,53l-30 0z"/>
<path id="213" class="fil11" d="M129489 298780c-42,0 -56,-20 -42,-59l283 -881c14,-34 36,-51 64,-51l156 0c17,0 29,5 36,15 7,10 8,25 3,45l-331 885c-14,31 -36,46 -67,46l-102 0z"/>
<path id="214" class="fil11" d="M132960 296359c3,-17 10,-31 21,-41 12,-9 26,-14 43,-14l182 0c37,0 52,18 46,55l-249 2032c-6,36 -26,55 -60,55l-182 0c-34,0 -50,-19 -50,-55l21 -157c3,-8 1,-14 -5,-17 -5,-3 -12,0 -21,9 -70,81 -152,144 -245,188 -93,44 -194,66 -301,66 -192,0 -346,-51 -463,-153 -117,-101 -190,-240 -218,-415 -12,-53 -17,-118 -17,-194 0,-102 8,-216 25,-343 28,-235 66,-410 114,-525 71,-181 178,-323 322,-426 144,-103 313,-154 508,-154 107,0 203,21 286,63 83,43 150,105 201,186 3,9 8,12 15,9 7,-3 10,-9 10,-17l17 -152zm-258 1532c31,-59 57,-126 76,-201 20,-75 38,-180 55,-315 14,-102 21,-201 21,-297 0,-79 -9,-155 -29,-228 -23,-96 -67,-173 -134,-231 -66,-58 -153,-87 -260,-87 -107,0 -204,28 -292,85 -87,56 -155,131 -203,224 -40,62 -71,133 -95,212 -24,79 -45,186 -62,322 -14,98 -21,194 -21,287 0,77 10,151 30,225 22,101 72,182 148,241 76,59 171,89 283,89 111,0 206,-29 288,-87 82,-58 147,-137 195,-239z"/>
<path id="215" class="fil11" d="M136110 295537c3,-17 10,-30 21,-40 11,-10 24,-15 38,-15l186 0c37,0 53,19 47,55l-351 2854c-6,36 -26,55 -60,55l-186 0c-14,0 -26,-5 -36,-15 -10,-10 -13,-23 -10,-40l21 -161c3,-9 1,-14 -4,-15 -6,-1 -12,1 -17,6 -150,172 -335,259 -555,259 -192,0 -346,-51 -464,-153 -117,-101 -189,-240 -218,-415 -11,-53 -16,-118 -16,-194 0,-102 8,-216 25,-343 28,-235 66,-410 114,-525 71,-181 178,-323 322,-426 144,-103 313,-154 508,-154 110,0 207,22 290,65 83,44 150,107 201,189 3,8 7,11 13,8 5,-3 10,-8 12,-17l119 -978zm-364 2354c31,-59 56,-126 76,-201 20,-75 38,-180 55,-315 14,-102 21,-201 21,-297 0,-79 -10,-155 -29,-228 -23,-96 -67,-173 -134,-231 -66,-58 -153,-87 -260,-87 -107,0 -205,28 -292,85 -88,56 -155,131 -203,224 -40,62 -72,133 -96,212 -24,79 -44,186 -61,322 -14,98 -21,194 -21,287 0,77 10,151 29,225 23,101 72,182 149,241 76,59 170,89 283,89 110,0 206,-29 288,-87 82,-58 147,-137 195,-239z"/>
<path id="216" class="fil11" d="M137541 298221c124,-3 234,-31 330,-86 96,-56 174,-132 233,-231 8,-14 20,-24 34,-30 14,-5 26,-4 38,4l114 68c17,9 25,21 25,38 0,9 -4,20 -12,34 -82,141 -194,253 -337,337 -142,83 -304,125 -484,125 -192,0 -348,-47 -468,-140 -120,-93 -199,-223 -235,-390 -17,-81 -26,-169 -26,-262 0,-82 7,-189 22,-322 14,-121 28,-218 42,-290 14,-72 32,-139 55,-201 68,-183 179,-330 334,-440 156,-110 333,-165 534,-165 245,0 429,69 550,207 121,138 182,330 182,576 0,90 -10,213 -30,368 -5,37 -25,55 -59,55l-1312 0c-17,0 -26,7 -26,21 -11,82 -16,160 -16,233 0,147 45,266 135,356 90,90 216,135 377,135zm165 -1689c-136,0 -251,36 -347,108 -96,72 -167,169 -212,290 -22,59 -45,155 -68,288 0,14 6,21 17,21l1059 0c14,0 21,-7 21,-21 8,-127 11,-217 8,-271 -14,-127 -63,-228 -146,-303 -83,-74 -194,-112 -332,-112z"/>
<path id="217" class="fil11" d="M139577 298467c-217,0 -391,-48 -521,-144 -130,-96 -194,-217 -194,-364 0,-26 1,-44 4,-55l4 -38c6,-37 25,-55 59,-55l178 0c14,0 26,3 36,10 10,7 13,16 11,28l-5 38c-11,93 26,174 110,243 85,69 198,104 339,104 150,0 275,-37 375,-112 100,-75 150,-167 150,-277 0,-63 -20,-113 -61,-153 -41,-39 -89,-70 -142,-93 -54,-23 -141,-54 -263,-93 -141,-45 -256,-88 -345,-129 -89,-41 -163,-97 -224,-167 -61,-71 -91,-160 -91,-267 0,-28 1,-51 4,-68 23,-181 110,-324 263,-432 152,-107 340,-161 563,-161 211,0 381,49 508,146 127,98 190,223 190,375 0,28 -1,50 -4,64 -3,17 -10,30 -21,40 -11,10 -26,15 -43,15l-165 0c-17,0 -30,-3 -40,-9 -10,-5 -13,-13 -10,-21l4 -25c11,-96 -24,-177 -106,-242 -82,-65 -198,-97 -347,-97 -147,0 -268,32 -362,97 -95,65 -142,153 -142,263 0,84 37,150 110,197 74,46 188,93 343,141 147,46 265,87 354,125 88,38 165,93 228,165 64,72 95,163 95,273 0,32 -1,56 -4,72 -22,184 -110,331 -262,441 -153,110 -345,165 -576,165z"/>
<path id="218" class="fil11" d="M141363 295918c-59,0 -107,-17 -144,-50 -36,-34 -55,-79 -55,-136 0,-70 24,-130 72,-178 48,-48 109,-72 182,-72 60,0 108,17 144,51 37,34 55,78 55,131 0,74 -24,134 -72,182 -48,48 -108,72 -182,72zm-398 2528c-36,0 -52,-19 -46,-55l245 -2032c3,-17 10,-31 22,-41 11,-9 25,-14 42,-14l182 0c37,0 52,18 47,55l-250 2032c-6,36 -26,55 -59,55l-183 0z"/>
<path id="219" class="fil11" d="M143421 296359c3,-17 10,-31 21,-41 11,-9 25,-14 42,-14l182 0c37,0 53,18 47,55l-246 2015c-39,316 -156,547 -351,694 -195,147 -446,220 -754,220 -59,0 -103,-1 -131,-4 -34,-3 -49,-23 -46,-59l29 -170c6,-39 26,-56 60,-51 287,12 502,-33 643,-133 141,-100 227,-269 258,-506l17 -148c3,-8 2,-14 -4,-17 -6,-3 -11,0 -17,9 -147,166 -334,249 -563,249 -178,0 -330,-49 -457,-148 -127,-99 -203,-238 -229,-419 -5,-62 -8,-114 -8,-157 0,-104 8,-224 25,-359 28,-246 68,-427 119,-542 70,-170 176,-306 317,-409 141,-103 302,-154 483,-154 237,0 410,80 520,241 6,8 12,11 17,8 6,-2 9,-8 9,-16l17 -144zm-195 1439c14,-45 25,-93 34,-144 8,-51 21,-145 38,-284 23,-189 34,-309 34,-359 0,-29 -2,-51 -4,-68 -6,-119 -48,-217 -127,-294 -79,-78 -184,-117 -314,-117 -129,0 -244,38 -343,114 -98,77 -172,175 -220,297 -36,87 -67,228 -93,423 -14,105 -21,205 -21,301 0,51 3,93 9,127 14,118 62,216 146,294 83,78 189,116 319,116 136,0 251,-38 345,-114 95,-76 160,-174 197,-292z"/>
<path id="220" class="fil11" d="M145211 296274c195,0 349,55 462,165 113,110 169,260 169,449 0,22 -3,62 -8,118l-170 1385c-5,36 -25,55 -59,55l-186 0c-14,0 -26,-5 -36,-15 -10,-10 -13,-23 -11,-40l165 -1325c3,-20 5,-48 5,-85 0,-136 -38,-243 -115,-324 -76,-80 -180,-121 -313,-121 -138,0 -258,41 -360,123 -101,82 -168,189 -199,322l-173 1410c-3,17 -10,30 -21,40 -12,10 -26,15 -43,15l-182 0c-36,0 -52,-19 -46,-55l249 -2032c6,-37 26,-55 60,-55l186 0c14,0 26,5 36,14 10,10 13,24 11,41l-22 156c0,9 2,15 7,19 4,5 9,2 15,-6 135,-169 328,-254 579,-254z"/>
<path id="221" class="fil11" d="M147133 298221c125,-3 235,-31 331,-86 96,-56 173,-132 232,-231 9,-14 20,-24 34,-30 14,-5 27,-4 38,4l115 68c17,9 25,21 25,38 0,9 -4,20 -13,34 -81,141 -194,253 -336,337 -143,83 -304,125 -485,125 -192,0 -348,-47 -468,-140 -120,-93 -198,-223 -235,-390 -17,-81 -25,-169 -25,-262 0,-82 7,-189 21,-322 14,-121 28,-218 42,-290 15,-72 33,-139 56,-201 67,-183 179,-330 334,-440 155,-110 333,-165 533,-165 246,0 429,69 551,207 121,138 182,330 182,576 0,90 -10,213 -30,368 -6,37 -25,55 -59,55l-1313 0c-16,0 -25,7 -25,21 -11,82 -17,160 -17,233 0,147 45,266 136,356 90,90 216,135 376,135zm165 -1689c-135,0 -251,36 -347,108 -96,72 -166,169 -211,290 -23,59 -45,155 -68,288 0,14 6,21 17,21l1058 0c14,0 21,-7 21,-21 9,-127 12,-217 9,-271 -14,-127 -63,-228 -146,-303 -83,-74 -194,-112 -333,-112z"/>
<path id="222" class="fil11" d="M149593 296282c87,0 161,17 220,51 23,12 30,34 21,68l-68 186c-8,37 -31,48 -67,34 -51,-17 -117,-24 -199,-21 -144,6 -268,60 -373,163 -104,103 -166,233 -186,391l-152 1237c-3,17 -10,30 -22,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-19 -47,-55l250 -2032c6,-37 26,-55 59,-55l187 0c14,0 26,5 36,14 10,10 13,24 10,41l-29 237c-3,11 -2,17 4,19 6,1 11,-2 17,-11 68,-101 149,-180 245,-237 96,-56 202,-85 318,-85z"/>
<path id="223" class="fil11" d="M152599 296850c8,50 12,104 12,161 0,84 -10,206 -29,364 -29,231 -69,410 -123,537 -71,175 -177,314 -320,415 -142,102 -309,153 -501,153 -110,0 -207,-22 -290,-66 -84,-44 -151,-108 -201,-193 -3,-5 -7,-7 -13,-6 -6,1 -10,6 -13,15l-17 161c-3,17 -10,30 -21,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-19 -47,-55l352 -2854c5,-36 25,-55 59,-55l182 0c36,0 52,19 46,55l-118 978c0,9 2,14 6,17 4,3 11,0 19,-8 71,-82 153,-145 248,-189 94,-43 195,-65 303,-65 194,0 351,51 469,154 119,103 192,245 221,426zm-445 1037c34,-59 61,-126 81,-201 19,-75 38,-179 55,-311 14,-122 21,-212 21,-271 0,-99 -16,-187 -47,-263 -25,-93 -75,-168 -148,-224 -73,-57 -164,-85 -271,-85 -107,0 -201,28 -281,85 -81,56 -144,134 -189,233 -34,62 -61,131 -82,207 -22,76 -41,182 -58,318 -14,104 -21,204 -21,300 0,88 10,160 30,216 23,99 68,178 135,237 68,59 156,89 263,89 113,0 215,-30 307,-89 92,-59 160,-140 205,-241z"/>
<path id="224" class="fil11" d="M154559 296359c2,-17 9,-31 21,-41 11,-9 25,-14 42,-14l182 0c37,0 52,18 47,55l-250 2032c-6,36 -25,55 -59,55l-182 0c-34,0 -51,-19 -51,-55l21 -157c3,-8 1,-14 -4,-17 -6,-3 -13,0 -21,9 -71,81 -153,144 -246,188 -93,44 -193,66 -300,66 -192,0 -347,-51 -464,-153 -117,-101 -190,-240 -218,-415 -11,-53 -17,-118 -17,-194 0,-102 8,-216 25,-343 29,-235 67,-410 115,-525 70,-181 178,-323 321,-426 144,-103 314,-154 508,-154 108,0 203,21 286,63 83,43 150,105 201,186 3,9 8,12 15,9 7,-3 11,-9 11,-17l17 -152zm-259 1532c31,-59 57,-126 77,-201 19,-75 38,-180 55,-315 14,-102 21,-201 21,-297 0,-79 -10,-155 -30,-228 -22,-96 -67,-173 -133,-231 -67,-58 -153,-87 -261,-87 -107,0 -204,28 -292,85 -87,56 -155,131 -203,224 -39,62 -71,133 -95,212 -24,79 -45,186 -61,322 -15,98 -22,194 -22,287 0,77 10,151 30,225 23,101 72,182 148,241 76,59 171,89 284,89 110,0 206,-29 288,-87 81,-58 146,-137 194,-239z"/>
<path id="225" class="fil11" d="M155934 298467c-217,0 -390,-48 -520,-144 -130,-96 -195,-217 -195,-364 0,-26 1,-44 4,-55l4 -38c6,-37 26,-55 60,-55l178 0c14,0 26,3 36,10 9,7 13,16 10,28l-4 38c-11,93 25,174 110,243 85,69 197,104 339,104 149,0 274,-37 374,-112 100,-75 151,-167 151,-277 0,-63 -21,-113 -62,-153 -41,-39 -88,-70 -142,-93 -53,-23 -141,-54 -262,-93 -141,-45 -256,-88 -345,-129 -89,-41 -164,-97 -225,-167 -60,-71 -91,-160 -91,-267 0,-28 2,-51 5,-68 22,-181 110,-324 262,-432 153,-107 340,-161 563,-161 212,0 381,49 508,146 127,98 191,223 191,375 0,28 -2,50 -5,64 -2,17 -9,30 -21,40 -11,10 -25,15 -42,15l-165 0c-17,0 -30,-3 -40,-9 -10,-5 -14,-13 -11,-21l4 -25c12,-96 -24,-177 -106,-242 -81,-65 -197,-97 -347,-97 -146,0 -267,32 -362,97 -94,65 -141,153 -141,263 0,84 36,150 110,197 73,46 187,93 343,141 146,46 264,87 353,125 89,38 165,93 229,165 63,72 95,163 95,273 0,32 -2,56 -4,72 -23,184 -110,331 -263,441 -152,110 -344,165 -576,165z"/>
<path id="226" class="fil11" d="M158072 298221c124,-3 235,-31 330,-86 96,-56 174,-132 233,-231 9,-14 20,-24 34,-30 14,-5 27,-4 38,4l115 68c17,9 25,21 25,38 0,9 -4,20 -13,34 -82,141 -194,253 -336,337 -143,83 -304,125 -485,125 -192,0 -348,-47 -468,-140 -120,-93 -198,-223 -235,-390 -17,-81 -25,-169 -25,-262 0,-82 7,-189 21,-322 14,-121 28,-218 42,-290 14,-72 33,-139 55,-201 68,-183 180,-330 335,-440 155,-110 333,-165 533,-165 246,0 429,69 551,207 121,138 182,330 182,576 0,90 -10,213 -30,368 -6,37 -25,55 -59,55l-1313 0c-17,0 -25,7 -25,21 -11,82 -17,160 -17,233 0,147 45,266 136,356 90,90 215,135 376,135zm165 -1689c-135,0 -251,36 -347,108 -96,72 -166,169 -211,290 -23,59 -46,155 -68,288 0,14 5,21 17,21l1058 0c14,0 21,-7 21,-21 9,-127 12,-217 9,-271 -14,-127 -63,-228 -146,-303 -84,-74 -194,-112 -333,-112z"/>
<path id="227" class="fil11" d="M161061 295537c3,-17 10,-30 21,-40 11,-10 24,-15 38,-15l186 0c37,0 53,19 47,55l-351 2854c-6,36 -26,55 -60,55l-186 0c-14,0 -26,-5 -36,-15 -10,-10 -13,-23 -10,-40l21 -161c3,-9 1,-14 -4,-15 -6,-1 -12,1 -17,6 -150,172 -335,259 -555,259 -192,0 -346,-51 -464,-153 -117,-101 -189,-240 -218,-415 -11,-53 -16,-118 -16,-194 0,-102 8,-216 25,-343 28,-235 66,-410 114,-525 71,-181 178,-323 322,-426 144,-103 313,-154 508,-154 110,0 207,22 290,65 83,44 150,107 201,189 3,8 7,11 13,8 5,-3 10,-8 12,-17l119 -978zm-364 2354c31,-59 56,-126 76,-201 20,-75 38,-180 55,-315 14,-102 21,-201 21,-297 0,-79 -10,-155 -29,-228 -23,-96 -67,-173 -134,-231 -66,-58 -153,-87 -260,-87 -107,0 -205,28 -292,85 -88,56 -155,131 -203,224 -40,62 -72,133 -96,212 -24,79 -44,186 -61,322 -14,98 -21,194 -21,287 0,77 10,151 29,225 23,101 72,182 149,241 76,59 170,89 283,89 110,0 206,-29 288,-87 82,-58 147,-137 195,-239z"/>
<path id="228" class="fil11" d="M162962 295918c-60,0 -108,-17 -144,-50 -37,-34 -55,-79 -55,-136 0,-70 24,-130 72,-178 48,-48 108,-72 182,-72 59,0 107,17 144,51 36,34 55,78 55,131 0,74 -24,134 -72,182 -48,48 -109,72 -182,72zm-398 2528c-37,0 -52,-19 -47,-55l246 -2032c3,-17 10,-31 21,-41 11,-9 25,-14 42,-14l182 0c37,0 52,18 47,55l-250 2032c-6,36 -25,55 -59,55l-182 0z"/>
<path id="229" class="fil11" d="M164613 296274c194,0 348,55 461,165 113,110 169,260 169,449 0,22 -2,62 -8,118l-169 1385c-6,36 -26,55 -60,55l-186 0c-14,0 -26,-5 -36,-15 -10,-10 -13,-23 -10,-40l165 -1325c2,-20 4,-48 4,-85 0,-136 -38,-243 -114,-324 -77,-80 -181,-121 -314,-121 -138,0 -258,41 -360,123 -101,82 -167,189 -198,322l-174 1410c-3,17 -10,30 -21,40 -12,10 -26,15 -43,15l-182 0c-36,0 -52,-19 -46,-55l250 -2032c5,-37 25,-55 59,-55l186 0c14,0 26,5 36,14 10,10 14,24 11,41l-21 156c0,9 2,15 6,19 4,5 9,2 15,-6 135,-169 328,-254 580,-254z"/>
<path id="230" class="fil11" d="M167411 298480c-279,0 -500,-62 -660,-185 -161,-122 -242,-290 -242,-501 0,-26 3,-61 9,-106l12 -119c3,-17 10,-30 22,-40 11,-10 25,-15 42,-15l173 0c37,0 53,19 47,55l-13 102c-3,14 -4,35 -4,63 0,144 59,261 176,350 117,89 280,133 489,133 209,0 374,-46 495,-138 121,-91 192,-213 212,-366 2,-14 4,-36 4,-67 0,-122 -50,-224 -150,-307 -101,-84 -276,-182 -527,-295 -181,-76 -322,-143 -424,-201 -101,-58 -183,-130 -245,-218 -62,-87 -93,-194 -93,-321 0,-20 2,-55 8,-106 28,-237 131,-421 307,-553 176,-131 406,-197 688,-197 276,0 493,63 650,189 156,125 235,294 235,506 0,22 -3,59 -9,110l-8 80c-6,37 -26,55 -60,55l-182 0c-36,0 -52,-18 -46,-55l8 -63c3,-17 5,-41 5,-72 0,-144 -56,-261 -168,-352 -111,-90 -270,-135 -476,-135 -192,0 -344,41 -457,123 -113,82 -179,200 -199,355 -3,17 -4,40 -4,68 0,85 23,157 70,216 46,59 112,112 198,159 87,46 216,105 388,175 175,77 317,149 425,216 109,68 196,148 263,242 66,93 99,204 99,334 0,172 -43,325 -129,457 -86,133 -209,237 -368,311 -160,75 -347,113 -561,113z"/>
<path id="231" class="fil11" d="M170450 296359c3,-17 10,-31 22,-41 11,-9 25,-14 42,-14l182 0c37,0 52,18 47,55l-250 2032c-6,36 -26,55 -60,55l-182 0c-33,0 -50,-19 -50,-55l21 -157c3,-8 1,-14 -4,-17 -6,-3 -13,0 -22,9 -70,81 -152,144 -245,188 -93,44 -193,66 -301,66 -192,0 -346,-51 -463,-153 -117,-101 -190,-240 -218,-415 -12,-53 -17,-118 -17,-194 0,-102 8,-216 25,-343 28,-235 67,-410 115,-525 70,-181 177,-323 321,-426 144,-103 314,-154 508,-154 107,0 203,21 286,63 83,43 150,105 201,186 3,9 8,12 15,9 7,-3 10,-9 10,-17l17 -152zm-258 1532c31,-59 57,-126 76,-201 20,-75 38,-180 55,-315 15,-102 22,-201 22,-297 0,-79 -10,-155 -30,-228 -23,-96 -67,-173 -133,-231 -67,-58 -154,-87 -261,-87 -107,0 -204,28 -292,85 -87,56 -155,131 -203,224 -40,62 -71,133 -95,212 -24,79 -45,186 -62,322 -14,98 -21,194 -21,287 0,77 10,151 30,225 22,101 72,182 148,241 76,59 171,89 284,89 110,0 206,-29 287,-87 82,-58 147,-137 195,-239z"/>
<path id="232" class="fil11" d="M172275 296274c195,0 349,55 461,165 113,110 170,260 170,449 0,22 -3,62 -9,118l-169 1385c-6,36 -25,55 -59,55l-187 0c-14,0 -26,-5 -36,-15 -9,-10 -13,-23 -10,-40l165 -1325c3,-20 4,-48 4,-85 0,-136 -38,-243 -114,-324 -76,-80 -181,-121 -313,-121 -139,0 -259,41 -360,123 -102,82 -168,189 -199,322l-174 1410c-3,17 -10,30 -21,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-19 -47,-55l250 -2032c6,-37 25,-55 59,-55l186 0c15,0 27,5 36,14 10,10 14,24 11,41l-21 156c0,9 2,15 6,19 4,5 9,2 15,-6 135,-169 329,-254 580,-254z"/>
<path id="233" class="fil11" d="M121048 300990c-6,37 -26,55 -59,55l-1491 0c-11,0 -19,7 -25,21l-127 1037c0,14 7,21 21,21l1037 0c37,0 53,19 47,55l-17 153c-3,17 -10,30 -21,40 -11,10 -26,15 -43,15l-1037 0c-11,0 -19,7 -25,21l-157 1283c-5,36 -25,55 -59,55l-186 0c-14,0 -26,-5 -36,-15 -10,-10 -14,-23 -11,-40l352 -2854c2,-16 9,-30 21,-40 11,-10 24,-15 38,-15l1752 0c15,0 27,5 36,15 10,10 14,24 11,40l-21 153z"/>
<path id="234" class="fil11" d="M122182 301583c88,0 161,16 220,50 23,12 30,34 22,68l-68 186c-9,37 -31,48 -68,34 -51,-17 -117,-24 -199,-21 -144,6 -268,60 -372,163 -105,103 -167,234 -187,392l-152 1236c-3,17 -10,30 -21,40 -12,10 -26,15 -43,15l-182 0c-36,0 -52,-19 -46,-55l250 -2032c5,-37 25,-55 59,-55l186 0c14,0 26,5 36,15 10,9 14,23 11,40l-30 237c-3,11 -1,17 4,19 6,1 12,-2 17,-11 68,-101 150,-180 246,-237 96,-56 202,-84 317,-84z"/>
<path id="235" class="fil11" d="M124049 301659c3,-17 10,-31 21,-40 12,-10 26,-15 43,-15l182 0c36,0 52,18 46,55l-249 2032c-6,36 -26,55 -60,55l-182 0c-34,0 -51,-19 -51,-55l22 -157c2,-8 1,-14 -5,-17 -5,-3 -12,0 -21,9 -70,81 -152,144 -245,188 -93,44 -194,66 -301,66 -192,0 -346,-51 -463,-153 -118,-101 -190,-240 -218,-415 -12,-53 -17,-118 -17,-194 0,-102 8,-216 25,-343 28,-235 66,-409 114,-525 71,-181 178,-323 322,-426 144,-103 313,-154 508,-154 107,0 203,21 286,63 83,43 150,105 201,187 3,8 8,11 15,8 7,-3 10,-8 10,-17l17 -152zm-258 1532c31,-59 56,-126 76,-201 20,-75 38,-180 55,-315 14,-102 21,-201 21,-297 0,-79 -10,-155 -29,-228 -23,-96 -67,-173 -134,-231 -66,-58 -153,-87 -260,-87 -107,0 -205,29 -292,85 -88,56 -155,131 -203,224 -40,62 -72,133 -96,212 -23,79 -44,186 -61,322 -14,99 -21,194 -21,288 0,76 10,151 30,224 22,102 72,182 148,241 76,60 170,89 283,89 110,0 206,-29 288,-87 82,-57 147,-137 195,-239z"/>
<path id="236" class="fil11" d="M125874 301574c195,0 348,55 461,165 113,110 170,260 170,449 0,22 -3,62 -9,118l-169 1385c-6,36 -26,55 -60,55l-186 0c-14,0 -26,-5 -36,-15 -10,-10 -13,-23 -10,-40l165 -1325c3,-20 4,-48 4,-85 0,-135 -38,-243 -114,-324 -77,-80 -181,-120 -314,-120 -138,0 -258,40 -359,122 -102,82 -168,189 -199,322l-174 1410c-3,17 -10,30 -21,40 -11,10 -26,15 -42,15l-182 0c-37,0 -53,-19 -47,-55l250 -2032c5,-37 25,-55 59,-55l186 0c14,0 26,5 36,15 10,9 14,23 11,40l-21 156c0,9 2,15 6,19 4,5 9,3 15,-6 135,-169 329,-254 580,-254z"/>
<path id="237" class="fil11" d="M127736 303780c-197,0 -359,-53 -486,-159 -127,-106 -206,-249 -237,-430 -9,-56 -13,-116 -13,-178 0,-101 8,-217 25,-347 26,-209 65,-381 119,-516 70,-175 183,-316 338,-421 156,-106 332,-159 530,-159 200,0 366,52 499,156 133,105 212,235 237,390 6,28 9,66 9,114 0,37 -19,58 -55,64l-182 21 -13 0c-28,0 -42,-16 -42,-47l-5 -50c-11,-108 -60,-199 -148,-274 -87,-74 -199,-112 -334,-112 -136,0 -254,38 -356,112 -101,75 -173,175 -216,299 -39,102 -69,244 -89,427 -14,111 -21,216 -21,318 0,56 2,95 4,114 12,124 58,225 140,301 82,76 192,114 330,114 136,0 256,-36 360,-108 105,-72 175,-163 212,-273 5,-5 8,-13 8,-21 0,0 0,-1 0,-2 0,-2 2,-2 4,-2 9,-37 32,-52 68,-47l174 30c17,3 29,10 36,21 7,11 8,25 2,42l-21 72c-62,164 -173,297 -333,398 -159,102 -340,153 -544,153z"/>
<path id="238" class="fil11" d="M129578 301218c-59,0 -107,-16 -144,-50 -37,-34 -55,-79 -55,-136 0,-70 24,-130 72,-178 48,-48 109,-72 182,-72 59,0 107,17 144,51 37,34 55,78 55,131 0,74 -24,135 -72,183 -48,47 -109,71 -182,71zm-398 2528c-37,0 -52,-19 -47,-55l246 -2032c3,-17 10,-31 21,-40 11,-10 26,-15 42,-15l182 0c37,0 53,18 47,55l-250 2032c-5,36 -25,55 -59,55l-182 0z"/>
<path id="239" class="fil11" d="M130780 303767c-217,0 -391,-48 -521,-144 -129,-96 -194,-217 -194,-364 0,-25 1,-44 4,-55l4 -38c6,-37 26,-55 59,-55l178 0c14,0 26,3 36,10 10,7 14,17 11,28l-4 38c-12,93 25,174 110,243 84,70 197,104 338,104 150,0 275,-37 375,-112 100,-75 150,-167 150,-277 0,-62 -20,-113 -61,-153 -41,-39 -88,-70 -142,-93 -54,-22 -141,-54 -262,-93 -142,-45 -257,-88 -345,-129 -89,-41 -164,-97 -225,-167 -60,-71 -91,-160 -91,-267 0,-28 2,-51 4,-68 23,-180 110,-324 263,-432 152,-107 340,-160 563,-160 212,0 381,48 508,146 127,97 190,222 190,374 0,28 -1,50 -4,64 -3,17 -10,30 -21,40 -11,10 -25,15 -42,15l-165 0c-17,0 -31,-3 -41,-9 -10,-5 -13,-12 -10,-21l4 -25c11,-96 -24,-177 -106,-242 -82,-64 -197,-97 -347,-97 -147,0 -267,33 -362,97 -94,65 -142,153 -142,263 0,85 37,150 110,197 74,46 188,94 343,142 147,45 265,86 354,124 89,39 165,94 228,166 64,72 96,163 96,273 0,31 -2,55 -5,72 -22,183 -110,330 -262,440 -153,110 -344,165 -576,165z"/>
<path id="240" class="fil11" d="M132859 303780c-198,0 -360,-53 -487,-159 -127,-106 -206,-249 -237,-430 -9,-56 -13,-116 -13,-178 0,-101 9,-217 26,-347 25,-209 64,-381 118,-516 71,-175 183,-316 339,-421 155,-106 331,-159 529,-159 200,0 367,52 499,156 133,105 212,235 237,390 6,28 9,66 9,114 0,37 -18,58 -55,64l-182 21 -13 0c-28,0 -42,-16 -42,-47l-4 -50c-12,-108 -61,-199 -149,-274 -87,-74 -199,-112 -334,-112 -135,0 -254,38 -356,112 -101,75 -173,175 -215,299 -40,102 -70,244 -89,427 -14,111 -22,216 -22,318 0,56 2,95 5,114 11,124 58,225 139,301 82,76 192,114 331,114 135,0 255,-36 359,-108 105,-72 175,-163 212,-273 6,-5 9,-13 9,-21 0,0 0,-1 0,-2 0,-2 1,-2 4,-2 8,-37 31,-52 68,-47l173 30c17,3 29,10 36,21 7,11 8,25 2,42l-21 72c-62,164 -173,297 -332,398 -160,102 -341,153 -544,153z"/>
<path id="241" class="fil11" d="M134992 303780c-200,0 -364,-53 -493,-157 -128,-104 -208,-248 -239,-432 -9,-59 -13,-127 -13,-203 0,-85 7,-191 21,-318 26,-208 64,-381 115,-516 76,-181 192,-323 347,-428 155,-104 333,-156 533,-156 198,0 361,52 489,156 129,105 208,246 239,424 9,62 13,130 13,203 0,85 -7,190 -21,317 -28,215 -68,389 -119,521 -76,184 -192,328 -347,432 -155,104 -330,157 -525,157zm34 -263c130,0 246,-37 349,-112 103,-75 179,-176 227,-303 31,-82 59,-224 85,-427 17,-127 25,-236 25,-326 0,-48 -1,-82 -4,-102 -14,-127 -64,-228 -151,-303 -86,-74 -196,-112 -332,-112 -133,0 -249,38 -349,112 -100,75 -176,176 -227,303 -31,76 -59,219 -84,428 -17,127 -26,235 -26,326 0,158 43,283 129,376 87,94 206,140 358,140z"/>
<path id="242" class="fil11" d="M136368 304080c-42,0 -56,-20 -42,-59l283 -881c14,-33 36,-50 64,-50l157 0c16,0 28,5 35,14 8,10 8,25 3,45l-331 885c-14,31 -36,46 -67,46l-102 0z"/>
<path id="243" class="fil11" d="M139310 303780c-265,0 -476,-73 -633,-218 -156,-146 -235,-341 -235,-587 0,-28 3,-76 9,-144l241 -1994c3,-16 10,-30 21,-40 12,-10 26,-15 43,-15l182 0c36,0 52,19 46,55l-245 2003c-3,22 -4,55 -4,97 0,175 55,316 165,421 110,106 258,159 444,159 203,0 375,-62 517,-186 141,-124 224,-288 249,-491l246 -2003c3,-16 10,-30 21,-40 11,-10 24,-15 38,-15l186 0c37,0 53,19 47,55l-246 1994c-22,189 -83,355 -182,498 -98,142 -226,253 -383,332 -156,79 -332,119 -527,119z"/>
<path id="244" class="fil11" d="M141867 303780c-279,0 -499,-62 -660,-185 -161,-122 -242,-290 -242,-501 0,-26 3,-61 9,-106l13 -119c2,-16 9,-30 21,-40 11,-10 25,-15 42,-15l174 0c36,0 52,19 46,55l-12 102c-3,14 -5,35 -5,64 0,143 59,260 176,349 117,89 280,133 489,133 209,0 374,-46 495,-137 122,-92 192,-214 212,-367 3,-14 4,-36 4,-67 0,-122 -50,-224 -150,-307 -100,-84 -276,-182 -527,-294 -181,-77 -322,-144 -424,-202 -101,-57 -183,-130 -245,-218 -62,-87 -93,-194 -93,-321 0,-20 3,-55 8,-106 28,-237 131,-421 307,-553 177,-131 406,-196 688,-196 277,0 493,62 650,188 157,126 235,294 235,506 0,22 -3,59 -9,110l-8 80c-6,37 -26,55 -59,55l-182 0c-37,0 -53,-18 -47,-55l9 -63c2,-17 4,-41 4,-72 0,-144 -56,-261 -167,-351 -112,-91 -271,-136 -477,-136 -192,0 -344,41 -457,123 -113,82 -179,200 -199,355 -3,17 -4,40 -4,68 0,85 23,157 70,216 46,59 113,112 199,159 86,46 215,105 387,175 175,77 317,149 425,216 109,68 197,149 263,242 66,93 99,204 99,334 0,172 -43,325 -129,457 -86,133 -209,237 -368,311 -159,75 -346,113 -561,113z"/>
<path id="245" class="fil11" d="M145148 303746c-31,0 -48,-16 -51,-47l-101 -516c0,-3 -2,-7 -5,-11 -3,-4 -7,-6 -12,-6l-1224 0c-5,0 -14,5 -25,17l-220 516c-12,31 -33,47 -64,47l-199 0c-20,0 -33,-6 -40,-17 -7,-11 -6,-27 2,-47l1253 -2853c11,-31 33,-47 64,-47l262 0c34,0 52,16 55,47l555 2853 0 17c0,31 -17,47 -51,47l-199 0zm-1291 -851c-3,17 1,25 12,25l1059 0c5,0 10,-2 15,-6 4,-4 5,-11 2,-19l-322 -1732c0,-11 -3,-16 -8,-16 -6,0 -12,5 -17,16l-741 1732z"/>
<path id="246" class="fil11" d="M146100 303733c-67,0 -122,-20 -163,-61 -41,-41 -61,-93 -61,-155 0,-76 29,-142 87,-199 58,-56 123,-84 197,-84 62,0 115,21 158,63 44,42 66,95 66,157 0,76 -28,141 -85,197 -56,55 -122,82 -199,82z"/>
<path id="247" class="fil11" d="M149961 300782c37,0 52,19 47,55l-17 157c-3,17 -10,30 -21,40 -12,10 -26,15 -43,15l-787 0c-14,0 -21,7 -21,21l-322 2621c-3,17 -10,30 -21,40 -11,10 -24,15 -38,15l-186 0c-37,0 -53,-19 -47,-55l322 -2621c0,-14 -6,-21 -17,-21l-758 0c-37,0 -52,-18 -47,-55l22 -157c5,-36 25,-55 59,-55l1875 0z"/>
<path id="248" class="fil11" d="M150651 303780c-200,0 -364,-53 -493,-157 -128,-104 -208,-248 -239,-432 -9,-59 -13,-127 -13,-203 0,-85 7,-191 21,-318 26,-208 64,-381 115,-516 76,-181 192,-323 347,-428 155,-104 333,-156 533,-156 198,0 361,52 489,156 129,105 208,246 239,424 9,62 13,130 13,203 0,85 -7,190 -21,317 -28,215 -68,389 -119,521 -76,184 -192,328 -347,432 -155,104 -330,157 -525,157zm34 -263c130,0 246,-37 349,-112 103,-75 179,-176 227,-303 31,-82 59,-224 85,-427 17,-127 25,-236 25,-326 0,-48 -1,-82 -4,-102 -14,-127 -64,-228 -151,-303 -86,-74 -196,-112 -332,-112 -133,0 -249,38 -349,112 -100,75 -176,176 -227,303 -31,76 -59,219 -84,428 -17,127 -26,235 -26,326 0,158 43,283 129,376 87,94 206,140 358,140z"/>
<path id="249" class="fil11" d="M153704 303780c-198,0 -360,-53 -487,-159 -127,-106 -206,-249 -237,-430 -9,-56 -13,-116 -13,-178 0,-101 8,-217 25,-347 26,-209 65,-381 119,-516 70,-175 183,-316 339,-421 155,-106 331,-159 529,-159 200,0 367,52 499,156 133,105 212,235 237,390 6,28 9,66 9,114 0,37 -19,58 -55,64l-182 21 -13 0c-28,0 -42,-16 -42,-47l-5 -50c-11,-108 -60,-199 -148,-274 -87,-74 -199,-112 -334,-112 -136,0 -254,38 -356,112 -101,75 -173,175 -216,299 -39,102 -69,244 -89,427 -14,111 -21,216 -21,318 0,56 2,95 4,114 12,124 58,225 140,301 82,76 192,114 330,114 136,0 256,-36 360,-108 105,-72 175,-163 212,-273 6,-5 8,-13 8,-21 0,0 0,-1 0,-2 0,-2 2,-2 5,-2 8,-37 31,-52 67,-47l174 30c17,3 29,10 36,21 7,11 8,25 2,42l-21 72c-62,164 -173,297 -333,398 -159,102 -340,153 -543,153z"/>
<path id="250" class="fil11" d="M155837 303780c-200,0 -365,-53 -493,-157 -128,-104 -208,-248 -239,-432 -9,-59 -13,-127 -13,-203 0,-85 7,-191 21,-318 26,-208 64,-381 115,-516 76,-181 191,-323 347,-428 155,-104 333,-156 533,-156 198,0 361,52 489,156 128,105 208,246 239,424 9,62 13,130 13,203 0,85 -7,190 -21,317 -29,215 -68,389 -119,521 -76,184 -192,328 -347,432 -155,104 -330,157 -525,157zm34 -263c130,0 246,-37 349,-112 103,-75 179,-176 227,-303 31,-82 59,-224 84,-427 17,-127 26,-236 26,-326 0,-48 -2,-82 -4,-102 -15,-127 -65,-228 -151,-303 -86,-74 -197,-112 -332,-112 -133,0 -249,38 -349,112 -100,75 -176,176 -227,303 -31,76 -59,219 -84,428 -17,127 -26,235 -26,326 0,158 43,283 129,376 86,94 206,140 358,140z"/>
<path id="251" class="fil11" d="M158419 301574c195,0 349,55 462,165 113,110 169,260 169,449 0,22 -3,62 -8,118l-170 1385c-5,36 -25,55 -59,55l-186 0c-14,0 -26,-5 -36,-15 -10,-10 -14,-23 -11,-40l165 -1325c3,-20 5,-48 5,-85 0,-135 -39,-243 -115,-324 -76,-80 -180,-120 -313,-120 -138,0 -258,40 -360,122 -101,82 -168,189 -199,322l-173 1410c-3,17 -10,30 -22,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-19 -46,-55l249 -2032c6,-37 26,-55 60,-55l186 0c14,0 26,5 36,15 10,9 13,23 10,40l-21 156c0,9 2,15 7,19 4,5 9,3 14,-6 136,-169 329,-254 580,-254z"/>
<path id="252" class="fil11" d="M160676 301798c-3,17 -10,31 -21,41 -12,10 -24,14 -39,14l-448 0c-12,0 -20,8 -26,22l-148 1236c-3,22 -4,53 -4,93 0,99 26,169 78,212 52,42 134,63 244,63l93 0c14,0 26,5 36,15 10,10 13,23 10,40l-21 148c-5,37 -25,57 -59,60l-140 0c-178,0 -312,-31 -404,-91 -92,-61 -138,-171 -138,-329 0,-22 3,-62 9,-118l165 -1329c0,-14 -7,-22 -21,-22l-233 0c-37,0 -52,-18 -47,-55l17 -139c6,-37 26,-55 60,-55l237 0c5,0 10,-2 14,-7 5,-4 7,-9 7,-14l59 -475c6,-36 25,-55 59,-55l178 0c14,0 26,5 36,15 10,10 13,23 11,40l-60 475c0,14 6,21 17,21l449 0c37,0 52,18 47,55l-17 139z"/>
<path id="253" class="fil11" d="M162102 301583c88,0 161,16 221,50 22,12 29,34 21,68l-68 186c-9,37 -31,48 -68,34 -51,-17 -117,-24 -199,-21 -144,6 -268,60 -372,163 -105,103 -167,234 -187,392l-152 1236c-3,17 -10,30 -21,40 -11,10 -26,15 -42,15l-182 0c-37,0 -53,-19 -47,-55l250 -2032c5,-37 25,-55 59,-55l186 0c14,0 26,5 36,15 10,9 14,23 11,40l-30 237c-3,11 -1,17 4,19 6,1 12,-2 17,-11 68,-101 150,-180 246,-237 96,-56 202,-84 317,-84z"/>
<path id="254" class="fil11" d="M162979 301218c-60,0 -108,-16 -144,-50 -37,-34 -55,-79 -55,-136 0,-70 24,-130 72,-178 48,-48 108,-72 182,-72 59,0 107,17 144,51 36,34 55,78 55,131 0,74 -24,135 -72,183 -48,47 -109,71 -182,71zm-398 2528c-37,0 -52,-19 -47,-55l246 -2032c3,-17 10,-31 21,-40 11,-10 25,-15 42,-15l182 0c37,0 52,18 47,55l-250 2032c-6,36 -25,55 -59,55l-182 0z"/>
<path id="255" class="fil11" d="M165294 302150c9,51 13,104 13,161 0,84 -10,206 -30,364 -28,231 -69,410 -122,537 -71,175 -177,314 -320,415 -143,102 -310,153 -502,153 -110,0 -206,-22 -290,-66 -83,-44 -150,-108 -201,-193 -3,-5 -7,-7 -12,-6 -6,1 -10,6 -13,15l-17 161c-3,17 -10,30 -21,40 -12,10 -26,15 -43,15l-182 0c-36,0 -52,-19 -46,-55l351 -2854c6,-36 26,-55 59,-55l183 0c36,0 52,19 46,55l-118 978c0,9 2,14 6,17 4,3 10,0 19,-8 70,-82 153,-145 248,-189 94,-43 195,-65 302,-65 195,0 352,51 470,154 119,103 192,245 220,426zm-444 1037c34,-59 60,-126 80,-201 20,-75 38,-179 55,-311 14,-122 21,-212 21,-271 0,-99 -15,-186 -46,-263 -26,-93 -75,-168 -148,-224 -74,-56 -164,-85 -271,-85 -107,0 -201,29 -282,85 -80,56 -143,134 -188,233 -34,62 -62,131 -83,207 -21,76 -40,182 -57,318 -14,104 -21,204 -21,300 0,88 10,160 30,216 22,99 67,178 135,237 68,60 155,89 263,89 112,0 215,-29 306,-89 92,-59 161,-139 206,-241z"/>
<path id="256" class="fil11" d="M167242 301659c5,-37 25,-55 59,-55l182 0c37,0 52,18 46,55l-249 2032c0,17 -6,30 -17,40 -12,10 -26,15 -43,15l-182 0c-36,0 -52,-19 -46,-55l17 -161c3,-9 1,-14 -4,-17 -6,-3 -12,0 -17,8 -144,170 -336,254 -576,254 -186,0 -340,-52 -462,-156 -121,-105 -182,-250 -182,-436 0,-20 3,-55 9,-106l173 -1418c6,-37 26,-55 60,-55l186 0c37,0 52,18 47,55l-166 1329c-2,20 -4,49 -4,89 0,135 38,242 112,320 75,77 180,116 316,116 155,0 285,-48 389,-144 105,-96 167,-223 187,-381l165 -1329z"/>
<path id="257" class="fil11" d="M169100 301798c-3,17 -10,31 -21,41 -11,10 -24,14 -38,14l-449 0c-11,0 -20,8 -25,22l-149 1236c-2,22 -4,53 -4,93 0,99 26,169 79,212 52,42 133,63 243,63l93 0c14,0 26,5 36,15 10,10 13,23 11,40l-22 148c-5,37 -25,57 -59,60l-139 0c-178,0 -313,-31 -405,-91 -91,-61 -137,-171 -137,-329 0,-22 2,-62 8,-118l165 -1329c0,-14 -7,-22 -21,-22l-233 0c-36,0 -52,-18 -46,-55l17 -139c5,-37 25,-55 59,-55l237 0c6,0 10,-2 15,-7 4,-4 6,-9 6,-14l59 -475c6,-36 26,-55 60,-55l177 0c15,0 27,5 36,15 10,10 14,23 11,40l-59 475c0,14 5,21 17,21l448 0c37,0 53,18 47,55l-17 139z"/>
<path id="258" class="fil11" d="M170196 303521c125,-2 235,-31 331,-86 96,-55 173,-132 233,-231 8,-14 19,-24 33,-30 14,-5 27,-4 38,4l115 68c17,9 25,21 25,38 0,9 -4,20 -13,34 -81,141 -194,253 -336,337 -143,83 -304,125 -485,125 -192,0 -348,-47 -468,-140 -120,-93 -198,-223 -235,-390 -16,-81 -25,-169 -25,-262 0,-82 7,-189 21,-322 14,-121 28,-218 43,-290 14,-72 32,-139 55,-201 67,-183 179,-330 334,-440 155,-110 333,-165 533,-165 246,0 429,69 551,207 121,139 182,330 182,576 0,90 -10,213 -30,368 -5,37 -25,55 -59,55l-1312 0c-17,0 -26,7 -26,21 -11,82 -17,160 -17,233 0,147 45,266 136,356 90,90 216,135 376,135zm166 -1689c-136,0 -252,36 -348,108 -96,72 -166,169 -211,290 -23,59 -45,155 -68,288 0,14 6,21 17,21l1058 0c14,0 21,-7 21,-21 9,-127 12,-217 9,-271 -14,-127 -63,-228 -146,-303 -83,-74 -194,-112 -332,-112z"/>
<path id="259" class="fil11" d="M171428 304080c-42,0 -56,-20 -42,-59l284 -881c14,-33 35,-50 63,-50l157 0c17,0 29,5 36,14 7,10 8,25 2,45l-330 885c-14,31 -37,46 -68,46l-102 0z"/>
<path id="260" class="fil11" d="M174053 303767c-217,0 -391,-48 -521,-144 -129,-96 -194,-217 -194,-364 0,-25 1,-44 4,-55l4 -38c6,-37 25,-55 59,-55l178 0c14,0 26,3 36,10 10,7 14,17 11,28l-5 38c-11,93 26,174 111,243 84,70 197,104 338,104 150,0 275,-37 375,-112 100,-75 150,-167 150,-277 0,-62 -20,-113 -61,-153 -41,-39 -88,-70 -142,-93 -54,-22 -141,-54 -263,-93 -141,-45 -256,-88 -345,-129 -88,-41 -163,-97 -224,-167 -61,-71 -91,-160 -91,-267 0,-28 1,-51 4,-68 23,-180 110,-324 263,-432 152,-107 340,-160 563,-160 211,0 381,48 508,146 127,97 190,222 190,374 0,28 -1,50 -4,64 -3,17 -10,30 -21,40 -11,10 -25,15 -42,15l-166 0c-16,0 -30,-3 -40,-9 -10,-5 -13,-12 -10,-21l4 -25c11,-96 -24,-177 -106,-242 -82,-64 -197,-97 -347,-97 -147,0 -267,33 -362,97 -95,65 -142,153 -142,263 0,85 37,150 110,197 74,46 188,94 343,142 147,45 265,86 354,124 89,39 165,94 228,166 64,72 95,163 95,273 0,31 -1,55 -4,72 -22,183 -110,330 -262,440 -153,110 -345,165 -576,165z"/>
<path id="261" class="fil11" d="M176191 303521c124,-2 234,-31 330,-86 96,-55 174,-132 233,-231 8,-14 20,-24 34,-30 14,-5 27,-4 38,4l114 68c17,9 26,21 26,38 0,9 -5,20 -13,34 -82,141 -194,253 -337,337 -142,83 -304,125 -484,125 -192,0 -348,-47 -468,-140 -120,-93 -198,-223 -235,-390 -17,-81 -26,-169 -26,-262 0,-82 8,-189 22,-322 14,-121 28,-218 42,-290 14,-72 32,-139 55,-201 68,-183 179,-330 334,-440 156,-110 333,-165 534,-165 245,0 429,69 550,207 122,139 182,330 182,576 0,90 -10,213 -29,368 -6,37 -26,55 -60,55l-1312 0c-17,0 -25,7 -25,21 -12,82 -17,160 -17,233 0,147 45,266 135,356 90,90 216,135 377,135zm165 -1689c-135,0 -251,36 -347,108 -96,72 -167,169 -212,290 -22,59 -45,155 -68,288 0,14 6,21 17,21l1059 0c14,0 21,-7 21,-21 8,-127 11,-217 8,-271 -14,-127 -62,-228 -146,-303 -83,-74 -194,-112 -332,-112z"/>
<path id="262" class="fil11" d="M178384 303521c124,-2 234,-31 330,-86 96,-55 173,-132 233,-231 8,-14 19,-24 34,-30 14,-5 26,-4 38,4l114 68c17,9 25,21 25,38 0,9 -4,20 -12,34 -82,141 -194,253 -337,337 -142,83 -304,125 -485,125 -192,0 -347,-47 -467,-140 -120,-93 -199,-223 -235,-390 -17,-81 -26,-169 -26,-262 0,-82 7,-189 21,-322 15,-121 29,-218 43,-290 14,-72 32,-139 55,-201 68,-183 179,-330 334,-440 155,-110 333,-165 534,-165 245,0 429,69 550,207 121,139 182,330 182,576 0,90 -10,213 -30,368 -5,37 -25,55 -59,55l-1312 0c-17,0 -26,7 -26,21 -11,82 -17,160 -17,233 0,147 46,266 136,356 90,90 216,135 377,135zm165 -1689c-136,0 -251,36 -347,108 -96,72 -167,169 -212,290 -23,59 -45,155 -68,288 0,14 6,21 17,21l1059 0c14,0 21,-7 21,-21 8,-127 11,-217 8,-271 -14,-127 -63,-228 -146,-303 -83,-74 -194,-112 -332,-112z"/>
<path id="263" class="fil11" d="M120332 306959c3,-17 10,-31 22,-40 11,-10 25,-15 42,-15l182 0c37,0 52,18 46,55l-245 2015c-40,316 -157,547 -351,694 -195,147 -446,220 -754,220 -59,0 -103,-1 -131,-4 -34,-3 -50,-23 -47,-59l30 -170c6,-39 25,-56 59,-50 288,11 502,-34 644,-134 141,-100 227,-269 258,-506l17 -148c3,-8 1,-14 -4,-17 -6,-3 -12,0 -17,9 -147,166 -335,250 -563,250 -178,0 -331,-50 -458,-149 -127,-98 -203,-238 -228,-419 -6,-62 -9,-114 -9,-156 0,-105 9,-225 26,-360 28,-246 67,-426 118,-542 71,-169 177,-306 318,-409 141,-103 302,-154 482,-154 237,0 411,80 521,241 6,9 11,12 17,9 6,-3 8,-9 8,-17l17 -144zm-194 1439c14,-45 25,-93 34,-144 8,-51 21,-145 38,-283 22,-189 33,-309 33,-360 0,-28 -1,-51 -4,-68 -5,-119 -48,-217 -127,-294 -79,-78 -183,-117 -313,-117 -130,0 -244,38 -343,115 -99,76 -172,175 -220,296 -37,88 -68,229 -93,423 -14,105 -21,205 -21,301 0,51 2,93 8,127 14,118 63,217 146,294 83,78 190,117 320,117 135,0 250,-39 345,-115 94,-76 160,-173 197,-292z"/>
<path id="264" class="fil11" d="M121480 306519c-60,0 -108,-17 -144,-51 -37,-34 -55,-79 -55,-136 0,-70 24,-130 72,-177 48,-48 108,-72 182,-72 59,0 107,16 144,50 36,34 55,78 55,132 0,73 -24,134 -72,182 -48,48 -109,72 -182,72zm-398 2527c-37,0 -53,-18 -47,-55l246 -2032c2,-17 10,-31 21,-40 11,-10 25,-15 42,-15l182 0c37,0 52,18 47,55l-250 2032c-6,37 -25,55 -59,55l-182 0z"/>
<path id="265" class="fil11" d="M123173 307099c-3,16 -10,30 -21,40 -12,10 -24,15 -38,15l-449 0c-11,0 -20,7 -25,21l-149 1236c-2,22 -4,53 -4,93 0,99 26,169 78,212 53,42 134,63 244,63l93 0c14,0 26,5 36,15 10,10 13,23 11,40l-22 148c-5,37 -25,57 -59,60l-140 0c-177,0 -312,-31 -404,-91 -92,-61 -137,-170 -137,-328 0,-23 2,-63 8,-119l165 -1329c0,-14 -7,-21 -21,-21l-233 0c-37,0 -52,-19 -46,-55l16 -140c6,-37 26,-55 60,-55l237 0c5,0 10,-2 15,-7 4,-4 6,-9 6,-14l59 -474c6,-37 26,-56 60,-56l177 0c14,0 26,5 36,15 10,10 14,24 11,41l-59 474c0,14 5,21 17,21l448 0c37,0 52,18 47,55l-17 140z"/>
<path id="266" class="fil11" d="M124625 306874c195,0 349,55 461,165 113,110 170,260 170,449 0,23 -3,62 -9,119l-169 1384c-6,37 -25,55 -59,55l-187 0c-14,0 -26,-5 -36,-15 -9,-10 -13,-23 -10,-40l165 -1325c3,-20 4,-48 4,-85 0,-135 -38,-243 -114,-324 -76,-80 -181,-120 -313,-120 -139,0 -259,41 -360,122 -102,82 -168,189 -199,322l-174 1410c-3,17 -10,30 -21,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-18 -47,-55l352 -2853c5,-37 25,-55 59,-55l182 0c36,0 52,18 46,55l-118 977c0,9 2,15 6,20 4,4 9,2 15,-7 135,-169 329,-254 580,-254z"/>
<path id="267" class="fil11" d="M127224 306959c6,-37 26,-55 59,-55l183 0c36,0 52,18 46,55l-250 2032c0,17 -5,30 -17,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-18 -47,-55l17 -161c3,-9 2,-14 -4,-17 -6,-3 -11,0 -17,8 -144,170 -336,254 -576,254 -186,0 -340,-52 -461,-156 -121,-105 -182,-250 -182,-436 0,-20 3,-55 8,-106l174 -1418c6,-37 25,-55 59,-55l187 0c36,0 52,18 46,55l-165 1329c-3,20 -4,49 -4,89 0,135 37,242 112,320 75,77 180,116 315,116 156,0 285,-48 390,-144 104,-96 166,-223 186,-381l165 -1329z"/>
<path id="268" class="fil11" d="M129705 307450c8,51 13,104 13,161 0,84 -10,206 -30,364 -28,231 -69,410 -123,537 -70,175 -177,314 -319,415 -143,102 -310,153 -502,153 -110,0 -207,-22 -290,-66 -83,-44 -150,-108 -201,-193 -3,-5 -7,-7 -13,-6 -5,2 -10,6 -13,15l-16 161c-3,17 -10,30 -22,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-18 -47,-55l352 -2853c5,-37 25,-55 59,-55l182 0c37,0 52,18 47,55l-119 977c0,9 2,15 6,17 5,3 11,0 20,-8 70,-82 153,-145 247,-188 95,-44 196,-66 303,-66 195,0 351,51 470,154 118,103 192,245 220,426zm-445 1037c34,-59 61,-126 81,-201 20,-75 38,-179 55,-311 14,-122 21,-212 21,-271 0,-99 -15,-186 -47,-263 -25,-93 -74,-167 -148,-224 -73,-56 -163,-85 -271,-85 -107,0 -201,29 -281,85 -81,57 -143,134 -189,233 -33,62 -61,131 -82,207 -21,77 -40,182 -57,318 -14,104 -21,204 -21,300 0,88 9,160 29,216 23,99 68,178 136,237 67,60 155,89 262,89 113,0 215,-29 307,-89 92,-59 160,-139 205,-241z"/>
<path id="269" class="fil11" d="M130276 309033c-67,0 -122,-20 -163,-61 -41,-41 -61,-93 -61,-155 0,-76 29,-142 87,-199 58,-56 123,-84 197,-84 62,0 115,21 158,63 44,42 66,95 66,157 0,76 -28,142 -85,197 -56,55 -122,82 -199,82z"/>
<path id="270" class="fil11" d="M131864 309080c-198,0 -360,-53 -487,-159 -127,-106 -206,-249 -237,-430 -8,-56 -13,-115 -13,-178 0,-101 9,-217 26,-347 25,-208 65,-381 118,-516 71,-175 184,-315 339,-421 155,-106 332,-159 529,-159 200,0 367,52 500,157 132,104 211,234 237,389 5,28 8,66 8,114 0,37 -18,58 -55,64l-182 21 -13 0c-28,0 -42,-16 -42,-47l-4 -50c-11,-108 -61,-199 -148,-273 -88,-75 -199,-113 -335,-113 -135,0 -254,38 -355,113 -102,74 -174,174 -216,298 -40,102 -69,244 -89,428 -14,110 -21,215 -21,317 0,57 1,95 4,114 11,125 58,225 140,301 81,76 191,114 330,114 135,0 255,-36 360,-108 104,-72 175,-163 211,-273 6,-5 9,-12 9,-21 0,0 0,-1 0,-2 0,-1 1,-2 4,-2 8,-37 31,-52 68,-47l173 30c17,3 29,10 36,21 7,11 8,25 2,42l-21 72c-62,164 -173,297 -332,398 -160,102 -341,153 -544,153z"/>
<path id="271" class="fil11" d="M133998 309080c-201,0 -365,-52 -494,-157 -128,-104 -208,-248 -239,-432 -8,-59 -13,-127 -13,-203 0,-85 8,-190 22,-317 25,-209 63,-381 114,-517 76,-180 192,-323 347,-427 155,-105 333,-157 533,-157 198,0 361,52 489,157 129,104 209,245 240,423 8,62 12,130 12,203 0,85 -7,191 -21,318 -28,214 -68,388 -118,520 -77,184 -192,328 -348,432 -155,105 -330,157 -524,157zm33 -263c130,0 247,-37 350,-112 103,-75 178,-176 226,-303 31,-81 59,-224 85,-427 17,-127 25,-236 25,-326 0,-48 -1,-82 -4,-102 -14,-127 -64,-228 -150,-302 -86,-75 -197,-113 -333,-113 -132,0 -249,38 -349,113 -100,74 -176,175 -226,302 -31,76 -60,219 -85,428 -17,127 -25,235 -25,326 0,158 43,283 129,377 86,93 205,139 357,139z"/>
<path id="272" class="fil11" d="M137820 306874c184,0 327,52 430,155 103,103 154,246 154,429 0,23 -2,65 -8,127l-169 1406c-3,17 -10,30 -22,40 -11,10 -25,15 -42,15l-178 0c-36,0 -52,-18 -46,-55l165 -1346c3,-20 4,-48 4,-85 0,-130 -37,-233 -110,-309 -73,-76 -174,-114 -301,-114 -146,0 -269,45 -368,135 -99,90 -158,212 -178,364l-165 1355c-3,17 -10,30 -21,40 -11,10 -25,15 -42,15l-182 0c-37,0 -53,-18 -47,-55l165 -1346c3,-20 4,-50 4,-89 0,-130 -36,-232 -110,-307 -73,-75 -173,-112 -300,-112 -144,0 -265,45 -362,135 -98,90 -156,212 -176,364l-165 1355c-3,17 -10,30 -21,40 -11,10 -26,15 -42,15l-182 0c-37,0 -53,-18 -47,-55l250 -2032c5,-37 25,-55 59,-55l186 0c14,0 26,5 36,15 10,9 14,23 11,40l-21 148c0,8 2,14 6,17 4,3 11,0 19,-9 141,-160 332,-241 572,-241 138,0 254,30 349,89 94,59 161,143 201,250 3,17 11,18 25,4 74,-116 169,-202 286,-258 117,-57 245,-85 383,-85z"/>
<path id="273" class="fil11" d="M138701 309046c-17,0 -30,-6 -38,-17 -9,-11 -9,-27 0,-47l1257 -2853c11,-31 32,-46 63,-46l178 0c20,0 33,5 40,16 7,12 7,27 -2,47l-1253 2853c-11,31 -32,47 -63,47l-182 0z"/>
<path id="274" class="fil11" d="M140775 306527c-59,0 -107,-17 -144,-51 -37,-34 -55,-79 -55,-135 0,-71 26,-131 78,-180 53,-50 111,-74 176,-74 59,0 107,17 144,53 37,35 55,81 55,137 0,71 -24,130 -72,178 -48,48 -109,72 -182,72zm-991 3399c-36,0 -52,-18 -46,-55l17 -148c5,-37 25,-55 59,-55 288,-8 449,-154 483,-436l279 -2273c6,-37 25,-55 59,-55l187 0c14,0 26,5 35,15 10,9 14,23 11,40l-279 2273c-31,240 -110,415 -237,525 -127,110 -316,167 -568,169z"/>
<path id="275" class="fil11" d="M143078 307437c11,57 17,123 17,199 0,57 -9,169 -26,339 -28,234 -66,409 -114,525 -70,180 -178,322 -322,425 -144,103 -313,155 -508,155 -110,0 -206,-22 -290,-66 -83,-44 -150,-106 -201,-188 -3,-9 -7,-12 -12,-9 -6,3 -10,9 -13,17l-119 978c-2,17 -10,30 -21,40 -11,10 -25,15 -42,15l-182 0c-37,0 -52,-18 -47,-55l352 -2853c5,-37 25,-55 59,-55l182 0c37,0 52,18 46,55l-16 161c-3,8 -2,13 4,15 5,1 11,-1 17,-7 70,-82 153,-145 247,-190 95,-45 197,-68 307,-68 192,0 347,51 464,152 117,102 190,240 218,415zm-462 1071c43,-62 76,-132 100,-209 24,-78 44,-186 61,-324 14,-99 21,-195 21,-288 0,-76 -9,-151 -29,-224 -23,-102 -72,-182 -148,-242 -77,-59 -171,-89 -284,-89 -110,0 -207,30 -290,89 -83,60 -147,139 -193,237 -31,60 -56,127 -76,201 -20,75 -38,180 -55,316 -14,101 -21,200 -21,296 0,79 10,155 30,229 22,96 67,173 133,230 66,58 153,87 260,87 108,0 205,-28 292,-84 88,-57 154,-132 199,-225z"/>
<path id="276" class="fil11" d="M144674 307099c-3,16 -10,30 -21,40 -12,10 -24,15 -38,15l-449 0c-11,0 -20,7 -26,21l-148 1236c-3,22 -4,53 -4,93 0,99 26,169 78,212 53,42 134,63 244,63l93 0c14,0 26,5 36,15 10,10 13,23 10,40l-21 148c-5,37 -25,57 -59,60l-140 0c-177,0 -312,-31 -404,-91 -92,-61 -138,-170 -138,-328 0,-23 3,-63 9,-119l165 -1329c0,-14 -7,-21 -21,-21l-233 0c-37,0 -52,-19 -47,-55l17 -140c6,-37 26,-55 60,-55l237 0c5,0 10,-2 15,-7 4,-4 6,-9 6,-14l59 -474c6,-37 26,-56 59,-56l178 0c14,0 26,5 36,15 10,10 14,24 11,41l-59 474c0,14 5,21 16,21l449 0c37,0 52,18 47,55l-17 140z"/>
<path id="277" class="fil11" d="M144852 309046c-17,0 -30,-6 -38,-17 -9,-11 -9,-27 0,-47l1257 -2853c11,-31 32,-46 63,-46l178 0c20,0 33,5 40,16 7,12 7,27 -2,47l-1253 2853c-11,31 -32,47 -63,47l-182 0z"/>
<path id="278" class="fil11" d="M148255 307450c9,51 13,104 13,161 0,84 -10,206 -30,364 -28,231 -69,410 -122,537 -71,175 -178,314 -320,415 -143,102 -310,153 -502,153 -110,0 -206,-22 -290,-66 -83,-44 -150,-108 -201,-193 -3,-5 -7,-7 -13,-6 -5,2 -9,6 -12,15l-17 161c-3,17 -10,30 -21,40 -12,10 -26,15 -43,15l-182 0c-36,0 -52,-18 -46,-55l351 -2853c6,-37 26,-55 59,-55l182 0c37,0 53,18 47,55l-119 977c0,9 3,15 7,17 4,3 10,0 19,-8 70,-82 153,-145 247,-188 95,-44 196,-66 303,-66 195,0 352,51 470,154 119,103 192,245 220,426zm-444 1037c34,-59 60,-126 80,-201 20,-75 38,-179 55,-311 14,-122 21,-212 21,-271 0,-99 -15,-186 -46,-263 -26,-93 -75,-167 -148,-224 -74,-56 -164,-85 -271,-85 -108,0 -201,29 -282,85 -80,57 -143,134 -188,233 -34,62 -62,131 -83,207 -21,77 -40,182 -57,318 -14,104 -21,204 -21,300 0,88 10,160 30,216 22,99 67,178 135,237 68,60 155,89 262,89 113,0 216,-29 307,-89 92,-59 161,-139 206,-241z"/>
<path id="279" class="fil11" d="M150215 306959c3,-17 10,-31 21,-40 12,-10 26,-15 43,-15l182 0c36,0 52,18 46,55l-249 2032c-6,37 -26,55 -60,55l-182 0c-34,0 -51,-18 -51,-55l22 -157c2,-8 1,-14 -5,-17 -5,-3 -12,0 -21,9 -70,82 -152,144 -245,188 -93,44 -194,66 -301,66 -192,0 -346,-51 -463,-153 -118,-101 -190,-240 -218,-415 -12,-53 -17,-118 -17,-194 0,-102 8,-216 25,-343 28,-234 66,-409 114,-525 71,-181 178,-323 322,-426 144,-103 313,-154 508,-154 107,0 203,21 286,63 83,43 150,105 201,187 3,8 8,11 15,8 7,-3 10,-8 10,-17l17 -152zm-258 1532c31,-59 56,-126 76,-201 20,-75 38,-180 55,-315 14,-102 21,-201 21,-297 0,-79 -10,-155 -29,-228 -23,-96 -67,-173 -134,-231 -66,-58 -153,-87 -260,-87 -107,0 -205,29 -292,85 -88,57 -155,131 -203,224 -40,63 -72,133 -96,212 -23,79 -44,186 -61,322 -14,99 -21,195 -21,288 0,76 10,151 30,224 22,102 72,182 148,241 76,60 170,89 283,89 110,0 206,-29 288,-87 82,-57 147,-137 195,-239z"/>
<path id="280" class="fil11" d="M152014 306883c88,0 161,17 221,50 22,12 29,34 21,68l-68 186c-9,37 -31,48 -68,34 -51,-17 -117,-24 -199,-21 -144,6 -268,60 -372,163 -105,103 -167,234 -187,392l-152 1236c-3,17 -10,30 -21,40 -11,10 -26,15 -42,15l-182 0c-37,0 -53,-18 -47,-55l250 -2032c5,-37 25,-55 59,-55l186 0c14,0 26,5 36,15 10,9 14,23 11,40l-30 237c-3,11 -1,18 4,19 6,1 12,-2 17,-11 68,-101 150,-180 246,-237 96,-56 202,-84 317,-84z"/>
<path id="281" class="fil11" d="M152459 309046c-37,0 -52,-18 -47,-55l352 -2853c5,-37 25,-55 59,-55l182 0c37,0 52,18 47,55l-348 2853c-2,17 -9,30 -21,40 -11,10 -25,15 -42,15l-182 0z"/>
<path id="282" class="fil11" d="M154148 309080c-200,0 -365,-52 -493,-157 -129,-104 -208,-248 -239,-432 -9,-59 -13,-127 -13,-203 0,-85 7,-190 21,-317 26,-209 64,-381 114,-517 77,-180 192,-323 348,-427 155,-105 333,-157 533,-157 197,0 360,52 489,157 128,104 208,245 239,423 9,62 13,130 13,203 0,85 -7,191 -21,318 -29,214 -68,388 -119,520 -76,184 -192,328 -347,432 -155,105 -330,157 -525,157zm34 -263c130,0 246,-37 349,-112 103,-75 179,-176 227,-303 31,-81 59,-224 84,-427 17,-127 26,-236 26,-326 0,-48 -2,-82 -5,-102 -14,-127 -64,-228 -150,-302 -86,-75 -197,-113 -332,-113 -133,0 -249,38 -349,113 -101,74 -176,175 -227,302 -31,76 -59,219 -85,428 -16,127 -25,235 -25,326 0,158 43,283 129,377 86,93 205,139 358,139z"/>
<path id="283" class="fil11" d="M155956 309046c-31,0 -48,-16 -51,-47l-326 -2032 0 -12c0,-15 5,-27 15,-36 10,-10 22,-15 36,-15l194 0c31,0 48,15 51,46l225 1651c2,9 7,13 12,13 6,0 10,-4 13,-13l643 -1651c12,-31 33,-46 64,-46l178 0c34,0 52,15 55,46l241 1651c3,9 7,13 13,13 5,0 10,-4 12,-13l644 -1651c11,-31 34,-46 68,-46l186 4c20,0 33,6 40,17 7,11 6,27 -2,47l-830 2027c-11,31 -32,47 -63,47l-203 0c-31,0 -48,-16 -51,-47l-254 -1562c0,-8 -3,-13 -9,-13 -5,0 -10,5 -12,13l-623 1562c-11,31 -32,47 -63,47l-203 0z"/>
<path class="fil4" d="M364596 56025l0 -316c0,-92 76,-168 168,-168l1817 0c92,0 168,76 168,168l0 316c0,93 -76,169 -168,169l-1817 0c-92,0 -168,-76 -168,-169zm17352 -9637c62,402 411,712 830,712l0 0c462,0 841,-378 841,-841l0 -886c0,-228 110,-424 305,-541 196,-118 421,-124 622,-17 507,269 848,771 848,1432l0 17153c0,909 -744,1653 -1653,1653l-1793 0 0 2724c0,10210 -8354,18564 -18565,18564l-25907 0c-10210,0 -18564,-8354 -18564,-18564l0 -2471 -1764 0c-926,0 -1683,-757 -1683,-1683l0 -17093c0,-925 757,-1683 1683,-1683l1764 0 0 -2977c0,-10211 8354,-18565 18564,-18565l25907 0c10211,0 18565,8354 18565,18565l0 4518zm-64348 10377l657 0c264,0 500,123 655,315l0 1051c-155,191 -391,315 -655,315l-657 0c-462,0 -840,-378 -840,-840l0 -1c0,-462 378,-840 840,-840zm329 4364c464,0 840,376 840,840 0,465 -376,841 -840,841 -464,0 -841,-376 -841,-841 0,-464 377,-840 841,-840zm64716 -4364l657 0c462,0 840,378 840,840l0 1c0,462 -378,840 -840,840l-657 0c-290,0 -546,-149 -697,-373l0 -935c151,-225 407,-373 697,-373zm328 4371c461,0 834,373 834,833 0,461 -373,834 -834,834 -460,0 -833,-373 -833,-834 0,-460 373,-833 833,-833zm-12043 -5155c-4161,944 -4777,1019 -9639,453l-11368 113c-2307,23 -4055,710 -6332,710l-12743 0 -850 -460 0 -1859 850 -461 12743 0c2277,0 4025,687 6332,710l11368 113c4862,-565 5478,-490 9639,454 54,12 91,58 91,113 0,56 -37,102 -91,114zm-38920 -5119l0 -13316 3178 0 0 13316 -3178 0zm9616 0l0 -13748 304 0 8291 7770 0 -7338 2934 0 0 13824 -276 0 -8319 -7771 0 7263 -2934 0zm17628 0l0 -13316 3141 0 0 5796 4397 -5796 3784 0 -5022 6335 5417 6981 -3837 0 -4739 -6134 0 6134 -3141 0zm-29592 17110c531,325 982,551 1354,683 369,130 731,195 1085,195 355,0 642,-79 859,-236 216,-156 324,-357 324,-603 0,-352 -384,-750 -1155,-1189 -124,-71 -219,-128 -286,-167l-584 -329c-566,-321 -987,-685 -1259,-1089 -275,-405 -411,-864 -411,-1376 0,-695 262,-1264 787,-1709 522,-445 1198,-667 2028,-667 307,0 638,37 993,108 358,71 754,183 1191,333l0 2022c-416,-260 -811,-461 -1184,-603 -374,-142 -691,-214 -954,-214 -290,0 -518,63 -685,187 -166,124 -249,295 -249,508 0,151 48,291 148,421 99,132 248,250 447,358l1012 559c848,469 1417,902 1709,1298 293,399 439,868 439,1412 0,842 -286,1523 -860,2041 -575,518 -1335,776 -2284,776 -321,0 -670,-34 -1048,-101 -376,-67 -793,-173 -1244,-315l-173 -2303zm8863 2439l0 -6828 -2744 0 0 -1805 7536 0 0 1805 -2732 0 0 6828 -2060 0zm6065 0l0 -8633 2061 0 0 8633 -2061 0zm6088 0l0 -6828 -2743 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2061 0zm12205 -5902c-374,-384 -752,-668 -1134,-855 -384,-185 -786,-279 -1207,-279 -730,0 -1327,252 -1790,756 -466,504 -697,1153 -697,1941 0,791 229,1431 690,1920 460,490 1059,736 1799,736 437,0 872,-91 1307,-274 435,-183 867,-458 1300,-823l-132 2292c-370,250 -772,441 -1211,571 -439,132 -894,197 -1368,197 -508,0 -993,-79 -1461,-238 -465,-158 -896,-394 -1288,-703 -557,-437 -982,-969 -1279,-1599 -294,-628 -443,-1315 -443,-2057 0,-640 110,-1239 328,-1798 219,-559 536,-1055 953,-1484 420,-428 906,-756 1459,-985 550,-228 1132,-342 1743,-342 486,0 948,67 1388,204 442,134 862,339 1262,613l-219 2207zm1607 5902l0 -8633 2037 0 0 3170 3328 0 0 -3170 2025 0 0 8633 -2025 0 0 -3622 -3328 0 0 3622 -2037 0zm-27014 -43954c-8471,0 -15413,6942 -15413,15413l0 25907c0,8470 6942,15412 15413,15412l25907 0c8471,0 15413,-6942 15413,-15412l0 -25907c0,-8471 -6942,-15413 -15413,-15413l-25907 0z"/>
<path class="fil12" d="M266614 170137l0 -316c0,-93 76,-168 168,-168l1817 0c92,0 168,75 168,168l0 316c0,92 -76,168 -168,168l-1817 0c-92,0 -168,-76 -168,-168zm17352 -9638c62,402 411,712 830,712l0 0c462,0 841,-378 841,-840l0 -887c0,-228 110,-423 306,-541 195,-117 420,-123 621,-17 507,269 848,771 848,1432l0 17153c0,909 -744,1653 -1653,1653l-1793 0 0 2724c0,10211 -8354,18565 -18565,18565l-25907 0c-10210,0 -18564,-8354 -18564,-18565l0 -2471 -1764 0c-926,0 -1683,-757 -1683,-1682l0 -17094c0,-925 757,-1682 1683,-1682l1764 0 0 -2978c0,-10210 8354,-18564 18564,-18564l25907 0c10211,0 18565,8354 18565,18564l0 4518zm-64348 10377l657 0c264,0 500,123 655,315l0 1051c-155,192 -391,315 -655,315l-657 0c-462,0 -840,-378 -840,-840l0 -1c0,-462 378,-840 840,-840zm329 4364c464,0 840,377 840,841 0,464 -376,840 -840,840 -464,0 -841,-376 -841,-840 0,-464 377,-841 841,-841zm64716 -4364l657 0c462,0 840,378 840,840l0 1c0,462 -378,840 -840,840l-657 0c-290,0 -546,-148 -697,-373l0 -935c151,-224 407,-373 697,-373zm328 4371c461,0 834,373 834,834 0,460 -373,834 -834,834 -460,0 -833,-374 -833,-834 0,-461 373,-834 833,-834zm-12043 -5155c-4161,944 -4777,1019 -9639,454l-11368 113c-2307,23 -4055,710 -6332,710l-12743 0 -850 -461 0 -1859 850 -460 12743 0c2277,0 4025,687 6332,710l11368 113c4862,-566 5478,-491 9639,453 54,12 91,59 91,114 0,55 -37,101 -91,113zm-38920 -5119l0 -13316 3178 0 0 13316 -3178 0zm9616 0l0 -13748 304 0 8291 7771 0 -7339 2934 0 0 13824 -275 0 -8320 -7771 0 7263 -2934 0zm17628 0l0 -13316 3141 0 0 5796 4397 -5796 3784 0 -5022 6336 5417 6980 -3837 0 -4739 -6134 0 6134 -3141 0zm-29592 17110c531,326 982,551 1354,683 369,130 731,195 1085,195 355,0 642,-79 859,-235 216,-157 324,-358 324,-604 0,-352 -384,-750 -1155,-1189 -124,-71 -219,-128 -286,-166l-583 -330c-567,-321 -988,-684 -1260,-1089 -275,-404 -411,-864 -411,-1376 0,-695 262,-1264 787,-1709 522,-445 1198,-666 2028,-666 307,0 638,36 993,107 358,71 754,183 1191,334l0 2022c-416,-260 -811,-462 -1184,-604 -374,-142 -691,-213 -954,-213 -290,0 -518,63 -685,187 -166,124 -249,294 -249,508 0,150 48,290 148,420 99,132 248,250 447,358l1012 559c848,469 1417,902 1709,1299 293,398 439,867 439,1412 0,841 -286,1522 -860,2040 -575,519 -1335,777 -2284,777 -321,0 -670,-35 -1048,-102 -376,-67 -793,-173 -1244,-315l-173 -2303zm8863 2439l0 -6828 -2744 0 0 -1805 7536 0 0 1805 -2732 0 0 6828 -2060 0zm6065 0l0 -8633 2061 0 0 8633 -2061 0zm6088 0l0 -6828 -2743 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2061 0zm12205 -5901c-374,-384 -752,-669 -1134,-856 -384,-185 -786,-278 -1207,-278 -730,0 -1327,252 -1790,756 -466,504 -697,1152 -697,1940 0,791 229,1431 690,1921 460,490 1059,735 1799,735 437,0 872,-91 1307,-274 435,-183 867,-457 1300,-823l-132 2292c-370,250 -772,441 -1211,571 -439,133 -894,198 -1368,198 -508,0 -993,-80 -1461,-238 -465,-159 -896,-394 -1288,-703 -557,-437 -982,-970 -1279,-1600 -294,-628 -443,-1315 -443,-2056 0,-640 110,-1240 328,-1799 219,-559 536,-1054 953,-1483 420,-429 906,-756 1459,-986 551,-228 1132,-341 1743,-341 486,0 948,67 1388,203 442,134 862,339 1262,614l-219 2207zm1607 5901l0 -8633 2037 0 0 3171 3328 0 0 -3171 2025 0 0 8633 -2025 0 0 -3621 -3328 0 0 3621 -2037 0zm-27014 -43954c-8471,0 -15413,6942 -15413,15413l0 25907c0,8471 6942,15413 15413,15413l25907 0c8471,0 15413,-6942 15413,-15413l0 -25907c0,-8471 -6942,-15413 -15413,-15413l-25907 0z"/>
<path class="fil5" d="M70650 170137l0 -316c0,-93 75,-168 168,-168l1816 0c93,0 169,75 169,168l0 316c0,92 -76,168 -169,168l-1816 0c-93,0 -168,-76 -168,-168zm17351 -9638c63,402 412,712 831,712l0 0c462,0 840,-378 840,-840l0 -887c0,-228 111,-423 306,-541 196,-117 420,-123 622,-17 507,269 848,771 848,1432l0 17153c0,909 -744,1653 -1653,1653l-1794 0 0 2724c0,10211 -8354,18565 -18564,18565l-25907 0c-10211,0 -18565,-8354 -18565,-18565l0 -2471 -1763 0c-926,0 -1683,-757 -1683,-1682l0 -17094c0,-925 757,-1682 1683,-1682l1763 0 0 -2978c0,-10210 8354,-18564 18565,-18564l25907 0c10210,0 18564,8354 18564,18564l0 4518zm-64347 10377l657 0c264,0 500,123 654,315l0 1051c-154,192 -390,315 -654,315l-657 0c-462,0 -840,-378 -840,-840l0 -1c0,-462 378,-840 840,-840zm328 4364c465,0 841,377 841,841 0,464 -376,840 -841,840 -464,0 -840,-376 -840,-840 0,-464 376,-841 840,-841zm64717 -4364l656 0c463,0 841,378 841,840l0 1c0,462 -378,840 -841,840l-656 0c-290,0 -546,-148 -698,-373l0 -935c152,-224 408,-373 698,-373zm328 4371c461,0 834,373 834,834 0,460 -373,834 -834,834 -460,0 -834,-374 -834,-834 0,-461 374,-834 834,-834zm-12043 -5155c-4162,944 -4777,1019 -9639,454l-11368 113c-2307,23 -4055,710 -6333,710l-12742 0 -850 -461 0 -1859 850 -460 12742 0c2278,0 4026,687 6333,710l11368 113c4862,-566 5477,-491 9639,453 54,12 91,59 91,114 0,55 -37,101 -91,113zm-38921 -5119l0 -13316 3179 0 0 13316 -3179 0zm9617 0l0 -13748 304 0 8291 7771 0 -7339 2934 0 0 13824 -276 0 -8319 -7771 0 7263 -2934 0zm17628 0l0 -13316 3140 0 0 5796 4398 -5796 3784 0 -5022 6336 5417 6980 -3837 0 -4740 -6134 0 6134 -3140 0zm-29592 17110c531,326 982,551 1354,683 369,130 731,195 1085,195 355,0 642,-79 859,-235 216,-157 323,-358 323,-604 0,-352 -384,-750 -1154,-1189 -124,-71 -219,-128 -286,-166l-584 -330c-567,-321 -987,-684 -1260,-1089 -274,-404 -410,-864 -410,-1376 0,-695 262,-1264 786,-1709 523,-445 1199,-666 2028,-666 307,0 639,36 994,107 358,71 754,183 1191,334l0 2022c-416,-260 -811,-462 -1185,-604 -374,-142 -691,-213 -953,-213 -290,0 -518,63 -685,187 -166,124 -250,294 -250,508 0,150 49,290 149,420 99,132 248,250 447,358l1012 559c847,469 1416,902 1709,1299 293,398 439,867 439,1412 0,841 -287,1522 -860,2040 -575,519 -1335,777 -2284,777 -321,0 -671,-35 -1048,-102 -376,-67 -793,-173 -1244,-315l-173 -2303zm8862 2439l0 -6828 -2743 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2061 0zm6066 0l0 -8633 2061 0 0 8633 -2061 0zm6088 0l0 -6828 -2744 0 0 -1805 7536 0 0 1805 -2731 0 0 6828 -2061 0zm12205 -5901c-374,-384 -752,-669 -1134,-856 -384,-185 -787,-278 -1207,-278 -730,0 -1327,252 -1791,756 -465,504 -697,1152 -697,1940 0,791 230,1431 691,1921 459,490 1059,735 1799,735 437,0 872,-91 1306,-274 435,-183 868,-457 1301,-823l-132 2292c-370,250 -772,441 -1211,571 -439,133 -894,198 -1368,198 -508,0 -994,-80 -1461,-238 -465,-159 -896,-394 -1288,-703 -557,-437 -982,-970 -1279,-1600 -294,-628 -443,-1315 -443,-2056 0,-640 110,-1240 327,-1799 220,-559 537,-1054 954,-1483 420,-429 906,-756 1459,-986 550,-228 1132,-341 1743,-341 486,0 947,67 1388,203 441,134 862,339 1262,614l-219 2207zm1607 5901l0 -8633 2037 0 0 3171 3328 0 0 -3171 2024 0 0 8633 -2024 0 0 -3621 -3328 0 0 3621 -2037 0zm-27014 -43954c-8471,0 -15413,6942 -15413,15413l0 25907c0,8471 6942,15413 15413,15413l25907 0c8471,0 15413,-6942 15413,-15413l0 -25907c0,-8471 -6942,-15413 -15413,-15413l-25907 0z"/>
<path class="fil4" d="M266614 56026l0 -316c0,-93 76,-169 168,-169l1817 0c92,0 168,76 168,169l0 316c0,92 -76,168 -168,168l-1817 0c-92,0 -168,-76 -168,-168zm17351 -9638c63,402 412,712 831,712l0 0c462,0 840,-378 840,-840l0 -887c0,-228 111,-424 306,-541 196,-117 421,-124 622,-17 507,269 848,771 848,1432l0 17153c0,909 -744,1653 -1653,1653l-1794 0 0 2724c0,10210 -8354,18564 -18564,18564l-25907 0c-10210,0 -18564,-8354 -18564,-18564l0 -2471 -1764 0c-926,0 -1683,-757 -1683,-1683l0 -17093c0,-925 757,-1682 1683,-1682l1764 0 0 -2978c0,-10211 8354,-18565 18564,-18565l25907 0c10210,0 18564,8354 18564,18565l0 4518zm-64347 10377l657 0c264,0 500,123 655,315l0 1051c-155,192 -391,315 -655,315l-657 0c-462,0 -840,-378 -840,-840l0 -1c0,-462 378,-840 840,-840zm329 4364c464,0 840,377 840,841 0,464 -376,840 -840,840 -465,0 -841,-376 -841,-840 0,-464 376,-841 841,-841zm64716 -4364l657 0c462,0 840,378 840,840l0 1c0,462 -378,840 -840,840l-657 0c-290,0 -546,-148 -698,-373l0 -935c152,-224 408,-373 698,-373zm328 4371c461,0 834,373 834,834 0,460 -373,833 -834,833 -460,0 -834,-373 -834,-833 0,-461 374,-834 834,-834zm-12043 -5155c-4161,944 -4777,1019 -9639,453l-11368 114c-2307,23 -4055,710 -6333,710l-12742 0 -850 -461 0 -1859 850 -461 12742 0c2278,0 4026,688 6333,710l11368 114c4862,-566 5478,-491 9639,453 54,12 91,58 91,113 0,56 -37,102 -91,114zm-38920 -5119l0 -13316 3178 0 0 13316 -3178 0zm9616 0l0 -13748 304 0 8291 7770 0 -7338 2934 0 0 13824 -276 0 -8319 -7771 0 7263 -2934 0zm17628 0l0 -13316 3140 0 0 5796 4398 -5796 3784 0 -5022 6335 5417 6981 -3837 0 -4740 -6134 0 6134 -3140 0zm-29592 17110c531,325 982,551 1354,683 369,130 731,195 1085,195 355,0 642,-79 859,-236 216,-156 324,-357 324,-603 0,-352 -385,-750 -1155,-1189 -124,-71 -219,-128 -286,-167l-584 -329c-566,-321 -987,-685 -1259,-1089 -275,-404 -411,-864 -411,-1376 0,-695 262,-1264 787,-1709 522,-445 1198,-667 2028,-667 306,0 638,37 993,108 358,71 754,183 1191,333l0 2023c-416,-261 -811,-462 -1185,-604 -373,-142 -691,-213 -953,-213 -290,0 -518,63 -685,187 -166,124 -250,294 -250,508 0,150 49,290 149,420 99,132 248,250 447,358l1012 559c847,469 1416,902 1709,1298 293,399 439,868 439,1413 0,841 -287,1522 -860,2040 -575,518 -1335,776 -2284,776 -321,0 -670,-34 -1048,-101 -376,-67 -793,-173 -1244,-315l-173 -2303zm8863 2439l0 -6828 -2744 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2060 0zm6065 0l0 -8633 2061 0 0 8633 -2061 0zm6088 0l0 -6828 -2743 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2061 0zm12205 -5902c-374,-384 -752,-668 -1134,-855 -384,-185 -787,-278 -1207,-278 -730,0 -1327,251 -1791,755 -465,504 -697,1153 -697,1941 0,791 230,1431 691,1921 460,489 1059,735 1799,735 437,0 872,-91 1307,-274 434,-183 867,-457 1300,-823l-132 2292c-370,250 -772,441 -1211,571 -439,132 -894,197 -1368,197 -508,0 -994,-79 -1461,-237 -465,-159 -896,-395 -1288,-704 -557,-437 -982,-969 -1279,-1599 -294,-628 -443,-1315 -443,-2056 0,-641 110,-1240 328,-1799 219,-559 536,-1055 953,-1484 420,-428 906,-755 1459,-985 550,-228 1132,-342 1743,-342 486,0 947,68 1388,204 441,134 862,339 1262,613l-219 2207zm1607 5902l0 -8633 2037 0 0 3170 3328 0 0 -3170 2024 0 0 8633 -2024 0 0 -3621 -3328 0 0 3621 -2037 0zm-27014 -43954c-8471,0 -15413,6942 -15413,15413l0 25907c0,8471 6942,15413 15413,15413l25907 0c8471,0 15413,-6942 15413,-15413l0 -25907c0,-8471 -6942,-15413 -15413,-15413l-25907 0z"/>
<path class="fil13 str0" d="M70650 284248l0 -316c0,-93 75,-168 168,-168l1816 0c93,0 169,75 169,168l0 316c0,92 -76,168 -169,168l-1816 0c-93,0 -168,-76 -168,-168zm17351 -9638c63,402 412,712 831,712l0 0c462,0 840,-378 840,-840l0 -887c0,-228 111,-423 306,-541 196,-117 420,-123 622,-17 507,269 848,771 848,1432l0 17153c0,909 -744,1653 -1653,1653l-1794 0 0 2724c0,10210 -8354,18564 -18564,18564l-25907 0c-10211,0 -18565,-8354 -18565,-18564l0 -2471 -1763 0c-926,0 -1683,-757 -1683,-1682l0 -17094c0,-925 757,-1682 1683,-1682l1763 0 0 -2978c0,-10210 8354,-18564 18565,-18564l25907 0c10210,0 18564,8354 18564,18564l0 4518zm-64347 10377l657 0c264,0 500,123 654,315l0 1051c-154,192 -390,315 -654,315l-657 0c-462,0 -840,-378 -840,-840l0 -1c0,-462 378,-840 840,-840zm328 4364c465,0 841,377 841,841 0,464 -376,840 -841,840 -464,0 -840,-376 -840,-840 0,-464 376,-841 840,-841zm64717 -4364l656 0c463,0 841,378 841,840l0 1c0,462 -378,840 -841,840l-656 0c-290,0 -546,-148 -698,-373l0 -935c152,-224 408,-373 698,-373zm328 4371c461,0 834,373 834,834 0,460 -373,834 -834,834 -460,0 -834,-374 -834,-834 0,-461 374,-834 834,-834zm-12043 -5155c-4162,944 -4777,1019 -9639,454l-11368 113c-2307,23 -4055,710 -6333,710l-12742 0 -850 -461 0 -1859 850 -460 12742 0c2278,0 4026,687 6333,710l11368 113c4862,-566 5477,-491 9639,453 54,12 91,58 91,114 0,55 -37,101 -91,113zm-38921 -5119l0 -13316 3179 0 0 13316 -3179 0zm9617 0l0 -13748 304 0 8291 7771 0 -7339 2934 0 0 13824 -276 0 -8319 -7771 0 7263 -2934 0zm17628 0l0 -13316 3140 0 0 5796 4398 -5796 3784 0 -5022 6336 5417 6980 -3837 0 -4740 -6134 0 6134 -3140 0zm-29592 17110c531,326 982,551 1354,683 369,130 731,195 1085,195 355,0 642,-79 859,-235 216,-157 323,-358 323,-604 0,-352 -384,-750 -1154,-1189 -124,-71 -219,-128 -286,-166l-584 -330c-567,-321 -987,-685 -1260,-1089 -274,-404 -410,-864 -410,-1376 0,-695 262,-1264 786,-1709 523,-445 1199,-666 2028,-666 307,0 639,36 994,107 358,71 754,183 1191,334l0 2022c-416,-260 -811,-462 -1185,-604 -374,-142 -691,-213 -953,-213 -290,0 -518,63 -685,187 -166,124 -250,294 -250,508 0,150 49,290 149,420 99,132 248,250 447,358l1012 559c847,469 1416,902 1709,1299 293,398 439,867 439,1412 0,841 -287,1522 -860,2040 -575,518 -1335,777 -2284,777 -321,0 -671,-35 -1048,-102 -376,-67 -793,-173 -1244,-315l-173 -2303zm8862 2439l0 -6828 -2743 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2061 0zm6066 0l0 -8633 2061 0 0 8633 -2061 0zm6088 0l0 -6828 -2744 0 0 -1805 7536 0 0 1805 -2731 0 0 6828 -2061 0zm12205 -5901c-374,-384 -752,-669 -1134,-856 -384,-185 -787,-278 -1207,-278 -730,0 -1327,252 -1791,756 -465,503 -697,1152 -697,1940 0,791 230,1431 691,1921 459,489 1059,735 1799,735 437,0 872,-91 1306,-274 435,-183 868,-457 1301,-823l-132 2292c-370,250 -772,441 -1211,571 -439,132 -894,198 -1368,198 -508,0 -994,-80 -1461,-238 -465,-159 -896,-395 -1288,-703 -557,-437 -982,-970 -1279,-1600 -294,-628 -443,-1315 -443,-2056 0,-640 110,-1240 327,-1799 220,-559 537,-1054 954,-1483 420,-429 906,-756 1459,-986 550,-228 1132,-341 1743,-341 486,0 947,67 1388,203 441,134 862,339 1262,614l-219 2207zm1607 5901l0 -8633 2037 0 0 3170 3328 0 0 -3170 2024 0 0 8633 -2024 0 0 -3621 -3328 0 0 3621 -2037 0zm-27014 -43954c-8471,0 -15413,6942 -15413,15413l0 25907c0,8471 6942,15413 15413,15413l25907 0c8471,0 15413,-6942 15413,-15413l0 -25907c0,-8471 -6942,-15413 -15413,-15413l-25907 0z"/>
<path class="fil12" d="M364596 170137l0 -316c0,-93 76,-168 168,-168l1817 0c92,0 168,75 168,168l0 316c0,92 -76,168 -168,168l-1817 0c-92,0 -168,-76 -168,-168zm17352 -9638c62,402 411,712 830,712l0 0c462,0 841,-378 841,-840l0 -887c0,-228 110,-423 306,-541 195,-117 420,-123 621,-17 507,269 848,771 848,1432l0 17153c0,909 -744,1653 -1653,1653l-1793 0 0 2724c0,10211 -8354,18565 -18565,18565l-25907 0c-10210,0 -18564,-8354 -18564,-18565l0 -2471 -1764 0c-926,0 -1683,-757 -1683,-1682l0 -17094c0,-925 757,-1682 1683,-1682l1764 0 0 -2978c0,-10210 8354,-18564 18564,-18564l25907 0c10211,0 18565,8354 18565,18564l0 4518zm-64348 10377l657 0c264,0 500,123 655,315l0 1051c-155,192 -391,315 -655,315l-657 0c-462,0 -840,-378 -840,-840l0 -1c0,-462 378,-840 840,-840zm329 4364c464,0 840,377 840,841 0,464 -376,840 -840,840 -464,0 -841,-376 -841,-840 0,-464 377,-841 841,-841zm64716 -4364l657 0c462,0 840,378 840,840l0 1c0,462 -378,840 -840,840l-657 0c-290,0 -546,-148 -697,-373l0 -935c151,-224 407,-373 697,-373zm328 4371c461,0 834,373 834,834 0,460 -373,834 -834,834 -460,0 -833,-374 -833,-834 0,-461 373,-834 833,-834zm-12043 -5155c-4161,944 -4777,1019 -9639,454l-11368 113c-2307,23 -4055,710 -6332,710l-12743 0 -850 -461 0 -1859 850 -460 12743 0c2277,0 4025,687 6332,710l11368 113c4862,-566 5478,-491 9639,453 54,12 91,59 91,114 0,55 -37,101 -91,113zm-38920 -5119l0 -13316 3178 0 0 13316 -3178 0zm9616 0l0 -13748 304 0 8291 7771 0 -7339 2934 0 0 13824 -275 0 -8320 -7771 0 7263 -2934 0zm17628 0l0 -13316 3141 0 0 5796 4398 -5796 3783 0 -5022 6336 5417 6980 -3837 0 -4739 -6134 0 6134 -3141 0zm-29592 17110c531,326 982,551 1354,683 370,130 731,195 1085,195 356,0 642,-79 860,-235 215,-157 323,-358 323,-604 0,-352 -384,-750 -1155,-1189 -124,-71 -219,-128 -286,-166l-583 -330c-567,-321 -988,-684 -1260,-1089 -275,-404 -411,-864 -411,-1376 0,-695 262,-1264 787,-1709 522,-445 1199,-666 2028,-666 307,0 638,36 994,107 357,71 753,183 1190,334l0 2022c-416,-260 -810,-462 -1184,-604 -374,-142 -691,-213 -954,-213 -290,0 -518,63 -684,187 -167,124 -250,294 -250,508 0,150 48,290 148,420 100,132 248,250 447,358l1012 559c848,469 1417,902 1709,1299 293,398 439,867 439,1412 0,841 -286,1522 -859,2040 -576,519 -1336,777 -2285,777 -321,0 -670,-35 -1048,-102 -376,-67 -793,-173 -1244,-315l-173 -2303zm8863 2439l0 -6828 -2744 0 0 -1805 7536 0 0 1805 -2732 0 0 6828 -2060 0zm6065 0l0 -8633 2061 0 0 8633 -2061 0zm6088 0l0 -6828 -2743 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2061 0zm12205 -5901c-374,-384 -752,-669 -1134,-856 -384,-185 -786,-278 -1207,-278 -730,0 -1327,252 -1790,756 -466,504 -697,1152 -697,1940 0,791 229,1431 691,1921 459,490 1058,735 1798,735 437,0 872,-91 1307,-274 435,-183 867,-457 1300,-823l-132 2292c-370,250 -772,441 -1211,571 -439,133 -894,198 -1368,198 -508,0 -993,-80 -1461,-238 -465,-159 -896,-394 -1288,-703 -557,-437 -982,-970 -1279,-1600 -294,-628 -443,-1315 -443,-2056 0,-640 110,-1240 328,-1799 219,-559 536,-1054 953,-1483 421,-429 906,-756 1459,-986 551,-228 1132,-341 1744,-341 485,0 947,67 1388,203 441,134 861,339 1261,614l-219 2207zm1608 5901l0 -8633 2036 0 0 3171 3329 0 0 -3171 2024 0 0 8633 -2024 0 0 -3621 -3329 0 0 3621 -2036 0zm-27015 -43954c-8471,0 -15412,6942 -15412,15413l0 25907c0,8471 6941,15413 15412,15413l25907 0c8471,0 15413,-6942 15413,-15413l0 -25907c0,-8471 -6942,-15413 -15413,-15413l-25907 0z"/>
<path class="fil5" d="M168632 170137l0 -316c0,-93 76,-168 168,-168l1817 0c92,0 168,75 168,168l0 316c0,92 -76,168 -168,168l-1817 0c-92,0 -168,-76 -168,-168zm17351 -9638c63,402 412,712 831,712l0 0c462,0 840,-378 840,-840l0 -887c0,-228 111,-423 306,-541 196,-117 420,-123 622,-17 507,269 848,771 848,1432l0 17153c0,909 -744,1653 -1653,1653l-1794 0 0 2724c0,10211 -8354,18565 -18564,18565l-25907 0c-10210,0 -18564,-8354 -18564,-18565l0 -2471 -1764 0c-926,0 -1683,-757 -1683,-1682l0 -17094c0,-925 757,-1682 1683,-1682l1764 0 0 -2978c0,-10210 8354,-18564 18564,-18564l25907 0c10210,0 18564,8354 18564,18564l0 4518zm-64347 10377l657 0c264,0 500,123 655,315l0 1051c-155,192 -391,315 -655,315l-657 0c-462,0 -840,-378 -840,-840l0 -1c0,-462 378,-840 840,-840zm329 4364c464,0 840,377 840,841 0,464 -376,840 -840,840 -465,0 -841,-376 -841,-840 0,-464 376,-841 841,-841zm64716 -4364l657 0c462,0 840,378 840,840l0 1c0,462 -378,840 -840,840l-657 0c-290,0 -546,-148 -698,-373l0 -935c152,-224 408,-373 698,-373zm328 4371c461,0 834,373 834,834 0,460 -373,834 -834,834 -460,0 -834,-374 -834,-834 0,-461 374,-834 834,-834zm-12043 -5155c-4161,944 -4777,1019 -9639,454l-11368 113c-2307,23 -4055,710 -6333,710l-12742 0 -850 -461 0 -1859 850 -460 12742 0c2278,0 4026,687 6333,710l11368 113c4862,-566 5478,-491 9639,453 54,12 91,59 91,114 0,55 -37,101 -91,113zm-38920 -5119l0 -13316 3178 0 0 13316 -3178 0zm9616 0l0 -13748 304 0 8291 7771 0 -7339 2934 0 0 13824 -276 0 -8319 -7771 0 7263 -2934 0zm17628 0l0 -13316 3140 0 0 5796 4398 -5796 3784 0 -5022 6336 5417 6980 -3837 0 -4740 -6134 0 6134 -3140 0zm-29592 17110c531,326 982,551 1354,683 369,130 731,195 1085,195 355,0 642,-79 859,-235 216,-157 324,-358 324,-604 0,-352 -385,-750 -1155,-1189 -124,-71 -219,-128 -286,-166l-584 -330c-567,-321 -987,-684 -1260,-1089 -274,-404 -410,-864 -410,-1376 0,-695 262,-1264 787,-1709 522,-445 1198,-666 2028,-666 306,0 638,36 993,107 358,71 754,183 1191,334l0 2022c-416,-260 -811,-462 -1185,-604 -373,-142 -691,-213 -953,-213 -290,0 -518,63 -685,187 -166,124 -250,294 -250,508 0,150 49,290 149,420 99,132 248,250 447,358l1012 559c847,469 1416,902 1709,1299 293,398 439,867 439,1412 0,841 -287,1522 -860,2040 -575,519 -1335,777 -2284,777 -321,0 -670,-35 -1048,-102 -376,-67 -793,-173 -1244,-315l-173 -2303zm8863 2439l0 -6828 -2744 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2060 0zm6065 0l0 -8633 2061 0 0 8633 -2061 0zm6088 0l0 -6828 -2743 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2061 0zm12205 -5901c-374,-384 -752,-669 -1134,-856 -384,-185 -787,-278 -1207,-278 -730,0 -1327,252 -1791,756 -465,504 -697,1152 -697,1940 0,791 230,1431 691,1921 460,490 1059,735 1799,735 437,0 872,-91 1307,-274 434,-183 867,-457 1300,-823l-132 2292c-370,250 -772,441 -1211,571 -439,133 -894,198 -1368,198 -508,0 -994,-80 -1461,-238 -465,-159 -896,-394 -1288,-703 -557,-437 -982,-970 -1279,-1600 -294,-628 -443,-1315 -443,-2056 0,-640 110,-1240 328,-1799 219,-559 536,-1054 953,-1483 420,-429 906,-756 1459,-986 550,-228 1132,-341 1743,-341 486,0 947,67 1388,203 441,134 862,339 1262,614l-219 2207zm1607 5901l0 -8633 2037 0 0 3171 3328 0 0 -3171 2024 0 0 8633 -2024 0 0 -3621 -3328 0 0 3621 -2037 0zm-27014 -43954c-8471,0 -15413,6942 -15413,15413l0 25907c0,8471 6942,15413 15413,15413l25907 0c8471,0 15413,-6942 15413,-15413l0 -25907c0,-8471 -6942,-15413 -15413,-15413l-25907 0z"/>
<path class="fil6" d="M337476 26457c-8471,0 -15413,6942 -15413,15413l0 25907c0,8470 6942,15412 15413,15412l25907 0c8471,0 15413,-6942 15413,-15412l0 -25907c0,-8471 -6942,-15413 -15413,-15413l-25907 0z"/>
<path class="fil5" d="M364490 70411l0 -8633 2037 0 0 3170 3328 0 0 -3170 2025 0 0 8633 -2025 0 0 -3622 -3328 0 0 3622 -2037 0zm-1607 -5902c-374,-384 -752,-668 -1134,-855 -384,-185 -786,-279 -1207,-279 -730,0 -1327,252 -1790,756 -466,504 -697,1153 -697,1941 0,791 229,1431 690,1920 460,490 1059,736 1799,736 437,0 872,-91 1307,-274 435,-183 867,-458 1300,-823l-132 2292c-370,250 -772,441 -1211,571 -439,132 -894,197 -1368,197 -508,0 -993,-79 -1461,-238 -465,-158 -896,-394 -1288,-703 -557,-437 -982,-969 -1279,-1599 -294,-628 -443,-1315 -443,-2057 0,-640 110,-1239 328,-1798 219,-559 536,-1055 953,-1484 420,-428 906,-756 1459,-985 550,-228 1132,-342 1743,-342 486,0 948,67 1388,204 442,134 862,339 1262,613l-219 2207zm-12205 5902l0 -6828 -2743 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2061 0zm-6088 0l0 -8633 2061 0 0 8633 -2061 0zm-6065 0l0 -6828 -2744 0 0 -1805 7536 0 0 1805 -2732 0 0 6828 -2060 0zm-8863 -2439c531,325 982,551 1354,683 369,130 731,195 1085,195 355,0 642,-79 859,-236 216,-156 324,-357 324,-603 0,-352 -384,-750 -1155,-1189 -124,-71 -219,-128 -286,-167l-584 -329c-566,-321 -987,-685 -1259,-1089 -275,-405 -411,-864 -411,-1376 0,-695 262,-1264 787,-1709 522,-445 1198,-667 2028,-667 307,0 638,37 993,108 358,71 754,183 1191,333l0 2022c-416,-260 -811,-461 -1184,-603 -374,-142 -691,-214 -954,-214 -290,0 -518,63 -685,187 -166,124 -249,295 -249,508 0,151 48,291 148,421 99,132 248,250 447,358l1012 559c848,469 1417,902 1709,1298 293,399 439,868 439,1412 0,842 -286,1523 -860,2041 -575,518 -1335,776 -2284,776 -321,0 -670,-34 -1048,-101 -376,-67 -793,-173 -1244,-315l-173 -2303z"/>
<path class="fil5" d="M359254 50862l0 -13316 3141 0 0 5796 4397 -5796 3784 0 -5022 6335 5417 6981 -3837 0 -4739 -6134 0 6134 -3141 0zm-17628 0l0 -13748 304 0 8291 7770 0 -7338 2934 0 0 13824 -276 0 -8319 -7771 0 7263 -2934 0zm-9616 0l0 -13316 3178 0 0 13316 -3178 0z"/>
<path class="fil10" d="M370930 55981c-4161,944 -4777,1019 -9639,453l-11368 113c-2307,23 -4055,710 -6332,710l-12743 0 -850 -460 0 -1859 850 -461 12743 0c2277,0 4025,687 6332,710l11368 113c4862,-565 5478,-490 9639,454 54,12 91,58 91,113 0,56 -37,102 -91,114zm-6334 44l0 -316c0,-92 76,-168 168,-168l1817 0c92,0 168,76 168,168l0 316c0,93 -76,169 -168,169l-1817 0c-92,0 -168,-76 -168,-169z"/>
<rect class="fil1" x="9990" y="9990" width="92987" height="89667"/>
<rect class="fil1" x="107972" y="9990" width="92987" height="89667"/>
<path class="fil14" d="M47560 19438c-41,0 -69,-19 -83,-56l-832 -2282c-5,-14 -14,-21 -28,-21l-791 0c-18,0 -28,9 -28,28l0 2261c0,46 -23,70 -69,70l-69 0c-47,0 -70,-24 -70,-70l0 -4731c0,-46 23,-69 70,-69l985 0c309,0 558,115 745,346 188,232 281,537 281,916 0,329 -71,601 -215,819 -143,217 -340,354 -589,409 -19,9 -26,21 -21,35l832 2268 7 28c0,32 -21,49 -62,49l-63 0zm-1734 -4676c-18,0 -28,9 -28,28l0 2074c0,18 10,28 28,28l812 0c249,0 449,-98 600,-292 150,-194 225,-451 225,-770 0,-319 -75,-577 -225,-773 -151,-197 -351,-295 -600,-295l-812 0z"/>
<path id="1" class="fil14" d="M49308 19500c-323,0 -582,-105 -776,-316 -195,-210 -292,-489 -292,-836l0 -2677c0,-347 97,-626 292,-836 194,-211 453,-316 776,-316 320,0 580,105 781,316 201,210 302,489 302,836l0 2677c0,347 -101,626 -302,836 -201,211 -461,316 -781,316zm0 -194c264,0 476,-86 635,-257 160,-171 240,-398 240,-680l0 -2719c0,-282 -80,-509 -240,-680 -159,-171 -371,-257 -635,-257 -258,0 -467,86 -624,257 -157,171 -236,398 -236,680l0 2719c0,282 79,509 236,680 157,171 366,257 624,257z"/>
<path id="2" class="fil14" d="M52208 19493c-314,0 -569,-97 -763,-291 -194,-195 -291,-454 -291,-777l0 -2831c0,-323 97,-582 291,-777 194,-194 449,-291 763,-291 319,0 576,98 770,295 195,196 292,456 292,780l0 312c0,47 -23,70 -70,70l-69 0c-46,0 -69,-23 -69,-70l0 -326c0,-259 -79,-468 -236,-627 -158,-160 -363,-240 -618,-240 -254,0 -459,80 -614,240 -155,159 -232,368 -232,627l0 2845c0,259 77,468 232,627 155,160 360,240 614,240 255,0 460,-80 618,-240 157,-159 236,-368 236,-627l0 -1103c0,-19 -10,-28 -28,-28l-715 0c-46,0 -69,-23 -69,-70l0 -48c0,-46 23,-69 69,-69l881 0c47,0 70,23 70,69l0 1242c0,323 -97,582 -292,777 -194,194 -451,291 -770,291z"/>
<path id="3" class="fil14" d="M56003 17169c65,222 97,490 97,805 0,250 -21,469 -62,659 -121,573 -428,860 -923,860 -254,0 -461,-75 -621,-225 -159,-151 -265,-374 -316,-670l-20 -208 0 -14c0,-37 20,-55 62,-55l69 0c47,0 72,23 77,69 0,23 2,54 7,94 4,39 9,73 14,100 97,477 340,715 728,715 365,0 601,-222 708,-666 46,-181 69,-400 69,-659 0,-278 -30,-525 -90,-743 -120,-383 -349,-575 -687,-575 -398,0 -645,201 -742,603 -14,42 -40,63 -77,63l-76 0c-46,0 -69,-23 -69,-70l0 -2601c0,-46 23,-70 69,-70l1658 0c46,0 69,24 69,70l0 55c0,47 -23,70 -69,70l-1491 0c-19,0 -28,9 -28,27l-7 2047c0,14 5,22 14,24 9,3 16,-3 21,-17 74,-130 175,-228 305,-295 129,-67 280,-101 451,-101 434,0 721,236 860,708z"/>
<path id="4" class="fil14" d="M57092 14609c37,-18 67,-28 90,-28l90 0c47,0 70,24 70,70l0 4717c0,46 -23,70 -70,70l-69 0c-46,0 -69,-24 -69,-70l0 -4488c0,-10 -4,-15 -11,-18 -7,-2 -15,-1 -24,4l-624 340 -35 14c-14,0 -25,-6 -35,-18 -9,-11 -14,-26 -14,-45l0 -34c0,-33 17,-61 49,-84l652 -430z"/>
<path id="5" class="fil14" d="M59916 16912c-23,10 -23,21 0,35 203,93 362,241 475,444 113,204 170,453 170,749 0,407 -103,725 -309,954 -206,229 -489,344 -850,344l-908 0c-47,0 -70,-24 -70,-70l0 -4717c0,-46 23,-70 70,-70l894 0c361,0 644,109 850,326 206,218 309,521 309,909 0,269 -54,496 -163,684 -109,187 -265,325 -468,412zm-1256 -2136c-18,0 -28,9 -28,27l0 1998c0,19 10,28 28,28l728 0c296,0 529,-89 698,-267 168,-178 253,-424 253,-739 0,-328 -83,-585 -250,-770 -166,-185 -400,-277 -701,-277l-728 0zm728 4460c301,0 537,-97 708,-291 171,-194 257,-465 257,-812 0,-351 -85,-625 -254,-822 -168,-196 -403,-295 -704,-295l-735 0c-18,0 -28,10 -28,28l0 2165c0,18 10,27 28,27l728 0z"/>
<path id="6" class="fil14" d="M61726 14609c37,-18 67,-28 91,-28l90 0c46,0 69,24 69,70l0 4717c0,46 -23,70 -69,70l-70 0c-46,0 -69,-24 -69,-70l0 -4488c0,-10 -4,-15 -10,-18 -7,-2 -15,-1 -25,4l-624 340 -35 14c-14,0 -25,-6 -34,-18 -10,-11 -14,-26 -14,-45l0 -34c0,-33 16,-61 48,-84l652 -430z"/>
<path id="7" class="fil14" d="M64758 17169c65,222 97,490 97,805 0,250 -21,469 -62,659 -121,573 -428,860 -923,860 -254,0 -461,-75 -621,-225 -159,-151 -265,-374 -316,-670l-20 -208 0 -14c0,-37 20,-55 62,-55l69 0c47,0 72,23 77,69 0,23 2,54 7,94 4,39 9,73 14,100 97,477 340,715 728,715 365,0 601,-222 708,-666 46,-181 69,-400 69,-659 0,-278 -30,-525 -90,-743 -120,-383 -349,-575 -687,-575 -398,0 -645,201 -742,603 -14,42 -40,63 -77,63l-76 0c-46,0 -69,-23 -69,-70l0 -2601c0,-46 23,-70 69,-70l1658 0c46,0 69,24 69,70l0 55c0,47 -23,70 -69,70l-1491 0c-19,0 -28,9 -28,27l-7 2047c0,14 5,22 14,24 9,3 16,-3 21,-17 74,-130 175,-228 305,-295 129,-67 280,-101 451,-101 434,0 721,236 860,708z"/>
<path id="8" class="fil14" d="M67318 17079c92,226 139,536 139,929 0,264 -26,502 -77,715 -64,250 -174,441 -329,572 -155,132 -351,198 -586,198 -246,0 -447,-68 -604,-205 -157,-136 -266,-336 -326,-600 -37,-162 -60,-358 -69,-589 0,-47 23,-70 69,-70l69 0c47,0 70,23 70,70 9,203 30,377 62,520 51,222 138,391 260,506 123,116 279,174 469,174 175,0 324,-52 447,-156 123,-104 212,-256 267,-455 46,-180 69,-409 69,-686 0,-347 -37,-625 -111,-833 -120,-356 -344,-534 -672,-534 -42,0 -86,5 -132,14l-28 0c-23,0 -44,-9 -62,-28l-28 -28c-28,-27 -33,-60 -14,-97l978 -1686c5,-9 5,-17 0,-24 -5,-7 -11,-10 -21,-10l-1609 0c-46,0 -70,-23 -70,-70l0 -55c0,-46 24,-70 70,-70l1824 0c47,0 70,24 70,70l0 76c0,32 -7,63 -21,90l-930 1610c-4,9 -5,17 -3,24 2,7 8,10 17,10 194,5 361,61 500,167 138,106 242,257 312,451z"/>
<path class="fil14" d="M50382 57251c-42,0 -69,-18 -83,-55l-833 -2283c-4,-13 -14,-20 -27,-20l-791 0c-19,0 -28,9 -28,27l0 2262c0,46 -23,69 -69,69l-70 0c-46,0 -69,-23 -69,-69l0 -4731c0,-47 23,-70 69,-70l985 0c310,0 559,116 746,347 187,231 281,537 281,916 0,328 -72,601 -215,819 -143,217 -340,353 -590,409 -18,9 -25,21 -21,35l833 2268 7 28c0,32 -21,48 -63,48l-62 0zm-1734 -4675c-19,0 -28,9 -28,27l0 2075c0,18 9,27 28,27l811 0c250,0 450,-97 600,-291 151,-194 226,-451 226,-770 0,-319 -75,-577 -226,-774 -150,-196 -350,-294 -600,-294l-811 0z"/>
<path id="1" class="fil14" d="M52290 57307c-315,0 -569,-97 -763,-292 -195,-194 -292,-453 -292,-776l0 -2831c0,-324 97,-583 292,-777 194,-194 448,-291 763,-291 319,0 576,98 770,295 194,196 291,456 291,780l0 312c0,46 -23,70 -69,70l-70 0c-46,0 -69,-24 -69,-70l0 -326c0,-259 -79,-468 -236,-628 -157,-159 -363,-239 -617,-239 -255,0 -459,80 -614,239 -155,160 -233,369 -233,628l0 2844c0,259 78,469 233,628 155,160 359,240 614,240 254,0 460,-80 617,-240 157,-159 236,-369 236,-628l0 -1103c0,-18 -9,-27 -28,-27l-714 0c-46,0 -70,-23 -70,-70l0 -48c0,-47 24,-70 70,-70l881 0c46,0 69,23 69,70l0 1242c0,323 -97,582 -291,776 -194,195 -451,292 -770,292z"/>
<path id="2" class="fil14" d="M55876 54726c-23,9 -23,21 0,35 204,92 362,240 476,444 113,203 170,453 170,749 0,407 -103,725 -309,954 -206,229 -489,343 -850,343l-909 0c-46,0 -69,-23 -69,-69l0 -4717c0,-47 23,-70 69,-70l895 0c361,0 644,109 850,326 206,218 309,521 309,909 0,268 -55,496 -163,683 -109,188 -265,325 -469,413zm-1255 -2137c-19,0 -28,10 -28,28l0 1998c0,19 9,28 28,28l728 0c296,0 529,-89 697,-267 169,-178 254,-424 254,-739 0,-328 -84,-585 -250,-770 -167,-185 -400,-278 -701,-278l-728 0zm728 4461c301,0 537,-97 708,-291 171,-194 256,-465 256,-812 0,-351 -84,-625 -253,-822 -169,-196 -403,-295 -704,-295l-735 0c-19,0 -28,9 -28,28l0 2164c0,19 9,28 28,28l728 0z"/>
<path id="3" class="fil14" d="M57201 57251c-46,0 -69,-23 -69,-69l0 -76c0,-33 7,-63 21,-91l499 -881 680 -1221c324,-573 486,-1047 486,-1422 0,-286 -70,-518 -208,-693 -139,-176 -322,-264 -548,-264 -218,0 -393,88 -528,264 -134,175 -198,407 -194,693l0 236c0,46 -23,70 -69,70l-77 0c-46,0 -69,-24 -69,-70l0 -243c5,-342 94,-618 267,-829 174,-210 399,-315 677,-315 286,0 518,106 693,319 176,213 264,490 264,832 0,430 -164,939 -493,1527l-832 1477 -298 527c-14,24 -10,35 13,35l1714 0c46,0 69,23 69,69l0 56c0,46 -23,69 -69,69l-1929 0z"/>
<path id="4" class="fil14" d="M61745 54983c65,222 97,490 97,805 0,249 -20,469 -62,659 -120,573 -428,860 -923,860 -254,0 -461,-75 -620,-226 -160,-150 -265,-373 -316,-669l-21 -208 0 -14c0,-37 21,-56 62,-56l70 0c46,0 72,24 76,70 0,23 2,54 7,93 5,40 9,73 14,101 97,476 340,715 728,715 366,0 602,-222 708,-666 46,-181 69,-400 69,-659 0,-278 -30,-525 -90,-743 -120,-384 -349,-576 -687,-576 -397,0 -645,202 -742,604 -14,42 -39,62 -76,62l-77 0c-46,0 -69,-23 -69,-69l0 -2601c0,-47 23,-70 69,-70l1658 0c47,0 70,23 70,70l0 55c0,46 -23,69 -70,69l-1491 0c-19,0 -28,10 -28,28l-7 2047c0,14 5,22 14,24 9,2 16,-3 21,-17 74,-130 176,-228 305,-295 130,-67 280,-101 451,-101 435,0 722,236 860,708z"/>
<path id="5" class="fil14" d="M64458 54983c65,222 97,490 97,805 0,249 -21,469 -62,659 -121,573 -428,860 -923,860 -254,0 -461,-75 -621,-226 -160,-150 -265,-373 -316,-669l-20 -208 0 -14c0,-37 20,-56 62,-56l69 0c47,0 72,24 77,70 0,23 2,54 7,93 4,40 9,73 13,101 98,476 340,715 729,715 365,0 601,-222 708,-666 46,-181 69,-400 69,-659 0,-278 -30,-525 -90,-743 -121,-384 -349,-576 -687,-576 -398,0 -645,202 -742,604 -14,42 -40,62 -77,62l-76 0c-46,0 -69,-23 -69,-69l0 -2601c0,-47 23,-70 69,-70l1658 0c46,0 69,23 69,70l0 55c0,46 -23,69 -69,69l-1492 0c-18,0 -27,10 -27,28l-7 2047c0,14 4,22 14,24 9,2 16,-3 20,-17 74,-130 176,-228 306,-295 129,-67 280,-101 451,-101 434,0 721,236 860,708z"/>
<path class="fil14" d="M151427 83080c-42,0 -70,-18 -84,-55l-832 -2282c-5,-14 -14,-21 -28,-21l-791 0c-18,0 -28,9 -28,28l0 2261c0,46 -23,69 -69,69l-69 0c-47,0 -70,-23 -70,-69l0 -4731c0,-46 23,-70 70,-70l985 0c310,0 558,116 746,347 187,232 281,537 281,916 0,328 -72,601 -216,819 -143,217 -339,353 -589,409 -19,9 -26,21 -21,35l832 2268 7 28c0,32 -20,48 -62,48l-62 0zm-1735 -4675c-18,0 -28,9 -28,27l0 2075c0,18 10,27 28,27l812 0c250,0 450,-97 600,-291 150,-194 225,-451 225,-770 0,-319 -75,-577 -225,-773 -150,-197 -350,-295 -600,-295l-812 0z"/>
<path id="1" class="fil14" d="M153334 83136c-314,0 -569,-97 -763,-291 -194,-195 -291,-454 -291,-777l0 -2831c0,-324 97,-583 291,-777 194,-194 449,-291 763,-291 319,0 576,98 770,295 195,196 292,456 292,780l0 312c0,47 -23,70 -70,70l-69 0c-46,0 -69,-23 -69,-70l0 -326c0,-259 -79,-468 -236,-628 -158,-159 -363,-239 -618,-239 -254,0 -459,80 -614,239 -155,160 -232,369 -232,628l0 2845c0,259 77,468 232,627 155,160 360,240 614,240 255,0 460,-80 618,-240 157,-159 236,-368 236,-627l0 -1103c0,-19 -10,-28 -28,-28l-715 0c-46,0 -69,-23 -69,-70l0 -48c0,-46 23,-70 69,-70l881 0c47,0 70,24 70,70l0 1242c0,323 -97,582 -292,777 -194,194 -451,291 -770,291z"/>
<path id="2" class="fil14" d="M156921 80555c-23,10 -23,21 0,35 203,92 362,240 475,444 113,203 170,453 170,749 0,407 -103,725 -309,954 -205,229 -489,343 -850,343l-908 0c-47,0 -70,-23 -70,-69l0 -4717c0,-47 23,-70 70,-70l895 0c360,0 644,109 849,326 206,218 309,521 309,909 0,268 -54,496 -163,684 -109,187 -265,324 -468,412zm-1256 -2136c-18,0 -28,9 -28,27l0 1998c0,19 10,28 28,28l729 0c296,0 528,-89 697,-267 169,-178 253,-424 253,-739 0,-328 -83,-585 -250,-770 -166,-185 -400,-277 -700,-277l-729 0zm729 4460c300,0 536,-97 707,-291 171,-194 257,-465 257,-812 0,-351 -85,-625 -253,-822 -169,-196 -404,-295 -704,-295l-736 0c-18,0 -28,10 -28,28l0 2165c0,18 10,27 28,27l729 0z"/>
<path id="3" class="fil14" d="M159210 83143c-324,0 -583,-105 -777,-316 -194,-210 -291,-489 -291,-836l0 -2678c0,-346 97,-625 291,-835 194,-211 453,-316 777,-316 319,0 579,105 781,316 201,210 301,489 301,835l0 2678c0,347 -100,626 -301,836 -202,211 -462,316 -781,316zm0 -194c264,0 475,-86 635,-257 160,-171 239,-398 239,-680l0 -2719c0,-282 -79,-509 -239,-680 -160,-171 -371,-257 -635,-257 -259,0 -467,86 -624,257 -157,171 -236,398 -236,680l0 2719c0,282 79,509 236,680 157,171 365,257 624,257z"/>
<path class="fil14" d="M151427 30054c-42,0 -70,-19 -84,-56l-832 -2282c-5,-14 -14,-21 -28,-21l-791 0c-18,0 -28,10 -28,28l0 2262c0,46 -23,69 -69,69l-69 0c-47,0 -70,-23 -70,-69l0 -4732c0,-46 23,-69 70,-69l985 0c310,0 558,116 746,347 187,231 281,536 281,916 0,328 -72,601 -216,818 -143,218 -339,354 -589,409 -19,10 -26,21 -21,35l832 2269 7 27c0,33 -20,49 -62,49l-62 0zm-1735 -4676c-18,0 -28,9 -28,28l0 2074c0,19 10,28 28,28l812 0c250,0 450,-97 600,-291 150,-195 225,-451 225,-770 0,-320 -75,-577 -225,-774 -150,-197 -350,-295 -600,-295l-812 0z"/>
<path id="1" class="fil14" d="M153334 30109c-314,0 -569,-97 -763,-291 -194,-194 -291,-453 -291,-777l0 -2830c0,-324 97,-583 291,-777 194,-195 449,-292 763,-292 319,0 576,99 770,295 195,197 292,457 292,781l0 312c0,46 -23,69 -70,69l-69 0c-46,0 -69,-23 -69,-69l0 -326c0,-259 -79,-469 -236,-628 -158,-160 -363,-239 -618,-239 -254,0 -459,79 -614,239 -155,159 -232,369 -232,628l0 2844c0,259 77,468 232,628 155,159 360,239 614,239 255,0 460,-80 618,-239 157,-160 236,-369 236,-628l0 -1103c0,-18 -10,-28 -28,-28l-715 0c-46,0 -69,-23 -69,-69l0 -49c0,-46 23,-69 69,-69l881 0c47,0 70,23 70,69l0 1242c0,324 -97,583 -292,777 -194,194 -451,291 -770,291z"/>
<path id="2" class="fil14" d="M156921 27529c-23,9 -23,21 0,34 203,93 362,241 475,444 113,204 170,454 170,750 0,407 -103,725 -309,954 -205,228 -489,343 -850,343l-908 0c-47,0 -70,-23 -70,-69l0 -4718c0,-46 23,-69 70,-69l895 0c360,0 644,109 849,326 206,217 309,520 309,909 0,268 -54,496 -163,683 -109,187 -265,325 -468,413zm-1256 -2137c-18,0 -28,9 -28,28l0 1998c0,18 10,28 28,28l729 0c296,0 528,-90 697,-268 169,-178 253,-424 253,-738 0,-329 -83,-585 -250,-770 -166,-185 -400,-278 -700,-278l-729 0zm729 4461c300,0 536,-97 707,-292 171,-194 257,-464 257,-811 0,-352 -85,-626 -253,-822 -169,-197 -404,-295 -704,-295l-736 0c-18,0 -28,9 -28,28l0 2164c0,19 10,28 28,28l729 0z"/>
<path id="3" class="fil14" d="M159210 30116c-324,0 -583,-105 -777,-315 -194,-211 -291,-489 -291,-836l0 -2678c0,-347 97,-626 291,-836 194,-210 453,-316 777,-316 319,0 579,106 781,316 201,210 301,489 301,836l0 2678c0,347 -100,625 -301,836 -202,210 -462,315 -781,315zm0 -194c264,0 475,-85 635,-257 160,-171 239,-397 239,-679l0 -2720c0,-282 -79,-509 -239,-680 -160,-171 -371,-256 -635,-256 -259,0 -467,85 -624,256 -157,171 -236,398 -236,680l0 2720c0,282 79,508 236,679 157,172 365,257 624,257z"/>
<path class="fil14" d="M118132 58190c-42,0 -70,-19 -84,-56l-832 -2282c-5,-14 -14,-21 -28,-21l-791 0c-18,0 -28,10 -28,28l0 2262c0,46 -23,69 -69,69l-69 0c-47,0 -70,-23 -70,-69l0 -4732c0,-46 23,-69 70,-69l985 0c310,0 558,116 746,347 187,231 281,536 281,916 0,328 -72,601 -216,818 -143,218 -339,354 -589,409 -19,10 -26,21 -21,35l832 2269 7 27c0,33 -20,49 -62,49l-62 0zm-1735 -4676c-18,0 -28,9 -28,28l0 2074c0,19 10,28 28,28l812 0c250,0 450,-97 600,-291 150,-195 225,-451 225,-770 0,-320 -75,-577 -225,-774 -150,-197 -350,-295 -600,-295l-812 0z"/>
<path id="1" class="fil14" d="M120039 58245c-314,0 -569,-97 -763,-291 -194,-194 -291,-453 -291,-777l0 -2830c0,-324 97,-583 291,-777 194,-195 449,-292 763,-292 319,0 576,99 770,295 195,197 292,457 292,781l0 312c0,46 -23,69 -70,69l-69 0c-46,0 -69,-23 -69,-69l0 -326c0,-259 -79,-469 -236,-628 -158,-160 -363,-239 -618,-239 -254,0 -459,79 -614,239 -155,159 -232,369 -232,628l0 2844c0,259 77,468 232,628 155,159 360,239 614,239 255,0 460,-80 618,-239 157,-160 236,-369 236,-628l0 -1103c0,-18 -10,-28 -28,-28l-715 0c-46,0 -69,-23 -69,-69l0 -49c0,-46 23,-69 69,-69l881 0c47,0 70,23 70,69l0 1242c0,324 -97,583 -292,777 -194,194 -451,291 -770,291z"/>
<path id="2" class="fil14" d="M123626 55665c-23,9 -23,21 0,34 203,93 362,241 475,444 113,204 170,454 170,750 0,407 -103,725 -309,954 -205,228 -489,343 -850,343l-908 0c-47,0 -70,-23 -70,-69l0 -4718c0,-46 23,-69 70,-69l895 0c360,0 644,109 849,326 206,217 309,520 309,909 0,268 -54,496 -163,683 -109,187 -265,325 -468,413zm-1256 -2137c-18,0 -28,9 -28,28l0 1998c0,18 10,28 28,28l729 0c296,0 528,-90 697,-268 169,-178 253,-424 253,-738 0,-329 -83,-585 -250,-770 -166,-185 -400,-278 -700,-278l-729 0zm729 4461c300,0 536,-97 707,-292 171,-194 257,-464 257,-811 0,-352 -85,-626 -253,-822 -169,-197 -404,-295 -704,-295l-736 0c-18,0 -28,9 -28,28l0 2164c0,19 10,28 28,28l729 0z"/>
<path id="3" class="fil14" d="M125437 53362c37,-19 67,-28 90,-28l90 0c46,0 69,23 69,69l0 4718c0,46 -23,69 -69,69l-69 0c-47,0 -70,-23 -70,-69l0 -4489c0,-9 -3,-15 -10,-17 -7,-3 -15,-1 -25,3l-624 340 -35 14c-13,0 -25,-6 -34,-17 -10,-12 -14,-27 -14,-45l0 -35c0,-32 16,-60 48,-83l653 -430z"/>
<path id="4" class="fil14" d="M126560 58190c-46,0 -69,-23 -69,-69l0 -77c0,-32 7,-62 21,-90l499 -881 680 -1221c324,-573 486,-1047 486,-1422 0,-287 -70,-518 -208,-694 -139,-176 -322,-263 -548,-263 -218,0 -393,87 -528,263 -134,176 -198,407 -194,694l0 236c0,46 -23,69 -69,69l-77 0c-46,0 -69,-23 -69,-69l0 -243c5,-342 94,-619 267,-829 174,-210 399,-316 677,-316 286,0 518,107 693,319 176,213 264,491 264,833 0,430 -164,939 -493,1526l-832 1478 -298 527c-14,23 -10,35 13,35l1714 0c46,0 69,23 69,69l0 56c0,46 -23,69 -69,69l-1929 0z"/>
<path id="5" class="fil14" d="M130667 55568c-23,9 -23,20 0,34 153,79 276,211 368,396 116,240 173,529 173,867 0,231 -32,455 -97,673 -74,226 -187,401 -340,524 -152,122 -337,183 -555,183 -208,0 -388,-61 -541,-183 -152,-123 -266,-295 -340,-517 -60,-213 -90,-442 -90,-687 0,-319 44,-583 132,-791 92,-217 224,-370 395,-458 24,-14 24,-27 0,-41 -152,-79 -275,-195 -367,-347 -111,-194 -167,-444 -167,-749 0,-310 53,-558 160,-743 171,-300 444,-451 818,-451 370,0 641,144 812,430 120,185 180,442 180,770 0,301 -53,542 -159,722 -93,166 -220,289 -382,368zm-1082 -437c134,235 345,353 631,353 301,0 521,-131 659,-395 88,-167 132,-372 132,-617 0,-269 -53,-488 -159,-659 -139,-232 -349,-347 -632,-347 -291,0 -504,125 -638,374 -92,171 -139,386 -139,645 0,250 49,465 146,646zm1332 2317c51,-176 76,-370 76,-583 0,-296 -44,-543 -131,-742 -125,-296 -340,-444 -646,-444 -309,0 -527,159 -652,478 -78,185 -118,419 -118,701 0,245 30,451 91,617 55,185 142,328 260,427 118,99 258,149 419,149 172,0 317,-52 437,-156 121,-104 209,-253 264,-447z"/>
<path class="fil13 str1" d="M168526 70411l0 -8633 2037 0 0 3170 3328 0 0 -3170 2024 0 0 8633 -2024 0 0 -3621 -3328 0 0 3621 -2037 0zm-1607 -5902c-374,-384 -752,-668 -1134,-855 -384,-185 -787,-278 -1207,-278 -730,0 -1327,252 -1791,756 -465,503 -697,1152 -697,1940 0,791 230,1431 691,1921 460,489 1059,735 1799,735 437,0 872,-91 1307,-274 434,-183 867,-457 1300,-823l-132 2292c-370,250 -772,441 -1211,571 -439,132 -894,198 -1368,198 -508,0 -994,-80 -1461,-238 -465,-159 -896,-395 -1288,-703 -557,-437 -982,-970 -1279,-1600 -294,-628 -443,-1315 -443,-2056 0,-640 110,-1240 328,-1799 219,-559 536,-1055 953,-1483 420,-429 906,-756 1459,-986 550,-228 1132,-341 1743,-341 486,0 947,67 1388,203 441,134 862,339 1262,614l-219 2206zm-12205 5902l0 -6828 -2743 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2061 0zm-6088 0l0 -8633 2061 0 0 8633 -2061 0zm-6065 0l0 -6828 -2744 0 0 -1805 7535 0 0 1805 -2731 0 0 6828 -2060 0zm-8863 -2439c531,326 982,551 1354,683 369,130 731,195 1085,195 355,0 642,-79 859,-235 216,-157 324,-358 324,-604 0,-352 -385,-750 -1155,-1189 -124,-71 -219,-128 -286,-166l-584 -330c-567,-321 -987,-685 -1260,-1089 -274,-404 -410,-864 -410,-1376 0,-695 262,-1264 787,-1709 522,-445 1198,-666 2028,-666 306,0 638,36 993,107 358,71 754,183 1191,334l0 2022c-416,-260 -811,-462 -1185,-604 -373,-142 -691,-213 -953,-213 -290,0 -518,63 -685,187 -166,124 -250,294 -250,508 0,150 49,290 149,420 99,132 248,250 447,358l1012 559c847,469 1416,902 1709,1299 293,398 439,867 439,1412 0,841 -287,1522 -860,2040 -575,518 -1335,777 -2284,777 -321,0 -670,-35 -1048,-102 -376,-67 -793,-173 -1244,-315l-173 -2303z"/>
<path class="fil13 str1" d="M163290 50862l0 -13316 3140 0 0 5796 4398 -5796 3784 0 -5022 6335 5417 6981 -3837 0 -4740 -6134 0 6134 -3140 0zm-17628 0l0 -13748 304 0 8291 7771 0 -7339 2934 0 0 13824 -276 0 -8319 -7771 0 7263 -2934 0zm-9616 0l0 -13316 3178 0 0 13316 -3178 0z"/>
<path class="fil13 str1" d="M174966 55981c-4161,944 -4777,1019 -9639,454l-11368 113c-2307,23 -4055,710 -6333,710l-12742 0 -850 -461 0 -1859 850 -460 12742 0c2278,0 4026,687 6333,710l11368 113c4862,-566 5478,-491 9639,453 54,12 91,58 91,114 0,55 -37,101 -91,113zm-6334 45l0 -316c0,-93 76,-168 168,-168l1817 0c92,0 168,75 168,168l0 316c0,92 -76,168 -168,168l-1817 0c-92,0 -168,-76 -168,-168z"/>
<path class="fil13 str1" d="M88001 46388c63,402 412,712 831,712l0 0c462,0 840,-378 840,-840l0 -887c0,-228 111,-423 306,-541 196,-117 420,-123 622,-17 507,269 848,771 848,1432l0 17153c0,909 -744,1653 -1653,1653l-1794 0 0 2724c0,10210 -8354,18564 -18564,18564l-25907 0c-10211,0 -18565,-8354 -18565,-18564l0 -2471 -1763 0c-926,0 -1683,-757 -1683,-1683l0 -17093c0,-925 757,-1682 1683,-1682l1763 0 0 -2978c0,-10210 8354,-18564 18565,-18564l25907 0c10210,0 18564,8354 18564,18564l0 4518zm-44471 -19931c-8471,0 -15413,6942 -15413,15413l0 25907c0,8471 6942,15413 15413,15413l25907 0c8471,0 15413,-6942 15413,-15413l0 -25907c0,-8471 -6942,-15413 -15413,-15413l-25907 0zm45497 34679c461,0 834,373 834,834 0,460 -373,834 -834,834 -460,0 -834,-374 -834,-834 0,-461 374,-834 834,-834zm-328 -4371l656 0c463,0 841,378 841,840l0 1c0,462 -378,840 -841,840l-656 0c-290,0 -546,-148 -698,-373l0 -935c152,-224 408,-373 698,-373zm-64717 4364c465,0 841,377 841,841 0,464 -376,840 -841,840 -464,0 -840,-376 -840,-840 0,-464 376,-841 840,-841zm-328 -4364l657 0c264,0 500,123 654,315l0 1051c-154,192 -390,315 -654,315l-657 0c-462,0 -840,-378 -840,-840l0 -1c0,-462 378,-840 840,-840z"/>
</g>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 362 KiB

Wyświetl plik

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Creator: CorelDRAW X7 -->
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="99.9999mm" height="96.4295mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 15109 14570"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style type="text/css">
<![CDATA[
.fil0 {fill:none}
.fil3 {fill:black}
.fil1 {fill:#003399}
.fil4 {fill:gray}
.fil2 {fill:white}
]]>
</style>
</defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"/>
<rect class="fil0" width="15109" height="14570"/>
<path class="fil1" d="M9857 7480l0 -51c0,-15 12,-27 27,-27l295 0c15,0 27,12 27,27l0 51c0,15 -12,28 -27,28l-295 0c-15,0 -27,-13 -27,-28zm2819 -1566c10,66 67,116 135,116l0 0c75,0 137,-61 137,-137l0 -144c0,-37 18,-68 49,-88 32,-19 69,-20 101,-2 83,43 138,125 138,232l0 2788c0,147 -121,268 -268,268l-292 0 0 443c0,1659 -1357,3016 -3016,3016l-4210 0c-1659,0 -3017,-1357 -3017,-3016l0 -402 -286 0c-151,0 -274,-123 -274,-273l0 -2778c0,-150 123,-273 274,-273l286 0 0 -484c0,-1659 1358,-3016 3017,-3016l4210 0c1659,0 3016,1357 3016,3016l0 734zm-10456 1686l107 0c43,0 81,21 106,52l0 170c-25,32 -63,52 -106,52l-107 0c-75,0 -136,-62 -136,-137l0 0c0,-75 61,-137 136,-137zm54 710c75,0 136,61 136,136 0,76 -61,137 -136,137 -76,0 -137,-61 -137,-137 0,-75 61,-136 137,-136zm10515 -710l107 0c75,0 137,62 137,137l0 0c0,75 -62,137 -137,137l-107 0c-47,0 -88,-24 -113,-61l0 -152c25,-36 66,-61 113,-61zm54 711c75,0 135,60 135,135 0,75 -60,136 -135,136 -75,0 -136,-61 -136,-136 0,-75 61,-135 136,-135zm-1957 -838c-676,154 -776,166 -1566,74l-1848 18c-374,4 -659,116 -1029,116l-2070 0 -138 -75 0 -302 138 -75 2070 0c370,0 655,111 1029,115l1848 19c790,-92 890,-80 1566,73 9,2 15,10 15,19 0,9 -6,16 -15,18zm-6324 -832l0 -2163 516 0 0 2163 -516 0zm1562 0l0 -2234 50 0 1347 1263 0 -1192 477 0 0 2246 -45 0 -1352 -1263 0 1180 -477 0zm2865 0l0 -2163 510 0 0 941 715 -941 614 0 -816 1029 881 1134 -624 0 -770 -996 0 996 -510 0zm-4809 2781c86,52 160,89 220,111 60,21 119,31 177,31 57,0 104,-13 139,-38 35,-26 53,-58 53,-98 0,-57 -63,-122 -188,-193 -20,-12 -36,-21 -46,-27l-95 -54c-92,-52 -161,-111 -205,-177 -45,-66 -67,-140 -67,-223 0,-113 43,-206 128,-278 85,-72 195,-108 330,-108 50,0 103,5 161,17 58,12 123,30 194,54l0 329c-68,-43 -132,-75 -193,-98 -61,-23 -112,-35 -155,-35 -47,0 -84,10 -111,30 -27,21 -41,48 -41,83 0,24 8,47 25,68 16,22 40,41 72,58l165 91c137,76 230,147 277,211 48,65 72,141 72,230 0,136 -47,247 -140,331 -93,84 -217,126 -371,126 -52,0 -109,-5 -171,-16 -61,-11 -128,-28 -202,-51l-28 -374zm1440 396l0 -1110 -445 0 0 -293 1224 0 0 293 -444 0 0 1110 -335 0zm986 0l0 -1403 335 0 0 1403 -335 0zm989 0l0 -1110 -446 0 0 -293 1225 0 0 293 -444 0 0 1110 -335 0zm1983 -959c-60,-63 -122,-109 -184,-139 -62,-30 -128,-45 -196,-45 -119,0 -216,41 -291,122 -76,82 -113,188 -113,316 0,128 37,232 112,312 75,79 172,119 292,119 71,0 142,-14 213,-44 70,-30 141,-74 211,-134l-22 373c-60,40 -125,71 -196,92 -72,22 -146,32 -223,32 -82,0 -161,-12 -237,-38 -76,-26 -146,-64 -209,-115 -91,-71 -160,-157 -208,-259 -48,-102 -72,-214 -72,-335 0,-104 18,-201 53,-292 36,-91 87,-171 155,-241 68,-70 147,-123 237,-160 90,-37 184,-55 283,-55 79,0 154,10 226,33 72,21 140,55 205,99l-36 359zm261 959l0 -1403 331 0 0 515 541 0 0 -515 329 0 0 1403 -329 0 0 -589 -541 0 0 589 -331 0zm-4389 -7142c-1376,0 -2504,1128 -2504,2504l0 4210c0,1376 1128,2504 2504,2504l4210 0c1376,0 2504,-1128 2504,-2504l0 -4210c0,-1376 -1128,-2504 -2504,-2504l-4210 0z"/>
<path class="fil2" d="M5450 2676c-1376,0 -2504,1128 -2504,2504l0 4210c0,1376 1128,2504 2504,2504l4210 0c1376,0 2504,-1128 2504,-2504l0 -4210c0,-1376 -1128,-2504 -2504,-2504l-4210 0z"/>
<path class="fil3" d="M9839 9818l0 -1403 331 0 0 515 541 0 0 -515 329 0 0 1403 -329 0 0 -589 -541 0 0 589 -331 0zm-261 -959c-60,-63 -122,-109 -184,-139 -62,-30 -128,-45 -196,-45 -119,0 -216,41 -291,122 -76,82 -113,188 -113,316 0,128 37,232 112,312 75,79 172,119 292,119 71,0 142,-14 213,-44 70,-30 141,-74 211,-134l-22 373c-60,40 -125,71 -196,92 -72,22 -146,32 -223,32 -82,0 -161,-12 -237,-38 -76,-26 -146,-64 -209,-115 -91,-71 -160,-157 -208,-259 -48,-102 -72,-214 -72,-335 0,-104 18,-201 53,-292 36,-91 87,-171 155,-241 68,-70 147,-123 237,-160 90,-37 184,-55 283,-55 79,0 154,10 226,33 72,21 140,55 205,99l-36 359zm-1983 959l0 -1110 -446 0 0 -293 1225 0 0 293 -444 0 0 1110 -335 0zm-989 0l0 -1403 335 0 0 1403 -335 0zm-986 0l0 -1110 -445 0 0 -293 1224 0 0 293 -444 0 0 1110 -335 0zm-1440 -396c86,52 160,89 220,111 60,21 119,31 177,31 57,0 104,-13 139,-38 35,-26 53,-58 53,-98 0,-57 -63,-122 -188,-193 -20,-12 -36,-21 -46,-27l-95 -54c-92,-52 -161,-111 -205,-177 -45,-66 -67,-140 -67,-223 0,-113 43,-206 128,-278 85,-72 195,-108 330,-108 50,0 103,5 161,17 58,12 123,30 194,54l0 329c-68,-43 -132,-75 -193,-98 -61,-23 -112,-35 -155,-35 -47,0 -84,10 -111,30 -27,21 -41,48 -41,83 0,24 8,47 25,68 16,22 40,41 72,58l165 91c137,76 230,147 277,211 48,65 72,141 72,230 0,136 -47,247 -140,331 -93,84 -217,126 -371,126 -52,0 -109,-5 -171,-16 -61,-11 -128,-28 -202,-51l-28 -374z"/>
<path class="fil3" d="M8989 6641l0 -2163 510 0 0 941 715 -941 614 0 -816 1029 881 1134 -624 0 -770 -996 0 996 -510 0zm-2865 0l0 -2234 50 0 1347 1263 0 -1192 477 0 0 2246 -45 0 -1352 -1263 0 1180 -477 0zm-1562 0l0 -2163 516 0 0 2163 -516 0z"/>
<path class="fil4" d="M10886 7473c-676,154 -776,166 -1566,74l-1848 18c-374,4 -659,116 -1029,116l-2070 0 -138 -75 0 -302 138 -75 2070 0c370,0 655,111 1029,115l1848 19c790,-92 890,-80 1566,73 9,2 15,10 15,19 0,9 -6,16 -15,18zm-1029 7l0 -51c0,-15 12,-27 27,-27l295 0c15,0 27,12 27,27l0 51c0,15 -12,28 -27,28l-295 0c-15,0 -27,-13 -27,-28z"/>
</g>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 5.8 KiB

Wyświetl plik

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Creator: CorelDRAW X7 -->
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="100mm" height="96.4295mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 10485 10110"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style type="text/css">
<![CDATA[
.fil0 {fill:none}
.fil1 {fill:#003399}
]]>
</style>
</defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"/>
<rect class="fil0" width="10485" height="10110"/>
<path class="fil1" d="M6840 5191l0 -36c0,-10 8,-19 19,-19l205 0c10,0 18,9 18,19l0 36c0,10 -8,19 -18,19l-205 0c-11,0 -19,-9 -19,-19zm1956 -1087c7,45 47,80 94,80l0 0c52,0 95,-42 95,-94l0 -100c0,-26 12,-48 34,-61 22,-14 47,-14 70,-2 57,30 96,87 96,161l0 1934c0,103 -84,187 -187,187l-202 0 0 307c0,1151 -942,2093 -2093,2093l-2921 0c-1151,0 -2093,-942 -2093,-2093l0 -279 -199 0c-105,0 -190,-85 -190,-190l0 -1927c0,-104 85,-190 190,-190l199 0 0 -335c0,-1152 942,-2094 2093,-2094l2921 0c1151,0 2093,942 2093,2094l0 509zm-7255 1170l74 0c30,0 56,14 74,36l0 118c-18,22 -44,36 -74,36l-74 0c-52,0 -95,-43 -95,-95l0 0c0,-52 43,-95 95,-95zm37 492c52,0 95,43 95,95 0,52 -43,95 -95,95 -53,0 -95,-43 -95,-95 0,-52 42,-95 95,-95zm7297 -492l74 0c52,0 95,43 95,95l0 0c0,52 -43,95 -95,95l-74 0c-33,0 -62,-17 -79,-42l0 -106c17,-25 46,-42 79,-42zm37 493c52,0 94,42 94,94 0,52 -42,94 -94,94 -52,0 -94,-42 -94,-94 0,-52 42,-94 94,-94zm-1358 -581c-469,106 -539,115 -1087,51l-1282 13c-260,2 -457,80 -714,80l-1437 0 -95 -52 0 -210 95 -52 1437 0c257,0 454,78 714,80l1282 13c548,-64 618,-55 1087,51 6,1 10,7 10,13 0,6 -4,11 -10,13zm-4389 -577l0 -1502 359 0 0 1502 -359 0zm1085 0l0 -1551 34 0 935 877 0 -828 331 0 0 1559 -31 0 -938 -876 0 819 -331 0zm1987 0l0 -1502 354 0 0 654 496 -654 427 0 -566 714 611 788 -433 0 -535 -692 0 692 -354 0zm-3336 1929c60,36 110,62 152,77 42,14 83,22 123,22 40,0 72,-9 97,-27 24,-17 36,-40 36,-68 0,-39 -43,-84 -130,-134 -14,-8 -25,-14 -32,-19l-66 -37c-64,-36 -111,-77 -142,-123 -31,-45 -46,-97 -46,-155 0,-78 29,-142 88,-192 59,-51 135,-76 229,-76 34,0 72,5 112,13 40,8 85,20 134,37l0 228c-47,-29 -91,-52 -133,-68 -43,-16 -78,-24 -108,-24 -33,0 -58,7 -77,21 -19,14 -28,33 -28,57 0,17 5,33 16,48 12,15 28,28 51,40l114 63c96,53 160,102 193,147 33,44 49,97 49,159 0,95 -32,171 -97,230 -65,58 -150,87 -257,87 -36,0 -76,-3 -119,-11 -42,-8 -89,-20 -140,-36l-19 -259zm999 275l0 -770 -309 0 0 -204 849 0 0 204 -308 0 0 770 -232 0zm684 0l0 -974 232 0 0 974 -232 0zm686 0l0 -770 -309 0 0 -204 850 0 0 204 -308 0 0 770 -233 0zm1377 -666c-43,-43 -85,-75 -128,-96 -44,-21 -89,-31 -136,-31 -83,0 -150,28 -202,85 -53,57 -79,130 -79,219 0,89 26,161 78,216 52,55 119,83 203,83 49,0 98,-10 147,-31 49,-21 98,-51 147,-93l-15 259c-42,28 -87,50 -137,64 -49,15 -100,22 -154,22 -57,0 -112,-9 -165,-26 -52,-18 -101,-45 -145,-80 -63,-49 -111,-109 -144,-180 -33,-71 -50,-148 -50,-232 0,-72 12,-140 37,-203 25,-63 60,-119 107,-167 48,-48 103,-85 165,-111 62,-26 128,-39 197,-39 54,0 106,8 156,23 50,15 97,39 142,70l-24 248zm181 666l0 -974 229 0 0 358 376 0 0 -358 228 0 0 974 -228 0 0 -409 -376 0 0 409 -229 0zm-3046 -4956c-955,0 -1738,783 -1738,1738l0 2921c0,955 783,1738 1738,1738l2921 0c955,0 1738,-783 1738,-1738l0 -2921c0,-955 -783,-1738 -1738,-1738l-2921 0z"/>
</g>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 3.4 KiB

Wyświetl plik

@ -7,6 +7,9 @@ import gettext
from copy import deepcopy
import math
import libembroidery
from inkstitch.utils import cache
from inkstitch.utils.geometry import Point
import inkex
import simplepath
import simplestyle
@ -17,11 +20,6 @@ import cubicsuperpath
from shapely import geometry as shgeo
try:
from functools import lru_cache
except ImportError:
from backports.functools_lru_cache import lru_cache
# modern versions of Inkscape use 96 pixels per inch as per the CSS standard
PIXELS_PER_MM = 96 / 25.4
@ -29,16 +27,16 @@ SVG_PATH_TAG = inkex.addNS('path', 'svg')
SVG_POLYLINE_TAG = inkex.addNS('polyline', 'svg')
SVG_DEFS_TAG = inkex.addNS('defs', 'svg')
SVG_GROUP_TAG = inkex.addNS('g', 'svg')
INKSCAPE_LABEL = inkex.addNS('label', 'inkscape')
INKSCAPE_GROUPMODE = inkex.addNS('groupmode', 'inkscape')
EMBROIDERABLE_TAGS = (SVG_PATH_TAG, SVG_POLYLINE_TAG)
dbg = open(os.devnull, "w")
translation = None
_ = lambda message: message
# simplify use of lru_cache decorator
def cache(*args, **kwargs):
return lru_cache(maxsize=None)(*args, **kwargs)
def localize():
if getattr(sys, 'frozen', False):
@ -49,9 +47,9 @@ def localize():
locale_dir = os.path.join(locale_dir, 'locales')
translation = gettext.translation("inkstitch", locale_dir, fallback=True)
global translation, _
global _
translation = gettext.translation("inkstitch", locale_dir, fallback=True)
_ = translation.gettext
localize()
@ -155,276 +153,11 @@ def get_viewbox_transform(node):
return transform
class Param(object):
def __init__(self, name, description, unit=None, values=[], type=None, group=None, inverse=False, default=None, tooltip=None, sort_index=0):
self.name = name
self.description = description
self.unit = unit
self.values = values or [""]
self.type = type
self.group = group
self.inverse = inverse
self.default = default
self.tooltip = tooltip
self.sort_index = sort_index
def __repr__(self):
return "Param(%s)" % vars(self)
# Decorate a member function or property with information about
# the embroidery parameter it corresponds to
def param(*args, **kwargs):
p = Param(*args, **kwargs)
def decorator(func):
func.param = p
return func
return decorator
class EmbroideryElement(object):
def __init__(self, node):
self.node = node
@property
def id(self):
return self.node.get('id')
@classmethod
def get_params(cls):
params = []
for attr in dir(cls):
prop = getattr(cls, attr)
if isinstance(prop, property):
# The 'param' attribute is set by the 'param' decorator defined above.
if hasattr(prop.fget, 'param'):
params.append(prop.fget.param)
return params
@cache
def get_param(self, param, default):
value = self.node.get("embroider_" + param, "").strip()
return value or default
@cache
def get_boolean_param(self, param, default=None):
value = self.get_param(param, default)
if isinstance(value, bool):
return value
else:
return value and (value.lower() in ('yes', 'y', 'true', 't', '1'))
@cache
def get_float_param(self, param, default=None):
try:
value = float(self.get_param(param, default))
except (TypeError, ValueError):
return default
if param.endswith('_mm'):
value = value * PIXELS_PER_MM
return value
@cache
def get_int_param(self, param, default=None):
try:
value = int(self.get_param(param, default))
except (TypeError, ValueError):
return default
if param.endswith('_mm'):
value = int(value * PIXELS_PER_MM)
return value
def set_param(self, name, value):
self.node.set("embroider_%s" % name, str(value))
@cache
def get_style(self, style_name):
style = simplestyle.parseStyle(self.node.get("style"))
if (style_name not in style):
return None
value = style[style_name]
if value == 'none':
return None
return value
@cache
def has_style(self, style_name):
style = simplestyle.parseStyle(self.node.get("style"))
return style_name in style
@property
def path(self):
return cubicsuperpath.parsePath(self.node.get("d"))
@cache
def parse_path(self):
# A CSP is a "cubic superpath".
#
# A "path" is a sequence of strung-together bezier curves.
#
# A "superpath" is a collection of paths that are all in one object.
#
# The "cubic" bit in "cubic superpath" is because the bezier curves
# inkscape uses involve cubic polynomials.
#
# Each path is a collection of tuples, each of the form:
#
# (control_before, point, control_after)
#
# A bezier curve segment is defined by an endpoint, a control point,
# a second control point, and a final endpoint. A path is a bunch of
# bezier curves strung together. One could represent a path as a set
# of four-tuples, but there would be redundancy because the ending
# point of one bezier is the starting point of the next. Instead, a
# path is a set of 3-tuples as shown above, and one must construct
# each bezier curve by taking the appropriate endpoints and control
# points. Bleh. It should be noted that a straight segment is
# represented by having the control point on each end equal to that
# end's point.
#
# In a path, each element in the 3-tuple is itself a tuple of (x, y).
# Tuples all the way down. Hasn't anyone heard of using classes?
path = self.path
# start with the identity transform
transform = [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]]
# combine this node's transform with all parent groups' transforms
transform = simpletransform.composeParents(self.node, transform)
# add in the transform implied by the viewBox
viewbox_transform = get_viewbox_transform(self.node.getroottree().getroot())
transform = simpletransform.composeTransform(viewbox_transform, transform)
# apply the combined transform to this node's path
simpletransform.applyTransformToPath(transform, path)
return path
def flatten(self, path):
"""approximate a path containing beziers with a series of points"""
path = deepcopy(path)
cspsubdiv(path, 0.1)
flattened = []
for comp in path:
vertices = []
for ctl in comp:
vertices.append((ctl[1][0], ctl[1][1]))
flattened.append(vertices)
return flattened
@property
@param('trim_after',
_('TRIM after'),
tooltip=_('Trim thread after this object (for supported machines and file formats)'),
type='boolean',
default=False,
sort_index=1000)
def trim_after(self):
return self.get_boolean_param('trim_after', False)
@property
@param('stop_after',
_('STOP after'),
tooltip=_('Add STOP instruction after this object (for supported machines and file formats)'),
type='boolean',
default=False,
sort_index=1000)
def stop_after(self):
return self.get_boolean_param('stop_after', False)
def to_patches(self, last_patch):
raise NotImplementedError("%s must implement to_patches()" % self.__class__.__name__)
def embroider(self, last_patch):
patches = self.to_patches(last_patch)
if patches:
patches[-1].trim_after = self.trim_after
patches[-1].stop_after = self.stop_after
return patches
def fatal(self, message):
print >> sys.stderr, "error:", message
sys.exit(1)
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def __add__(self, other):
return Point(self.x + other.x, self.y + other.y)
def __sub__(self, other):
return Point(self.x - other.x, self.y - other.y)
def mul(self, scalar):
return Point(self.x * scalar, self.y * scalar)
def __mul__(self, other):
if isinstance(other, Point):
# dot product
return self.x * other.x + self.y * other.y
elif isinstance(other, (int, float)):
return Point(self.x * other, self.y * other)
else:
raise ValueError("cannot multiply Point by %s" % type(other))
def __rmul__(self, other):
if isinstance(other, (int, float)):
return self.__mul__(other)
else:
raise ValueError("cannot multiply Point by %s" % type(other))
def __repr__(self):
return "Point(%s,%s)" % (self.x, self.y)
def length(self):
return math.sqrt(math.pow(self.x, 2.0) + math.pow(self.y, 2.0))
def unit(self):
return self.mul(1.0 / self.length())
def rotate_left(self):
return Point(-self.y, self.x)
def rotate(self, angle):
return Point(self.x * math.cos(angle) - self.y * math.sin(angle), self.y * math.cos(angle) + self.x * math.sin(angle))
def as_int(self):
return Point(int(round(self.x)), int(round(self.y)))
def as_tuple(self):
return (self.x, self.y)
def __cmp__(self, other):
return cmp(self.as_tuple(), other.as_tuple())
def __getitem__(self, item):
return self.as_tuple()[item]
def __len__(self):
return 2
@cache
def get_stroke_scale(node):
doc_width, doc_height = get_doc_size(node)
viewbox = node.get('viewBox').strip().replace(',', ' ').split()
return doc_width / float(viewbox[2])
class Stitch(Point):
@ -440,51 +173,11 @@ class Stitch(Point):
return "Stitch(%s, %s, %s, %s, %s, %s)" % (self.x, self.y, self.color, "JUMP" if self.jump else "", "TRIM" if self.trim else "", "STOP" if self.stop else "")
def descendants(node):
nodes = []
element = EmbroideryElement(node)
if element.has_style('display') and element.get_style('display') is None:
return []
if node.tag == SVG_DEFS_TAG:
return []
for child in node:
nodes.extend(descendants(child))
if node.tag in EMBROIDERABLE_TAGS:
nodes.append(node)
return nodes
def get_nodes(effect):
"""Get all XML nodes, or just those selected
effect is an instance of a subclass of inkex.Effect.
"""
if effect.selected:
nodes = []
for node in effect.document.getroot().iter():
if node.get("id") in effect.selected:
nodes.extend(descendants(node))
else:
nodes = descendants(effect.document.getroot())
return nodes
def make_thread(color):
# strip off the leading "#"
if color.startswith("#"):
color = color[1:]
thread = libembroidery.EmbThread()
thread.color = libembroidery.embColor_fromHexStr(color)
thread.color = libembroidery.embColor_make(*color.rgb)
thread.description = color
thread.description = color.name
thread.catalogNumber = ""
return thread
@ -572,19 +265,25 @@ def get_origin(svg):
return default
def write_embroidery_file(file_path, stitches, svg):
def write_embroidery_file(file_path, stitch_plan, svg):
origin = get_origin(svg)
pattern = libembroidery.embPattern_create()
last_color = None
for stitch in stitches:
if stitch.color != last_color:
add_thread(pattern, make_thread(stitch.color))
last_color = stitch.color
for color_block in stitch_plan:
add_thread(pattern, make_thread(color_block.color))
flags = get_flags(stitch)
libembroidery.embPattern_addStitchAbs(pattern, stitch.x - origin.x, stitch.y - origin.y, flags, 1)
for stitch in color_block:
if stitch.stop:
# The user specified "STOP after". "STOP" is the same thing as
# a color change, and the user will assign a special color at
# the machine that tells it to pause after. We need to add
# another copy of the same color here so that the stitches after
# the STOP are still the same color.
add_thread(pattern, make_thread(color_block.color))
flags = get_flags(stitch)
libembroidery.embPattern_addStitchAbs(pattern, stitch.x - origin.x, stitch.y - origin.y, flags, 1)
libembroidery.embPattern_addStitchAbs(pattern, stitch.x - origin.x, stitch.y - origin.y, libembroidery.END, 1)

Wyświetl plik

@ -0,0 +1,6 @@
from auto_fill import AutoFill
from fill import Fill
from stroke import Stroke
from satin_column import SatinColumn
from element import EmbroideryElement
from polyline import Polyline

Wyświetl plik

@ -0,0 +1,108 @@
import math
from .. import _
from .element import param, Patch
from ..utils import cache
from .fill import Fill
from shapely import geometry as shgeo
from ..stitches import auto_fill
class AutoFill(Fill):
element_name = _("Auto-Fill")
@property
@param('auto_fill', _('Automatically routed fill stitching'), type='toggle', default=True)
def auto_fill(self):
return self.get_boolean_param('auto_fill', True)
@property
@cache
def outline(self):
return self.shape.boundary[0]
@property
@cache
def outline_length(self):
return self.outline.length
@property
def flip(self):
return False
@property
@param('running_stitch_length_mm', _('Running stitch length (traversal between sections)'), unit='mm', type='float', default=1.5)
def running_stitch_length(self):
return max(self.get_float_param("running_stitch_length_mm", 1.5), 0.01)
@property
@param('fill_underlay', _('Underlay'), type='toggle', group=_('AutoFill Underlay'), default=False)
def fill_underlay(self):
return self.get_boolean_param("fill_underlay", default=False)
@property
@param('fill_underlay_angle', _('Fill angle (default: fill angle + 90 deg)'), unit='deg', group=_('AutoFill Underlay'), type='float')
@cache
def fill_underlay_angle(self):
underlay_angle = self.get_float_param("fill_underlay_angle")
if underlay_angle:
return math.radians(underlay_angle)
else:
return self.angle + math.pi / 2.0
@property
@param('fill_underlay_row_spacing_mm', _('Row spacing (default: 3x fill row spacing)'), unit='mm', group=_('AutoFill Underlay'), type='float')
@cache
def fill_underlay_row_spacing(self):
return self.get_float_param("fill_underlay_row_spacing_mm") or self.row_spacing * 3
@property
@param('fill_underlay_max_stitch_length_mm', _('Max stitch length'), unit='mm', group=_('AutoFill Underlay'), type='float')
@cache
def fill_underlay_max_stitch_length(self):
return self.get_float_param("fill_underlay_max_stitch_length_mm") or self.max_stitch_length
@property
@param('fill_underlay_inset_mm', _('Inset'), unit='mm', group=_('AutoFill Underlay'), type='float', default=0)
def fill_underlay_inset(self):
return self.get_float_param('fill_underlay_inset_mm', 0)
@property
def underlay_shape(self):
if self.fill_underlay_inset:
shape = self.shape.buffer(-self.fill_underlay_inset)
if not isinstance(shape, shgeo.MultiPolygon):
shape = shgeo.MultiPolygon([shape])
return shape
else:
return self.shape
def to_patches(self, last_patch):
stitches = []
if last_patch is None:
starting_point = None
else:
starting_point = last_patch.stitches[-1]
if self.fill_underlay:
stitches.extend(auto_fill(self.underlay_shape,
self.fill_underlay_angle,
self.fill_underlay_row_spacing,
self.fill_underlay_row_spacing,
self.fill_underlay_max_stitch_length,
self.running_stitch_length,
self.staggers,
starting_point))
starting_point = stitches[-1]
stitches.extend(auto_fill(self.shape,
self.angle,
self.row_spacing,
self.end_row_spacing,
self.max_stitch_length,
self.running_stitch_length,
self.staggers,
starting_point))
return [Patch(stitches=stitches, color=self.color)]

Wyświetl plik

@ -0,0 +1,260 @@
import sys
from copy import deepcopy
from ..utils import cache
from shapely import geometry as shgeo
from .. import _, PIXELS_PER_MM, get_viewbox_transform, get_stroke_scale, convert_length
# inkscape-provided utilities
import simpletransform
import simplestyle
import cubicsuperpath
from cspsubdiv import cspsubdiv
class Patch:
"""A raw collection of stitches with attached instructions."""
def __init__(self, color=None, stitches=None, trim_after=False, stop_after=False):
self.color = color
self.stitches = stitches or []
self.trim_after = trim_after
self.stop_after = stop_after
def __add__(self, other):
if isinstance(other, Patch):
return Patch(self.color, self.stitches + other.stitches)
else:
raise TypeError("Patch can only be added to another Patch")
def add_stitch(self, stitch):
self.stitches.append(stitch)
def reverse(self):
return Patch(self.color, self.stitches[::-1])
class Param(object):
def __init__(self, name, description, unit=None, values=[], type=None, group=None, inverse=False, default=None, tooltip=None, sort_index=0):
self.name = name
self.description = description
self.unit = unit
self.values = values or [""]
self.type = type
self.group = group
self.inverse = inverse
self.default = default
self.tooltip = tooltip
self.sort_index = sort_index
def __repr__(self):
return "Param(%s)" % vars(self)
# Decorate a member function or property with information about
# the embroidery parameter it corresponds to
def param(*args, **kwargs):
p = Param(*args, **kwargs)
def decorator(func):
func.param = p
return func
return decorator
class EmbroideryElement(object):
def __init__(self, node):
self.node = node
@property
def id(self):
return self.node.get('id')
@classmethod
def get_params(cls):
params = []
for attr in dir(cls):
prop = getattr(cls, attr)
if isinstance(prop, property):
# The 'param' attribute is set by the 'param' decorator defined above.
if hasattr(prop.fget, 'param'):
params.append(prop.fget.param)
return params
@cache
def get_param(self, param, default):
value = self.node.get("embroider_" + param, "").strip()
return value or default
@cache
def get_boolean_param(self, param, default=None):
value = self.get_param(param, default)
if isinstance(value, bool):
return value
else:
return value and (value.lower() in ('yes', 'y', 'true', 't', '1'))
@cache
def get_float_param(self, param, default=None):
try:
value = float(self.get_param(param, default))
except (TypeError, ValueError):
value = default
if value is None:
return value
if param.endswith('_mm'):
value = value * PIXELS_PER_MM
return value
@cache
def get_int_param(self, param, default=None):
try:
value = int(self.get_param(param, default))
except (TypeError, ValueError):
return default
if param.endswith('_mm'):
value = int(value * PIXELS_PER_MM)
return value
def set_param(self, name, value):
self.node.set("embroider_%s" % name, str(value))
@cache
def get_style(self, style_name):
style = simplestyle.parseStyle(self.node.get("style"))
if (style_name not in style):
return None
value = style[style_name]
if value == 'none':
return None
return value
@cache
def has_style(self, style_name):
style = simplestyle.parseStyle(self.node.get("style"))
return style_name in style
@property
@cache
def stroke_width(self):
width = self.get_style("stroke-width")
if width is None:
return 1.0
width = convert_length(width)
return width * get_stroke_scale(self.node.getroottree().getroot())
@property
def path(self):
return cubicsuperpath.parsePath(self.node.get("d"))
@cache
def parse_path(self):
# A CSP is a "cubic superpath".
#
# A "path" is a sequence of strung-together bezier curves.
#
# A "superpath" is a collection of paths that are all in one object.
#
# The "cubic" bit in "cubic superpath" is because the bezier curves
# inkscape uses involve cubic polynomials.
#
# Each path is a collection of tuples, each of the form:
#
# (control_before, point, control_after)
#
# A bezier curve segment is defined by an endpoint, a control point,
# a second control point, and a final endpoint. A path is a bunch of
# bezier curves strung together. One could represent a path as a set
# of four-tuples, but there would be redundancy because the ending
# point of one bezier is the starting point of the next. Instead, a
# path is a set of 3-tuples as shown above, and one must construct
# each bezier curve by taking the appropriate endpoints and control
# points. Bleh. It should be noted that a straight segment is
# represented by having the control point on each end equal to that
# end's point.
#
# In a path, each element in the 3-tuple is itself a tuple of (x, y).
# Tuples all the way down. Hasn't anyone heard of using classes?
path = self.path
# start with the identity transform
transform = [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]]
# combine this node's transform with all parent groups' transforms
transform = simpletransform.composeParents(self.node, transform)
# add in the transform implied by the viewBox
viewbox_transform = get_viewbox_transform(self.node.getroottree().getroot())
transform = simpletransform.composeTransform(viewbox_transform, transform)
# apply the combined transform to this node's path
simpletransform.applyTransformToPath(transform, path)
return path
def flatten(self, path):
"""approximate a path containing beziers with a series of points"""
path = deepcopy(path)
cspsubdiv(path, 0.1)
flattened = []
for comp in path:
vertices = []
for ctl in comp:
vertices.append((ctl[1][0], ctl[1][1]))
flattened.append(vertices)
return flattened
@property
@param('trim_after',
_('TRIM after'),
tooltip=_('Trim thread after this object (for supported machines and file formats)'),
type='boolean',
default=False,
sort_index=1000)
def trim_after(self):
return self.get_boolean_param('trim_after', False)
@property
@param('stop_after',
_('STOP after'),
tooltip=_('Add STOP instruction after this object (for supported machines and file formats)'),
type='boolean',
default=False,
sort_index=1000)
def stop_after(self):
return self.get_boolean_param('stop_after', False)
def to_patches(self, last_patch):
raise NotImplementedError("%s must implement to_patches()" % self.__class__.__name__)
def embroider(self, last_patch):
patches = self.to_patches(last_patch)
if patches:
patches[-1].trim_after = self.trim_after
patches[-1].stop_after = self.stop_after
return patches
def fatal(self, message):
print >> sys.stderr, "error:", message
sys.exit(1)

Wyświetl plik

@ -0,0 +1,97 @@
from .. import _, PIXELS_PER_MM
from .element import param, EmbroideryElement, Patch
from ..utils import cache
from shapely import geometry as shgeo
import math
from ..stitches import running_stitch, auto_fill, legacy_fill
class Fill(EmbroideryElement):
element_name = _("Fill")
def __init__(self, *args, **kwargs):
super(Fill, self).__init__(*args, **kwargs)
@property
@param('auto_fill', _('Manually routed fill stitching'), type='toggle', inverse=True, default=True)
def auto_fill(self):
return self.get_boolean_param('auto_fill', True)
@property
@param('angle', _('Angle of lines of stitches'), unit='deg', type='float', default=0)
@cache
def angle(self):
return math.radians(self.get_float_param('angle', 0))
@property
def color(self):
return self.get_style("fill")
@property
@param('flip', _('Flip fill (start right-to-left)'), type='boolean', default=False)
def flip(self):
return self.get_boolean_param("flip", False)
@property
@param('row_spacing_mm', _('Spacing between rows'), unit='mm', type='float', default=0.25)
def row_spacing(self):
return max(self.get_float_param("row_spacing_mm", 0.25), 0.1 * PIXELS_PER_MM)
@property
def end_row_spacing(self):
return self.get_float_param("end_row_spacing_mm")
@property
@param('max_stitch_length_mm', _('Maximum fill stitch length'), unit='mm', type='float', default=3.0)
def max_stitch_length(self):
return max(self.get_float_param("max_stitch_length_mm", 3.0), 0.1 * PIXELS_PER_MM)
@property
@param('staggers', _('Stagger rows this many times before repeating'), type='int', default=4)
def staggers(self):
return self.get_int_param("staggers", 4)
@property
@cache
def paths(self):
return self.flatten(self.parse_path())
@property
@cache
def shape(self):
poly_ary = []
for sub_path in self.paths:
point_ary = []
last_pt = None
for pt in sub_path:
if (last_pt is not None):
vp = (pt[0] - last_pt[0], pt[1] - last_pt[1])
dp = math.sqrt(math.pow(vp[0], 2.0) + math.pow(vp[1], 2.0))
# dbg.write("dp %s\n" % dp)
if (dp > 0.01):
# I think too-close points confuse shapely.
point_ary.append(pt)
last_pt = pt
else:
last_pt = pt
if point_ary:
poly_ary.append(point_ary)
# shapely's idea of "holes" are to subtract everything in the second set
# from the first. So let's at least make sure the "first" thing is the
# biggest path.
# TODO: actually figure out which things are holes and which are shells
poly_ary.sort(key=lambda point_list: shgeo.Polygon(point_list).area, reverse=True)
polygon = shgeo.MultiPolygon([(poly_ary[0], poly_ary[1:])])
# print >> sys.stderr, "polygon valid:", polygon.is_valid
return polygon
def to_patches(self, last_patch):
stitch_lists = legacy_fill(self.shape,
self.angle,
self.row_spacing,
self.end_row_spacing,
self.max_stitch_length,
self.flip,
self.staggers)
return [Patch(stitches=stitch_list, color=self.color) for stitch_list in stitch_lists]

Wyświetl plik

@ -0,0 +1,72 @@
from .. import _, Point
from .element import param, EmbroideryElement, Patch
from ..utils import cache
class Polyline(EmbroideryElement):
# Handle a <polyline> element, which is treated as a set of points to
# stitch exactly.
#
# <polyline> elements are pretty rare in SVG, from what I can tell.
# Anything you can do with a <polyline> can also be done with a <p>, and
# much more.
#
# Notably, EmbroiderModder2 uses <polyline> elements when converting from
# common machine embroidery file formats to SVG. Handling those here lets
# users use File -> Import to pull in existing designs they may have
# obtained, for example purchased fonts.
@property
def points(self):
# example: "1,2 0,0 1.5,3 4,2"
points = self.node.get('points')
points = points.split(" ")
points = [[float(coord) for coord in point.split(",")] for point in points]
return points
@property
def path(self):
# A polyline is a series of connected line segments described by their
# points. In order to make use of the existing logic for incorporating
# svg transforms that is in our superclass, we'll convert the polyline
# to a degenerate cubic superpath in which the bezier handles are on
# the segment endpoints.
path = [[[point[:], point[:], point[:]] for point in self.points]]
return path
@property
@cache
def csp(self):
csp = self.parse_path()
return csp
@property
def color(self):
# EmbroiderModder2 likes to use the `stroke` property directly instead
# of CSS.
return self.get_style("stroke") or self.node.get("stroke")
@property
def stitches(self):
# For a <polyline>, we'll stitch the points exactly as they exist in
# the SVG, with no stitch spacing interpolation, flattening, etc.
# See the comments in the parent class's parse_path method for a
# description of the CSP data structure.
stitches = [point for handle_before, point, handle_after in self.csp[0]]
return stitches
def to_patches(self, last_patch):
patch = Patch(color=self.color)
for stitch in self.stitches:
patch.add_stitch(Point(*stitch))
return [patch]

Wyświetl plik

@ -0,0 +1,403 @@
from itertools import chain, izip
from .. import _, Point
from .element import param, EmbroideryElement, Patch
from ..utils import cache
from shapely import geometry as shgeo, ops as shops
class SatinColumn(EmbroideryElement):
element_name = _("Satin Column")
def __init__(self, *args, **kwargs):
super(SatinColumn, self).__init__(*args, **kwargs)
@property
@param('satin_column', _('Custom satin column'), type='toggle')
def satin_column(self):
return self.get_boolean_param("satin_column")
@property
def color(self):
return self.get_style("stroke")
@property
@param('zigzag_spacing_mm', _('Zig-zag spacing (peak-to-peak)'), unit='mm', type='float', default=0.4)
def zigzag_spacing(self):
# peak-to-peak distance between zigzags
return max(self.get_float_param("zigzag_spacing_mm", 0.4), 0.01)
@property
@param('pull_compensation_mm', _('Pull compensation'), unit='mm', type='float')
def pull_compensation(self):
# In satin stitch, the stitches have a tendency to pull together and
# narrow the entire column. We can compensate for this by stitching
# wider than we desire the column to end up.
return self.get_float_param("pull_compensation_mm", 0)
@property
@param('contour_underlay', _('Contour underlay'), type='toggle', group=_('Contour Underlay'))
def contour_underlay(self):
# "Contour underlay" is stitching just inside the rectangular shape
# of the satin column; that is, up one side and down the other.
return self.get_boolean_param("contour_underlay")
@property
@param('contour_underlay_stitch_length_mm', _('Stitch length'), unit='mm', group=_('Contour Underlay'), type='float', default=1.5)
def contour_underlay_stitch_length(self):
return max(self.get_float_param("contour_underlay_stitch_length_mm", 1.5), 0.01)
@property
@param('contour_underlay_inset_mm', _('Contour underlay inset amount'), unit='mm', group=_('Contour Underlay'), type='float', default=0.4)
def contour_underlay_inset(self):
# how far inside the edge of the column to stitch the underlay
return self.get_float_param("contour_underlay_inset_mm", 0.4)
@property
@param('center_walk_underlay', _('Center-walk underlay'), type='toggle', group=_('Center-Walk Underlay'))
def center_walk_underlay(self):
# "Center walk underlay" is stitching down and back in the centerline
# between the two sides of the satin column.
return self.get_boolean_param("center_walk_underlay")
@property
@param('center_walk_underlay_stitch_length_mm', _('Stitch length'), unit='mm', group=_('Center-Walk Underlay'), type='float', default=1.5)
def center_walk_underlay_stitch_length(self):
return max(self.get_float_param("center_walk_underlay_stitch_length_mm", 1.5), 0.01)
@property
@param('zigzag_underlay', _('Zig-zag underlay'), type='toggle', group=_('Zig-zag Underlay'))
def zigzag_underlay(self):
return self.get_boolean_param("zigzag_underlay")
@property
@param('zigzag_underlay_spacing_mm', _('Zig-Zag spacing (peak-to-peak)'), unit='mm', group=_('Zig-zag Underlay'), type='float', default=3)
def zigzag_underlay_spacing(self):
return max(self.get_float_param("zigzag_underlay_spacing_mm", 3), 0.01)
@property
@param('zigzag_underlay_inset_mm', _('Inset amount (default: half of contour underlay inset)'), unit='mm', group=_('Zig-zag Underlay'), type='float')
def zigzag_underlay_inset(self):
# how far in from the edge of the satin the points in the zigzags
# should be
# Default to half of the contour underlay inset. That is, if we're
# doing both contour underlay and zigzag underlay, make sure the
# points of the zigzag fall outside the contour underlay but inside
# the edges of the satin column.
return self.get_float_param("zigzag_underlay_inset_mm") or self.contour_underlay_inset / 2.0
@property
@cache
def csp(self):
return self.parse_path()
@property
@cache
def flattened_beziers(self):
if len(self.csp) == 2:
return self.simple_flatten_beziers()
else:
return self.flatten_beziers_with_rungs()
def flatten_beziers_with_rungs(self):
input_paths = [self.flatten([path]) for path in self.csp]
input_paths = [shgeo.LineString(path[0]) for path in input_paths]
paths = input_paths[:]
paths.sort(key=lambda path: path.length, reverse=True)
# Imagine a satin column as a curvy ladder.
# The two long paths are the "rails" of the ladder. The remainder are
# the "rungs".
rails = paths[:2]
rungs = shgeo.MultiLineString(paths[2:])
# The rails should stay in the order they were in the original CSP.
# (this lets the user control where the satin starts and ends)
rails.sort(key=lambda rail: input_paths.index(rail))
result = []
for rail in rails:
if not rail.is_simple:
self.fatal(_("One or more rails crosses itself, and this is not allowed. Please split into multiple satin columns."))
# handle null intersections here?
linestrings = shops.split(rail, rungs)
#print >> dbg, "rails and rungs", [str(rail) for rail in rails], [str(rung) for rung in rungs]
if len(linestrings.geoms) < len(rungs.geoms) + 1:
self.fatal(_("satin column: One or more of the rungs doesn't intersect both rails.") + " " + _("Each rail should intersect both rungs once."))
elif len(linestrings.geoms) > len(rungs.geoms) + 1:
self.fatal(_("satin column: One or more of the rungs intersects the rails more than once.") + " " + _("Each rail should intersect both rungs once."))
paths = [[Point(*coord) for coord in ls.coords] for ls in linestrings.geoms]
result.append(paths)
return zip(*result)
def simple_flatten_beziers(self):
# Given a pair of paths made up of bezier segments, flatten
# each individual bezier segment into line segments that approximate
# the curves. Retain the divisions between beziers -- we'll use those
# later.
paths = []
for path in self.csp:
# See the documentation in the parent class for parse_path() for a
# description of the format of the CSP. Each bezier is constructed
# using two neighboring 3-tuples in the list.
flattened_path = []
# iterate over pairs of 3-tuples
for prev, current in zip(path[:-1], path[1:]):
flattened_segment = self.flatten([[prev, current]])
flattened_segment = [Point(x, y) for x, y in flattened_segment[0]]
flattened_path.append(flattened_segment)
paths.append(flattened_path)
return zip(*paths)
def validate_satin_column(self):
# The node should have exactly two paths with no fill. Each
# path should have the same number of points, meaning that they
# will both be made up of the same number of bezier curves.
node_id = self.node.get("id")
if self.get_style("fill") is not None:
self.fatal(_("satin column: object %s has a fill (but should not)") % node_id)
if len(self.csp) == 2:
if len(self.csp[0]) != len(self.csp[1]):
self.fatal(_("satin column: object %(id)s has two paths with an unequal number of points (%(length1)d and %(length2)d)") % \
dict(id=node_id, length1=len(self.csp[0]), length2=len(self.csp[1])))
def offset_points(self, pos1, pos2, offset_px):
# Expand or contract two points about their midpoint. This is
# useful for pull compensation and insetting underlay.
distance = (pos1 - pos2).length()
if distance < 0.0001:
# if they're the same point, we don't know which direction
# to offset in, so we have to just return the points
return pos1, pos2
# don't contract beyond the midpoint, or we'll start expanding
if offset_px < -distance / 2.0:
offset_px = -distance / 2.0
pos1 = pos1 + (pos1 - pos2).unit() * offset_px
pos2 = pos2 + (pos2 - pos1).unit() * offset_px
return pos1, pos2
def walk(self, path, start_pos, start_index, distance):
# Move <distance> pixels along <path>, which is a sequence of line
# segments defined by points.
# <start_index> is the index of the line segment in <path> that
# we're currently on. <start_pos> is where along that line
# segment we are. Return a new position and index.
# print >> dbg, "walk", start_pos, start_index, distance
pos = start_pos
index = start_index
last_index = len(path) - 1
distance_remaining = distance
while True:
if index >= last_index:
return pos, index
segment_end = path[index + 1]
segment = segment_end - pos
segment_length = segment.length()
if segment_length > distance_remaining:
# our walk ends partway along this segment
return pos + segment.unit() * distance_remaining, index
else:
# our walk goes past the end of this segment, so advance
# one point
index += 1
distance_remaining -= segment_length
pos = segment_end
def walk_paths(self, spacing, offset):
# Take a bezier segment from each path in turn, and plot out an
# equal number of points on each bezier. Return the points plotted.
# The points will be contracted or expanded by offset using
# offset_points().
points = [[], []]
def add_pair(pos1, pos2):
pos1, pos2 = self.offset_points(pos1, pos2, offset)
points[0].append(pos1)
points[1].append(pos2)
# We may not be able to fit an even number of zigzags in each pair of
# beziers. We'll store the remaining bit of the beziers after handling
# each section.
remainder_path1 = []
remainder_path2 = []
for segment1, segment2 in self.flattened_beziers:
subpath1 = remainder_path1 + segment1
subpath2 = remainder_path2 + segment2
len1 = shgeo.LineString(subpath1).length
len2 = shgeo.LineString(subpath2).length
# Base the number of stitches in each section on the _longest_ of
# the two beziers. Otherwise, things could get too sparse when one
# side is significantly longer (e.g. when going around a corner).
# The risk here is that we poke a hole in the fabric if we try to
# cram too many stitches on the short bezier. The user will need
# to avoid this through careful construction of paths.
#
# TODO: some commercial machine embroidery software compensates by
# pulling in some of the "inner" stitches toward the center a bit.
# note, this rounds down using integer-division
num_points = max(len1, len2) / spacing
spacing1 = len1 / num_points
spacing2 = len2 / num_points
pos1 = subpath1[0]
index1 = 0
pos2 = subpath2[0]
index2 = 0
for i in xrange(int(num_points)):
add_pair(pos1, pos2)
pos1, index1 = self.walk(subpath1, pos1, index1, spacing1)
pos2, index2 = self.walk(subpath2, pos2, index2, spacing2)
if index1 < len(subpath1) - 1:
remainder_path1 = [pos1] + subpath1[index1 + 1:]
else:
remainder_path1 = []
if index2 < len(subpath2) - 1:
remainder_path2 = [pos2] + subpath2[index2 + 1:]
else:
remainder_path2 = []
# We're off by one in the algorithm above, so we need one more
# pair of points. We also want to add points at the very end to
# make sure we match the vectors on screen as best as possible.
# Try to avoid doing both if they're going to stack up too
# closely.
end1 = remainder_path1[-1]
end2 = remainder_path2[-1]
if (end1 - pos1).length() > 0.3 * spacing:
add_pair(pos1, pos2)
add_pair(end1, end2)
return points
def do_contour_underlay(self):
# "contour walk" underlay: do stitches up one side and down the
# other.
forward, back = self.walk_paths(self.contour_underlay_stitch_length,
-self.contour_underlay_inset)
return Patch(color=self.color, stitches=(forward + list(reversed(back))))
def do_center_walk(self):
# Center walk underlay is just a running stitch down and back on the
# center line between the bezier curves.
# Do it like contour underlay, but inset all the way to the center.
forward, back = self.walk_paths(self.center_walk_underlay_stitch_length,
-100000)
return Patch(color=self.color, stitches=(forward + list(reversed(back))))
def do_zigzag_underlay(self):
# zigzag underlay, usually done at a much lower density than the
# satin itself. It looks like this:
#
# \/\/\/\/\/\/\/\/\/\/|
# /\/\/\/\/\/\/\/\/\/\|
#
# In combination with the "contour walk" underlay, this is the
# "German underlay" described here:
# http://www.mrxstitch.com/underlay-what-lies-beneath-machine-embroidery/
patch = Patch(color=self.color)
sides = self.walk_paths(self.zigzag_underlay_spacing / 2.0,
-self.zigzag_underlay_inset)
# This organizes the points in each side in the order that they'll be
# visited.
sides = [sides[0][::2] + list(reversed(sides[0][1::2])),
sides[1][1::2] + list(reversed(sides[1][::2]))]
# This fancy bit of iterable magic just repeatedly takes a point
# from each side in turn.
for point in chain.from_iterable(izip(*sides)):
patch.add_stitch(point)
return patch
def do_satin(self):
# satin: do a zigzag pattern, alternating between the paths. The
# zigzag looks like this to make the satin stitches look perpendicular
# to the column:
#
# /|/|/|/|/|/|/|/|
# print >> dbg, "satin", self.zigzag_spacing, self.pull_compensation
patch = Patch(color=self.color)
sides = self.walk_paths(self.zigzag_spacing, self.pull_compensation)
# Like in zigzag_underlay(): take a point from each side in turn.
for point in chain.from_iterable(izip(*sides)):
patch.add_stitch(point)
return patch
def to_patches(self, last_patch):
# Stitch a variable-width satin column, zig-zagging between two paths.
# The algorithm will draw zigzags between each consecutive pair of
# beziers. The boundary points between beziers serve as "checkpoints",
# allowing the user to control how the zigzags flow around corners.
# First, verify that we have valid paths.
self.validate_satin_column()
patches = []
if self.center_walk_underlay:
patches.append(self.do_center_walk())
if self.contour_underlay:
patches.append(self.do_contour_underlay())
if self.zigzag_underlay:
# zigzag underlay comes after contour walk underlay, so that the
# zigzags sit on the contour walk underlay like rail ties on rails.
patches.append(self.do_zigzag_underlay())
patches.append(self.do_satin())
return patches

Wyświetl plik

@ -0,0 +1,109 @@
from .. import _, Point
from .element import param, EmbroideryElement, Patch
from ..utils import cache
class Stroke(EmbroideryElement):
element_name = "Stroke"
@property
@param('satin_column', _('Satin stitch along paths'), type='toggle', inverse=True)
def satin_column(self):
return self.get_boolean_param("satin_column")
@property
def color(self):
return self.get_style("stroke")
@property
def dashed(self):
return self.get_style("stroke-dasharray") is not None
@property
@param('running_stitch_length_mm', _('Running stitch length'), unit='mm', type='float', default=1.5)
def running_stitch_length(self):
return max(self.get_float_param("running_stitch_length_mm", 1.5), 0.01)
@property
@param('zigzag_spacing_mm', _('Zig-zag spacing (peak-to-peak)'), unit='mm', type='float', default=0.4)
@cache
def zigzag_spacing(self):
return max(self.get_float_param("zigzag_spacing_mm", 0.4), 0.01)
@property
@param('repeats', _('Repeats'), type='int', default="1")
def repeats(self):
return self.get_int_param("repeats", 1)
@property
def paths(self):
return self.flatten(self.parse_path())
def is_running_stitch(self):
# stroke width <= 0.5 pixels is deprecated in favor of dashed lines
return self.dashed or self.stroke_width <= 0.5
def stroke_points(self, emb_point_list, zigzag_spacing, stroke_width):
# TODO: use inkstitch.stitches.running_stitch
patch = Patch(color=self.color)
p0 = emb_point_list[0]
rho = 0.0
side = 1
last_segment_direction = None
for repeat in xrange(self.repeats):
if repeat % 2 == 0:
order = range(1, len(emb_point_list))
else:
order = range(-2, -len(emb_point_list) - 1, -1)
for segi in order:
p1 = emb_point_list[segi]
# how far we have to go along segment
seg_len = (p1 - p0).length()
if (seg_len == 0):
continue
# vector pointing along segment
along = (p1 - p0).unit()
# vector pointing to edge of stroke width
perp = along.rotate_left() * (stroke_width * 0.5)
if stroke_width == 0.0 and last_segment_direction is not None:
if abs(1.0 - along * last_segment_direction) > 0.5:
# if greater than 45 degree angle, stitch the corner
rho = zigzag_spacing
patch.add_stitch(p0)
# iteration variable: how far we are along segment
while (rho <= seg_len):
left_pt = p0 + along * rho + perp * side
patch.add_stitch(left_pt)
rho += zigzag_spacing
side = -side
p0 = p1
last_segment_direction = along
rho -= seg_len
if (p0 - patch.stitches[-1]).length() > 0.1:
patch.add_stitch(p0)
return patch
def to_patches(self, last_patch):
patches = []
for path in self.paths:
path = [Point(x, y) for x, y in path]
if self.is_running_stitch():
patch = self.stroke_points(path, self.running_stitch_length, stroke_width=0.0)
else:
patch = self.stroke_points(path, self.zigzag_spacing / 2.0, stroke_width=self.stroke_width)
patches.append(patch)
return patches

Wyświetl plik

@ -0,0 +1,103 @@
import inkex
from .elements import AutoFill, Fill, Stroke, SatinColumn, Polyline, EmbroideryElement
from . import SVG_POLYLINE_TAG, SVG_GROUP_TAG, SVG_DEFS_TAG, INKSCAPE_GROUPMODE, EMBROIDERABLE_TAGS, PIXELS_PER_MM
class InkstitchExtension(inkex.Effect):
"""Base class for Inkstitch extensions. Not intended for direct use."""
def hide_all_layers(self):
for g in self.document.getroot().findall(SVG_GROUP_TAG):
if g.get(INKSCAPE_GROUPMODE) == "layer":
g.set("style", "display:none")
def no_elements_error(self):
if self.selected:
inkex.errormsg(_("No embroiderable paths selected."))
else:
inkex.errormsg(_("No embroiderable paths found in document."))
inkex.errormsg(_("Tip: use Path -> Object to Path to convert non-paths before embroidering."))
def descendants(self, node):
nodes = []
element = EmbroideryElement(node)
if element.has_style('display') and element.get_style('display') is None:
return []
if node.tag == SVG_DEFS_TAG:
return []
for child in node:
nodes.extend(self.descendants(child))
if node.tag in EMBROIDERABLE_TAGS:
nodes.append(node)
return nodes
def get_nodes(self):
"""Get all XML nodes, or just those selected
effect is an instance of a subclass of inkex.Effect.
"""
if self.selected:
nodes = []
for node in self.document.getroot().iter():
if node.get("id") in self.selected:
nodes.extend(self.descendants(node))
else:
nodes = self.descendants(self.document.getroot())
return nodes
def detect_classes(self, node):
if node.tag == SVG_POLYLINE_TAG:
return [Polyline]
else:
element = EmbroideryElement(node)
if element.get_boolean_param("satin_column"):
return [SatinColumn]
else:
classes = []
if element.get_style("fill"):
if element.get_boolean_param("auto_fill", True):
classes.append(AutoFill)
else:
classes.append(Fill)
if element.get_style("stroke"):
classes.append(Stroke)
if element.get_boolean_param("stroke_first", False):
classes.reverse()
return classes
def get_elements(self):
self.elements = []
for node in self.get_nodes():
classes = self.detect_classes(node)
self.elements.extend(cls(node) for cls in classes)
if self.elements:
return True
else:
self.no_elements_error()
return False
def elements_to_patches(self, elements):
patches = []
for element in elements:
if patches:
last_patch = patches[-1]
else:
last_patch = None
patches.extend(element.embroider(last_patch))
return patches

Wyświetl plik

@ -0,0 +1 @@
from stitch_plan import patches_to_stitch_plan, StitchPlan, ColorBlock

Wyświetl plik

@ -0,0 +1,187 @@
from .. import Stitch, PIXELS_PER_MM
from ..utils.geometry import Point
from .stop import process_stop
from .trim import process_trim
from .ties import add_ties
from ..threads import ThreadColor
def patches_to_stitch_plan(patches, collapse_len=3.0 * PIXELS_PER_MM):
"""Convert a collection of inkstitch.element.Patch objects to a StitchPlan.
* applies instructions embedded in the Patch such as trim_after and stop_after
* adds tie-ins and tie-offs
* adds jump-stitches between patches if necessary
"""
stitch_plan = StitchPlan()
color_block = stitch_plan.new_color_block()
need_trim = False
for patch in patches:
if not patch.stitches:
continue
if need_trim:
process_trim(color_block, patch.stitches[0])
need_trim = False
if not color_block.has_color():
# set the color for the first color block
color_block.color = patch.color
if color_block.color == patch.color:
# add a jump stitch between patches if the distance is more
# than the collapse length
if color_block.last_stitch:
if (patch.stitches[0] - color_block.last_stitch).length() > collapse_len:
color_block.add_stitch(patch.stitches[0].x, patch.stitches[0].y, jump=True)
else:
# add a color change
color_block.add_stitch(color_block.last_stitch.x, color_block.last_stitch.y, stop=True)
color_block = stitch_plan.new_color_block()
color_block.color = patch.color
color_block.filter_duplicate_stitches()
color_block.add_stitches(patch.stitches)
if patch.trim_after:
# a trim needs to be followed by a jump to the next stitch, so
# we'll process it when we start the next patch
need_trim = True
if patch.stop_after:
process_stop(color_block)
add_ties(stitch_plan)
return stitch_plan
class StitchPlan(object):
"""Holds a set of color blocks, each containing stitches."""
def __init__(self):
self.color_blocks = []
def new_color_block(self, *args, **kwargs):
color_block = ColorBlock(*args, **kwargs)
self.color_blocks.append(color_block)
return color_block
def __iter__(self):
return iter(self.color_blocks)
def __len__(self):
return len(self.color_blocks)
@property
def num_colors(self):
"""Number of unique colors in the stitch plan."""
return len({block.color for block in self})
@property
def num_stops(self):
return sum(block.num_stops for block in self)
@property
def num_trims(self):
return sum(block.num_trims for block in self)
@property
def num_stitches(self):
return sum(block.num_stitches for block in self)
@property
def dimensions_mm(self):
# TODO: implement this. Should do a bounding box calculation and
# convert to millimeters.
return ""
class ColorBlock(object):
"""Holds a set of stitches, all with the same thread color."""
def __init__(self, color=None, stitches=None):
self.color = color
self.stitches = stitches or []
def __iter__(self):
return iter(self.stitches)
def has_color(self):
return self._color is not None
@property
def color(self):
return self._color
@color.setter
def color(self, value):
if isinstance(value, ThreadColor):
self._color = value
elif value is None:
self._color = None
else:
self._color = ThreadColor(value)
@property
def last_stitch(self):
if self.stitches:
return self.stitches[-1]
else:
return None
@property
def num_stitches(self):
"""Number of stitches in this color block."""
return len(self.stitches)
@property
def num_stops(self):
"""Number of pauses in this color block."""
# Stops are encoded using two STOP stitches each. See the comment in
# stop.py for an explanation.
return sum(1 for stitch in self if stitch.stop) / 2
@property
def num_trims(self):
"""Number of trims in this color block."""
return sum(1 for stitch in self if stitch.trim)
def filter_duplicate_stitches(self):
if not self.stitches:
return
stitches = [self.stitches[0]]
for stitch in self.stitches[1:]:
l = (stitch - stitches[-1]).length()
if l <= 0.1:
# duplicate stitch, skip this one
continue
stitches.append(stitch)
self.stitches = stitches
def add_stitch(self, *args, **kwargs):
if isinstance(args[0], Stitch):
self.stitches.append(args[0])
elif isinstance(args[0], Point):
self.stitches.append(Stitch(args[0].x, args[0].y))
else:
self.stitches.append(Stitch(*args, **kwargs))
def add_stitches(self, stitches):
for stitch in stitches:
if isinstance(stitch, (Stitch, Point)):
self.add_stitch(stitch)
else:
self.add_stitch(*stitch)
def replace_stitches(self, stitches):
self.stitches = stitches

Wyświetl plik

@ -0,0 +1,27 @@
def process_stop(color_block):
"""Handle the "stop after" checkbox.
The user wants the machine to pause after this patch. This can
be useful for applique and similar on multi-needle machines that
normally would not stop between colors.
On such machines, the user assigns needles to the colors in the
design before starting stitching. C01, C02, etc are normal
needles, but C00 is special. For a block of stitches assigned
to C00, the machine will continue sewing with the last color it
had and pause after it completes the C00 block.
That means we need to introduce an artificial color change
shortly before the current stitch so that the user can set that
to C00. We'll go back 3 stitches and do that:
"""
if len(color_block.stitches) >= 3:
color_block.stitches[-3].stop = True
# and also add a color change on this stitch, completing the C00
# block:
color_block.stitches[-1].stop = True
# reference for the above: https://github.com/lexelby/inkstitch/pull/29#issuecomment-359175447

Wyświetl plik

@ -0,0 +1,46 @@
from ..utils import cut_path
from ..stitches import running_stitch
from .. import Stitch
from copy import deepcopy
def add_tie(stitches, tie_path):
tie_path = cut_path(tie_path, 0.6)
tie_stitches = running_stitch(tie_path, 0.3)
tie_stitches = [Stitch(stitch.x, stitch.y) for stitch in tie_stitches]
stitches.extend(deepcopy(tie_stitches[1:]))
stitches.extend(deepcopy(list(reversed(tie_stitches))[1:]))
def add_tie_off(stitches):
add_tie(stitches, list(reversed(stitches)))
def add_tie_in(stitches, upcoming_stitches):
add_tie(stitches, upcoming_stitches)
def add_ties(stitch_plan):
"""Add tie-off before and after trims, jumps, and color changes."""
for color_block in stitch_plan:
need_tie_in = True
new_stitches = []
for i, stitch in enumerate(color_block.stitches):
is_special = stitch.trim or stitch.jump or stitch.stop
if is_special and not need_tie_in:
add_tie_off(new_stitches)
new_stitches.append(stitch)
need_tie_in = True
elif need_tie_in and not is_special:
new_stitches.append(stitch)
add_tie_in(new_stitches, upcoming_stitches=color_block.stitches[i:])
need_tie_in = False
else:
new_stitches.append(stitch)
if not need_tie_in:
add_tie_off(new_stitches)
color_block.replace_stitches(new_stitches)

Wyświetl plik

@ -0,0 +1,23 @@
def process_trim(color_block, next_stitch):
"""Handle the "trim after" checkbox.
DST (and maybe other formats?) has no actual TRIM instruction.
Instead, 3 sequential JUMPs cause the machine to trim the thread.
To support both DST and other formats, we'll add a TRIM and two
JUMPs. The TRIM will be converted to a JUMP by libembroidery
if saving to DST, resulting in the 3-jump sequence.
"""
delta = next_stitch - color_block.last_stitch
delta = delta * (1/4.0)
pos = color_block.last_stitch
for i in xrange(3):
pos += delta
color_block.add_stitch(pos.x, pos.y, jump=True)
# first one should be TRIM instead of JUMP
color_block.stitches[-3].jump = False
color_block.stitches[-3].trim = True

Wyświetl plik

@ -416,7 +416,7 @@ def connect_points(shape, start, end, running_stitch_length):
#print >> dbg, "connect_points:", outline_index, start, end, distance, stitches, direction
#dbg.flush()
stitches = [InkstitchPoint(*start)]
stitches = [InkstitchPoint(*outline.interpolate(pos).coords[0])]
for i in xrange(num_stitches):
pos = (pos + one_stitch) % outline.length

Wyświetl plik

@ -1,4 +1,5 @@
from .. import Point as InkstitchPoint, cache, PIXELS_PER_MM
from .. import PIXELS_PER_MM
from ..utils import cache, Point as InkstitchPoint
import shapely
import math
import sys

Wyświetl plik

@ -29,6 +29,10 @@ def running_stitch(points, stitch_length):
for segment_end in points[1:]:
segment = segment_end - segment_start
segment_length = segment.length()
if segment_length == 0:
continue
segment_direction = segment.unit()
# corner detection

68
inkstitch/svg.py 100644
Wyświetl plik

@ -0,0 +1,68 @@
import simpletransform, simplestyle, inkex
from . import _, get_viewbox_transform, cache, SVG_GROUP_TAG, INKSCAPE_LABEL, INKSCAPE_GROUPMODE, SVG_POLYLINE_TAG
def color_block_to_point_lists(color_block):
point_lists = [[]]
for stitch in color_block:
if stitch.trim:
if point_lists[-1]:
point_lists.append([])
continue
if not stitch.jump and not stitch.stop:
point_lists[-1].append(stitch.as_tuple())
return point_lists
@cache
def get_correction_transform(svg):
transform = get_viewbox_transform(svg)
# we need to correct for the viewbox
transform = simpletransform.invertTransform(transform)
transform = simpletransform.formatTransform(transform)
return transform
def color_block_to_polylines(color_block, svg):
polylines = []
for point_list in color_block_to_point_lists(color_block):
color = color_block.color.visible_on_white.to_hex_str()
polylines.append(inkex.etree.Element(
SVG_POLYLINE_TAG,
{'style': simplestyle.formatStyle(
{'stroke': color,
'stroke-width': "0.4",
'fill': 'none'}),
'points': " ".join(",".join(str(coord) for coord in point) for point in point_list),
'transform': get_correction_transform(svg)
}))
return polylines
def render_stitch_plan(svg, stitch_plan):
layer = svg.find(".//*[@id='__inkstitch_stitch_plan__']")
if layer is None:
layer = inkex.etree.Element(SVG_GROUP_TAG,
{'id': '__inkstitch_stitch_plan__',
INKSCAPE_LABEL: _('Stitch Plan'),
INKSCAPE_GROUPMODE: 'layer'})
else:
# delete old stitch plan
del layer[:]
# make sure the layer is visible
layer.set('style', 'display:inline')
for i, color_block in enumerate(stitch_plan):
group = inkex.etree.SubElement(layer,
SVG_GROUP_TAG,
{'id': '__color_block_%d__' % i,
INKSCAPE_LABEL: "color block %d" % (i + 1)})
group.extend(color_block_to_polylines(color_block, svg))
svg.append(layer)

Wyświetl plik

@ -0,0 +1 @@
from color import ThreadColor

Wyświetl plik

@ -0,0 +1,80 @@
import simplestyle
import re
import colorsys
class ThreadColor(object):
hex_str_re = re.compile('#([0-9a-z]{3}|[0-9a-z]{6})', re.I)
def __init__(self, color, name=None, description=None):
if color is None:
self.rgb = (0, 0, 0)
elif isinstance(color, (list, tuple)):
self.rgb = tuple(color)
elif self.hex_str_re.match(color):
self.rgb = simplestyle.parseColor(color)
else:
raise ValueError("Invalid color: " + repr(color))
self.name = name
self.description = description
def __eq__(self, other):
if isinstance(other, ThreadColor):
return self.rgb == other.rgb
else:
return self == ThreadColor(other)
def __hash__(self):
return hash(self.rgb)
def __ne__(self, other):
return not(self == other)
def __repr__(self):
return "ThreadColor" + repr(self.rgb)
def to_hex_str(self):
return "#%s" % self.hex_digits
@property
def hex_digits(self):
return "%02X%02X%02X" % self.rgb
@property
def rgb_normalized(self):
return tuple(channel / 255.0 for channel in self.rgb)
@property
def font_color(self):
"""Pick a color that will allow text to show up on a swatch in the printout."""
hls = colorsys.rgb_to_hls(*self.rgb_normalized)
# We'll use white text unless the swatch color is too light.
if hls[1] > 0.7:
return (1, 1, 1)
else:
return (254, 254, 254)
@property
def visible_on_white(self):
"""A ThreadColor similar to this one but visible on white.
If the thread color is white, we don't want to try to draw white in the
simulation view or print white in the print-out. Choose a color that's
as close as possible to the actual thread color but is still at least
somewhat visible on a white background.
"""
hls = list(colorsys.rgb_to_hls(*self.rgb_normalized))
# Capping lightness should make the color visible without changing it
# too much.
if hls[1] > 0.85:
hls[1] = 0.85
color = colorsys.hls_to_rgb(*hls)
# convert back to values in the range of 0-255
color = tuple(value * 255 for value in color)
return ThreadColor(color, name=self.name, description=self.description)

Wyświetl plik

@ -1 +1,3 @@
from geometry import *
from cache import cache
from io import *

Wyświetl plik

@ -0,0 +1,8 @@
try:
from functools import lru_cache
except ImportError:
from backports.functools_lru_cache import lru_cache
# simplify use of lru_cache decorator
def cache(*args, **kwargs):
return lru_cache(maxsize=None)(*args, **kwargs)

Wyświetl plik

@ -1,5 +1,6 @@
from .. import Point as InkstitchPoint
from shapely.geometry import LineString, Point as ShapelyPoint
import math
def cut(line, distance):
""" Cuts a LineString in two at a distance from its starting point.
@ -7,9 +8,10 @@ def cut(line, distance):
This is an example in the Shapely documentation.
"""
if distance <= 0.0 or distance >= line.length:
return [LineString(line)]
return [LineString(line), None]
coords = list(line.coords)
for i, p in enumerate(coords):
# TODO: I think this doesn't work if the path doubles back on itself
pd = line.project(ShapelyPoint(p))
if pd == distance:
return [
@ -37,5 +39,64 @@ def cut_path(points, length):
path = LineString(points)
subpath, rest = cut(path, length)
return [InkstitchPoint(*point) for point in subpath.coords]
return [Point(*point) for point in subpath.coords]
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def __add__(self, other):
return Point(self.x + other.x, self.y + other.y)
def __sub__(self, other):
return Point(self.x - other.x, self.y - other.y)
def mul(self, scalar):
return Point(self.x * scalar, self.y * scalar)
def __mul__(self, other):
if isinstance(other, Point):
# dot product
return self.x * other.x + self.y * other.y
elif isinstance(other, (int, float)):
return Point(self.x * other, self.y * other)
else:
raise ValueError("cannot multiply Point by %s" % type(other))
def __rmul__(self, other):
if isinstance(other, (int, float)):
return self.__mul__(other)
else:
raise ValueError("cannot multiply Point by %s" % type(other))
def __repr__(self):
return "Point(%s,%s)" % (self.x, self.y)
def length(self):
return math.sqrt(math.pow(self.x, 2.0) + math.pow(self.y, 2.0))
def unit(self):
return self.mul(1.0 / self.length())
def rotate_left(self):
return Point(-self.y, self.x)
def rotate(self, angle):
return Point(self.x * math.cos(angle) - self.y * math.sin(angle), self.y * math.cos(angle) + self.x * math.sin(angle))
def as_int(self):
return Point(int(round(self.x)), int(round(self.y)))
def as_tuple(self):
return (self.x, self.y)
def __cmp__(self, other):
return cmp(self.as_tuple(), other.as_tuple())
def __getitem__(self, item):
return self.as_tuple()[item]
def __len__(self):
return 2

Wyświetl plik

@ -0,0 +1,17 @@
import os
import sys
from cStringIO import StringIO
def save_stderr():
# GTK likes to spam stderr, which inkscape will show in a dialog.
null = open(os.devnull, 'w')
sys.stderr_dup = os.dup(sys.stderr.fileno())
os.dup2(null.fileno(), 2)
sys.stderr_backup = sys.stderr
sys.stderr = StringIO()
def restore_stderr():
os.dup2(sys.stderr_dup, 2)
sys.stderr_backup.write(sys.stderr.getvalue())
sys.stderr = sys.stderr_backup

Wyświetl plik

@ -1,145 +1,21 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# Translations template for PROJECT.
# Copyright (C) 2018 ORGANIZATION
# This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-02-28 20:27-0500\n"
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2018-03-30 20:26-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "Fill"
msgstr ""
msgid "Manually routed fill stitching"
msgstr ""
msgid "Angle of lines of stitches"
msgstr ""
msgid "Flip fill (start right-to-left)"
msgstr ""
msgid "Spacing between rows"
msgstr ""
msgid "Maximum fill stitch length"
msgstr ""
msgid "Stagger rows this many times before repeating"
msgstr ""
msgid "Auto-Fill"
msgstr ""
msgid "Automatically routed fill stitching"
msgstr ""
msgid "Running stitch length (traversal between sections)"
msgstr ""
msgid "Underlay"
msgstr ""
msgid "AutoFill Underlay"
msgstr ""
msgid "Fill angle (default: fill angle + 90 deg)"
msgstr ""
msgid "Row spacing (default: 3x fill row spacing)"
msgstr ""
msgid "Max stitch length"
msgstr ""
msgid "Inset"
msgstr ""
msgid "Satin stitch along paths"
msgstr ""
msgid "Running stitch length"
msgstr ""
msgid "Zig-zag spacing (peak-to-peak)"
msgstr ""
msgid "Repeats"
msgstr ""
msgid "Satin Column"
msgstr ""
msgid "Custom satin column"
msgstr ""
msgid "Pull compensation"
msgstr ""
msgid "Contour underlay"
msgstr ""
msgid "Contour Underlay"
msgstr ""
msgid "Stitch length"
msgstr ""
msgid "Contour underlay inset amount"
msgstr ""
msgid "Center-walk underlay"
msgstr ""
msgid "Center-Walk Underlay"
msgstr ""
msgid "Zig-zag underlay"
msgstr ""
msgid "Zig-zag Underlay"
msgstr ""
msgid "Zig-Zag spacing (peak-to-peak)"
msgstr ""
msgid "Inset amount (default: half of contour underlay inset)"
msgstr ""
msgid ""
"One or more rails crosses itself, and this is not allowed. Please split "
"into multiple satin columns."
msgstr ""
msgid "satin column: One or more of the rungs doesn't intersect both rails."
msgstr ""
msgid "Each rail should intersect both rungs once."
msgstr ""
msgid ""
"satin column: One or more of the rungs intersects the rails more than once."
msgstr ""
#, python-format
msgid "satin column: object %s has a fill (but should not)"
msgstr ""
#, python-format
msgid ""
"satin column: object %(id)s has two paths with an unequal number of points "
"(%(length1)d and %(length2)d)"
msgstr ""
"Generated-By: Babel 2.5.3\n"
msgid ""
"\n"
@ -147,19 +23,6 @@ msgid ""
"Seeing a 'no such option' message? Please restart Inkscape to fix."
msgstr ""
msgid "No embroiderable paths selected."
msgstr ""
msgid "No embroiderable paths found in document."
msgstr ""
msgid ""
"Tip: use Path -> Object to Path to convert non-paths before embroidering."
msgstr ""
msgid "Embroidery"
msgstr ""
msgid "These settings will be applied to 1 object."
msgstr ""
@ -168,8 +31,8 @@ msgid "These settings will be applied to %d objects."
msgstr ""
msgid ""
"Some settings had different values across objects. Select a value from the "
"dropdown or enter a new one."
"Some settings had different values across objects. Select a value from "
"the dropdown or enter a new one."
msgstr ""
#, python-format
@ -231,7 +94,20 @@ msgstr ""
#, python-format
msgid ""
"Preset \"%s\" already exists. Please use another name or press \"Overwrite\""
"Preset \"%s\" already exists. Please use another name or press "
"\"Overwrite\""
msgstr ""
msgid ""
"A print preview has been opened in your web browser. This window will "
"stay open in order to communicate with the JavaScript code running in "
"your browser.\n"
"\n"
"This window will close after you close the print preview in your browser,"
" or you can close it manually if necessary."
msgstr ""
msgid "Ink/Stitch Print"
msgstr ""
msgid "Embroidery Simulation"
@ -245,6 +121,45 @@ msgstr ""
msgid "Unknown unit: %s"
msgstr ""
msgid "No embroiderable paths selected."
msgstr ""
msgid "No embroiderable paths found in document."
msgstr ""
msgid "Tip: use Path -> Object to Path to convert non-paths before embroidering."
msgstr ""
msgid "Stitch Plan"
msgstr ""
msgid "Auto-Fill"
msgstr ""
msgid "Automatically routed fill stitching"
msgstr ""
msgid "Running stitch length (traversal between sections)"
msgstr ""
msgid "Underlay"
msgstr ""
msgid "AutoFill Underlay"
msgstr ""
msgid "Fill angle (default: fill angle + 90 deg)"
msgstr ""
msgid "Row spacing (default: 3x fill row spacing)"
msgstr ""
msgid "Max stitch length"
msgstr ""
msgid "Inset"
msgstr ""
msgid "TRIM after"
msgstr ""
@ -258,3 +173,215 @@ msgid ""
"Add STOP instruction after this object (for supported machines and file "
"formats)"
msgstr ""
msgid "Fill"
msgstr ""
msgid "Manually routed fill stitching"
msgstr ""
msgid "Angle of lines of stitches"
msgstr ""
msgid "Flip fill (start right-to-left)"
msgstr ""
msgid "Spacing between rows"
msgstr ""
msgid "Maximum fill stitch length"
msgstr ""
msgid "Stagger rows this many times before repeating"
msgstr ""
msgid "Satin Column"
msgstr ""
msgid "Custom satin column"
msgstr ""
msgid "Zig-zag spacing (peak-to-peak)"
msgstr ""
msgid "Pull compensation"
msgstr ""
msgid "Contour underlay"
msgstr ""
msgid "Contour Underlay"
msgstr ""
msgid "Stitch length"
msgstr ""
msgid "Contour underlay inset amount"
msgstr ""
msgid "Center-walk underlay"
msgstr ""
msgid "Center-Walk Underlay"
msgstr ""
msgid "Zig-zag underlay"
msgstr ""
msgid "Zig-zag Underlay"
msgstr ""
msgid "Zig-Zag spacing (peak-to-peak)"
msgstr ""
msgid "Inset amount (default: half of contour underlay inset)"
msgstr ""
msgid ""
"One or more rails crosses itself, and this is not allowed. Please split "
"into multiple satin columns."
msgstr ""
msgid "satin column: One or more of the rungs doesn't intersect both rails."
msgstr ""
msgid "Each rail should intersect both rungs once."
msgstr ""
msgid ""
"satin column: One or more of the rungs intersects the rails more than "
"once."
msgstr ""
#, python-format
msgid "satin column: object %s has a fill (but should not)"
msgstr ""
#, python-format
msgid ""
"satin column: object %(id)s has two paths with an unequal number of "
"points (%(length1)d and %(length2)d)"
msgstr ""
msgid "Satin stitch along paths"
msgstr ""
msgid "Running stitch length"
msgstr ""
msgid "Repeats"
msgstr ""
msgid ""
"Unable to autofill. This most often happens because your shape is made "
"up of multiple sections that aren't connected."
msgstr ""
msgid ""
"Unexpected error while generating fill stitches. Please send your SVG "
"file to lexelby@github."
msgstr ""
msgid "Color"
msgstr ""
msgid "rgb"
msgstr ""
msgid "thread used"
msgstr ""
msgid "# stitches"
msgstr ""
msgid "# stops"
msgstr ""
msgid "# trims"
msgstr ""
msgid "Page"
msgstr ""
msgid "Enter job title..."
msgstr ""
msgid "CLIENT"
msgstr ""
msgid "Enter client name..."
msgstr ""
msgid "PURCHASE ORDER #:"
msgstr ""
msgid "Enter purchase order number..."
msgstr ""
#, python-format
msgid "%Y.%m.%d"
msgstr ""
msgid "Thread Consumption"
msgstr ""
msgid "Stops and Trims"
msgstr ""
msgid "Estimated Time"
msgstr ""
msgid "Unique Colors"
msgstr ""
msgid "Color Blocks"
msgstr ""
msgid "Design box size"
msgstr ""
msgid "Total thread used"
msgstr ""
msgid "Total stitch count"
msgstr ""
msgid "Total nr stops"
msgstr ""
msgid "Total nr trims"
msgstr ""
msgid "Job estimated time"
msgstr ""
msgid "Scale"
msgstr ""
msgid "COLOR"
msgstr ""
msgid "Estimated time"
msgstr ""
msgid "Client Signature"
msgstr ""
msgid "Ink/Stitch Print Preview"
msgstr ""
msgid "Print"
msgstr ""
msgid "Settings"
msgstr ""
msgid "Close"
msgstr ""
msgid "⚠ lost connection to Ink/Stitch"
msgstr ""
msgid "Printing Size"
msgstr ""

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Creator: CorelDRAW X7 -->
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="99.9999mm" height="96.4295mm" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 15109 14570"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style type="text/css">
<![CDATA[
.fil0 {fill:none}
.fil3 {fill:black}
.fil1 {fill:#003399}
.fil4 {fill:gray}
.fil2 {fill:white}
]]>
</style>
</defs>
<g id="Layer_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer"/>
<rect class="fil0" width="15109" height="14570"/>
<path class="fil1" d="M9857 7480l0 -51c0,-15 12,-27 27,-27l295 0c15,0 27,12 27,27l0 51c0,15 -12,28 -27,28l-295 0c-15,0 -27,-13 -27,-28zm2819 -1566c10,66 67,116 135,116l0 0c75,0 137,-61 137,-137l0 -144c0,-37 18,-68 49,-88 32,-19 69,-20 101,-2 83,43 138,125 138,232l0 2788c0,147 -121,268 -268,268l-292 0 0 443c0,1659 -1357,3016 -3016,3016l-4210 0c-1659,0 -3017,-1357 -3017,-3016l0 -402 -286 0c-151,0 -274,-123 -274,-273l0 -2778c0,-150 123,-273 274,-273l286 0 0 -484c0,-1659 1358,-3016 3017,-3016l4210 0c1659,0 3016,1357 3016,3016l0 734zm-10456 1686l107 0c43,0 81,21 106,52l0 170c-25,32 -63,52 -106,52l-107 0c-75,0 -136,-62 -136,-137l0 0c0,-75 61,-137 136,-137zm54 710c75,0 136,61 136,136 0,76 -61,137 -136,137 -76,0 -137,-61 -137,-137 0,-75 61,-136 137,-136zm10515 -710l107 0c75,0 137,62 137,137l0 0c0,75 -62,137 -137,137l-107 0c-47,0 -88,-24 -113,-61l0 -152c25,-36 66,-61 113,-61zm54 711c75,0 135,60 135,135 0,75 -60,136 -135,136 -75,0 -136,-61 -136,-136 0,-75 61,-135 136,-135zm-1957 -838c-676,154 -776,166 -1566,74l-1848 18c-374,4 -659,116 -1029,116l-2070 0 -138 -75 0 -302 138 -75 2070 0c370,0 655,111 1029,115l1848 19c790,-92 890,-80 1566,73 9,2 15,10 15,19 0,9 -6,16 -15,18zm-6324 -832l0 -2163 516 0 0 2163 -516 0zm1562 0l0 -2234 50 0 1347 1263 0 -1192 477 0 0 2246 -45 0 -1352 -1263 0 1180 -477 0zm2865 0l0 -2163 510 0 0 941 715 -941 614 0 -816 1029 881 1134 -624 0 -770 -996 0 996 -510 0zm-4809 2781c86,52 160,89 220,111 60,21 119,31 177,31 57,0 104,-13 139,-38 35,-26 53,-58 53,-98 0,-57 -63,-122 -188,-193 -20,-12 -36,-21 -46,-27l-95 -54c-92,-52 -161,-111 -205,-177 -45,-66 -67,-140 -67,-223 0,-113 43,-206 128,-278 85,-72 195,-108 330,-108 50,0 103,5 161,17 58,12 123,30 194,54l0 329c-68,-43 -132,-75 -193,-98 -61,-23 -112,-35 -155,-35 -47,0 -84,10 -111,30 -27,21 -41,48 -41,83 0,24 8,47 25,68 16,22 40,41 72,58l165 91c137,76 230,147 277,211 48,65 72,141 72,230 0,136 -47,247 -140,331 -93,84 -217,126 -371,126 -52,0 -109,-5 -171,-16 -61,-11 -128,-28 -202,-51l-28 -374zm1440 396l0 -1110 -445 0 0 -293 1224 0 0 293 -444 0 0 1110 -335 0zm986 0l0 -1403 335 0 0 1403 -335 0zm989 0l0 -1110 -446 0 0 -293 1225 0 0 293 -444 0 0 1110 -335 0zm1983 -959c-60,-63 -122,-109 -184,-139 -62,-30 -128,-45 -196,-45 -119,0 -216,41 -291,122 -76,82 -113,188 -113,316 0,128 37,232 112,312 75,79 172,119 292,119 71,0 142,-14 213,-44 70,-30 141,-74 211,-134l-22 373c-60,40 -125,71 -196,92 -72,22 -146,32 -223,32 -82,0 -161,-12 -237,-38 -76,-26 -146,-64 -209,-115 -91,-71 -160,-157 -208,-259 -48,-102 -72,-214 -72,-335 0,-104 18,-201 53,-292 36,-91 87,-171 155,-241 68,-70 147,-123 237,-160 90,-37 184,-55 283,-55 79,0 154,10 226,33 72,21 140,55 205,99l-36 359zm261 959l0 -1403 331 0 0 515 541 0 0 -515 329 0 0 1403 -329 0 0 -589 -541 0 0 589 -331 0zm-4389 -7142c-1376,0 -2504,1128 -2504,2504l0 4210c0,1376 1128,2504 2504,2504l4210 0c1376,0 2504,-1128 2504,-2504l0 -4210c0,-1376 -1128,-2504 -2504,-2504l-4210 0z"/>
<path class="fil2" d="M5450 2676c-1376,0 -2504,1128 -2504,2504l0 4210c0,1376 1128,2504 2504,2504l4210 0c1376,0 2504,-1128 2504,-2504l0 -4210c0,-1376 -1128,-2504 -2504,-2504l-4210 0z"/>
<path class="fil3" d="M9839 9818l0 -1403 331 0 0 515 541 0 0 -515 329 0 0 1403 -329 0 0 -589 -541 0 0 589 -331 0zm-261 -959c-60,-63 -122,-109 -184,-139 -62,-30 -128,-45 -196,-45 -119,0 -216,41 -291,122 -76,82 -113,188 -113,316 0,128 37,232 112,312 75,79 172,119 292,119 71,0 142,-14 213,-44 70,-30 141,-74 211,-134l-22 373c-60,40 -125,71 -196,92 -72,22 -146,32 -223,32 -82,0 -161,-12 -237,-38 -76,-26 -146,-64 -209,-115 -91,-71 -160,-157 -208,-259 -48,-102 -72,-214 -72,-335 0,-104 18,-201 53,-292 36,-91 87,-171 155,-241 68,-70 147,-123 237,-160 90,-37 184,-55 283,-55 79,0 154,10 226,33 72,21 140,55 205,99l-36 359zm-1983 959l0 -1110 -446 0 0 -293 1225 0 0 293 -444 0 0 1110 -335 0zm-989 0l0 -1403 335 0 0 1403 -335 0zm-986 0l0 -1110 -445 0 0 -293 1224 0 0 293 -444 0 0 1110 -335 0zm-1440 -396c86,52 160,89 220,111 60,21 119,31 177,31 57,0 104,-13 139,-38 35,-26 53,-58 53,-98 0,-57 -63,-122 -188,-193 -20,-12 -36,-21 -46,-27l-95 -54c-92,-52 -161,-111 -205,-177 -45,-66 -67,-140 -67,-223 0,-113 43,-206 128,-278 85,-72 195,-108 330,-108 50,0 103,5 161,17 58,12 123,30 194,54l0 329c-68,-43 -132,-75 -193,-98 -61,-23 -112,-35 -155,-35 -47,0 -84,10 -111,30 -27,21 -41,48 -41,83 0,24 8,47 25,68 16,22 40,41 72,58l165 91c137,76 230,147 277,211 48,65 72,141 72,230 0,136 -47,247 -140,331 -93,84 -217,126 -371,126 -52,0 -109,-5 -171,-16 -61,-11 -128,-28 -202,-51l-28 -374z"/>
<path class="fil3" d="M8989 6641l0 -2163 510 0 0 941 715 -941 614 0 -816 1029 881 1134 -624 0 -770 -996 0 996 -510 0zm-2865 0l0 -2234 50 0 1347 1263 0 -1192 477 0 0 2246 -45 0 -1352 -1263 0 1180 -477 0zm-1562 0l0 -2163 516 0 0 2163 -516 0z"/>
<path class="fil4" d="M10886 7473c-676,154 -776,166 -1566,74l-1848 18c-374,4 -659,116 -1029,116l-2070 0 -138 -75 0 -302 138 -75 2070 0c370,0 655,111 1029,115l1848 19c790,-92 890,-80 1566,73 9,2 15,10 15,19 0,9 -6,16 -15,18zm-1029 7l0 -51c0,-15 12,-27 27,-27l295 0c15,0 27,12 27,27l0 51c0,15 -12,28 -27,28l-295 0c-15,0 -27,-13 -27,-28z"/>
</g>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 5.8 KiB

Wyświetl plik

@ -0,0 +1,111 @@
function ping() {
$.get("/ping")
.done(function() { setTimeout(ping, 1000) })
.fail(function() { $('#errors').attr('class', 'show') });
}
// set pagenumbers
function setPageNumbers() {
var totalPageNum = $('body').find('.page:visible').length;
$('span.total-page-num').text(totalPageNum);
$( '.page:visible span.page-num' ).each(function( index ) {
$(this).text(index + 1);
});
}
// set preview svg scale to fit into its box
function scaleInksimulation() {
$('.inksimulation').each(function() {
var scale = Math.min(
$(this).width() / $(this).find('svg').width(),
$(this).height() / $(this).find('svg').height()
);
// center the SVG
transform = "translate(-50%, -50%)";
if(scale <= 1) {
transform += " scale(" + scale + ")";
label = parseInt(scale*100) + '%';
} else {
label = "100%";
}
$(this).find('svg').css({ transform: transform });
$(this).find('figcaption span').text(label);
});
}
$(function() {
setTimeout(ping, 1000);
setPageNumbers();
scaleInksimulation();
/* Contendeditable Fields */
// When we focus out from a contenteditable field, we want to
// set the same content to all fields with the same classname
document.querySelectorAll('[contenteditable="true"]').forEach(function(elem) {
elem.addEventListener('focusout', function() {
var content = $(this).html();
var field_name = $(this).attr('data-field-name');
$('[data-field-name="' + field_name + '"]').html(content);
});
});
$('[contenteditable="true"]').keypress(function(e) {
if (e.which == 13) {
// pressing enter defocuses the element
this.blur();
// also suppress the enter keystroke to avoid adding a new line
return false;
} else {
return true;
}
});
/* Settings Bar */
$('button.close').click(function() {
$.post('/shutdown', {})
.done(function(data) {
window.close();
});
});
$('button.print').click(function() {
// printing halts all javascript activity, so we need to tell the backend
// not to shut down until we're done.
$.get("/printing/start")
.done(function() {
window.print();
$.get("/printing/end");
});
});
$('button.settings').click(function(){
$('#settings-ui').show();
});
$('#close-settings').click(function(){
$('#settings-ui').hide();
});
/* Settings */
// Paper Size
$('select#printing-size').change(function(){
$('.page').toggleClass('a4');
});
//Checkbox
$(':checkbox').change(function() {
$('.' + this.id).toggle();
setPageNumbers();
scaleInksimulation();
});
});

File diff suppressed because one or more lines are too long

Wyświetl plik

@ -0,0 +1,726 @@
@font-face {
font-family: 'Barlow Condensed';
font-style: normal;
font-weight: 400;
src: url(barlow_condensed.ttf) format('truetype');
}
@font-face {
font-family: 'Barlow';
font-style: normal;
font-weight: 400;
src: url(barlow.ttf) format('truetype');
}
@font-face {
font-family: 'Barlow';
font-style: normal;
font-weight: 700;
src: url(barlow-bold.ttf) format('truetype');
}
@font-face {
font-family: 'Barlow';
font-style: normal;
font-weight: 800;
src: url(barlow-extra-bold.ttf) format('truetype');
}
@font-face {
font-family: 'Barlow Condensed';
font-style: normal;
font-weight: 700;
src: url(barlow-condensed-bold.ttf) format('truetype');
}
@font-face {
font-family: 'Barlow Condensed';
font-style: normal;
font-weight: 800;
src: url(barlow-condensed-extra-bold.ttf) format('truetype');
}
@media screen {
.page {
margin-top: 20mm !important;
outline: 1px dotted grey;
}
.header-field::before {
content: attr(data-label);
padding-right: 0.5em;
}
[contenteditable=true]:empty::after{
content: attr(data-placeholder);
color: rgb(200, 200, 200);
font-weight: normal;
}
}
@media print {
body {
margin-bottom: 0 !important;
}
.page {
page-break-after: always;
margin: 0 !important;
}
.ui {
display: none;
}
#settings-ui {
display: none !important;
}
#errors {
display: none !important;
}
.header-field:not(:empty)::before {
content: attr(data-label);
padding-right: 0.5em;
}
}
@page {
size: auto; /* auto is the initial value */
margin: 0;
}
body {
font-family: "Barlow", sans-serif;
font-size: 8pt;
text-align: center;
color: rgb(80,80,80);
margin: 0;
margin-bottom: 5mm;
}
* {
box-sizing: border-box;
}
.page {
width: 210mm;
height: 275mm;
padding: 5mm;
background: #fff;
margin: 0 auto;
vertical-align: text-bottom;
overflow: hidden;
position: relative;
}
/* Printing Size */
.page.a4 {
width: 205mm;
height: 292mm;
padding: 15mm;
}
/* Settings */
.ui {
z-index: 1;
position: fixed;
top: 0;
width: 100%;
padding: 1em;
text-align: center;
background: rgb(255, 255, 255);
background: rgba(255,255,255, 0.7);
border-bottom: 1px solid rgb(188, 188, 188);
border-bottom: 1px solid rgba(129, 129, 129, 0.5);
box-shadow: 0 1px 1px 1px rgba(194, 191, 191, 0.5);
}
.ui .header {
font-weight: bold;
font-size: 16pt;
float: left;
margin: 0.5em 0 0 1em;
}
.ui .buttons {
float: right;
margin-right: 50%;
}
.ui button {
margin: 0.5em;
background: white;
padding: 0.5em;
cursor: pointer;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
.ui button.close {
border: 1px solid rgb(197,5,5);
}
.ui button.close:hover {
background: rgb(197,5,5);
color: white;
}
.ui button.settings {
border: 1px solid rgb(243,204,35);
}
.ui button.settings:hover {
background: rgb(243,204,35);
color: white;
}
.ui button.print {
border: 1px solid rgb(50,132,50);
}
.ui button:hover {
background: rgb(50,132,50);
color: white;
}
#settings-ui {
display: none;
overflow: auto;
position: fixed;
right: 0;
left: 0;
z-index: 2;
width: 80%;
height: 80%;
margin: 0 auto;
padding: 2mm 5mm;
background: rgb(255, 255, 255);
background: rgba(255,255,255, 0.9);
border-bottom: 1px solid rgb(188, 188, 188);
border-bottom: 1px solid rgba(129, 129, 129, 0.5);
box-shadow: 0 1px 1px 1px rgba(194, 191, 191, 0.5);
}
#settings-ui div {
text-align: left;
font-size: 12pt;
}
#close-settings {
position: absolute;
padding: 0.5em 1em;
right: 1em;
top: 1em;
margin: 0;
background: #c50505;
color: #fff;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
}
/* Header */
header {
width: 100%;
height: 40mm;
margin: 0;
text-align: right;
display: flex;
display: -webkit-flex; /* old webkit */
display: -ms-flexbox; /* IE 10 */
flex-wrap: wrap;
flex-direction: column;
}
figure.brandlogo {
height: 30mm;
width: 30mm;
margin: 2.5mm;
}
figure.brandlogo img {
max-width: 30mm;
max-height: 30mm;
}
.operator-detailedview figure.brandlogo {
height: 20mm;
width: 30mm;
margin: 0 2.5mm;
text-align: left;
}
.operator-detailedview figure.brandlogo img {
max-width: 30mm;
max-height: 20mm;
}
div.headline {
display: flex;
display: -webkit-flex; /* old webkit */
display: -ms-flexbox; /* IE 10 */
width: calc(100% - 50mm);
height: 50%;
}
div.headline h1 {
font-size: 18pt;
}
div.headline p {
font-size: 12pt;
}
div.job-details {
display: flex;
display: -webkit-flex; /* old webkit */
display: -ms-flexbox; /* IE 10 */
width: calc(100% - 50mm);
height: 50%;
font-family: "Barlow Condensed", sans-serif;
font-size: 10pt;
}
div.job-details > div {
flex-grow: 1;
}
div.job-details .table {
display: table;
width: 100%;
}
div.job-details > div:last-child {
font-size: 12pt;
}
div.job-details p {
margin: 0;
display: table-row;
}
div.job-details p span {
display: table-cell;
}
div.job-details p span:first-child {
font-weight: bold;
padding-right: 1mm;
}
div.job-details p span:last-child {
text-align: left;
}
div.job-details > div:last-child span {
text-align: right !important;
}
div.client-detailedview .job-details {
font-size: 12pt;
}
div.client-detailedview .job-details > div:first-child {
text-align: left;
}
.pageTitle {
text-align: left;
flex-grow: 1;
}
.pageTitle h1,
.pageTitle p {
margin: 0;
}
.currentDate {
font-size: 12pt;
font-weight: bold;
}
/* client dedailed view header */
.client-detailedview div.job-details p span:first-child {
width: 20mm;
}
.client-detailedview div.job-details p span:last-child {
max-width: 60mm;
}
/* SVG Preview Image */
figure.inksimulation {
width: 100%;
height: 175mm;
background: #fff;
margin: 0 auto;
text-align: center;
border: 1mm solid grey;
position: relative;
overflow: hidden;
}
.client-overview-main figure.inksimulation {
height: 155mm;
}
figure.inksimulation svg {
position: absolute;
top: 50%;
left: 50%;
}
figure.inksimulation figcaption {
position: absolute;
bottom: 0;
right: 0;
font-size: 12pt;
font-weight: bold;
line-height: 12pt;
margin: 2.5mm;
}
/* Color Swatches */
.color-palette {
width: 100%;
height: 40mm;
background: #fff;
padding-top: 1.5mm;
padding-bottom: 1.5mm;
margin: 0;
overflow: hidden;
display: flex;
display: -webkit-flex; /* old webkit */
display: -ms-flexbox; /* IE 10 */
align-items: stretch;
flex-wrap: wrap;
}
.color-swatch {
font-family: "Barlow", sans-serif;
/* white text on dark colors doesn't print well unless it's bold */
font-weight: 700;
font-size: 12pt;
color: black;
background: white;
border: 0.5mm solid white;
margin: 0px;
padding: 0px;
position: relative;
overflow: hidden;
flex-grow: 1;
}
.swatch-info {
text-align: left;
min-width: 20mm;
position: relative;
height: 100%;
}
.swatch-info .title {
font-weight: 800;
}
.color-swatch-svg rect {
border: 1px solid rgb(192, 192, 192);
}
.signature {
height: 20mm;
border: 0.5mm solid rgb(80, 80, 80);
flex-grow: 1;
line-height: 30mm;
text-align: center;
}
/* detailedview color swatch */
.color-palette.detailed > div {
height: 100%;
position: relative;
}
.color-palette.detailed .color-info {
position: absolute;
top: 2mm;
left: 45mm;
}
.color-palette.detailed .color-info > div {
display: table;
}
.color-palette.detailed .color-info p {
display: table-row;
}
.color-palette.detailed .color-info span {
display: table-cell;
padding-right: 5mm;
}
/* Operator Detailed View */
.operator-detailedview header {
height: 25mm;
}
.operator-detailedveiw figure.brandlogo{
height: 15mm;
width: 15mm;
}
.operator-detailedveiw figure.brandlogo img {
max-width: 12.5mm;
max-height: 12.5mm;
}
.operator-detailedview main {
height: 230mm;
}
.operator-job-info {
display: table;
width: 100%;
}
.operator-job-info div {
display: table-row;
}
div.job-headline {
display: table-header-group;
font-size: 9pt;
font-weight: bold;
}
div.job-headline p {
height: 1em;
}
.operator-job-info p {
height: 15mm;
max-width: 15mm;
display: table-cell;
vertical-align: middle;
position: relative;
overflow: hidden;
border: 1px solid rgb(239,239,239);
}
.operator-job-info span {
display: block;
}
.operator-job-info span.color-index {
position: absolute;
top: 0;
left: 0;
line-height: 15mm;
width: 10mm;
}
.operator-svg.operator-colorswatch {
width: 15mm;
}
.operator-svg.operator-preview {
min-width: 15mm;
max-width: 20mm;
height: 15mm;
}
.operator-svg svg {
position: absolute;
top: 0;
left: 0;
width: auto;
max-width: 30mm;
height: 100%;
}
/* Footer */
footer {
width: 100%;
height: 7mm;
background: #fff;
margin-left: auto;
margin-right: auto;
white-space: wrap;
text-align: center;
padding-top: 2mm;
}
footer p.num_pages {
float: right;
font-size: 12pt;
font-weight: bold;
margin-top: 0;
}
/* Messages */
#errors.show {
display: block;
position: absolute;
right: 1em;
top: 1em;
color: red;
font-family: "Barlow", sans-serif;
font-size: 12pt;
}
#errors {
display: none;
}
/* Color Swatch Logic */
/* reference : http://jsfiddle.net/jrulle/btg63ezy/3/ */
/* one item */
.color-swatch:first-child:nth-last-child(n+1),
.color-swatch:first-child:nth-last-child(n+1) ~ .color-swatch {
font-size: 12pt;
height: 100%;
}
/* two items */
.color-swatch:first-child:nth-last-child(n+2),
.color-swatch:first-child:nth-last-child(n+2) ~ .color-swatch {
width: calc(100% / 2);
}
/* three items */
.color-swatch:first-child:nth-last-child(n+3),
.color-swatch:first-child:nth-last-child(n+3) ~ .color-swatch {
font-size: 12pt;
width: calc(100% / 3);
}
/* four items */
.color-swatch:first-child:nth-last-child(n+4),
.color-swatch:first-child:nth-last-child(n+4) ~ .color-swatch {
font-size: 10pt;
width: calc(100% / 4);
}
/* five items */
.color-swatch:first-child:nth-last-child(n+5),
.color-swatch:first-child:nth-last-child(n+5) ~ .color-swatch {
font-size: 9pt;
width: calc(100% / 5);
}
/* six items */
.color-swatch:first-child:nth-last-child(n+6),
.color-swatch:first-child:nth-last-child(n+6) ~ .color-swatch {
font-size: 8pt;
width: calc(100% / 6);
}
/* seven items */
.color-swatch:first-child:nth-last-child(n+7),
.color-swatch:first-child:nth-last-child(n+7) ~ .color-swatch {
width: calc(100% / 4);
height: calc(100% / 2);
}
/* nine items */
.color-swatch:first-child:nth-last-child(n+9),
.color-swatch:first-child:nth-last-child(n+9) ~ .color-swatch {
width: calc(100% / 5);
}
/* eleven items */
.color-swatch:first-child:nth-last-child(n+11),
.color-swatch:first-child:nth-last-child(n+11) ~ .color-swatch {
width: calc(100% / 6);
}
/* thirteen items */
.color-swatch:first-child:nth-last-child(n+13),
.color-swatch:first-child:nth-last-child(n+13) ~ .color-swatch {
width: calc(100% / 5);
height: calc(100% / 3);
}
/* fourteen items */
.color-swatch:first-child:nth-last-child(n+14),
.color-swatch:first-child:nth-last-child(n+14) ~ .color-swatch {
width: calc(100% / 5);
}
/* sixteen items */
.color-swatch:first-child:nth-last-child(n+16),
.color-swatch:first-child:nth-last-child(n+16) ~ .color-swatch {
width: calc(100% / 6);
}
/* nineteen items */
.color-swatch:first-child:nth-last-child(n+19),
.color-swatch:first-child:nth-last-child(n+19) ~ .color-swatch {
height: calc(100% / 4);
width: calc(100% / 5);
}
.color-swatch:first-child:nth-last-child(n+19) .swatch-info,
.color-swatch:first-child:nth-last-child(n+19) ~ .color-swatch .swatch-info {
margin-left: -1mm;
margin-top: -1mm;
height: calc(100% + 1mm);
}
/* twenty-one items */
.color-swatch:first-child:nth-last-child(n+21),
.color-swatch:first-child:nth-last-child(n+21) ~ .color-swatch {
width: calc(100% / 6);
}
/* twenty-five items */
.color-swatch:first-child:nth-last-child(n+25),
.color-swatch:first-child:nth-last-child(n+25) ~ .color-swatch {
width: calc(100% / 7);
font-size: 6pt;
}
/* twenty-nine items */
.color-swatch:first-child:nth-last-child(n+29),
.color-swatch:first-child:nth-last-child(n+29) ~ .color-swatch {
width: calc(100% / 9);
}
/* thirty-seven items */
.color-swatch:first-child:nth-last-child(n+37),
.color-swatch:first-child:nth-last-child(n+37) ~ .color-swatch {
width: calc(100% / 10);
}
/* fourty items */
.color-swatch:first-child:nth-last-child(n+40),
.color-swatch:first-child:nth-last-child(n+40) ~ .color-swatch {
width: calc(100% / 12);
}
/* fourty-nine items */
.color-swatch:first-child:nth-last-child(n+49),
.color-swatch:first-child:nth-last-child(n+40) ~ .color-swatch {
height: calc(100% / 5);
width: calc(100% / 12);
}

Wyświetl plik

@ -0,0 +1,51 @@
{% if printview != 'detailedview' %}
<div class="color-swatch">
<div class="swatch-info">
<svg width="100%" height="100%" class="color-swatch-svg" xmlns="http://www.w3.org/2000/svg">
<rect fill="rgb{{ color_block.color.rgb }}" stroke="rgb(192, 192, 192)" stroke-width="1px" width="100%" height="100%" />
<text fill="rgb{{ color_block.color.font_color }}">
<tspan dy="1.2em" x="2mm" y="2mm" class="color-name">{{ _('Color') }}: </tspan><tspan data-field-name="color-{{ color_block.color.hex_digits }}">{{ color_block.color.thread_name }}</tspan>
{# We don't want to see rgb if we have more than 7 colorSwatches #}
{% if color_blocks|length < 7 %}
<tspan dy="1.2em" x="2mm" class="color-rgb">{{ _('rgb') }}: {{ color_block.color.rgb }}</tspan>
{% endif %}
{# We don't want to see thread_used if we have more than 7 colorSwatches to show #}
{% if color_blocks|length < 7 %}
<tspan dy="1.2em" x="2mm" class="swatch-thread">{{ _('thread used') }}: {{ color_block.color.thread_description }}</tspan>
{% endif %}
{# We don't want to see num_stitch if we have more than 49 colorSwatches to show #}
{% if color_blocks|length < 49 %}
<tspan dy="1.2em" x="2mm" class="swatch-stitches">{{ _('# stitches') }}: {{ color_block.num_stitches }}</tspan>
{% endif %}
{# We don't want to see stops and trims if we have more than 13 colorSwatches to show #}
{% if color_blocks|length < 13 %}
<tspan dy="1.2em" x="2mm" class="swatch-stops">{{ _('# stops') }}: {{ color_block.num_stops }}</tspan>
<tspan dy="1.2em" x="2mm" class="swatch-trims">{{ _('# trims') }}: {{ color_block.num_trims }}</tspan>
{% endif %}
</text>
</svg>
</div>
</div>
{% else %}
<div class="color-swatch">
<div class="swatch-info">
<svg width="100%" height="100%" class="colorSwatchSVG" xmlns="http://www.w3.org/2000/svg">
<rect fill="rgb{{ color_block.color.rgb }}" stroke="rgb(192, 192, 192)" width="40mm" height="100%" />
</svg>
<div class="color-info">
<div>
<p><span class="color-name">{{ _('Color') }}:</span><span data-field-name="color-{{ color_block.color.hex_digits }}" contenteditable="true" data-placeholder="Enter thread name...">{{ color_block.color.thread_name }}</span></p>
<p><span class="color-rgb">{{ _('rgb') }}:</span><span>{{ color_block.color.rgb }}</span></p>
<p><span class="swatch-thread">{{ _('thread used') }}:</span><span>{{ color_block.color.thread_description }}</span></p>
<p><span class="swatch-stitches">{{ _('# stitches') }}:</span><span>{{ color_block.num_stitches }}</span></p>
<p><span class="swatch-stops">{{ _('# stops') }}:</span><span>{{ color_block.num_stops }}</span></p>
<p><span class="swatch-trims">{{ _('# trims') }}:</span><span>{{ color_block.num_trims }}</span></p>
</div>
</div>
</div>
</div>
{%endif %}

Wyświetl plik

@ -0,0 +1,7 @@
<footer>
<p class="num_pages">{{ _('Page') }} <span class="page-num"></span>/<span class="total-page-num"></span></p>
<p>Proudly generated with <a href="http://inkstitch.org/" target="_blank">Ink/Stitch</a></p>
</footer>

Wyświetl plik

@ -0,0 +1,12 @@
<figure class="brandlogo">
<img src="{{ logo.src or "resources/inkstitch-logo.svg" }}" alt="{{ logo.title }}" title="{{ logo.title }}">
</figure>
<div class="headline">
<div class="pageTitle">
<h1><span class="jobtitle" contenteditable="true" data-placeholder="{{ _('Enter job title...') }}" data-field-name="job-title">{{ job.title }}</span></h1>
<p class="header-field" data-label="{{ _('CLIENT') }}:" contenteditable="true" data-placeholder="{{ _('Enter client name...') }}" data-field-name="client-name">{{ client }}</p>
<p class="header-field" data-label="{{ _('PURCHASE ORDER #:') }}" contenteditable="true" data-placeholder="{{ _('Enter purchase order number...') }}" data-field-name="purchase-order">{{ purchase_order }}</p>
</div>
<div class="currentDate">{{ date|datetimeformat(_('%Y.%m.%d')) }}</div>
</div>

Wyświetl plik

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<title>Ink/Stitch Print Preview</title>
<script src="resources/jquery-3.3.1.min.js"></script>
<script src="resources/inkstitch.js"></script>
<link rel="stylesheet" href="resources/style.css" />
</head>
<body>
{% include 'ui.html' %}
{# client overview #}
<div class="page client-overview" style="display: {{ 'block' if view.client_overview else 'none' }}">{% include 'print_overview.html' %}</div>
{# client detailedview #}
{% set printview = 'detailedview' %}
{% for color_block in color_blocks %}
{% set outer_loop = loop %}
<div class="page client-detailedview" style="display: {{ 'block' if view.client_detailedview else 'none' }}">{% include 'print_detail.html' %}</div>
{% endfor %}
{# operator overview #}
<div class="page operator-overview" style="display: {{ 'block' if view.operator_overview else 'none' }}">{% include 'operator_overview.html' %}</div>
{# operator detailed view #}
{% for color_block_part in color_blocks | batch(13) %}
{% set outer_loop = loop %}
<div class="page operator-detailedview" style="display: {{ 'block' if view.operator_detailedview else 'none' }}">{% include 'operator_detailedview.html' %}</div>
{% endfor %}
</body>
</html>

Wyświetl plik

@ -0,0 +1,77 @@
<header>
{% include 'headline.html' %}
</header>
<main>
<div class="operator-job-info">
<div class="job-headline">
<p class="operator-svg operator-colorswatch">{# svg color #}</p>
<p>{# svg preview #}</p>
<p>{{ _('Color') }}</p>
<p>{{ _('Thread Consumption') }}</p>
<p>{{ _('Stops and Trims') }}</p>
<p>{{ _('Estimated Time') }}</p>
</div>
{% if outer_loop.index == 1 %}
<div>
<p>
<span>##</span>
</p>
<p class="operator-svg operator-preview">
{{ svg_overview|safe }}
</p>
<p>
<span>{{ _('Unique Colors') }}: {{ job.num_colors }}</span>
<span>{{ _('Color Blocks') }}: {{ job.num_color_blocks }}</span>
</p>
<p>
<span>{{ _('Design box size') }}: {{ job.dimensions }}</span>
<span>{{ _('Total thread used') }}: {{job.estimated_thread }}</span>
<span>{{ _('Total stitch count') }}: {{job.num_stitches }}</span>
</p>
<p>
<span>{{ _('Total nr stops') }}: {{ job.num_stops }}</span>
<span>{{ _('Total nr trims') }}: {{ job.num_trims }}</span>
</p>
<p>
<span>{{ job.estimated_time }}</span>
</p>
</div>
{% endif %}
{% for color_block in color_block_part %}
<div style="display: table-row;">
<p class="operator-svg operator-colorswatch">
<svg xmlns="http://www.w3.org/2000/svg">
<rect fill="rgb{{ color_block.color.rgb }}" width="15mm" height="100%" />
<text fill="rgb{{ color_block.color.font_color }}">
<tspan x="4mm" y="7.5mm" class="color-index">#{{ loop.index + outer_loop.index0 * 13 }}</tspan>
</text>
</svg>
</p>
<p class="operator-svg operator-preview">
{{ color_block.svg_preview|safe }}
</p>
<p>
<span data-field-name="color-{{ color_block.color.hex_digits }}" contenteditable="true" data-placeholder="Enter thread name...">{{ color_block.color.thread_name }}</span>
<span>{{ color_block.color.rgb }}</span>
</p>
<p>
<span>{{ _('thread used') }}: {{ color_block.color.thread_description }}</span>
<span>{{ _('# stitches') }}: {{ color_block.num_stitches }}</span>
</p>
<p>
<span>{{ _('# stops') }}: {{ color_block.num_stops }}</span>
<span>{{ _('# trims') }}: {{ color_block.num_trims }}</span>
</p>
<p>
<span>{{ color_block.estimatedtime }}</span>
</p>
</div>
{% endfor %}
</div>
</main>
{% include 'footer.html' %}

Wyświetl plik

@ -0,0 +1,33 @@
<header>
{% include 'headline.html' %}
<div class="job-details">
<div>
<div class="table">
<p><span>{{ _('Unique Colors') }}:</span><span>{{ job.num_colors }}</span></p>
<p><span>{{ _('Color Blocks') }}:</span><span>{{ job.num_color_blocks }}</span></p>
<p><span>{{ _('Total nr stops') }}:</span><span>{{ job.num_stops }}</span></p>
<p><span>{{ _('Total nr trims') }}:</span><span>{{ job.num_trims }}</span></p>
</div>
</div>
<div>
<div class="table">
<p><span>{{ _('Design box size') }}:</span><span>{{ job.dimensions }}</span></p>
<p><span>{{ _('Total stitch count') }}:</span><span>{{job.num_stitches }}</span></p>
<p><span>{{ _('Total thread used') }}:</span><span>{{job.estimated_thread }}</span></p>
</div>
</div>
<div>
<div class="table">
<p><span>{{ _('Job estimated time') }}:</span></p>
<p><span>{{ job.estimated_time }}</span></p>
</div>
</div>
</div>
</header>
<main>
<figure class="inksimulation operator" style="height: 210mm;">
{{ svg_overview|safe }}
<figcaption>{{ _('Scale') }} <span>{{ svg_scale }}</span></figcaption>
</figure>
</main>
{% include 'footer.html' %}

Wyświetl plik

@ -0,0 +1,28 @@
<header>
{% include 'headline.html' %}
<div class="job-details">
<div>
<div class="table">
<p><span>{{ _('COLOR') }}:</span><span data-field-name="color-{{ color_block.color.hex_digits }}" contenteditable="true" data-placeholder="Enter thread name...">{{ color_block.color.thread_name }}</span></p>
</div>
</div>
<div>
<div class="table">
<p><span>{{ _('Estimated time') }}:</span></p>
<p><span>{{ color_block.estimatedtime }}</span></p>
</div>
</div>
</div>
</header>
<main>
<figure class="inksimulation">
{{color_block.svg_preview|safe}}
<figcaption>{{ _('Scale') }} <span>{{ svg_scale }}</span></figcaption>
</figure>
<div class="color-palette detailed">
{% include 'color_swatch.html' %}
</div>
</main>
{% include 'footer.html' %}

Wyświetl plik

@ -0,0 +1,42 @@
<header>
{% include 'headline.html' %}
<div class="job-details">
<div>
<div class="table">
<p><span>{{ _('Unique Colors') }}:</span><span>{{ job.num_colors }}</span></p>
<p><span>{{ _('Color Blocks') }}:</span><span>{{ job.num_color_blocks }}</span></p>
<p><span>{{ _('Total nr stops') }}:</span><span>{{ job.num_stops }}</span></p>
<p><span>{{ _('Total nr trims') }}:</span><span>{{ job.num_trims }}</span></p>
</div>
</div>
<div>
<div class="table">
<p><span>{{ _('Design box size') }}:</span><span>{{ job.dimensions }}</span></p>
<p><span>{{ _('Total stitch count') }}:</span><span>{{job.num_stitches }}</span></p>
<p><span>{{ _('Total thread used') }}:</span><span>{{job.estimated_thread }}</span></p>
</div>
</div>
<div>
<div class="table">
<p><span>{{ _('Job estimated time') }}:</span></p>
<p><span>{{ job.estimated_time }}</span></p>
</div>
</div>
</div>
</header>
<main class="client-overview-main">
<figure class="inksimulation">
{{ svg_overview|safe }}
<figcaption>{{ _('Scale') }} <span>{{ svg_scale }}</span></figcaption>
</figure>
<div class="color-palette">
{% for color_block in color_blocks %}
{% include 'color_swatch.html' %}
{% endfor %}
</div>
<div class="signature">{{ _('Client Signature') }}</div>
</main>
{% include 'footer.html' %}

Wyświetl plik

@ -0,0 +1,33 @@
<div class="ui">
<p class="header">{{ _('Ink/Stitch Print Preview') }}</p>
<div class="buttons">
<button class="print">{{ _('Print') }}</button>
<button class="settings">{{ _('Settings') }}</button>
<button class="close">{{ _('Close') }}</button>
</div>
<div id="errors">
{{ _('⚠ lost connection to Ink/Stitch') }}
</div>
</div>
<div id="settings-ui">
<p id="close-settings">X</p>
<h1>{{ _('Settings') }}</h1>
<div>
<p>{{ _('Printing Size') }}:
<select id="printing-size">
<option value="letter" selected="selected">Letter</option>
<option value="a4">A4</option>
</select>
</p>
</div>
<div>
<fieldset>
<legend>{{ ('Print Layouts') }}:</legend>
<p><input type="checkbox" id="client-overview" {{ 'checked' if view.client_overview else '' }}><label for="client-overview">Client Overview</label></p>
<p><input type="checkbox" id="client-detailedview" {{ 'checked' if view.client_detailedview else '' }}><label for="client-detailedview">Client Detailed View</label></p>
<p><input type="checkbox" id="operator-overview" {{ 'checked' if view.operator_overview else '' }}><label for="operator-overview">Operator Overview</label></p>
<p><input type="checkbox" id="operator-detailedview" {{ 'checked' if view.operator_detailedview else '' }}><label for="operator-overview">Operator Detailed View</label></p>
</fieldset>
</div>
</div>

Wyświetl plik

@ -5,3 +5,6 @@ shapely
lxml
appdirs
numpy
jinja2
flask
requests