Skip to content

Instantly share code, notes, and snippets.

@jcrist
Last active January 28, 2024 11:59
Show Gist options
  • Save jcrist/9969e0e7c345de665916c01764bcd1cd to your computer and use it in GitHub Desktop.
Save jcrist/9969e0e7c345de665916c01764bcd1cd to your computer and use it in GitHub Desktop.
Vaex String benchmarks, updated with dask fixes

Here I've reproduced the benchmarks in this vaex blogpost, updated to correct a few issues that were unfair towards Dask:

  • The original script uses uses the multiprocessing scheduler, which is almost never advised (we should maybe even remove it). Rather we now advise to use either the threaded scheduler or the distributed scheduler (which runs fine locally on a single machine). See https://docs.dask.org/en/latest/scheduling.html for more information.

  • The vaex code uses .nop() which computes the result but then drops it, avoiding the conversion to pandas. I've updated the dask code to use .persist() (compute on the workers, but don't bring the data back to the client process) which I think should be a fair comparison.

  • The original code would send the data to the workers every call, even though the data already is in memory. In cases like this it's more common to .persist() after the original load, so the data is already distributed throughout the cluster.

I also split the script out to do a separate run per backend, to minimize competing memory usage.

I ran the benchmark on my macbook (4 real cores (8 with hyperthreading), 16 GB RAM) as follows:

$ python bench.py --backend vaex
$ python bench.py --backend dask
$ python bench.py --backend pandas
$ python plot_bench.py

With these updated benchmarks, I get the following results:

results.svg

From the results we can see that Dask is 2-5x faster than pandas for these operations on my laptop (which is about what I'd expect given 4 real cores and easily parallelizable operations). Vaex is still an order of magnitude faster than Dask(!!), which is impressive to see. Dask inherits pandas memory model, so we still have the Python string representation (and the GIL along with it). When pandas string arrays move to arrow's representation Dask should speedup significantly here.

import vaex
import numpy as np
import dask.dataframe as dd
import dask
import dask.distributed
import json
import os
import time
import argparse
import multiprocessing
default_filename = 'string_benchmark.hdf5'
parser = argparse.ArgumentParser('bench.py')
parser.add_argument('--number', "-n", dest="n", type=float, default=7,
help="log number of rows to use")
parser.add_argument('--partitions', type=int, default=multiprocessing.cpu_count() * 2,
help="number of partitions to split (default: 2x number cores)")
parser.add_argument('--npandas', dest="npandas", type=float, default=7,
help="number of rows to use for pandas")
parser.add_argument('--filter', dest="filter", default=None,
help="filter for benchmark")
parser.add_argument('--filename', default=default_filename,
help='filename to use for benchmark export/reading')
parser.add_argument('--backend', default='vaex',
help='The backend to test {vaex, dask, pandas}')
args = parser.parse_args()
timings = {}
def mytimeit(expr, N, scope):
times = []
for i in range(N):
t0 = time.time()
eval(expr, scope)
times.append(time.time() - t0)
if args.backend == 'dask':
# Give time for dask's GC to run
time.sleep(1.0)
return times
def vaex_nop(df):
df.nop()
def dask_nop(df):
# We use `persist` here instead of `compute`. It is uncommon to call
# `compute` on large dataframes in dask, since that will pull the large
# results back to the client process (a potentially expensive process).
# Rather we call `persist` to do all the operations but leave the data on
# the workers. I believe this is a more fair comparison to vaex's `nop`
dask.distributed.wait(df.persist())
def pandas_nop(df):
pass
if __name__ == '__main__':
if not os.path.exists(args.filename):
s = np.arange(0, int(10**args.n)).astype(str)
df_vaex = vaex.from_arrays(x=s, s=s)
print("Writing file")
df_vaex.export(args.filename, progress=True, shuffle=True)
del df_vaex
df_vaex = vaex.open(args.filename)
if args.backend == 'vaex':
df = df_vaex
df.executor.buffer_size = len(df) // args.partitions
scope = {'df': df, 'nop': vaex_nop}
elif args.backend == 'dask':
# Start a local cluster with 1 thread per process (nprocesses = ncores
# by default)
dask.distributed.Client(threads_per_worker=1)
df_pandas = df_vaex.to_pandas_df()
# Load the data on the cluster already, to be fair in comparison to vaex
df = dd.from_pandas(df_pandas, npartitions=args.partitions).persist()
del df_pandas
scope = {'df': df, 'nop': dask_nop}
elif args.backend == 'pandas':
df = df_vaex.to_pandas_df()
scope = {'df': df, 'nop': pandas_nop}
else:
raise ValueError("Unknown backend %s" % args.backend)
del df_vaex
def test(name, expr):
if args.filter and args.filter not in name:
return
print(name)
results = mytimeit('nop(%s)' % expr, 5, scope=scope)
t = min(results) / (10 ** args.n)
timings[name] = t
print("Benchmarking %s" % args.backend)
test('capitalize', 'df.s.str.capitalize()')
test('cat', 'df.s.str.cat(df.s)')
test('contains', 'df.s.str.contains("9", regex=False)')
test('contains(regex)', 'df.s.str.contains("9", regex=True)')
test('count', 'df.s.str.count("9")')
test('endswith', 'df.s.str.endswith("9")')
test('find', 'df.s.str.find("4")')
test('get', 'df.s.str.get(1)')
test('split+join', 'df.s.str.split(".").str.join("-")')
test('len', 'df.s.str.len()')
test('ljust', 'df.s.str.ljust(10)')
test('lower', 'df.s.str.lower()')
test('lstrip', 'df.s.str.lstrip("9")')
test('match', 'df.s.str.match("1.*")')
test('pad', 'df.s.str.pad(10)')
test('repeat', 'df.s.str.repeat(2)')
test('replace(default)', 'df.s.str.replace("123", "321")')
test('replace(no regex)', 'df.s.str.replace("123", "321", regex=False)')
test('replace(regex)', 'df.s.str.replace("1?[45]4", "1004", regex=True)')
test('rfind', 'df.s.str.rfind("4")')
test('rjust', 'df.s.str.rjust(10)')
test('rstrip', 'df.s.str.rstrip("9")')
test('slice', 'df.s.str.slice(1, 3)')
test('split', 'df.s.str.split(".")')
test('startswith', 'df.s.str.startswith("9")')
test('strip', 'df.s.str.strip("0")') # issues?
test('title', 'df.s.str.title()')
test('upper', 'df.s.str.upper()')
test('zfill', 'df.s.str.zfill(10)')
fn = "%s.json" % args.backend
with open(fn, "w") as f:
json.dump(timings, f)
import json
import matplotlib
matplotlib.use('cairo',warn=False, force=True)
import pandas as pd
def load(backend):
with open(backend + '.json') as f:
return pd.DataFrame.from_dict(
json.load(f), orient='index', columns=[backend]
)
dask_times = load('dask')
pandas_times = load('pandas')
vaex_times = load('vaex')
times = pd.concat([vaex_times, dask_times, pandas_times], axis=1)
ax = (1 / times).plot.barh(
logx=True,
figsize=(10, 8),
title="Rows/second (larger is better)",
xlim=(10**6, 10**9),
)
ax.set_xlabel("time (s)")
ax.legend(loc="upper right")
fig = ax.get_figure()
fig.savefig('results.svg')
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="720pt" height="576pt" viewBox="0 0 720 576" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.957031 -4.953125 L 0.957031 -5.625 C 1.59375 -5.6875 2.035156 -5.789062 2.285156 -5.933594 C 2.535156 -6.078125 2.722656 -6.421875 2.847656 -6.960938 L 3.539062 -6.960938 L 3.539062 0 L 2.601562 0 L 2.601562 -4.953125 Z M 0.957031 -4.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.703125 -6.992188 C 3.609375 -6.992188 4.265625 -6.621094 4.667969 -5.875 C 4.980469 -5.296875 5.136719 -4.507812 5.136719 -3.507812 C 5.136719 -2.554688 4.996094 -1.769531 4.710938 -1.148438 C 4.300781 -0.257812 3.632812 0.191406 2.699219 0.191406 C 1.859375 0.191406 1.234375 -0.175781 0.824219 -0.902344 C 0.484375 -1.511719 0.3125 -2.328125 0.3125 -3.355469 C 0.3125 -4.148438 0.414062 -4.832031 0.621094 -5.398438 C 1.003906 -6.460938 1.699219 -6.992188 2.703125 -6.992188 Z M 2.695312 -0.609375 C 3.152344 -0.609375 3.515625 -0.8125 3.785156 -1.214844 C 4.054688 -1.617188 4.1875 -2.371094 4.1875 -3.472656 C 4.1875 -4.265625 4.09375 -4.917969 3.898438 -5.433594 C 3.703125 -5.945312 3.320312 -6.203125 2.757812 -6.203125 C 2.242188 -6.203125 1.863281 -5.957031 1.625 -5.472656 C 1.382812 -4.984375 1.265625 -4.265625 1.265625 -3.320312 C 1.265625 -2.609375 1.339844 -2.035156 1.492188 -1.601562 C 1.726562 -0.941406 2.128906 -0.609375 2.695312 -0.609375 Z M 2.695312 -0.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 0.820312 -6.6875 L 1.710938 -6.6875 L 1.710938 -5.230469 L 2.542969 -5.230469 L 2.542969 -4.511719 L 1.710938 -4.511719 L 1.710938 -1.097656 C 1.710938 -0.914062 1.769531 -0.792969 1.894531 -0.734375 C 1.960938 -0.695312 2.078125 -0.679688 2.234375 -0.679688 C 2.277344 -0.679688 2.324219 -0.679688 2.375 -0.679688 C 2.421875 -0.683594 2.480469 -0.6875 2.542969 -0.695312 L 2.542969 0 C 2.441406 0.03125 2.339844 0.0507812 2.230469 0.0625 C 2.121094 0.078125 2 0.0820312 1.875 0.0820312 C 1.464844 0.0820312 1.1875 -0.0234375 1.039062 -0.230469 C 0.894531 -0.441406 0.820312 -0.714844 0.820312 -1.050781 L 0.820312 -4.511719 L 0.113281 -4.511719 L 0.113281 -5.230469 L 0.820312 -5.230469 Z M 0.820312 -6.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.644531 -5.203125 L 1.539062 -5.203125 L 1.539062 0 L 0.644531 0 Z M 0.644531 -7.171875 L 1.539062 -7.171875 L 1.539062 -6.175781 L 0.644531 -6.175781 Z M 0.644531 -7.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 0.644531 -5.230469 L 1.515625 -5.230469 L 1.515625 -4.488281 C 1.722656 -4.746094 1.910156 -4.929688 2.078125 -5.046875 C 2.367188 -5.246094 2.699219 -5.347656 3.066406 -5.347656 C 3.484375 -5.347656 3.820312 -5.242188 4.070312 -5.039062 C 4.214844 -4.921875 4.34375 -4.75 4.460938 -4.523438 C 4.65625 -4.800781 4.886719 -5.007812 5.152344 -5.144531 C 5.414062 -5.28125 5.710938 -5.347656 6.039062 -5.347656 C 6.742188 -5.347656 7.222656 -5.09375 7.476562 -4.585938 C 7.613281 -4.3125 7.679688 -3.945312 7.679688 -3.480469 L 7.679688 0 L 6.765625 0 L 6.765625 -3.632812 C 6.765625 -3.980469 6.679688 -4.21875 6.507812 -4.351562 C 6.332031 -4.480469 6.121094 -4.546875 5.867188 -4.546875 C 5.523438 -4.546875 5.226562 -4.429688 4.976562 -4.199219 C 4.726562 -3.96875 4.605469 -3.582031 4.605469 -3.042969 L 4.605469 0 L 3.710938 0 L 3.710938 -3.414062 C 3.710938 -3.769531 3.667969 -4.027344 3.585938 -4.1875 C 3.453125 -4.433594 3.203125 -4.554688 2.835938 -4.554688 C 2.503906 -4.554688 2.203125 -4.425781 1.929688 -4.171875 C 1.660156 -3.914062 1.523438 -3.445312 1.523438 -2.773438 L 1.523438 0 L 0.644531 0 Z M 0.644531 -5.230469 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 2.820312 -5.347656 C 3.191406 -5.347656 3.554688 -5.257812 3.902344 -5.085938 C 4.25 -4.910156 4.515625 -4.6875 4.695312 -4.410156 C 4.871094 -4.144531 4.992188 -3.835938 5.046875 -3.484375 C 5.101562 -3.246094 5.125 -2.859375 5.125 -2.335938 L 1.292969 -2.335938 C 1.308594 -1.804688 1.4375 -1.378906 1.671875 -1.058594 C 1.90625 -0.738281 2.265625 -0.578125 2.757812 -0.578125 C 3.21875 -0.578125 3.585938 -0.726562 3.859375 -1.03125 C 4.015625 -1.207031 4.125 -1.410156 4.1875 -1.640625 L 5.054688 -1.640625 C 5.03125 -1.449219 4.957031 -1.234375 4.828125 -1 C 4.699219 -0.761719 4.554688 -0.570312 4.394531 -0.421875 C 4.128906 -0.160156 3.796875 0.015625 3.402344 0.109375 C 3.191406 0.160156 2.953125 0.1875 2.6875 0.1875 C 2.035156 0.1875 1.484375 -0.0507812 1.03125 -0.523438 C 0.578125 -1 0.351562 -1.660156 0.351562 -2.515625 C 0.351562 -3.355469 0.578125 -4.035156 1.035156 -4.5625 C 1.492188 -5.085938 2.085938 -5.347656 2.820312 -5.347656 Z M 4.222656 -3.03125 C 4.1875 -3.414062 4.105469 -3.71875 3.976562 -3.945312 C 3.734375 -4.367188 3.332031 -4.578125 2.769531 -4.578125 C 2.367188 -4.578125 2.027344 -4.433594 1.753906 -4.144531 C 1.480469 -3.851562 1.335938 -3.480469 1.320312 -3.03125 Z M 4.222656 -3.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 2.960938 -7.289062 C 2.449219 -6.296875 2.117188 -5.566406 1.960938 -5.097656 C 1.730469 -4.382812 1.617188 -3.5625 1.617188 -2.625 C 1.617188 -1.683594 1.75 -0.820312 2.011719 -0.0390625 C 2.175781 0.441406 2.496094 1.136719 2.972656 2.039062 L 2.382812 2.039062 C 1.90625 1.296875 1.613281 0.824219 1.5 0.621094 C 1.386719 0.414062 1.261719 0.136719 1.128906 -0.214844 C 0.945312 -0.695312 0.820312 -1.210938 0.746094 -1.757812 C 0.710938 -2.039062 0.695312 -2.3125 0.695312 -2.570312 C 0.695312 -3.53125 0.84375 -4.390625 1.148438 -5.140625 C 1.339844 -5.621094 1.738281 -6.335938 2.347656 -7.289062 Z M 2.960938 -7.289062 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 1.167969 -1.640625 C 1.195312 -1.347656 1.265625 -1.125 1.386719 -0.96875 C 1.609375 -0.683594 1.992188 -0.542969 2.539062 -0.542969 C 2.863281 -0.542969 3.152344 -0.613281 3.398438 -0.753906 C 3.644531 -0.894531 3.769531 -1.113281 3.769531 -1.410156 C 3.769531 -1.636719 3.671875 -1.804688 3.472656 -1.921875 C 3.34375 -1.996094 3.09375 -2.078125 2.71875 -2.171875 L 2.023438 -2.347656 C 1.578125 -2.460938 1.246094 -2.582031 1.035156 -2.71875 C 0.65625 -2.957031 0.46875 -3.285156 0.46875 -3.707031 C 0.46875 -4.203125 0.648438 -4.601562 1.003906 -4.90625 C 1.359375 -5.210938 1.839844 -5.367188 2.441406 -5.367188 C 3.230469 -5.367188 3.796875 -5.136719 4.144531 -4.671875 C 4.363281 -4.378906 4.46875 -4.0625 4.460938 -3.726562 L 3.632812 -3.726562 C 3.617188 -3.925781 3.546875 -4.105469 3.421875 -4.265625 C 3.21875 -4.5 2.871094 -4.613281 2.375 -4.613281 C 2.042969 -4.613281 1.789062 -4.550781 1.617188 -4.421875 C 1.445312 -4.296875 1.363281 -4.128906 1.363281 -3.921875 C 1.363281 -3.695312 1.476562 -3.511719 1.699219 -3.375 C 1.828125 -3.292969 2.023438 -3.222656 2.273438 -3.160156 L 2.855469 -3.015625 C 3.488281 -2.863281 3.910156 -2.714844 4.125 -2.574219 C 4.46875 -2.347656 4.640625 -1.996094 4.640625 -1.515625 C 4.640625 -1.046875 4.460938 -0.644531 4.109375 -0.308594 C 3.757812 0.03125 3.21875 0.199219 2.496094 0.199219 C 1.71875 0.199219 1.167969 0.0234375 0.84375 -0.328125 C 0.519531 -0.683594 0.34375 -1.121094 0.320312 -1.640625 Z M 1.167969 -1.640625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.347656 2.039062 C 0.863281 1.03125 1.199219 0.296875 1.347656 -0.164062 C 1.574219 -0.867188 1.6875 -1.6875 1.6875 -2.625 C 1.6875 -3.566406 1.558594 -4.429688 1.292969 -5.210938 C 1.132812 -5.691406 0.8125 -6.386719 0.332031 -7.289062 L 0.921875 -7.289062 C 1.421875 -6.488281 1.726562 -5.996094 1.832031 -5.808594 C 1.9375 -5.621094 2.054688 -5.363281 2.179688 -5.035156 C 2.335938 -4.628906 2.445312 -4.226562 2.511719 -3.828125 C 2.578125 -3.429688 2.613281 -3.046875 2.613281 -2.679688 C 2.613281 -1.71875 2.460938 -0.859375 2.152344 -0.101562 C 1.960938 0.382812 1.5625 1.097656 0.957031 2.039062 Z M 0.347656 2.039062 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 2.660156 -5.382812 C 3.25 -5.382812 3.730469 -5.238281 4.097656 -4.953125 C 4.46875 -4.664062 4.691406 -4.171875 4.765625 -3.472656 L 3.910156 -3.472656 C 3.859375 -3.792969 3.742188 -4.0625 3.554688 -4.273438 C 3.367188 -4.488281 3.070312 -4.59375 2.660156 -4.59375 C 2.101562 -4.59375 1.699219 -4.320312 1.460938 -3.773438 C 1.304688 -3.417969 1.226562 -2.980469 1.226562 -2.460938 C 1.226562 -1.9375 1.335938 -1.496094 1.558594 -1.136719 C 1.78125 -0.78125 2.128906 -0.601562 2.601562 -0.601562 C 2.96875 -0.601562 3.257812 -0.710938 3.46875 -0.933594 C 3.683594 -1.15625 3.828125 -1.464844 3.910156 -1.851562 L 4.765625 -1.851562 C 4.667969 -1.15625 4.421875 -0.648438 4.03125 -0.328125 C 3.640625 -0.0078125 3.144531 0.152344 2.535156 0.152344 C 1.851562 0.152344 1.304688 -0.0976562 0.898438 -0.597656 C 0.492188 -1.097656 0.289062 -1.722656 0.289062 -2.46875 C 0.289062 -3.386719 0.511719 -4.101562 0.957031 -4.613281 C 1.402344 -5.125 1.972656 -5.382812 2.660156 -5.382812 Z M 2.660156 -5.382812 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 1.320312 -1.390625 C 1.320312 -1.136719 1.410156 -0.9375 1.597656 -0.789062 C 1.78125 -0.644531 2 -0.570312 2.257812 -0.570312 C 2.566406 -0.570312 2.863281 -0.644531 3.15625 -0.785156 C 3.644531 -1.023438 3.886719 -1.414062 3.886719 -1.953125 L 3.886719 -2.660156 C 3.78125 -2.59375 3.640625 -2.535156 3.472656 -2.492188 C 3.304688 -2.445312 3.136719 -2.414062 2.972656 -2.390625 L 2.441406 -2.324219 C 2.121094 -2.28125 1.882812 -2.214844 1.722656 -2.125 C 1.453125 -1.972656 1.320312 -1.726562 1.320312 -1.390625 Z M 3.445312 -3.167969 C 3.648438 -3.195312 3.785156 -3.28125 3.851562 -3.421875 C 3.890625 -3.5 3.910156 -3.613281 3.910156 -3.757812 C 3.910156 -4.058594 3.804688 -4.277344 3.589844 -4.410156 C 3.378906 -4.546875 3.074219 -4.613281 2.675781 -4.613281 C 2.21875 -4.613281 1.890625 -4.492188 1.699219 -4.242188 C 1.59375 -4.105469 1.523438 -3.902344 1.488281 -3.632812 L 0.667969 -3.632812 C 0.683594 -4.277344 0.894531 -4.726562 1.296875 -4.976562 C 1.699219 -5.230469 2.164062 -5.355469 2.695312 -5.355469 C 3.3125 -5.355469 3.808594 -5.238281 4.195312 -5.003906 C 4.574219 -4.769531 4.765625 -4.40625 4.765625 -3.910156 L 4.765625 -0.898438 C 4.765625 -0.808594 4.785156 -0.734375 4.820312 -0.679688 C 4.859375 -0.625 4.9375 -0.59375 5.058594 -0.59375 C 5.097656 -0.59375 5.140625 -0.597656 5.191406 -0.601562 C 5.238281 -0.609375 5.292969 -0.617188 5.347656 -0.625 L 5.347656 0.0234375 C 5.210938 0.0625 5.105469 0.0859375 5.035156 0.0976562 C 4.960938 0.109375 4.863281 0.113281 4.742188 0.113281 C 4.4375 0.113281 4.21875 0.00390625 4.082031 -0.210938 C 4.011719 -0.324219 3.960938 -0.484375 3.929688 -0.695312 C 3.75 -0.460938 3.496094 -0.253906 3.160156 -0.0820312 C 2.824219 0.0898438 2.453125 0.175781 2.050781 0.175781 C 1.566406 0.175781 1.167969 0.0273438 0.863281 -0.265625 C 0.554688 -0.5625 0.398438 -0.929688 0.398438 -1.371094 C 0.398438 -1.855469 0.550781 -2.234375 0.855469 -2.5 C 1.15625 -2.765625 1.554688 -2.929688 2.046875 -2.992188 Z M 3.445312 -3.167969 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 2.851562 -0.589844 C 3.261719 -0.589844 3.601562 -0.761719 3.875 -1.105469 C 4.148438 -1.449219 4.28125 -1.960938 4.28125 -2.648438 C 4.28125 -3.0625 4.222656 -3.421875 4.101562 -3.71875 C 3.875 -4.296875 3.457031 -4.585938 2.851562 -4.585938 C 2.242188 -4.585938 1.828125 -4.28125 1.601562 -3.671875 C 1.480469 -3.347656 1.421875 -2.933594 1.421875 -2.429688 C 1.421875 -2.027344 1.480469 -1.683594 1.601562 -1.402344 C 1.828125 -0.859375 2.246094 -0.589844 2.851562 -0.589844 Z M 0.578125 -5.203125 L 1.429688 -5.203125 L 1.429688 -4.511719 C 1.605469 -4.75 1.796875 -4.933594 2.007812 -5.0625 C 2.304688 -5.257812 2.652344 -5.355469 3.050781 -5.355469 C 3.644531 -5.355469 4.148438 -5.128906 4.5625 -4.675781 C 4.976562 -4.222656 5.179688 -3.574219 5.179688 -2.730469 C 5.179688 -1.589844 4.882812 -0.777344 4.289062 -0.289062 C 3.910156 0.0195312 3.46875 0.175781 2.96875 0.175781 C 2.574219 0.175781 2.246094 0.0898438 1.976562 -0.0820312 C 1.820312 -0.179688 1.648438 -0.347656 1.453125 -0.585938 L 1.453125 2.085938 L 0.578125 2.085938 Z M 0.578125 -5.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 0.667969 -7.171875 L 1.546875 -7.171875 L 1.546875 0 L 0.667969 0 Z M 0.667969 -7.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 0.253906 -0.695312 L 3.355469 -4.445312 L 0.484375 -4.445312 L 0.484375 -5.230469 L 4.535156 -5.230469 L 4.535156 -4.511719 L 1.453125 -0.785156 L 4.628906 -0.785156 L 4.628906 0 L 0.253906 0 Z M 0.253906 -0.695312 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 2.71875 -0.566406 C 3.300781 -0.566406 3.703125 -0.785156 3.917969 -1.226562 C 4.132812 -1.667969 4.242188 -2.160156 4.242188 -2.699219 C 4.242188 -3.1875 4.164062 -3.585938 4.007812 -3.890625 C 3.761719 -4.375 3.335938 -4.613281 2.730469 -4.613281 C 2.191406 -4.613281 1.800781 -4.410156 1.558594 -4 C 1.3125 -3.589844 1.191406 -3.09375 1.191406 -2.515625 C 1.191406 -1.957031 1.3125 -1.492188 1.558594 -1.125 C 1.800781 -0.753906 2.1875 -0.566406 2.71875 -0.566406 Z M 2.753906 -5.382812 C 3.429688 -5.382812 3.996094 -5.15625 4.460938 -4.707031 C 4.929688 -4.257812 5.160156 -3.597656 5.160156 -2.726562 C 5.160156 -1.882812 4.957031 -1.183594 4.546875 -0.632812 C 4.136719 -0.0859375 3.5 0.191406 2.636719 0.191406 C 1.917969 0.191406 1.347656 -0.0546875 0.921875 -0.539062 C 0.5 -1.027344 0.289062 -1.679688 0.289062 -2.5 C 0.289062 -3.378906 0.511719 -4.078125 0.957031 -4.601562 C 1.402344 -5.121094 2 -5.382812 2.753906 -5.382812 Z M 2.753906 -5.382812 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 0.644531 -5.230469 L 1.480469 -5.230469 L 1.480469 -4.488281 C 1.726562 -4.792969 1.988281 -5.011719 2.265625 -5.148438 C 2.542969 -5.28125 2.851562 -5.347656 3.1875 -5.347656 C 3.929688 -5.347656 4.433594 -5.085938 4.691406 -4.570312 C 4.835938 -4.289062 4.90625 -3.882812 4.90625 -3.355469 L 4.90625 0 L 4.015625 0 L 4.015625 -3.296875 C 4.015625 -3.617188 3.964844 -3.871094 3.871094 -4.066406 C 3.714844 -4.390625 3.433594 -4.554688 3.023438 -4.554688 C 2.8125 -4.554688 2.644531 -4.535156 2.507812 -4.492188 C 2.269531 -4.421875 2.058594 -4.277344 1.875 -4.0625 C 1.726562 -3.890625 1.632812 -3.710938 1.589844 -3.527344 C 1.546875 -3.34375 1.523438 -3.082031 1.523438 -2.738281 L 1.523438 0 L 0.644531 0 Z M 0.644531 -5.230469 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 0.667969 -5.230469 L 1.503906 -5.230469 L 1.503906 -4.328125 C 1.570312 -4.503906 1.738281 -4.714844 2.007812 -4.96875 C 2.273438 -5.21875 2.582031 -5.347656 2.929688 -5.347656 C 2.945312 -5.347656 2.972656 -5.34375 3.011719 -5.34375 C 3.050781 -5.339844 3.117188 -5.332031 3.210938 -5.320312 L 3.210938 -4.394531 C 3.160156 -4.40625 3.113281 -4.410156 3.070312 -4.414062 C 3.023438 -4.417969 2.976562 -4.417969 2.925781 -4.417969 C 2.484375 -4.417969 2.140625 -4.277344 1.90625 -3.992188 C 1.667969 -3.707031 1.546875 -3.378906 1.546875 -3.007812 L 1.546875 0 L 0.667969 0 Z M 0.667969 -5.230469 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 2.492188 -5.320312 C 2.902344 -5.320312 3.257812 -5.222656 3.5625 -5.019531 C 3.730469 -4.90625 3.898438 -4.738281 4.070312 -4.523438 L 4.070312 -5.179688 L 4.882812 -5.179688 L 4.882812 -0.425781 C 4.882812 0.238281 4.785156 0.761719 4.589844 1.148438 C 4.226562 1.859375 3.535156 2.210938 2.523438 2.210938 C 1.960938 2.210938 1.488281 2.085938 1.101562 1.832031 C 0.71875 1.582031 0.503906 1.1875 0.460938 0.648438 L 1.351562 0.648438 C 1.394531 0.882812 1.480469 1.0625 1.605469 1.191406 C 1.804688 1.386719 2.117188 1.484375 2.542969 1.484375 C 3.21875 1.484375 3.660156 1.246094 3.867188 0.773438 C 3.992188 0.492188 4.046875 -0.0078125 4.039062 -0.726562 C 3.863281 -0.460938 3.652344 -0.261719 3.402344 -0.132812 C 3.15625 0 2.828125 0.0625 2.421875 0.0625 C 1.855469 0.0625 1.359375 -0.136719 0.933594 -0.539062 C 0.507812 -0.941406 0.296875 -1.605469 0.296875 -2.535156 C 0.296875 -3.410156 0.511719 -4.09375 0.941406 -4.585938 C 1.367188 -5.078125 1.882812 -5.320312 2.492188 -5.320312 Z M 4.070312 -2.636719 C 4.070312 -3.285156 3.9375 -3.765625 3.671875 -4.078125 C 3.40625 -4.390625 3.066406 -4.546875 2.652344 -4.546875 C 2.03125 -4.546875 1.609375 -4.257812 1.382812 -3.675781 C 1.261719 -3.367188 1.203125 -2.960938 1.203125 -2.460938 C 1.203125 -1.871094 1.320312 -1.421875 1.558594 -1.117188 C 1.796875 -0.808594 2.121094 -0.65625 2.523438 -0.65625 C 3.15625 -0.65625 3.601562 -0.9375 3.859375 -1.507812 C 4 -1.832031 4.070312 -2.207031 4.070312 -2.636719 Z M 4.070312 -2.636719 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 0.148438 -5.230469 L 1.285156 -5.230469 L 2.484375 -3.390625 L 3.703125 -5.230469 L 4.769531 -5.203125 L 3.007812 -2.679688 L 4.847656 0 L 3.726562 0 L 2.425781 -1.960938 L 1.167969 0 L 0.0546875 0 L 1.894531 -2.679688 Z M 0.148438 -5.230469 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 1.523438 -5.230469 L 1.523438 -1.757812 C 1.523438 -1.492188 1.566406 -1.273438 1.648438 -1.101562 C 1.804688 -0.789062 2.097656 -0.632812 2.523438 -0.632812 C 3.136719 -0.632812 3.554688 -0.90625 3.773438 -1.453125 C 3.894531 -1.746094 3.953125 -2.148438 3.953125 -2.660156 L 3.953125 -5.230469 L 4.835938 -5.230469 L 4.835938 0 L 4.003906 0 L 4.015625 -0.773438 C 3.898438 -0.574219 3.757812 -0.40625 3.589844 -0.269531 C 3.253906 0.00390625 2.847656 0.140625 2.367188 0.140625 C 1.621094 0.140625 1.113281 -0.109375 0.84375 -0.605469 C 0.699219 -0.871094 0.625 -1.230469 0.625 -1.675781 L 0.625 -5.230469 Z M 1.523438 -5.230469 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 1.203125 -2.554688 C 1.203125 -1.992188 1.320312 -1.523438 1.558594 -1.148438 C 1.796875 -0.769531 2.175781 -0.582031 2.699219 -0.582031 C 3.105469 -0.582031 3.441406 -0.757812 3.703125 -1.105469 C 3.964844 -1.457031 4.097656 -1.957031 4.097656 -2.613281 C 4.097656 -3.273438 3.960938 -3.761719 3.691406 -4.078125 C 3.421875 -4.398438 3.085938 -4.554688 2.691406 -4.554688 C 2.25 -4.554688 1.890625 -4.386719 1.613281 -4.046875 C 1.339844 -3.710938 1.203125 -3.210938 1.203125 -2.554688 Z M 2.523438 -5.320312 C 2.925781 -5.320312 3.261719 -5.238281 3.53125 -5.070312 C 3.6875 -4.972656 3.863281 -4.800781 4.0625 -4.554688 L 4.0625 -7.195312 L 4.90625 -7.195312 L 4.90625 0 L 4.117188 0 L 4.117188 -0.726562 C 3.910156 -0.40625 3.667969 -0.171875 3.390625 -0.03125 C 3.109375 0.113281 2.789062 0.1875 2.425781 0.1875 C 1.84375 0.1875 1.339844 -0.0585938 0.914062 -0.550781 C 0.488281 -1.039062 0.273438 -1.691406 0.273438 -2.503906 C 0.273438 -3.265625 0.46875 -3.925781 0.855469 -4.484375 C 1.246094 -5.042969 1.800781 -5.320312 2.523438 -5.320312 Z M 2.523438 -5.320312 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 1.050781 -5.230469 L 2.054688 -1.109375 L 3.078125 -5.230469 L 4.0625 -5.230469 L 5.085938 -1.132812 L 6.15625 -5.230469 L 7.035156 -5.230469 L 5.515625 0 L 4.605469 0 L 3.539062 -4.046875 L 2.507812 0 L 1.597656 0 L 0.0859375 -5.230469 Z M 1.050781 -5.230469 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 0.644531 -7.195312 L 1.523438 -7.195312 L 1.523438 -4.523438 C 1.730469 -4.785156 1.917969 -4.96875 2.085938 -5.078125 C 2.367188 -5.265625 2.722656 -5.355469 3.144531 -5.355469 C 3.902344 -5.355469 4.417969 -5.089844 4.6875 -4.5625 C 4.835938 -4.273438 4.90625 -3.867188 4.90625 -3.355469 L 4.90625 0 L 4.003906 0 L 4.003906 -3.296875 C 4.003906 -3.679688 3.953125 -3.960938 3.859375 -4.140625 C 3.699219 -4.425781 3.398438 -4.570312 2.960938 -4.570312 C 2.59375 -4.570312 2.265625 -4.445312 1.96875 -4.195312 C 1.671875 -3.945312 1.523438 -3.46875 1.523438 -2.773438 L 1.523438 0 L 0.644531 0 Z M 0.644531 -7.195312 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 0.863281 -6.023438 C 0.875 -6.390625 0.941406 -6.65625 1.054688 -6.828125 C 1.257812 -7.125 1.65625 -7.273438 2.242188 -7.273438 C 2.296875 -7.273438 2.351562 -7.273438 2.414062 -7.269531 C 2.472656 -7.265625 2.539062 -7.261719 2.613281 -7.257812 L 2.613281 -6.453125 C 2.523438 -6.460938 2.457031 -6.464844 2.414062 -6.46875 C 2.375 -6.46875 2.335938 -6.46875 2.300781 -6.46875 C 2.03125 -6.46875 1.875 -6.402344 1.820312 -6.261719 C 1.769531 -6.125 1.742188 -5.773438 1.742188 -5.203125 L 2.613281 -5.203125 L 2.613281 -4.511719 L 1.734375 -4.511719 L 1.734375 0 L 0.863281 0 L 0.863281 -4.511719 L 0.136719 -4.511719 L 0.136719 -5.203125 L 0.863281 -5.203125 Z M 0.863281 -6.023438 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 0.449219 -2.140625 L 0.449219 -2.960938 L 2.578125 -2.960938 L 2.578125 -5.101562 L 3.414062 -5.101562 L 3.414062 -2.960938 L 5.542969 -2.960938 L 5.542969 -2.140625 L 3.414062 -2.140625 L 3.414062 0 L 2.578125 0 L 2.578125 -2.140625 Z M 0.449219 -2.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-27">
<path style="stroke:none;" d="M 1.523438 -6.15625 L 0.644531 -6.15625 L 0.644531 -7.171875 L 1.523438 -7.171875 Z M -0.1875 1.324219 C 0.207031 1.3125 0.445312 1.273438 0.523438 1.21875 C 0.605469 1.160156 0.644531 0.984375 0.644531 0.683594 L 0.644531 -5.203125 L 1.523438 -5.203125 L 1.523438 0.777344 C 1.523438 1.15625 1.460938 1.441406 1.335938 1.632812 C 1.132812 1.949219 0.742188 2.109375 0.171875 2.109375 C 0.128906 2.109375 0.0820312 2.109375 0.0351562 2.105469 C -0.0117188 2.101562 -0.0859375 2.09375 -0.1875 2.085938 Z M -0.1875 1.324219 "/>
</symbol>
<symbol overflow="visible" id="glyph0-28">
<path style="stroke:none;" d="M 1.074219 -5.230469 L 2.46875 -0.972656 L 3.929688 -5.230469 L 4.890625 -5.230469 L 2.921875 0 L 1.984375 0 L 0.0546875 -5.230469 Z M 1.074219 -5.230469 "/>
</symbol>
<symbol overflow="visible" id="glyph0-29">
<path style="stroke:none;" d="M 0.625 -7.171875 L 1.46875 -7.171875 L 1.46875 -3.007812 L 3.726562 -5.230469 L 4.847656 -5.230469 L 2.847656 -3.273438 L 4.960938 0 L 3.835938 0 L 2.207031 -2.636719 L 1.46875 -1.960938 L 1.46875 0 L 0.625 0 Z M 0.625 -7.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 2.046875 -4.914062 C 2.59375 -4.914062 2.976562 -4.773438 3.191406 -4.488281 C 3.40625 -4.207031 3.515625 -3.914062 3.515625 -3.613281 L 2.90625 -3.613281 C 2.867188 -3.804688 2.8125 -3.957031 2.730469 -4.066406 C 2.582031 -4.273438 2.359375 -4.375 2.058594 -4.375 C 1.714844 -4.375 1.441406 -4.214844 1.238281 -3.898438 C 1.035156 -3.582031 0.921875 -3.125 0.898438 -2.53125 C 1.039062 -2.738281 1.21875 -2.894531 1.433594 -2.996094 C 1.628906 -3.089844 1.847656 -3.132812 2.089844 -3.132812 C 2.5 -3.132812 2.855469 -3.003906 3.160156 -2.742188 C 3.464844 -2.480469 3.621094 -2.089844 3.621094 -1.570312 C 3.621094 -1.125 3.476562 -0.730469 3.1875 -0.386719 C 2.898438 -0.0429688 2.484375 0.125 1.949219 0.125 C 1.492188 0.125 1.09375 -0.046875 0.761719 -0.394531 C 0.429688 -0.742188 0.261719 -1.328125 0.261719 -2.148438 C 0.261719 -2.757812 0.335938 -3.273438 0.484375 -3.699219 C 0.769531 -4.507812 1.289062 -4.914062 2.046875 -4.914062 Z M 2.003906 -0.421875 C 2.328125 -0.421875 2.570312 -0.527344 2.730469 -0.746094 C 2.890625 -0.964844 2.96875 -1.222656 2.96875 -1.515625 C 2.96875 -1.765625 2.898438 -2.007812 2.753906 -2.234375 C 2.609375 -2.460938 2.351562 -2.574219 1.972656 -2.574219 C 1.707031 -2.574219 1.476562 -2.484375 1.277344 -2.3125 C 1.078125 -2.136719 0.976562 -1.871094 0.976562 -1.515625 C 0.976562 -1.207031 1.066406 -0.949219 1.25 -0.738281 C 1.429688 -0.527344 1.679688 -0.421875 2.003906 -0.421875 Z M 2.003906 -0.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 3.660156 -4.8125 L 3.660156 -4.277344 C 3.503906 -4.125 3.292969 -3.859375 3.035156 -3.480469 C 2.773438 -3.101562 2.542969 -2.695312 2.339844 -2.257812 C 2.140625 -1.832031 1.992188 -1.441406 1.890625 -1.089844 C 1.824219 -0.863281 1.738281 -0.5 1.632812 0 L 0.953125 0 C 1.109375 -0.933594 1.449219 -1.863281 1.980469 -2.789062 C 2.292969 -3.332031 2.621094 -3.800781 2.964844 -4.195312 L 0.257812 -4.195312 L 0.257812 -4.8125 Z M 3.660156 -4.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 1.902344 -2.84375 C 2.175781 -2.84375 2.386719 -2.917969 2.539062 -3.070312 C 2.691406 -3.222656 2.769531 -3.402344 2.769531 -3.613281 C 2.769531 -3.796875 2.695312 -3.960938 2.550781 -4.117188 C 2.40625 -4.269531 2.183594 -4.34375 1.882812 -4.34375 C 1.585938 -4.34375 1.371094 -4.269531 1.242188 -4.117188 C 1.109375 -3.964844 1.042969 -3.785156 1.042969 -3.578125 C 1.042969 -3.347656 1.128906 -3.167969 1.296875 -3.039062 C 1.46875 -2.910156 1.671875 -2.84375 1.902344 -2.84375 Z M 1.941406 -0.421875 C 2.226562 -0.421875 2.460938 -0.496094 2.652344 -0.652344 C 2.839844 -0.804688 2.933594 -1.035156 2.933594 -1.339844 C 2.933594 -1.65625 2.835938 -1.898438 2.640625 -2.0625 C 2.449219 -2.226562 2.199219 -2.308594 1.898438 -2.308594 C 1.601562 -2.308594 1.363281 -2.222656 1.175781 -2.054688 C 0.992188 -1.886719 0.898438 -1.65625 0.898438 -1.359375 C 0.898438 -1.105469 0.984375 -0.882812 1.152344 -0.699219 C 1.324219 -0.511719 1.585938 -0.421875 1.941406 -0.421875 Z M 1.066406 -2.609375 C 0.894531 -2.679688 0.761719 -2.765625 0.667969 -2.863281 C 0.488281 -3.046875 0.398438 -3.285156 0.398438 -3.574219 C 0.398438 -3.9375 0.527344 -4.253906 0.792969 -4.515625 C 1.058594 -4.777344 1.433594 -4.90625 1.917969 -4.90625 C 2.386719 -4.90625 2.753906 -4.785156 3.023438 -4.539062 C 3.289062 -4.289062 3.421875 -4 3.421875 -3.671875 C 3.421875 -3.367188 3.34375 -3.117188 3.1875 -2.929688 C 3.101562 -2.820312 2.96875 -2.71875 2.785156 -2.613281 C 2.988281 -2.519531 3.148438 -2.414062 3.265625 -2.292969 C 3.480469 -2.066406 3.589844 -1.769531 3.589844 -1.40625 C 3.589844 -0.976562 3.445312 -0.609375 3.15625 -0.308594 C 2.867188 -0.0078125 2.457031 0.140625 1.929688 0.140625 C 1.453125 0.140625 1.046875 0.0117188 0.71875 -0.246094 C 0.390625 -0.507812 0.226562 -0.882812 0.226562 -1.375 C 0.226562 -1.664062 0.296875 -1.914062 0.4375 -2.125 C 0.578125 -2.335938 0.789062 -2.496094 1.066406 -2.609375 Z M 1.066406 -2.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 0.929688 -1.183594 C 0.949219 -0.84375 1.078125 -0.609375 1.324219 -0.476562 C 1.449219 -0.410156 1.589844 -0.375 1.746094 -0.375 C 2.039062 -0.375 2.292969 -0.5 2.5 -0.742188 C 2.707031 -0.988281 2.851562 -1.484375 2.9375 -2.234375 C 2.800781 -2.019531 2.632812 -1.867188 2.433594 -1.777344 C 2.230469 -1.691406 2.011719 -1.648438 1.78125 -1.648438 C 1.308594 -1.648438 0.9375 -1.792969 0.660156 -2.089844 C 0.386719 -2.382812 0.25 -2.761719 0.25 -3.222656 C 0.25 -3.667969 0.386719 -4.058594 0.65625 -4.394531 C 0.925781 -4.734375 1.328125 -4.902344 1.855469 -4.902344 C 2.570312 -4.902344 3.0625 -4.578125 3.332031 -3.9375 C 3.484375 -3.585938 3.558594 -3.140625 3.558594 -2.609375 C 3.558594 -2.011719 3.46875 -1.480469 3.289062 -1.019531 C 2.988281 -0.25 2.484375 0.136719 1.769531 0.136719 C 1.292969 0.136719 0.929688 0.0117188 0.679688 -0.238281 C 0.429688 -0.488281 0.308594 -0.804688 0.308594 -1.183594 Z M 1.863281 -2.1875 C 2.105469 -2.1875 2.328125 -2.269531 2.53125 -2.429688 C 2.734375 -2.589844 2.832031 -2.871094 2.832031 -3.269531 C 2.832031 -3.628906 2.742188 -3.898438 2.5625 -4.074219 C 2.382812 -4.25 2.148438 -4.339844 1.871094 -4.339844 C 1.570312 -4.339844 1.332031 -4.238281 1.152344 -4.039062 C 0.976562 -3.835938 0.890625 -3.566406 0.890625 -3.230469 C 0.890625 -2.910156 0.964844 -2.65625 1.121094 -2.46875 C 1.277344 -2.28125 1.523438 -2.1875 1.863281 -2.1875 Z M 1.863281 -2.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 4.914062 -4.664062 C 5.460938 -4.664062 5.894531 -4.773438 6.214844 -4.992188 C 6.53125 -5.210938 6.691406 -5.605469 6.691406 -6.175781 C 6.691406 -6.789062 6.46875 -7.207031 6.023438 -7.429688 C 5.785156 -7.546875 5.46875 -7.605469 5.070312 -7.605469 L 2.21875 -7.605469 L 2.21875 -4.664062 Z M 1.054688 -8.609375 L 5.039062 -8.609375 C 5.695312 -8.609375 6.234375 -8.511719 6.664062 -8.320312 C 7.472656 -7.953125 7.875 -7.273438 7.875 -6.289062 C 7.875 -5.773438 7.769531 -5.351562 7.554688 -5.023438 C 7.34375 -4.695312 7.046875 -4.429688 6.664062 -4.230469 C 7 -4.09375 7.25 -3.914062 7.421875 -3.691406 C 7.589844 -3.46875 7.6875 -3.109375 7.703125 -2.609375 L 7.746094 -1.453125 C 7.757812 -1.125 7.785156 -0.882812 7.828125 -0.71875 C 7.898438 -0.445312 8.023438 -0.273438 8.203125 -0.195312 L 8.203125 0 L 6.773438 0 C 6.734375 -0.0742188 6.703125 -0.171875 6.679688 -0.289062 C 6.65625 -0.40625 6.636719 -0.632812 6.621094 -0.96875 L 6.550781 -2.402344 C 6.523438 -2.964844 6.3125 -3.34375 5.921875 -3.53125 C 5.699219 -3.636719 5.351562 -3.691406 4.875 -3.691406 L 2.21875 -3.691406 L 2.21875 0 L 1.054688 0 Z M 1.054688 -8.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 3.265625 -0.679688 C 3.964844 -0.679688 4.441406 -0.945312 4.703125 -1.472656 C 4.960938 -2.003906 5.09375 -2.59375 5.09375 -3.242188 C 5.09375 -3.828125 5 -4.304688 4.8125 -4.671875 C 4.515625 -5.25 4 -5.539062 3.273438 -5.539062 C 2.628906 -5.539062 2.164062 -5.289062 1.867188 -4.796875 C 1.574219 -4.304688 1.429688 -3.710938 1.429688 -3.015625 C 1.429688 -2.347656 1.578125 -1.792969 1.867188 -1.347656 C 2.160156 -0.902344 2.625 -0.679688 3.265625 -0.679688 Z M 3.304688 -6.457031 C 4.113281 -6.457031 4.796875 -6.1875 5.355469 -5.648438 C 5.914062 -5.109375 6.195312 -4.316406 6.195312 -3.269531 C 6.195312 -2.257812 5.945312 -1.421875 5.453125 -0.761719 C 4.960938 -0.101562 4.199219 0.226562 3.164062 0.226562 C 2.300781 0.226562 1.617188 -0.0625 1.109375 -0.648438 C 0.601562 -1.230469 0.34375 -2.015625 0.34375 -3 C 0.34375 -4.054688 0.613281 -4.894531 1.148438 -5.519531 C 1.683594 -6.144531 2.402344 -6.457031 3.304688 -6.457031 Z M 3.304688 -6.457031 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 1.257812 -6.273438 L 2.46875 -1.328125 L 3.691406 -6.273438 L 4.875 -6.273438 L 6.105469 -1.359375 L 7.390625 -6.273438 L 8.445312 -6.273438 L 6.621094 0 L 5.523438 0 L 4.25 -4.859375 L 3.011719 0 L 1.914062 0 L 0.105469 -6.273438 Z M 1.257812 -6.273438 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 1.398438 -1.96875 C 1.429688 -1.617188 1.519531 -1.347656 1.664062 -1.160156 C 1.929688 -0.820312 2.390625 -0.648438 3.046875 -0.648438 C 3.4375 -0.648438 3.78125 -0.734375 4.078125 -0.90625 C 4.375 -1.074219 4.523438 -1.335938 4.523438 -1.695312 C 4.523438 -1.964844 4.40625 -2.167969 4.164062 -2.308594 C 4.011719 -2.394531 3.710938 -2.492188 3.265625 -2.609375 L 2.425781 -2.820312 C 1.890625 -2.953125 1.496094 -3.101562 1.242188 -3.265625 C 0.789062 -3.550781 0.5625 -3.945312 0.5625 -4.445312 C 0.5625 -5.039062 0.777344 -5.523438 1.203125 -5.890625 C 1.632812 -6.257812 2.207031 -6.4375 2.929688 -6.4375 C 3.875 -6.4375 4.554688 -6.164062 4.976562 -5.609375 C 5.238281 -5.257812 5.363281 -4.875 5.355469 -4.46875 L 4.359375 -4.46875 C 4.339844 -4.707031 4.257812 -4.925781 4.109375 -5.121094 C 3.867188 -5.398438 3.445312 -5.539062 2.847656 -5.539062 C 2.449219 -5.539062 2.148438 -5.460938 1.941406 -5.308594 C 1.738281 -5.15625 1.632812 -4.953125 1.632812 -4.703125 C 1.632812 -4.429688 1.769531 -4.210938 2.039062 -4.046875 C 2.195312 -3.949219 2.425781 -3.867188 2.730469 -3.789062 L 3.429688 -3.621094 C 4.1875 -3.4375 4.695312 -3.257812 4.953125 -3.085938 C 5.363281 -2.816406 5.566406 -2.394531 5.566406 -1.816406 C 5.566406 -1.257812 5.355469 -0.773438 4.929688 -0.367188 C 4.507812 0.0390625 3.859375 0.242188 2.992188 0.242188 C 2.058594 0.242188 1.398438 0.0273438 1.011719 -0.394531 C 0.621094 -0.820312 0.414062 -1.34375 0.386719 -1.96875 Z M 1.398438 -1.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 2.730469 -8.609375 L 3.621094 -8.609375 L 0.890625 0 L 0 0 Z M 2.730469 -8.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 3.386719 -6.414062 C 3.832031 -6.414062 4.265625 -6.3125 4.679688 -6.101562 C 5.097656 -5.894531 5.417969 -5.625 5.636719 -5.289062 C 5.847656 -4.972656 5.988281 -4.605469 6.058594 -4.183594 C 6.121094 -3.894531 6.152344 -3.433594 6.152344 -2.800781 L 1.554688 -2.800781 C 1.574219 -2.164062 1.722656 -1.652344 2.003906 -1.269531 C 2.285156 -0.882812 2.71875 -0.691406 3.3125 -0.691406 C 3.863281 -0.691406 4.300781 -0.875 4.628906 -1.234375 C 4.816406 -1.445312 4.949219 -1.691406 5.027344 -1.96875 L 6.0625 -1.96875 C 6.035156 -1.738281 5.945312 -1.480469 5.792969 -1.199219 C 5.636719 -0.914062 5.464844 -0.683594 5.273438 -0.503906 C 4.953125 -0.191406 4.554688 0.0195312 4.085938 0.128906 C 3.832031 0.191406 3.542969 0.222656 3.222656 0.222656 C 2.441406 0.222656 1.78125 -0.0625 1.234375 -0.628906 C 0.691406 -1.199219 0.421875 -1.992188 0.421875 -3.015625 C 0.421875 -4.023438 0.695312 -4.84375 1.242188 -5.472656 C 1.789062 -6.101562 2.503906 -6.414062 3.386719 -6.414062 Z M 5.070312 -3.640625 C 5.027344 -4.097656 4.925781 -4.460938 4.769531 -4.734375 C 4.480469 -5.242188 4 -5.496094 3.320312 -5.496094 C 2.835938 -5.496094 2.429688 -5.320312 2.101562 -4.972656 C 1.773438 -4.621094 1.601562 -4.179688 1.582031 -3.640625 Z M 5.070312 -3.640625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 3.195312 -6.457031 C 3.902344 -6.457031 4.476562 -6.285156 4.917969 -5.941406 C 5.363281 -5.597656 5.628906 -5.007812 5.71875 -4.164062 L 4.695312 -4.164062 C 4.632812 -4.550781 4.488281 -4.875 4.265625 -5.128906 C 4.042969 -5.386719 3.6875 -5.515625 3.195312 -5.515625 C 2.523438 -5.515625 2.039062 -5.1875 1.75 -4.53125 C 1.5625 -4.105469 1.46875 -3.578125 1.46875 -2.953125 C 1.46875 -2.324219 1.601562 -1.796875 1.867188 -1.367188 C 2.132812 -0.9375 2.554688 -0.71875 3.125 -0.71875 C 3.5625 -0.71875 3.90625 -0.855469 4.164062 -1.121094 C 4.417969 -1.390625 4.59375 -1.757812 4.695312 -2.21875 L 5.71875 -2.21875 C 5.601562 -1.386719 5.308594 -0.78125 4.839844 -0.394531 C 4.371094 -0.0117188 3.773438 0.179688 3.039062 0.179688 C 2.21875 0.179688 1.566406 -0.117188 1.078125 -0.71875 C 0.589844 -1.316406 0.34375 -2.066406 0.34375 -2.964844 C 0.34375 -4.066406 0.613281 -4.921875 1.148438 -5.539062 C 1.683594 -6.152344 2.367188 -6.457031 3.195312 -6.457031 Z M 3.195312 -6.457031 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M 0.773438 -6.273438 L 1.773438 -6.273438 L 1.773438 -5.382812 C 2.070312 -5.75 2.386719 -6.015625 2.71875 -6.175781 C 3.050781 -6.335938 3.421875 -6.414062 3.828125 -6.414062 C 4.71875 -6.414062 5.320312 -6.105469 5.632812 -5.484375 C 5.804688 -5.144531 5.890625 -4.65625 5.890625 -4.023438 L 5.890625 0 L 4.816406 0 L 4.816406 -3.953125 C 4.816406 -4.335938 4.757812 -4.648438 4.648438 -4.882812 C 4.460938 -5.273438 4.117188 -5.46875 3.625 -5.46875 C 3.375 -5.46875 3.171875 -5.441406 3.011719 -5.390625 C 2.722656 -5.304688 2.46875 -5.132812 2.25 -4.875 C 2.074219 -4.667969 1.960938 -4.453125 1.90625 -4.234375 C 1.855469 -4.011719 1.828125 -3.695312 1.828125 -3.289062 L 1.828125 0 L 0.773438 0 Z M 0.773438 -6.273438 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 1.441406 -3.0625 C 1.441406 -2.390625 1.585938 -1.828125 1.867188 -1.375 C 2.152344 -0.921875 2.609375 -0.695312 3.242188 -0.695312 C 3.730469 -0.695312 4.128906 -0.90625 4.445312 -1.328125 C 4.757812 -1.746094 4.914062 -2.351562 4.914062 -3.132812 C 4.914062 -3.925781 4.753906 -4.515625 4.429688 -4.894531 C 4.105469 -5.277344 3.703125 -5.46875 3.226562 -5.46875 C 2.695312 -5.46875 2.265625 -5.265625 1.9375 -4.859375 C 1.605469 -4.453125 1.441406 -3.851562 1.441406 -3.0625 Z M 3.03125 -6.386719 C 3.511719 -6.386719 3.914062 -6.285156 4.234375 -6.082031 C 4.421875 -5.964844 4.636719 -5.757812 4.875 -5.46875 L 4.875 -8.636719 L 5.890625 -8.636719 L 5.890625 0 L 4.9375 0 L 4.9375 -0.875 C 4.691406 -0.488281 4.402344 -0.207031 4.066406 -0.0351562 C 3.730469 0.136719 3.34375 0.222656 2.914062 0.222656 C 2.214844 0.222656 1.609375 -0.0703125 1.09375 -0.660156 C 0.582031 -1.246094 0.328125 -2.03125 0.328125 -3.007812 C 0.328125 -3.921875 0.5625 -4.710938 1.027344 -5.382812 C 1.496094 -6.050781 2.164062 -6.386719 3.03125 -6.386719 Z M 3.03125 -6.386719 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 3.550781 -8.75 C 2.9375 -7.558594 2.539062 -6.679688 2.355469 -6.117188 C 2.078125 -5.261719 1.9375 -4.273438 1.9375 -3.152344 C 1.9375 -2.019531 2.097656 -0.984375 2.414062 -0.046875 C 2.609375 0.53125 2.992188 1.363281 3.570312 2.449219 L 2.859375 2.449219 C 2.289062 1.558594 1.9375 0.992188 1.796875 0.742188 C 1.660156 0.496094 1.515625 0.164062 1.351562 -0.257812 C 1.132812 -0.835938 0.984375 -1.453125 0.898438 -2.109375 C 0.855469 -2.449219 0.832031 -2.773438 0.832031 -3.082031 C 0.832031 -4.238281 1.015625 -5.265625 1.375 -6.171875 C 1.605469 -6.746094 2.085938 -7.601562 2.820312 -8.75 Z M 3.550781 -8.75 "/>
</symbol>
<symbol overflow="visible" id="glyph2-12">
<path style="stroke:none;" d="M 0.804688 -8.609375 L 1.859375 -8.609375 L 1.859375 0 L 0.804688 0 Z M 0.804688 -8.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-13">
<path style="stroke:none;" d="M 1.582031 -1.671875 C 1.582031 -1.367188 1.695312 -1.125 1.914062 -0.949219 C 2.136719 -0.773438 2.402344 -0.6875 2.707031 -0.6875 C 3.078125 -0.6875 3.4375 -0.773438 3.785156 -0.945312 C 4.371094 -1.230469 4.664062 -1.695312 4.664062 -2.34375 L 4.664062 -3.195312 C 4.535156 -3.113281 4.367188 -3.042969 4.164062 -2.988281 C 3.960938 -2.933594 3.765625 -2.894531 3.570312 -2.871094 L 2.929688 -2.789062 C 2.546875 -2.738281 2.257812 -2.65625 2.070312 -2.546875 C 1.746094 -2.363281 1.582031 -2.070312 1.582031 -1.671875 Z M 4.136719 -3.804688 C 4.378906 -3.835938 4.539062 -3.9375 4.625 -4.109375 C 4.671875 -4.203125 4.695312 -4.335938 4.695312 -4.511719 C 4.695312 -4.871094 4.566406 -5.132812 4.308594 -5.292969 C 4.054688 -5.457031 3.6875 -5.539062 3.210938 -5.539062 C 2.660156 -5.539062 2.269531 -5.390625 2.039062 -5.09375 C 1.910156 -4.929688 1.828125 -4.683594 1.789062 -4.359375 L 0.804688 -4.359375 C 0.824219 -5.132812 1.074219 -5.671875 1.554688 -5.972656 C 2.039062 -6.277344 2.597656 -6.429688 3.234375 -6.429688 C 3.972656 -6.429688 4.570312 -6.289062 5.03125 -6.007812 C 5.488281 -5.726562 5.71875 -5.289062 5.71875 -4.695312 L 5.71875 -1.078125 C 5.71875 -0.96875 5.742188 -0.882812 5.785156 -0.8125 C 5.832031 -0.746094 5.925781 -0.714844 6.070312 -0.714844 C 6.117188 -0.714844 6.171875 -0.71875 6.226562 -0.722656 C 6.285156 -0.730469 6.351562 -0.738281 6.414062 -0.75 L 6.414062 0.03125 C 6.25 0.078125 6.125 0.105469 6.039062 0.117188 C 5.953125 0.128906 5.835938 0.132812 5.6875 0.132812 C 5.324219 0.132812 5.0625 0.0078125 4.898438 -0.25 C 4.8125 -0.386719 4.75 -0.582031 4.71875 -0.832031 C 4.503906 -0.550781 4.195312 -0.304688 3.789062 -0.101562 C 3.386719 0.105469 2.945312 0.210938 2.460938 0.210938 C 1.878906 0.210938 1.402344 0.0351562 1.035156 -0.320312 C 0.664062 -0.671875 0.480469 -1.117188 0.480469 -1.648438 C 0.480469 -2.230469 0.664062 -2.679688 1.023438 -3 C 1.386719 -3.320312 1.867188 -3.515625 2.453125 -3.59375 Z M 4.136719 -3.804688 "/>
</symbol>
<symbol overflow="visible" id="glyph2-14">
<path style="stroke:none;" d="M 0.804688 -6.273438 L 1.804688 -6.273438 L 1.804688 -5.191406 C 1.886719 -5.402344 2.085938 -5.660156 2.40625 -5.960938 C 2.726562 -6.265625 3.097656 -6.414062 3.515625 -6.414062 C 3.535156 -6.414062 3.570312 -6.414062 3.617188 -6.410156 C 3.664062 -6.40625 3.742188 -6.398438 3.855469 -6.386719 L 3.855469 -5.273438 C 3.792969 -5.285156 3.734375 -5.292969 3.683594 -5.296875 C 3.628906 -5.300781 3.570312 -5.304688 3.507812 -5.304688 C 2.976562 -5.304688 2.570312 -5.132812 2.285156 -4.789062 C 2 -4.449219 1.859375 -4.054688 1.859375 -3.609375 L 1.859375 0 L 0.804688 0 Z M 0.804688 -6.273438 "/>
</symbol>
<symbol overflow="visible" id="glyph2-15">
<path style="stroke:none;" d="M 2.988281 -6.386719 C 3.480469 -6.386719 3.910156 -6.265625 4.277344 -6.023438 C 4.476562 -5.886719 4.679688 -5.6875 4.886719 -5.425781 L 4.886719 -6.21875 L 5.859375 -6.21875 L 5.859375 -0.507812 C 5.859375 0.289062 5.742188 0.914062 5.507812 1.375 C 5.070312 2.226562 4.242188 2.65625 3.03125 2.65625 C 2.355469 2.65625 1.785156 2.503906 1.324219 2.199219 C 0.863281 1.898438 0.605469 1.421875 0.550781 0.78125 L 1.625 0.78125 C 1.675781 1.0625 1.773438 1.277344 1.929688 1.429688 C 2.167969 1.664062 2.539062 1.78125 3.054688 1.78125 C 3.863281 1.78125 4.390625 1.496094 4.640625 0.925781 C 4.789062 0.589844 4.859375 -0.0078125 4.84375 -0.875 C 4.632812 -0.554688 4.382812 -0.3125 4.085938 -0.15625 C 3.789062 0 3.394531 0.078125 2.90625 0.078125 C 2.226562 0.078125 1.632812 -0.164062 1.121094 -0.648438 C 0.613281 -1.128906 0.359375 -1.929688 0.359375 -3.039062 C 0.359375 -4.089844 0.613281 -4.914062 1.128906 -5.5 C 1.640625 -6.089844 2.261719 -6.386719 2.988281 -6.386719 Z M 4.886719 -3.164062 C 4.886719 -3.941406 4.726562 -4.515625 4.40625 -4.890625 C 4.085938 -5.265625 3.679688 -5.453125 3.179688 -5.453125 C 2.4375 -5.453125 1.929688 -5.109375 1.65625 -4.414062 C 1.511719 -4.042969 1.441406 -3.554688 1.441406 -2.953125 C 1.441406 -2.246094 1.585938 -1.707031 1.871094 -1.339844 C 2.160156 -0.96875 2.546875 -0.785156 3.03125 -0.785156 C 3.789062 -0.785156 4.320312 -1.125 4.628906 -1.8125 C 4.800781 -2.199219 4.886719 -2.648438 4.886719 -3.164062 Z M 4.886719 -3.164062 "/>
</symbol>
<symbol overflow="visible" id="glyph2-16">
<path style="stroke:none;" d="M 0.773438 -6.246094 L 1.84375 -6.246094 L 1.84375 0 L 0.773438 0 Z M 0.773438 -8.609375 L 1.84375 -8.609375 L 1.84375 -7.414062 L 0.773438 -7.414062 Z M 0.773438 -8.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-17">
<path style="stroke:none;" d="M 0.691406 -8.636719 L 1.71875 -8.636719 L 1.71875 -5.515625 C 1.949219 -5.816406 2.222656 -6.042969 2.542969 -6.203125 C 2.863281 -6.359375 3.210938 -6.4375 3.585938 -6.4375 C 4.367188 -6.4375 5 -6.171875 5.488281 -5.632812 C 5.972656 -5.097656 6.21875 -4.304688 6.21875 -3.257812 C 6.21875 -2.265625 5.976562 -1.441406 5.496094 -0.785156 C 5.015625 -0.128906 4.351562 0.199219 3.5 0.199219 C 3.023438 0.199219 2.617188 0.0859375 2.289062 -0.148438 C 2.09375 -0.285156 1.886719 -0.5 1.664062 -0.804688 L 1.664062 0 L 0.691406 0 Z M 3.433594 -0.734375 C 4.003906 -0.734375 4.429688 -0.960938 4.714844 -1.414062 C 4.996094 -1.867188 5.140625 -2.460938 5.140625 -3.203125 C 5.140625 -3.863281 4.996094 -4.414062 4.714844 -4.84375 C 4.429688 -5.277344 4.015625 -5.496094 3.460938 -5.496094 C 2.980469 -5.496094 2.5625 -5.320312 2.199219 -4.960938 C 1.839844 -4.605469 1.65625 -4.023438 1.65625 -3.203125 C 1.65625 -2.613281 1.734375 -2.136719 1.882812 -1.769531 C 2.160156 -1.078125 2.675781 -0.734375 3.433594 -0.734375 Z M 3.433594 -0.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-18">
<path style="stroke:none;" d="M 0.984375 -8.027344 L 2.050781 -8.027344 L 2.050781 -6.273438 L 3.054688 -6.273438 L 3.054688 -5.414062 L 2.050781 -5.414062 L 2.050781 -1.320312 C 2.050781 -1.101562 2.125 -0.953125 2.273438 -0.878906 C 2.355469 -0.835938 2.492188 -0.8125 2.683594 -0.8125 C 2.734375 -0.8125 2.789062 -0.816406 2.847656 -0.816406 C 2.90625 -0.820312 2.976562 -0.824219 3.054688 -0.832031 L 3.054688 0 C 2.933594 0.0351562 2.804688 0.0625 2.675781 0.078125 C 2.542969 0.09375 2.402344 0.101562 2.25 0.101562 C 1.757812 0.101562 1.421875 -0.0273438 1.25 -0.277344 C 1.074219 -0.53125 0.984375 -0.859375 0.984375 -1.257812 L 0.984375 -5.414062 L 0.132812 -5.414062 L 0.132812 -6.273438 L 0.984375 -6.273438 Z M 0.984375 -8.027344 "/>
</symbol>
<symbol overflow="visible" id="glyph2-19">
<path style="stroke:none;" d="M 0.414062 2.449219 C 1.035156 1.238281 1.4375 0.355469 1.617188 -0.199219 C 1.890625 -1.039062 2.027344 -2.023438 2.027344 -3.152344 C 2.027344 -4.28125 1.867188 -5.3125 1.554688 -6.25 C 1.359375 -6.828125 0.972656 -7.664062 0.398438 -8.75 L 1.109375 -8.75 C 1.710938 -7.789062 2.074219 -7.195312 2.199219 -6.96875 C 2.328125 -6.746094 2.464844 -6.4375 2.613281 -6.039062 C 2.800781 -5.550781 2.933594 -5.070312 3.015625 -4.59375 C 3.09375 -4.117188 3.132812 -3.65625 3.132812 -3.21875 C 3.132812 -2.0625 2.953125 -1.03125 2.585938 -0.125 C 2.355469 0.457031 1.875 1.316406 1.148438 2.449219 Z M 0.414062 2.449219 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 90 506 L 467 506 L 467 509 L 90 509 Z M 90 506 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 90 490 L 499 490 L 499 494 L 90 494 Z M 90 490 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 90 475 L 563 475 L 563 479 L 90 479 Z M 90 475 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 90 460 L 390 460 L 390 463 L 90 463 Z M 90 460 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 90 445 L 526 445 L 526 448 L 90 448 Z M 90 445 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 90 429 L 596 429 L 596 433 L 90 433 Z M 90 429 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 90 414 L 533 414 L 533 418 L 90 418 Z M 90 414 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 90 399 L 531 399 L 531 402 L 90 402 Z M 90 399 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 90 383 L 456 383 L 456 387 L 90 387 Z M 90 383 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 90 368 L 567 368 L 567 372 L 90 372 Z M 90 368 "/>
</clipPath>
<clipPath id="clip11">
<path d="M 90 353 L 492 353 L 492 356 L 90 356 Z M 90 353 "/>
</clipPath>
<clipPath id="clip12">
<path d="M 90 338 L 468 338 L 468 341 L 90 341 Z M 90 338 "/>
</clipPath>
<clipPath id="clip13">
<path d="M 90 322 L 501 322 L 501 326 L 90 326 Z M 90 322 "/>
</clipPath>
<clipPath id="clip14">
<path d="M 90 307 L 387 307 L 387 310 L 90 310 Z M 90 307 "/>
</clipPath>
<clipPath id="clip15">
<path d="M 90 292 L 505 292 L 505 295 L 90 295 Z M 90 292 "/>
</clipPath>
<clipPath id="clip16">
<path d="M 90 276 L 516 276 L 516 280 L 90 280 Z M 90 276 "/>
</clipPath>
<clipPath id="clip17">
<path d="M 90 261 L 457 261 L 457 265 L 90 265 Z M 90 261 "/>
</clipPath>
<clipPath id="clip18">
<path d="M 90 246 L 456 246 L 456 249 L 90 249 Z M 90 246 "/>
</clipPath>
<clipPath id="clip19">
<path d="M 90 230 L 336 230 L 336 234 L 90 234 Z M 90 230 "/>
</clipPath>
<clipPath id="clip20">
<path d="M 90 215 L 533 215 L 533 219 L 90 219 Z M 90 215 "/>
</clipPath>
<clipPath id="clip21">
<path d="M 90 200 L 500 200 L 500 203 L 90 203 Z M 90 200 "/>
</clipPath>
<clipPath id="clip22">
<path d="M 90 185 L 492 185 L 492 188 L 90 188 Z M 90 185 "/>
</clipPath>
<clipPath id="clip23">
<path d="M 90 169 L 498 169 L 498 173 L 90 173 Z M 90 169 "/>
</clipPath>
<clipPath id="clip24">
<path d="M 90 154 L 523 154 L 523 158 L 90 158 Z M 90 154 "/>
</clipPath>
<clipPath id="clip25">
<path d="M 90 139 L 584 139 L 584 142 L 90 142 Z M 90 139 "/>
</clipPath>
<clipPath id="clip26">
<path d="M 90 123 L 474 123 L 474 127 L 90 127 Z M 90 123 "/>
</clipPath>
<clipPath id="clip27">
<path d="M 90 108 L 427 108 L 427 112 L 90 112 Z M 90 108 "/>
</clipPath>
<clipPath id="clip28">
<path d="M 90 93 L 462 93 L 462 96 L 90 96 Z M 90 93 "/>
</clipPath>
<clipPath id="clip29">
<path d="M 90 78 L 499 78 L 499 81 L 90 81 Z M 90 78 "/>
</clipPath>
<clipPath id="clip30">
<path d="M 90 503 L 299 503 L 299 507 L 90 507 Z M 90 503 "/>
</clipPath>
<clipPath id="clip31">
<path d="M 90 488 L 265 488 L 265 491 L 90 491 Z M 90 488 "/>
</clipPath>
<clipPath id="clip32">
<path d="M 90 473 L 319 473 L 319 476 L 90 476 Z M 90 473 "/>
</clipPath>
<clipPath id="clip33">
<path d="M 90 457 L 231 457 L 231 461 L 90 461 Z M 90 457 "/>
</clipPath>
<clipPath id="clip34">
<path d="M 90 442 L 230 442 L 230 446 L 90 446 Z M 90 442 "/>
</clipPath>
<clipPath id="clip35">
<path d="M 90 427 L 285 427 L 285 430 L 90 430 Z M 90 427 "/>
</clipPath>
<clipPath id="clip36">
<path d="M 90 411 L 245 411 L 245 415 L 90 415 Z M 90 411 "/>
</clipPath>
<clipPath id="clip37">
<path d="M 90 396 L 256 396 L 256 400 L 90 400 Z M 90 396 "/>
</clipPath>
<clipPath id="clip38">
<path d="M 90 381 L 191 381 L 191 384 L 90 384 Z M 90 381 "/>
</clipPath>
<clipPath id="clip39">
<path d="M 90 366 L 303 366 L 303 369 L 90 369 Z M 90 366 "/>
</clipPath>
<clipPath id="clip40">
<path d="M 90 350 L 287 350 L 287 354 L 90 354 Z M 90 350 "/>
</clipPath>
<clipPath id="clip41">
<path d="M 90 335 L 314 335 L 314 339 L 90 339 Z M 90 335 "/>
</clipPath>
<clipPath id="clip42">
<path d="M 90 320 L 312 320 L 312 323 L 90 323 Z M 90 320 "/>
</clipPath>
<clipPath id="clip43">
<path d="M 90 304 L 251 304 L 251 308 L 90 308 Z M 90 304 "/>
</clipPath>
<clipPath id="clip44">
<path d="M 90 289 L 288 289 L 288 293 L 90 293 Z M 90 289 "/>
</clipPath>
<clipPath id="clip45">
<path d="M 90 274 L 186 274 L 186 277 L 90 277 Z M 90 274 "/>
</clipPath>
<clipPath id="clip46">
<path d="M 90 259 L 253 259 L 253 262 L 90 262 Z M 90 259 "/>
</clipPath>
<clipPath id="clip47">
<path d="M 90 243 L 289 243 L 289 247 L 90 247 Z M 90 243 "/>
</clipPath>
<clipPath id="clip48">
<path d="M 90 228 L 212 228 L 212 231 L 90 231 Z M 90 228 "/>
</clipPath>
<clipPath id="clip49">
<path d="M 90 213 L 246 213 L 246 216 L 90 216 Z M 90 213 "/>
</clipPath>
<clipPath id="clip50">
<path d="M 90 197 L 288 197 L 288 201 L 90 201 Z M 90 197 "/>
</clipPath>
<clipPath id="clip51">
<path d="M 90 182 L 312 182 L 312 186 L 90 186 Z M 90 182 "/>
</clipPath>
<clipPath id="clip52">
<path d="M 90 167 L 314 167 L 314 170 L 90 170 Z M 90 167 "/>
</clipPath>
<clipPath id="clip53">
<path d="M 90 151 L 209 151 L 209 155 L 90 155 Z M 90 151 "/>
</clipPath>
<clipPath id="clip54">
<path d="M 90 136 L 288 136 L 288 140 L 90 140 Z M 90 136 "/>
</clipPath>
<clipPath id="clip55">
<path d="M 90 121 L 311 121 L 311 124 L 90 124 Z M 90 121 "/>
</clipPath>
<clipPath id="clip56">
<path d="M 90 106 L 297 106 L 297 109 L 90 109 Z M 90 106 "/>
</clipPath>
<clipPath id="clip57">
<path d="M 90 90 L 316 90 L 316 94 L 90 94 Z M 90 90 "/>
</clipPath>
<clipPath id="clip58">
<path d="M 90 75 L 290 75 L 290 79 L 90 79 Z M 90 75 "/>
</clipPath>
<clipPath id="clip59">
<path d="M 90 501 L 200 501 L 200 504 L 90 504 Z M 90 501 "/>
</clipPath>
<clipPath id="clip60">
<path d="M 90 485 L 183 485 L 183 489 L 90 489 Z M 90 485 "/>
</clipPath>
<clipPath id="clip61">
<path d="M 90 470 L 235 470 L 235 474 L 90 474 Z M 90 470 "/>
</clipPath>
<clipPath id="clip62">
<path d="M 90 455 L 164 455 L 164 458 L 90 458 Z M 90 455 "/>
</clipPath>
<clipPath id="clip63">
<path d="M 90 439 L 143 439 L 143 443 L 90 443 Z M 90 439 "/>
</clipPath>
<clipPath id="clip64">
<path d="M 90 424 L 195 424 L 195 428 L 90 428 Z M 90 424 "/>
</clipPath>
<clipPath id="clip65">
<path d="M 90 409 L 154 409 L 154 412 L 90 412 Z M 90 409 "/>
</clipPath>
<clipPath id="clip66">
<path d="M 90 394 L 165 394 L 165 397 L 90 397 Z M 90 394 "/>
</clipPath>
<clipPath id="clip67">
<path d="M 90 378 L 116 378 L 116 382 L 90 382 Z M 90 378 "/>
</clipPath>
<clipPath id="clip68">
<path d="M 90 363 L 207 363 L 207 367 L 90 367 Z M 90 363 "/>
</clipPath>
<clipPath id="clip69">
<path d="M 90 348 L 175 348 L 175 351 L 90 351 Z M 90 348 "/>
</clipPath>
<clipPath id="clip70">
<path d="M 90 332 L 204 332 L 204 336 L 90 336 Z M 90 332 "/>
</clipPath>
<clipPath id="clip71">
<path d="M 90 317 L 195 317 L 195 321 L 90 321 Z M 90 317 "/>
</clipPath>
<clipPath id="clip72">
<path d="M 90 302 L 143 302 L 143 305 L 90 305 Z M 90 302 "/>
</clipPath>
<clipPath id="clip73">
<path d="M 90 287 L 180 287 L 180 290 L 90 290 Z M 90 287 "/>
</clipPath>
<clipPath id="clip74">
<path d="M 90 271 L 92 271 L 92 275 L 90 275 Z M 90 271 "/>
</clipPath>
<clipPath id="clip75">
<path d="M 90 256 L 148 256 L 148 260 L 90 260 Z M 90 256 "/>
</clipPath>
<clipPath id="clip76">
<path d="M 90 241 L 185 241 L 185 244 L 90 244 Z M 90 241 "/>
</clipPath>
<clipPath id="clip77">
<path d="M 90 225 L 109 225 L 109 229 L 90 229 Z M 90 225 "/>
</clipPath>
<clipPath id="clip78">
<path d="M 90 210 L 140 210 L 140 214 L 90 214 Z M 90 210 "/>
</clipPath>
<clipPath id="clip79">
<path d="M 90 195 L 173 195 L 173 198 L 90 198 Z M 90 195 "/>
</clipPath>
<clipPath id="clip80">
<path d="M 90 180 L 189 180 L 189 183 L 90 183 Z M 90 180 "/>
</clipPath>
<clipPath id="clip81">
<path d="M 90 164 L 203 164 L 203 168 L 90 168 Z M 90 164 "/>
</clipPath>
<clipPath id="clip82">
<path d="M 90 149 L 127 149 L 127 152 L 90 152 Z M 90 149 "/>
</clipPath>
<clipPath id="clip83">
<path d="M 90 134 L 183 134 L 183 137 L 90 137 Z M 90 134 "/>
</clipPath>
<clipPath id="clip84">
<path d="M 90 118 L 202 118 L 202 122 L 90 122 Z M 90 118 "/>
</clipPath>
<clipPath id="clip85">
<path d="M 90 103 L 182 103 L 182 107 L 90 107 Z M 90 103 "/>
</clipPath>
<clipPath id="clip86">
<path d="M 90 88 L 201 88 L 201 91 L 90 91 Z M 90 88 "/>
</clipPath>
<clipPath id="clip87">
<path d="M 90 72 L 172 72 L 172 76 L 90 76 Z M 90 72 "/>
</clipPath>
</defs>
<g id="surface1">
<rect x="0" y="0" width="720" height="576" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 90 512.640625 L 648 512.640625 L 648 69.121094 L 90 69.121094 Z M 90 512.640625 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 508.816406 L 466.785156 508.816406 L 466.785156 506.269531 L -187026 506.269531 Z M -187026 508.816406 "/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 493.523438 L 498.582031 493.523438 L 498.582031 490.972656 L -187026 490.972656 Z M -187026 493.523438 "/>
</g>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 478.230469 L 562.992188 478.230469 L 562.992188 475.679688 L -187026 475.679688 Z M -187026 478.230469 "/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 462.933594 L 389.757812 462.933594 L 389.757812 460.386719 L -187026 460.386719 Z M -187026 462.933594 "/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 447.640625 L 525.953125 447.640625 L 525.953125 445.09375 L -187026 445.09375 Z M -187026 447.640625 "/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 432.347656 L 595.808594 432.347656 L 595.808594 429.796875 L -187026 429.796875 Z M -187026 432.347656 "/>
</g>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 417.054688 L 532.617188 417.054688 L 532.617188 414.503906 L -187026 414.503906 Z M -187026 417.054688 "/>
</g>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 401.761719 L 530.425781 401.761719 L 530.425781 399.210938 L -187026 399.210938 Z M -187026 401.761719 "/>
</g>
<g clip-path="url(#clip9)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 386.464844 L 455.621094 386.464844 L 455.621094 383.917969 L -187026 383.917969 Z M -187026 386.464844 "/>
</g>
<g clip-path="url(#clip10)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 371.171875 L 566.898438 371.171875 L 566.898438 368.625 L -187026 368.625 Z M -187026 371.171875 "/>
</g>
<g clip-path="url(#clip11)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 355.878906 L 491.808594 355.878906 L 491.808594 353.328125 L -187026 353.328125 Z M -187026 355.878906 "/>
</g>
<g clip-path="url(#clip12)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 340.585938 L 467.847656 340.585938 L 467.847656 338.035156 L -187026 338.035156 Z M -187026 340.585938 "/>
</g>
<g clip-path="url(#clip13)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 325.292969 L 500.957031 325.292969 L 500.957031 322.742188 L -187026 322.742188 Z M -187026 325.292969 "/>
</g>
<g clip-path="url(#clip14)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 309.996094 L 386.554688 309.996094 L 386.554688 307.449219 L -187026 307.449219 Z M -187026 309.996094 "/>
</g>
<g clip-path="url(#clip15)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 294.703125 L 504.402344 294.703125 L 504.402344 292.15625 L -187026 292.15625 Z M -187026 294.703125 "/>
</g>
<g clip-path="url(#clip16)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 279.410156 L 515.523438 279.410156 L 515.523438 276.859375 L -187026 276.859375 Z M -187026 279.410156 "/>
</g>
<g clip-path="url(#clip17)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 264.117188 L 456.863281 264.117188 L 456.863281 261.566406 L -187026 261.566406 Z M -187026 264.117188 "/>
</g>
<g clip-path="url(#clip18)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 248.820312 L 455.734375 248.820312 L 455.734375 246.273438 L -187026 246.273438 Z M -187026 248.820312 "/>
</g>
<g clip-path="url(#clip19)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 233.527344 L 335.738281 233.527344 L 335.738281 230.980469 L -187026 230.980469 Z M -187026 233.527344 "/>
</g>
<g clip-path="url(#clip20)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 218.234375 L 532.042969 218.234375 L 532.042969 215.683594 L -187026 215.683594 Z M -187026 218.234375 "/>
</g>
<g clip-path="url(#clip21)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 202.941406 L 499.375 202.941406 L 499.375 200.390625 L -187026 200.390625 Z M -187026 202.941406 "/>
</g>
<g clip-path="url(#clip22)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 187.648438 L 491.535156 187.648438 L 491.535156 185.097656 L -187026 185.097656 Z M -187026 187.648438 "/>
</g>
<g clip-path="url(#clip23)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 172.351562 L 497.640625 172.351562 L 497.640625 169.804688 L -187026 169.804688 Z M -187026 172.351562 "/>
</g>
<g clip-path="url(#clip24)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 157.058594 L 522.78125 157.058594 L 522.78125 154.511719 L -187026 154.511719 Z M -187026 157.058594 "/>
</g>
<g clip-path="url(#clip25)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 141.765625 L 583.578125 141.765625 L 583.578125 139.214844 L -187026 139.214844 Z M -187026 141.765625 "/>
</g>
<g clip-path="url(#clip26)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 126.472656 L 473.785156 126.472656 L 473.785156 123.921875 L -187026 123.921875 Z M -187026 126.472656 "/>
</g>
<g clip-path="url(#clip27)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 111.179688 L 426.511719 111.179688 L 426.511719 108.628906 L -187026 108.628906 Z M -187026 111.179688 "/>
</g>
<g clip-path="url(#clip28)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 95.882812 L 461.113281 95.882812 L 461.113281 93.335938 L -187026 93.335938 Z M -187026 95.882812 "/>
</g>
<g clip-path="url(#clip29)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M -187026 80.589844 L 498.378906 80.589844 L 498.378906 78.042969 L -187026 78.042969 Z M -187026 80.589844 "/>
</g>
<g clip-path="url(#clip30)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 506.269531 L 298.695312 506.269531 L 298.695312 503.71875 L -187026 503.71875 Z M -187026 506.269531 "/>
</g>
<g clip-path="url(#clip31)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 490.972656 L 264.9375 490.972656 L 264.9375 488.425781 L -187026 488.425781 Z M -187026 490.972656 "/>
</g>
<g clip-path="url(#clip32)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 475.679688 L 318.792969 475.679688 L 318.792969 473.132812 L -187026 473.132812 Z M -187026 475.679688 "/>
</g>
<g clip-path="url(#clip33)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 460.386719 L 230.4375 460.386719 L 230.4375 457.835938 L -187026 457.835938 Z M -187026 460.386719 "/>
</g>
<g clip-path="url(#clip34)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 445.09375 L 229.839844 445.09375 L 229.839844 442.542969 L -187026 442.542969 Z M -187026 445.09375 "/>
</g>
<g clip-path="url(#clip35)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 429.796875 L 284.511719 429.796875 L 284.511719 427.25 L -187026 427.25 Z M -187026 429.796875 "/>
</g>
<g clip-path="url(#clip36)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 414.503906 L 244.207031 414.503906 L 244.207031 411.957031 L -187026 411.957031 Z M -187026 414.503906 "/>
</g>
<g clip-path="url(#clip37)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 399.210938 L 255.320312 399.210938 L 255.320312 396.660156 L -187026 396.660156 Z M -187026 399.210938 "/>
</g>
<g clip-path="url(#clip38)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 383.917969 L 190.621094 383.917969 L 190.621094 381.367188 L -187026 381.367188 Z M -187026 383.917969 "/>
</g>
<g clip-path="url(#clip39)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 368.625 L 302.074219 368.625 L 302.074219 366.074219 L -187026 366.074219 Z M -187026 368.625 "/>
</g>
<g clip-path="url(#clip40)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 353.328125 L 286.425781 353.328125 L 286.425781 350.78125 L -187026 350.78125 Z M -187026 353.328125 "/>
</g>
<g clip-path="url(#clip41)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 338.035156 L 313.664062 338.035156 L 313.664062 335.488281 L -187026 335.488281 Z M -187026 338.035156 "/>
</g>
<g clip-path="url(#clip42)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 322.742188 L 311.550781 322.742188 L 311.550781 320.191406 L -187026 320.191406 Z M -187026 322.742188 "/>
</g>
<g clip-path="url(#clip43)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 307.449219 L 250.515625 307.449219 L 250.515625 304.898438 L -187026 304.898438 Z M -187026 307.449219 "/>
</g>
<g clip-path="url(#clip44)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 292.15625 L 287.914062 292.15625 L 287.914062 289.605469 L -187026 289.605469 Z M -187026 292.15625 "/>
</g>
<g clip-path="url(#clip45)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 276.859375 L 185.453125 276.859375 L 185.453125 274.3125 L -187026 274.3125 Z M -187026 276.859375 "/>
</g>
<g clip-path="url(#clip46)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 261.566406 L 252.839844 261.566406 L 252.839844 259.019531 L -187026 259.019531 Z M -187026 261.566406 "/>
</g>
<g clip-path="url(#clip47)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 246.273438 L 288.117188 246.273438 L 288.117188 243.722656 L -187026 243.722656 Z M -187026 246.273438 "/>
</g>
<g clip-path="url(#clip48)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 230.980469 L 211.175781 230.980469 L 211.175781 228.429688 L -187026 228.429688 Z M -187026 230.980469 "/>
</g>
<g clip-path="url(#clip49)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 215.683594 L 245.890625 215.683594 L 245.890625 213.136719 L -187026 213.136719 Z M -187026 215.683594 "/>
</g>
<g clip-path="url(#clip50)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 200.390625 L 287.234375 200.390625 L 287.234375 197.84375 L -187026 197.84375 Z M -187026 200.390625 "/>
</g>
<g clip-path="url(#clip51)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 185.097656 L 311.074219 185.097656 L 311.074219 182.550781 L -187026 182.550781 Z M -187026 185.097656 "/>
</g>
<g clip-path="url(#clip52)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 169.804688 L 313.03125 169.804688 L 313.03125 167.253906 L -187026 167.253906 Z M -187026 169.804688 "/>
</g>
<g clip-path="url(#clip53)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 154.511719 L 208.394531 154.511719 L 208.394531 151.960938 L -187026 151.960938 Z M -187026 154.511719 "/>
</g>
<g clip-path="url(#clip54)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 139.214844 L 287.628906 139.214844 L 287.628906 136.667969 L -187026 136.667969 Z M -187026 139.214844 "/>
</g>
<g clip-path="url(#clip55)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 123.921875 L 310.933594 123.921875 L 310.933594 121.375 L -187026 121.375 Z M -187026 123.921875 "/>
</g>
<g clip-path="url(#clip56)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 108.628906 L 296.570312 108.628906 L 296.570312 106.078125 L -187026 106.078125 Z M -187026 108.628906 "/>
</g>
<g clip-path="url(#clip57)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 93.335938 L 315.777344 93.335938 L 315.777344 90.785156 L -187026 90.785156 Z M -187026 93.335938 "/>
</g>
<g clip-path="url(#clip58)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M -187026 78.042969 L 289.710938 78.042969 L 289.710938 75.492188 L -187026 75.492188 Z M -187026 78.042969 "/>
</g>
<g clip-path="url(#clip59)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 503.71875 L 199.921875 503.71875 L 199.921875 501.167969 L -187026 501.167969 Z M -187026 503.71875 "/>
</g>
<g clip-path="url(#clip60)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 488.425781 L 182.566406 488.425781 L 182.566406 485.875 L -187026 485.875 Z M -187026 488.425781 "/>
</g>
<g clip-path="url(#clip61)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 473.132812 L 234.464844 473.132812 L 234.464844 470.582031 L -187026 470.582031 Z M -187026 473.132812 "/>
</g>
<g clip-path="url(#clip62)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 457.835938 L 163.722656 457.835938 L 163.722656 455.289062 L -187026 455.289062 Z M -187026 457.835938 "/>
</g>
<g clip-path="url(#clip63)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 442.542969 L 142.792969 442.542969 L 142.792969 439.996094 L -187026 439.996094 Z M -187026 442.542969 "/>
</g>
<g clip-path="url(#clip64)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 427.25 L 194.703125 427.25 L 194.703125 424.699219 L -187026 424.699219 Z M -187026 427.25 "/>
</g>
<g clip-path="url(#clip65)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 411.957031 L 153.359375 411.957031 L 153.359375 409.40625 L -187026 409.40625 Z M -187026 411.957031 "/>
</g>
<g clip-path="url(#clip66)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 396.660156 L 164.125 396.660156 L 164.125 394.113281 L -187026 394.113281 Z M -187026 396.660156 "/>
</g>
<g clip-path="url(#clip67)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 381.367188 L 115.796875 381.367188 L 115.796875 378.820312 L -187026 378.820312 Z M -187026 381.367188 "/>
</g>
<g clip-path="url(#clip68)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 366.074219 L 206.929688 366.074219 L 206.929688 363.527344 L -187026 363.527344 Z M -187026 366.074219 "/>
</g>
<g clip-path="url(#clip69)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 350.78125 L 174.304688 350.78125 L 174.304688 348.230469 L -187026 348.230469 Z M -187026 350.78125 "/>
</g>
<g clip-path="url(#clip70)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 335.488281 L 203.609375 335.488281 L 203.609375 332.9375 L -187026 332.9375 Z M -187026 335.488281 "/>
</g>
<g clip-path="url(#clip71)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 320.191406 L 194.257812 320.191406 L 194.257812 317.644531 L -187026 317.644531 Z M -187026 320.191406 "/>
</g>
<g clip-path="url(#clip72)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 304.898438 L 142.210938 304.898438 L 142.210938 302.351562 L -187026 302.351562 Z M -187026 304.898438 "/>
</g>
<g clip-path="url(#clip73)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 289.605469 L 179.027344 289.605469 L 179.027344 287.054688 L -187026 287.054688 Z M -187026 289.605469 "/>
</g>
<g clip-path="url(#clip74)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 274.3125 L 91.390625 274.3125 L 91.390625 271.761719 L -187026 271.761719 Z M -187026 274.3125 "/>
</g>
<g clip-path="url(#clip75)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 259.019531 L 147.109375 259.019531 L 147.109375 256.46875 L -187026 256.46875 Z M -187026 259.019531 "/>
</g>
<g clip-path="url(#clip76)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 243.722656 L 184.417969 243.722656 L 184.417969 241.175781 L -187026 241.175781 Z M -187026 243.722656 "/>
</g>
<g clip-path="url(#clip77)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 228.429688 L 108.292969 228.429688 L 108.292969 225.882812 L -187026 225.882812 Z M -187026 228.429688 "/>
</g>
<g clip-path="url(#clip78)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 213.136719 L 139.746094 213.136719 L 139.746094 210.585938 L -187026 210.585938 Z M -187026 213.136719 "/>
</g>
<g clip-path="url(#clip79)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 197.84375 L 172.304688 197.84375 L 172.304688 195.292969 L -187026 195.292969 Z M -187026 197.84375 "/>
</g>
<g clip-path="url(#clip80)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 182.550781 L 188.667969 182.550781 L 188.667969 180 L -187026 180 Z M -187026 182.550781 "/>
</g>
<g clip-path="url(#clip81)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 167.253906 L 202.613281 167.253906 L 202.613281 164.707031 L -187026 164.707031 Z M -187026 167.253906 "/>
</g>
<g clip-path="url(#clip82)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 151.960938 L 126.421875 151.960938 L 126.421875 149.414062 L -187026 149.414062 Z M -187026 151.960938 "/>
</g>
<g clip-path="url(#clip83)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 136.667969 L 182.71875 136.667969 L 182.71875 134.117188 L -187026 134.117188 Z M -187026 136.667969 "/>
</g>
<g clip-path="url(#clip84)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 121.375 L 201.816406 121.375 L 201.816406 118.824219 L -187026 118.824219 Z M -187026 121.375 "/>
</g>
<g clip-path="url(#clip85)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 106.078125 L 181.117188 106.078125 L 181.117188 103.53125 L -187026 103.53125 Z M -187026 106.078125 "/>
</g>
<g clip-path="url(#clip86)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 90.785156 L 200.195312 90.785156 L 200.195312 88.238281 L -187026 88.238281 Z M -187026 90.785156 "/>
</g>
<g clip-path="url(#clip87)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M -187026 75.492188 L 171.855469 75.492188 L 171.855469 72.945312 L -187026 72.945312 Z M -187026 75.492188 "/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 512.640625 L 90 516.140625 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="81" y="527.578125"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="87.363281" y="527.578125"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="93.820312" y="523.75"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276 512.640625 L 276 516.140625 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="267" y="527.492188"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="273.363281" y="527.492188"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="279.820312" y="523.664062"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 462 512.640625 L 462 516.140625 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="453" y="527.578125"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="459.363281" y="527.578125"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="465.820312" y="523.75"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 648 512.640625 L 648 516.140625 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="639" y="527.578125"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="645.363281" y="527.578125"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="651.820312" y="523.75"/>
</g>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.992188 512.640625 L 145.992188 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.746094 512.640625 L 178.746094 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.984375 512.640625 L 201.984375 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.007812 512.640625 L 220.007812 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.734375 512.640625 L 234.734375 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.1875 512.640625 L 247.1875 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.976562 512.640625 L 257.976562 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.488281 512.640625 L 267.488281 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.992188 512.640625 L 331.992188 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.746094 512.640625 L 364.746094 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 387.984375 512.640625 L 387.984375 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 406.007812 512.640625 L 406.007812 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 420.734375 512.640625 L 420.734375 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.1875 512.640625 L 433.1875 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 443.976562 512.640625 L 443.976562 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 453.488281 512.640625 L 453.488281 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 517.992188 512.640625 L 517.992188 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 550.746094 512.640625 L 550.746094 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 573.984375 512.640625 L 573.984375 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 592.007812 512.640625 L 592.007812 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 606.734375 512.640625 L 606.734375 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 619.1875 512.640625 L 619.1875 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 629.976562 512.640625 L 629.976562 514.640625 "/>
<path style="fill:none;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 639.488281 512.640625 L 639.488281 514.640625 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="352.75" y="541.886719"/>
<use xlink:href="#glyph0-4" x="355.52832" y="541.886719"/>
<use xlink:href="#glyph0-5" x="357.75" y="541.886719"/>
<use xlink:href="#glyph0-6" x="366.080078" y="541.886719"/>
<use xlink:href="#glyph0-7" x="371.641602" y="541.886719"/>
<use xlink:href="#glyph0-8" x="374.419922" y="541.886719"/>
<use xlink:href="#glyph0-9" x="377.75" y="541.886719"/>
<use xlink:href="#glyph0-10" x="382.75" y="541.886719"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 504.992188 L 86.5 504.992188 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="42.03125" y="508.578125"/>
<use xlink:href="#glyph0-12" x="47.03125" y="508.578125"/>
<use xlink:href="#glyph0-13" x="52.592773" y="508.578125"/>
<use xlink:href="#glyph0-4" x="58.154297" y="508.578125"/>
<use xlink:href="#glyph0-3" x="60.375977" y="508.578125"/>
<use xlink:href="#glyph0-12" x="63.154297" y="508.578125"/>
<use xlink:href="#glyph0-14" x="68.71582" y="508.578125"/>
<use xlink:href="#glyph0-4" x="70.9375" y="508.578125"/>
<use xlink:href="#glyph0-15" x="73.15918" y="508.578125"/>
<use xlink:href="#glyph0-6" x="78.15918" y="508.578125"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 489.699219 L 86.5 489.699219 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="70.183594" y="493.285156"/>
<use xlink:href="#glyph0-12" x="75.183594" y="493.285156"/>
<use xlink:href="#glyph0-3" x="80.745117" y="493.285156"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 474.40625 L 86.5 474.40625 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="46.402344" y="477.992188"/>
<use xlink:href="#glyph0-16" x="51.402344" y="477.992188"/>
<use xlink:href="#glyph0-17" x="56.963867" y="477.992188"/>
<use xlink:href="#glyph0-3" x="62.525391" y="477.992188"/>
<use xlink:href="#glyph0-12" x="65.303711" y="477.992188"/>
<use xlink:href="#glyph0-4" x="70.865234" y="477.992188"/>
<use xlink:href="#glyph0-17" x="73.086914" y="477.992188"/>
<use xlink:href="#glyph0-9" x="78.648438" y="477.992188"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 459.113281 L 86.5 459.113281 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="15.085938" y="462.757812"/>
<use xlink:href="#glyph0-16" x="20.085938" y="462.757812"/>
<use xlink:href="#glyph0-17" x="25.647461" y="462.757812"/>
<use xlink:href="#glyph0-3" x="31.208984" y="462.757812"/>
<use xlink:href="#glyph0-12" x="33.987305" y="462.757812"/>
<use xlink:href="#glyph0-4" x="39.548828" y="462.757812"/>
<use xlink:href="#glyph0-17" x="41.770508" y="462.757812"/>
<use xlink:href="#glyph0-9" x="47.332031" y="462.757812"/>
<use xlink:href="#glyph0-8" x="52.332031" y="462.757812"/>
<use xlink:href="#glyph0-18" x="55.662109" y="462.757812"/>
<use xlink:href="#glyph0-6" x="58.992188" y="462.757812"/>
<use xlink:href="#glyph0-19" x="64.553711" y="462.757812"/>
<use xlink:href="#glyph0-6" x="70.115234" y="462.757812"/>
<use xlink:href="#glyph0-20" x="75.676758" y="462.757812"/>
<use xlink:href="#glyph0-10" x="80.676758" y="462.757812"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 443.816406 L 86.5 443.816406 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="59.058594" y="447.40625"/>
<use xlink:href="#glyph0-16" x="64.058594" y="447.40625"/>
<use xlink:href="#glyph0-21" x="69.620117" y="447.40625"/>
<use xlink:href="#glyph0-17" x="75.181641" y="447.40625"/>
<use xlink:href="#glyph0-3" x="80.743164" y="447.40625"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 428.523438 L 86.5 428.523438 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="44.539062" y="432.109375"/>
<use xlink:href="#glyph0-17" x="50.100586" y="432.109375"/>
<use xlink:href="#glyph0-22" x="55.662109" y="432.109375"/>
<use xlink:href="#glyph0-9" x="61.223633" y="432.109375"/>
<use xlink:href="#glyph0-23" x="66.223633" y="432.109375"/>
<use xlink:href="#glyph0-4" x="73.445312" y="432.109375"/>
<use xlink:href="#glyph0-3" x="75.666992" y="432.109375"/>
<use xlink:href="#glyph0-24" x="78.445312" y="432.109375"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 413.230469 L 86.5 413.230469 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="67.667969" y="416.816406"/>
<use xlink:href="#glyph0-4" x="70.446289" y="416.816406"/>
<use xlink:href="#glyph0-17" x="72.667969" y="416.816406"/>
<use xlink:href="#glyph0-22" x="78.229492" y="416.816406"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 397.9375 L 86.5 397.9375 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-19" x="69.632812" y="401.460938"/>
<use xlink:href="#glyph0-6" x="75.194336" y="401.460938"/>
<use xlink:href="#glyph0-3" x="80.755859" y="401.460938"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 382.644531 L 86.5 382.644531 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="44.789062" y="386.230469"/>
<use xlink:href="#glyph0-13" x="49.789062" y="386.230469"/>
<use xlink:href="#glyph0-14" x="55.350586" y="386.230469"/>
<use xlink:href="#glyph0-4" x="57.572266" y="386.230469"/>
<use xlink:href="#glyph0-3" x="59.793945" y="386.230469"/>
<use xlink:href="#glyph0-26" x="62.572266" y="386.230469"/>
<use xlink:href="#glyph0-27" x="68.412109" y="386.230469"/>
<use xlink:href="#glyph0-16" x="70.633789" y="386.230469"/>
<use xlink:href="#glyph0-4" x="76.195312" y="386.230469"/>
<use xlink:href="#glyph0-17" x="78.416992" y="386.230469"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 367.347656 L 86.5 367.347656 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="70.976562" y="370.933594"/>
<use xlink:href="#glyph0-6" x="73.198242" y="370.933594"/>
<use xlink:href="#glyph0-17" x="78.759766" y="370.933594"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 352.054688 L 86.5 352.054688 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="66.121094" y="355.640625"/>
<use xlink:href="#glyph0-27" x="68.342773" y="355.640625"/>
<use xlink:href="#glyph0-21" x="70.564453" y="355.640625"/>
<use xlink:href="#glyph0-9" x="76.125977" y="355.640625"/>
<use xlink:href="#glyph0-3" x="81.125977" y="355.640625"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 336.761719 L 86.5 336.761719 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="59.890625" y="340.347656"/>
<use xlink:href="#glyph0-16" x="62.112305" y="340.347656"/>
<use xlink:href="#glyph0-23" x="67.673828" y="340.347656"/>
<use xlink:href="#glyph0-6" x="74.895508" y="340.347656"/>
<use xlink:href="#glyph0-18" x="80.457031" y="340.347656"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 321.46875 L 86.5 321.46875 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-14" x="62.9375" y="325.054688"/>
<use xlink:href="#glyph0-9" x="65.15918" y="325.054688"/>
<use xlink:href="#glyph0-3" x="70.15918" y="325.054688"/>
<use xlink:href="#glyph0-18" x="72.9375" y="325.054688"/>
<use xlink:href="#glyph0-4" x="76.267578" y="325.054688"/>
<use xlink:href="#glyph0-13" x="78.489258" y="325.054688"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 306.171875 L 86.5 306.171875 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="57.066406" y="309.761719"/>
<use xlink:href="#glyph0-12" x="65.396484" y="309.761719"/>
<use xlink:href="#glyph0-3" x="70.958008" y="309.761719"/>
<use xlink:href="#glyph0-11" x="73.736328" y="309.761719"/>
<use xlink:href="#glyph0-24" x="78.736328" y="309.761719"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 290.878906 L 86.5 290.878906 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="67.546875" y="294.480469"/>
<use xlink:href="#glyph0-12" x="73.108398" y="294.480469"/>
<use xlink:href="#glyph0-22" x="78.669922" y="294.480469"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 275.585938 L 86.5 275.585938 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="55.546875" y="279.171875"/>
<use xlink:href="#glyph0-6" x="58.876953" y="279.171875"/>
<use xlink:href="#glyph0-13" x="64.438477" y="279.171875"/>
<use xlink:href="#glyph0-6" x="70" y="279.171875"/>
<use xlink:href="#glyph0-12" x="75.561523" y="279.171875"/>
<use xlink:href="#glyph0-3" x="81.123047" y="279.171875"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 260.292969 L 86.5 260.292969 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="14.90625" y="263.9375"/>
<use xlink:href="#glyph0-6" x="18.236328" y="263.9375"/>
<use xlink:href="#glyph0-13" x="23.797852" y="263.9375"/>
<use xlink:href="#glyph0-14" x="29.359375" y="263.9375"/>
<use xlink:href="#glyph0-12" x="31.581055" y="263.9375"/>
<use xlink:href="#glyph0-11" x="37.142578" y="263.9375"/>
<use xlink:href="#glyph0-6" x="42.142578" y="263.9375"/>
<use xlink:href="#glyph0-8" x="47.704102" y="263.9375"/>
<use xlink:href="#glyph0-22" x="51.03418" y="263.9375"/>
<use xlink:href="#glyph0-6" x="56.595703" y="263.9375"/>
<use xlink:href="#glyph0-25" x="62.157227" y="263.9375"/>
<use xlink:href="#glyph0-12" x="64.935547" y="263.9375"/>
<use xlink:href="#glyph0-21" x="70.49707" y="263.9375"/>
<use xlink:href="#glyph0-14" x="76.058594" y="263.9375"/>
<use xlink:href="#glyph0-3" x="78.280273" y="263.9375"/>
<use xlink:href="#glyph0-10" x="81.058594" y="263.9375"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 245 L 86.5 245 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="6.011719" y="248.644531"/>
<use xlink:href="#glyph0-6" x="9.341797" y="248.644531"/>
<use xlink:href="#glyph0-13" x="14.90332" y="248.644531"/>
<use xlink:href="#glyph0-14" x="20.464844" y="248.644531"/>
<use xlink:href="#glyph0-12" x="22.686523" y="248.644531"/>
<use xlink:href="#glyph0-11" x="28.248047" y="248.644531"/>
<use xlink:href="#glyph0-6" x="33.248047" y="248.644531"/>
<use xlink:href="#glyph0-8" x="38.80957" y="248.644531"/>
<use xlink:href="#glyph0-17" x="42.139648" y="248.644531"/>
<use xlink:href="#glyph0-16" x="47.701172" y="248.644531"/>
<use xlink:href="#glyph0-7" x="53.262695" y="248.644531"/>
<use xlink:href="#glyph0-18" x="56.041016" y="248.644531"/>
<use xlink:href="#glyph0-6" x="59.371094" y="248.644531"/>
<use xlink:href="#glyph0-19" x="64.932617" y="248.644531"/>
<use xlink:href="#glyph0-6" x="70.494141" y="248.644531"/>
<use xlink:href="#glyph0-20" x="76.055664" y="248.644531"/>
<use xlink:href="#glyph0-10" x="81.055664" y="248.644531"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 229.703125 L 86.5 229.703125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="19.914062" y="233.351562"/>
<use xlink:href="#glyph0-6" x="23.244141" y="233.351562"/>
<use xlink:href="#glyph0-13" x="28.805664" y="233.351562"/>
<use xlink:href="#glyph0-14" x="34.367188" y="233.351562"/>
<use xlink:href="#glyph0-12" x="36.588867" y="233.351562"/>
<use xlink:href="#glyph0-11" x="42.150391" y="233.351562"/>
<use xlink:href="#glyph0-6" x="47.150391" y="233.351562"/>
<use xlink:href="#glyph0-8" x="52.711914" y="233.351562"/>
<use xlink:href="#glyph0-18" x="56.041992" y="233.351562"/>
<use xlink:href="#glyph0-6" x="59.37207" y="233.351562"/>
<use xlink:href="#glyph0-19" x="64.933594" y="233.351562"/>
<use xlink:href="#glyph0-6" x="70.495117" y="233.351562"/>
<use xlink:href="#glyph0-20" x="76.056641" y="233.351562"/>
<use xlink:href="#glyph0-10" x="81.056641" y="233.351562"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 214.410156 L 86.5 214.410156 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="64.871094" y="217.996094"/>
<use xlink:href="#glyph0-25" x="68.201172" y="217.996094"/>
<use xlink:href="#glyph0-4" x="70.979492" y="217.996094"/>
<use xlink:href="#glyph0-17" x="73.201172" y="217.996094"/>
<use xlink:href="#glyph0-22" x="78.762695" y="217.996094"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 199.117188 L 86.5 199.117188 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="65.011719" y="202.703125"/>
<use xlink:href="#glyph0-27" x="68.341797" y="202.703125"/>
<use xlink:href="#glyph0-21" x="70.563477" y="202.703125"/>
<use xlink:href="#glyph0-9" x="76.125" y="202.703125"/>
<use xlink:href="#glyph0-3" x="81.125" y="202.703125"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 183.824219 L 86.5 183.824219 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="61.828125" y="187.410156"/>
<use xlink:href="#glyph0-9" x="65.158203" y="187.410156"/>
<use xlink:href="#glyph0-3" x="70.158203" y="187.410156"/>
<use xlink:href="#glyph0-18" x="72.936523" y="187.410156"/>
<use xlink:href="#glyph0-4" x="76.266602" y="187.410156"/>
<use xlink:href="#glyph0-13" x="78.488281" y="187.410156"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 168.53125 L 86.5 168.53125 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="63.75" y="172.117188"/>
<use xlink:href="#glyph0-14" x="68.75" y="172.117188"/>
<use xlink:href="#glyph0-4" x="70.97168" y="172.117188"/>
<use xlink:href="#glyph0-11" x="73.193359" y="172.117188"/>
<use xlink:href="#glyph0-6" x="78.193359" y="172.117188"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 153.234375 L 86.5 153.234375 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="65.773438" y="156.824219"/>
<use xlink:href="#glyph0-13" x="70.773438" y="156.824219"/>
<use xlink:href="#glyph0-14" x="76.334961" y="156.824219"/>
<use xlink:href="#glyph0-4" x="78.556641" y="156.824219"/>
<use xlink:href="#glyph0-3" x="80.77832" y="156.824219"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 137.941406 L 86.5 137.941406 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="41.746094" y="141.527344"/>
<use xlink:href="#glyph0-3" x="46.746094" y="141.527344"/>
<use xlink:href="#glyph0-12" x="49.524414" y="141.527344"/>
<use xlink:href="#glyph0-18" x="55.085938" y="141.527344"/>
<use xlink:href="#glyph0-3" x="58.416016" y="141.527344"/>
<use xlink:href="#glyph0-9" x="61.194336" y="141.527344"/>
<use xlink:href="#glyph0-23" x="66.194336" y="141.527344"/>
<use xlink:href="#glyph0-4" x="73.416016" y="141.527344"/>
<use xlink:href="#glyph0-3" x="75.637695" y="141.527344"/>
<use xlink:href="#glyph0-24" x="78.416016" y="141.527344"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 122.648438 L 86.5 122.648438 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-9" x="64.8125" y="126.234375"/>
<use xlink:href="#glyph0-3" x="69.8125" y="126.234375"/>
<use xlink:href="#glyph0-18" x="72.59082" y="126.234375"/>
<use xlink:href="#glyph0-4" x="75.920898" y="126.234375"/>
<use xlink:href="#glyph0-13" x="78.142578" y="126.234375"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 107.355469 L 86.5 107.355469 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="67.984375" y="110.941406"/>
<use xlink:href="#glyph0-4" x="70.762695" y="110.941406"/>
<use xlink:href="#glyph0-3" x="72.984375" y="110.941406"/>
<use xlink:href="#glyph0-14" x="75.762695" y="110.941406"/>
<use xlink:href="#glyph0-6" x="77.984375" y="110.941406"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 92.0625 L 86.5 92.0625 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-21" x="58.164062" y="95.648438"/>
<use xlink:href="#glyph0-13" x="63.725586" y="95.648438"/>
<use xlink:href="#glyph0-13" x="69.287109" y="95.648438"/>
<use xlink:href="#glyph0-6" x="74.848633" y="95.648438"/>
<use xlink:href="#glyph0-18" x="80.410156" y="95.648438"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 76.765625 L 86.5 76.765625 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="69.484375" y="80.351562"/>
<use xlink:href="#glyph0-25" x="74.484375" y="80.351562"/>
<use xlink:href="#glyph0-4" x="77.262695" y="80.351562"/>
<use xlink:href="#glyph0-14" x="79.484375" y="80.351562"/>
<use xlink:href="#glyph0-14" x="81.706055" y="80.351562"/>
</g>
<path style="fill:none;stroke-width:0.8;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 512.640625 L 90 69.121094 "/>
<path style="fill:none;stroke-width:0.8;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 648 512.640625 L 648 69.121094 "/>
<path style="fill:none;stroke-width:0.8;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 512.640625 L 648 512.640625 "/>
<path style="fill:none;stroke-width:0.8;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90 69.121094 L 648 69.121094 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="289.929688" y="63.121094"/>
<use xlink:href="#glyph2-2" x="298.595703" y="63.121094"/>
<use xlink:href="#glyph2-3" x="305.269531" y="63.121094"/>
<use xlink:href="#glyph2-4" x="313.935547" y="63.121094"/>
<use xlink:href="#glyph2-5" x="319.935547" y="63.121094"/>
<use xlink:href="#glyph2-4" x="323.269531" y="63.121094"/>
<use xlink:href="#glyph2-6" x="329.269531" y="63.121094"/>
<use xlink:href="#glyph2-7" x="335.943359" y="63.121094"/>
<use xlink:href="#glyph2-2" x="341.943359" y="63.121094"/>
<use xlink:href="#glyph2-8" x="348.617188" y="63.121094"/>
<use xlink:href="#glyph2-9" x="355.291016" y="63.121094"/>
<use xlink:href="#glyph2-10" x="361.964844" y="63.121094"/>
<use xlink:href="#glyph2-11" x="365.298828" y="63.121094"/>
<use xlink:href="#glyph2-12" x="369.294922" y="63.121094"/>
<use xlink:href="#glyph2-13" x="371.960938" y="63.121094"/>
<use xlink:href="#glyph2-14" x="378.634766" y="63.121094"/>
<use xlink:href="#glyph2-15" x="382.630859" y="63.121094"/>
<use xlink:href="#glyph2-6" x="389.304688" y="63.121094"/>
<use xlink:href="#glyph2-14" x="395.978516" y="63.121094"/>
<use xlink:href="#glyph2-10" x="399.974609" y="63.121094"/>
<use xlink:href="#glyph2-16" x="403.308594" y="63.121094"/>
<use xlink:href="#glyph2-4" x="405.974609" y="63.121094"/>
<use xlink:href="#glyph2-10" x="411.974609" y="63.121094"/>
<use xlink:href="#glyph2-17" x="415.308594" y="63.121094"/>
<use xlink:href="#glyph2-6" x="421.982422" y="63.121094"/>
<use xlink:href="#glyph2-18" x="428.65625" y="63.121094"/>
<use xlink:href="#glyph2-18" x="431.990234" y="63.121094"/>
<use xlink:href="#glyph2-6" x="435.324219" y="63.121094"/>
<use xlink:href="#glyph2-14" x="441.998047" y="63.121094"/>
<use xlink:href="#glyph2-19" x="445.994141" y="63.121094"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.8;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(80%,80%,80%);stroke-opacity:0.8;stroke-miterlimit:10;" d="M 577.128906 119.917969 L 641 119.917969 C 642.332031 119.917969 643 119.25 643 117.917969 L 643 76.121094 C 643 74.785156 642.332031 74.121094 641 74.121094 L 577.128906 74.121094 C 575.796875 74.121094 575.128906 74.785156 575.128906 76.121094 L 575.128906 117.917969 C 575.128906 119.25 575.796875 119.917969 577.128906 119.917969 Z M 577.128906 119.917969 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.156863%,46.666667%,70.588235%);fill-opacity:1;" d="M 579.128906 85.292969 L 599.128906 85.292969 L 599.128906 78.292969 L 579.128906 78.292969 Z M 579.128906 85.292969 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-28" x="607.128906" y="85.292969"/>
<use xlink:href="#glyph0-12" x="612.128906" y="85.292969"/>
<use xlink:href="#glyph0-6" x="617.69043" y="85.292969"/>
<use xlink:href="#glyph0-20" x="623.251953" y="85.292969"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,49.803922%,5.490196%);fill-opacity:1;" d="M 579.128906 99.550781 L 599.128906 99.550781 L 599.128906 92.550781 L 579.128906 92.550781 Z M 579.128906 99.550781 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-22" x="607.128906" y="99.550781"/>
<use xlink:href="#glyph0-12" x="612.69043" y="99.550781"/>
<use xlink:href="#glyph0-9" x="618.251953" y="99.550781"/>
<use xlink:href="#glyph0-29" x="623.251953" y="99.550781"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.254902%,62.745098%,17.254902%);fill-opacity:1;" d="M 579.128906 113.832031 L 599.128906 113.832031 L 599.128906 106.832031 L 579.128906 106.832031 Z M 579.128906 113.832031 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="607.128906" y="113.832031"/>
<use xlink:href="#glyph0-12" x="612.69043" y="113.832031"/>
<use xlink:href="#glyph0-17" x="618.251953" y="113.832031"/>
<use xlink:href="#glyph0-22" x="623.813477" y="113.832031"/>
<use xlink:href="#glyph0-12" x="629.375" y="113.832031"/>
<use xlink:href="#glyph0-9" x="634.936523" y="113.832031"/>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment