summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ui/figure.R491
-rw-r--r--documentation/ui/figure/bell.svg260
-rw-r--r--documentation/ui/figure/binary.svg261
-rw-r--r--documentation/ui/figure/concave.svg253
-rw-r--r--documentation/ui/figure/cosine.svg260
-rw-r--r--documentation/ui/figure/discrete.svg310
-rw-r--r--documentation/ui/figure/gaussian.svg260
-rw-r--r--documentation/ui/figure/gaussianProduct.svg264
-rw-r--r--documentation/ui/figure/piShape.svg260
-rw-r--r--documentation/ui/figure/power.svg227
-rw-r--r--documentation/ui/figure/ramp.svg261
-rw-r--r--documentation/ui/figure/rectangle.svg260
-rw-r--r--documentation/ui/figure/sShape.svg260
-rw-r--r--documentation/ui/figure/sigmoid.svg261
-rw-r--r--documentation/ui/figure/sigmoidDifference.svg260
-rw-r--r--documentation/ui/figure/sigmoidProduct.svg252
-rw-r--r--documentation/ui/figure/spike.svg260
-rw-r--r--documentation/ui/figure/terms.svg4955
-rw-r--r--documentation/ui/figure/trapezoid.svg260
-rw-r--r--documentation/ui/figure/triangle.svg260
-rw-r--r--documentation/ui/figure/zShape.svg260
-rw-r--r--documentation/ui/footer.html22
-rw-r--r--documentation/ui/header.html77
-rw-r--r--documentation/ui/image/android-chrome-144x144.pngbin0 -> 6532 bytes
-rw-r--r--documentation/ui/image/android-chrome-192x192.pngbin0 -> 8956 bytes
-rw-r--r--documentation/ui/image/android-chrome-36x36.pngbin0 -> 1735 bytes
-rw-r--r--documentation/ui/image/android-chrome-48x48.pngbin0 -> 2280 bytes
-rw-r--r--documentation/ui/image/android-chrome-72x72.pngbin0 -> 3171 bytes
-rw-r--r--documentation/ui/image/android-chrome-96x96.pngbin0 -> 4447 bytes
-rw-r--r--documentation/ui/image/apple-touch-icon-114x114.pngbin0 -> 6890 bytes
-rw-r--r--documentation/ui/image/apple-touch-icon-120x120.pngbin0 -> 7417 bytes
-rw-r--r--documentation/ui/image/apple-touch-icon-144x144.pngbin0 -> 8862 bytes
-rw-r--r--documentation/ui/image/apple-touch-icon-152x152.pngbin0 -> 9766 bytes
-rw-r--r--documentation/ui/image/apple-touch-icon-180x180.pngbin0 -> 11090 bytes
-rw-r--r--documentation/ui/image/apple-touch-icon-57x57.pngbin0 -> 3699 bytes
-rw-r--r--documentation/ui/image/apple-touch-icon-60x60.pngbin0 -> 3861 bytes
-rw-r--r--documentation/ui/image/apple-touch-icon-72x72.pngbin0 -> 4563 bytes
-rw-r--r--documentation/ui/image/apple-touch-icon-76x76.pngbin0 -> 5054 bytes
-rw-r--r--documentation/ui/image/apple-touch-icon-precomposed.pngbin0 -> 12911 bytes
-rw-r--r--documentation/ui/image/apple-touch-icon.pngbin0 -> 11090 bytes
-rw-r--r--documentation/ui/image/browserconfig.xml12
-rw-r--r--documentation/ui/image/favicon-16x16.pngbin0 -> 813 bytes
-rw-r--r--documentation/ui/image/favicon-32x32.pngbin0 -> 1502 bytes
-rw-r--r--documentation/ui/image/favicon-96x96.pngbin0 -> 4447 bytes
-rw-r--r--documentation/ui/image/favicon.icobin0 -> 15086 bytes
-rw-r--r--documentation/ui/image/manifest.json41
-rw-r--r--documentation/ui/image/mstile-144x144.pngbin0 -> 6557 bytes
-rw-r--r--documentation/ui/image/mstile-150x150.pngbin0 -> 6806 bytes
-rw-r--r--documentation/ui/image/mstile-310x150.pngbin0 -> 7390 bytes
-rw-r--r--documentation/ui/image/mstile-310x310.pngbin0 -> 14321 bytes
-rw-r--r--documentation/ui/image/mstile-70x70.pngbin0 -> 4487 bytes
-rw-r--r--documentation/ui/image/safari-pinned-tab.svg28
-rw-r--r--documentation/ui/stylesheet.css0
53 files changed, 10575 insertions, 0 deletions
diff --git a/documentation/ui/figure.R b/documentation/ui/figure.R
new file mode 100644
index 0000000..88cef79
--- /dev/null
+++ b/documentation/ui/figure.R
@@ -0,0 +1,491 @@
+library('cowplot')
+library('ggplot2')
+
+theme_set(theme_gray())
+
+
+isEq = function(a,b,error=1e-5){
+ abs(a - b) <= error
+}
+
+isLt = function(a,b,error=1e-5){
+ !isEq(a,b,error) & a < b
+}
+
+isGt = function(a,b,error=1e-5){
+ !isEq(a,b,error) & a > b
+}
+
+isLE = function(a,b,error=1e-5){
+ isEq(a,b,error) | a < b
+}
+
+isGE = function(a,b,error=1e-5){
+ isEq(a,b,error) | a > b
+}
+
+#Scale: Scales a number to a different scale
+Scale = function(value, toMin, toMax, fromMin=min(value), fromMax=max(value)){
+ (toMax - toMin) / (fromMax - fromMin) * (value - fromMin) + toMin
+}
+
+#Basic
+
+term.triangle = function(x, a, b, c){
+ if (isLt(x,a) | isGt(x,c))
+ 0.0
+ else if (isEq(x,b))
+ 1.0
+ else if (isLt(x,b))
+ (x - a) / (b - a)
+ else
+ result = (c - x) / (c - b)
+}
+
+term.trapezoid = function(x,a,b,c,d){
+ if (isLt(x, a) | isGt(x, d))
+ 0.0
+ else if (isLE(x, b))
+ min(1.0, (x - a) / (b - a))
+ else if (isLE(x, c))
+ 1.0
+ else if (isLE(x, d))
+ (d - x) / (d - c)
+}
+
+term.rectangle = function(x,a,b){
+ if (isLt(x, a) | isGt(x,b))
+ 0.0
+ else 1.0
+}
+
+term.discrete = function(x, a, b){
+ diff = b-a
+ if (isLt(x,a) | isGt(x,b))
+ 0.0
+ else if (isLt(x,.25 * diff))
+ Scale(x, 0, 1, a, a + diff*.25)
+ else if (isLt(x, .5*diff))
+ Scale(x,1,0.5, a + diff*.25, a + diff*.5)
+ else if (isLt(x, .75*diff))
+ Scale(x,0.5,1,a+diff*.5, a+diff*.75)
+ else if (isLt(x, diff))
+ Scale(x, 1, 0, a+diff*.75, a+diff)
+ else {0.0}
+# else if (isLt(x, a*.5)
+}
+
+
+term.bell = function(x, center, width, slope){
+ 1.0 / (1.0 + abs((x - center) / width)**(2 * slope));
+}
+
+#EXTENDED
+
+term.cosine = function(x, center, width){
+ if (isLt(x, center-width/2.0) || isGt(x, center+width/2.0)){
+ 0.0
+ }else{
+ 0.5 * (1.0 + cos(2.0 / width * pi * (x - center)))
+ }
+}
+
+term.gaussian = function(x, mean, sd){
+ exp((-(x - mean) * (x - mean)) / (2 * sd * sd));
+}
+
+term.gaussianProduct = function(x, meanA, sdA, meanB, sdB){
+ xLEa = isLE(x, meanA)
+ a = exp((-(x - meanA) * (x - meanA)) / (2 * sdA * sdA)) * xLEa + (1 - xLEa)
+ xGEb = isGE(x, meanB)
+ b = exp((-(x - meanB) * (x - meanB)) / (2 * sdB * sdB)) * xGEb + (1 - xGEb)
+ a * b
+}
+
+term.bell = function(x, center, width, slope){
+ 1.0 / (1.0 + abs((x - center) / width)** (2 * slope))
+}
+
+term.piShape = function(x, bottomLeft, topLeft, topRight, bottomRight){
+ a_b_ave = (bottomLeft + topLeft) / 2.0
+ b_minus_a = topLeft - bottomLeft
+ c_d_ave = (topRight + bottomRight) / 2.0
+ d_minus_c = bottomRight - topRight
+
+ if (isLE(x, bottomLeft)) 0.0
+
+ else if (isLE(x, a_b_ave))
+ 2.0 * ((x - bottomLeft) / b_minus_a) ** 2
+
+ else if (isLt(x, topLeft))
+ 1.0 - 2.0 * ((x - topLeft) / b_minus_a)** 2
+
+ else if (isLE(x, topRight))
+ 1.0
+
+ else if (isLE(x, c_d_ave))
+ 1 - 2 * ((x - topRight) / d_minus_c)**2
+
+ else if (isLt(x, bottomRight))
+ 2 * ((x - bottomRight) / d_minus_c)** 2
+
+ else 0.0
+}
+
+term.sigmoidDifference = function(x, left, rising, falling, right){
+ a = 1.0 / (1 + exp(-rising * (x - left)))
+ b = 1.0 / (1 + exp(-falling * (x - right)))
+ abs(a - b)
+}
+
+term.sigmoidProduct = function(x, left, rising, falling, right){
+ a = 1.0 / (1 + exp(-rising * (x - left)))
+ b = 1.0 / (1 + exp(-falling * (x - right)))
+ abs(a * b)
+}
+
+term.spike = function(x, center, width){
+ exp(-abs( 10 / width * (x-center)))
+}
+
+#EDGES
+
+term.binary = function(x, threshold, direction){
+ if (isGE(direction,0.0) && isGE(x, threshold)){
+ 1.0
+ }else if (isLt(direction, 0.0) && isLE(x, threshold)){
+ 1.0
+ }else{
+ 0.0
+ }
+}
+
+term.concave = function(x, inflection, end){
+ if (isLE(inflection, end)){ #Concave increasing
+ if (isLt(x, end)){
+ (end - inflection) / (2 * end - inflection - x)
+ }else{ 1.0 }
+ } else{ #Concave decreasing
+ if (isGt(x, end)){
+ (inflection - end) / (inflection -2 * end + x)
+ }else{ 1.0 }
+ }
+}
+
+
+term.ramp = function(x, start, end){
+ if (isEq(start, end)) 0.0
+
+ else if (isLt(start, end)) {
+ if (isLE(x, start)) 0.0
+ else if (isGE(x, end)) 1.0
+ else (x - start) / (end - start)
+ } else {
+ if (isGE(x, start)) 0.0
+ else if (isLE(x, end)) 1.0
+ else (start - x) / ( start - end)
+ }
+}
+
+term.sigmoid = function(x, inflection, slope){
+ 1.0 / (1.0 + exp(-slope * (x - inflection)))
+}
+
+term.sShape = function(x, start, end){
+ average = (start + end) / 2
+ difference = end - start
+
+ if (isLE(x, start)) 0.0
+
+ else if (isLE(x, average))
+ 2 * ((x - start) / difference) ** 2
+
+ else if (isLt(x, end))
+ 1.0 - 2.0 * ((x - end) / difference) ** 2
+ else 1.0
+}
+
+term.zShape = function(x, start, end){
+ average = (start + end) / 2
+ difference = end - start
+
+ if (isLE(x, start)) 1.0
+
+ else if (isLE(x, average))
+ 1.0 - 2.0 * ((x - start) / difference) ** 2
+
+ else if (isLt(x, end))
+ 2.0 * ((x - end) / difference)** 2
+
+ else 0.0
+}
+
+
+
+
+
+
+
+x = seq(0,1,length=500)
+average = (max(x) + min(x))/2
+diff = (max(x) - min(x))
+
+
+
+
+
+dir.create('figure',showWarnings=F)
+
+
+##################BASIC
+
+triangle.df = data.frame(x, y=sapply(x, term.triangle, min(x), average, max(x)))
+triangle.plot = ggplot(triangle.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/triangle.svg', triangle.plot, width=3, height=3)
+
+
+trapezoid.df = data.frame(x, y=sapply(x, term.trapezoid, min(x), min(x) + .25 * diff, min(x) + .75*diff, max(x)))
+trapezoid.plot = ggplot(trapezoid.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/trapezoid.svg', trapezoid.plot, width=3, height=3)
+
+
+rectangle.df = data.frame(x, y=sapply(x, term.rectangle, min(x) + .25*diff, min(x) + .75*diff))
+rectangle.plot = ggplot(rectangle.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/rectangle.svg', rectangle.plot, width=3, height=3)
+
+
+discrete.x = x[c(1, seq(10, 495, 10), 500)]
+discrete.df = data.frame(x=discrete.x, y=sapply(discrete.x, term.discrete, min(x), max(x)))
+discrete.plot = ggplot(discrete.df, aes(x,y, size=2, lineend='round')) + geom_point() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/discrete.svg', discrete.plot, width=3, height=3)
+
+
+
+#################EXTENDED
+
+cosine.df = data.frame(x, y=sapply(x, term.cosine, average, diff))
+cosine.plot = ggplot(cosine.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/cosine.svg', cosine.plot, width=3, height=3)
+
+
+gaussian.df = data.frame(x, y=sapply(x, term.gaussian, average, .2*diff))
+gaussian.plot = ggplot(gaussian.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/gaussian.svg', gaussian.plot, width=3, height=3)
+
+
+gaussianProduct.df = data.frame(x, y=sapply(x, term.gaussianProduct, average+.1, .2*diff, average-.1, .2*diff))
+gaussianProduct.plot = ggplot(gaussianProduct.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/gaussianProduct.svg', gaussianProduct.plot, width=3, height=3)
+
+
+bell.df = data.frame(x, y=sapply(x, term.bell, average, .25*diff, 3.0))
+bell.plot = ggplot(bell.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/bell.svg', bell.plot, width=3, height=3)
+
+
+piShape.df = data.frame(x, y=sapply(x, term.piShape, min(x), average, average, max(x)))
+piShape.plot = ggplot(piShape.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/piShape.svg', piShape.plot, width=3, height=3)
+
+
+sigmoidDifference.df = data.frame(x, y=sapply(x, term.sigmoidDifference, min(x) + .25*diff, 20/diff, 20/diff, min(x)+.75*diff))
+sigmoidDifference.plot = ggplot(sigmoidDifference.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/sigmoidDifference.svg', sigmoidDifference.plot, width=3, height=3)
+
+
+sigmoidProduct.df = data.frame(x, y=sapply(x, term.sigmoidProduct, min(x) + .25*diff, 10/diff, -10/diff, min(x)+.75*diff))
+sigmoidProduct.plot = ggplot(sigmoidProduct.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/sigmoidProduct.svg', sigmoidProduct.plot, width=3, height=3)
+
+
+spike.df = data.frame(x, y=sapply(x, term.spike, average, diff))
+spike.plot = ggplot(spike.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/spike.svg', spike.plot, width=3, height=3)
+
+
+
+###############EDGE
+
+#Binary
+binary.dfa = data.frame(x, y=sapply(x, term.binary, min(x) + .25*diff, -1))
+binary.dfb = data.frame(x, y=sapply(x, term.binary, min(x) + .75*diff, 1))
+binary.plot = ggplot(binary.dfa, aes(x,y, size=2, lineend='round')) +
+ geom_line(data=binary.dfb, aes(x,y, size=2, lineend='round')) +
+ geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/binary.svg', binary.plot, width=3, height=3)
+
+#Concave
+concave.dfa = data.frame(x, y=sapply(x, term.concave, average, max(x)-.2))
+concave.dfb = data.frame(x, y=sapply(x, term.concave, average, 1-(max(x)-.2)))
+concave.plot = ggplot(concave.dfa, aes(x,y, size=2, lineend='round')) +
+ geom_line(data=concave.dfb, aes(x,y, size=2, lineend='round')) +
+ geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/concave.svg', concave.plot, width=3, height=3)
+
+#RAMP
+ramp.dfa = data.frame(x, y=sapply(x, term.ramp, max(x)-.2, min(x)+.2))
+ramp.dfb = data.frame(x, y=sapply(x, term.ramp, min(x)+.2, max(x)-.2))
+ramp.plot = ggplot(ramp.dfa, aes(x,y, size=2, lineend='round')) +
+ geom_line(data=ramp.dfb, aes(x,y, size=2, lineend='round')) +
+ geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/ramp.svg', ramp.plot, width=3, height=3)
+
+
+sigmoid.dfa = data.frame(x, y=sapply(x, term.sigmoid, average, 20/diff))
+sigmoid.dfb = data.frame(x, y=sapply(x, term.sigmoid, average, -20/diff))
+sigmoid.plot = ggplot(sigmoid.dfa, aes(x,y, size=2, lineend='round')) +
+ geom_line(data=sigmoid.dfb, aes(x,y, size=2, lineend='round')) +
+ geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/sigmoid.svg', sigmoid.plot, width=3, height=3)
+
+
+sShape.df = data.frame(x, y=sapply(x, term.sShape, min(x), max(x)))
+sShape.plot = ggplot(sShape.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/sShape.svg', sShape.plot, width=3, height=3)
+
+
+zShape.df = data.frame(x, y=sapply(x, term.zShape, min(x), max(x)))
+zShape.plot = ggplot(zShape.df, aes(x,y, size=2, lineend='round')) + geom_line() + ylab(expression(mu(x))) + theme(legend.position='none')
+ggsave('figure/zShape.svg', zShape.plot, width=3, height=3)
+
+
+##############Terms
+
+ constant.plot =
+ ggplot(data=data.frame(x=0,y=0)) +
+ geom_point(aes(x=0,y=0), size=0) +
+ ylab(expression(f(x))) + xlab('x') +
+ coord_cartesian(ylim = c(-0.05, 1.05), xlim=c(-0.05,1.05)) +
+ annotate('text', x = .5, y = .5, label = "f(x)==k", parse = T,size=10)
+
+ linear.plot =
+ ggplot(data=data.frame(x=0,y=0)) +
+ geom_point(aes(x=0,y=0), size=0) +
+ ylab(expression(f(x))) + xlab('x') +
+ coord_cartesian(ylim = c(-0.05, 1.05), xlim=c(-0.05,1.05)) +
+ annotate('text', x = .5, y = .5, angle=45, label = "f(x)==sum(paste(c[i],v[i]), i)+k", parse = T,size=10)
+
+ function.plot =
+ ggplot(data=data.frame(x=0,y=0)) +
+ geom_point(aes(x=0,y=0), size=0) +
+ ylab(expression(f(x))) + xlab('x') +
+ coord_cartesian(ylim = c(-0.05, 1.05), xlim=c(-0.05,1.05)) +
+ annotate('text', x = .5, y = .5, label = "f:x %->% f(x)", parse = T,size=10)
+
+
+########## Vertical layout
+ terms.grid = plot_grid(
+
+triangle.plot, bell.plot, piShape.plot,
+trapezoid.plot, cosine.plot, sigmoidDifference.plot,
+rectangle.plot, gaussian.plot, sigmoidProduct.plot,
+discrete.plot, gaussianProduct.plot, spike.plot,
+binary.plot, ramp.plot, sShape.plot,
+concave.plot, sigmoid.plot, zShape.plot,
+function.plot, linear.plot, constant.plot,
+
+ ncol=3, nrow=7, scale=1, label_size=12, vjust=1.25, align='v',
+ #hjust=.5, # align='hv',
+
+ labels=c(
+'Triangle', 'Bell', 'PiShape',
+'Trapezoid', 'Cosine', 'SigmoidDifference',
+'Rectangle', 'Gaussian', 'SigmoidProduct',
+'Discrete', 'GaussianProduct', 'Spike',
+'Binary', 'Ramp', 'SShape',
+'Concave', 'Sigmoid', 'ZShape',
+'Function', 'Linear', 'Constant'
+ )
+ )
+
+ save_plot('figure/terms.svg', terms.grid, ncol=3, nrow=7, scale=.75)
+
+ stop('Script successfully executed')
+
+
+##########Horizontal layout
+ terms.grid = plot_grid(
+
+ triangle.plot, trapezoid.plot, rectangle.plot, discrete.plot, function.plot, binary.plot , concave.plot,
+
+ bell.plot, cosine.plot, gaussian.plot, gaussianProduct.plot, linear.plot, ramp.plot, sigmoid.plot,
+
+ piShape.plot, sigmoidDifference.plot, sigmoidProduct.plot, spike.plot, constant.plot, sShape.plot, zShape.plot,
+
+ ncol=7, nrow=3, scale=1, label_size=12, vjust=1.25, align='v',
+ #hjust=.5, # align='hv',
+
+labels=c(
+'Triangle', 'Trapezoid', 'Rectangle', 'Discrete', 'Function', 'Binary', 'Concave',
+'Bell', 'Cosine', 'Gaussian', 'GaussianProduct', 'Linear', 'Ramp', 'Sigmoid',
+'PiShape', 'SigmoidDifference', 'SigmoidProduct','Spike', 'Constant', 'SShape', 'ZShape')
+)
+
+save_plot('figure/terms.svg', terms.grid, ncol=7, nrow=3, scale=.75)
+
+stop('Script successfully executed')
+
+
+
+
+
+
+
+
+
+
+
+
+# X1234X
+# 123456
+# 7 8
+# 123456
+
+constant.plot =
+ ggplot(data=data.frame(x=0,y=0)) +
+ geom_point(aes(x=0,y=0), size=0) +
+ ylab(expression(mu(x))) + xlab('x') +
+ coord_cartesian(ylim = c(-0.05, 1.05), xlim=c(-0.05,1.05)) +
+ annotate('text', x = .5, y = .5, label = "mu(x)==k", parse = T,size=10)
+
+linear.plot =
+ ggplot(data=data.frame(x=0,y=0)) +
+ geom_point(aes(x=0,y=0), size=0) +
+ ylab(expression(mu(x))) + xlab('x') +
+ coord_cartesian(ylim = c(-0.05, 1.05), xlim=c(-0.05,1.05)) +
+ annotate('text', x = .5, y = .5, angle=45, label = "mu(x)==sum(c[i] %.% x[i], i)+k", parse = T,size=5)
+
+function.plot =
+ ggplot(data=data.frame(x=0,y=0)) +
+ geom_point(aes(x=0,y=0), size=0) +
+ ylab(expression(mu(x))) + xlab('x') +
+ coord_cartesian(ylim = c(-0.05, 1.05), xlim=c(-0.05,1.05)) +
+ annotate('text', x = .5, y = .5, label = "f:x %->% mu(x)", parse = T,size=5)
+
+
+terms.grid = plot_grid(
+
+NULL, triangle.plot, trapezoid.plot, rectangle.plot, discrete.plot, NULL,
+
+bell.plot, cosine.plot, gaussian.plot, gaussianProduct.plot, piShape.plot, sigmoidDifference.plot,
+
+sigmoidProduct.plot, spike.plot, NULL, constant.plot, linear.plot, function.plot,
+
+binary.plot, concave.plot, ramp.plot, sigmoid.plot, sShape.plot, zShape.plot,
+
+nrow=4, ncol=6, scale=1, label_size=12, vjust=1.25,
+#hjust=.5, # align='hv',
+
+labels=c(
+'', 'Triangle', 'Trapezoid', 'Rectangle', 'Discrete', '',
+'Bell', 'Cosine', 'Gaussian', 'GaussianProduct', 'PiShape', 'SigmoidDifference',
+'SigmoidProduct','Spike', '', 'Constant', 'Linear', 'Function',
+'Binary', 'Concave', 'Ramp', 'Sigmoid', 'SShape', 'ZShape')
+)
+
+save_plot('figure/terms.svg', terms.grid,
+ ncol=6, nrow=4, scale=.5)
+
+
+
+
diff --git a/documentation/ui/figure/bell.svg b/documentation/ui/figure/bell.svg
new file mode 100644
index 0000000..9709cf5
--- /dev/null
+++ b/documentation/ui/figure/bell.svg
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 154 L 202 154 L 202 156 L 54.019531 156 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 116 L 202 116 L 202 118 L 54.019531 118 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 78 L 202 78 L 202 80 L 54.019531 80 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 202 40 L 202 42 L 54.019531 42 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 173 L 202.601562 173 L 202.601562 175 L 54.019531 175 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 135 L 202.601562 135 L 202.601562 137 L 54.019531 137 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 97 L 202.601562 97 L 202.601562 99 L 54.019531 99 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 59 L 202.601562 59 L 202.601562 61 L 54.019531 61 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface216">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 154.882812 L 201.601562 154.882812 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 116.882812 L 201.601562 116.882812 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 78.882812 L 201.601562 78.882812 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.882812 L 201.601562 40.882812 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 173.882812 L 201.601562 173.882812 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 135.882812 L 201.601562 135.882812 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 97.882812 L 201.601562 97.882812 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.882812 L 201.601562 59.882812 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.882812 L 201.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 60.996094 171.488281 L 61.265625 171.433594 L 61.53125 171.371094 L 61.800781 171.3125 L 62.070312 171.25 L 62.878906 171.050781 L 63.144531 170.980469 L 63.953125 170.757812 L 64.222656 170.679688 L 64.492188 170.597656 L 64.757812 170.515625 L 65.296875 170.34375 L 66.105469 170.0625 L 66.371094 169.964844 L 66.640625 169.863281 L 66.910156 169.757812 L 67.449219 169.539062 L 67.71875 169.421875 L 67.984375 169.304688 L 68.253906 169.183594 L 68.523438 169.058594 L 68.792969 168.929688 L 69.0625 168.796875 L 69.332031 168.660156 L 69.597656 168.515625 L 69.867188 168.371094 L 70.136719 168.222656 L 70.40625 168.066406 L 70.675781 167.90625 L 70.945312 167.742188 L 71.210938 167.574219 L 71.480469 167.398438 L 72.019531 167.03125 L 72.289062 166.839844 L 72.558594 166.640625 L 72.824219 166.433594 L 73.09375 166.222656 L 73.363281 166.007812 L 73.632812 165.78125 L 73.902344 165.550781 L 74.167969 165.308594 L 74.4375 165.0625 L 74.707031 164.808594 L 74.976562 164.542969 L 75.246094 164.273438 L 75.515625 163.992188 L 75.78125 163.699219 L 76.050781 163.402344 L 76.320312 163.09375 L 76.589844 162.773438 L 76.859375 162.445312 L 77.128906 162.101562 L 77.394531 161.75 L 77.664062 161.386719 L 77.933594 161.011719 L 78.203125 160.625 L 78.472656 160.226562 L 78.742188 159.8125 L 79.007812 159.386719 L 79.277344 158.945312 L 79.546875 158.492188 L 79.816406 158.019531 L 80.085938 157.535156 L 80.355469 157.035156 L 80.621094 156.515625 L 80.890625 155.984375 L 81.160156 155.429688 L 81.429688 154.859375 L 81.699219 154.273438 L 81.96875 153.664062 L 82.234375 153.039062 L 82.503906 152.390625 L 82.773438 151.722656 L 83.042969 151.035156 L 83.3125 150.324219 L 83.582031 149.59375 L 83.847656 148.835938 L 84.117188 148.054688 L 84.386719 147.253906 L 84.65625 146.425781 L 84.925781 145.570312 L 85.195312 144.691406 L 85.460938 143.785156 L 85.730469 142.851562 L 86 141.890625 L 86.269531 140.902344 L 86.539062 139.882812 L 86.808594 138.839844 L 87.074219 137.761719 L 87.34375 136.65625 L 87.613281 135.519531 L 87.882812 134.355469 L 88.152344 133.15625 L 88.417969 131.929688 L 88.6875 130.667969 L 88.957031 129.378906 L 89.226562 128.054688 L 89.496094 126.699219 L 89.765625 125.316406 L 90.03125 123.898438 L 90.300781 122.449219 L 90.570312 120.972656 L 90.839844 119.460938 L 91.109375 117.921875 L 91.378906 116.351562 L 91.644531 114.753906 L 91.914062 113.128906 L 92.183594 111.476562 L 92.453125 109.800781 L 92.722656 108.097656 L 92.992188 106.367188 L 93.257812 104.617188 L 93.527344 102.847656 L 93.796875 101.058594 L 94.066406 99.25 L 94.335938 97.425781 L 94.605469 95.589844 L 94.871094 93.738281 L 95.140625 91.878906 L 95.410156 90.007812 L 95.949219 86.257812 L 96.21875 84.378906 L 96.484375 82.5 L 96.753906 80.625 L 97.023438 78.753906 L 97.292969 76.894531 L 97.5625 75.046875 L 97.832031 73.207031 L 98.097656 71.386719 L 98.367188 69.585938 L 98.636719 67.800781 L 98.90625 66.039062 L 99.175781 64.304688 L 99.445312 62.59375 L 99.710938 60.914062 L 99.980469 59.265625 L 100.25 57.648438 L 100.519531 56.0625 L 100.789062 54.515625 L 101.058594 53.003906 L 101.324219 51.53125 L 101.59375 50.097656 L 101.863281 48.703125 L 102.132812 47.351562 L 102.402344 46.039062 L 102.667969 44.769531 L 102.9375 43.542969 L 103.207031 42.359375 L 103.476562 41.21875 L 103.746094 40.125 L 104.015625 39.070312 L 104.28125 38.054688 L 104.550781 37.085938 L 104.820312 36.15625 L 105.089844 35.269531 L 105.359375 34.425781 L 105.628906 33.617188 L 105.894531 32.847656 L 106.164062 32.117188 L 106.433594 31.425781 L 106.703125 30.769531 L 106.972656 30.144531 L 107.242188 29.558594 L 107.507812 29.003906 L 107.777344 28.480469 L 108.046875 27.984375 L 108.316406 27.523438 L 108.585938 27.085938 L 108.855469 26.679688 L 109.121094 26.296875 L 109.390625 25.9375 L 109.660156 25.605469 L 109.929688 25.292969 L 110.199219 25.003906 L 110.46875 24.734375 L 110.734375 24.480469 L 111.003906 24.25 L 111.273438 24.035156 L 111.542969 23.835938 L 111.8125 23.652344 L 112.082031 23.484375 L 112.347656 23.328125 L 112.617188 23.183594 L 112.886719 23.050781 L 113.15625 22.933594 L 113.425781 22.824219 L 113.695312 22.722656 L 113.960938 22.632812 L 114.230469 22.550781 L 114.5 22.472656 L 114.769531 22.40625 L 115.039062 22.34375 L 115.308594 22.289062 L 115.574219 22.238281 L 115.84375 22.195312 L 116.113281 22.15625 L 116.382812 22.121094 L 116.652344 22.089844 L 116.921875 22.0625 L 117.1875 22.035156 L 117.996094 21.976562 L 118.265625 21.964844 L 118.53125 21.949219 L 118.800781 21.941406 L 119.070312 21.929688 L 119.609375 21.914062 L 119.878906 21.910156 L 120.144531 21.90625 L 121.222656 21.890625 L 121.492188 21.890625 L 121.757812 21.886719 L 122.566406 21.886719 L 122.835938 21.882812 L 132.78125 21.882812 L 133.050781 21.886719 L 133.859375 21.886719 L 134.128906 21.890625 L 134.394531 21.890625 L 135.742188 21.910156 L 136.007812 21.914062 L 136.546875 21.929688 L 136.816406 21.941406 L 137.085938 21.949219 L 137.355469 21.964844 L 137.621094 21.976562 L 138.429688 22.035156 L 138.96875 22.089844 L 139.234375 22.121094 L 139.503906 22.15625 L 139.773438 22.195312 L 140.042969 22.238281 L 140.3125 22.289062 L 140.582031 22.34375 L 140.847656 22.40625 L 141.117188 22.472656 L 141.386719 22.550781 L 141.65625 22.632812 L 141.925781 22.722656 L 142.195312 22.824219 L 142.460938 22.933594 L 142.730469 23.050781 L 143 23.183594 L 143.269531 23.328125 L 143.539062 23.484375 L 143.808594 23.652344 L 144.074219 23.835938 L 144.34375 24.035156 L 144.613281 24.25 L 144.882812 24.480469 L 145.152344 24.734375 L 145.421875 25.003906 L 145.6875 25.292969 L 145.957031 25.605469 L 146.226562 25.9375 L 146.496094 26.296875 L 146.765625 26.679688 L 147.03125 27.085938 L 147.300781 27.523438 L 147.570312 27.984375 L 147.839844 28.480469 L 148.109375 29.003906 L 148.378906 29.558594 L 148.644531 30.144531 L 148.914062 30.769531 L 149.183594 31.425781 L 149.453125 32.117188 L 149.722656 32.847656 L 149.992188 33.617188 L 150.257812 34.425781 L 150.527344 35.269531 L 150.796875 36.15625 L 151.066406 37.085938 L 151.335938 38.054688 L 151.605469 39.070312 L 151.871094 40.125 L 152.140625 41.21875 L 152.410156 42.359375 L 152.679688 43.542969 L 152.949219 44.769531 L 153.21875 46.039062 L 153.484375 47.351562 L 153.753906 48.703125 L 154.023438 50.097656 L 154.292969 51.53125 L 154.5625 53.003906 L 154.832031 54.515625 L 155.097656 56.0625 L 155.367188 57.648438 L 155.636719 59.265625 L 155.90625 60.914062 L 156.175781 62.59375 L 156.445312 64.304688 L 156.710938 66.039062 L 156.980469 67.800781 L 157.25 69.585938 L 157.519531 71.386719 L 157.789062 73.207031 L 158.058594 75.046875 L 158.324219 76.894531 L 158.59375 78.753906 L 158.863281 80.625 L 159.132812 82.5 L 159.671875 86.257812 L 159.9375 88.132812 L 160.207031 90.007812 L 160.476562 91.878906 L 160.746094 93.738281 L 161.015625 95.589844 L 161.28125 97.425781 L 161.550781 99.25 L 161.820312 101.058594 L 162.089844 102.847656 L 162.359375 104.617188 L 162.628906 106.367188 L 162.894531 108.097656 L 163.164062 109.800781 L 163.433594 111.476562 L 163.703125 113.128906 L 163.972656 114.753906 L 164.242188 116.351562 L 164.507812 117.921875 L 164.777344 119.460938 L 165.046875 120.972656 L 165.316406 122.449219 L 165.585938 123.898438 L 165.855469 125.316406 L 166.121094 126.699219 L 166.390625 128.054688 L 166.660156 129.378906 L 166.929688 130.667969 L 167.199219 131.929688 L 167.46875 133.15625 L 167.734375 134.355469 L 168.003906 135.519531 L 168.273438 136.65625 L 168.542969 137.761719 L 168.8125 138.839844 L 169.082031 139.882812 L 169.347656 140.902344 L 169.617188 141.890625 L 169.886719 142.851562 L 170.15625 143.785156 L 170.425781 144.691406 L 170.695312 145.570312 L 170.960938 146.425781 L 171.230469 147.253906 L 171.5 148.054688 L 171.769531 148.835938 L 172.039062 149.59375 L 172.308594 150.324219 L 172.574219 151.035156 L 172.84375 151.722656 L 173.113281 152.390625 L 173.382812 153.039062 L 173.652344 153.664062 L 173.921875 154.273438 L 174.1875 154.859375 L 174.457031 155.429688 L 174.726562 155.984375 L 174.996094 156.515625 L 175.265625 157.035156 L 175.535156 157.535156 L 175.800781 158.019531 L 176.070312 158.492188 L 176.339844 158.945312 L 176.609375 159.386719 L 176.878906 159.8125 L 177.144531 160.226562 L 177.414062 160.625 L 177.683594 161.011719 L 177.953125 161.386719 L 178.222656 161.75 L 178.492188 162.101562 L 178.757812 162.445312 L 179.027344 162.773438 L 179.296875 163.09375 L 179.566406 163.402344 L 179.835938 163.699219 L 180.105469 163.992188 L 180.371094 164.273438 L 180.640625 164.542969 L 180.910156 164.808594 L 181.179688 165.0625 L 181.449219 165.308594 L 181.71875 165.550781 L 181.984375 165.78125 L 182.253906 166.007812 L 182.523438 166.222656 L 182.792969 166.433594 L 183.0625 166.640625 L 183.332031 166.839844 L 183.597656 167.03125 L 184.136719 167.398438 L 184.40625 167.574219 L 184.675781 167.742188 L 184.945312 167.90625 L 185.210938 168.066406 L 185.480469 168.222656 L 185.75 168.371094 L 186.289062 168.660156 L 186.558594 168.796875 L 186.824219 168.929688 L 187.09375 169.058594 L 187.363281 169.183594 L 187.632812 169.304688 L 188.171875 169.539062 L 188.4375 169.648438 L 188.707031 169.757812 L 188.976562 169.863281 L 189.246094 169.964844 L 189.515625 170.0625 L 189.785156 170.15625 L 190.050781 170.25 L 190.320312 170.34375 L 190.859375 170.515625 L 191.128906 170.597656 L 191.394531 170.679688 L 191.664062 170.757812 L 192.472656 170.980469 L 192.742188 171.050781 L 193.007812 171.117188 L 193.546875 171.25 L 193.816406 171.3125 L 194.085938 171.371094 L 194.355469 171.433594 L 194.621094 171.488281 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="177.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="177.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="177.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="177.320312"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="139.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="139.320312"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="139.320312"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="139.320312"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="101.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="101.320312"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="101.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="101.320312"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="63.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="63.320312"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="63.320312"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="63.320312"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 173.882812 L 54.019531 173.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 135.882812 L 54.019531 135.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 97.882812 L 54.019531 97.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.882812 L 54.019531 59.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.882812 L 54.019531 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/binary.svg b/documentation/ui/figure/binary.svg
new file mode 100644
index 0000000..c6b8575
--- /dev/null
+++ b/documentation/ui/figure/binary.svg
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 202 152 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 202 77 L 202 79 L 54.019531 79 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 202 40 L 202 41 L 54.019531 41 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 202.601562 171 L 202.601562 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 96 L 202.601562 96 L 202.601562 98 L 54.019531 98 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 58 L 202.601562 58 L 202.601562 60 L 54.019531 60 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface241">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.839844 L 201.601562 152.839844 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.421875 L 201.601562 115.421875 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 78.007812 L 201.601562 78.007812 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.589844 L 201.601562 40.589844 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.546875 L 201.601562 171.546875 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.128906 L 201.601562 134.128906 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.714844 L 201.601562 96.714844 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.296875 L 201.601562 59.296875 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.882812 L 201.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 161.28125 171.546875 L 161.550781 21.882812 L 194.890625 21.882812 "/>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 21.882812 L 94.066406 21.882812 L 94.335938 171.546875 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="100.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="100.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="100.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="100.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="62.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="62.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="62.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="62.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.546875 L 54.019531 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.128906 L 54.019531 134.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.714844 L 54.019531 96.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.296875 L 54.019531 59.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.882812 L 54.019531 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/concave.svg b/documentation/ui/figure/concave.svg
new file mode 100644
index 0000000..37ef129
--- /dev/null
+++ b/documentation/ui/figure/concave.svg
@@ -0,0 +1,253 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 3.171875 -2.375 L 3.171875 -5.421875 L 1.015625 -2.375 Z M 3.1875 0 L 3.1875 -1.640625 L 0.25 -1.640625 L 0.25 -2.46875 L 3.3125 -6.734375 L 4.03125 -6.734375 L 4.03125 -2.375 L 5.015625 -2.375 L 5.015625 -1.640625 L 4.03125 -1.640625 L 4.03125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 2.8125 -6.734375 C 3.5625 -6.734375 4.082031 -6.535156 4.375 -6.140625 C 4.664062 -5.753906 4.8125 -5.359375 4.8125 -4.953125 L 3.984375 -4.953125 C 3.929688 -5.210938 3.851562 -5.421875 3.75 -5.578125 C 3.539062 -5.859375 3.226562 -6 2.8125 -6 C 2.34375 -6 1.96875 -5.78125 1.6875 -5.34375 C 1.414062 -4.90625 1.265625 -4.28125 1.234375 -3.46875 C 1.421875 -3.75 1.664062 -3.960938 1.96875 -4.109375 C 2.226562 -4.234375 2.523438 -4.296875 2.859375 -4.296875 C 3.421875 -4.296875 3.910156 -4.113281 4.328125 -3.75 C 4.742188 -3.394531 4.953125 -2.863281 4.953125 -2.15625 C 4.953125 -1.539062 4.753906 -1 4.359375 -0.53125 C 3.960938 -0.0625 3.398438 0.171875 2.671875 0.171875 C 2.046875 0.171875 1.503906 -0.0625 1.046875 -0.53125 C 0.585938 -1.007812 0.359375 -1.816406 0.359375 -2.953125 C 0.359375 -3.785156 0.460938 -4.488281 0.671875 -5.0625 C 1.054688 -6.175781 1.769531 -6.734375 2.8125 -6.734375 Z M 2.75 -0.578125 C 3.1875 -0.578125 3.515625 -0.722656 3.734375 -1.015625 C 3.960938 -1.316406 4.078125 -1.671875 4.078125 -2.078125 C 4.078125 -2.421875 3.976562 -2.75 3.78125 -3.0625 C 3.582031 -3.375 3.222656 -3.53125 2.703125 -3.53125 C 2.335938 -3.53125 2.019531 -3.410156 1.75 -3.171875 C 1.476562 -2.929688 1.34375 -2.566406 1.34375 -2.078125 C 1.34375 -1.648438 1.460938 -1.289062 1.703125 -1 C 1.953125 -0.71875 2.300781 -0.578125 2.75 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 2.609375 -3.890625 C 2.984375 -3.890625 3.273438 -3.992188 3.484375 -4.203125 C 3.691406 -4.410156 3.796875 -4.660156 3.796875 -4.953125 C 3.796875 -5.203125 3.691406 -5.429688 3.484375 -5.640625 C 3.285156 -5.847656 2.984375 -5.953125 2.578125 -5.953125 C 2.171875 -5.953125 1.875 -5.847656 1.6875 -5.640625 C 1.507812 -5.429688 1.421875 -5.1875 1.421875 -4.90625 C 1.421875 -4.59375 1.535156 -4.34375 1.765625 -4.15625 C 2.003906 -3.976562 2.285156 -3.890625 2.609375 -3.890625 Z M 2.65625 -0.578125 C 3.050781 -0.578125 3.375 -0.679688 3.625 -0.890625 C 3.882812 -1.097656 4.015625 -1.414062 4.015625 -1.84375 C 4.015625 -2.269531 3.878906 -2.59375 3.609375 -2.8125 C 3.347656 -3.039062 3.007812 -3.15625 2.59375 -3.15625 C 2.195312 -3.15625 1.867188 -3.039062 1.609375 -2.8125 C 1.359375 -2.582031 1.234375 -2.265625 1.234375 -1.859375 C 1.234375 -1.515625 1.347656 -1.210938 1.578125 -0.953125 C 1.816406 -0.703125 2.175781 -0.578125 2.65625 -0.578125 Z M 1.46875 -3.578125 C 1.226562 -3.671875 1.039062 -3.785156 0.90625 -3.921875 C 0.664062 -4.171875 0.546875 -4.5 0.546875 -4.90625 C 0.546875 -5.40625 0.722656 -5.832031 1.078125 -6.1875 C 1.441406 -6.550781 1.957031 -6.734375 2.625 -6.734375 C 3.269531 -6.734375 3.773438 -6.5625 4.140625 -6.21875 C 4.503906 -5.875 4.6875 -5.476562 4.6875 -5.03125 C 4.6875 -4.613281 4.582031 -4.273438 4.375 -4.015625 C 4.25 -3.867188 4.0625 -3.722656 3.8125 -3.578125 C 4.09375 -3.453125 4.3125 -3.304688 4.46875 -3.140625 C 4.769531 -2.828125 4.921875 -2.421875 4.921875 -1.921875 C 4.921875 -1.335938 4.722656 -0.835938 4.328125 -0.421875 C 3.929688 -0.015625 3.367188 0.1875 2.640625 0.1875 C 1.984375 0.1875 1.429688 0.0078125 0.984375 -0.34375 C 0.535156 -0.695312 0.3125 -1.210938 0.3125 -1.890625 C 0.3125 -2.285156 0.40625 -2.625 0.59375 -2.90625 C 0.789062 -3.195312 1.082031 -3.421875 1.46875 -3.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 48.683594 14.398438 L 202 14.398438 L 202 180 L 48.683594 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 48.683594 165 L 202 165 L 202 167 L 48.683594 167 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 48.683594 124 L 202 124 L 202 126 L 48.683594 126 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 48.683594 83 L 202 83 L 202 84 L 48.683594 84 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 48.683594 42 L 202 42 L 202 43 L 48.683594 43 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 72 14.398438 L 74 14.398438 L 74 180 L 72 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 107 14.398438 L 109 14.398438 L 109 180 L 107 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 142 14.398438 L 143 14.398438 L 143 180 L 142 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 178 14.398438 L 178 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 48.683594 144 L 202.601562 144 L 202.601562 146 L 48.683594 146 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 48.683594 103 L 202.601562 103 L 202.601562 105 L 48.683594 105 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 48.683594 62 L 202.601562 62 L 202.601562 64 L 48.683594 64 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 48.683594 21 L 202.601562 21 L 202.601562 23 L 48.683594 23 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 55 14.398438 L 57 14.398438 L 57 180 L 55 180 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 89 14.398438 L 91 14.398438 L 91 180 L 89 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 124 14.398438 L 126 14.398438 L 126 180 L 124 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 159 14.398438 L 161 14.398438 L 161 180 L 159 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface246">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 48.683594 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 48.683594 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 165.933594 L 201.601562 165.933594 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 124.777344 L 201.601562 124.777344 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 83.617188 L 201.601562 83.617188 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 42.460938 L 201.601562 42.460938 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.011719 179.027344 L 73.011719 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.765625 179.027344 L 107.765625 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.519531 179.027344 L 142.519531 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.273438 179.027344 L 177.273438 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 145.355469 L 201.601562 145.355469 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 104.199219 L 201.601562 104.199219 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 63.039062 L 201.601562 63.039062 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 21.882812 L 201.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.632812 179.027344 L 55.632812 14.398438 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.386719 179.027344 L 90.386719 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.140625 179.027344 L 125.140625 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.894531 179.027344 L 159.894531 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.648438 179.027344 L 194.648438 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 55.632812 21.882812 L 83.214844 21.882812 L 83.492188 22.15625 L 83.769531 23.519531 L 84.050781 24.863281 L 84.328125 26.191406 L 84.605469 27.5 L 84.886719 28.792969 L 85.164062 30.066406 L 85.441406 31.328125 L 85.722656 32.570312 L 86 33.796875 L 86.277344 35.011719 L 86.558594 36.207031 L 86.835938 37.390625 L 87.113281 38.558594 L 87.390625 39.710938 L 87.671875 40.851562 L 87.949219 41.976562 L 88.226562 43.089844 L 88.507812 44.191406 L 88.785156 45.277344 L 89.0625 46.351562 L 89.34375 47.410156 L 89.621094 48.460938 L 89.898438 49.496094 L 90.179688 50.519531 L 90.457031 51.535156 L 90.734375 52.535156 L 91.015625 53.523438 L 91.292969 54.503906 L 91.570312 55.472656 L 91.851562 56.429688 L 92.128906 57.375 L 92.40625 58.3125 L 92.6875 59.238281 L 92.964844 60.152344 L 93.242188 61.058594 L 93.519531 61.957031 L 93.800781 62.84375 L 94.078125 63.71875 L 94.355469 64.585938 L 94.636719 65.445312 L 94.914062 66.296875 L 95.191406 67.136719 L 95.472656 67.96875 L 95.75 68.792969 L 96.027344 69.609375 L 96.308594 70.414062 L 96.585938 71.214844 L 96.863281 72.003906 L 97.144531 72.785156 L 97.421875 73.5625 L 97.699219 74.328125 L 97.980469 75.089844 L 98.257812 75.839844 L 98.535156 76.585938 L 98.816406 77.320312 L 99.09375 78.050781 L 99.371094 78.773438 L 99.652344 79.492188 L 99.929688 80.199219 L 100.207031 80.902344 L 100.484375 81.597656 L 100.765625 82.289062 L 101.042969 82.972656 L 101.320312 83.648438 L 101.601562 84.316406 L 101.878906 84.980469 L 102.15625 85.640625 L 102.4375 86.292969 L 102.714844 86.9375 L 102.992188 87.578125 L 103.273438 88.210938 L 103.550781 88.839844 L 103.828125 89.464844 L 104.109375 90.082031 L 104.386719 90.691406 L 104.664062 91.296875 L 104.945312 91.898438 L 105.222656 92.496094 L 105.5 93.085938 L 105.78125 93.671875 L 106.335938 94.828125 L 106.613281 95.398438 L 106.894531 95.960938 L 107.171875 96.523438 L 107.449219 97.078125 L 107.730469 97.628906 L 108.007812 98.175781 L 108.285156 98.71875 L 108.566406 99.257812 L 109.121094 100.320312 L 109.402344 100.84375 L 109.679688 101.363281 L 109.957031 101.878906 L 110.238281 102.390625 L 110.515625 102.898438 L 110.792969 103.402344 L 111.074219 103.898438 L 111.351562 104.394531 L 111.628906 104.886719 L 111.910156 105.375 L 112.1875 105.859375 L 112.742188 106.8125 L 113.023438 107.285156 L 113.300781 107.753906 L 113.578125 108.21875 L 113.859375 108.679688 L 114.414062 109.59375 L 114.695312 110.042969 L 114.972656 110.492188 L 115.25 110.933594 L 115.53125 111.375 L 115.808594 111.8125 L 116.085938 112.246094 L 116.367188 112.679688 L 116.921875 113.53125 L 117.203125 113.953125 L 117.480469 114.371094 L 117.757812 114.785156 L 118.039062 115.195312 L 118.316406 115.605469 L 118.59375 116.011719 L 118.875 116.414062 L 119.152344 116.816406 L 119.429688 117.214844 L 119.707031 117.609375 L 119.988281 118 L 120.265625 118.390625 L 120.542969 118.773438 L 120.824219 119.160156 L 121.378906 119.917969 L 121.660156 120.292969 L 121.9375 120.667969 L 122.214844 121.035156 L 122.496094 121.40625 L 123.050781 122.132812 L 123.332031 122.492188 L 123.609375 122.851562 L 123.886719 123.207031 L 124.167969 123.558594 L 124.445312 123.910156 L 124.722656 124.257812 L 125.003906 124.605469 L 125.28125 124.949219 L 125.835938 125.628906 L 126.117188 125.964844 L 126.394531 126.300781 L 126.671875 126.632812 L 126.953125 126.960938 L 127.507812 127.617188 L 127.789062 127.941406 L 128.34375 128.582031 L 128.625 128.898438 L 128.902344 129.214844 L 129.179688 129.527344 L 129.460938 129.839844 L 129.738281 130.152344 L 130.015625 130.457031 L 130.296875 130.765625 L 130.574219 131.066406 L 130.851562 131.371094 L 131.132812 131.671875 L 131.6875 132.265625 L 131.964844 132.558594 L 132.246094 132.851562 L 132.523438 133.144531 L 132.800781 133.433594 L 133.082031 133.71875 L 133.636719 134.289062 L 133.917969 134.570312 L 134.195312 134.851562 L 134.472656 135.128906 L 134.753906 135.40625 L 135.03125 135.683594 L 135.308594 135.957031 L 135.589844 136.230469 L 136.144531 136.769531 L 136.425781 137.035156 L 136.980469 137.566406 L 137.261719 137.828125 L 137.816406 138.351562 L 138.09375 138.609375 L 138.375 138.863281 L 138.652344 139.121094 L 138.929688 139.375 L 139.210938 139.625 L 139.488281 139.878906 L 139.765625 140.125 L 140.046875 140.375 L 140.601562 140.867188 L 140.882812 141.109375 L 141.4375 141.59375 L 141.71875 141.835938 L 141.996094 142.074219 L 142.273438 142.308594 L 142.554688 142.546875 L 143.109375 143.015625 L 143.390625 143.246094 L 143.945312 143.707031 L 144.226562 143.933594 L 145.058594 144.613281 L 145.339844 144.835938 L 145.617188 145.058594 L 145.894531 145.277344 L 146.175781 145.496094 L 146.730469 145.933594 L 147.011719 146.148438 L 147.566406 146.578125 L 147.847656 146.792969 L 148.402344 147.214844 L 148.683594 147.425781 L 149.238281 147.839844 L 149.519531 148.046875 L 149.796875 148.25 L 150.074219 148.457031 L 150.355469 148.660156 L 150.632812 148.859375 L 150.910156 149.0625 L 151.1875 149.261719 L 151.46875 149.460938 L 151.746094 149.660156 L 152.023438 149.855469 L 152.304688 150.050781 L 152.859375 150.441406 L 153.140625 150.632812 L 153.417969 150.828125 L 153.695312 151.019531 L 153.976562 151.207031 L 154.253906 151.398438 L 154.53125 151.585938 L 154.8125 151.773438 L 155.089844 151.960938 L 155.367188 152.144531 L 155.648438 152.332031 L 155.925781 152.515625 L 156.203125 152.695312 L 156.484375 152.878906 L 156.761719 153.058594 L 157.039062 153.242188 L 157.316406 153.417969 L 157.597656 153.597656 L 157.875 153.777344 L 158.152344 153.953125 L 158.433594 154.128906 L 158.710938 154.304688 L 158.988281 154.476562 L 159.269531 154.652344 L 159.824219 154.996094 L 160.105469 155.167969 L 160.382812 155.335938 L 160.660156 155.507812 L 160.941406 155.675781 L 161.496094 156.011719 L 161.777344 156.175781 L 162.054688 156.34375 L 162.332031 156.507812 L 162.613281 156.671875 L 162.890625 156.835938 L 163.167969 156.996094 L 163.445312 157.160156 L 163.726562 157.320312 L 164.28125 157.640625 L 164.5625 157.796875 L 164.839844 157.957031 L 165.117188 158.113281 L 165.398438 158.269531 L 165.953125 158.582031 L 166.234375 158.734375 L 166.511719 158.890625 L 166.789062 159.042969 L 167.070312 159.195312 L 167.625 159.5 L 167.90625 159.648438 L 168.183594 159.800781 L 168.460938 159.949219 L 168.742188 160.097656 L 169.019531 160.246094 L 169.296875 160.390625 L 169.578125 160.539062 L 169.855469 160.683594 L 170.132812 160.832031 L 170.410156 160.976562 L 170.691406 161.117188 L 171.246094 161.40625 L 171.527344 161.546875 L 171.804688 161.6875 L 172.082031 161.832031 L 172.363281 161.96875 L 172.917969 162.25 L 173.199219 162.386719 L 173.476562 162.527344 L 173.753906 162.664062 L 174.035156 162.800781 L 174.589844 163.074219 L 174.871094 163.207031 L 175.148438 163.34375 L 175.425781 163.476562 L 175.707031 163.609375 L 176.539062 164.007812 L 176.820312 164.136719 L 177.097656 164.269531 L 177.375 164.398438 L 177.65625 164.527344 L 178.210938 164.785156 L 178.492188 164.914062 L 178.769531 165.042969 L 179.046875 165.167969 L 179.328125 165.296875 L 179.882812 165.546875 L 180.164062 165.671875 L 180.71875 165.921875 L 181 166.042969 L 181.277344 166.167969 L 181.554688 166.289062 L 181.835938 166.414062 L 182.667969 166.777344 L 182.949219 166.894531 L 183.226562 167.015625 L 183.503906 167.132812 L 183.785156 167.253906 L 184.339844 167.488281 L 184.621094 167.605469 L 185.175781 167.839844 L 185.457031 167.957031 L 185.734375 168.070312 L 186.011719 168.1875 L 186.292969 168.300781 L 186.847656 168.527344 L 187.128906 168.640625 L 187.683594 168.867188 L 187.964844 168.980469 L 188.242188 169.089844 L 188.519531 169.203125 L 188.800781 169.3125 L 189.078125 169.421875 L 189.355469 169.535156 L 189.632812 169.644531 L 189.914062 169.753906 L 190.191406 169.859375 L 190.46875 169.96875 L 190.75 170.078125 L 191.027344 170.183594 L 191.304688 170.292969 L 191.585938 170.398438 L 192.140625 170.609375 L 192.421875 170.714844 L 192.976562 170.925781 L 193.257812 171.03125 L 193.535156 171.132812 L 193.8125 171.238281 L 194.09375 171.339844 L 194.371094 171.445312 L 194.648438 171.546875 "/>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 55.632812 171.546875 L 55.910156 171.445312 L 56.191406 171.339844 L 56.46875 171.238281 L 56.746094 171.132812 L 57.027344 171.03125 L 57.582031 170.820312 L 57.863281 170.714844 L 58.417969 170.503906 L 58.699219 170.398438 L 58.976562 170.292969 L 59.253906 170.183594 L 59.535156 170.078125 L 60.089844 169.859375 L 60.371094 169.753906 L 60.925781 169.535156 L 61.207031 169.421875 L 61.761719 169.203125 L 62.039062 169.089844 L 62.320312 168.980469 L 62.875 168.753906 L 63.15625 168.640625 L 63.710938 168.414062 L 63.992188 168.300781 L 64.269531 168.1875 L 64.546875 168.070312 L 64.828125 167.957031 L 65.382812 167.722656 L 65.664062 167.605469 L 66.21875 167.371094 L 66.5 167.253906 L 66.777344 167.132812 L 67.054688 167.015625 L 67.335938 166.894531 L 67.613281 166.777344 L 68.167969 166.535156 L 68.449219 166.414062 L 68.726562 166.289062 L 69.003906 166.167969 L 69.285156 166.042969 L 69.5625 165.921875 L 69.839844 165.796875 L 70.121094 165.671875 L 70.675781 165.421875 L 70.957031 165.296875 L 71.234375 165.167969 L 71.511719 165.042969 L 71.792969 164.914062 L 72.347656 164.65625 L 72.628906 164.527344 L 73.183594 164.269531 L 73.464844 164.136719 L 73.742188 164.007812 L 74.019531 163.875 L 74.300781 163.742188 L 75.132812 163.34375 L 75.414062 163.207031 L 75.691406 163.074219 L 75.96875 162.9375 L 76.25 162.800781 L 76.804688 162.527344 L 77.085938 162.386719 L 77.363281 162.25 L 77.640625 162.109375 L 77.921875 161.96875 L 78.199219 161.832031 L 78.476562 161.6875 L 78.757812 161.546875 L 79.035156 161.40625 L 79.3125 161.261719 L 79.59375 161.117188 L 79.871094 160.976562 L 80.148438 160.832031 L 80.429688 160.683594 L 80.707031 160.539062 L 80.984375 160.390625 L 81.261719 160.246094 L 81.542969 160.097656 L 82.097656 159.800781 L 82.378906 159.648438 L 82.65625 159.5 L 82.933594 159.347656 L 83.214844 159.195312 L 83.769531 158.890625 L 84.050781 158.734375 L 84.328125 158.582031 L 84.605469 158.425781 L 84.886719 158.269531 L 85.441406 157.957031 L 85.722656 157.796875 L 86 157.640625 L 86.277344 157.480469 L 86.558594 157.320312 L 86.835938 157.160156 L 87.113281 156.996094 L 87.390625 156.835938 L 87.671875 156.671875 L 88.226562 156.34375 L 88.507812 156.175781 L 88.785156 156.011719 L 89.0625 155.84375 L 89.34375 155.675781 L 89.621094 155.507812 L 89.898438 155.335938 L 90.179688 155.167969 L 90.734375 154.824219 L 91.015625 154.652344 L 91.292969 154.476562 L 91.570312 154.304688 L 91.851562 154.128906 L 92.40625 153.777344 L 92.6875 153.597656 L 92.964844 153.417969 L 93.242188 153.242188 L 93.519531 153.058594 L 93.800781 152.878906 L 94.078125 152.695312 L 94.355469 152.515625 L 94.636719 152.332031 L 94.914062 152.144531 L 95.191406 151.960938 L 95.472656 151.773438 L 96.027344 151.398438 L 96.308594 151.207031 L 96.585938 151.019531 L 96.863281 150.828125 L 97.144531 150.632812 L 97.421875 150.441406 L 97.699219 150.246094 L 97.980469 150.050781 L 98.535156 149.660156 L 98.816406 149.460938 L 99.371094 149.0625 L 99.652344 148.859375 L 99.929688 148.660156 L 100.207031 148.457031 L 100.484375 148.25 L 100.765625 148.046875 L 101.320312 147.632812 L 101.601562 147.425781 L 102.15625 147.003906 L 102.4375 146.792969 L 102.992188 146.363281 L 103.273438 146.148438 L 103.550781 145.933594 L 103.828125 145.714844 L 104.109375 145.496094 L 104.664062 145.058594 L 104.945312 144.835938 L 105.222656 144.613281 L 105.5 144.386719 L 105.78125 144.160156 L 106.335938 143.707031 L 106.613281 143.476562 L 106.894531 143.246094 L 107.171875 143.015625 L 107.449219 142.78125 L 107.730469 142.546875 L 108.007812 142.308594 L 108.285156 142.074219 L 108.566406 141.835938 L 109.121094 141.351562 L 109.402344 141.109375 L 109.679688 140.867188 L 109.957031 140.621094 L 110.238281 140.375 L 110.515625 140.125 L 110.792969 139.878906 L 111.074219 139.625 L 111.351562 139.375 L 111.628906 139.121094 L 111.910156 138.863281 L 112.1875 138.609375 L 112.464844 138.351562 L 112.742188 138.089844 L 113.023438 137.828125 L 113.300781 137.566406 L 113.578125 137.300781 L 113.859375 137.035156 L 114.136719 136.769531 L 114.414062 136.5 L 114.695312 136.230469 L 115.25 135.683594 L 115.53125 135.40625 L 116.367188 134.570312 L 116.644531 134.289062 L 116.921875 134.003906 L 117.203125 133.71875 L 117.480469 133.433594 L 117.757812 133.144531 L 118.039062 132.851562 L 118.59375 132.265625 L 118.875 131.96875 L 119.152344 131.671875 L 119.429688 131.371094 L 119.707031 131.066406 L 119.988281 130.765625 L 120.265625 130.457031 L 120.542969 130.152344 L 120.824219 129.839844 L 121.378906 129.214844 L 121.660156 128.898438 L 121.9375 128.582031 L 122.214844 128.261719 L 122.496094 127.941406 L 122.773438 127.617188 L 123.050781 127.289062 L 123.332031 126.960938 L 123.609375 126.632812 L 123.886719 126.300781 L 124.167969 125.964844 L 124.445312 125.628906 L 124.722656 125.289062 L 125.003906 124.949219 L 125.28125 124.605469 L 125.835938 123.910156 L 126.117188 123.558594 L 126.394531 123.207031 L 126.671875 122.851562 L 126.953125 122.492188 L 127.230469 122.132812 L 127.507812 121.769531 L 127.789062 121.40625 L 128.066406 121.035156 L 128.34375 120.667969 L 128.625 120.292969 L 128.902344 119.917969 L 129.179688 119.539062 L 129.460938 119.160156 L 129.738281 118.773438 L 130.015625 118.390625 L 130.296875 118 L 130.574219 117.609375 L 130.851562 117.214844 L 131.132812 116.816406 L 131.6875 116.011719 L 131.964844 115.605469 L 132.246094 115.195312 L 132.523438 114.785156 L 132.800781 114.371094 L 133.082031 113.953125 L 133.359375 113.53125 L 133.636719 113.105469 L 133.917969 112.679688 L 134.472656 111.8125 L 134.753906 111.375 L 135.308594 110.492188 L 135.589844 110.042969 L 135.867188 109.59375 L 136.144531 109.136719 L 136.425781 108.679688 L 136.703125 108.21875 L 136.980469 107.753906 L 137.261719 107.285156 L 137.539062 106.8125 L 138.09375 105.859375 L 138.375 105.375 L 138.652344 104.886719 L 138.929688 104.394531 L 139.210938 103.898438 L 139.488281 103.402344 L 139.765625 102.898438 L 140.046875 102.390625 L 140.324219 101.878906 L 140.601562 101.363281 L 140.882812 100.84375 L 141.160156 100.320312 L 141.4375 99.789062 L 141.71875 99.257812 L 141.996094 98.71875 L 142.273438 98.175781 L 142.554688 97.628906 L 142.832031 97.078125 L 143.390625 95.960938 L 143.667969 95.398438 L 143.945312 94.828125 L 144.226562 94.25 L 144.503906 93.671875 L 144.78125 93.085938 L 145.058594 92.496094 L 145.339844 91.898438 L 145.617188 91.296875 L 145.894531 90.691406 L 146.175781 90.082031 L 146.453125 89.464844 L 146.730469 88.839844 L 147.011719 88.210938 L 147.289062 87.578125 L 147.566406 86.9375 L 147.847656 86.292969 L 148.125 85.640625 L 148.402344 84.980469 L 148.683594 84.316406 L 148.960938 83.648438 L 149.238281 82.972656 L 149.519531 82.289062 L 149.796875 81.597656 L 150.074219 80.902344 L 150.355469 80.199219 L 150.632812 79.492188 L 150.910156 78.773438 L 151.1875 78.050781 L 151.46875 77.320312 L 151.746094 76.585938 L 152.023438 75.839844 L 152.304688 75.089844 L 152.582031 74.328125 L 152.859375 73.5625 L 153.140625 72.785156 L 153.417969 72.003906 L 153.695312 71.214844 L 153.976562 70.414062 L 154.253906 69.609375 L 154.53125 68.792969 L 154.8125 67.96875 L 155.089844 67.136719 L 155.367188 66.296875 L 155.648438 65.445312 L 155.925781 64.585938 L 156.203125 63.71875 L 156.484375 62.84375 L 156.761719 61.957031 L 157.039062 61.058594 L 157.316406 60.152344 L 157.597656 59.238281 L 157.875 58.3125 L 158.152344 57.375 L 158.433594 56.429688 L 158.710938 55.472656 L 158.988281 54.503906 L 159.269531 53.523438 L 159.546875 52.535156 L 159.824219 51.535156 L 160.105469 50.519531 L 160.382812 49.496094 L 160.660156 48.460938 L 160.941406 47.410156 L 161.21875 46.351562 L 161.496094 45.277344 L 161.777344 44.191406 L 162.054688 43.089844 L 162.332031 41.976562 L 162.613281 40.851562 L 162.890625 39.710938 L 163.167969 38.558594 L 163.445312 37.390625 L 163.726562 36.207031 L 164.003906 35.011719 L 164.28125 33.796875 L 164.5625 32.570312 L 164.839844 31.328125 L 165.117188 30.066406 L 165.398438 28.792969 L 165.675781 27.5 L 165.953125 26.191406 L 166.234375 24.863281 L 166.511719 23.519531 L 166.789062 22.15625 L 167.070312 21.882812 L 194.648438 21.882812 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="148.792969"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="148.792969"/>
+ <use xlink:href="#glyph0-3" x="36.262756" y="148.792969"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="107.636719"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="107.636719"/>
+ <use xlink:href="#glyph0-4" x="36.262756" y="107.636719"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="66.476562"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="66.476562"/>
+ <use xlink:href="#glyph0-5" x="36.262756" y="66.476562"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.261719" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="36.262756" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 145.355469 L 48.683594 145.355469 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 104.199219 L 48.683594 104.199219 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 63.039062 L 48.683594 63.039062 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 21.882812 L 48.683594 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.632812 183.28125 L 55.632812 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.386719 183.28125 L 90.386719 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.140625 183.28125 L 125.140625 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.894531 183.28125 L 159.894531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.648438 183.28125 L 194.648438 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="46.296875" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="51.632462" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="54.297913" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.633499" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="81.050781" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="86.386368" y="192.992188"/>
+ <use xlink:href="#glyph0-7" x="89.051819" y="192.992188"/>
+ <use xlink:href="#glyph0-8" x="94.387405" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="115.804688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="121.140274" y="192.992188"/>
+ <use xlink:href="#glyph0-8" x="123.805725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="129.141312" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="150.558594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="155.89418" y="192.992188"/>
+ <use xlink:href="#glyph0-9" x="158.559631" y="192.992188"/>
+ <use xlink:href="#glyph0-8" x="163.895218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.3125" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.648087" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.313538" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.649124" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="122.140625" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/cosine.svg b/documentation/ui/figure/cosine.svg
new file mode 100644
index 0000000..ab567c5
--- /dev/null
+++ b/documentation/ui/figure/cosine.svg
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 202 152 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 202 77 L 202 79 L 54.019531 79 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 202 40 L 202 41 L 54.019531 41 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 202.601562 171 L 202.601562 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 96 L 202.601562 96 L 202.601562 98 L 54.019531 98 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 58 L 202.601562 58 L 202.601562 60 L 54.019531 60 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface201">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.835938 L 201.601562 152.835938 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.421875 L 201.601562 115.421875 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 78.003906 L 201.601562 78.003906 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.589844 L 201.601562 40.589844 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.546875 L 201.601562 171.546875 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.128906 L 201.601562 134.128906 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.714844 L 201.601562 96.714844 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.296875 L 201.601562 59.296875 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.882812 L 201.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 60.996094 171.539062 L 61.265625 171.523438 L 61.53125 171.492188 L 61.800781 171.449219 L 62.070312 171.398438 L 62.339844 171.332031 L 62.609375 171.253906 L 62.878906 171.167969 L 63.144531 171.066406 L 63.414062 170.953125 L 63.683594 170.828125 L 63.953125 170.691406 L 64.222656 170.546875 L 64.492188 170.386719 L 64.757812 170.214844 L 65.027344 170.03125 L 65.296875 169.839844 L 65.566406 169.632812 L 65.835938 169.414062 L 66.105469 169.183594 L 66.371094 168.945312 L 66.640625 168.691406 L 66.910156 168.429688 L 67.179688 168.15625 L 67.449219 167.867188 L 67.71875 167.570312 L 67.984375 167.261719 L 68.253906 166.941406 L 68.523438 166.613281 L 68.792969 166.269531 L 69.0625 165.917969 L 69.332031 165.554688 L 69.597656 165.179688 L 69.867188 164.792969 L 70.136719 164.394531 L 70.40625 163.988281 L 70.675781 163.570312 L 70.945312 163.140625 L 71.210938 162.703125 L 71.480469 162.253906 L 71.75 161.792969 L 72.019531 161.324219 L 72.289062 160.84375 L 72.558594 160.351562 L 72.824219 159.851562 L 73.09375 159.339844 L 73.363281 158.820312 L 73.632812 158.289062 L 73.902344 157.75 L 74.167969 157.199219 L 74.4375 156.640625 L 74.707031 156.070312 L 74.976562 155.492188 L 75.246094 154.902344 L 75.515625 154.308594 L 75.78125 153.699219 L 76.050781 153.085938 L 76.320312 152.460938 L 76.589844 151.828125 L 76.859375 151.1875 L 77.128906 150.535156 L 77.394531 149.878906 L 77.664062 149.210938 L 77.933594 148.535156 L 78.203125 147.851562 L 78.472656 147.160156 L 78.742188 146.457031 L 79.007812 145.75 L 79.277344 145.035156 L 79.546875 144.3125 L 79.816406 143.582031 L 80.085938 142.84375 L 80.355469 142.097656 L 80.621094 141.34375 L 80.890625 140.585938 L 81.160156 139.816406 L 81.429688 139.042969 L 81.699219 138.265625 L 81.96875 137.476562 L 82.234375 136.683594 L 82.503906 135.882812 L 82.773438 135.078125 L 83.042969 134.265625 L 83.3125 133.449219 L 83.582031 132.625 L 83.847656 131.792969 L 84.117188 130.960938 L 84.65625 129.273438 L 84.925781 128.421875 L 85.195312 127.566406 L 85.460938 126.707031 L 85.730469 125.839844 L 86 124.96875 L 86.269531 124.09375 L 86.539062 123.214844 L 86.808594 122.332031 L 87.074219 121.445312 L 87.34375 120.554688 L 87.613281 119.660156 L 87.882812 118.761719 L 88.152344 117.859375 L 88.417969 116.953125 L 88.957031 115.132812 L 89.226562 114.21875 L 89.496094 113.300781 L 89.765625 112.378906 L 90.03125 111.457031 L 90.570312 109.605469 L 91.109375 107.746094 L 91.378906 106.8125 L 91.644531 105.878906 L 92.722656 102.128906 L 92.992188 101.1875 L 93.257812 100.246094 L 94.066406 97.421875 L 94.335938 96.476562 L 94.605469 95.535156 L 94.871094 94.59375 L 95.679688 91.769531 L 95.949219 90.832031 L 96.21875 89.890625 L 96.484375 88.953125 L 96.753906 88.019531 L 97.023438 87.082031 L 97.292969 86.148438 L 97.5625 85.21875 L 97.832031 84.285156 L 98.097656 83.359375 L 98.636719 81.507812 L 98.90625 80.585938 L 99.175781 79.667969 L 99.445312 78.753906 L 99.710938 77.839844 L 99.980469 76.929688 L 100.519531 75.117188 L 101.058594 73.320312 L 101.324219 72.425781 L 101.863281 70.652344 L 102.402344 68.894531 L 102.667969 68.023438 L 102.9375 67.15625 L 103.207031 66.292969 L 103.476562 65.433594 L 103.746094 64.578125 L 104.015625 63.730469 L 104.28125 62.886719 L 104.550781 62.050781 L 104.820312 61.21875 L 105.089844 60.390625 L 105.359375 59.570312 L 105.628906 58.753906 L 105.894531 57.945312 L 106.164062 57.144531 L 106.433594 56.347656 L 106.703125 55.554688 L 106.972656 54.773438 L 107.242188 53.996094 L 107.507812 53.226562 L 107.777344 52.460938 L 108.046875 51.707031 L 108.316406 50.957031 L 108.585938 50.214844 L 108.855469 49.480469 L 109.121094 48.753906 L 109.390625 48.035156 L 109.660156 47.320312 L 109.929688 46.617188 L 110.199219 45.921875 L 110.46875 45.234375 L 110.734375 44.554688 L 111.003906 43.882812 L 111.273438 43.21875 L 111.542969 42.566406 L 111.8125 41.917969 L 112.082031 41.28125 L 112.347656 40.652344 L 112.617188 40.035156 L 112.886719 39.421875 L 113.15625 38.820312 L 113.425781 38.230469 L 113.695312 37.644531 L 113.960938 37.070312 L 114.230469 36.507812 L 114.5 35.953125 L 114.769531 35.40625 L 115.039062 34.871094 L 115.308594 34.347656 L 115.574219 33.832031 L 115.84375 33.324219 L 116.113281 32.828125 L 116.382812 32.34375 L 116.652344 31.867188 L 116.921875 31.402344 L 117.1875 30.949219 L 117.457031 30.503906 L 117.726562 30.070312 L 117.996094 29.648438 L 118.265625 29.234375 L 118.53125 28.832031 L 118.800781 28.441406 L 119.070312 28.0625 L 119.339844 27.691406 L 119.609375 27.332031 L 119.878906 26.984375 L 120.144531 26.648438 L 120.414062 26.324219 L 120.683594 26.007812 L 120.953125 25.707031 L 121.222656 25.414062 L 121.492188 25.132812 L 121.757812 24.863281 L 122.027344 24.605469 L 122.296875 24.359375 L 122.566406 24.125 L 122.835938 23.902344 L 123.105469 23.691406 L 123.371094 23.492188 L 123.640625 23.300781 L 123.910156 23.125 L 124.179688 22.960938 L 124.449219 22.808594 L 124.71875 22.664062 L 124.984375 22.535156 L 125.253906 22.417969 L 125.523438 22.308594 L 125.792969 22.214844 L 126.0625 22.132812 L 126.332031 22.0625 L 126.597656 22 L 126.867188 21.953125 L 127.136719 21.917969 L 127.40625 21.894531 L 127.675781 21.882812 L 127.945312 21.882812 L 128.210938 21.894531 L 128.480469 21.917969 L 128.75 21.953125 L 129.019531 22 L 129.289062 22.0625 L 129.558594 22.132812 L 129.824219 22.214844 L 130.09375 22.308594 L 130.363281 22.417969 L 130.632812 22.535156 L 130.902344 22.664062 L 131.171875 22.808594 L 131.4375 22.960938 L 131.707031 23.125 L 131.976562 23.300781 L 132.246094 23.492188 L 132.515625 23.691406 L 132.78125 23.902344 L 133.050781 24.125 L 133.320312 24.359375 L 133.589844 24.605469 L 133.859375 24.863281 L 134.128906 25.132812 L 134.394531 25.414062 L 134.664062 25.707031 L 134.933594 26.007812 L 135.203125 26.324219 L 135.472656 26.648438 L 135.742188 26.984375 L 136.007812 27.332031 L 136.277344 27.691406 L 136.546875 28.0625 L 136.816406 28.441406 L 137.085938 28.832031 L 137.355469 29.234375 L 137.621094 29.648438 L 137.890625 30.070312 L 138.160156 30.503906 L 138.429688 30.949219 L 138.699219 31.402344 L 138.96875 31.867188 L 139.234375 32.34375 L 139.503906 32.828125 L 139.773438 33.324219 L 140.042969 33.832031 L 140.3125 34.347656 L 140.582031 34.871094 L 140.847656 35.40625 L 141.117188 35.953125 L 141.386719 36.507812 L 141.65625 37.070312 L 141.925781 37.644531 L 142.195312 38.230469 L 142.460938 38.820312 L 142.730469 39.421875 L 143 40.035156 L 143.269531 40.652344 L 143.539062 41.28125 L 143.808594 41.917969 L 144.074219 42.566406 L 144.34375 43.21875 L 144.613281 43.882812 L 144.882812 44.554688 L 145.152344 45.234375 L 145.421875 45.921875 L 145.6875 46.617188 L 145.957031 47.320312 L 146.226562 48.035156 L 146.496094 48.753906 L 146.765625 49.480469 L 147.03125 50.214844 L 147.300781 50.957031 L 147.570312 51.707031 L 147.839844 52.460938 L 148.109375 53.226562 L 148.378906 53.996094 L 148.644531 54.773438 L 148.914062 55.554688 L 149.183594 56.347656 L 149.453125 57.144531 L 149.722656 57.945312 L 149.992188 58.753906 L 150.257812 59.570312 L 150.527344 60.390625 L 150.796875 61.21875 L 151.066406 62.050781 L 151.335938 62.886719 L 151.605469 63.730469 L 151.871094 64.578125 L 152.140625 65.433594 L 152.410156 66.292969 L 152.679688 67.15625 L 152.949219 68.023438 L 153.21875 68.894531 L 153.484375 69.773438 L 153.753906 70.652344 L 154.292969 72.425781 L 154.5625 73.320312 L 154.832031 74.21875 L 155.097656 75.117188 L 155.636719 76.929688 L 155.90625 77.839844 L 156.445312 79.667969 L 156.710938 80.585938 L 156.980469 81.507812 L 157.789062 84.285156 L 158.058594 85.21875 L 158.324219 86.148438 L 158.59375 87.082031 L 158.863281 88.019531 L 159.132812 88.953125 L 159.402344 89.890625 L 159.671875 90.832031 L 159.9375 91.769531 L 161.015625 95.535156 L 161.28125 96.476562 L 161.550781 97.421875 L 162.628906 101.1875 L 162.894531 102.128906 L 163.972656 105.878906 L 164.242188 106.8125 L 164.507812 107.746094 L 165.046875 109.605469 L 165.585938 111.457031 L 165.855469 112.378906 L 166.121094 113.300781 L 166.390625 114.21875 L 166.660156 115.132812 L 167.199219 116.953125 L 167.46875 117.859375 L 167.734375 118.761719 L 168.003906 119.660156 L 168.273438 120.554688 L 168.542969 121.445312 L 168.8125 122.332031 L 169.082031 123.214844 L 169.347656 124.09375 L 169.617188 124.96875 L 169.886719 125.839844 L 170.15625 126.707031 L 170.425781 127.566406 L 170.695312 128.421875 L 170.960938 129.273438 L 171.5 130.960938 L 172.039062 132.625 L 172.308594 133.449219 L 172.574219 134.265625 L 172.84375 135.078125 L 173.113281 135.882812 L 173.382812 136.683594 L 173.652344 137.476562 L 173.921875 138.265625 L 174.1875 139.042969 L 174.457031 139.816406 L 174.726562 140.585938 L 174.996094 141.34375 L 175.265625 142.097656 L 175.535156 142.84375 L 175.800781 143.582031 L 176.070312 144.3125 L 176.339844 145.035156 L 176.609375 145.75 L 176.878906 146.457031 L 177.144531 147.160156 L 177.414062 147.851562 L 177.683594 148.535156 L 177.953125 149.210938 L 178.222656 149.878906 L 178.492188 150.535156 L 178.757812 151.1875 L 179.027344 151.828125 L 179.296875 152.460938 L 179.566406 153.085938 L 179.835938 153.699219 L 180.105469 154.308594 L 180.371094 154.902344 L 180.640625 155.492188 L 180.910156 156.070312 L 181.179688 156.640625 L 181.449219 157.199219 L 181.71875 157.75 L 181.984375 158.289062 L 182.253906 158.820312 L 182.523438 159.339844 L 182.792969 159.851562 L 183.0625 160.351562 L 183.332031 160.84375 L 183.597656 161.324219 L 183.867188 161.792969 L 184.136719 162.253906 L 184.40625 162.703125 L 184.675781 163.140625 L 184.945312 163.570312 L 185.210938 163.988281 L 185.480469 164.394531 L 185.75 164.792969 L 186.019531 165.179688 L 186.289062 165.554688 L 186.558594 165.917969 L 186.824219 166.269531 L 187.09375 166.613281 L 187.363281 166.941406 L 187.632812 167.261719 L 187.902344 167.570312 L 188.171875 167.867188 L 188.4375 168.15625 L 188.707031 168.429688 L 188.976562 168.691406 L 189.246094 168.945312 L 189.515625 169.183594 L 189.785156 169.414062 L 190.050781 169.632812 L 190.320312 169.839844 L 190.589844 170.03125 L 190.859375 170.214844 L 191.128906 170.386719 L 191.394531 170.546875 L 191.664062 170.691406 L 191.933594 170.828125 L 192.203125 170.953125 L 192.472656 171.066406 L 192.742188 171.167969 L 193.007812 171.253906 L 193.277344 171.332031 L 193.546875 171.398438 L 193.816406 171.449219 L 194.085938 171.492188 L 194.355469 171.523438 L 194.621094 171.539062 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="100.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="100.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="100.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="100.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="62.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="62.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="62.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="62.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.546875 L 54.019531 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.128906 L 54.019531 134.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.714844 L 54.019531 96.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.296875 L 54.019531 59.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.882812 L 54.019531 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/discrete.svg b/documentation/ui/figure/discrete.svg
new file mode 100644
index 0000000..bb24450
--- /dev/null
+++ b/documentation/ui/figure/discrete.svg
@@ -0,0 +1,310 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 202 152 L 202 153 L 54.019531 153 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 114 L 202 114 L 202 115 L 54.019531 115 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 76 L 202 76 L 202 77 L 54.019531 77 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 38 L 202 38 L 202 39 L 54.019531 39 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 202.601562 171 L 202.601562 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 132 L 202.601562 132 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 94 L 202.601562 94 L 202.601562 96 L 54.019531 96 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 56 L 202.601562 56 L 202.601562 58 L 54.019531 58 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 18 L 202.601562 18 L 202.601562 20 L 54.019531 20 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface196">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.515625 L 201.601562 152.515625 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 114.449219 L 201.601562 114.449219 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 76.386719 L 201.601562 76.386719 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 38.320312 L 201.601562 38.320312 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.546875 L 201.601562 171.546875 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 133.480469 L 201.601562 133.480469 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 95.417969 L 201.601562 95.417969 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 57.355469 L 201.601562 57.355469 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 19.289062 L 201.601562 19.289062 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 64.445312 171.546875 C 64.445312 176.507812 57.007812 176.507812 57.007812 171.546875 C 57.007812 166.585938 64.445312 166.585938 64.445312 171.546875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 66.867188 160.5625 C 66.867188 165.523438 59.425781 165.523438 59.425781 160.5625 C 59.425781 155.601562 66.867188 155.601562 66.867188 160.5625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 69.554688 148.355469 C 69.554688 153.316406 62.113281 153.316406 62.113281 148.355469 C 62.113281 143.394531 69.554688 143.394531 69.554688 148.355469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 72.242188 136.152344 C 72.242188 141.113281 64.804688 141.113281 64.804688 136.152344 C 64.804688 131.191406 72.242188 131.191406 72.242188 136.152344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 74.933594 123.945312 C 74.933594 128.90625 67.492188 128.90625 67.492188 123.945312 C 67.492188 118.984375 74.933594 118.984375 74.933594 123.945312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 77.621094 111.742188 C 77.621094 116.703125 70.179688 116.703125 70.179688 111.742188 C 70.179688 106.78125 77.621094 106.78125 77.621094 111.742188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 80.308594 99.535156 C 80.308594 104.496094 72.871094 104.496094 72.871094 99.535156 C 72.871094 94.578125 80.308594 94.578125 80.308594 99.535156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 83 87.332031 C 83 92.292969 75.558594 92.292969 75.558594 87.332031 C 75.558594 82.371094 83 82.371094 83 87.332031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 85.6875 75.128906 C 85.6875 80.085938 78.246094 80.085938 78.246094 75.128906 C 78.246094 70.167969 85.6875 70.167969 85.6875 75.128906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 88.375 62.921875 C 88.375 67.882812 80.933594 67.882812 80.933594 62.921875 C 80.933594 57.960938 88.375 57.960938 88.375 62.921875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 91.066406 50.71875 C 91.066406 55.679688 83.625 55.679688 83.625 50.71875 C 83.625 45.757812 91.066406 45.757812 91.066406 50.71875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 93.753906 38.511719 C 93.753906 43.472656 86.3125 43.472656 86.3125 38.511719 C 86.3125 33.550781 93.753906 33.550781 93.753906 38.511719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 96.441406 26.308594 C 96.441406 31.269531 89 31.269531 89 26.308594 C 89 21.347656 96.441406 21.347656 96.441406 26.308594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 99.132812 21.882812 C 99.132812 26.84375 91.691406 26.84375 91.691406 21.882812 C 91.691406 16.921875 99.132812 16.921875 99.132812 21.882812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 101.820312 27.984375 C 101.820312 32.945312 94.378906 32.945312 94.378906 27.984375 C 94.378906 23.023438 101.820312 23.023438 101.820312 27.984375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 104.507812 34.089844 C 104.507812 39.046875 97.066406 39.046875 97.066406 34.089844 C 97.066406 29.128906 104.507812 29.128906 104.507812 34.089844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 107.195312 40.191406 C 107.195312 45.152344 99.757812 45.152344 99.757812 40.191406 C 99.757812 35.230469 107.195312 35.230469 107.195312 40.191406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 109.886719 46.292969 C 109.886719 51.253906 102.445312 51.253906 102.445312 46.292969 C 102.445312 41.332031 109.886719 41.332031 109.886719 46.292969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 112.574219 52.394531 C 112.574219 57.355469 105.132812 57.355469 105.132812 52.394531 C 105.132812 47.433594 112.574219 47.433594 112.574219 52.394531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 115.261719 58.496094 C 115.261719 63.457031 107.820312 63.457031 107.820312 58.496094 C 107.820312 53.539062 115.261719 53.539062 115.261719 58.496094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 117.953125 64.601562 C 117.953125 69.5625 110.511719 69.5625 110.511719 64.601562 C 110.511719 59.640625 117.953125 59.640625 117.953125 64.601562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 120.640625 70.703125 C 120.640625 75.664062 113.199219 75.664062 113.199219 70.703125 C 113.199219 65.742188 120.640625 65.742188 120.640625 70.703125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 123.328125 76.804688 C 123.328125 81.765625 115.886719 81.765625 115.886719 76.804688 C 115.886719 71.84375 123.328125 71.84375 123.328125 76.804688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 126.019531 82.90625 C 126.019531 87.867188 118.578125 87.867188 118.578125 82.90625 C 118.578125 77.945312 126.019531 77.945312 126.019531 82.90625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 128.707031 89.011719 C 128.707031 93.972656 121.265625 93.972656 121.265625 89.011719 C 121.265625 84.050781 128.707031 84.050781 128.707031 89.011719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 131.394531 95.113281 C 131.394531 100.074219 123.953125 100.074219 123.953125 95.113281 C 123.953125 90.152344 131.394531 90.152344 131.394531 95.113281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 134.082031 89.621094 C 134.082031 94.582031 126.644531 94.582031 126.644531 89.621094 C 126.644531 84.660156 134.082031 84.660156 134.082031 89.621094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 136.773438 83.519531 C 136.773438 88.480469 129.332031 88.480469 129.332031 83.519531 C 129.332031 78.558594 136.773438 78.558594 136.773438 83.519531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 139.460938 77.414062 C 139.460938 82.375 132.019531 82.375 132.019531 77.414062 C 132.019531 72.453125 139.460938 72.453125 139.460938 77.414062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 142.148438 71.3125 C 142.148438 76.273438 134.707031 76.273438 134.707031 71.3125 C 134.707031 66.351562 142.148438 66.351562 142.148438 71.3125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 144.839844 65.210938 C 144.839844 70.171875 137.398438 70.171875 137.398438 65.210938 C 137.398438 60.25 144.839844 60.25 144.839844 65.210938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 147.527344 59.109375 C 147.527344 64.070312 140.085938 64.070312 140.085938 59.109375 C 140.085938 54.148438 147.527344 54.148438 147.527344 59.109375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 150.214844 53.003906 C 150.214844 57.964844 142.773438 57.964844 142.773438 53.003906 C 142.773438 48.046875 150.214844 48.046875 150.214844 53.003906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 152.90625 46.902344 C 152.90625 51.863281 145.464844 51.863281 145.464844 46.902344 C 145.464844 41.941406 152.90625 41.941406 152.90625 46.902344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 155.59375 40.800781 C 155.59375 45.761719 148.152344 45.761719 148.152344 40.800781 C 148.152344 35.839844 155.59375 35.839844 155.59375 40.800781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 158.28125 34.699219 C 158.28125 39.660156 150.839844 39.660156 150.839844 34.699219 C 150.839844 29.738281 158.28125 29.738281 158.28125 34.699219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 160.96875 28.597656 C 160.96875 33.554688 153.53125 33.554688 153.53125 28.597656 C 153.53125 23.636719 160.96875 23.636719 160.96875 28.597656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 163.660156 22.492188 C 163.660156 27.453125 156.21875 27.453125 156.21875 22.492188 C 156.21875 17.53125 163.660156 17.53125 163.660156 22.492188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 166.347656 25.085938 C 166.347656 30.046875 158.90625 30.046875 158.90625 25.085938 C 158.90625 20.125 166.347656 20.125 166.347656 25.085938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 169.035156 37.292969 C 169.035156 42.253906 161.597656 42.253906 161.597656 37.292969 C 161.597656 32.332031 169.035156 32.332031 169.035156 37.292969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 171.726562 49.496094 C 171.726562 54.457031 164.285156 54.457031 164.285156 49.496094 C 164.285156 44.535156 171.726562 44.535156 171.726562 49.496094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 174.414062 61.703125 C 174.414062 66.664062 166.972656 66.664062 166.972656 61.703125 C 166.972656 56.742188 174.414062 56.742188 174.414062 61.703125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 177.101562 73.90625 C 177.101562 78.867188 169.660156 78.867188 169.660156 73.90625 C 169.660156 68.945312 177.101562 68.945312 177.101562 73.90625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 179.792969 86.113281 C 179.792969 91.070312 172.351562 91.070312 172.351562 86.113281 C 172.351562 81.152344 179.792969 81.152344 179.792969 86.113281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 182.480469 98.316406 C 182.480469 103.277344 175.039062 103.277344 175.039062 98.316406 C 175.039062 93.355469 182.480469 93.355469 182.480469 98.316406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 185.167969 110.519531 C 185.167969 115.480469 177.726562 115.480469 177.726562 110.519531 C 177.726562 105.5625 185.167969 105.5625 185.167969 110.519531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 187.859375 122.726562 C 187.859375 127.6875 180.417969 127.6875 180.417969 122.726562 C 180.417969 117.765625 187.859375 117.765625 187.859375 122.726562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 190.546875 134.929688 C 190.546875 139.890625 183.105469 139.890625 183.105469 134.929688 C 183.105469 129.96875 190.546875 129.96875 190.546875 134.929688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 193.234375 147.136719 C 193.234375 152.097656 185.792969 152.097656 185.792969 147.136719 C 185.792969 142.175781 193.234375 142.175781 193.234375 147.136719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 195.921875 159.339844 C 195.921875 164.300781 188.484375 164.300781 188.484375 159.339844 C 188.484375 154.378906 195.921875 154.378906 195.921875 159.339844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 198.613281 171.546875 C 198.613281 176.507812 191.171875 176.507812 191.171875 171.546875 C 191.171875 166.585938 198.613281 166.585938 198.613281 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="136.917969"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="136.917969"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="136.917969"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="136.917969"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="98.855469"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="98.855469"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="98.855469"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="98.855469"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="60.792969"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="60.792969"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="60.792969"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="60.792969"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="22.726562"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="22.726562"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="22.726562"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="22.726562"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.546875 L 54.019531 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 133.480469 L 54.019531 133.480469 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 95.417969 L 54.019531 95.417969 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 57.355469 L 54.019531 57.355469 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 19.289062 L 54.019531 19.289062 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/gaussian.svg b/documentation/ui/figure/gaussian.svg
new file mode 100644
index 0000000..3eddc70
--- /dev/null
+++ b/documentation/ui/figure/gaussian.svg
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 158 L 202 158 L 202 160 L 54.019531 160 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 119 L 202 119 L 202 120 L 54.019531 120 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 80 L 202 80 L 202 81 L 54.019531 81 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 41 L 202 41 L 202 42 L 54.019531 42 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 177 L 202.601562 177 L 202.601562 179 L 54.019531 179 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 138 L 202.601562 138 L 202.601562 140 L 54.019531 140 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 99 L 202.601562 99 L 202.601562 101 L 54.019531 101 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 60 L 202.601562 60 L 202.601562 62 L 54.019531 62 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface206">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 158.855469 L 201.601562 158.855469 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 119.71875 L 201.601562 119.71875 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 80.585938 L 201.601562 80.585938 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 41.449219 L 201.601562 41.449219 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 178.425781 L 201.601562 178.425781 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 139.289062 L 201.601562 139.289062 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 100.152344 L 201.601562 100.152344 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 61.015625 L 201.601562 61.015625 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.882812 L 201.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 61.265625 171.195312 L 61.53125 171.011719 L 61.800781 170.828125 L 62.339844 170.445312 L 62.878906 170.046875 L 63.144531 169.839844 L 63.414062 169.632812 L 63.683594 169.417969 L 64.222656 168.980469 L 64.492188 168.753906 L 64.757812 168.519531 L 65.027344 168.285156 L 65.296875 168.046875 L 65.566406 167.800781 L 65.835938 167.550781 L 66.105469 167.296875 L 66.371094 167.039062 L 66.640625 166.777344 L 66.910156 166.507812 L 67.179688 166.234375 L 67.449219 165.957031 L 67.71875 165.671875 L 67.984375 165.382812 L 68.253906 165.089844 L 68.523438 164.789062 L 68.792969 164.484375 L 69.0625 164.175781 L 69.332031 163.859375 L 69.597656 163.539062 L 69.867188 163.214844 L 70.136719 162.882812 L 70.40625 162.542969 L 70.675781 162.199219 L 70.945312 161.851562 L 71.210938 161.496094 L 71.480469 161.136719 L 71.75 160.769531 L 72.019531 160.398438 L 72.289062 160.019531 L 72.558594 159.632812 L 72.824219 159.242188 L 73.09375 158.847656 L 73.632812 158.035156 L 73.902344 157.617188 L 74.167969 157.195312 L 74.4375 156.765625 L 74.707031 156.332031 L 74.976562 155.890625 L 75.246094 155.441406 L 75.515625 154.988281 L 75.78125 154.527344 L 76.050781 154.058594 L 76.320312 153.585938 L 76.589844 153.105469 L 76.859375 152.617188 L 77.128906 152.125 L 77.394531 151.621094 L 77.664062 151.113281 L 77.933594 150.597656 L 78.203125 150.078125 L 78.472656 149.550781 L 78.742188 149.015625 L 79.007812 148.472656 L 79.277344 147.921875 L 79.546875 147.367188 L 79.816406 146.804688 L 80.085938 146.234375 L 80.355469 145.65625 L 80.621094 145.070312 L 80.890625 144.480469 L 81.160156 143.882812 L 81.429688 143.277344 L 81.699219 142.664062 L 81.96875 142.046875 L 82.234375 141.417969 L 82.503906 140.785156 L 82.773438 140.144531 L 83.042969 139.5 L 83.3125 138.84375 L 83.582031 138.183594 L 83.847656 137.515625 L 84.117188 136.839844 L 84.386719 136.15625 L 84.65625 135.46875 L 84.925781 134.773438 L 85.195312 134.070312 L 85.460938 133.363281 L 85.730469 132.644531 L 86 131.921875 L 86.269531 131.195312 L 86.539062 130.457031 L 86.808594 129.714844 L 87.074219 128.964844 L 87.34375 128.210938 L 87.613281 127.449219 L 87.882812 126.679688 L 88.152344 125.90625 L 88.417969 125.125 L 88.6875 124.339844 L 88.957031 123.546875 L 89.226562 122.746094 L 89.496094 121.941406 L 89.765625 121.128906 L 90.03125 120.3125 L 90.300781 119.488281 L 90.570312 118.660156 L 90.839844 117.828125 L 91.109375 116.988281 L 91.378906 116.144531 L 91.644531 115.292969 L 91.914062 114.4375 L 92.183594 113.578125 L 92.453125 112.714844 L 92.722656 111.84375 L 92.992188 110.96875 L 93.257812 110.089844 L 93.527344 109.207031 L 94.066406 107.425781 L 94.605469 105.628906 L 94.871094 104.722656 L 95.140625 103.816406 L 95.679688 101.988281 L 95.949219 101.070312 L 96.21875 100.148438 L 96.484375 99.222656 L 97.023438 97.363281 L 97.5625 95.496094 L 97.832031 94.558594 L 98.097656 93.617188 L 98.636719 91.734375 L 98.90625 90.789062 L 99.175781 89.839844 L 99.445312 88.894531 L 99.710938 87.945312 L 99.980469 86.996094 L 100.25 86.042969 L 100.519531 85.09375 L 100.789062 84.140625 L 101.058594 83.191406 L 101.324219 82.238281 L 101.59375 81.289062 L 101.863281 80.335938 L 102.402344 78.4375 L 102.667969 77.492188 L 102.9375 76.542969 L 103.476562 74.652344 L 103.746094 73.710938 L 104.015625 72.773438 L 104.28125 71.835938 L 104.550781 70.898438 L 105.359375 68.109375 L 105.628906 67.1875 L 105.894531 66.269531 L 106.164062 65.351562 L 106.433594 64.441406 L 106.972656 62.628906 L 107.242188 61.730469 L 107.507812 60.835938 L 107.777344 59.949219 L 108.046875 59.066406 L 108.316406 58.1875 L 108.585938 57.316406 L 108.855469 56.449219 L 109.121094 55.589844 L 109.390625 54.734375 L 109.660156 53.886719 L 109.929688 53.046875 L 110.199219 52.210938 L 110.46875 51.386719 L 110.734375 50.566406 L 111.003906 49.757812 L 111.273438 48.953125 L 111.542969 48.15625 L 111.8125 47.371094 L 112.082031 46.589844 L 112.347656 45.820312 L 112.617188 45.0625 L 112.886719 44.308594 L 113.15625 43.566406 L 113.425781 42.832031 L 113.695312 42.109375 L 113.960938 41.394531 L 114.230469 40.691406 L 114.5 40 L 114.769531 39.316406 L 115.039062 38.644531 L 115.308594 37.984375 L 115.574219 37.332031 L 115.84375 36.695312 L 116.113281 36.066406 L 116.382812 35.449219 L 116.652344 34.847656 L 116.921875 34.253906 L 117.1875 33.675781 L 117.457031 33.105469 L 117.726562 32.550781 L 117.996094 32.007812 L 118.265625 31.476562 L 118.53125 30.960938 L 118.800781 30.457031 L 119.070312 29.964844 L 119.339844 29.488281 L 119.609375 29.023438 L 119.878906 28.574219 L 120.144531 28.136719 L 120.414062 27.710938 L 120.683594 27.304688 L 120.953125 26.910156 L 121.222656 26.527344 L 121.492188 26.160156 L 121.757812 25.808594 L 122.027344 25.472656 L 122.296875 25.148438 L 122.566406 24.839844 L 122.835938 24.546875 L 123.105469 24.269531 L 123.371094 24.007812 L 123.640625 23.757812 L 123.910156 23.523438 L 124.179688 23.308594 L 124.449219 23.105469 L 124.71875 22.917969 L 124.984375 22.746094 L 125.253906 22.589844 L 125.523438 22.449219 L 125.792969 22.324219 L 126.0625 22.210938 L 126.332031 22.117188 L 126.597656 22.039062 L 126.867188 21.976562 L 127.136719 21.929688 L 127.40625 21.898438 L 127.675781 21.882812 L 127.945312 21.882812 L 128.210938 21.898438 L 128.480469 21.929688 L 128.75 21.976562 L 129.019531 22.039062 L 129.289062 22.117188 L 129.558594 22.210938 L 129.824219 22.324219 L 130.09375 22.449219 L 130.363281 22.589844 L 130.632812 22.746094 L 130.902344 22.917969 L 131.171875 23.105469 L 131.4375 23.308594 L 131.707031 23.523438 L 131.976562 23.757812 L 132.246094 24.007812 L 132.515625 24.269531 L 132.78125 24.546875 L 133.050781 24.839844 L 133.320312 25.148438 L 133.589844 25.472656 L 133.859375 25.808594 L 134.128906 26.160156 L 134.394531 26.527344 L 134.664062 26.910156 L 134.933594 27.304688 L 135.203125 27.710938 L 135.472656 28.136719 L 135.742188 28.574219 L 136.007812 29.023438 L 136.277344 29.488281 L 136.546875 29.964844 L 136.816406 30.457031 L 137.085938 30.960938 L 137.355469 31.476562 L 137.621094 32.007812 L 137.890625 32.550781 L 138.160156 33.105469 L 138.429688 33.675781 L 138.699219 34.253906 L 138.96875 34.847656 L 139.234375 35.449219 L 139.503906 36.066406 L 139.773438 36.695312 L 140.042969 37.332031 L 140.3125 37.984375 L 140.582031 38.644531 L 140.847656 39.316406 L 141.117188 40 L 141.386719 40.691406 L 141.65625 41.394531 L 141.925781 42.109375 L 142.195312 42.832031 L 142.460938 43.566406 L 142.730469 44.308594 L 143 45.0625 L 143.269531 45.820312 L 143.539062 46.589844 L 143.808594 47.371094 L 144.074219 48.15625 L 144.34375 48.953125 L 144.613281 49.757812 L 144.882812 50.566406 L 145.152344 51.386719 L 145.421875 52.210938 L 145.6875 53.046875 L 145.957031 53.886719 L 146.226562 54.734375 L 146.496094 55.589844 L 146.765625 56.449219 L 147.03125 57.316406 L 147.300781 58.1875 L 147.570312 59.066406 L 147.839844 59.949219 L 148.109375 60.835938 L 148.378906 61.730469 L 148.644531 62.628906 L 149.183594 64.441406 L 149.453125 65.351562 L 149.992188 67.1875 L 150.257812 68.109375 L 151.066406 70.898438 L 151.605469 72.773438 L 151.871094 73.710938 L 152.140625 74.652344 L 152.679688 76.542969 L 152.949219 77.492188 L 153.21875 78.4375 L 153.484375 79.386719 L 153.753906 80.335938 L 154.023438 81.289062 L 154.292969 82.238281 L 154.5625 83.191406 L 154.832031 84.140625 L 155.097656 85.09375 L 155.367188 86.042969 L 155.636719 86.996094 L 156.175781 88.894531 L 156.445312 89.839844 L 156.710938 90.789062 L 156.980469 91.734375 L 157.789062 94.558594 L 158.058594 95.496094 L 158.324219 96.429688 L 158.59375 97.363281 L 159.132812 99.222656 L 159.402344 100.148438 L 159.671875 101.070312 L 159.9375 101.988281 L 160.476562 103.816406 L 161.015625 105.628906 L 161.28125 106.527344 L 161.550781 107.425781 L 162.089844 109.207031 L 162.359375 110.089844 L 162.628906 110.96875 L 162.894531 111.84375 L 163.164062 112.714844 L 163.433594 113.578125 L 163.703125 114.4375 L 163.972656 115.292969 L 164.242188 116.144531 L 164.507812 116.988281 L 164.777344 117.828125 L 165.046875 118.660156 L 165.316406 119.488281 L 165.585938 120.3125 L 165.855469 121.128906 L 166.121094 121.941406 L 166.390625 122.746094 L 166.660156 123.546875 L 166.929688 124.339844 L 167.199219 125.125 L 167.46875 125.90625 L 167.734375 126.679688 L 168.003906 127.449219 L 168.273438 128.210938 L 168.542969 128.964844 L 168.8125 129.714844 L 169.082031 130.457031 L 169.347656 131.195312 L 169.617188 131.921875 L 169.886719 132.644531 L 170.15625 133.363281 L 170.425781 134.070312 L 170.695312 134.773438 L 170.960938 135.46875 L 171.230469 136.15625 L 171.5 136.839844 L 171.769531 137.515625 L 172.039062 138.183594 L 172.308594 138.84375 L 172.574219 139.5 L 172.84375 140.144531 L 173.113281 140.785156 L 173.382812 141.417969 L 173.652344 142.046875 L 173.921875 142.664062 L 174.1875 143.277344 L 174.457031 143.882812 L 174.726562 144.480469 L 174.996094 145.070312 L 175.265625 145.65625 L 175.535156 146.234375 L 175.800781 146.804688 L 176.070312 147.367188 L 176.339844 147.921875 L 176.609375 148.472656 L 176.878906 149.015625 L 177.144531 149.550781 L 177.414062 150.078125 L 177.683594 150.597656 L 177.953125 151.113281 L 178.222656 151.621094 L 178.492188 152.125 L 178.757812 152.617188 L 179.027344 153.105469 L 179.296875 153.585938 L 179.566406 154.058594 L 179.835938 154.527344 L 180.105469 154.988281 L 180.371094 155.441406 L 180.640625 155.890625 L 180.910156 156.332031 L 181.179688 156.765625 L 181.449219 157.195312 L 181.71875 157.617188 L 181.984375 158.035156 L 182.523438 158.847656 L 182.792969 159.242188 L 183.0625 159.632812 L 183.332031 160.019531 L 183.597656 160.398438 L 183.867188 160.769531 L 184.136719 161.136719 L 184.40625 161.496094 L 184.675781 161.851562 L 184.945312 162.199219 L 185.210938 162.542969 L 185.480469 162.882812 L 185.75 163.214844 L 186.019531 163.539062 L 186.289062 163.859375 L 186.558594 164.175781 L 186.824219 164.484375 L 187.09375 164.789062 L 187.363281 165.089844 L 187.632812 165.382812 L 187.902344 165.671875 L 188.171875 165.957031 L 188.4375 166.234375 L 188.707031 166.507812 L 188.976562 166.777344 L 189.246094 167.039062 L 189.515625 167.296875 L 189.785156 167.550781 L 190.050781 167.800781 L 190.320312 168.046875 L 190.589844 168.285156 L 191.128906 168.753906 L 191.394531 168.980469 L 191.933594 169.417969 L 192.203125 169.632812 L 192.742188 170.046875 L 193.007812 170.246094 L 193.277344 170.445312 L 193.816406 170.828125 L 194.355469 171.195312 L 194.621094 171.371094 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="181.863281"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="181.863281"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="181.863281"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="181.863281"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="142.726562"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="142.726562"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="142.726562"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="142.726562"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="103.589844"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="103.589844"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="103.589844"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="103.589844"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="64.453125"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="64.453125"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="64.453125"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="64.453125"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 178.425781 L 54.019531 178.425781 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 139.289062 L 54.019531 139.289062 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 100.152344 L 54.019531 100.152344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 61.015625 L 54.019531 61.015625 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.882812 L 54.019531 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/gaussianProduct.svg b/documentation/ui/figure/gaussianProduct.svg
new file mode 100644
index 0000000..0643bbd
--- /dev/null
+++ b/documentation/ui/figure/gaussianProduct.svg
@@ -0,0 +1,264 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 3.171875 -2.375 L 3.171875 -5.421875 L 1.015625 -2.375 Z M 3.1875 0 L 3.1875 -1.640625 L 0.25 -1.640625 L 0.25 -2.46875 L 3.3125 -6.734375 L 4.03125 -6.734375 L 4.03125 -2.375 L 5.015625 -2.375 L 5.015625 -1.640625 L 4.03125 -1.640625 L 4.03125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 2.8125 -6.734375 C 3.5625 -6.734375 4.082031 -6.535156 4.375 -6.140625 C 4.664062 -5.753906 4.8125 -5.359375 4.8125 -4.953125 L 3.984375 -4.953125 C 3.929688 -5.210938 3.851562 -5.421875 3.75 -5.578125 C 3.539062 -5.859375 3.226562 -6 2.8125 -6 C 2.34375 -6 1.96875 -5.78125 1.6875 -5.34375 C 1.414062 -4.90625 1.265625 -4.28125 1.234375 -3.46875 C 1.421875 -3.75 1.664062 -3.960938 1.96875 -4.109375 C 2.226562 -4.234375 2.523438 -4.296875 2.859375 -4.296875 C 3.421875 -4.296875 3.910156 -4.113281 4.328125 -3.75 C 4.742188 -3.394531 4.953125 -2.863281 4.953125 -2.15625 C 4.953125 -1.539062 4.753906 -1 4.359375 -0.53125 C 3.960938 -0.0625 3.398438 0.171875 2.671875 0.171875 C 2.046875 0.171875 1.503906 -0.0625 1.046875 -0.53125 C 0.585938 -1.007812 0.359375 -1.816406 0.359375 -2.953125 C 0.359375 -3.785156 0.460938 -4.488281 0.671875 -5.0625 C 1.054688 -6.175781 1.769531 -6.734375 2.8125 -6.734375 Z M 2.75 -0.578125 C 3.1875 -0.578125 3.515625 -0.722656 3.734375 -1.015625 C 3.960938 -1.316406 4.078125 -1.671875 4.078125 -2.078125 C 4.078125 -2.421875 3.976562 -2.75 3.78125 -3.0625 C 3.582031 -3.375 3.222656 -3.53125 2.703125 -3.53125 C 2.335938 -3.53125 2.019531 -3.410156 1.75 -3.171875 C 1.476562 -2.929688 1.34375 -2.566406 1.34375 -2.078125 C 1.34375 -1.648438 1.460938 -1.289062 1.703125 -1 C 1.953125 -0.71875 2.300781 -0.578125 2.75 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 2.609375 -3.890625 C 2.984375 -3.890625 3.273438 -3.992188 3.484375 -4.203125 C 3.691406 -4.410156 3.796875 -4.660156 3.796875 -4.953125 C 3.796875 -5.203125 3.691406 -5.429688 3.484375 -5.640625 C 3.285156 -5.847656 2.984375 -5.953125 2.578125 -5.953125 C 2.171875 -5.953125 1.875 -5.847656 1.6875 -5.640625 C 1.507812 -5.429688 1.421875 -5.1875 1.421875 -4.90625 C 1.421875 -4.59375 1.535156 -4.34375 1.765625 -4.15625 C 2.003906 -3.976562 2.285156 -3.890625 2.609375 -3.890625 Z M 2.65625 -0.578125 C 3.050781 -0.578125 3.375 -0.679688 3.625 -0.890625 C 3.882812 -1.097656 4.015625 -1.414062 4.015625 -1.84375 C 4.015625 -2.269531 3.878906 -2.59375 3.609375 -2.8125 C 3.347656 -3.039062 3.007812 -3.15625 2.59375 -3.15625 C 2.195312 -3.15625 1.867188 -3.039062 1.609375 -2.8125 C 1.359375 -2.582031 1.234375 -2.265625 1.234375 -1.859375 C 1.234375 -1.515625 1.347656 -1.210938 1.578125 -0.953125 C 1.816406 -0.703125 2.175781 -0.578125 2.65625 -0.578125 Z M 1.46875 -3.578125 C 1.226562 -3.671875 1.039062 -3.785156 0.90625 -3.921875 C 0.664062 -4.171875 0.546875 -4.5 0.546875 -4.90625 C 0.546875 -5.40625 0.722656 -5.832031 1.078125 -6.1875 C 1.441406 -6.550781 1.957031 -6.734375 2.625 -6.734375 C 3.269531 -6.734375 3.773438 -6.5625 4.140625 -6.21875 C 4.503906 -5.875 4.6875 -5.476562 4.6875 -5.03125 C 4.6875 -4.613281 4.582031 -4.273438 4.375 -4.015625 C 4.25 -3.867188 4.0625 -3.722656 3.8125 -3.578125 C 4.09375 -3.453125 4.3125 -3.304688 4.46875 -3.140625 C 4.769531 -2.828125 4.921875 -2.421875 4.921875 -1.921875 C 4.921875 -1.335938 4.722656 -0.835938 4.328125 -0.421875 C 3.929688 -0.015625 3.367188 0.1875 2.640625 0.1875 C 1.984375 0.1875 1.429688 0.0078125 0.984375 -0.34375 C 0.535156 -0.695312 0.3125 -1.210938 0.3125 -1.890625 C 0.3125 -2.285156 0.40625 -2.625 0.59375 -2.90625 C 0.789062 -3.195312 1.082031 -3.421875 1.46875 -3.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 48.683594 14.398438 L 202 14.398438 L 202 180 L 48.683594 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 48.683594 153 L 202 153 L 202 155 L 48.683594 155 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 48.683594 114 L 202 114 L 202 116 L 48.683594 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 48.683594 75 L 202 75 L 202 77 L 48.683594 77 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 48.683594 36 L 202 36 L 202 38 L 48.683594 38 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 72 14.398438 L 74 14.398438 L 74 180 L 72 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 107 14.398438 L 109 14.398438 L 109 180 L 107 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 142 14.398438 L 143 14.398438 L 143 180 L 142 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 178 14.398438 L 178 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 48.683594 173 L 202.601562 173 L 202.601562 175 L 48.683594 175 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 48.683594 134 L 202.601562 134 L 202.601562 136 L 48.683594 136 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 48.683594 95 L 202.601562 95 L 202.601562 97 L 48.683594 97 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 48.683594 56 L 202.601562 56 L 202.601562 58 L 48.683594 58 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 48.683594 17 L 202.601562 17 L 202.601562 19 L 48.683594 19 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 55 14.398438 L 57 14.398438 L 57 180 L 55 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 89 14.398438 L 91 14.398438 L 91 180 L 89 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 124 14.398438 L 126 14.398438 L 126 180 L 124 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 159 14.398438 L 161 14.398438 L 161 180 L 159 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface211">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 48.683594 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 48.683594 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 154.214844 L 201.601562 154.214844 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 115.226562 L 201.601562 115.226562 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 76.234375 L 201.601562 76.234375 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 37.242188 L 201.601562 37.242188 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.011719 179.027344 L 73.011719 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.765625 179.027344 L 107.765625 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.519531 179.027344 L 142.519531 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.273438 179.027344 L 177.273438 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 173.710938 L 201.601562 173.710938 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 134.71875 L 201.601562 134.71875 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 95.730469 L 201.601562 95.730469 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 56.738281 L 201.601562 56.738281 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 17.746094 L 201.601562 17.746094 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.632812 179.027344 L 55.632812 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.386719 179.027344 L 90.386719 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.140625 179.027344 L 125.140625 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.894531 179.027344 L 159.894531 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.648438 179.027344 L 194.648438 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 55.632812 171.546875 L 55.910156 171.480469 L 56.191406 171.414062 L 56.46875 171.34375 L 56.746094 171.269531 L 57.027344 171.199219 L 57.304688 171.121094 L 57.582031 171.046875 L 57.863281 170.964844 L 58.417969 170.800781 L 58.699219 170.714844 L 58.976562 170.628906 L 59.253906 170.539062 L 59.535156 170.445312 L 59.8125 170.351562 L 60.089844 170.253906 L 60.371094 170.152344 L 60.648438 170.050781 L 60.925781 169.945312 L 61.207031 169.839844 L 61.484375 169.730469 L 61.761719 169.617188 L 62.039062 169.5 L 62.320312 169.382812 L 62.597656 169.261719 L 62.875 169.136719 L 63.15625 169.011719 L 63.710938 168.746094 L 63.992188 168.609375 L 64.269531 168.472656 L 64.546875 168.328125 L 64.828125 168.183594 L 65.382812 167.878906 L 65.664062 167.722656 L 65.941406 167.5625 L 66.21875 167.398438 L 66.5 167.230469 L 67.054688 166.886719 L 67.335938 166.707031 L 67.613281 166.523438 L 67.890625 166.335938 L 68.167969 166.144531 L 68.449219 165.949219 L 68.726562 165.75 L 69.003906 165.546875 L 69.285156 165.335938 L 69.5625 165.125 L 69.839844 164.90625 L 70.121094 164.683594 L 70.398438 164.457031 L 70.675781 164.226562 L 70.957031 163.992188 L 71.234375 163.75 L 71.511719 163.503906 L 71.792969 163.253906 L 72.070312 162.996094 L 72.347656 162.734375 L 72.628906 162.46875 L 72.90625 162.199219 L 73.183594 161.921875 L 73.464844 161.636719 L 73.742188 161.351562 L 74.019531 161.054688 L 74.300781 160.757812 L 74.578125 160.453125 L 74.855469 160.140625 L 75.132812 159.824219 L 75.414062 159.5 L 75.691406 159.171875 L 75.96875 158.835938 L 76.25 158.496094 L 76.527344 158.148438 L 76.804688 157.792969 L 77.085938 157.433594 L 77.363281 157.066406 L 77.640625 156.695312 L 77.921875 156.316406 L 78.199219 155.929688 L 78.476562 155.535156 L 78.757812 155.132812 L 79.035156 154.726562 L 79.3125 154.3125 L 79.59375 153.890625 L 79.871094 153.464844 L 80.148438 153.027344 L 80.429688 152.585938 L 80.707031 152.136719 L 80.984375 151.679688 L 81.261719 151.214844 L 81.542969 150.742188 L 81.820312 150.261719 L 82.097656 149.773438 L 82.378906 149.28125 L 82.65625 148.777344 L 82.933594 148.265625 L 83.214844 147.746094 L 83.492188 147.222656 L 83.769531 146.6875 L 84.050781 146.144531 L 84.328125 145.59375 L 84.605469 145.035156 L 84.886719 144.46875 L 85.164062 143.894531 L 85.441406 143.3125 L 85.722656 142.71875 L 86 142.121094 L 86.277344 141.511719 L 86.558594 140.894531 L 86.835938 140.269531 L 87.113281 139.636719 L 87.390625 138.996094 L 87.671875 138.34375 L 87.949219 137.683594 L 88.226562 137.019531 L 88.507812 136.339844 L 88.785156 135.65625 L 89.0625 134.960938 L 89.34375 134.261719 L 89.621094 133.550781 L 89.898438 132.828125 L 90.179688 132.101562 L 90.457031 131.363281 L 90.734375 130.617188 L 91.015625 129.863281 L 91.292969 129.101562 L 91.570312 128.328125 L 91.851562 127.546875 L 92.128906 126.757812 L 92.40625 125.960938 L 92.6875 125.152344 L 92.964844 124.335938 L 93.242188 123.511719 L 93.519531 122.679688 L 93.800781 121.839844 L 94.078125 120.988281 L 94.355469 120.128906 L 94.636719 119.261719 L 94.914062 118.386719 L 95.191406 117.503906 L 95.472656 116.609375 L 95.75 115.710938 L 96.027344 114.800781 L 96.308594 113.882812 L 96.585938 112.957031 L 96.863281 112.023438 L 97.144531 111.082031 L 97.421875 110.132812 L 97.699219 109.175781 L 97.980469 108.210938 L 98.257812 107.238281 L 98.535156 106.253906 L 98.816406 105.265625 L 99.09375 104.269531 L 99.371094 103.265625 L 99.652344 102.257812 L 99.929688 101.238281 L 100.207031 100.214844 L 100.484375 99.179688 L 100.765625 98.140625 L 101.042969 97.097656 L 101.320312 96.042969 L 101.601562 94.984375 L 101.878906 93.917969 L 102.15625 92.847656 L 102.4375 91.769531 L 102.714844 90.683594 L 102.992188 89.59375 L 103.273438 88.5 L 103.550781 87.398438 L 103.828125 86.292969 L 104.109375 85.179688 L 104.386719 84.0625 L 104.664062 82.941406 L 104.945312 81.8125 L 105.5 79.546875 L 105.78125 78.40625 L 106.058594 77.261719 L 106.335938 76.113281 L 106.613281 74.960938 L 106.894531 73.804688 L 107.171875 72.644531 L 107.449219 71.480469 L 107.730469 70.316406 L 108.007812 69.148438 L 108.285156 67.976562 L 108.566406 66.804688 L 109.121094 64.453125 L 109.402344 63.273438 L 109.679688 62.09375 L 109.957031 60.910156 L 110.238281 59.726562 L 110.792969 57.359375 L 111.074219 56.175781 L 111.351562 54.992188 L 111.628906 53.816406 L 111.910156 52.65625 L 112.1875 51.507812 L 112.464844 50.375 L 112.742188 49.253906 L 113.023438 48.152344 L 113.300781 47.0625 L 113.578125 45.988281 L 113.859375 44.933594 L 114.136719 43.894531 L 114.414062 42.875 L 114.695312 41.871094 L 114.972656 40.886719 L 115.25 39.925781 L 115.53125 38.980469 L 115.808594 38.058594 L 116.085938 37.15625 L 116.367188 36.277344 L 116.644531 35.417969 L 116.921875 34.582031 L 117.203125 33.769531 L 117.480469 32.980469 L 117.757812 32.214844 L 118.039062 31.476562 L 118.316406 30.757812 L 118.59375 30.070312 L 118.875 29.402344 L 119.152344 28.765625 L 119.429688 28.152344 L 119.707031 27.566406 L 119.988281 27.007812 L 120.265625 26.476562 L 120.542969 25.972656 L 120.824219 25.496094 L 121.101562 25.050781 L 121.378906 24.632812 L 121.660156 24.242188 L 121.9375 23.882812 L 122.214844 23.550781 L 122.496094 23.25 L 122.773438 22.976562 L 123.050781 22.734375 L 123.332031 22.523438 L 123.609375 22.339844 L 123.886719 22.1875 L 124.167969 22.066406 L 124.445312 21.972656 L 124.722656 21.914062 L 125.003906 21.882812 L 125.28125 21.882812 L 125.558594 21.914062 L 125.835938 21.972656 L 126.117188 22.066406 L 126.394531 22.1875 L 126.671875 22.339844 L 126.953125 22.523438 L 127.230469 22.734375 L 127.507812 22.976562 L 127.789062 23.25 L 128.066406 23.550781 L 128.34375 23.882812 L 128.625 24.242188 L 128.902344 24.632812 L 129.179688 25.050781 L 129.460938 25.496094 L 129.738281 25.972656 L 130.015625 26.476562 L 130.296875 27.007812 L 130.574219 27.566406 L 130.851562 28.152344 L 131.132812 28.765625 L 131.410156 29.402344 L 131.6875 30.070312 L 131.964844 30.757812 L 132.246094 31.476562 L 132.523438 32.214844 L 132.800781 32.980469 L 133.082031 33.769531 L 133.359375 34.582031 L 133.636719 35.417969 L 133.917969 36.277344 L 134.195312 37.15625 L 134.472656 38.058594 L 134.753906 38.980469 L 135.03125 39.925781 L 135.308594 40.886719 L 135.589844 41.871094 L 135.867188 42.875 L 136.144531 43.894531 L 136.425781 44.933594 L 136.703125 45.988281 L 136.980469 47.0625 L 137.261719 48.152344 L 137.539062 49.253906 L 137.816406 50.375 L 138.09375 51.507812 L 138.375 52.65625 L 138.652344 53.816406 L 138.929688 54.992188 L 139.210938 56.175781 L 139.765625 58.542969 L 140.046875 59.726562 L 140.601562 62.09375 L 140.882812 63.273438 L 141.160156 64.453125 L 141.4375 65.628906 L 141.71875 66.804688 L 142.273438 69.148438 L 142.554688 70.316406 L 143.109375 72.644531 L 143.390625 73.804688 L 143.667969 74.960938 L 143.945312 76.113281 L 144.226562 77.261719 L 144.503906 78.40625 L 144.78125 79.546875 L 145.058594 80.679688 L 145.339844 81.8125 L 145.617188 82.941406 L 145.894531 84.0625 L 146.175781 85.179688 L 146.453125 86.292969 L 146.730469 87.398438 L 147.011719 88.5 L 147.289062 89.59375 L 147.566406 90.683594 L 147.847656 91.769531 L 148.125 92.847656 L 148.402344 93.917969 L 148.683594 94.984375 L 148.960938 96.042969 L 149.238281 97.097656 L 149.519531 98.140625 L 149.796875 99.179688 L 150.074219 100.214844 L 150.355469 101.238281 L 150.632812 102.257812 L 150.910156 103.265625 L 151.1875 104.269531 L 151.46875 105.265625 L 151.746094 106.253906 L 152.023438 107.238281 L 152.304688 108.210938 L 152.582031 109.175781 L 152.859375 110.132812 L 153.140625 111.082031 L 153.417969 112.023438 L 153.695312 112.957031 L 153.976562 113.882812 L 154.253906 114.800781 L 154.53125 115.710938 L 154.8125 116.609375 L 155.089844 117.503906 L 155.367188 118.386719 L 155.648438 119.261719 L 155.925781 120.128906 L 156.203125 120.988281 L 156.484375 121.839844 L 156.761719 122.679688 L 157.039062 123.511719 L 157.316406 124.335938 L 157.597656 125.152344 L 157.875 125.960938 L 158.152344 126.757812 L 158.433594 127.546875 L 158.710938 128.328125 L 158.988281 129.101562 L 159.269531 129.863281 L 159.546875 130.617188 L 159.824219 131.363281 L 160.105469 132.101562 L 160.382812 132.828125 L 160.660156 133.550781 L 160.941406 134.261719 L 161.21875 134.960938 L 161.496094 135.65625 L 161.777344 136.339844 L 162.054688 137.019531 L 162.332031 137.683594 L 162.613281 138.34375 L 162.890625 138.996094 L 163.167969 139.636719 L 163.445312 140.269531 L 163.726562 140.894531 L 164.003906 141.511719 L 164.28125 142.121094 L 164.5625 142.71875 L 164.839844 143.3125 L 165.117188 143.894531 L 165.398438 144.46875 L 165.675781 145.035156 L 165.953125 145.59375 L 166.234375 146.144531 L 166.511719 146.6875 L 166.789062 147.222656 L 167.070312 147.746094 L 167.347656 148.265625 L 167.625 148.777344 L 167.90625 149.28125 L 168.183594 149.773438 L 168.460938 150.261719 L 168.742188 150.742188 L 169.019531 151.214844 L 169.296875 151.679688 L 169.578125 152.136719 L 169.855469 152.585938 L 170.132812 153.027344 L 170.410156 153.464844 L 170.691406 153.890625 L 170.96875 154.3125 L 171.246094 154.726562 L 171.527344 155.132812 L 171.804688 155.535156 L 172.082031 155.929688 L 172.363281 156.316406 L 172.640625 156.695312 L 172.917969 157.066406 L 173.199219 157.433594 L 173.476562 157.792969 L 173.753906 158.148438 L 174.035156 158.496094 L 174.3125 158.835938 L 174.589844 159.171875 L 174.871094 159.5 L 175.148438 159.824219 L 175.425781 160.140625 L 175.707031 160.453125 L 175.984375 160.757812 L 176.539062 161.351562 L 176.820312 161.636719 L 177.097656 161.921875 L 177.375 162.199219 L 177.65625 162.46875 L 177.933594 162.734375 L 178.210938 162.996094 L 178.492188 163.253906 L 178.769531 163.503906 L 179.046875 163.75 L 179.328125 163.992188 L 179.605469 164.226562 L 179.882812 164.457031 L 180.164062 164.683594 L 180.441406 164.90625 L 180.71875 165.125 L 181 165.335938 L 181.277344 165.546875 L 181.554688 165.75 L 181.835938 165.949219 L 182.113281 166.144531 L 182.390625 166.335938 L 182.667969 166.523438 L 182.949219 166.707031 L 183.226562 166.886719 L 183.503906 167.058594 L 183.785156 167.230469 L 184.0625 167.398438 L 184.339844 167.5625 L 184.621094 167.722656 L 184.898438 167.878906 L 185.175781 168.03125 L 185.457031 168.183594 L 186.011719 168.472656 L 186.292969 168.609375 L 186.570312 168.746094 L 186.847656 168.878906 L 187.128906 169.011719 L 187.683594 169.261719 L 187.964844 169.382812 L 188.519531 169.617188 L 188.800781 169.730469 L 189.078125 169.839844 L 189.632812 170.050781 L 189.914062 170.152344 L 190.191406 170.253906 L 190.46875 170.351562 L 190.75 170.445312 L 191.027344 170.539062 L 191.304688 170.628906 L 191.585938 170.714844 L 191.863281 170.800781 L 192.140625 170.882812 L 192.421875 170.964844 L 192.699219 171.046875 L 192.976562 171.121094 L 193.257812 171.199219 L 193.535156 171.269531 L 193.8125 171.34375 L 194.09375 171.414062 L 194.648438 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="177.148438"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="177.148438"/>
+ <use xlink:href="#glyph0-1" x="36.262756" y="177.148438"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="138.15625"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="138.15625"/>
+ <use xlink:href="#glyph0-3" x="36.262756" y="138.15625"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="99.167969"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="99.167969"/>
+ <use xlink:href="#glyph0-4" x="36.262756" y="99.167969"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="60.175781"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="60.175781"/>
+ <use xlink:href="#glyph0-5" x="36.262756" y="60.175781"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="21.183594"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="21.183594"/>
+ <use xlink:href="#glyph0-6" x="36.262756" y="21.183594"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 173.710938 L 48.683594 173.710938 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 134.71875 L 48.683594 134.71875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 95.730469 L 48.683594 95.730469 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 56.738281 L 48.683594 56.738281 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 17.746094 L 48.683594 17.746094 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.632812 183.28125 L 55.632812 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.386719 183.28125 L 90.386719 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.140625 183.28125 L 125.140625 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.894531 183.28125 L 159.894531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.648438 183.28125 L 194.648438 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="46.296875" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="51.632462" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="54.297913" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.633499" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="81.050781" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="86.386368" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="89.051819" y="192.992188"/>
+ <use xlink:href="#glyph0-7" x="94.387405" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="115.804688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="121.140274" y="192.992188"/>
+ <use xlink:href="#glyph0-7" x="123.805725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="129.141312" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="150.558594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="155.89418" y="192.992188"/>
+ <use xlink:href="#glyph0-8" x="158.559631" y="192.992188"/>
+ <use xlink:href="#glyph0-7" x="163.895218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-9" x="185.3125" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.648087" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.313538" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.649124" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="122.140625" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/piShape.svg b/documentation/ui/figure/piShape.svg
new file mode 100644
index 0000000..ecf546c
--- /dev/null
+++ b/documentation/ui/figure/piShape.svg
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 202 152 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 202 77 L 202 79 L 54.019531 79 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 202 40 L 202 41 L 54.019531 41 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 202.601562 171 L 202.601562 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 96 L 202.601562 96 L 202.601562 98 L 54.019531 98 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 58 L 202.601562 58 L 202.601562 60 L 54.019531 60 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface221">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.835938 L 201.601562 152.835938 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.421875 L 201.601562 115.421875 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 78.007812 L 201.601562 78.007812 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.589844 L 201.601562 40.589844 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.546875 L 201.601562 171.546875 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.128906 L 201.601562 134.128906 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.714844 L 201.601562 96.714844 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.296875 L 201.601562 59.296875 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.882812 L 201.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 60.996094 171.542969 L 61.265625 171.527344 L 61.53125 171.503906 L 61.800781 171.46875 L 62.070312 171.425781 L 62.339844 171.371094 L 62.609375 171.308594 L 62.878906 171.238281 L 63.144531 171.15625 L 63.414062 171.066406 L 63.683594 170.964844 L 63.953125 170.851562 L 64.222656 170.734375 L 64.492188 170.601562 L 64.757812 170.464844 L 65.027344 170.316406 L 65.296875 170.15625 L 65.566406 169.988281 L 65.835938 169.808594 L 66.105469 169.621094 L 66.371094 169.425781 L 66.640625 169.21875 L 66.910156 169.003906 L 67.179688 168.777344 L 67.449219 168.539062 L 67.71875 168.296875 L 67.984375 168.039062 L 68.253906 167.777344 L 68.523438 167.503906 L 68.792969 167.21875 L 69.0625 166.925781 L 69.332031 166.621094 L 69.597656 166.308594 L 69.867188 165.988281 L 70.136719 165.65625 L 70.40625 165.3125 L 70.675781 164.964844 L 70.945312 164.601562 L 71.210938 164.230469 L 71.480469 163.851562 L 71.75 163.460938 L 72.019531 163.0625 L 72.289062 162.65625 L 72.558594 162.238281 L 72.824219 161.808594 L 73.09375 161.371094 L 73.363281 160.925781 L 73.632812 160.46875 L 73.902344 160 L 74.167969 159.523438 L 74.4375 159.039062 L 74.707031 158.542969 L 74.976562 158.039062 L 75.246094 157.523438 L 75.515625 157 L 75.78125 156.464844 L 76.050781 155.921875 L 76.320312 155.371094 L 76.589844 154.808594 L 76.859375 154.234375 L 77.128906 153.652344 L 77.394531 153.0625 L 77.664062 152.460938 L 77.933594 151.851562 L 78.203125 151.230469 L 78.472656 150.601562 L 78.742188 149.960938 L 79.007812 149.3125 L 79.277344 148.652344 L 79.546875 147.984375 L 79.816406 147.304688 L 80.085938 146.617188 L 80.355469 145.921875 L 80.621094 145.214844 L 80.890625 144.5 L 81.160156 143.773438 L 81.429688 143.035156 L 81.699219 142.292969 L 81.96875 141.535156 L 82.234375 140.773438 L 82.503906 139.996094 L 82.773438 139.214844 L 83.042969 138.421875 L 83.3125 137.617188 L 83.582031 136.804688 L 83.847656 135.984375 L 84.117188 135.152344 L 84.386719 134.308594 L 84.65625 133.457031 L 84.925781 132.597656 L 85.195312 131.726562 L 85.460938 130.847656 L 85.730469 129.957031 L 86 129.058594 L 86.269531 128.148438 L 86.539062 127.230469 L 86.808594 126.304688 L 87.074219 125.367188 L 87.34375 124.417969 L 87.613281 123.460938 L 87.882812 122.496094 L 88.152344 121.519531 L 88.417969 120.53125 L 88.6875 119.539062 L 88.957031 118.53125 L 89.226562 117.519531 L 89.496094 116.492188 L 89.765625 115.460938 L 90.03125 114.417969 L 90.300781 113.363281 L 90.570312 112.300781 L 90.839844 111.230469 L 91.109375 110.148438 L 91.378906 109.054688 L 91.644531 107.953125 L 91.914062 106.84375 L 92.183594 105.722656 L 92.453125 104.59375 L 92.722656 103.453125 L 92.992188 102.304688 L 93.257812 101.144531 L 93.527344 99.976562 L 93.796875 98.796875 L 94.066406 97.609375 L 94.335938 96.414062 L 94.605469 95.222656 L 94.871094 94.039062 L 95.140625 92.867188 L 95.410156 91.703125 L 95.679688 90.546875 L 95.949219 89.402344 L 96.21875 88.269531 L 96.484375 87.144531 L 96.753906 86.027344 L 97.023438 84.921875 L 97.292969 83.824219 L 97.5625 82.738281 L 97.832031 81.660156 L 98.097656 80.59375 L 98.367188 79.535156 L 98.636719 78.488281 L 98.90625 77.449219 L 99.175781 76.421875 L 99.445312 75.402344 L 99.710938 74.390625 L 99.980469 73.390625 L 100.25 72.402344 L 100.519531 71.417969 L 100.789062 70.449219 L 101.058594 69.488281 L 101.324219 68.535156 L 101.59375 67.59375 L 101.863281 66.660156 L 102.132812 65.734375 L 102.402344 64.824219 L 102.667969 63.917969 L 102.9375 63.023438 L 103.207031 62.140625 L 103.476562 61.265625 L 103.746094 60.398438 L 104.015625 59.542969 L 104.28125 58.695312 L 104.550781 57.859375 L 104.820312 57.03125 L 105.089844 56.214844 L 105.359375 55.40625 L 105.628906 54.609375 L 105.894531 53.820312 L 106.164062 53.042969 L 106.433594 52.273438 L 106.703125 51.511719 L 106.972656 50.761719 L 107.242188 50.023438 L 107.507812 49.292969 L 107.777344 48.570312 L 108.046875 47.859375 L 108.316406 47.15625 L 108.585938 46.464844 L 108.855469 45.78125 L 109.121094 45.109375 L 109.390625 44.445312 L 109.660156 43.789062 L 109.929688 43.144531 L 110.199219 42.511719 L 110.46875 41.886719 L 110.734375 41.269531 L 111.003906 40.664062 L 111.273438 40.070312 L 111.542969 39.480469 L 111.8125 38.90625 L 112.082031 38.335938 L 112.347656 37.78125 L 112.617188 37.230469 L 112.886719 36.691406 L 113.15625 36.164062 L 113.425781 35.644531 L 113.695312 35.136719 L 113.960938 34.636719 L 114.230469 34.144531 L 114.5 33.664062 L 114.769531 33.191406 L 115.039062 32.730469 L 115.308594 32.277344 L 115.574219 31.835938 L 115.84375 31.402344 L 116.113281 30.980469 L 116.382812 30.566406 L 116.652344 30.164062 L 116.921875 29.769531 L 117.1875 29.382812 L 117.457031 29.007812 L 117.726562 28.644531 L 117.996094 28.289062 L 118.265625 27.941406 L 118.53125 27.605469 L 118.800781 27.277344 L 119.070312 26.960938 L 119.339844 26.652344 L 119.609375 26.355469 L 119.878906 26.066406 L 120.144531 25.789062 L 120.414062 25.519531 L 120.683594 25.257812 L 120.953125 25.007812 L 121.222656 24.769531 L 121.492188 24.539062 L 121.757812 24.316406 L 122.027344 24.105469 L 122.296875 23.902344 L 122.566406 23.710938 L 122.835938 23.527344 L 123.105469 23.355469 L 123.371094 23.191406 L 123.640625 23.039062 L 123.910156 22.894531 L 124.179688 22.757812 L 124.449219 22.632812 L 124.71875 22.519531 L 124.984375 22.410156 L 125.253906 22.316406 L 125.523438 22.230469 L 125.792969 22.152344 L 126.0625 22.085938 L 126.332031 22.027344 L 126.597656 21.980469 L 126.867188 21.941406 L 127.136719 21.910156 L 127.40625 21.894531 L 127.675781 21.882812 L 127.945312 21.882812 L 128.210938 21.894531 L 128.480469 21.910156 L 128.75 21.941406 L 129.019531 21.980469 L 129.289062 22.027344 L 129.558594 22.085938 L 129.824219 22.152344 L 130.09375 22.230469 L 130.363281 22.316406 L 130.632812 22.410156 L 130.902344 22.519531 L 131.171875 22.632812 L 131.4375 22.757812 L 131.707031 22.894531 L 131.976562 23.039062 L 132.246094 23.191406 L 132.515625 23.355469 L 132.78125 23.527344 L 133.050781 23.710938 L 133.320312 23.902344 L 133.589844 24.105469 L 133.859375 24.316406 L 134.128906 24.539062 L 134.394531 24.769531 L 134.664062 25.007812 L 134.933594 25.257812 L 135.203125 25.519531 L 135.472656 25.789062 L 135.742188 26.066406 L 136.007812 26.355469 L 136.277344 26.652344 L 136.546875 26.960938 L 136.816406 27.277344 L 137.085938 27.605469 L 137.355469 27.941406 L 137.621094 28.289062 L 137.890625 28.644531 L 138.160156 29.007812 L 138.429688 29.382812 L 138.699219 29.769531 L 138.96875 30.164062 L 139.234375 30.566406 L 139.503906 30.980469 L 139.773438 31.402344 L 140.042969 31.835938 L 140.3125 32.277344 L 140.582031 32.730469 L 140.847656 33.191406 L 141.117188 33.664062 L 141.386719 34.144531 L 141.65625 34.636719 L 141.925781 35.136719 L 142.195312 35.644531 L 142.460938 36.164062 L 142.730469 36.691406 L 143 37.230469 L 143.269531 37.78125 L 143.539062 38.335938 L 143.808594 38.90625 L 144.074219 39.480469 L 144.34375 40.070312 L 144.613281 40.664062 L 144.882812 41.269531 L 145.152344 41.886719 L 145.421875 42.511719 L 145.6875 43.144531 L 145.957031 43.789062 L 146.226562 44.445312 L 146.496094 45.109375 L 146.765625 45.78125 L 147.03125 46.464844 L 147.300781 47.15625 L 147.570312 47.859375 L 147.839844 48.570312 L 148.109375 49.292969 L 148.378906 50.023438 L 148.644531 50.761719 L 148.914062 51.511719 L 149.183594 52.273438 L 149.453125 53.042969 L 149.722656 53.820312 L 149.992188 54.609375 L 150.527344 56.214844 L 150.796875 57.03125 L 151.066406 57.859375 L 151.335938 58.695312 L 151.605469 59.542969 L 151.871094 60.398438 L 152.140625 61.265625 L 152.410156 62.140625 L 152.679688 63.023438 L 152.949219 63.917969 L 153.21875 64.824219 L 153.484375 65.734375 L 153.753906 66.660156 L 154.023438 67.59375 L 154.292969 68.535156 L 154.5625 69.488281 L 154.832031 70.449219 L 155.097656 71.417969 L 155.367188 72.402344 L 155.636719 73.390625 L 155.90625 74.390625 L 156.175781 75.402344 L 156.445312 76.421875 L 156.710938 77.449219 L 156.980469 78.488281 L 157.25 79.535156 L 157.519531 80.59375 L 157.789062 81.660156 L 158.058594 82.738281 L 158.324219 83.824219 L 158.59375 84.921875 L 158.863281 86.027344 L 159.132812 87.144531 L 159.402344 88.269531 L 159.671875 89.402344 L 159.9375 90.546875 L 160.207031 91.703125 L 160.476562 92.867188 L 160.746094 94.039062 L 161.015625 95.222656 L 161.28125 96.414062 L 161.550781 97.609375 L 161.820312 98.796875 L 162.089844 99.976562 L 162.359375 101.144531 L 162.628906 102.304688 L 162.894531 103.453125 L 163.164062 104.59375 L 163.433594 105.722656 L 163.703125 106.84375 L 163.972656 107.953125 L 164.242188 109.054688 L 164.507812 110.148438 L 164.777344 111.230469 L 165.046875 112.300781 L 165.316406 113.363281 L 165.585938 114.417969 L 165.855469 115.460938 L 166.121094 116.492188 L 166.390625 117.519531 L 166.660156 118.53125 L 166.929688 119.539062 L 167.199219 120.53125 L 167.46875 121.519531 L 167.734375 122.496094 L 168.003906 123.460938 L 168.273438 124.417969 L 168.542969 125.367188 L 168.8125 126.304688 L 169.082031 127.230469 L 169.347656 128.148438 L 169.617188 129.058594 L 169.886719 129.957031 L 170.15625 130.847656 L 170.425781 131.726562 L 170.695312 132.597656 L 170.960938 133.457031 L 171.230469 134.308594 L 171.5 135.152344 L 171.769531 135.984375 L 172.039062 136.804688 L 172.308594 137.617188 L 172.574219 138.421875 L 172.84375 139.214844 L 173.113281 139.996094 L 173.382812 140.773438 L 173.652344 141.535156 L 173.921875 142.292969 L 174.1875 143.035156 L 174.457031 143.773438 L 174.726562 144.5 L 174.996094 145.214844 L 175.265625 145.921875 L 175.535156 146.617188 L 175.800781 147.304688 L 176.070312 147.984375 L 176.339844 148.652344 L 176.609375 149.3125 L 176.878906 149.960938 L 177.144531 150.601562 L 177.414062 151.230469 L 177.683594 151.851562 L 177.953125 152.460938 L 178.222656 153.0625 L 178.492188 153.652344 L 178.757812 154.234375 L 179.027344 154.808594 L 179.296875 155.371094 L 179.566406 155.921875 L 179.835938 156.464844 L 180.105469 157 L 180.371094 157.523438 L 180.640625 158.039062 L 180.910156 158.542969 L 181.179688 159.039062 L 181.449219 159.523438 L 181.71875 160 L 181.984375 160.46875 L 182.253906 160.925781 L 182.523438 161.371094 L 182.792969 161.808594 L 183.0625 162.238281 L 183.332031 162.65625 L 183.597656 163.0625 L 183.867188 163.460938 L 184.136719 163.851562 L 184.40625 164.230469 L 184.675781 164.601562 L 184.945312 164.964844 L 185.210938 165.3125 L 185.480469 165.65625 L 185.75 165.988281 L 186.019531 166.308594 L 186.289062 166.621094 L 186.558594 166.925781 L 186.824219 167.21875 L 187.09375 167.503906 L 187.363281 167.777344 L 187.632812 168.039062 L 187.902344 168.296875 L 188.171875 168.539062 L 188.4375 168.777344 L 188.707031 169.003906 L 188.976562 169.21875 L 189.246094 169.425781 L 189.515625 169.621094 L 189.785156 169.808594 L 190.050781 169.988281 L 190.320312 170.15625 L 190.589844 170.316406 L 190.859375 170.464844 L 191.128906 170.601562 L 191.394531 170.734375 L 191.664062 170.851562 L 191.933594 170.964844 L 192.203125 171.066406 L 192.472656 171.15625 L 192.742188 171.238281 L 193.007812 171.308594 L 193.277344 171.371094 L 193.546875 171.425781 L 193.816406 171.46875 L 194.085938 171.503906 L 194.355469 171.527344 L 194.621094 171.542969 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="100.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="100.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="100.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="100.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="62.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="62.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="62.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="62.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.546875 L 54.019531 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.128906 L 54.019531 134.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.714844 L 54.019531 96.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.296875 L 54.019531 59.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.882812 L 54.019531 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/power.svg b/documentation/ui/figure/power.svg
new file mode 100644
index 0000000..8bb7b3d
--- /dev/null
+++ b/documentation/ui/figure/power.svg
@@ -0,0 +1,227 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.421875 0 L 0.421875 -9.46875 L 7.9375 -9.46875 L 7.9375 0 Z M 6.75 -1.1875 L 6.75 -8.28125 L 1.609375 -8.28125 L 1.609375 -1.1875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 3.578125 -9.234375 C 4.765625 -9.234375 5.625 -8.738281 6.15625 -7.75 C 6.570312 -6.988281 6.78125 -5.945312 6.78125 -4.625 C 6.78125 -3.375 6.59375 -2.335938 6.21875 -1.515625 C 5.675781 -0.335938 4.789062 0.25 3.5625 0.25 C 2.457031 0.25 1.632812 -0.226562 1.09375 -1.1875 C 0.632812 -1.988281 0.40625 -3.066406 0.40625 -4.421875 C 0.40625 -5.472656 0.539062 -6.375 0.8125 -7.125 C 1.320312 -8.53125 2.242188 -9.234375 3.578125 -9.234375 Z M 3.5625 -0.8125 C 4.164062 -0.8125 4.644531 -1.078125 5 -1.609375 C 5.351562 -2.140625 5.53125 -3.128906 5.53125 -4.578125 C 5.53125 -5.628906 5.398438 -6.492188 5.140625 -7.171875 C 4.878906 -7.847656 4.378906 -8.1875 3.640625 -8.1875 C 2.960938 -8.1875 2.460938 -7.863281 2.140625 -7.21875 C 1.828125 -6.582031 1.671875 -5.640625 1.671875 -4.390625 C 1.671875 -3.441406 1.769531 -2.679688 1.96875 -2.109375 C 2.28125 -1.242188 2.8125 -0.8125 3.5625 -0.8125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.890625 -9.46875 L 2.046875 -9.46875 L 2.046875 0 L 0.890625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 3.59375 -0.75 C 4.363281 -0.75 4.890625 -1.039062 5.171875 -1.625 C 5.460938 -2.207031 5.609375 -2.851562 5.609375 -3.5625 C 5.609375 -4.207031 5.503906 -4.734375 5.296875 -5.140625 C 4.960938 -5.773438 4.398438 -6.09375 3.609375 -6.09375 C 2.898438 -6.09375 2.382812 -5.820312 2.0625 -5.28125 C 1.738281 -4.738281 1.578125 -4.082031 1.578125 -3.3125 C 1.578125 -2.582031 1.738281 -1.972656 2.0625 -1.484375 C 2.382812 -0.992188 2.894531 -0.75 3.59375 -0.75 Z M 3.640625 -7.109375 C 4.523438 -7.109375 5.273438 -6.8125 5.890625 -6.21875 C 6.503906 -5.625 6.8125 -4.75 6.8125 -3.59375 C 6.8125 -2.476562 6.539062 -1.554688 6 -0.828125 C 5.457031 -0.109375 4.617188 0.25 3.484375 0.25 C 2.535156 0.25 1.78125 -0.0664062 1.21875 -0.703125 C 0.65625 -1.347656 0.375 -2.210938 0.375 -3.296875 C 0.375 -4.460938 0.664062 -5.390625 1.25 -6.078125 C 1.84375 -6.765625 2.640625 -7.109375 3.640625 -7.109375 Z M 3.59375 -7.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.390625 -6.90625 L 2.71875 -1.46875 L 4.0625 -6.90625 L 5.359375 -6.90625 L 6.71875 -1.5 L 8.125 -6.90625 L 9.296875 -6.90625 L 7.28125 0 L 6.078125 0 L 4.671875 -5.34375 L 3.3125 0 L 2.109375 0 L 0.109375 -6.90625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 0.84375 -9.5 L 2.015625 -9.5 L 2.015625 -5.96875 C 2.285156 -6.3125 2.53125 -6.554688 2.75 -6.703125 C 3.125 -6.953125 3.59375 -7.078125 4.15625 -7.078125 C 5.15625 -7.078125 5.832031 -6.722656 6.1875 -6.015625 C 6.382812 -5.640625 6.484375 -5.109375 6.484375 -4.421875 L 6.484375 0 L 5.28125 0 L 5.28125 -4.359375 C 5.28125 -4.859375 5.21875 -5.226562 5.09375 -5.46875 C 4.882812 -5.84375 4.488281 -6.03125 3.90625 -6.03125 C 3.425781 -6.03125 2.988281 -5.863281 2.59375 -5.53125 C 2.207031 -5.207031 2.015625 -4.582031 2.015625 -3.65625 L 2.015625 0 L 0.84375 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.84375 -6.875 L 2.03125 -6.875 L 2.03125 0 L 0.84375 0 Z M 0.84375 -9.46875 L 2.03125 -9.46875 L 2.03125 -8.15625 L 0.84375 -8.15625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 3.28125 -7.03125 C 3.820312 -7.03125 4.296875 -6.894531 4.703125 -6.625 C 4.921875 -6.476562 5.144531 -6.257812 5.375 -5.96875 L 5.375 -6.84375 L 6.453125 -6.84375 L 6.453125 -0.5625 C 6.453125 0.3125 6.320312 1.003906 6.0625 1.515625 C 5.582031 2.453125 4.671875 2.921875 3.328125 2.921875 C 2.585938 2.921875 1.960938 2.753906 1.453125 2.421875 C 0.953125 2.085938 0.671875 1.566406 0.609375 0.859375 L 1.78125 0.859375 C 1.84375 1.171875 1.957031 1.410156 2.125 1.578125 C 2.382812 1.828125 2.796875 1.953125 3.359375 1.953125 C 4.242188 1.953125 4.828125 1.640625 5.109375 1.015625 C 5.265625 0.648438 5.335938 -0.00390625 5.328125 -0.953125 C 5.097656 -0.609375 4.816406 -0.347656 4.484375 -0.171875 C 4.160156 -0.00390625 3.734375 0.078125 3.203125 0.078125 C 2.453125 0.078125 1.796875 -0.1875 1.234375 -0.71875 C 0.671875 -1.25 0.390625 -2.125 0.390625 -3.34375 C 0.390625 -4.5 0.671875 -5.398438 1.234375 -6.046875 C 1.804688 -6.703125 2.488281 -7.03125 3.28125 -7.03125 Z M 5.375 -3.484375 C 5.375 -4.335938 5.195312 -4.96875 4.84375 -5.375 C 4.488281 -5.789062 4.039062 -6 3.5 -6 C 2.6875 -6 2.128906 -5.617188 1.828125 -4.859375 C 1.660156 -4.441406 1.578125 -3.90625 1.578125 -3.25 C 1.578125 -2.46875 1.734375 -1.875 2.046875 -1.46875 C 2.367188 -1.0625 2.796875 -0.859375 3.328125 -0.859375 C 4.160156 -0.859375 4.75 -1.234375 5.09375 -1.984375 C 5.28125 -2.410156 5.375 -2.910156 5.375 -3.484375 Z M 3.421875 -7.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 1.265625 -6.53125 L 1.265625 -7.421875 C 2.097656 -7.503906 2.679688 -7.640625 3.015625 -7.828125 C 3.347656 -8.023438 3.597656 -8.476562 3.765625 -9.1875 L 4.671875 -9.1875 L 4.671875 0 L 3.4375 0 L 3.4375 -6.53125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0 -0.421875 L -9.46875 -0.421875 L -9.46875 -7.9375 L 0 -7.9375 Z M -1.1875 -6.75 L -8.28125 -6.75 L -8.28125 -1.609375 L -1.1875 -1.609375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M -9.234375 -3.578125 C -9.234375 -4.765625 -8.738281 -5.625 -7.75 -6.15625 C -6.988281 -6.570312 -5.945312 -6.78125 -4.625 -6.78125 C -3.375 -6.78125 -2.335938 -6.59375 -1.515625 -6.21875 C -0.335938 -5.675781 0.25 -4.789062 0.25 -3.5625 C 0.25 -2.457031 -0.226562 -1.632812 -1.1875 -1.09375 C -1.988281 -0.632812 -3.066406 -0.40625 -4.421875 -0.40625 C -5.472656 -0.40625 -6.375 -0.539062 -7.125 -0.8125 C -8.53125 -1.320312 -9.234375 -2.242188 -9.234375 -3.578125 Z M -0.8125 -3.5625 C -0.8125 -4.164062 -1.078125 -4.644531 -1.609375 -5 C -2.140625 -5.351562 -3.128906 -5.53125 -4.578125 -5.53125 C -5.628906 -5.53125 -6.492188 -5.398438 -7.171875 -5.140625 C -7.847656 -4.878906 -8.1875 -4.378906 -8.1875 -3.640625 C -8.1875 -2.960938 -7.863281 -2.460938 -7.21875 -2.140625 C -6.582031 -1.828125 -5.640625 -1.671875 -4.390625 -1.671875 C -3.441406 -1.671875 -2.679688 -1.769531 -2.109375 -1.96875 C -1.242188 -2.28125 -0.8125 -2.8125 -0.8125 -3.5625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M -1.40625 -1.125 L -1.40625 -2.46875 L 0 -2.46875 L 0 -1.125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M -2.359375 -1.625 C -1.691406 -1.707031 -1.234375 -2.015625 -0.984375 -2.546875 C -0.847656 -2.828125 -0.78125 -3.144531 -0.78125 -3.5 C -0.78125 -4.1875 -1 -4.695312 -1.4375 -5.03125 C -1.882812 -5.363281 -2.375 -5.53125 -2.90625 -5.53125 C -3.550781 -5.53125 -4.046875 -5.332031 -4.390625 -4.9375 C -4.742188 -4.550781 -4.921875 -4.082031 -4.921875 -3.53125 C -4.921875 -3.125 -4.84375 -2.773438 -4.6875 -2.484375 C -4.539062 -2.203125 -4.328125 -1.960938 -4.046875 -1.765625 L -4.109375 -0.765625 L -9.078125 -1.46875 L -9.078125 -6.265625 L -7.953125 -6.265625 L -7.953125 -2.328125 L -5.390625 -1.9375 C -5.554688 -2.15625 -5.675781 -2.359375 -5.75 -2.546875 C -5.894531 -2.890625 -5.96875 -3.289062 -5.96875 -3.75 C -5.96875 -4.59375 -5.691406 -5.304688 -5.140625 -5.890625 C -4.597656 -6.484375 -3.910156 -6.78125 -3.078125 -6.78125 C -2.203125 -6.78125 -1.429688 -6.507812 -0.765625 -5.96875 C -0.0976562 -5.425781 0.234375 -4.566406 0.234375 -3.390625 C 0.234375 -2.640625 0.0234375 -1.972656 -0.390625 -1.390625 C -0.816406 -0.816406 -1.472656 -0.492188 -2.359375 -0.421875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-4">
+<path style="stroke:none;" d="M -6.53125 -1.265625 L -7.421875 -1.265625 C -7.503906 -2.097656 -7.640625 -2.679688 -7.828125 -3.015625 C -8.023438 -3.347656 -8.476562 -3.597656 -9.1875 -3.765625 L -9.1875 -4.671875 L 0 -4.671875 L 0 -3.4375 L -6.53125 -3.4375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 0.578125 0 L 0.578125 -12.90625 L 10.828125 -12.90625 L 10.828125 0 Z M 9.21875 -1.625 L 9.21875 -11.296875 L 2.203125 -11.296875 L 2.203125 -1.625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M 1.53125 -12.90625 L 7.34375 -12.90625 C 8.5 -12.90625 9.425781 -12.582031 10.125 -11.9375 C 10.832031 -11.289062 11.1875 -10.382812 11.1875 -9.21875 C 11.1875 -8.207031 10.867188 -7.328125 10.234375 -6.578125 C 9.609375 -5.828125 8.644531 -5.453125 7.34375 -5.453125 L 3.28125 -5.453125 L 3.28125 0 L 1.53125 0 Z M 9.40625 -9.203125 C 9.40625 -10.148438 9.054688 -10.796875 8.359375 -11.140625 C 7.972656 -11.316406 7.441406 -11.40625 6.765625 -11.40625 L 3.28125 -11.40625 L 3.28125 -6.9375 L 6.765625 -6.9375 C 7.554688 -6.9375 8.191406 -7.101562 8.671875 -7.4375 C 9.160156 -7.769531 9.40625 -8.359375 9.40625 -9.203125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-2">
+<path style="stroke:none;" d="M 4.890625 -1.015625 C 5.941406 -1.015625 6.660156 -1.410156 7.046875 -2.203125 C 7.441406 -3.003906 7.640625 -3.890625 7.640625 -4.859375 C 7.640625 -5.734375 7.5 -6.445312 7.21875 -7 C 6.769531 -7.875 6 -8.3125 4.90625 -8.3125 C 3.945312 -8.3125 3.242188 -7.941406 2.796875 -7.203125 C 2.359375 -6.460938 2.140625 -5.570312 2.140625 -4.53125 C 2.140625 -3.53125 2.359375 -2.691406 2.796875 -2.015625 C 3.242188 -1.347656 3.941406 -1.015625 4.890625 -1.015625 Z M 4.953125 -9.6875 C 6.171875 -9.6875 7.195312 -9.28125 8.03125 -8.46875 C 8.875 -7.664062 9.296875 -6.476562 9.296875 -4.90625 C 9.296875 -3.382812 8.925781 -2.128906 8.1875 -1.140625 C 7.445312 -0.148438 6.300781 0.34375 4.75 0.34375 C 3.445312 0.34375 2.414062 -0.09375 1.65625 -0.96875 C 0.894531 -1.84375 0.515625 -3.019531 0.515625 -4.5 C 0.515625 -6.082031 0.914062 -7.34375 1.71875 -8.28125 C 2.519531 -9.21875 3.597656 -9.6875 4.953125 -9.6875 Z M 4.90625 -9.640625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-3">
+<path style="stroke:none;" d="M 1.890625 -9.40625 L 3.703125 -2 L 5.53125 -9.40625 L 7.3125 -9.40625 L 9.15625 -2.046875 L 11.078125 -9.40625 L 12.671875 -9.40625 L 9.9375 0 L 8.28125 0 L 6.375 -7.28125 L 4.515625 0 L 2.875 0 L 0.15625 -9.40625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-4">
+<path style="stroke:none;" d="M 5.078125 -9.625 C 5.742188 -9.625 6.390625 -9.46875 7.015625 -9.15625 C 7.648438 -8.84375 8.128906 -8.4375 8.453125 -7.9375 C 8.773438 -7.457031 8.988281 -6.90625 9.09375 -6.28125 C 9.1875 -5.84375 9.234375 -5.148438 9.234375 -4.203125 L 2.328125 -4.203125 C 2.359375 -3.242188 2.582031 -2.472656 3 -1.890625 C 3.425781 -1.316406 4.082031 -1.03125 4.96875 -1.03125 C 5.789062 -1.03125 6.445312 -1.304688 6.9375 -1.859375 C 7.21875 -2.171875 7.421875 -2.535156 7.546875 -2.953125 L 9.09375 -2.953125 C 9.050781 -2.609375 8.914062 -2.222656 8.6875 -1.796875 C 8.457031 -1.367188 8.195312 -1.019531 7.90625 -0.75 C 7.425781 -0.28125 6.832031 0.03125 6.125 0.1875 C 5.75 0.28125 5.316406 0.328125 4.828125 0.328125 C 3.660156 0.328125 2.671875 -0.09375 1.859375 -0.9375 C 1.046875 -1.789062 0.640625 -2.988281 0.640625 -4.53125 C 0.640625 -6.039062 1.046875 -7.265625 1.859375 -8.203125 C 2.679688 -9.148438 3.753906 -9.625 5.078125 -9.625 Z M 7.609375 -5.453125 C 7.535156 -6.140625 7.382812 -6.691406 7.15625 -7.109375 C 6.71875 -7.867188 5.992188 -8.25 4.984375 -8.25 C 4.253906 -8.25 3.644531 -7.984375 3.15625 -7.453125 C 2.664062 -6.929688 2.40625 -6.265625 2.375 -5.453125 Z M 4.9375 -9.640625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-5">
+<path style="stroke:none;" d="M 1.203125 -9.40625 L 2.703125 -9.40625 L 2.703125 -7.78125 C 2.828125 -8.101562 3.128906 -8.488281 3.609375 -8.9375 C 4.085938 -9.394531 4.644531 -9.625 5.28125 -9.625 C 5.300781 -9.625 5.347656 -9.617188 5.421875 -9.609375 C 5.492188 -9.609375 5.613281 -9.597656 5.78125 -9.578125 L 5.78125 -7.90625 C 5.6875 -7.925781 5.597656 -7.9375 5.515625 -7.9375 C 5.441406 -7.945312 5.359375 -7.953125 5.265625 -7.953125 C 4.460938 -7.953125 3.847656 -7.695312 3.421875 -7.1875 C 2.992188 -6.675781 2.78125 -6.085938 2.78125 -5.421875 L 2.78125 0 L 1.203125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 0.484375 0 L 0.484375 -10.765625 L 9.03125 -10.765625 L 9.03125 0 Z M 7.671875 -1.34375 L 7.671875 -9.40625 L 1.828125 -9.40625 L 1.828125 -1.34375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M 5.859375 -7.84375 L 7.328125 -7.84375 C 7.140625 -7.34375 6.726562 -6.195312 6.09375 -4.40625 C 5.613281 -3.050781 5.210938 -1.953125 4.890625 -1.109375 C 4.128906 0.890625 3.59375 2.109375 3.28125 2.546875 C 2.96875 2.992188 2.425781 3.21875 1.65625 3.21875 C 1.476562 3.21875 1.335938 3.207031 1.234375 3.1875 C 1.128906 3.175781 1.003906 3.148438 0.859375 3.109375 L 0.859375 1.90625 C 1.085938 1.96875 1.253906 2.003906 1.359375 2.015625 C 1.460938 2.035156 1.554688 2.046875 1.640625 2.046875 C 1.878906 2.046875 2.054688 2.003906 2.171875 1.921875 C 2.285156 1.847656 2.382812 1.753906 2.46875 1.640625 C 2.488281 1.597656 2.570312 1.394531 2.71875 1.03125 C 2.875 0.664062 2.984375 0.398438 3.046875 0.234375 L 0.15625 -7.84375 L 1.640625 -7.84375 L 3.75 -1.453125 Z M 3.75 -8.03125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -2.296875 -2.484375 C -1.585938 -2.484375 -1.113281 -2.550781 -0.875 -2.6875 C -0.632812 -2.832031 -0.515625 -3.085938 -0.515625 -3.453125 C -0.515625 -4.023438 -0.914062 -4.5 -1.71875 -4.875 C -2.519531 -5.25 -3.539062 -5.4375 -4.78125 -5.4375 L -6.734375 -5.4375 L -6.734375 -6.828125 L -1.8125 -6.828125 C -1.363281 -6.828125 -1.035156 -6.875 -0.828125 -6.96875 C -0.617188 -7.0625 -0.515625 -7.203125 -0.515625 -7.390625 C -0.515625 -7.609375 -0.617188 -7.769531 -0.828125 -7.875 C -1.035156 -7.988281 -1.34375 -8.046875 -1.75 -8.046875 L -1.953125 -8.046875 L -1.953125 -8.359375 C -1.910156 -8.359375 -1.863281 -8.359375 -1.8125 -8.359375 C -1.769531 -8.367188 -1.707031 -8.375 -1.625 -8.375 C -1.0625 -8.375 -0.628906 -8.253906 -0.328125 -8.015625 C -0.0234375 -7.773438 0.125 -7.441406 0.125 -7.015625 C 0.125 -6.515625 -0.0859375 -6.132812 -0.515625 -5.875 C -0.941406 -5.625 -1.585938 -5.5 -2.453125 -5.5 C -1.554688 -5.269531 -0.898438 -4.960938 -0.484375 -4.578125 C -0.078125 -4.191406 0.125 -3.707031 0.125 -3.125 C 0.125 -2.6875 -0.00390625 -2.320312 -0.265625 -2.03125 C -0.523438 -1.738281 -0.90625 -1.535156 -1.40625 -1.421875 C -1.320312 -1.410156 -1.179688 -1.40625 -0.984375 -1.40625 C -0.359375 -1.40625 0.34375 -1.566406 1.125 -1.890625 C 1.90625 -2.210938 2.363281 -2.375 2.5 -2.375 C 2.695312 -2.375 2.851562 -2.316406 2.96875 -2.203125 C 3.082031 -2.085938 3.140625 -1.9375 3.140625 -1.75 C 3.140625 -1.519531 3.054688 -1.351562 2.890625 -1.25 C 2.722656 -1.144531 2.457031 -1.09375 2.09375 -1.09375 C 2 -1.09375 1.707031 -1.101562 1.21875 -1.125 C 0.726562 -1.144531 0.28125 -1.15625 -0.125 -1.15625 C -0.476562 -1.15625 -0.984375 -1.144531 -1.640625 -1.125 C -2.296875 -1.113281 -2.769531 -1.109375 -3.0625 -1.109375 L -6.734375 -1.109375 L -6.734375 -2.484375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-0">
+<path style="stroke:none;" d="M 3.3125 -0.9375 L -13.21875 -0.9375 L -13.21875 -10.3125 L 3.3125 -10.3125 Z M 2.265625 -1.984375 L 2.265625 -9.265625 L -12.171875 -9.265625 L -12.171875 -1.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-1">
+<path style="stroke:none;" d="M -13.1875 -5.359375 C -12.25 -4.328125 -11.160156 -3.585938 -9.921875 -3.140625 C -8.679688 -2.703125 -7.019531 -2.484375 -4.9375 -2.484375 C -2.84375 -2.484375 -1.179688 -2.703125 0.046875 -3.140625 C 1.273438 -3.585938 2.359375 -4.328125 3.296875 -5.359375 L 3.6875 -4.984375 C 2.738281 -3.691406 1.503906 -2.679688 -0.015625 -1.953125 C -1.535156 -1.222656 -3.175781 -0.859375 -4.9375 -0.859375 C -6.695312 -0.859375 -8.335938 -1.222656 -9.859375 -1.953125 C -11.390625 -2.691406 -12.628906 -3.703125 -13.578125 -4.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-2">
+<path style="stroke:none;" d="M -13.1875 -0.875 L -13.578125 -1.234375 C -12.628906 -2.523438 -11.390625 -3.539062 -9.859375 -4.28125 C -8.328125 -5.019531 -6.6875 -5.390625 -4.9375 -5.390625 C -3.1875 -5.390625 -1.546875 -5.019531 -0.015625 -4.28125 C 1.503906 -3.539062 2.738281 -2.523438 3.6875 -1.234375 L 3.296875 -0.875 C 2.367188 -1.914062 1.289062 -2.65625 0.0625 -3.09375 C -1.164062 -3.53125 -2.832031 -3.75 -4.9375 -3.75 C -7.03125 -3.75 -8.691406 -3.53125 -9.921875 -3.09375 C -11.160156 -2.65625 -12.25 -1.914062 -13.1875 -0.875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph6-0">
+<path style="stroke:none;" d="M 0 -0.484375 L -10.765625 -0.484375 L -10.765625 -9.03125 L 0 -9.03125 Z M -1.34375 -7.671875 L -9.40625 -7.671875 L -9.40625 -1.828125 L -1.34375 -1.828125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph6-1">
+<path style="stroke:none;" d="M -7.84375 -5.859375 L -7.84375 -7.328125 C -7.34375 -7.140625 -6.195312 -6.726562 -4.40625 -6.09375 C -3.050781 -5.613281 -1.953125 -5.210938 -1.109375 -4.890625 C 0.890625 -4.128906 2.109375 -3.59375 2.546875 -3.28125 C 2.992188 -2.96875 3.21875 -2.425781 3.21875 -1.65625 C 3.21875 -1.476562 3.207031 -1.335938 3.1875 -1.234375 C 3.175781 -1.128906 3.148438 -1.003906 3.109375 -0.859375 L 1.90625 -0.859375 C 1.96875 -1.085938 2.003906 -1.253906 2.015625 -1.359375 C 2.035156 -1.460938 2.046875 -1.554688 2.046875 -1.640625 C 2.046875 -1.878906 2.003906 -2.054688 1.921875 -2.171875 C 1.847656 -2.285156 1.753906 -2.382812 1.640625 -2.46875 C 1.597656 -2.488281 1.394531 -2.570312 1.03125 -2.71875 C 0.664062 -2.875 0.398438 -2.984375 0.234375 -3.046875 L -7.84375 -0.15625 L -7.84375 -1.640625 L -1.453125 -3.75 Z M -8.03125 -3.75 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 53 17.28125 L 55 17.28125 L 55 179.5625 L 53 179.5625 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 90 17.28125 L 93 17.28125 L 93 179.5625 L 90 179.5625 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 128 17.28125 L 130 17.28125 L 130 179.5625 L 128 179.5625 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 165 17.28125 L 167 17.28125 L 167 179.5625 L 165 179.5625 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 202 17.28125 L 205 17.28125 L 205 179.5625 L 202 179.5625 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 43.199219 172 L 215.558594 172 L 215.558594 174 L 43.199219 174 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 43.199219 134 L 215.558594 134 L 215.558594 136 L 43.199219 136 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 43.199219 97 L 215.558594 97 L 215.558594 99 L 43.199219 99 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 43.199219 60 L 215.558594 60 L 215.558594 62 L 43.199219 62 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 43.199219 22 L 215.558594 22 L 215.558594 24 L 43.199219 24 Z "/>
+</clipPath>
+</defs>
+<g id="surface81">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.199219 178.558594 L 214.558594 178.558594 L 214.558594 17.28125 L 43.199219 17.28125 L 43.199219 178.558594 "/>
+<path style="fill:none;stroke-width:9;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.214844 172.585938 L 54.511719 171.390625 L 54.664062 170.792969 L 54.8125 170.191406 L 55.109375 168.996094 L 55.261719 168.398438 L 55.410156 167.796875 L 55.558594 167.199219 L 55.710938 166.601562 L 56.007812 165.40625 L 56.160156 164.804688 L 56.457031 163.609375 L 56.609375 163.011719 L 56.757812 162.410156 L 57.054688 161.214844 L 57.207031 160.617188 L 57.355469 160.015625 L 57.503906 159.417969 L 57.65625 158.820312 L 57.953125 157.625 L 58.105469 157.023438 L 58.550781 155.230469 L 58.703125 154.628906 L 59 153.433594 L 59.152344 152.835938 L 59.300781 152.238281 L 59.449219 151.636719 L 59.601562 151.039062 L 59.898438 149.84375 L 60.050781 149.242188 L 60.496094 147.449219 L 60.648438 146.851562 L 60.796875 146.25 L 60.945312 145.652344 L 61.097656 145.054688 L 61.246094 144.457031 L 61.394531 143.855469 L 61.546875 143.257812 L 61.84375 142.0625 L 61.996094 141.464844 L 62.144531 140.863281 L 62.441406 139.667969 L 62.59375 139.070312 L 62.742188 138.46875 L 62.890625 137.871094 L 63.042969 137.273438 L 63.339844 136.078125 L 63.492188 135.476562 L 63.9375 133.683594 L 64.089844 133.082031 L 64.386719 131.886719 L 64.539062 131.289062 L 64.6875 130.691406 L 64.835938 130.089844 L 64.988281 129.492188 L 65.285156 128.296875 L 65.4375 127.695312 L 65.882812 125.902344 L 66.035156 125.304688 L 66.183594 124.703125 L 66.332031 124.105469 L 66.484375 123.507812 L 66.632812 122.910156 L 66.78125 122.308594 L 66.933594 121.710938 L 67.230469 120.515625 L 67.382812 119.914062 L 67.828125 118.121094 L 67.980469 117.523438 L 68.128906 116.921875 L 68.277344 116.324219 L 68.429688 115.726562 L 68.578125 115.128906 L 68.726562 114.527344 L 68.878906 113.929688 L 69.175781 112.734375 L 69.328125 112.136719 L 69.476562 111.535156 L 69.773438 110.339844 L 69.925781 109.742188 L 70.074219 109.140625 L 70.222656 108.542969 L 70.375 107.945312 L 70.671875 106.75 L 70.824219 106.148438 L 71.269531 104.355469 L 71.421875 103.753906 L 71.71875 102.558594 L 71.871094 101.960938 L 72.019531 101.363281 L 72.167969 100.761719 L 72.320312 100.164062 L 72.617188 98.96875 L 72.769531 98.367188 L 73.214844 96.574219 L 73.367188 95.976562 L 73.515625 95.375 L 73.664062 94.777344 L 73.816406 94.179688 L 73.964844 93.582031 L 74.113281 92.980469 L 74.265625 92.382812 L 74.5625 91.1875 L 74.714844 90.589844 L 74.863281 89.988281 L 75.160156 88.792969 L 75.3125 88.195312 L 75.460938 87.59375 L 75.609375 86.996094 L 75.761719 86.398438 L 76.058594 85.203125 L 76.210938 84.601562 L 76.507812 83.40625 L 76.660156 82.808594 L 76.808594 82.207031 L 77.105469 81.011719 L 77.257812 80.414062 L 77.40625 79.816406 L 77.554688 79.214844 L 77.707031 78.617188 L 78.003906 77.421875 L 78.15625 76.820312 L 78.601562 75.027344 L 78.753906 74.425781 L 79.050781 73.230469 L 79.203125 72.632812 L 79.351562 72.035156 L 79.5 71.433594 L 79.652344 70.835938 L 79.949219 69.640625 L 80.101562 69.039062 L 80.546875 67.246094 L 80.699219 66.648438 L 80.847656 66.046875 L 80.996094 65.449219 L 81.148438 64.851562 L 81.296875 64.253906 L 81.445312 63.652344 L 81.597656 63.054688 L 81.894531 61.859375 L 82.046875 61.261719 L 82.195312 60.660156 L 82.492188 59.464844 L 82.644531 58.867188 L 82.792969 58.265625 L 82.941406 57.667969 L 83.09375 57.070312 L 83.390625 55.875 L 83.542969 55.273438 L 83.988281 53.480469 L 84.140625 52.878906 L 84.4375 51.683594 L 84.589844 51.085938 L 84.738281 50.488281 L 84.886719 49.886719 L 85.039062 49.289062 L 85.335938 48.09375 L 85.488281 47.492188 L 85.933594 45.699219 L 86.085938 45.101562 L 86.234375 44.5 L 86.382812 43.902344 L 86.535156 43.304688 L 86.683594 42.707031 L 86.832031 42.105469 L 86.984375 41.507812 L 87.28125 40.3125 L 87.433594 39.714844 L 87.582031 39.113281 L 87.878906 37.917969 L 88.03125 37.320312 L 88.179688 36.71875 L 88.328125 36.121094 L 88.480469 35.523438 L 88.628906 34.925781 L 88.777344 34.324219 L 88.929688 33.726562 L 89.226562 32.53125 L 89.378906 31.933594 L 89.527344 31.332031 L 89.824219 30.136719 L 89.976562 29.539062 L 90.125 28.9375 L 90.273438 28.339844 L 90.425781 27.742188 L 90.722656 26.546875 L 90.875 25.945312 L 91.320312 24.152344 L 91.472656 23.550781 L 91.621094 23.550781 L 91.769531 24.152344 L 91.921875 24.75 L 92.21875 25.945312 L 92.371094 26.546875 L 92.667969 27.742188 L 92.820312 28.339844 L 92.96875 28.9375 L 93.117188 29.539062 L 93.265625 30.136719 L 93.417969 30.734375 L 93.566406 31.332031 L 93.714844 31.933594 L 93.867188 32.53125 L 94.164062 33.726562 L 94.316406 34.324219 L 94.464844 34.925781 L 94.613281 35.523438 L 94.765625 36.121094 L 94.914062 36.71875 L 95.0625 37.320312 L 95.210938 37.917969 L 95.363281 38.515625 L 95.511719 39.113281 L 95.660156 39.714844 L 95.8125 40.3125 L 96.109375 41.507812 L 96.261719 42.105469 L 96.410156 42.707031 L 96.558594 43.304688 L 96.710938 43.902344 L 96.859375 44.5 L 97.007812 45.101562 L 97.15625 45.699219 L 97.308594 46.296875 L 97.605469 47.492188 L 97.757812 48.09375 L 98.054688 49.289062 L 98.207031 49.886719 L 98.355469 50.488281 L 98.652344 51.683594 L 98.804688 52.28125 L 98.953125 52.878906 L 99.101562 53.480469 L 99.253906 54.078125 L 99.550781 55.273438 L 99.703125 55.875 L 100 57.070312 L 100.152344 57.667969 L 100.300781 58.265625 L 100.449219 58.867188 L 100.597656 59.464844 L 100.75 60.0625 L 100.898438 60.660156 L 101.046875 61.261719 L 101.199219 61.859375 L 101.496094 63.054688 L 101.648438 63.652344 L 101.796875 64.253906 L 101.945312 64.851562 L 102.097656 65.449219 L 102.246094 66.046875 L 102.394531 66.648438 L 102.542969 67.246094 L 102.695312 67.84375 L 102.992188 69.039062 L 103.144531 69.640625 L 103.441406 70.835938 L 103.59375 71.433594 L 103.742188 72.035156 L 104.039062 73.230469 L 104.191406 73.828125 L 104.339844 74.425781 L 104.488281 75.027344 L 104.640625 75.625 L 104.9375 76.820312 L 105.089844 77.421875 L 105.386719 78.617188 L 105.539062 79.214844 L 105.6875 79.816406 L 105.984375 81.011719 L 106.136719 81.609375 L 106.285156 82.207031 L 106.433594 82.808594 L 106.585938 83.40625 L 106.882812 84.601562 L 107.035156 85.203125 L 107.332031 86.398438 L 107.484375 86.996094 L 107.632812 87.59375 L 107.78125 88.195312 L 107.929688 88.792969 L 108.082031 89.390625 L 108.230469 89.988281 L 108.378906 90.589844 L 108.53125 91.1875 L 108.828125 92.382812 L 108.980469 92.980469 L 109.128906 93.582031 L 109.277344 94.179688 L 109.429688 94.777344 L 109.578125 95.375 L 109.726562 95.976562 L 109.875 96.574219 L 110.027344 97.171875 L 110.324219 98.367188 L 110.476562 98.96875 L 110.773438 100.164062 L 110.925781 100.761719 L 111.074219 101.363281 L 111.371094 102.558594 L 111.523438 103.15625 L 111.671875 103.753906 L 111.820312 104.355469 L 111.972656 104.953125 L 112.269531 106.148438 L 112.421875 106.75 L 112.71875 107.945312 L 112.871094 108.542969 L 113.019531 109.140625 L 113.167969 109.742188 L 113.316406 110.339844 L 113.46875 110.9375 L 113.617188 111.535156 L 113.765625 112.136719 L 113.917969 112.734375 L 114.214844 113.929688 L 114.367188 114.527344 L 114.515625 115.128906 L 114.664062 115.726562 L 114.816406 116.324219 L 114.964844 116.921875 L 115.113281 117.523438 L 115.261719 118.121094 L 115.414062 118.71875 L 115.710938 119.914062 L 115.863281 120.515625 L 116.160156 121.710938 L 116.3125 122.308594 L 116.460938 122.910156 L 116.757812 124.105469 L 116.910156 124.703125 L 117.058594 125.304688 L 117.207031 125.902344 L 117.359375 126.5 L 117.65625 127.695312 L 117.808594 128.296875 L 118.105469 129.492188 L 118.257812 130.089844 L 118.40625 130.691406 L 118.703125 131.886719 L 118.855469 132.484375 L 119.003906 133.082031 L 119.152344 133.683594 L 119.304688 134.28125 L 119.601562 135.476562 L 119.753906 136.078125 L 120.050781 137.273438 L 120.203125 137.871094 L 120.351562 138.46875 L 120.5 139.070312 L 120.648438 139.667969 L 120.800781 140.265625 L 120.949219 140.863281 L 121.097656 141.464844 L 121.25 142.0625 L 121.546875 143.257812 L 121.699219 143.855469 L 121.847656 144.457031 L 121.996094 145.054688 L 122.148438 145.652344 L 122.296875 146.25 L 122.445312 146.851562 L 122.59375 147.449219 L 122.746094 148.046875 L 123.042969 149.242188 L 123.195312 149.84375 L 123.492188 151.039062 L 123.644531 151.636719 L 123.792969 152.238281 L 124.089844 153.433594 L 124.242188 154.03125 L 124.390625 154.628906 L 124.539062 155.230469 L 124.691406 155.828125 L 124.988281 157.023438 L 125.140625 157.625 L 125.4375 158.820312 L 125.589844 159.417969 L 125.738281 160.015625 L 125.886719 160.617188 L 126.035156 161.214844 L 126.1875 161.8125 L 126.335938 162.410156 L 126.484375 163.011719 L 126.636719 163.609375 L 126.933594 164.804688 L 127.085938 165.40625 L 127.382812 166.601562 L 127.535156 167.199219 L 127.683594 167.796875 L 127.832031 168.398438 L 127.980469 168.996094 L 128.132812 169.59375 L 128.28125 170.191406 L 128.429688 170.792969 L 128.582031 171.390625 L 128.878906 172.585938 "/>
+<path style="fill:none;stroke-width:9;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 91.546875 172.585938 L 91.695312 171.988281 L 91.847656 171.390625 L 91.996094 170.792969 L 92.144531 170.191406 L 92.292969 169.59375 L 92.445312 168.996094 L 92.59375 168.398438 L 92.742188 167.796875 L 92.894531 167.199219 L 93.191406 166.003906 L 93.34375 165.40625 L 93.492188 164.804688 L 93.640625 164.207031 L 93.792969 163.609375 L 93.941406 163.011719 L 94.089844 162.410156 L 94.238281 161.8125 L 94.390625 161.214844 L 94.539062 160.617188 L 94.6875 160.015625 L 94.839844 159.417969 L 95.136719 158.222656 L 95.289062 157.625 L 95.4375 157.023438 L 95.585938 156.425781 L 95.738281 155.828125 L 95.886719 155.230469 L 96.035156 154.628906 L 96.183594 154.03125 L 96.335938 153.433594 L 96.632812 152.238281 L 96.785156 151.636719 L 97.082031 150.441406 L 97.234375 149.84375 L 97.382812 149.242188 L 97.679688 148.046875 L 97.832031 147.449219 L 97.980469 146.851562 L 98.128906 146.25 L 98.28125 145.652344 L 98.578125 144.457031 L 98.730469 143.855469 L 99.027344 142.660156 L 99.179688 142.0625 L 99.328125 141.464844 L 99.476562 140.863281 L 99.625 140.265625 L 99.777344 139.667969 L 99.925781 139.070312 L 100.074219 138.46875 L 100.226562 137.871094 L 100.523438 136.675781 L 100.675781 136.078125 L 100.824219 135.476562 L 100.972656 134.878906 L 101.125 134.28125 L 101.273438 133.683594 L 101.421875 133.082031 L 101.570312 132.484375 L 101.722656 131.886719 L 102.019531 130.691406 L 102.171875 130.089844 L 102.46875 128.894531 L 102.621094 128.296875 L 102.769531 127.695312 L 102.917969 127.097656 L 103.070312 126.5 L 103.367188 125.304688 L 103.515625 124.703125 L 103.667969 124.105469 L 103.964844 122.910156 L 104.117188 122.308594 L 104.414062 121.113281 L 104.566406 120.515625 L 104.714844 119.914062 L 105.011719 118.71875 L 105.164062 118.121094 L 105.3125 117.523438 L 105.460938 116.921875 L 105.613281 116.324219 L 105.910156 115.128906 L 106.0625 114.527344 L 106.359375 113.332031 L 106.511719 112.734375 L 106.660156 112.136719 L 106.808594 111.535156 L 106.957031 110.9375 L 107.109375 110.339844 L 107.257812 109.742188 L 107.40625 109.140625 L 107.558594 108.542969 L 107.855469 107.347656 L 108.007812 106.75 L 108.15625 106.148438 L 108.304688 105.550781 L 108.457031 104.953125 L 108.605469 104.355469 L 108.753906 103.753906 L 108.902344 103.15625 L 109.054688 102.558594 L 109.351562 101.363281 L 109.503906 100.761719 L 109.800781 99.566406 L 109.953125 98.96875 L 110.101562 98.367188 L 110.398438 97.171875 L 110.550781 96.574219 L 110.699219 95.976562 L 110.847656 95.375 L 111 94.777344 L 111.296875 93.582031 L 111.449219 92.980469 L 111.746094 91.785156 L 111.898438 91.1875 L 112.046875 90.589844 L 112.195312 89.988281 L 112.34375 89.390625 L 112.496094 88.792969 L 112.644531 88.195312 L 112.792969 87.59375 L 112.945312 86.996094 L 113.242188 85.800781 L 113.394531 85.203125 L 113.542969 84.601562 L 113.691406 84.003906 L 113.84375 83.40625 L 113.992188 82.808594 L 114.140625 82.207031 L 114.289062 81.609375 L 114.441406 81.011719 L 114.738281 79.816406 L 114.890625 79.214844 L 115.1875 78.019531 L 115.339844 77.421875 L 115.488281 76.820312 L 115.636719 76.222656 L 115.789062 75.625 L 115.9375 75.027344 L 116.085938 74.425781 L 116.234375 73.828125 L 116.386719 73.230469 L 116.683594 72.035156 L 116.835938 71.433594 L 117.132812 70.238281 L 117.285156 69.640625 L 117.433594 69.039062 L 117.730469 67.84375 L 117.882812 67.246094 L 118.03125 66.648438 L 118.179688 66.046875 L 118.332031 65.449219 L 118.628906 64.253906 L 118.78125 63.652344 L 119.078125 62.457031 L 119.230469 61.859375 L 119.378906 61.261719 L 119.527344 60.660156 L 119.675781 60.0625 L 119.828125 59.464844 L 119.976562 58.867188 L 120.125 58.265625 L 120.277344 57.667969 L 120.574219 56.472656 L 120.726562 55.875 L 120.875 55.273438 L 121.023438 54.675781 L 121.175781 54.078125 L 121.324219 53.480469 L 121.472656 52.878906 L 121.621094 52.28125 L 121.773438 51.683594 L 122.070312 50.488281 L 122.222656 49.886719 L 122.519531 48.691406 L 122.671875 48.09375 L 122.820312 47.492188 L 122.96875 46.894531 L 123.121094 46.296875 L 123.417969 45.101562 L 123.566406 44.5 L 123.71875 43.902344 L 124.015625 42.707031 L 124.167969 42.105469 L 124.464844 40.910156 L 124.617188 40.3125 L 124.765625 39.714844 L 124.914062 39.113281 L 125.0625 38.515625 L 125.214844 37.917969 L 125.363281 37.320312 L 125.511719 36.71875 L 125.664062 36.121094 L 125.960938 34.925781 L 126.113281 34.324219 L 126.410156 33.128906 L 126.5625 32.53125 L 126.710938 31.933594 L 126.859375 31.332031 L 127.007812 30.734375 L 127.160156 30.136719 L 127.308594 29.539062 L 127.457031 28.9375 L 127.609375 28.339844 L 127.90625 27.144531 L 128.058594 26.546875 L 128.207031 25.945312 L 128.355469 25.347656 L 128.507812 24.75 L 128.65625 24.152344 L 128.804688 23.550781 L 128.953125 23.550781 L 129.105469 24.152344 L 129.402344 25.347656 L 129.554688 25.945312 L 129.703125 26.546875 L 129.851562 27.144531 L 130.003906 27.742188 L 130.300781 28.9375 L 130.449219 29.539062 L 130.601562 30.136719 L 130.898438 31.332031 L 131.050781 31.933594 L 131.347656 33.128906 L 131.5 33.726562 L 131.648438 34.324219 L 131.796875 34.925781 L 131.949219 35.523438 L 132.246094 36.71875 L 132.394531 37.320312 L 132.546875 37.917969 L 132.84375 39.113281 L 132.996094 39.714844 L 133.292969 40.910156 L 133.445312 41.507812 L 133.59375 42.105469 L 133.742188 42.707031 L 133.894531 43.304688 L 134.191406 44.5 L 134.339844 45.101562 L 134.492188 45.699219 L 134.789062 46.894531 L 134.941406 47.492188 L 135.089844 48.09375 L 135.238281 48.691406 L 135.390625 49.289062 L 135.539062 49.886719 L 135.6875 50.488281 L 135.839844 51.085938 L 136.285156 52.878906 L 136.4375 53.480469 L 136.734375 54.675781 L 136.886719 55.273438 L 137.035156 55.875 L 137.183594 56.472656 L 137.335938 57.070312 L 137.632812 58.265625 L 137.78125 58.867188 L 137.933594 59.464844 L 138.230469 60.660156 L 138.382812 61.261719 L 138.679688 62.457031 L 138.832031 63.054688 L 138.980469 63.652344 L 139.128906 64.253906 L 139.28125 64.851562 L 139.578125 66.046875 L 139.726562 66.648438 L 139.878906 67.246094 L 140.175781 68.441406 L 140.328125 69.039062 L 140.476562 69.640625 L 140.625 70.238281 L 140.777344 70.835938 L 140.925781 71.433594 L 141.074219 72.035156 L 141.226562 72.632812 L 141.671875 74.425781 L 141.824219 75.027344 L 142.121094 76.222656 L 142.273438 76.820312 L 142.421875 77.421875 L 142.570312 78.019531 L 142.722656 78.617188 L 142.871094 79.214844 L 143.019531 79.816406 L 143.167969 80.414062 L 143.320312 81.011719 L 143.617188 82.207031 L 143.769531 82.808594 L 144.066406 84.003906 L 144.21875 84.601562 L 144.367188 85.203125 L 144.515625 85.800781 L 144.667969 86.398438 L 144.964844 87.59375 L 145.113281 88.195312 L 145.265625 88.792969 L 145.5625 89.988281 L 145.714844 90.589844 L 146.011719 91.785156 L 146.164062 92.382812 L 146.3125 92.980469 L 146.460938 93.582031 L 146.613281 94.179688 L 146.910156 95.375 L 147.058594 95.976562 L 147.210938 96.574219 L 147.507812 97.769531 L 147.660156 98.367188 L 147.808594 98.96875 L 147.957031 99.566406 L 148.109375 100.164062 L 148.257812 100.761719 L 148.40625 101.363281 L 148.558594 101.960938 L 149.003906 103.753906 L 149.15625 104.355469 L 149.453125 105.550781 L 149.605469 106.148438 L 149.753906 106.75 L 149.902344 107.347656 L 150.054688 107.945312 L 150.351562 109.140625 L 150.5 109.742188 L 150.652344 110.339844 L 150.949219 111.535156 L 151.101562 112.136719 L 151.398438 113.332031 L 151.550781 113.929688 L 151.699219 114.527344 L 151.847656 115.128906 L 152 115.726562 L 152.296875 116.921875 L 152.445312 117.523438 L 152.597656 118.121094 L 152.894531 119.316406 L 153.046875 119.914062 L 153.195312 120.515625 L 153.34375 121.113281 L 153.496094 121.710938 L 153.644531 122.308594 L 153.792969 122.910156 L 153.945312 123.507812 L 154.242188 124.703125 L 154.390625 125.304688 L 154.542969 125.902344 L 154.839844 127.097656 L 154.992188 127.695312 L 155.140625 128.296875 L 155.289062 128.894531 L 155.441406 129.492188 L 155.589844 130.089844 L 155.738281 130.691406 L 155.890625 131.289062 L 156.335938 133.082031 L 156.488281 133.683594 L 156.785156 134.878906 L 156.9375 135.476562 L 157.085938 136.078125 L 157.234375 136.675781 L 157.386719 137.273438 L 157.683594 138.46875 L 157.832031 139.070312 L 157.984375 139.667969 L 158.28125 140.863281 L 158.433594 141.464844 L 158.730469 142.660156 L 158.882812 143.257812 L 159.03125 143.855469 L 159.179688 144.457031 L 159.332031 145.054688 L 159.628906 146.25 L 159.777344 146.851562 L 159.929688 147.449219 L 160.226562 148.644531 L 160.378906 149.242188 L 160.527344 149.84375 L 160.675781 150.441406 L 160.828125 151.039062 L 160.976562 151.636719 L 161.125 152.238281 L 161.277344 152.835938 L 161.722656 154.628906 L 161.875 155.230469 L 162.171875 156.425781 L 162.324219 157.023438 L 162.472656 157.625 L 162.621094 158.222656 L 162.773438 158.820312 L 163.070312 160.015625 L 163.21875 160.617188 L 163.371094 161.214844 L 163.667969 162.410156 L 163.820312 163.011719 L 164.117188 164.207031 L 164.269531 164.804688 L 164.417969 165.40625 L 164.566406 166.003906 L 164.71875 166.601562 L 165.015625 167.796875 L 165.164062 168.398438 L 165.316406 168.996094 L 165.613281 170.191406 L 165.765625 170.792969 L 166.0625 171.988281 L 166.214844 172.585938 "/>
+<path style="fill:none;stroke-width:9;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.878906 172.585938 L 129.03125 171.988281 L 129.328125 170.792969 L 129.480469 170.191406 L 129.925781 168.398438 L 130.078125 167.796875 L 130.375 166.601562 L 130.527344 166.003906 L 130.675781 165.40625 L 130.824219 164.804688 L 130.976562 164.207031 L 131.273438 163.011719 L 131.421875 162.410156 L 131.574219 161.8125 L 131.871094 160.617188 L 132.023438 160.015625 L 132.320312 158.820312 L 132.472656 158.222656 L 132.621094 157.625 L 132.769531 157.023438 L 132.921875 156.425781 L 133.21875 155.230469 L 133.367188 154.628906 L 133.519531 154.03125 L 133.816406 152.835938 L 133.96875 152.238281 L 134.117188 151.636719 L 134.265625 151.039062 L 134.417969 150.441406 L 134.566406 149.84375 L 134.714844 149.242188 L 134.867188 148.644531 L 135.3125 146.851562 L 135.464844 146.25 L 135.761719 145.054688 L 135.914062 144.457031 L 136.0625 143.855469 L 136.210938 143.257812 L 136.363281 142.660156 L 136.660156 141.464844 L 136.808594 140.863281 L 136.960938 140.265625 L 137.257812 139.070312 L 137.410156 138.46875 L 137.707031 137.273438 L 137.859375 136.675781 L 138.007812 136.078125 L 138.15625 135.476562 L 138.308594 134.878906 L 138.605469 133.683594 L 138.753906 133.082031 L 138.90625 132.484375 L 139.203125 131.289062 L 139.355469 130.691406 L 139.503906 130.089844 L 139.652344 129.492188 L 139.804688 128.894531 L 139.953125 128.296875 L 140.101562 127.695312 L 140.253906 127.097656 L 140.699219 125.304688 L 140.851562 124.703125 L 141.148438 123.507812 L 141.300781 122.910156 L 141.449219 122.308594 L 141.597656 121.710938 L 141.75 121.113281 L 141.898438 120.515625 L 142.046875 119.914062 L 142.199219 119.316406 L 142.644531 117.523438 L 142.796875 116.921875 L 143.09375 115.726562 L 143.246094 115.128906 L 143.394531 114.527344 L 143.542969 113.929688 L 143.695312 113.332031 L 143.992188 112.136719 L 144.140625 111.535156 L 144.292969 110.9375 L 144.589844 109.742188 L 144.742188 109.140625 L 145.039062 107.945312 L 145.191406 107.347656 L 145.339844 106.75 L 145.488281 106.148438 L 145.640625 105.550781 L 145.9375 104.355469 L 146.085938 103.753906 L 146.238281 103.15625 L 146.535156 101.960938 L 146.6875 101.363281 L 146.835938 100.761719 L 146.984375 100.164062 L 147.136719 99.566406 L 147.285156 98.96875 L 147.433594 98.367188 L 147.585938 97.769531 L 148.03125 95.976562 L 148.183594 95.375 L 148.480469 94.179688 L 148.632812 93.582031 L 148.78125 92.980469 L 148.929688 92.382812 L 149.082031 91.785156 L 149.378906 90.589844 L 149.53125 89.988281 L 149.976562 88.195312 L 150.128906 87.59375 L 150.425781 86.398438 L 150.578125 85.800781 L 150.726562 85.203125 L 150.875 84.601562 L 151.027344 84.003906 L 151.324219 82.808594 L 151.472656 82.207031 L 151.625 81.609375 L 151.921875 80.414062 L 152.074219 79.816406 L 152.222656 79.214844 L 152.371094 78.617188 L 152.523438 78.019531 L 152.671875 77.421875 L 152.820312 76.820312 L 152.972656 76.222656 L 153.269531 75.027344 L 153.417969 74.425781 L 153.570312 73.828125 L 153.867188 72.632812 L 154.019531 72.035156 L 154.167969 71.433594 L 154.316406 70.835938 L 154.46875 70.238281 L 154.617188 69.640625 L 154.765625 69.039062 L 154.917969 68.441406 L 155.363281 66.648438 L 155.515625 66.046875 L 155.8125 64.851562 L 155.964844 64.253906 L 156.113281 63.652344 L 156.261719 63.054688 L 156.414062 62.457031 L 156.710938 61.261719 L 156.859375 60.660156 L 157.011719 60.0625 L 157.308594 58.867188 L 157.460938 58.265625 L 157.757812 57.070312 L 157.910156 56.472656 L 158.058594 55.875 L 158.207031 55.273438 L 158.359375 54.675781 L 158.65625 53.480469 L 158.804688 52.878906 L 158.957031 52.28125 L 159.253906 51.085938 L 159.40625 50.488281 L 159.554688 49.886719 L 159.703125 49.289062 L 159.855469 48.691406 L 160.003906 48.09375 L 160.152344 47.492188 L 160.304688 46.894531 L 160.75 45.101562 L 160.902344 44.5 L 161.199219 43.304688 L 161.351562 42.707031 L 161.5 42.105469 L 161.648438 41.507812 L 161.800781 40.910156 L 162.097656 39.714844 L 162.25 39.113281 L 162.695312 37.320312 L 162.847656 36.71875 L 163.144531 35.523438 L 163.296875 34.925781 L 163.445312 34.324219 L 163.59375 33.726562 L 163.746094 33.128906 L 164.042969 31.933594 L 164.191406 31.332031 L 164.34375 30.734375 L 164.640625 29.539062 L 164.792969 28.9375 L 165.089844 27.742188 L 165.242188 27.144531 L 165.390625 26.546875 L 165.539062 25.945312 L 165.691406 25.347656 L 165.988281 24.152344 L 166.136719 23.550781 L 166.289062 23.550781 L 166.4375 24.152344 L 166.585938 24.75 L 166.738281 25.347656 L 166.886719 25.945312 L 167.035156 26.546875 L 167.1875 27.144531 L 167.484375 28.339844 L 167.636719 28.9375 L 167.785156 29.539062 L 168.082031 30.734375 L 168.234375 31.332031 L 168.382812 31.933594 L 168.53125 32.53125 L 168.683594 33.128906 L 168.980469 34.324219 L 169.132812 34.925781 L 169.578125 36.71875 L 169.730469 37.320312 L 170.027344 38.515625 L 170.179688 39.113281 L 170.328125 39.714844 L 170.476562 40.3125 L 170.628906 40.910156 L 170.925781 42.105469 L 171.078125 42.707031 L 171.523438 44.5 L 171.675781 45.101562 L 171.972656 46.296875 L 172.125 46.894531 L 172.273438 47.492188 L 172.421875 48.09375 L 172.574219 48.691406 L 172.871094 49.886719 L 173.023438 50.488281 L 173.46875 52.28125 L 173.621094 52.878906 L 173.769531 53.480469 L 173.917969 54.078125 L 174.070312 54.675781 L 174.21875 55.273438 L 174.367188 55.875 L 174.519531 56.472656 L 174.816406 57.667969 L 174.96875 58.265625 L 175.117188 58.867188 L 175.414062 60.0625 L 175.566406 60.660156 L 175.714844 61.261719 L 175.863281 61.859375 L 176.015625 62.457031 L 176.3125 63.652344 L 176.464844 64.253906 L 176.910156 66.046875 L 177.0625 66.648438 L 177.359375 67.84375 L 177.511719 68.441406 L 177.660156 69.039062 L 177.808594 69.640625 L 177.960938 70.238281 L 178.257812 71.433594 L 178.410156 72.035156 L 178.855469 73.828125 L 179.007812 74.425781 L 179.15625 75.027344 L 179.304688 75.625 L 179.457031 76.222656 L 179.605469 76.820312 L 179.753906 77.421875 L 179.90625 78.019531 L 180.203125 79.214844 L 180.355469 79.816406 L 180.800781 81.609375 L 180.953125 82.207031 L 181.101562 82.808594 L 181.25 83.40625 L 181.402344 84.003906 L 181.550781 84.601562 L 181.699219 85.203125 L 181.851562 85.800781 L 182.148438 86.996094 L 182.300781 87.59375 L 182.449219 88.195312 L 182.746094 89.390625 L 182.898438 89.988281 L 183.046875 90.589844 L 183.195312 91.1875 L 183.347656 91.785156 L 183.644531 92.980469 L 183.796875 93.582031 L 184.242188 95.375 L 184.394531 95.976562 L 184.691406 97.171875 L 184.84375 97.769531 L 184.992188 98.367188 L 185.140625 98.96875 L 185.292969 99.566406 L 185.589844 100.761719 L 185.742188 101.363281 L 186.1875 103.15625 L 186.339844 103.753906 L 186.488281 104.355469 L 186.636719 104.953125 L 186.789062 105.550781 L 186.9375 106.148438 L 187.085938 106.75 L 187.238281 107.347656 L 187.535156 108.542969 L 187.6875 109.140625 L 187.835938 109.742188 L 188.132812 110.9375 L 188.285156 111.535156 L 188.433594 112.136719 L 188.582031 112.734375 L 188.734375 113.332031 L 189.03125 114.527344 L 189.183594 115.128906 L 189.628906 116.921875 L 189.78125 117.523438 L 190.078125 118.71875 L 190.230469 119.316406 L 190.378906 119.914062 L 190.527344 120.515625 L 190.679688 121.113281 L 190.976562 122.308594 L 191.128906 122.910156 L 191.574219 124.703125 L 191.726562 125.304688 L 192.023438 126.5 L 192.175781 127.097656 L 192.324219 127.695312 L 192.472656 128.296875 L 192.625 128.894531 L 192.921875 130.089844 L 193.074219 130.691406 L 193.519531 132.484375 L 193.671875 133.082031 L 193.820312 133.683594 L 193.96875 134.28125 L 194.121094 134.878906 L 194.269531 135.476562 L 194.417969 136.078125 L 194.570312 136.675781 L 194.867188 137.871094 L 195.019531 138.46875 L 195.167969 139.070312 L 195.464844 140.265625 L 195.617188 140.863281 L 195.765625 141.464844 L 195.914062 142.0625 L 196.066406 142.660156 L 196.363281 143.855469 L 196.515625 144.457031 L 196.960938 146.25 L 197.113281 146.851562 L 197.410156 148.046875 L 197.5625 148.644531 L 197.710938 149.242188 L 197.859375 149.84375 L 198.011719 150.441406 L 198.308594 151.636719 L 198.460938 152.238281 L 198.90625 154.03125 L 199.058594 154.628906 L 199.207031 155.230469 L 199.355469 155.828125 L 199.507812 156.425781 L 199.65625 157.023438 L 199.804688 157.625 L 199.957031 158.222656 L 200.253906 159.417969 L 200.40625 160.015625 L 200.554688 160.617188 L 200.851562 161.8125 L 201.003906 162.410156 L 201.152344 163.011719 L 201.300781 163.609375 L 201.453125 164.207031 L 201.601562 164.804688 L 201.75 165.40625 L 201.902344 166.003906 L 202.347656 167.796875 L 202.5 168.398438 L 202.796875 169.59375 L 202.949219 170.191406 L 203.097656 170.792969 L 203.246094 171.390625 L 203.398438 171.988281 L 203.546875 172.585938 "/>
+<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.214844 178.558594 L 203.546875 178.558594 "/>
+<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.214844 178.558594 L 54.214844 185.761719 "/>
+<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 91.546875 178.558594 L 91.546875 185.761719 "/>
+<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.878906 178.558594 L 128.878906 185.761719 "/>
+<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.214844 178.558594 L 166.214844 185.761719 "/>
+<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.546875 178.558594 L 203.546875 185.761719 "/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="50.542969" y="197.28125"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph0-2" x="81.640625" y="197.28125"/>
+ <use xlink:href="#glyph0-3" x="84.573944" y="197.28125"/>
+ <use xlink:href="#glyph0-4" x="91.916901" y="197.28125"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph0-5" x="153.734375" y="197.28125"/>
+ <use xlink:href="#glyph0-6" x="161.077332" y="197.28125"/>
+ <use xlink:href="#glyph0-7" x="164.010651" y="197.28125"/>
+ <use xlink:href="#glyph0-5" x="171.353607" y="197.28125"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph0-8" x="192.53125" y="197.28125"/>
+ <use xlink:href="#glyph0-1" x="199.874207" y="197.28125"/>
+ <use xlink:href="#glyph0-1" x="207.217163" y="197.28125"/>
+</g>
+<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.199219 172.585938 L 43.199219 23.253906 "/>
+<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.199219 172.585938 L 36 172.585938 "/>
+<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.199219 97.921875 L 36 97.921875 "/>
+<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 43.199219 23.253906 L 36 23.253906 "/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="33.121094" y="181.761719"/>
+ <use xlink:href="#glyph1-2" x="33.121094" y="174.418762"/>
+ <use xlink:href="#glyph1-1" x="33.121094" y="170.750504"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="33.121094" y="107.097656"/>
+ <use xlink:href="#glyph1-2" x="33.121094" y="99.7547"/>
+ <use xlink:href="#glyph1-3" x="33.121094" y="96.086441"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-4" x="33.121094" y="32.429688"/>
+ <use xlink:href="#glyph1-2" x="33.121094" y="25.086731"/>
+ <use xlink:href="#glyph1-1" x="33.121094" y="21.418472"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="103.367188" y="14.398438"/>
+ <use xlink:href="#glyph2-2" x="115.373047" y="14.398438"/>
+ <use xlink:href="#glyph2-3" x="125.383789" y="14.398438"/>
+ <use xlink:href="#glyph2-4" x="138.382812" y="14.398438"/>
+ <use xlink:href="#glyph2-5" x="148.393555" y="14.398438"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="125.128906" y="211.679688"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="15.03125" y="112.234375"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-1" x="15.03125" y="103.59375"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph6-1" x="15.03125" y="97.347656"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-2" x="15.03125" y="89.847656"/>
+</g>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.125;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:1.125,3.375;stroke-miterlimit:10;" d="M 54.214844 178.558594 L 54.214844 17.28125 "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.125;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:1.125,3.375;stroke-miterlimit:10;" d="M 91.546875 178.558594 L 91.546875 17.28125 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.125;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:1.125,3.375;stroke-miterlimit:10;" d="M 128.878906 178.558594 L 128.878906 17.28125 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.125;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:1.125,3.375;stroke-miterlimit:10;" d="M 166.214844 178.558594 L 166.214844 17.28125 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.125;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:1.125,3.375;stroke-miterlimit:10;" d="M 203.546875 178.558594 L 203.546875 17.28125 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.125;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:1.125,3.375;stroke-miterlimit:10;" d="M 43.199219 172.585938 L 214.558594 172.585938 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.125;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:1.125,3.375;stroke-miterlimit:10;" d="M 43.199219 135.253906 L 214.558594 135.253906 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.125;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:1.125,3.375;stroke-miterlimit:10;" d="M 43.199219 97.921875 L 214.558594 97.921875 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.125;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:1.125,3.375;stroke-miterlimit:10;" d="M 43.199219 60.585938 L 214.558594 60.585938 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.125;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-dasharray:1.125,3.375;stroke-miterlimit:10;" d="M 43.199219 23.253906 L 214.558594 23.253906 "/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/ramp.svg b/documentation/ui/figure/ramp.svg
new file mode 100644
index 0000000..370fab3
--- /dev/null
+++ b/documentation/ui/figure/ramp.svg
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 202 152 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 202 77 L 202 79 L 54.019531 79 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 202 40 L 202 41 L 54.019531 41 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 202.601562 171 L 202.601562 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 96 L 202.601562 96 L 202.601562 98 L 54.019531 98 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 58 L 202.601562 58 L 202.601562 60 L 54.019531 60 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface251">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.839844 L 201.601562 152.839844 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.421875 L 201.601562 115.421875 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 78.007812 L 201.601562 78.007812 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.589844 L 201.601562 40.589844 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.546875 L 201.601562 171.546875 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.128906 L 201.601562 134.128906 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.714844 L 201.601562 96.714844 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.296875 L 201.601562 59.296875 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.882812 L 201.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 87.34375 171.546875 L 87.613281 171.445312 L 88.152344 170.445312 L 88.417969 169.945312 L 89.765625 167.445312 L 90.03125 166.945312 L 90.300781 166.445312 L 90.570312 165.949219 L 91.378906 164.449219 L 91.644531 163.949219 L 92.992188 161.449219 L 93.257812 160.949219 L 94.605469 158.449219 L 94.871094 157.949219 L 96.21875 155.449219 L 96.484375 154.949219 L 97.832031 152.449219 L 98.097656 151.949219 L 98.90625 150.449219 L 99.175781 149.953125 L 99.445312 149.453125 L 99.710938 148.953125 L 101.058594 146.453125 L 101.324219 145.953125 L 102.402344 143.953125 L 102.667969 143.453125 L 104.015625 140.953125 L 104.28125 140.453125 L 105.628906 137.953125 L 105.894531 137.453125 L 107.242188 134.953125 L 107.507812 134.457031 L 108.855469 131.957031 L 109.121094 131.457031 L 110.46875 128.957031 L 110.734375 128.457031 L 112.082031 125.957031 L 112.347656 125.457031 L 113.695312 122.957031 L 113.960938 122.457031 L 115.308594 119.957031 L 115.574219 119.457031 L 115.84375 118.957031 L 116.113281 118.460938 L 116.921875 116.960938 L 117.1875 116.460938 L 118.265625 114.460938 L 118.53125 113.960938 L 119.878906 111.460938 L 120.144531 110.960938 L 121.492188 108.460938 L 121.757812 107.960938 L 123.105469 105.460938 L 123.371094 104.960938 L 124.179688 103.460938 L 124.449219 102.964844 L 124.71875 102.464844 L 124.984375 101.964844 L 126.332031 99.464844 L 126.597656 98.964844 L 127.945312 96.464844 L 128.210938 95.964844 L 129.558594 93.464844 L 129.824219 92.964844 L 131.171875 90.464844 L 131.4375 89.964844 L 132.515625 87.964844 L 132.78125 87.46875 L 134.128906 84.96875 L 134.394531 84.46875 L 135.742188 81.96875 L 136.007812 81.46875 L 137.355469 78.96875 L 137.621094 78.46875 L 138.96875 75.96875 L 139.234375 75.46875 L 140.582031 72.96875 L 140.847656 72.46875 L 141.117188 71.96875 L 141.386719 71.472656 L 142.195312 69.972656 L 142.460938 69.472656 L 143.808594 66.972656 L 144.074219 66.472656 L 145.421875 63.972656 L 145.6875 63.472656 L 146.765625 61.472656 L 147.03125 60.972656 L 148.378906 58.472656 L 148.644531 57.972656 L 149.453125 56.472656 L 149.722656 55.976562 L 149.992188 55.476562 L 150.257812 54.976562 L 151.605469 52.476562 L 151.871094 51.976562 L 153.21875 49.476562 L 153.484375 48.976562 L 154.832031 46.476562 L 155.097656 45.976562 L 156.445312 43.476562 L 156.710938 42.976562 L 158.058594 40.476562 L 158.324219 39.980469 L 159.671875 37.480469 L 159.9375 36.980469 L 161.015625 34.980469 L 161.28125 34.480469 L 162.628906 31.980469 L 162.894531 31.480469 L 164.242188 28.980469 L 164.507812 28.480469 L 165.855469 25.980469 L 166.121094 25.480469 L 166.390625 24.980469 L 166.660156 24.484375 L 167.46875 22.984375 L 167.734375 22.484375 L 168.003906 21.984375 L 168.273438 21.882812 L 194.890625 21.882812 "/>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 21.882812 L 87.34375 21.882812 L 87.613281 21.984375 L 88.152344 22.984375 L 88.417969 23.484375 L 88.957031 24.484375 L 89.226562 24.980469 L 89.765625 25.980469 L 90.03125 26.480469 L 91.378906 28.980469 L 91.644531 29.480469 L 92.992188 31.980469 L 93.257812 32.480469 L 94.605469 34.980469 L 94.871094 35.480469 L 96.21875 37.980469 L 96.484375 38.480469 L 97.292969 39.980469 L 97.5625 40.476562 L 97.832031 40.976562 L 98.097656 41.476562 L 99.445312 43.976562 L 99.710938 44.476562 L 101.058594 46.976562 L 101.324219 47.476562 L 102.402344 49.476562 L 102.667969 49.976562 L 104.015625 52.476562 L 104.28125 52.976562 L 105.628906 55.476562 L 105.894531 55.976562 L 106.164062 56.472656 L 107.242188 58.472656 L 107.507812 58.972656 L 108.855469 61.472656 L 109.121094 61.972656 L 110.46875 64.472656 L 110.734375 64.972656 L 112.082031 67.472656 L 112.347656 67.972656 L 113.695312 70.472656 L 113.960938 70.972656 L 114.230469 71.472656 L 114.5 71.96875 L 115.308594 73.46875 L 115.574219 73.96875 L 116.921875 76.46875 L 117.1875 76.96875 L 118.265625 78.96875 L 118.53125 79.46875 L 119.878906 81.96875 L 120.144531 82.46875 L 121.492188 84.96875 L 121.757812 85.46875 L 122.835938 87.46875 L 123.105469 87.964844 L 123.371094 88.464844 L 124.71875 90.964844 L 124.984375 91.464844 L 126.332031 93.964844 L 126.597656 94.464844 L 127.945312 96.964844 L 128.210938 97.464844 L 129.558594 99.964844 L 129.824219 100.464844 L 131.171875 102.964844 L 131.4375 103.460938 L 132.515625 105.460938 L 132.78125 105.960938 L 134.128906 108.460938 L 134.394531 108.960938 L 135.742188 111.460938 L 136.007812 111.960938 L 137.355469 114.460938 L 137.621094 114.960938 L 138.96875 117.460938 L 139.234375 117.960938 L 139.503906 118.460938 L 139.773438 118.957031 L 140.582031 120.457031 L 140.847656 120.957031 L 142.195312 123.457031 L 142.460938 123.957031 L 143.808594 126.457031 L 144.074219 126.957031 L 145.421875 129.457031 L 145.6875 129.957031 L 146.765625 131.957031 L 147.03125 132.457031 L 148.109375 134.457031 L 148.378906 134.953125 L 148.644531 135.453125 L 149.992188 137.953125 L 150.257812 138.453125 L 151.605469 140.953125 L 151.871094 141.453125 L 153.21875 143.953125 L 153.484375 144.453125 L 154.832031 146.953125 L 155.097656 147.453125 L 156.445312 149.953125 L 156.710938 150.449219 L 158.058594 152.949219 L 158.324219 153.449219 L 159.671875 155.949219 L 159.9375 156.449219 L 161.015625 158.449219 L 161.28125 158.949219 L 162.628906 161.449219 L 162.894531 161.949219 L 164.242188 164.449219 L 164.507812 164.949219 L 165.046875 165.949219 L 165.316406 166.445312 L 165.855469 167.445312 L 166.121094 167.945312 L 167.46875 170.445312 L 167.734375 170.945312 L 168.003906 171.445312 L 168.273438 171.546875 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="100.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="100.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="100.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="100.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="62.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="62.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="62.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="62.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.546875 L 54.019531 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.128906 L 54.019531 134.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.714844 L 54.019531 96.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.296875 L 54.019531 59.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.882812 L 54.019531 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/rectangle.svg b/documentation/ui/figure/rectangle.svg
new file mode 100644
index 0000000..deb6c70
--- /dev/null
+++ b/documentation/ui/figure/rectangle.svg
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 202 152 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 202 77 L 202 79 L 54.019531 79 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 202 40 L 202 41 L 54.019531 41 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 202.601562 171 L 202.601562 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 96 L 202.601562 96 L 202.601562 98 L 54.019531 98 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 58 L 202.601562 58 L 202.601562 60 L 54.019531 60 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface191">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.839844 L 201.601562 152.839844 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.421875 L 201.601562 115.421875 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 78.007812 L 201.601562 78.007812 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.589844 L 201.601562 40.589844 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.546875 L 201.601562 171.546875 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.128906 L 201.601562 134.128906 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.714844 L 201.601562 96.714844 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.296875 L 201.601562 59.296875 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.882812 L 201.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 94.066406 171.546875 L 94.335938 21.882812 L 161.28125 21.882812 L 161.550781 171.546875 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="100.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="100.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="100.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="100.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="62.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="62.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="62.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="62.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.546875 L 54.019531 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.128906 L 54.019531 134.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.714844 L 54.019531 96.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.296875 L 54.019531 59.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.882812 L 54.019531 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/sShape.svg b/documentation/ui/figure/sShape.svg
new file mode 100644
index 0000000..3f24ed9
--- /dev/null
+++ b/documentation/ui/figure/sShape.svg
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 202 152 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 202 77 L 202 79 L 54.019531 79 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 202 40 L 202 41 L 54.019531 41 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 202.601562 171 L 202.601562 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 96 L 202.601562 96 L 202.601562 98 L 54.019531 98 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 58 L 202.601562 58 L 202.601562 60 L 54.019531 60 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface261">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.839844 L 201.601562 152.839844 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.421875 L 201.601562 115.421875 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 78.007812 L 201.601562 78.007812 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.589844 L 201.601562 40.589844 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.546875 L 201.601562 171.546875 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.128906 L 201.601562 134.128906 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.714844 L 201.601562 96.714844 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.296875 L 201.601562 59.296875 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.882812 L 201.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 60.996094 171.542969 L 61.265625 171.542969 L 61.53125 171.535156 L 61.800781 171.527344 L 62.339844 171.503906 L 62.609375 171.488281 L 62.878906 171.46875 L 63.144531 171.449219 L 63.683594 171.402344 L 63.953125 171.371094 L 64.222656 171.34375 L 64.492188 171.308594 L 64.757812 171.277344 L 65.296875 171.199219 L 65.835938 171.113281 L 66.105469 171.066406 L 66.371094 171.015625 L 66.640625 170.964844 L 66.910156 170.910156 L 67.71875 170.734375 L 67.984375 170.667969 L 68.523438 170.535156 L 68.792969 170.464844 L 69.332031 170.316406 L 69.597656 170.238281 L 70.136719 170.074219 L 70.40625 169.988281 L 70.945312 169.808594 L 71.210938 169.71875 L 72.019531 169.425781 L 72.289062 169.324219 L 72.558594 169.21875 L 72.824219 169.113281 L 73.09375 169.003906 L 73.632812 168.777344 L 73.902344 168.660156 L 74.167969 168.539062 L 74.707031 168.296875 L 75.515625 167.910156 L 75.78125 167.777344 L 76.320312 167.503906 L 76.589844 167.363281 L 77.128906 167.074219 L 77.394531 166.925781 L 78.203125 166.46875 L 78.742188 166.148438 L 79.007812 165.988281 L 79.277344 165.824219 L 79.546875 165.65625 L 80.355469 165.140625 L 80.621094 164.964844 L 80.890625 164.785156 L 81.429688 164.417969 L 81.96875 164.042969 L 82.234375 163.851562 L 82.503906 163.660156 L 82.773438 163.464844 L 83.042969 163.265625 L 83.582031 162.859375 L 83.847656 162.65625 L 84.117188 162.445312 L 84.386719 162.238281 L 84.925781 161.808594 L 85.195312 161.589844 L 85.460938 161.371094 L 86 160.925781 L 86.269531 160.695312 L 86.539062 160.46875 L 86.808594 160.234375 L 87.074219 160 L 87.34375 159.765625 L 88.152344 159.039062 L 88.417969 158.792969 L 88.957031 158.292969 L 89.226562 158.039062 L 89.765625 157.523438 L 90.03125 157.261719 L 90.300781 157 L 90.570312 156.734375 L 91.109375 156.195312 L 91.378906 155.921875 L 91.644531 155.648438 L 91.914062 155.371094 L 92.453125 154.808594 L 92.722656 154.523438 L 92.992188 154.234375 L 93.257812 153.945312 L 93.796875 153.359375 L 94.066406 153.0625 L 94.605469 152.460938 L 94.871094 152.15625 L 95.140625 151.851562 L 95.410156 151.542969 L 95.949219 150.917969 L 96.21875 150.601562 L 96.484375 150.28125 L 96.753906 149.960938 L 97.292969 149.3125 L 97.5625 148.984375 L 97.832031 148.652344 L 98.097656 148.320312 L 98.636719 147.648438 L 98.90625 147.304688 L 99.175781 146.964844 L 99.445312 146.617188 L 99.710938 146.273438 L 100.25 145.570312 L 100.789062 144.859375 L 101.058594 144.5 L 101.324219 144.136719 L 101.59375 143.773438 L 101.863281 143.40625 L 102.402344 142.664062 L 102.667969 142.292969 L 103.476562 141.15625 L 103.746094 140.773438 L 104.015625 140.386719 L 104.28125 139.996094 L 104.820312 139.214844 L 105.089844 138.820312 L 105.359375 138.421875 L 105.628906 138.019531 L 105.894531 137.617188 L 106.433594 136.804688 L 106.972656 135.984375 L 107.242188 135.566406 L 107.507812 135.152344 L 108.316406 133.886719 L 108.855469 133.027344 L 109.121094 132.597656 L 109.390625 132.164062 L 109.929688 131.289062 L 110.199219 130.847656 L 110.46875 130.402344 L 110.734375 129.957031 L 111.273438 129.058594 L 111.542969 128.605469 L 112.082031 127.691406 L 112.347656 127.230469 L 112.617188 126.769531 L 112.886719 126.304688 L 113.425781 125.367188 L 113.695312 124.894531 L 113.960938 124.417969 L 114.230469 123.941406 L 114.769531 122.980469 L 115.039062 122.496094 L 115.308594 122.007812 L 115.574219 121.519531 L 116.113281 120.535156 L 116.382812 120.035156 L 116.652344 119.539062 L 116.921875 119.035156 L 117.1875 118.53125 L 117.457031 118.027344 L 117.726562 117.519531 L 118.265625 116.496094 L 118.53125 115.980469 L 119.070312 114.941406 L 119.339844 114.417969 L 119.878906 113.363281 L 120.144531 112.832031 L 120.414062 112.300781 L 120.953125 111.230469 L 121.222656 110.6875 L 121.492188 110.148438 L 121.757812 109.601562 L 122.296875 108.507812 L 123.105469 106.84375 L 123.371094 106.285156 L 123.910156 105.160156 L 124.179688 104.59375 L 124.71875 103.453125 L 124.984375 102.878906 L 125.253906 102.304688 L 125.523438 101.726562 L 126.0625 100.5625 L 126.332031 99.976562 L 126.597656 99.390625 L 126.867188 98.800781 L 127.40625 97.613281 L 127.675781 97.015625 L 127.945312 96.414062 L 128.210938 95.816406 L 128.75 94.628906 L 129.019531 94.039062 L 129.558594 92.867188 L 129.824219 92.285156 L 130.09375 91.703125 L 130.632812 90.546875 L 130.902344 89.976562 L 131.171875 89.402344 L 131.4375 88.835938 L 131.707031 88.269531 L 132.246094 87.144531 L 132.515625 86.585938 L 132.78125 86.027344 L 133.050781 85.472656 L 133.320312 84.921875 L 134.128906 83.28125 L 134.394531 82.738281 L 134.664062 82.199219 L 135.472656 80.59375 L 135.742188 80.066406 L 136.007812 79.539062 L 136.277344 79.011719 L 136.546875 78.488281 L 137.085938 77.449219 L 137.355469 76.933594 L 137.621094 76.421875 L 137.890625 75.910156 L 138.429688 74.894531 L 138.699219 74.390625 L 138.96875 73.890625 L 139.234375 73.390625 L 139.503906 72.894531 L 140.042969 71.910156 L 140.582031 70.933594 L 140.847656 70.449219 L 141.386719 69.488281 L 141.925781 68.535156 L 142.195312 68.0625 L 142.460938 67.59375 L 142.730469 67.125 L 143 66.660156 L 143.808594 65.277344 L 144.074219 64.824219 L 144.613281 63.917969 L 144.882812 63.472656 L 145.152344 63.023438 L 145.421875 62.582031 L 145.6875 62.140625 L 146.226562 61.265625 L 146.765625 60.398438 L 147.03125 59.96875 L 147.300781 59.542969 L 148.109375 58.277344 L 148.378906 57.859375 L 148.644531 57.445312 L 149.453125 56.214844 L 149.992188 55.410156 L 150.257812 55.007812 L 150.527344 54.609375 L 151.066406 53.820312 L 151.335938 53.429688 L 151.605469 53.042969 L 151.871094 52.65625 L 152.410156 51.890625 L 152.679688 51.515625 L 152.949219 51.136719 L 153.21875 50.765625 L 153.484375 50.390625 L 154.023438 49.65625 L 154.5625 48.929688 L 154.832031 48.570312 L 155.097656 48.214844 L 155.367188 47.859375 L 155.90625 47.15625 L 156.175781 46.808594 L 156.445312 46.464844 L 156.710938 46.121094 L 156.980469 45.78125 L 157.519531 45.109375 L 158.058594 44.445312 L 158.324219 44.117188 L 158.863281 43.46875 L 159.402344 42.828125 L 159.671875 42.511719 L 159.9375 42.199219 L 160.207031 41.886719 L 160.476562 41.578125 L 161.015625 40.96875 L 161.28125 40.667969 L 161.550781 40.367188 L 162.089844 39.773438 L 162.628906 39.195312 L 162.894531 38.90625 L 163.164062 38.621094 L 163.703125 38.058594 L 164.242188 37.503906 L 164.507812 37.234375 L 164.777344 36.960938 L 165.585938 36.164062 L 165.855469 35.90625 L 166.121094 35.644531 L 166.660156 35.136719 L 167.199219 34.636719 L 167.46875 34.390625 L 167.734375 34.144531 L 168.003906 33.902344 L 168.273438 33.664062 L 169.082031 32.960938 L 169.347656 32.730469 L 169.617188 32.503906 L 170.425781 31.835938 L 170.695312 31.621094 L 170.960938 31.40625 L 171.230469 31.191406 L 171.5 30.980469 L 172.039062 30.566406 L 172.308594 30.363281 L 172.574219 30.164062 L 172.84375 29.964844 L 173.113281 29.769531 L 173.921875 29.195312 L 174.1875 29.011719 L 174.726562 28.644531 L 174.996094 28.464844 L 175.535156 28.113281 L 175.800781 27.941406 L 176.339844 27.605469 L 176.609375 27.441406 L 176.878906 27.28125 L 177.144531 27.121094 L 177.414062 26.960938 L 177.683594 26.808594 L 177.953125 26.652344 L 178.492188 26.355469 L 178.757812 26.210938 L 179.027344 26.066406 L 179.296875 25.925781 L 179.835938 25.652344 L 180.105469 25.519531 L 180.371094 25.386719 L 180.640625 25.261719 L 180.910156 25.132812 L 181.179688 25.011719 L 181.449219 24.886719 L 181.71875 24.769531 L 181.984375 24.652344 L 182.523438 24.425781 L 182.792969 24.316406 L 183.332031 24.105469 L 183.597656 24.003906 L 183.867188 23.902344 L 184.136719 23.804688 L 184.675781 23.617188 L 184.945312 23.527344 L 185.210938 23.441406 L 185.480469 23.355469 L 186.019531 23.191406 L 186.289062 23.113281 L 186.558594 23.039062 L 186.824219 22.964844 L 187.363281 22.824219 L 187.632812 22.757812 L 188.171875 22.632812 L 188.4375 22.574219 L 188.976562 22.464844 L 189.515625 22.363281 L 189.785156 22.316406 L 190.050781 22.273438 L 190.320312 22.230469 L 190.859375 22.152344 L 191.128906 22.117188 L 191.394531 22.085938 L 191.664062 22.054688 L 191.933594 22.027344 L 192.472656 21.980469 L 192.742188 21.960938 L 193.007812 21.941406 L 193.277344 21.925781 L 193.816406 21.902344 L 194.355469 21.886719 L 194.621094 21.882812 L 194.890625 21.882812 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="100.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="100.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="100.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="100.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="62.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="62.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="62.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="62.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.546875 L 54.019531 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.128906 L 54.019531 134.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.714844 L 54.019531 96.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.296875 L 54.019531 59.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.882812 L 54.019531 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/sigmoid.svg b/documentation/ui/figure/sigmoid.svg
new file mode 100644
index 0000000..4e58480
--- /dev/null
+++ b/documentation/ui/figure/sigmoid.svg
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 202 152 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 202 77 L 202 79 L 54.019531 79 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 202 40 L 202 41 L 54.019531 41 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 202.601562 171 L 202.601562 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 96 L 202.601562 96 L 202.601562 98 L 54.019531 98 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 58 L 202.601562 58 L 202.601562 60 L 54.019531 60 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface256">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.84375 L 201.601562 152.84375 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.425781 L 201.601562 115.425781 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 78.003906 L 201.601562 78.003906 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.585938 L 201.601562 40.585938 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.550781 L 201.601562 171.550781 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.132812 L 201.601562 134.132812 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.714844 L 201.601562 96.714844 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.296875 L 201.601562 59.296875 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.875 L 201.601562 21.875 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 21.882812 L 62.070312 21.882812 L 62.339844 21.886719 L 64.492188 21.886719 L 64.757812 21.890625 L 66.371094 21.890625 L 66.640625 21.894531 L 67.984375 21.894531 L 68.253906 21.898438 L 69.0625 21.898438 L 69.332031 21.902344 L 70.136719 21.902344 L 70.40625 21.90625 L 70.945312 21.90625 L 71.210938 21.910156 L 71.75 21.910156 L 72.019531 21.914062 L 72.558594 21.914062 L 72.824219 21.917969 L 73.09375 21.917969 L 73.363281 21.921875 L 73.632812 21.921875 L 73.902344 21.925781 L 74.167969 21.925781 L 74.4375 21.929688 L 74.707031 21.929688 L 74.976562 21.933594 L 75.246094 21.933594 L 75.515625 21.9375 L 75.78125 21.941406 L 76.050781 21.941406 L 76.859375 21.953125 L 77.128906 21.953125 L 77.394531 21.957031 L 78.742188 21.976562 L 79.007812 21.980469 L 80.085938 21.996094 L 80.355469 22.003906 L 80.621094 22.007812 L 80.890625 22.011719 L 81.160156 22.019531 L 81.429688 22.023438 L 81.96875 22.039062 L 82.234375 22.042969 L 83.582031 22.082031 L 83.847656 22.089844 L 84.386719 22.105469 L 84.65625 22.117188 L 84.925781 22.125 L 85.195312 22.136719 L 85.460938 22.148438 L 85.730469 22.160156 L 86 22.167969 L 86.269531 22.183594 L 86.808594 22.207031 L 87.074219 22.222656 L 87.34375 22.234375 L 88.152344 22.28125 L 88.417969 22.296875 L 88.6875 22.3125 L 89.765625 22.390625 L 90.03125 22.410156 L 91.378906 22.527344 L 91.644531 22.554688 L 91.914062 22.582031 L 92.183594 22.613281 L 92.453125 22.640625 L 92.722656 22.671875 L 92.992188 22.707031 L 93.257812 22.738281 L 93.527344 22.773438 L 93.796875 22.8125 L 94.066406 22.847656 L 94.335938 22.886719 L 94.605469 22.929688 L 94.871094 22.972656 L 95.140625 23.015625 L 95.679688 23.109375 L 96.21875 23.210938 L 96.484375 23.265625 L 97.292969 23.441406 L 97.5625 23.507812 L 97.832031 23.570312 L 98.097656 23.640625 L 98.367188 23.710938 L 98.636719 23.785156 L 99.175781 23.941406 L 99.445312 24.027344 L 99.710938 24.113281 L 99.980469 24.203125 L 100.25 24.296875 L 100.519531 24.394531 L 100.789062 24.496094 L 101.058594 24.601562 L 101.324219 24.710938 L 101.59375 24.824219 L 101.863281 24.941406 L 102.132812 25.0625 L 102.402344 25.191406 L 102.667969 25.324219 L 102.9375 25.460938 L 103.207031 25.605469 L 103.476562 25.753906 L 103.746094 25.90625 L 104.015625 26.066406 L 104.28125 26.234375 L 104.550781 26.40625 L 104.820312 26.585938 L 105.089844 26.773438 L 105.359375 26.964844 L 105.628906 27.167969 L 105.894531 27.375 L 106.164062 27.589844 L 106.433594 27.816406 L 106.703125 28.046875 L 106.972656 28.289062 L 107.242188 28.539062 L 107.507812 28.800781 L 107.777344 29.070312 L 108.046875 29.351562 L 108.316406 29.640625 L 108.585938 29.941406 L 108.855469 30.25 L 109.121094 30.574219 L 109.390625 30.90625 L 109.660156 31.253906 L 109.929688 31.613281 L 110.199219 31.984375 L 110.46875 32.367188 L 110.734375 32.765625 L 111.003906 33.179688 L 111.273438 33.605469 L 111.542969 34.042969 L 111.8125 34.5 L 112.082031 34.972656 L 112.347656 35.457031 L 112.617188 35.960938 L 112.886719 36.480469 L 113.15625 37.019531 L 113.425781 37.574219 L 113.695312 38.144531 L 113.960938 38.734375 L 114.230469 39.34375 L 114.5 39.972656 L 114.769531 40.617188 L 115.039062 41.285156 L 115.308594 41.972656 L 115.574219 42.679688 L 115.84375 43.410156 L 116.113281 44.160156 L 116.382812 44.929688 L 116.652344 45.722656 L 116.921875 46.535156 L 117.1875 47.375 L 117.457031 48.230469 L 117.726562 49.113281 L 117.996094 50.019531 L 118.265625 50.945312 L 118.53125 51.894531 L 118.800781 52.871094 L 119.070312 53.867188 L 119.339844 54.886719 L 119.609375 55.929688 L 119.878906 56.996094 L 120.144531 58.082031 L 120.414062 59.195312 L 120.683594 60.328125 L 120.953125 61.484375 L 121.222656 62.664062 L 121.492188 63.863281 L 121.757812 65.085938 L 122.027344 66.328125 L 122.296875 67.589844 L 122.566406 68.871094 L 122.835938 70.175781 L 123.105469 71.496094 L 123.371094 72.832031 L 123.640625 74.1875 L 123.910156 75.558594 L 124.179688 76.949219 L 124.449219 78.351562 L 124.71875 79.765625 L 124.984375 81.195312 L 125.253906 82.636719 L 125.523438 84.089844 L 125.792969 85.550781 L 126.0625 87.019531 L 126.332031 88.5 L 126.597656 89.984375 L 126.867188 91.472656 L 127.40625 94.464844 L 127.945312 97.464844 L 128.210938 98.964844 L 128.75 101.957031 L 129.019531 103.445312 L 129.289062 104.929688 L 129.558594 106.40625 L 129.824219 107.878906 L 130.09375 109.339844 L 130.363281 110.792969 L 130.632812 112.234375 L 130.902344 113.664062 L 131.171875 115.078125 L 131.4375 116.480469 L 131.707031 117.867188 L 131.976562 119.242188 L 132.246094 120.597656 L 132.515625 121.933594 L 132.78125 123.253906 L 133.050781 124.558594 L 133.320312 125.839844 L 133.589844 127.101562 L 133.859375 128.34375 L 134.128906 129.566406 L 134.394531 130.765625 L 134.664062 131.945312 L 134.933594 133.101562 L 135.203125 134.234375 L 135.472656 135.347656 L 135.742188 136.433594 L 136.007812 137.5 L 136.277344 138.542969 L 136.546875 139.5625 L 136.816406 140.558594 L 137.085938 141.53125 L 137.355469 142.484375 L 137.621094 143.410156 L 137.890625 144.316406 L 138.160156 145.195312 L 138.429688 146.054688 L 138.699219 146.890625 L 138.96875 147.707031 L 139.234375 148.5 L 139.503906 149.269531 L 139.773438 150.019531 L 140.042969 150.75 L 140.3125 151.457031 L 140.582031 152.144531 L 140.847656 152.808594 L 141.117188 153.457031 L 141.386719 154.085938 L 141.65625 154.695312 L 141.925781 155.285156 L 142.195312 155.855469 L 142.460938 156.410156 L 142.730469 156.949219 L 143 157.46875 L 143.269531 157.972656 L 143.539062 158.457031 L 143.808594 158.929688 L 144.074219 159.382812 L 144.34375 159.824219 L 144.613281 160.25 L 144.882812 160.664062 L 145.152344 161.058594 L 145.421875 161.445312 L 145.6875 161.816406 L 145.957031 162.175781 L 146.226562 162.519531 L 146.496094 162.855469 L 146.765625 163.175781 L 147.03125 163.488281 L 147.300781 163.789062 L 147.570312 164.078125 L 147.839844 164.359375 L 148.109375 164.628906 L 148.378906 164.886719 L 148.644531 165.140625 L 148.914062 165.378906 L 149.183594 165.613281 L 149.453125 165.835938 L 149.722656 166.054688 L 149.992188 166.261719 L 150.257812 166.464844 L 150.527344 166.65625 L 150.796875 166.84375 L 151.066406 167.023438 L 151.335938 167.195312 L 151.605469 167.363281 L 151.871094 167.523438 L 152.140625 167.675781 L 152.410156 167.824219 L 152.679688 167.96875 L 152.949219 168.105469 L 153.21875 168.238281 L 153.484375 168.363281 L 153.753906 168.488281 L 154.023438 168.605469 L 154.292969 168.71875 L 154.5625 168.828125 L 154.832031 168.933594 L 155.097656 169.035156 L 155.367188 169.132812 L 155.636719 169.226562 L 155.90625 169.316406 L 156.175781 169.402344 L 156.445312 169.484375 L 156.710938 169.566406 L 156.980469 169.644531 L 157.25 169.71875 L 157.519531 169.789062 L 158.058594 169.921875 L 158.324219 169.984375 L 158.59375 170.046875 L 158.863281 170.105469 L 159.671875 170.269531 L 159.9375 170.316406 L 160.207031 170.367188 L 160.476562 170.414062 L 161.015625 170.5 L 161.28125 170.539062 L 161.550781 170.582031 L 161.820312 170.617188 L 162.089844 170.65625 L 162.359375 170.691406 L 162.628906 170.722656 L 162.894531 170.757812 L 163.164062 170.789062 L 163.433594 170.816406 L 163.703125 170.847656 L 163.972656 170.875 L 164.242188 170.898438 L 164.507812 170.925781 L 165.585938 171.019531 L 165.855469 171.039062 L 166.121094 171.058594 L 166.660156 171.097656 L 166.929688 171.113281 L 167.199219 171.132812 L 167.46875 171.148438 L 167.734375 171.164062 L 168.273438 171.195312 L 168.542969 171.207031 L 168.8125 171.222656 L 169.082031 171.234375 L 169.347656 171.246094 L 170.425781 171.292969 L 170.695312 171.300781 L 170.960938 171.3125 L 171.230469 171.320312 L 171.5 171.332031 L 172.308594 171.355469 L 172.574219 171.363281 L 173.382812 171.386719 L 173.652344 171.390625 L 173.921875 171.398438 L 174.1875 171.402344 L 174.457031 171.410156 L 174.726562 171.414062 L 174.996094 171.421875 L 175.535156 171.429688 L 175.800781 171.4375 L 176.878906 171.453125 L 177.144531 171.457031 L 178.222656 171.472656 L 178.492188 171.472656 L 178.757812 171.476562 L 179.296875 171.484375 L 179.566406 171.484375 L 180.105469 171.492188 L 180.371094 171.492188 L 180.910156 171.5 L 181.179688 171.5 L 181.449219 171.503906 L 181.71875 171.503906 L 181.984375 171.507812 L 182.523438 171.507812 L 182.792969 171.511719 L 183.0625 171.511719 L 183.332031 171.515625 L 183.867188 171.515625 L 184.136719 171.519531 L 184.40625 171.519531 L 184.675781 171.523438 L 185.480469 171.523438 L 185.75 171.527344 L 186.558594 171.527344 L 186.824219 171.53125 L 187.632812 171.53125 L 187.902344 171.535156 L 189.246094 171.535156 L 189.515625 171.539062 L 191.128906 171.539062 L 191.394531 171.542969 L 193.816406 171.542969 L 194.085938 171.546875 L 194.890625 171.546875 "/>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 61.53125 171.546875 L 61.800781 171.542969 L 64.222656 171.542969 L 64.492188 171.539062 L 66.105469 171.539062 L 66.371094 171.535156 L 67.71875 171.535156 L 67.984375 171.53125 L 68.792969 171.53125 L 69.0625 171.527344 L 69.867188 171.527344 L 70.136719 171.523438 L 70.945312 171.523438 L 71.210938 171.519531 L 71.480469 171.519531 L 71.75 171.515625 L 72.289062 171.515625 L 72.558594 171.511719 L 72.824219 171.511719 L 73.09375 171.507812 L 73.632812 171.507812 L 73.902344 171.503906 L 74.167969 171.503906 L 74.4375 171.5 L 74.707031 171.5 L 75.246094 171.492188 L 75.515625 171.492188 L 75.78125 171.488281 L 76.050781 171.484375 L 76.320312 171.484375 L 77.128906 171.472656 L 77.394531 171.472656 L 78.742188 171.453125 L 79.007812 171.449219 L 79.816406 171.4375 L 80.085938 171.429688 L 80.355469 171.425781 L 80.621094 171.421875 L 80.890625 171.414062 L 81.160156 171.410156 L 81.429688 171.402344 L 81.699219 171.398438 L 81.96875 171.390625 L 82.234375 171.386719 L 83.582031 171.347656 L 83.847656 171.339844 L 84.117188 171.332031 L 84.386719 171.320312 L 84.65625 171.3125 L 84.925781 171.300781 L 85.195312 171.292969 L 85.460938 171.28125 L 86.808594 171.222656 L 87.074219 171.207031 L 87.34375 171.195312 L 88.152344 171.148438 L 88.417969 171.132812 L 88.6875 171.113281 L 88.957031 171.097656 L 89.765625 171.039062 L 90.03125 171.019531 L 91.109375 170.925781 L 91.378906 170.898438 L 91.644531 170.875 L 91.914062 170.847656 L 92.183594 170.816406 L 92.453125 170.789062 L 92.722656 170.757812 L 92.992188 170.722656 L 93.257812 170.691406 L 93.527344 170.65625 L 93.796875 170.617188 L 94.066406 170.582031 L 94.335938 170.539062 L 94.605469 170.5 L 94.871094 170.457031 L 95.140625 170.414062 L 95.410156 170.367188 L 95.679688 170.316406 L 95.949219 170.269531 L 96.21875 170.214844 L 96.484375 170.160156 L 96.753906 170.105469 L 97.023438 170.046875 L 97.5625 169.921875 L 97.832031 169.855469 L 98.097656 169.789062 L 98.367188 169.71875 L 98.636719 169.644531 L 98.90625 169.566406 L 99.445312 169.402344 L 99.710938 169.316406 L 99.980469 169.226562 L 100.25 169.132812 L 100.519531 169.035156 L 100.789062 168.933594 L 101.058594 168.828125 L 101.324219 168.71875 L 101.59375 168.605469 L 101.863281 168.488281 L 102.402344 168.238281 L 102.667969 168.105469 L 102.9375 167.96875 L 103.207031 167.824219 L 103.476562 167.675781 L 103.746094 167.523438 L 104.015625 167.363281 L 104.28125 167.195312 L 104.550781 167.023438 L 104.820312 166.84375 L 105.089844 166.65625 L 105.359375 166.464844 L 105.628906 166.261719 L 105.894531 166.054688 L 106.164062 165.835938 L 106.433594 165.613281 L 106.703125 165.378906 L 106.972656 165.140625 L 107.242188 164.886719 L 107.507812 164.628906 L 107.777344 164.359375 L 108.046875 164.078125 L 108.316406 163.789062 L 108.585938 163.488281 L 108.855469 163.175781 L 109.121094 162.855469 L 109.390625 162.519531 L 109.660156 162.175781 L 109.929688 161.816406 L 110.199219 161.445312 L 110.46875 161.058594 L 110.734375 160.664062 L 111.003906 160.25 L 111.273438 159.824219 L 111.542969 159.382812 L 111.8125 158.929688 L 112.082031 158.457031 L 112.347656 157.972656 L 112.617188 157.46875 L 112.886719 156.949219 L 113.15625 156.410156 L 113.425781 155.855469 L 113.695312 155.285156 L 113.960938 154.695312 L 114.230469 154.085938 L 114.5 153.457031 L 114.769531 152.808594 L 115.039062 152.144531 L 115.308594 151.457031 L 115.574219 150.75 L 115.84375 150.019531 L 116.113281 149.269531 L 116.382812 148.5 L 116.652344 147.707031 L 116.921875 146.890625 L 117.1875 146.054688 L 117.457031 145.195312 L 117.726562 144.316406 L 117.996094 143.410156 L 118.265625 142.484375 L 118.53125 141.53125 L 118.800781 140.558594 L 119.070312 139.5625 L 119.339844 138.542969 L 119.609375 137.5 L 119.878906 136.433594 L 120.144531 135.347656 L 120.414062 134.234375 L 120.683594 133.101562 L 120.953125 131.945312 L 121.222656 130.765625 L 121.492188 129.566406 L 121.757812 128.34375 L 122.027344 127.101562 L 122.296875 125.839844 L 122.566406 124.558594 L 122.835938 123.253906 L 123.105469 121.933594 L 123.371094 120.597656 L 123.640625 119.242188 L 123.910156 117.867188 L 124.179688 116.480469 L 124.449219 115.078125 L 124.71875 113.664062 L 124.984375 112.234375 L 125.253906 110.792969 L 125.523438 109.339844 L 125.792969 107.878906 L 126.0625 106.40625 L 126.332031 104.929688 L 126.597656 103.445312 L 126.867188 101.957031 L 127.40625 98.964844 L 127.945312 95.964844 L 128.210938 94.464844 L 128.75 91.472656 L 129.019531 89.984375 L 129.289062 88.5 L 129.558594 87.019531 L 129.824219 85.550781 L 130.09375 84.089844 L 130.363281 82.636719 L 130.632812 81.195312 L 130.902344 79.765625 L 131.171875 78.351562 L 131.4375 76.949219 L 131.707031 75.558594 L 131.976562 74.1875 L 132.246094 72.832031 L 132.515625 71.496094 L 132.78125 70.175781 L 133.050781 68.871094 L 133.320312 67.589844 L 133.589844 66.328125 L 133.859375 65.085938 L 134.128906 63.863281 L 134.394531 62.664062 L 134.664062 61.484375 L 134.933594 60.328125 L 135.203125 59.195312 L 135.472656 58.082031 L 135.742188 56.996094 L 136.007812 55.929688 L 136.277344 54.886719 L 136.546875 53.867188 L 136.816406 52.871094 L 137.085938 51.894531 L 137.355469 50.945312 L 137.621094 50.019531 L 137.890625 49.113281 L 138.160156 48.230469 L 138.429688 47.375 L 138.699219 46.535156 L 138.96875 45.722656 L 139.234375 44.929688 L 139.503906 44.160156 L 139.773438 43.410156 L 140.042969 42.679688 L 140.3125 41.972656 L 140.582031 41.285156 L 140.847656 40.617188 L 141.117188 39.972656 L 141.386719 39.34375 L 141.65625 38.734375 L 141.925781 38.144531 L 142.195312 37.574219 L 142.460938 37.019531 L 142.730469 36.480469 L 143 35.960938 L 143.269531 35.457031 L 143.539062 34.972656 L 143.808594 34.5 L 144.074219 34.042969 L 144.34375 33.605469 L 144.613281 33.179688 L 144.882812 32.765625 L 145.152344 32.367188 L 145.421875 31.984375 L 145.6875 31.613281 L 145.957031 31.253906 L 146.226562 30.90625 L 146.496094 30.574219 L 146.765625 30.25 L 147.03125 29.941406 L 147.300781 29.640625 L 147.570312 29.351562 L 147.839844 29.070312 L 148.109375 28.800781 L 148.378906 28.539062 L 148.644531 28.289062 L 148.914062 28.046875 L 149.183594 27.816406 L 149.453125 27.589844 L 149.722656 27.375 L 149.992188 27.167969 L 150.257812 26.964844 L 150.527344 26.773438 L 150.796875 26.585938 L 151.066406 26.40625 L 151.335938 26.234375 L 151.605469 26.066406 L 151.871094 25.90625 L 152.140625 25.753906 L 152.410156 25.605469 L 152.679688 25.460938 L 152.949219 25.324219 L 153.21875 25.191406 L 153.484375 25.0625 L 153.753906 24.941406 L 154.023438 24.824219 L 154.292969 24.710938 L 154.5625 24.601562 L 154.832031 24.496094 L 155.097656 24.394531 L 155.367188 24.296875 L 155.636719 24.203125 L 155.90625 24.113281 L 156.445312 23.941406 L 156.710938 23.863281 L 156.980469 23.785156 L 157.25 23.710938 L 157.789062 23.570312 L 158.058594 23.507812 L 158.324219 23.441406 L 159.132812 23.265625 L 159.402344 23.210938 L 159.671875 23.160156 L 159.9375 23.109375 L 160.476562 23.015625 L 161.015625 22.929688 L 161.28125 22.886719 L 161.550781 22.847656 L 161.820312 22.8125 L 162.089844 22.773438 L 162.359375 22.738281 L 162.628906 22.707031 L 162.894531 22.671875 L 163.164062 22.640625 L 163.433594 22.613281 L 163.703125 22.582031 L 164.242188 22.527344 L 164.507812 22.503906 L 165.585938 22.410156 L 165.855469 22.390625 L 166.121094 22.371094 L 166.929688 22.3125 L 167.46875 22.28125 L 167.734375 22.265625 L 168.273438 22.234375 L 168.542969 22.222656 L 168.8125 22.207031 L 169.082031 22.195312 L 169.347656 22.183594 L 169.617188 22.167969 L 169.886719 22.160156 L 170.695312 22.125 L 170.960938 22.117188 L 171.230469 22.105469 L 172.308594 22.074219 L 172.574219 22.066406 L 173.382812 22.042969 L 173.652344 22.039062 L 173.921875 22.03125 L 174.1875 22.023438 L 174.457031 22.019531 L 174.726562 22.011719 L 175.265625 22.003906 L 175.535156 21.996094 L 175.800781 21.992188 L 176.878906 21.976562 L 177.144531 21.972656 L 178.492188 21.953125 L 178.757812 21.953125 L 179.566406 21.941406 L 179.835938 21.941406 L 180.105469 21.9375 L 180.371094 21.933594 L 180.640625 21.933594 L 180.910156 21.929688 L 181.179688 21.929688 L 181.449219 21.925781 L 181.71875 21.925781 L 181.984375 21.921875 L 182.253906 21.921875 L 182.523438 21.917969 L 182.792969 21.917969 L 183.0625 21.914062 L 183.597656 21.914062 L 183.867188 21.910156 L 184.40625 21.910156 L 184.675781 21.90625 L 185.210938 21.90625 L 185.480469 21.902344 L 186.289062 21.902344 L 186.558594 21.898438 L 187.363281 21.898438 L 187.632812 21.894531 L 188.976562 21.894531 L 189.246094 21.890625 L 190.859375 21.890625 L 191.128906 21.886719 L 193.277344 21.886719 L 193.546875 21.882812 L 194.890625 21.882812 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.988281"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.988281"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.988281"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.988281"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.570312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.570312"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.570312"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.570312"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="100.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="100.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="100.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="100.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="62.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="62.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="62.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="62.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.3125"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.3125"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.3125"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.3125"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.550781 L 54.019531 171.550781 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.132812 L 54.019531 134.132812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.714844 L 54.019531 96.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.296875 L 54.019531 59.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.875 L 54.019531 21.875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/sigmoidDifference.svg b/documentation/ui/figure/sigmoidDifference.svg
new file mode 100644
index 0000000..ca75ba2
--- /dev/null
+++ b/documentation/ui/figure/sigmoidDifference.svg
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 153 L 202 153 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 76 L 202 76 L 202 78 L 54.019531 78 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 38 L 202 38 L 202 40 L 54.019531 40 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 172 L 202.601562 172 L 202.601562 174 L 54.019531 174 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 95 L 202.601562 95 L 202.601562 97 L 54.019531 97 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 57 L 202.601562 57 L 202.601562 59 L 54.019531 59 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 19 L 202.601562 19 L 202.601562 21 L 54.019531 21 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface226">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 153.476562 L 201.601562 153.476562 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.292969 L 201.601562 115.292969 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 77.113281 L 201.601562 77.113281 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 38.929688 L 201.601562 38.929688 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 172.566406 L 201.601562 172.566406 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.386719 L 201.601562 134.386719 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.203125 L 201.601562 96.203125 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 58.019531 L 201.601562 58.019531 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 19.839844 L 201.601562 19.839844 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 61.265625 171.460938 L 61.53125 171.417969 L 61.800781 171.371094 L 62.609375 171.21875 L 62.878906 171.164062 L 63.144531 171.105469 L 63.414062 171.046875 L 63.953125 170.921875 L 64.222656 170.855469 L 64.492188 170.785156 L 64.757812 170.714844 L 65.027344 170.636719 L 65.296875 170.5625 L 65.566406 170.480469 L 66.105469 170.308594 L 66.371094 170.21875 L 66.910156 170.023438 L 67.179688 169.921875 L 67.449219 169.816406 L 67.71875 169.707031 L 67.984375 169.589844 L 68.253906 169.472656 L 68.523438 169.347656 L 68.792969 169.21875 L 69.0625 169.085938 L 69.332031 168.945312 L 69.597656 168.800781 L 69.867188 168.652344 L 70.136719 168.496094 L 70.40625 168.332031 L 70.675781 168.164062 L 70.945312 167.988281 L 71.210938 167.808594 L 71.480469 167.621094 L 71.75 167.425781 L 72.019531 167.222656 L 72.289062 167.011719 L 72.558594 166.792969 L 72.824219 166.566406 L 73.09375 166.332031 L 73.363281 166.085938 L 73.632812 165.832031 L 73.902344 165.570312 L 74.167969 165.296875 L 74.4375 165.015625 L 74.707031 164.722656 L 74.976562 164.417969 L 75.246094 164.101562 L 75.515625 163.777344 L 75.78125 163.4375 L 76.050781 163.089844 L 76.320312 162.726562 L 76.589844 162.351562 L 76.859375 161.960938 L 77.128906 161.558594 L 77.394531 161.144531 L 77.664062 160.710938 L 77.933594 160.265625 L 78.203125 159.804688 L 78.472656 159.328125 L 78.742188 158.835938 L 79.007812 158.328125 L 79.277344 157.800781 L 79.546875 157.257812 L 79.816406 156.695312 L 80.085938 156.117188 L 80.355469 155.519531 L 80.621094 154.902344 L 80.890625 154.265625 L 81.160156 153.609375 L 81.429688 152.933594 L 81.699219 152.238281 L 81.96875 151.523438 L 82.234375 150.785156 L 82.503906 150.027344 L 82.773438 149.246094 L 83.042969 148.441406 L 83.3125 147.617188 L 83.582031 146.769531 L 83.847656 145.898438 L 84.117188 145.003906 L 84.386719 144.085938 L 84.65625 143.144531 L 84.925781 142.183594 L 85.195312 141.195312 L 85.460938 140.183594 L 85.730469 139.148438 L 86 138.089844 L 86.269531 137.007812 L 86.539062 135.90625 L 86.808594 134.777344 L 87.074219 133.625 L 87.34375 132.449219 L 87.613281 131.253906 L 87.882812 130.035156 L 88.152344 128.792969 L 88.417969 127.53125 L 88.6875 126.25 L 88.957031 124.945312 L 89.226562 123.621094 L 89.496094 122.28125 L 89.765625 120.917969 L 90.03125 119.539062 L 90.300781 118.144531 L 90.570312 116.734375 L 90.839844 115.304688 L 91.109375 113.863281 L 91.378906 112.410156 L 91.644531 110.941406 L 91.914062 109.464844 L 92.183594 107.972656 L 92.453125 106.476562 L 92.722656 104.96875 L 92.992188 103.457031 L 93.257812 101.9375 L 93.527344 100.414062 L 94.066406 97.359375 L 94.605469 94.296875 L 94.871094 92.769531 L 95.410156 89.722656 L 95.679688 88.207031 L 95.949219 86.695312 L 96.21875 85.195312 L 96.484375 83.703125 L 96.753906 82.21875 L 97.023438 80.746094 L 97.292969 79.285156 L 97.5625 77.835938 L 97.832031 76.402344 L 98.097656 74.980469 L 98.367188 73.578125 L 98.636719 72.191406 L 98.90625 70.820312 L 99.175781 69.46875 L 99.445312 68.136719 L 99.710938 66.824219 L 99.980469 65.53125 L 100.25 64.261719 L 100.519531 63.007812 L 100.789062 61.78125 L 101.058594 60.574219 L 101.324219 59.386719 L 101.59375 58.226562 L 101.863281 57.085938 L 102.132812 55.972656 L 102.402344 54.878906 L 102.667969 53.808594 L 102.9375 52.765625 L 103.207031 51.742188 L 103.476562 50.742188 L 103.746094 49.769531 L 104.015625 48.820312 L 104.28125 47.890625 L 104.550781 46.988281 L 104.820312 46.105469 L 105.089844 45.246094 L 105.359375 44.414062 L 105.628906 43.601562 L 105.894531 42.808594 L 106.164062 42.039062 L 106.433594 41.292969 L 106.703125 40.566406 L 106.972656 39.863281 L 107.242188 39.179688 L 107.507812 38.515625 L 107.777344 37.871094 L 108.046875 37.25 L 108.316406 36.644531 L 108.585938 36.058594 L 108.855469 35.488281 L 109.121094 34.941406 L 109.390625 34.40625 L 109.660156 33.894531 L 109.929688 33.394531 L 110.199219 32.914062 L 110.46875 32.445312 L 110.734375 31.996094 L 111.003906 31.5625 L 111.273438 31.140625 L 111.542969 30.734375 L 111.8125 30.34375 L 112.082031 29.964844 L 112.347656 29.601562 L 112.617188 29.25 L 112.886719 28.910156 L 113.15625 28.582031 L 113.425781 28.265625 L 113.695312 27.960938 L 113.960938 27.667969 L 114.230469 27.386719 L 114.5 27.113281 L 114.769531 26.851562 L 115.039062 26.597656 L 115.308594 26.355469 L 115.574219 26.125 L 115.84375 25.898438 L 116.113281 25.683594 L 116.382812 25.476562 L 116.652344 25.277344 L 116.921875 25.085938 L 117.1875 24.902344 L 117.457031 24.726562 L 117.726562 24.558594 L 117.996094 24.394531 L 118.265625 24.238281 L 118.53125 24.089844 L 118.800781 23.949219 L 119.070312 23.8125 L 119.339844 23.679688 L 119.878906 23.4375 L 120.144531 23.324219 L 120.414062 23.214844 L 120.683594 23.113281 L 120.953125 23.015625 L 121.222656 22.921875 L 121.492188 22.832031 L 121.757812 22.75 L 122.027344 22.667969 L 122.296875 22.59375 L 122.566406 22.523438 L 122.835938 22.457031 L 123.105469 22.394531 L 123.371094 22.335938 L 123.640625 22.28125 L 123.910156 22.230469 L 124.179688 22.183594 L 124.71875 22.097656 L 124.984375 22.0625 L 125.523438 22 L 125.792969 21.972656 L 126.0625 21.949219 L 126.332031 21.929688 L 126.597656 21.914062 L 126.867188 21.902344 L 127.40625 21.886719 L 127.675781 21.882812 L 127.945312 21.882812 L 128.210938 21.886719 L 128.75 21.902344 L 129.019531 21.914062 L 129.289062 21.929688 L 129.558594 21.949219 L 129.824219 21.972656 L 130.09375 22 L 130.632812 22.0625 L 130.902344 22.097656 L 131.171875 22.140625 L 131.4375 22.183594 L 131.707031 22.230469 L 131.976562 22.28125 L 132.246094 22.335938 L 132.515625 22.394531 L 132.78125 22.457031 L 133.050781 22.523438 L 133.320312 22.59375 L 133.589844 22.667969 L 134.128906 22.832031 L 134.394531 22.921875 L 134.664062 23.015625 L 134.933594 23.113281 L 135.203125 23.214844 L 135.472656 23.324219 L 135.742188 23.4375 L 136.007812 23.558594 L 136.277344 23.679688 L 136.546875 23.8125 L 136.816406 23.949219 L 137.085938 24.089844 L 137.355469 24.238281 L 137.621094 24.394531 L 137.890625 24.558594 L 138.160156 24.726562 L 138.429688 24.902344 L 138.699219 25.085938 L 138.96875 25.277344 L 139.234375 25.476562 L 139.503906 25.683594 L 139.773438 25.898438 L 140.042969 26.125 L 140.3125 26.355469 L 140.582031 26.597656 L 140.847656 26.851562 L 141.117188 27.113281 L 141.386719 27.386719 L 141.65625 27.667969 L 141.925781 27.960938 L 142.195312 28.265625 L 142.460938 28.582031 L 142.730469 28.910156 L 143 29.25 L 143.269531 29.601562 L 143.539062 29.964844 L 143.808594 30.34375 L 144.074219 30.734375 L 144.34375 31.140625 L 144.613281 31.5625 L 144.882812 31.996094 L 145.152344 32.445312 L 145.421875 32.914062 L 145.6875 33.394531 L 145.957031 33.894531 L 146.226562 34.40625 L 146.496094 34.941406 L 146.765625 35.488281 L 147.03125 36.058594 L 147.300781 36.644531 L 147.570312 37.25 L 147.839844 37.871094 L 148.109375 38.515625 L 148.378906 39.179688 L 148.644531 39.863281 L 148.914062 40.566406 L 149.183594 41.292969 L 149.453125 42.039062 L 149.722656 42.808594 L 149.992188 43.601562 L 150.257812 44.414062 L 150.527344 45.246094 L 150.796875 46.105469 L 151.066406 46.988281 L 151.335938 47.890625 L 151.605469 48.820312 L 151.871094 49.769531 L 152.140625 50.742188 L 152.410156 51.742188 L 152.679688 52.765625 L 152.949219 53.808594 L 153.21875 54.878906 L 153.484375 55.972656 L 153.753906 57.085938 L 154.023438 58.226562 L 154.292969 59.386719 L 154.5625 60.574219 L 154.832031 61.78125 L 155.097656 63.007812 L 155.367188 64.261719 L 155.636719 65.53125 L 155.90625 66.824219 L 156.175781 68.136719 L 156.445312 69.46875 L 156.710938 70.820312 L 156.980469 72.191406 L 157.25 73.578125 L 157.519531 74.980469 L 157.789062 76.402344 L 158.058594 77.835938 L 158.324219 79.285156 L 158.59375 80.746094 L 158.863281 82.21875 L 159.132812 83.703125 L 159.402344 85.195312 L 159.671875 86.695312 L 159.9375 88.207031 L 160.207031 89.722656 L 160.746094 92.769531 L 161.015625 94.296875 L 161.28125 95.828125 L 161.550781 97.359375 L 162.089844 100.414062 L 162.359375 101.9375 L 162.628906 103.457031 L 162.894531 104.96875 L 163.164062 106.476562 L 163.433594 107.972656 L 163.703125 109.464844 L 163.972656 110.941406 L 164.242188 112.410156 L 164.507812 113.863281 L 164.777344 115.304688 L 165.046875 116.734375 L 165.316406 118.144531 L 165.585938 119.539062 L 165.855469 120.917969 L 166.121094 122.28125 L 166.390625 123.621094 L 166.660156 124.945312 L 166.929688 126.25 L 167.199219 127.53125 L 167.46875 128.792969 L 167.734375 130.035156 L 168.003906 131.253906 L 168.273438 132.449219 L 168.542969 133.625 L 168.8125 134.777344 L 169.082031 135.90625 L 169.347656 137.007812 L 169.617188 138.089844 L 169.886719 139.148438 L 170.15625 140.183594 L 170.425781 141.195312 L 170.695312 142.183594 L 170.960938 143.144531 L 171.230469 144.085938 L 171.5 145.003906 L 171.769531 145.898438 L 172.039062 146.769531 L 172.308594 147.617188 L 172.574219 148.441406 L 172.84375 149.246094 L 173.113281 150.027344 L 173.382812 150.785156 L 173.652344 151.523438 L 173.921875 152.238281 L 174.1875 152.933594 L 174.457031 153.609375 L 174.726562 154.265625 L 174.996094 154.902344 L 175.265625 155.519531 L 175.535156 156.117188 L 175.800781 156.695312 L 176.070312 157.257812 L 176.339844 157.800781 L 176.609375 158.328125 L 176.878906 158.835938 L 177.144531 159.328125 L 177.414062 159.804688 L 177.683594 160.265625 L 177.953125 160.710938 L 178.222656 161.144531 L 178.492188 161.558594 L 178.757812 161.960938 L 179.027344 162.351562 L 179.296875 162.726562 L 179.566406 163.089844 L 179.835938 163.4375 L 180.105469 163.777344 L 180.371094 164.101562 L 180.640625 164.417969 L 180.910156 164.722656 L 181.179688 165.015625 L 181.449219 165.296875 L 181.71875 165.570312 L 181.984375 165.832031 L 182.253906 166.085938 L 182.523438 166.332031 L 182.792969 166.566406 L 183.0625 166.792969 L 183.332031 167.011719 L 183.597656 167.222656 L 183.867188 167.425781 L 184.136719 167.621094 L 184.40625 167.808594 L 184.675781 167.988281 L 184.945312 168.164062 L 185.210938 168.332031 L 185.480469 168.496094 L 185.75 168.652344 L 186.019531 168.800781 L 186.289062 168.945312 L 186.558594 169.085938 L 186.824219 169.21875 L 187.09375 169.347656 L 187.363281 169.472656 L 187.902344 169.707031 L 188.171875 169.816406 L 188.4375 169.921875 L 188.707031 170.023438 L 189.246094 170.21875 L 189.515625 170.308594 L 189.785156 170.394531 L 190.050781 170.480469 L 190.320312 170.5625 L 190.589844 170.636719 L 190.859375 170.714844 L 191.128906 170.785156 L 191.394531 170.855469 L 191.664062 170.921875 L 192.203125 171.046875 L 192.742188 171.164062 L 193.007812 171.21875 L 193.816406 171.371094 L 194.085938 171.417969 L 194.355469 171.460938 L 194.621094 171.503906 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="176.003906"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="176.003906"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="176.003906"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="176.003906"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.824219"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.824219"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.824219"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.824219"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="99.640625"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="99.640625"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="99.640625"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="99.640625"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="61.457031"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="61.457031"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="61.457031"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="61.457031"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="23.277344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="23.277344"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="23.277344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="23.277344"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 172.566406 L 54.019531 172.566406 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.386719 L 54.019531 134.386719 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.203125 L 54.019531 96.203125 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 58.019531 L 54.019531 58.019531 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 19.839844 L 54.019531 19.839844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/sigmoidProduct.svg b/documentation/ui/figure/sigmoidProduct.svg
new file mode 100644
index 0000000..61543c9
--- /dev/null
+++ b/documentation/ui/figure/sigmoidProduct.svg
@@ -0,0 +1,252 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 3.171875 -2.375 L 3.171875 -5.421875 L 1.015625 -2.375 Z M 3.1875 0 L 3.1875 -1.640625 L 0.25 -1.640625 L 0.25 -2.46875 L 3.3125 -6.734375 L 4.03125 -6.734375 L 4.03125 -2.375 L 5.015625 -2.375 L 5.015625 -1.640625 L 4.03125 -1.640625 L 4.03125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 2.8125 -6.734375 C 3.5625 -6.734375 4.082031 -6.535156 4.375 -6.140625 C 4.664062 -5.753906 4.8125 -5.359375 4.8125 -4.953125 L 3.984375 -4.953125 C 3.929688 -5.210938 3.851562 -5.421875 3.75 -5.578125 C 3.539062 -5.859375 3.226562 -6 2.8125 -6 C 2.34375 -6 1.96875 -5.78125 1.6875 -5.34375 C 1.414062 -4.90625 1.265625 -4.28125 1.234375 -3.46875 C 1.421875 -3.75 1.664062 -3.960938 1.96875 -4.109375 C 2.226562 -4.234375 2.523438 -4.296875 2.859375 -4.296875 C 3.421875 -4.296875 3.910156 -4.113281 4.328125 -3.75 C 4.742188 -3.394531 4.953125 -2.863281 4.953125 -2.15625 C 4.953125 -1.539062 4.753906 -1 4.359375 -0.53125 C 3.960938 -0.0625 3.398438 0.171875 2.671875 0.171875 C 2.046875 0.171875 1.503906 -0.0625 1.046875 -0.53125 C 0.585938 -1.007812 0.359375 -1.816406 0.359375 -2.953125 C 0.359375 -3.785156 0.460938 -4.488281 0.671875 -5.0625 C 1.054688 -6.175781 1.769531 -6.734375 2.8125 -6.734375 Z M 2.75 -0.578125 C 3.1875 -0.578125 3.515625 -0.722656 3.734375 -1.015625 C 3.960938 -1.316406 4.078125 -1.671875 4.078125 -2.078125 C 4.078125 -2.421875 3.976562 -2.75 3.78125 -3.0625 C 3.582031 -3.375 3.222656 -3.53125 2.703125 -3.53125 C 2.335938 -3.53125 2.019531 -3.410156 1.75 -3.171875 C 1.476562 -2.929688 1.34375 -2.566406 1.34375 -2.078125 C 1.34375 -1.648438 1.460938 -1.289062 1.703125 -1 C 1.953125 -0.71875 2.300781 -0.578125 2.75 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 2.609375 -3.890625 C 2.984375 -3.890625 3.273438 -3.992188 3.484375 -4.203125 C 3.691406 -4.410156 3.796875 -4.660156 3.796875 -4.953125 C 3.796875 -5.203125 3.691406 -5.429688 3.484375 -5.640625 C 3.285156 -5.847656 2.984375 -5.953125 2.578125 -5.953125 C 2.171875 -5.953125 1.875 -5.847656 1.6875 -5.640625 C 1.507812 -5.429688 1.421875 -5.1875 1.421875 -4.90625 C 1.421875 -4.59375 1.535156 -4.34375 1.765625 -4.15625 C 2.003906 -3.976562 2.285156 -3.890625 2.609375 -3.890625 Z M 2.65625 -0.578125 C 3.050781 -0.578125 3.375 -0.679688 3.625 -0.890625 C 3.882812 -1.097656 4.015625 -1.414062 4.015625 -1.84375 C 4.015625 -2.269531 3.878906 -2.59375 3.609375 -2.8125 C 3.347656 -3.039062 3.007812 -3.15625 2.59375 -3.15625 C 2.195312 -3.15625 1.867188 -3.039062 1.609375 -2.8125 C 1.359375 -2.582031 1.234375 -2.265625 1.234375 -1.859375 C 1.234375 -1.515625 1.347656 -1.210938 1.578125 -0.953125 C 1.816406 -0.703125 2.175781 -0.578125 2.65625 -0.578125 Z M 1.46875 -3.578125 C 1.226562 -3.671875 1.039062 -3.785156 0.90625 -3.921875 C 0.664062 -4.171875 0.546875 -4.5 0.546875 -4.90625 C 0.546875 -5.40625 0.722656 -5.832031 1.078125 -6.1875 C 1.441406 -6.550781 1.957031 -6.734375 2.625 -6.734375 C 3.269531 -6.734375 3.773438 -6.5625 4.140625 -6.21875 C 4.503906 -5.875 4.6875 -5.476562 4.6875 -5.03125 C 4.6875 -4.613281 4.582031 -4.273438 4.375 -4.015625 C 4.25 -3.867188 4.0625 -3.722656 3.8125 -3.578125 C 4.09375 -3.453125 4.3125 -3.304688 4.46875 -3.140625 C 4.769531 -2.828125 4.921875 -2.421875 4.921875 -1.921875 C 4.921875 -1.335938 4.722656 -0.835938 4.328125 -0.421875 C 3.929688 -0.015625 3.367188 0.1875 2.640625 0.1875 C 1.984375 0.1875 1.429688 0.0078125 0.984375 -0.34375 C 0.535156 -0.695312 0.3125 -1.210938 0.3125 -1.890625 C 0.3125 -2.285156 0.40625 -2.625 0.59375 -2.90625 C 0.789062 -3.195312 1.082031 -3.421875 1.46875 -3.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 48.683594 14.398438 L 202 14.398438 L 202 180 L 48.683594 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 48.683594 166 L 202 166 L 202 168 L 48.683594 168 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 48.683594 128 L 202 128 L 202 129 L 48.683594 129 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 48.683594 89 L 202 89 L 202 91 L 48.683594 91 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 48.683594 51 L 202 51 L 202 52 L 48.683594 52 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 72 14.398438 L 74 14.398438 L 74 180 L 72 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 107 14.398438 L 109 14.398438 L 109 180 L 107 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 142 14.398438 L 143 14.398438 L 143 180 L 142 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 178 14.398438 L 178 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 48.683594 147 L 202.601562 147 L 202.601562 149 L 48.683594 149 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 48.683594 108 L 202.601562 108 L 202.601562 110 L 48.683594 110 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 48.683594 70 L 202.601562 70 L 202.601562 72 L 48.683594 72 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 48.683594 31 L 202.601562 31 L 202.601562 33 L 48.683594 33 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 55 14.398438 L 57 14.398438 L 57 180 L 55 180 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 89 14.398438 L 91 14.398438 L 91 180 L 89 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 124 14.398438 L 126 14.398438 L 126 180 L 124 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 159 14.398438 L 161 14.398438 L 161 180 L 159 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface231">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 48.683594 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 48.683594 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 166.894531 L 201.601562 166.894531 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 128.433594 L 201.601562 128.433594 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 89.96875 L 201.601562 89.96875 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 51.503906 L 201.601562 51.503906 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.011719 179.027344 L 73.011719 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.765625 179.027344 L 107.765625 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.519531 179.027344 L 142.519531 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.273438 179.027344 L 177.273438 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 147.664062 L 201.601562 147.664062 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 109.199219 L 201.601562 109.199219 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 70.738281 L 201.601562 70.738281 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 48.683594 32.273438 L 201.601562 32.273438 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.632812 179.027344 L 55.632812 14.398438 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.386719 179.027344 L 90.386719 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.140625 179.027344 L 125.140625 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.894531 179.027344 L 159.894531 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.648438 179.027344 L 194.648438 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 55.632812 171.546875 L 55.910156 171.273438 L 56.191406 170.996094 L 56.46875 170.714844 L 56.746094 170.429688 L 57.027344 170.136719 L 57.304688 169.84375 L 57.582031 169.539062 L 57.863281 169.234375 L 58.140625 168.925781 L 58.417969 168.609375 L 58.699219 168.285156 L 58.976562 167.960938 L 59.253906 167.628906 L 59.535156 167.289062 L 59.8125 166.945312 L 60.089844 166.597656 L 60.371094 166.246094 L 60.925781 165.519531 L 61.207031 165.148438 L 61.484375 164.769531 L 61.761719 164.386719 L 62.039062 164 L 62.320312 163.605469 L 62.597656 163.203125 L 62.875 162.796875 L 63.15625 162.382812 L 63.433594 161.960938 L 63.710938 161.535156 L 63.992188 161.105469 L 64.269531 160.664062 L 64.546875 160.21875 L 64.828125 159.769531 L 65.105469 159.308594 L 65.382812 158.84375 L 65.664062 158.371094 L 65.941406 157.894531 L 66.21875 157.40625 L 66.5 156.914062 L 66.777344 156.417969 L 67.054688 155.910156 L 67.335938 155.398438 L 67.613281 154.878906 L 67.890625 154.351562 L 68.167969 153.816406 L 68.449219 153.273438 L 68.726562 152.726562 L 69.285156 151.609375 L 69.5625 151.039062 L 69.839844 150.460938 L 70.121094 149.875 L 70.398438 149.285156 L 70.675781 148.6875 L 70.957031 148.078125 L 71.234375 147.464844 L 71.511719 146.84375 L 71.792969 146.214844 L 72.070312 145.582031 L 72.347656 144.9375 L 72.628906 144.285156 L 72.90625 143.628906 L 73.183594 142.964844 L 73.464844 142.292969 L 73.742188 141.613281 L 74.019531 140.925781 L 74.300781 140.230469 L 74.578125 139.527344 L 74.855469 138.820312 L 75.132812 138.105469 L 75.414062 137.382812 L 75.691406 136.652344 L 75.96875 135.914062 L 76.25 135.171875 L 76.527344 134.417969 L 76.804688 133.660156 L 77.085938 132.898438 L 77.363281 132.125 L 77.640625 131.347656 L 77.921875 130.5625 L 78.199219 129.773438 L 78.476562 128.976562 L 78.757812 128.171875 L 79.035156 127.359375 L 79.3125 126.542969 L 79.59375 125.722656 L 79.871094 124.894531 L 80.148438 124.058594 L 80.429688 123.21875 L 80.707031 122.375 L 80.984375 121.523438 L 81.261719 120.667969 L 81.542969 119.804688 L 81.820312 118.9375 L 82.097656 118.066406 L 82.378906 117.1875 L 82.65625 116.308594 L 82.933594 115.421875 L 83.214844 114.53125 L 83.492188 113.636719 L 83.769531 112.738281 L 84.050781 111.832031 L 84.328125 110.925781 L 84.605469 110.015625 L 84.886719 109.101562 L 85.164062 108.1875 L 85.441406 107.265625 L 85.722656 106.34375 L 86 105.414062 L 86.277344 104.488281 L 86.558594 103.554688 L 87.113281 101.6875 L 87.390625 100.75 L 87.671875 99.8125 L 88.226562 97.929688 L 88.507812 96.988281 L 88.785156 96.042969 L 89.0625 95.101562 L 89.34375 94.15625 L 89.898438 92.265625 L 90.179688 91.320312 L 90.457031 90.375 L 90.734375 89.433594 L 91.015625 88.488281 L 91.570312 86.605469 L 91.851562 85.667969 L 92.40625 83.792969 L 92.6875 82.859375 L 92.964844 81.925781 L 93.242188 80.996094 L 93.519531 80.070312 L 93.800781 79.144531 L 94.355469 77.308594 L 94.636719 76.390625 L 94.914062 75.480469 L 95.191406 74.574219 L 95.472656 73.671875 L 95.75 72.769531 L 96.027344 71.875 L 96.308594 70.984375 L 96.863281 69.21875 L 97.144531 68.34375 L 97.421875 67.472656 L 97.699219 66.605469 L 97.980469 65.746094 L 98.535156 64.042969 L 98.816406 63.203125 L 99.09375 62.367188 L 99.371094 61.535156 L 99.652344 60.710938 L 99.929688 59.894531 L 100.207031 59.085938 L 100.484375 58.28125 L 100.765625 57.484375 L 101.042969 56.695312 L 101.320312 55.914062 L 101.601562 55.140625 L 101.878906 54.371094 L 102.15625 53.613281 L 102.4375 52.859375 L 102.714844 52.117188 L 102.992188 51.378906 L 103.273438 50.652344 L 103.550781 49.929688 L 103.828125 49.21875 L 104.109375 48.515625 L 104.386719 47.820312 L 104.664062 47.132812 L 104.945312 46.453125 L 105.222656 45.78125 L 105.5 45.121094 L 105.78125 44.46875 L 106.058594 43.824219 L 106.335938 43.191406 L 106.613281 42.5625 L 106.894531 41.945312 L 107.171875 41.335938 L 107.449219 40.738281 L 107.730469 40.148438 L 108.007812 39.566406 L 108.285156 38.996094 L 108.84375 37.878906 L 109.121094 37.335938 L 109.402344 36.800781 L 109.679688 36.273438 L 109.957031 35.757812 L 110.238281 35.25 L 110.515625 34.753906 L 110.792969 34.265625 L 111.074219 33.785156 L 111.351562 33.316406 L 111.628906 32.855469 L 111.910156 32.40625 L 112.1875 31.964844 L 112.464844 31.535156 L 112.742188 31.113281 L 113.023438 30.699219 L 113.300781 30.296875 L 113.578125 29.902344 L 113.859375 29.519531 L 114.136719 29.144531 L 114.414062 28.78125 L 114.695312 28.425781 L 114.972656 28.078125 L 115.25 27.742188 L 115.53125 27.414062 L 115.808594 27.097656 L 116.085938 26.789062 L 116.367188 26.492188 L 116.644531 26.203125 L 116.921875 25.921875 L 117.203125 25.652344 L 117.480469 25.390625 L 117.757812 25.140625 L 118.039062 24.898438 L 118.316406 24.664062 L 118.59375 24.441406 L 118.875 24.230469 L 119.152344 24.023438 L 119.429688 23.828125 L 119.707031 23.644531 L 119.988281 23.46875 L 120.265625 23.300781 L 120.542969 23.144531 L 120.824219 22.996094 L 121.101562 22.855469 L 121.378906 22.726562 L 121.660156 22.605469 L 121.9375 22.492188 L 122.214844 22.390625 L 122.496094 22.300781 L 122.773438 22.214844 L 123.050781 22.140625 L 123.332031 22.078125 L 123.609375 22.023438 L 123.886719 21.976562 L 124.167969 21.9375 L 124.445312 21.910156 L 124.722656 21.890625 L 125.003906 21.882812 L 125.28125 21.882812 L 125.558594 21.890625 L 125.835938 21.910156 L 126.117188 21.9375 L 126.394531 21.976562 L 126.671875 22.023438 L 126.953125 22.078125 L 127.230469 22.140625 L 127.507812 22.214844 L 127.789062 22.300781 L 128.066406 22.390625 L 128.34375 22.492188 L 128.625 22.605469 L 128.902344 22.726562 L 129.179688 22.855469 L 129.460938 22.996094 L 129.738281 23.144531 L 130.015625 23.300781 L 130.296875 23.46875 L 130.574219 23.644531 L 130.851562 23.828125 L 131.132812 24.023438 L 131.410156 24.230469 L 131.6875 24.441406 L 131.964844 24.664062 L 132.246094 24.898438 L 132.523438 25.140625 L 132.800781 25.390625 L 133.082031 25.652344 L 133.359375 25.921875 L 133.636719 26.203125 L 133.917969 26.492188 L 134.195312 26.789062 L 134.472656 27.097656 L 134.753906 27.414062 L 135.03125 27.742188 L 135.308594 28.078125 L 135.589844 28.425781 L 135.867188 28.78125 L 136.144531 29.144531 L 136.425781 29.519531 L 136.703125 29.902344 L 136.980469 30.296875 L 137.261719 30.699219 L 137.539062 31.113281 L 137.816406 31.535156 L 138.09375 31.964844 L 138.375 32.40625 L 138.652344 32.855469 L 138.929688 33.316406 L 139.210938 33.785156 L 139.488281 34.265625 L 139.765625 34.753906 L 140.046875 35.25 L 140.324219 35.757812 L 140.601562 36.273438 L 140.882812 36.800781 L 141.160156 37.335938 L 141.4375 37.878906 L 141.71875 38.433594 L 141.996094 38.996094 L 142.273438 39.566406 L 142.554688 40.148438 L 142.832031 40.738281 L 143.109375 41.335938 L 143.390625 41.945312 L 143.667969 42.5625 L 143.945312 43.191406 L 144.226562 43.824219 L 144.503906 44.46875 L 144.78125 45.121094 L 145.058594 45.78125 L 145.339844 46.453125 L 145.617188 47.132812 L 145.894531 47.820312 L 146.175781 48.515625 L 146.453125 49.21875 L 146.730469 49.929688 L 147.011719 50.652344 L 147.289062 51.378906 L 147.566406 52.117188 L 147.847656 52.859375 L 148.125 53.613281 L 148.402344 54.371094 L 148.683594 55.140625 L 148.960938 55.914062 L 149.238281 56.695312 L 149.519531 57.484375 L 149.796875 58.28125 L 150.074219 59.085938 L 150.355469 59.894531 L 150.632812 60.710938 L 150.910156 61.535156 L 151.1875 62.367188 L 151.46875 63.203125 L 151.746094 64.042969 L 152.023438 64.894531 L 152.304688 65.746094 L 152.582031 66.605469 L 152.859375 67.472656 L 153.140625 68.34375 L 153.417969 69.21875 L 153.695312 70.101562 L 153.976562 70.984375 L 154.253906 71.875 L 154.53125 72.769531 L 154.8125 73.671875 L 155.089844 74.574219 L 155.367188 75.480469 L 155.648438 76.390625 L 156.203125 78.226562 L 156.484375 79.144531 L 157.039062 80.996094 L 157.316406 81.925781 L 157.597656 82.859375 L 157.875 83.792969 L 158.152344 84.730469 L 158.433594 85.667969 L 158.710938 86.605469 L 158.988281 87.546875 L 159.269531 88.488281 L 159.546875 89.433594 L 159.824219 90.375 L 160.105469 91.320312 L 160.660156 93.210938 L 160.941406 94.15625 L 161.21875 95.101562 L 161.496094 96.042969 L 161.777344 96.988281 L 162.332031 98.871094 L 162.613281 99.8125 L 163.167969 101.6875 L 163.445312 102.621094 L 163.726562 103.554688 L 164.003906 104.488281 L 164.28125 105.414062 L 164.5625 106.34375 L 165.117188 108.1875 L 165.398438 109.101562 L 165.675781 110.015625 L 165.953125 110.925781 L 166.234375 111.832031 L 166.511719 112.738281 L 166.789062 113.636719 L 167.070312 114.53125 L 167.347656 115.421875 L 167.625 116.308594 L 167.90625 117.1875 L 168.183594 118.066406 L 168.460938 118.9375 L 168.742188 119.804688 L 169.019531 120.667969 L 169.296875 121.523438 L 169.578125 122.375 L 169.855469 123.21875 L 170.132812 124.058594 L 170.410156 124.894531 L 170.691406 125.722656 L 170.96875 126.542969 L 171.246094 127.359375 L 171.527344 128.171875 L 171.804688 128.976562 L 172.082031 129.773438 L 172.363281 130.5625 L 172.640625 131.347656 L 172.917969 132.125 L 173.199219 132.898438 L 173.476562 133.660156 L 173.753906 134.417969 L 174.035156 135.171875 L 174.3125 135.914062 L 174.589844 136.652344 L 174.871094 137.382812 L 175.148438 138.105469 L 175.425781 138.820312 L 175.707031 139.527344 L 175.984375 140.230469 L 176.261719 140.925781 L 176.539062 141.613281 L 176.820312 142.292969 L 177.097656 142.964844 L 177.375 143.628906 L 177.65625 144.285156 L 177.933594 144.9375 L 178.210938 145.582031 L 178.492188 146.214844 L 178.769531 146.84375 L 179.046875 147.464844 L 179.328125 148.078125 L 179.605469 148.6875 L 179.882812 149.285156 L 180.164062 149.875 L 180.441406 150.460938 L 180.71875 151.039062 L 181 151.609375 L 181.277344 152.171875 L 181.554688 152.726562 L 181.835938 153.273438 L 182.113281 153.816406 L 182.390625 154.351562 L 182.667969 154.878906 L 182.949219 155.398438 L 183.226562 155.910156 L 183.503906 156.417969 L 183.785156 156.914062 L 184.0625 157.40625 L 184.339844 157.894531 L 184.621094 158.371094 L 184.898438 158.84375 L 185.175781 159.308594 L 185.457031 159.769531 L 185.734375 160.21875 L 186.011719 160.664062 L 186.292969 161.105469 L 186.570312 161.535156 L 186.847656 161.960938 L 187.128906 162.382812 L 187.40625 162.796875 L 187.683594 163.203125 L 187.964844 163.605469 L 188.242188 164 L 188.519531 164.386719 L 188.800781 164.769531 L 189.078125 165.148438 L 189.355469 165.519531 L 189.632812 165.882812 L 189.914062 166.246094 L 190.191406 166.597656 L 190.46875 166.945312 L 190.75 167.289062 L 191.027344 167.628906 L 191.304688 167.960938 L 191.585938 168.285156 L 191.863281 168.609375 L 192.140625 168.925781 L 192.421875 169.234375 L 192.976562 169.84375 L 193.257812 170.136719 L 193.535156 170.429688 L 193.8125 170.714844 L 194.371094 171.273438 L 194.648438 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="151.101562"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="151.101562"/>
+ <use xlink:href="#glyph0-3" x="36.262756" y="151.101562"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="112.636719"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="112.636719"/>
+ <use xlink:href="#glyph0-4" x="36.262756" y="112.636719"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="74.175781"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="74.175781"/>
+ <use xlink:href="#glyph0-5" x="36.262756" y="74.175781"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.261719" y="35.710938"/>
+ <use xlink:href="#glyph0-2" x="33.597305" y="35.710938"/>
+ <use xlink:href="#glyph0-6" x="36.262756" y="35.710938"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 147.664062 L 48.683594 147.664062 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 109.199219 L 48.683594 109.199219 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 70.738281 L 48.683594 70.738281 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 44.429688 32.273438 L 48.683594 32.273438 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 55.632812 183.28125 L 55.632812 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.386719 183.28125 L 90.386719 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.140625 183.28125 L 125.140625 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.894531 183.28125 L 159.894531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.648438 183.28125 L 194.648438 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="46.296875" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="51.632462" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="54.297913" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.633499" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="81.050781" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="86.386368" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="89.051819" y="192.992188"/>
+ <use xlink:href="#glyph0-7" x="94.387405" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="115.804688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="121.140274" y="192.992188"/>
+ <use xlink:href="#glyph0-7" x="123.805725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="129.141312" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="150.558594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="155.89418" y="192.992188"/>
+ <use xlink:href="#glyph0-8" x="158.559631" y="192.992188"/>
+ <use xlink:href="#glyph0-7" x="163.895218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-9" x="185.3125" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.648087" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.313538" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.649124" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="122.140625" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/spike.svg b/documentation/ui/figure/spike.svg
new file mode 100644
index 0000000..5bf788b
--- /dev/null
+++ b/documentation/ui/figure/spike.svg
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 153 L 202 153 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 202 77 L 202 78 L 54.019531 78 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 39 L 202 39 L 202 40 L 54.019531 40 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 172 L 202.601562 172 L 202.601562 174 L 54.019531 174 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 136 L 54.019531 136 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 95 L 202.601562 95 L 202.601562 97 L 54.019531 97 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 57 L 202.601562 57 L 202.601562 59 L 54.019531 59 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 19 L 202.601562 19 L 202.601562 21 L 54.019531 21 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface236">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 153.546875 L 201.601562 153.546875 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.496094 L 201.601562 115.496094 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 77.441406 L 201.601562 77.441406 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 39.390625 L 201.601562 39.390625 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 172.570312 L 201.601562 172.570312 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.519531 L 201.601562 134.519531 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.46875 L 201.601562 96.46875 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 58.417969 L 201.601562 58.417969 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 20.367188 L 201.601562 20.367188 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 60.996094 171.523438 L 61.265625 171.503906 L 61.53125 171.480469 L 61.800781 171.460938 L 62.878906 171.367188 L 63.144531 171.34375 L 63.414062 171.316406 L 63.683594 171.292969 L 63.953125 171.265625 L 64.222656 171.242188 L 64.492188 171.214844 L 64.757812 171.1875 L 65.027344 171.15625 L 65.566406 171.101562 L 66.105469 171.039062 L 66.371094 171.007812 L 67.179688 170.914062 L 67.71875 170.84375 L 67.984375 170.808594 L 68.523438 170.738281 L 68.792969 170.699219 L 69.0625 170.664062 L 69.332031 170.625 L 69.597656 170.585938 L 69.867188 170.542969 L 70.136719 170.503906 L 70.945312 170.375 L 71.210938 170.332031 L 72.289062 170.144531 L 72.558594 170.09375 L 72.824219 170.042969 L 73.363281 169.941406 L 73.902344 169.832031 L 74.167969 169.777344 L 74.4375 169.722656 L 75.246094 169.546875 L 75.515625 169.484375 L 75.78125 169.421875 L 76.050781 169.359375 L 76.859375 169.160156 L 77.128906 169.089844 L 77.394531 169.019531 L 77.664062 168.945312 L 77.933594 168.875 L 78.203125 168.796875 L 78.472656 168.722656 L 78.742188 168.644531 L 79.007812 168.566406 L 79.546875 168.402344 L 80.085938 168.230469 L 80.355469 168.140625 L 80.621094 168.054688 L 81.429688 167.773438 L 81.96875 167.578125 L 82.234375 167.476562 L 83.042969 167.160156 L 83.3125 167.050781 L 83.582031 166.9375 L 83.847656 166.824219 L 84.386719 166.589844 L 84.65625 166.46875 L 85.195312 166.21875 L 85.460938 166.089844 L 86 165.824219 L 86.539062 165.550781 L 86.808594 165.40625 L 87.074219 165.261719 L 87.613281 164.964844 L 88.152344 164.652344 L 88.417969 164.492188 L 88.6875 164.328125 L 89.226562 163.992188 L 89.765625 163.640625 L 90.03125 163.460938 L 90.570312 163.085938 L 90.839844 162.894531 L 91.109375 162.699219 L 91.378906 162.5 L 91.644531 162.296875 L 92.183594 161.875 L 92.453125 161.660156 L 92.722656 161.4375 L 92.992188 161.210938 L 93.257812 160.980469 L 93.527344 160.746094 L 93.796875 160.507812 L 94.066406 160.265625 L 94.335938 160.015625 L 94.605469 159.761719 L 94.871094 159.5 L 95.140625 159.238281 L 95.410156 158.96875 L 95.679688 158.691406 L 95.949219 158.410156 L 96.21875 158.125 L 96.484375 157.832031 L 97.023438 157.230469 L 97.292969 156.917969 L 97.5625 156.601562 L 97.832031 156.277344 L 98.097656 155.949219 L 98.367188 155.613281 L 98.636719 155.269531 L 98.90625 154.917969 L 99.175781 154.5625 L 99.445312 154.195312 L 99.710938 153.824219 L 99.980469 153.445312 L 100.25 153.058594 L 100.519531 152.664062 L 100.789062 152.257812 L 101.058594 151.847656 L 101.324219 151.429688 L 101.59375 151 L 101.863281 150.5625 L 102.132812 150.117188 L 102.402344 149.664062 L 102.667969 149.199219 L 102.9375 148.726562 L 103.207031 148.246094 L 103.476562 147.753906 L 103.746094 147.25 L 104.015625 146.738281 L 104.28125 146.214844 L 104.550781 145.679688 L 104.820312 145.136719 L 105.089844 144.582031 L 105.359375 144.015625 L 105.628906 143.4375 L 105.894531 142.847656 L 106.164062 142.246094 L 106.433594 141.632812 L 106.703125 141.003906 L 106.972656 140.367188 L 107.242188 139.714844 L 107.507812 139.050781 L 107.777344 138.371094 L 108.046875 137.679688 L 108.316406 136.972656 L 108.585938 136.25 L 108.855469 135.515625 L 109.121094 134.765625 L 109.390625 134 L 109.660156 133.21875 L 109.929688 132.421875 L 110.199219 131.609375 L 110.46875 130.78125 L 110.734375 129.9375 L 111.003906 129.074219 L 111.273438 128.191406 L 111.542969 127.292969 L 111.8125 126.378906 L 112.082031 125.441406 L 112.347656 124.488281 L 112.617188 123.515625 L 112.886719 122.523438 L 113.15625 121.507812 L 113.425781 120.476562 L 113.695312 119.421875 L 113.960938 118.34375 L 114.230469 117.246094 L 114.5 116.128906 L 114.769531 114.984375 L 115.039062 113.820312 L 115.308594 112.628906 L 115.574219 111.417969 L 115.84375 110.179688 L 116.113281 108.914062 L 116.382812 107.628906 L 116.652344 106.3125 L 116.921875 104.972656 L 117.1875 103.601562 L 117.457031 102.207031 L 117.726562 100.78125 L 117.996094 99.328125 L 118.265625 97.847656 L 118.53125 96.335938 L 118.800781 94.789062 L 119.070312 93.214844 L 119.339844 91.609375 L 119.609375 89.972656 L 119.878906 88.300781 L 120.144531 86.59375 L 120.414062 84.851562 L 120.683594 83.078125 L 120.953125 81.265625 L 121.222656 79.417969 L 121.492188 77.53125 L 121.757812 75.609375 L 122.027344 73.644531 L 122.296875 71.644531 L 122.566406 69.601562 L 122.835938 67.515625 L 123.105469 65.390625 L 123.371094 63.21875 L 123.640625 61.007812 L 123.910156 58.746094 L 124.179688 56.445312 L 124.449219 54.09375 L 124.71875 51.695312 L 124.984375 49.246094 L 125.253906 46.75 L 125.523438 44.203125 L 125.792969 41.605469 L 126.0625 38.953125 L 126.332031 36.25 L 126.597656 33.492188 L 126.867188 30.675781 L 127.136719 27.804688 L 127.40625 24.871094 L 127.675781 21.882812 L 127.945312 21.882812 L 128.210938 24.871094 L 128.480469 27.804688 L 128.75 30.675781 L 129.019531 33.492188 L 129.289062 36.25 L 129.558594 38.953125 L 129.824219 41.605469 L 130.09375 44.203125 L 130.363281 46.75 L 130.632812 49.246094 L 130.902344 51.695312 L 131.171875 54.09375 L 131.4375 56.445312 L 131.707031 58.746094 L 131.976562 61.007812 L 132.246094 63.21875 L 132.515625 65.390625 L 132.78125 67.515625 L 133.050781 69.601562 L 133.320312 71.644531 L 133.589844 73.644531 L 133.859375 75.609375 L 134.128906 77.53125 L 134.394531 79.417969 L 134.664062 81.265625 L 134.933594 83.078125 L 135.203125 84.851562 L 135.472656 86.59375 L 135.742188 88.300781 L 136.007812 89.972656 L 136.277344 91.609375 L 136.546875 93.214844 L 136.816406 94.789062 L 137.085938 96.335938 L 137.355469 97.847656 L 137.621094 99.328125 L 137.890625 100.78125 L 138.160156 102.207031 L 138.429688 103.601562 L 138.699219 104.972656 L 138.96875 106.3125 L 139.234375 107.628906 L 139.503906 108.914062 L 139.773438 110.179688 L 140.042969 111.417969 L 140.3125 112.628906 L 140.582031 113.820312 L 140.847656 114.984375 L 141.117188 116.128906 L 141.386719 117.246094 L 141.65625 118.34375 L 141.925781 119.421875 L 142.195312 120.476562 L 142.460938 121.507812 L 142.730469 122.523438 L 143 123.515625 L 143.269531 124.488281 L 143.539062 125.441406 L 143.808594 126.378906 L 144.074219 127.292969 L 144.34375 128.191406 L 144.613281 129.074219 L 144.882812 129.9375 L 145.152344 130.78125 L 145.421875 131.609375 L 145.6875 132.421875 L 145.957031 133.21875 L 146.226562 134 L 146.496094 134.765625 L 146.765625 135.515625 L 147.03125 136.25 L 147.300781 136.972656 L 147.570312 137.679688 L 147.839844 138.371094 L 148.109375 139.050781 L 148.378906 139.714844 L 148.644531 140.367188 L 148.914062 141.003906 L 149.183594 141.632812 L 149.453125 142.246094 L 149.722656 142.847656 L 149.992188 143.4375 L 150.257812 144.015625 L 150.527344 144.582031 L 150.796875 145.136719 L 151.066406 145.679688 L 151.335938 146.214844 L 151.605469 146.738281 L 151.871094 147.25 L 152.140625 147.753906 L 152.410156 148.246094 L 152.679688 148.726562 L 152.949219 149.199219 L 153.21875 149.664062 L 153.484375 150.117188 L 153.753906 150.5625 L 154.023438 151 L 154.292969 151.429688 L 154.5625 151.847656 L 154.832031 152.257812 L 155.097656 152.664062 L 155.367188 153.058594 L 155.636719 153.445312 L 155.90625 153.824219 L 156.175781 154.195312 L 156.445312 154.5625 L 156.710938 154.917969 L 156.980469 155.269531 L 157.25 155.613281 L 157.519531 155.949219 L 157.789062 156.277344 L 158.058594 156.601562 L 158.324219 156.917969 L 158.59375 157.230469 L 159.132812 157.832031 L 159.402344 158.125 L 159.671875 158.410156 L 159.9375 158.691406 L 160.207031 158.96875 L 160.476562 159.238281 L 161.015625 159.761719 L 161.28125 160.015625 L 161.550781 160.265625 L 161.820312 160.507812 L 162.089844 160.746094 L 162.359375 160.980469 L 162.628906 161.210938 L 162.894531 161.4375 L 163.164062 161.660156 L 163.433594 161.875 L 163.972656 162.296875 L 164.242188 162.5 L 164.507812 162.699219 L 164.777344 162.894531 L 165.046875 163.085938 L 165.585938 163.460938 L 165.855469 163.640625 L 166.121094 163.816406 L 166.390625 163.992188 L 166.929688 164.328125 L 167.199219 164.492188 L 167.46875 164.652344 L 167.734375 164.808594 L 168.003906 164.964844 L 168.542969 165.261719 L 169.082031 165.550781 L 169.347656 165.6875 L 169.617188 165.824219 L 170.15625 166.089844 L 170.425781 166.21875 L 170.695312 166.34375 L 170.960938 166.46875 L 171.230469 166.589844 L 171.769531 166.824219 L 172.308594 167.050781 L 172.574219 167.160156 L 173.382812 167.476562 L 173.652344 167.578125 L 173.921875 167.675781 L 174.1875 167.773438 L 174.996094 168.054688 L 175.265625 168.140625 L 175.535156 168.230469 L 175.800781 168.316406 L 176.070312 168.402344 L 176.609375 168.566406 L 176.878906 168.644531 L 177.144531 168.722656 L 177.414062 168.796875 L 177.683594 168.875 L 177.953125 168.945312 L 178.222656 169.019531 L 178.492188 169.089844 L 178.757812 169.160156 L 179.566406 169.359375 L 180.105469 169.484375 L 180.371094 169.546875 L 181.179688 169.722656 L 181.71875 169.832031 L 181.984375 169.886719 L 182.253906 169.941406 L 183.332031 170.144531 L 183.597656 170.191406 L 184.40625 170.332031 L 184.945312 170.417969 L 185.210938 170.460938 L 185.480469 170.503906 L 185.75 170.542969 L 186.019531 170.585938 L 186.558594 170.664062 L 186.824219 170.699219 L 187.09375 170.738281 L 188.171875 170.878906 L 188.4375 170.914062 L 189.785156 171.070312 L 190.050781 171.101562 L 190.589844 171.15625 L 190.859375 171.1875 L 191.128906 171.214844 L 191.394531 171.242188 L 191.664062 171.265625 L 191.933594 171.292969 L 192.203125 171.316406 L 192.472656 171.34375 L 192.742188 171.367188 L 193.007812 171.390625 L 193.816406 171.460938 L 194.085938 171.480469 L 194.355469 171.503906 L 194.621094 171.523438 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="176.007812"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="176.007812"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="176.007812"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="176.007812"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.957031"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.957031"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.957031"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.957031"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="99.90625"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="99.90625"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="99.90625"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="99.90625"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="61.855469"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="61.855469"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="61.855469"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="61.855469"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="23.804688"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="23.804688"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="23.804688"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="23.804688"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 172.570312 L 54.019531 172.570312 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.519531 L 54.019531 134.519531 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.46875 L 54.019531 96.46875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 58.417969 L 54.019531 58.417969 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 20.367188 L 54.019531 20.367188 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/terms.svg b/documentation/ui/figure/terms.svg
new file mode 100644
index 0000000..acc306a
--- /dev/null
+++ b/documentation/ui/figure/terms.svg
@@ -0,0 +1,4955 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="712pt" height="1512pt" viewBox="0 0 712 1512" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 3.171875 -2.375 L 3.171875 -5.421875 L 1.015625 -2.375 Z M 3.1875 0 L 3.1875 -1.640625 L 0.25 -1.640625 L 0.25 -2.46875 L 3.3125 -6.734375 L 4.03125 -6.734375 L 4.03125 -2.375 L 5.015625 -2.375 L 5.015625 -1.640625 L 4.03125 -1.640625 L 4.03125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 2.8125 -6.734375 C 3.5625 -6.734375 4.082031 -6.535156 4.375 -6.140625 C 4.664062 -5.753906 4.8125 -5.359375 4.8125 -4.953125 L 3.984375 -4.953125 C 3.929688 -5.210938 3.851562 -5.421875 3.75 -5.578125 C 3.539062 -5.859375 3.226562 -6 2.8125 -6 C 2.34375 -6 1.96875 -5.78125 1.6875 -5.34375 C 1.414062 -4.90625 1.265625 -4.28125 1.234375 -3.46875 C 1.421875 -3.75 1.664062 -3.960938 1.96875 -4.109375 C 2.226562 -4.234375 2.523438 -4.296875 2.859375 -4.296875 C 3.421875 -4.296875 3.910156 -4.113281 4.328125 -3.75 C 4.742188 -3.394531 4.953125 -2.863281 4.953125 -2.15625 C 4.953125 -1.539062 4.753906 -1 4.359375 -0.53125 C 3.960938 -0.0625 3.398438 0.171875 2.671875 0.171875 C 2.046875 0.171875 1.503906 -0.0625 1.046875 -0.53125 C 0.585938 -1.007812 0.359375 -1.816406 0.359375 -2.953125 C 0.359375 -3.785156 0.460938 -4.488281 0.671875 -5.0625 C 1.054688 -6.175781 1.769531 -6.734375 2.8125 -6.734375 Z M 2.75 -0.578125 C 3.1875 -0.578125 3.515625 -0.722656 3.734375 -1.015625 C 3.960938 -1.316406 4.078125 -1.671875 4.078125 -2.078125 C 4.078125 -2.421875 3.976562 -2.75 3.78125 -3.0625 C 3.582031 -3.375 3.222656 -3.53125 2.703125 -3.53125 C 2.335938 -3.53125 2.019531 -3.410156 1.75 -3.171875 C 1.476562 -2.929688 1.34375 -2.566406 1.34375 -2.078125 C 1.34375 -1.648438 1.460938 -1.289062 1.703125 -1 C 1.953125 -0.71875 2.300781 -0.578125 2.75 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 2.609375 -3.890625 C 2.984375 -3.890625 3.273438 -3.992188 3.484375 -4.203125 C 3.691406 -4.410156 3.796875 -4.660156 3.796875 -4.953125 C 3.796875 -5.203125 3.691406 -5.429688 3.484375 -5.640625 C 3.285156 -5.847656 2.984375 -5.953125 2.578125 -5.953125 C 2.171875 -5.953125 1.875 -5.847656 1.6875 -5.640625 C 1.507812 -5.429688 1.421875 -5.1875 1.421875 -4.90625 C 1.421875 -4.59375 1.535156 -4.34375 1.765625 -4.15625 C 2.003906 -3.976562 2.285156 -3.890625 2.609375 -3.890625 Z M 2.65625 -0.578125 C 3.050781 -0.578125 3.375 -0.679688 3.625 -0.890625 C 3.882812 -1.097656 4.015625 -1.414062 4.015625 -1.84375 C 4.015625 -2.269531 3.878906 -2.59375 3.609375 -2.8125 C 3.347656 -3.039062 3.007812 -3.15625 2.59375 -3.15625 C 2.195312 -3.15625 1.867188 -3.039062 1.609375 -2.8125 C 1.359375 -2.582031 1.234375 -2.265625 1.234375 -1.859375 C 1.234375 -1.515625 1.347656 -1.210938 1.578125 -0.953125 C 1.816406 -0.703125 2.175781 -0.578125 2.65625 -0.578125 Z M 1.46875 -3.578125 C 1.226562 -3.671875 1.039062 -3.785156 0.90625 -3.921875 C 0.664062 -4.171875 0.546875 -4.5 0.546875 -4.90625 C 0.546875 -5.40625 0.722656 -5.832031 1.078125 -6.1875 C 1.441406 -6.550781 1.957031 -6.734375 2.625 -6.734375 C 3.269531 -6.734375 3.773438 -6.5625 4.140625 -6.21875 C 4.503906 -5.875 4.6875 -5.476562 4.6875 -5.03125 C 4.6875 -4.613281 4.582031 -4.273438 4.375 -4.015625 C 4.25 -3.867188 4.0625 -3.722656 3.8125 -3.578125 C 4.09375 -3.453125 4.3125 -3.304688 4.46875 -3.140625 C 4.769531 -2.828125 4.921875 -2.421875 4.921875 -1.921875 C 4.921875 -1.335938 4.722656 -0.835938 4.328125 -0.421875 C 3.929688 -0.015625 3.367188 0.1875 2.640625 0.1875 C 1.984375 0.1875 1.429688 0.0078125 0.984375 -0.34375 C 0.535156 -0.695312 0.3125 -1.210938 0.3125 -1.890625 C 0.3125 -2.285156 0.40625 -2.625 0.59375 -2.90625 C 0.789062 -3.195312 1.082031 -3.421875 1.46875 -3.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-2">
+<path style="stroke:none;" d="M -7.234375 -1.03125 C -7.671875 -1.050781 -7.988281 -1.128906 -8.1875 -1.265625 C -8.550781 -1.515625 -8.734375 -1.988281 -8.734375 -2.6875 C -8.734375 -2.757812 -8.726562 -2.828125 -8.71875 -2.890625 C -8.71875 -2.960938 -8.710938 -3.046875 -8.703125 -3.140625 L -7.75 -3.140625 C -7.757812 -3.023438 -7.765625 -2.941406 -7.765625 -2.890625 C -7.765625 -2.847656 -7.765625 -2.804688 -7.765625 -2.765625 C -7.765625 -2.441406 -7.679688 -2.25 -7.515625 -2.1875 C -7.347656 -2.125 -6.925781 -2.09375 -6.25 -2.09375 L -6.25 -3.140625 L -5.421875 -3.140625 L -5.421875 -2.078125 L 0 -2.078125 L 0 -1.03125 L -5.421875 -1.03125 L -5.421875 -0.171875 L -6.25 -0.171875 L -6.25 -1.03125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-0">
+<path style="stroke:none;" d="M 0.90625 0 L 0.90625 -8.640625 L 7.859375 -8.640625 L 7.859375 0 Z M 6.78125 -1.078125 L 6.78125 -7.5625 L 1.984375 -7.5625 L 1.984375 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-1">
+<path style="stroke:none;" d="M 7.1875 -8.640625 L 7.1875 -7.109375 L 4.609375 -7.109375 L 4.609375 0 L 2.796875 0 L 2.796875 -7.109375 L 0.1875 -7.109375 L 0.1875 -8.640625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-2">
+<path style="stroke:none;" d="M 4.25 -6.546875 C 4.28125 -6.546875 4.304688 -6.539062 4.328125 -6.53125 C 4.347656 -6.53125 4.394531 -6.53125 4.46875 -6.53125 L 4.46875 -4.8125 C 4.363281 -4.820312 4.269531 -4.828125 4.1875 -4.828125 C 4.101562 -4.835938 4.035156 -4.84375 3.984375 -4.84375 C 3.316406 -4.84375 2.867188 -4.625 2.640625 -4.1875 C 2.503906 -3.945312 2.4375 -3.566406 2.4375 -3.046875 L 2.4375 0 L 0.765625 0 L 0.765625 -6.390625 L 2.359375 -6.390625 L 2.359375 -5.28125 C 2.617188 -5.695312 2.84375 -5.984375 3.03125 -6.140625 C 3.34375 -6.410156 3.75 -6.546875 4.25 -6.546875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-3">
+<path style="stroke:none;" d="M 2.5 -7.15625 L 0.796875 -7.15625 L 0.796875 -8.6875 L 2.5 -8.6875 Z M 0.796875 -6.390625 L 2.5 -6.390625 L 2.5 0 L 0.796875 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-4">
+<path style="stroke:none;" d="M 4.296875 -3.109375 C 4.191406 -3.035156 4.085938 -2.976562 3.984375 -2.9375 C 3.878906 -2.90625 3.734375 -2.867188 3.546875 -2.828125 L 3.171875 -2.765625 C 2.816406 -2.703125 2.5625 -2.625 2.40625 -2.53125 C 2.144531 -2.375 2.015625 -2.140625 2.015625 -1.828125 C 2.015625 -1.535156 2.09375 -1.328125 2.25 -1.203125 C 2.414062 -1.078125 2.613281 -1.015625 2.84375 -1.015625 C 3.195312 -1.015625 3.523438 -1.117188 3.828125 -1.328125 C 4.128906 -1.535156 4.285156 -1.921875 4.296875 -2.484375 Z M 3.28125 -3.890625 C 3.59375 -3.921875 3.816406 -3.96875 3.953125 -4.03125 C 4.191406 -4.132812 4.3125 -4.289062 4.3125 -4.5 C 4.3125 -4.769531 4.21875 -4.953125 4.03125 -5.046875 C 3.851562 -5.148438 3.585938 -5.203125 3.234375 -5.203125 C 2.835938 -5.203125 2.554688 -5.101562 2.390625 -4.90625 C 2.273438 -4.757812 2.195312 -4.5625 2.15625 -4.3125 L 0.546875 -4.3125 C 0.585938 -4.875 0.742188 -5.335938 1.015625 -5.703125 C 1.460938 -6.265625 2.222656 -6.546875 3.296875 -6.546875 C 3.992188 -6.546875 4.613281 -6.40625 5.15625 -6.125 C 5.695312 -5.84375 5.96875 -5.316406 5.96875 -4.546875 L 5.96875 -1.625 C 5.96875 -1.414062 5.972656 -1.171875 5.984375 -0.890625 C 5.992188 -0.671875 6.023438 -0.519531 6.078125 -0.4375 C 6.140625 -0.363281 6.222656 -0.300781 6.328125 -0.25 L 6.328125 0 L 4.515625 0 C 4.460938 -0.125 4.425781 -0.242188 4.40625 -0.359375 C 4.382812 -0.472656 4.367188 -0.601562 4.359375 -0.75 C 4.128906 -0.5 3.863281 -0.285156 3.5625 -0.109375 C 3.207031 0.0976562 2.800781 0.203125 2.34375 0.203125 C 1.769531 0.203125 1.289062 0.0351562 0.90625 -0.296875 C 0.53125 -0.628906 0.34375 -1.097656 0.34375 -1.703125 C 0.34375 -2.484375 0.644531 -3.050781 1.25 -3.40625 C 1.582031 -3.59375 2.070312 -3.726562 2.71875 -3.8125 Z M 3.375 -6.5625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-5">
+<path style="stroke:none;" d="M 4.3125 -6.546875 C 4.976562 -6.546875 5.519531 -6.367188 5.9375 -6.015625 C 6.351562 -5.671875 6.5625 -5.097656 6.5625 -4.296875 L 6.5625 0 L 4.859375 0 L 4.859375 -3.890625 C 4.859375 -4.222656 4.8125 -4.476562 4.71875 -4.65625 C 4.5625 -4.988281 4.25 -5.15625 3.78125 -5.15625 C 3.21875 -5.15625 2.832031 -4.914062 2.625 -4.4375 C 2.507812 -4.175781 2.453125 -3.847656 2.453125 -3.453125 L 2.453125 0 L 0.796875 0 L 0.796875 -6.375 L 2.40625 -6.375 L 2.40625 -5.4375 C 2.613281 -5.769531 2.816406 -6.007812 3.015625 -6.15625 C 3.359375 -6.414062 3.789062 -6.546875 4.3125 -6.546875 Z M 3.703125 -6.5625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-6">
+<path style="stroke:none;" d="M 3.515625 -1.375 C 3.910156 -1.375 4.242188 -1.519531 4.515625 -1.8125 C 4.785156 -2.101562 4.921875 -2.570312 4.921875 -3.21875 C 4.921875 -3.820312 4.789062 -4.28125 4.53125 -4.59375 C 4.28125 -4.914062 3.9375 -5.078125 3.5 -5.078125 C 2.914062 -5.078125 2.515625 -4.800781 2.296875 -4.25 C 2.171875 -3.957031 2.109375 -3.597656 2.109375 -3.171875 C 2.109375 -2.796875 2.171875 -2.46875 2.296875 -2.1875 C 2.523438 -1.644531 2.929688 -1.375 3.515625 -1.375 Z M 3.109375 -6.546875 C 3.429688 -6.546875 3.707031 -6.492188 3.9375 -6.390625 C 4.34375 -6.222656 4.671875 -5.914062 4.921875 -5.46875 L 4.921875 -6.390625 L 6.546875 -6.390625 L 6.546875 -0.328125 C 6.546875 0.492188 6.410156 1.113281 6.140625 1.53125 C 5.660156 2.25 4.742188 2.609375 3.390625 2.609375 C 2.578125 2.609375 1.910156 2.445312 1.390625 2.125 C 0.878906 1.8125 0.597656 1.335938 0.546875 0.703125 L 2.359375 0.703125 C 2.398438 0.890625 2.472656 1.03125 2.578125 1.125 C 2.765625 1.269531 3.070312 1.34375 3.5 1.34375 C 4.09375 1.34375 4.492188 1.144531 4.703125 0.75 C 4.835938 0.488281 4.90625 0.0507812 4.90625 -0.5625 L 4.90625 -0.96875 C 4.738281 -0.695312 4.566406 -0.492188 4.390625 -0.359375 C 4.054688 -0.0976562 3.625 0.03125 3.09375 0.03125 C 2.269531 0.03125 1.613281 -0.253906 1.125 -0.828125 C 0.632812 -1.410156 0.390625 -2.191406 0.390625 -3.171875 C 0.390625 -4.117188 0.625 -4.914062 1.09375 -5.5625 C 1.570312 -6.21875 2.242188 -6.546875 3.109375 -6.546875 Z M 3.640625 -6.5625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-7">
+<path style="stroke:none;" d="M 2.484375 0 L 0.8125 0 L 0.8125 -8.640625 L 2.484375 -8.640625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-8">
+<path style="stroke:none;" d="M 3.296875 -5.1875 C 2.910156 -5.1875 2.609375 -5.0625 2.390625 -4.8125 C 2.179688 -4.570312 2.050781 -4.242188 2 -3.828125 L 4.59375 -3.828125 C 4.5625 -4.273438 4.425781 -4.613281 4.1875 -4.84375 C 3.945312 -5.070312 3.648438 -5.1875 3.296875 -5.1875 Z M 3.296875 -6.5625 C 3.828125 -6.5625 4.304688 -6.457031 4.734375 -6.25 C 5.160156 -6.050781 5.515625 -5.738281 5.796875 -5.3125 C 6.046875 -4.9375 6.207031 -4.5 6.28125 -4 C 6.320312 -3.707031 6.335938 -3.285156 6.328125 -2.734375 L 1.953125 -2.734375 C 1.984375 -2.085938 2.1875 -1.640625 2.5625 -1.390625 C 2.789062 -1.222656 3.066406 -1.140625 3.390625 -1.140625 C 3.734375 -1.140625 4.015625 -1.238281 4.234375 -1.4375 C 4.347656 -1.539062 4.453125 -1.6875 4.546875 -1.875 L 6.25 -1.875 C 6.207031 -1.5 6.007812 -1.113281 5.65625 -0.71875 C 5.101562 -0.09375 4.335938 0.21875 3.359375 0.21875 C 2.546875 0.21875 1.828125 -0.0390625 1.203125 -0.5625 C 0.585938 -1.09375 0.28125 -1.945312 0.28125 -3.125 C 0.28125 -4.226562 0.554688 -5.078125 1.109375 -5.671875 C 1.671875 -6.265625 2.398438 -6.5625 3.296875 -6.5625 Z M 3.421875 -6.5625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-9">
+<path style="stroke:none;" d="M 2.671875 -7.140625 L 2.671875 -5.234375 L 4.78125 -5.234375 C 5.164062 -5.234375 5.472656 -5.300781 5.703125 -5.4375 C 5.941406 -5.582031 6.0625 -5.835938 6.0625 -6.203125 C 6.0625 -6.609375 5.90625 -6.875 5.59375 -7 C 5.320312 -7.09375 4.976562 -7.140625 4.5625 -7.140625 Z M 2.671875 -3.796875 L 2.671875 -1.5 L 4.78125 -1.5 C 5.164062 -1.5 5.460938 -1.550781 5.671875 -1.65625 C 6.054688 -1.84375 6.25 -2.203125 6.25 -2.734375 C 6.25 -3.179688 6.0625 -3.488281 5.6875 -3.65625 C 5.476562 -3.75 5.1875 -3.796875 4.8125 -3.796875 Z M 5.140625 -8.640625 C 6.203125 -8.617188 6.953125 -8.3125 7.390625 -7.71875 C 7.648438 -7.351562 7.78125 -6.914062 7.78125 -6.40625 C 7.78125 -5.875 7.648438 -5.445312 7.390625 -5.125 C 7.242188 -4.945312 7.023438 -4.785156 6.734375 -4.640625 C 7.171875 -4.472656 7.5 -4.21875 7.71875 -3.875 C 7.945312 -3.53125 8.0625 -3.109375 8.0625 -2.609375 C 8.0625 -2.097656 7.9375 -1.640625 7.6875 -1.234375 C 7.519531 -0.960938 7.3125 -0.734375 7.0625 -0.546875 C 6.789062 -0.335938 6.460938 -0.191406 6.078125 -0.109375 C 5.703125 -0.0351562 5.296875 0 4.859375 0 L 0.9375 0 L 0.9375 -8.640625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-10">
+<path style="stroke:none;" d="M 5.78125 -5.890625 C 5.78125 -6.335938 5.660156 -6.65625 5.421875 -6.84375 C 5.179688 -7.039062 4.851562 -7.140625 4.4375 -7.140625 L 2.75 -7.140625 L 2.75 -4.59375 L 4.4375 -4.59375 C 4.851562 -4.59375 5.179688 -4.695312 5.421875 -4.90625 C 5.660156 -5.113281 5.78125 -5.441406 5.78125 -5.890625 Z M 7.5625 -5.90625 C 7.5625 -4.882812 7.300781 -4.160156 6.78125 -3.734375 C 6.269531 -3.316406 5.535156 -3.109375 4.578125 -3.109375 L 2.75 -3.109375 L 2.75 0 L 0.953125 0 L 0.953125 -8.640625 L 4.71875 -8.640625 C 5.582031 -8.640625 6.269531 -8.414062 6.78125 -7.96875 C 7.300781 -7.519531 7.5625 -6.832031 7.5625 -5.90625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-11">
+<path style="stroke:none;" d="M 2.21875 -2.671875 C 2.269531 -2.273438 2.378906 -1.976562 2.546875 -1.78125 C 2.835938 -1.425781 3.335938 -1.25 4.046875 -1.25 C 4.472656 -1.25 4.820312 -1.296875 5.09375 -1.390625 C 5.59375 -1.566406 5.84375 -1.898438 5.84375 -2.390625 C 5.84375 -2.671875 5.71875 -2.890625 5.46875 -3.046875 C 5.21875 -3.203125 4.828125 -3.335938 4.296875 -3.453125 L 3.375 -3.65625 C 2.476562 -3.863281 1.859375 -4.085938 1.515625 -4.328125 C 0.929688 -4.722656 0.640625 -5.34375 0.640625 -6.1875 C 0.640625 -6.96875 0.921875 -7.613281 1.484375 -8.125 C 2.046875 -8.632812 2.875 -8.890625 3.96875 -8.890625 C 4.875 -8.890625 5.644531 -8.644531 6.28125 -8.15625 C 6.925781 -7.675781 7.265625 -6.976562 7.296875 -6.0625 L 5.5625 -6.0625 C 5.53125 -6.582031 5.304688 -6.953125 4.890625 -7.171875 C 4.609375 -7.316406 4.257812 -7.390625 3.84375 -7.390625 C 3.375 -7.390625 3 -7.296875 2.71875 -7.109375 C 2.445312 -6.921875 2.3125 -6.660156 2.3125 -6.328125 C 2.3125 -6.015625 2.445312 -5.78125 2.71875 -5.625 C 2.894531 -5.53125 3.269531 -5.414062 3.84375 -5.28125 L 5.328125 -4.921875 C 5.984375 -4.765625 6.476562 -4.554688 6.8125 -4.296875 C 7.320312 -3.890625 7.578125 -3.300781 7.578125 -2.53125 C 7.578125 -1.738281 7.273438 -1.082031 6.671875 -0.5625 C 6.066406 -0.0390625 5.21875 0.21875 4.125 0.21875 C 3 0.21875 2.113281 -0.0351562 1.46875 -0.546875 C 0.820312 -1.054688 0.5 -1.765625 0.5 -2.671875 Z M 3.96875 -8.90625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-12">
+<path style="stroke:none;" d="M 4.296875 -6.546875 C 4.691406 -6.546875 5.050781 -6.476562 5.375 -6.34375 C 5.695312 -6.207031 5.960938 -6 6.171875 -5.71875 C 6.347656 -5.476562 6.453125 -5.234375 6.484375 -4.984375 C 6.523438 -4.734375 6.546875 -4.320312 6.546875 -3.75 L 6.546875 0 L 4.84375 0 L 4.84375 -3.890625 C 4.84375 -4.234375 4.785156 -4.507812 4.671875 -4.71875 C 4.515625 -5.007812 4.222656 -5.15625 3.796875 -5.15625 C 3.359375 -5.15625 3.023438 -5.007812 2.796875 -4.71875 C 2.566406 -4.425781 2.453125 -4.003906 2.453125 -3.453125 L 2.453125 0 L 0.796875 0 L 0.796875 -8.609375 L 2.453125 -8.609375 L 2.453125 -5.5625 C 2.691406 -5.925781 2.972656 -6.179688 3.296875 -6.328125 C 3.617188 -6.472656 3.953125 -6.546875 4.296875 -6.546875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-13">
+<path style="stroke:none;" d="M 5.1875 -3.1875 C 5.1875 -3.6875 5.070312 -4.125 4.84375 -4.5 C 4.613281 -4.875 4.25 -5.0625 3.75 -5.0625 C 3.144531 -5.0625 2.726562 -4.773438 2.5 -4.203125 C 2.382812 -3.898438 2.328125 -3.515625 2.328125 -3.046875 C 2.328125 -2.304688 2.523438 -1.785156 2.921875 -1.484375 C 3.148438 -1.304688 3.425781 -1.21875 3.75 -1.21875 C 4.21875 -1.21875 4.570312 -1.394531 4.8125 -1.75 C 5.0625 -2.113281 5.1875 -2.59375 5.1875 -3.1875 Z M 4.234375 -6.53125 C 4.972656 -6.53125 5.601562 -6.253906 6.125 -5.703125 C 6.644531 -5.148438 6.90625 -4.34375 6.90625 -3.28125 C 6.90625 -2.15625 6.648438 -1.296875 6.140625 -0.703125 C 5.640625 -0.109375 4.988281 0.1875 4.1875 0.1875 C 3.675781 0.1875 3.253906 0.0546875 2.921875 -0.203125 C 2.742188 -0.335938 2.566406 -0.539062 2.390625 -0.8125 L 2.390625 2.515625 L 0.734375 2.515625 L 0.734375 -6.390625 L 2.328125 -6.390625 L 2.328125 -5.4375 C 2.515625 -5.71875 2.707031 -5.9375 2.90625 -6.09375 C 3.28125 -6.382812 3.722656 -6.53125 4.234375 -6.53125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-14">
+<path style="stroke:none;" d="M 0.421875 -5.03125 L 0.421875 -6.390625 L 5.59375 -6.390625 L 5.59375 -5 L 2.359375 -1.375 L 5.703125 -1.375 L 5.703125 0 L 0.1875 0 L 0.1875 -1.296875 L 3.46875 -5.03125 Z M 3 -6.5625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-15">
+<path style="stroke:none;" d="M 3.640625 -1.171875 C 4.128906 -1.171875 4.503906 -1.34375 4.765625 -1.6875 C 5.023438 -2.039062 5.15625 -2.539062 5.15625 -3.1875 C 5.15625 -3.820312 5.023438 -4.3125 4.765625 -4.65625 C 4.503906 -5.007812 4.128906 -5.1875 3.640625 -5.1875 C 3.148438 -5.1875 2.773438 -5.007812 2.515625 -4.65625 C 2.253906 -4.3125 2.125 -3.820312 2.125 -3.1875 C 2.125 -2.539062 2.253906 -2.039062 2.515625 -1.6875 C 2.773438 -1.34375 3.148438 -1.171875 3.640625 -1.171875 Z M 6.921875 -3.1875 C 6.921875 -2.25 6.648438 -1.445312 6.109375 -0.78125 C 5.566406 -0.113281 4.75 0.21875 3.65625 0.21875 C 2.550781 0.21875 1.726562 -0.113281 1.1875 -0.78125 C 0.65625 -1.445312 0.390625 -2.25 0.390625 -3.1875 C 0.390625 -4.101562 0.65625 -4.898438 1.1875 -5.578125 C 1.726562 -6.253906 2.550781 -6.59375 3.65625 -6.59375 C 4.75 -6.59375 5.566406 -6.253906 6.109375 -5.578125 C 6.648438 -4.898438 6.921875 -4.101562 6.921875 -3.1875 Z M 3.65625 -6.5625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-16">
+<path style="stroke:none;" d="M 3.140625 -6.546875 C 3.523438 -6.546875 3.867188 -6.457031 4.171875 -6.28125 C 4.472656 -6.113281 4.71875 -5.878906 4.90625 -5.578125 L 4.90625 -8.625 L 6.59375 -8.625 L 6.59375 0 L 4.96875 0 L 4.96875 -0.890625 C 4.726562 -0.503906 4.457031 -0.222656 4.15625 -0.046875 C 3.851562 0.117188 3.472656 0.203125 3.015625 0.203125 C 2.273438 0.203125 1.648438 -0.0976562 1.140625 -0.703125 C 0.628906 -1.304688 0.375 -2.082031 0.375 -3.03125 C 0.375 -4.125 0.625 -4.984375 1.125 -5.609375 C 1.625 -6.234375 2.296875 -6.546875 3.140625 -6.546875 Z M 3.5 -1.203125 C 3.96875 -1.203125 4.328125 -1.378906 4.578125 -1.734375 C 4.828125 -2.085938 4.953125 -2.539062 4.953125 -3.09375 C 4.953125 -3.875 4.753906 -4.4375 4.359375 -4.78125 C 4.109375 -4.976562 3.828125 -5.078125 3.515625 -5.078125 C 3.023438 -5.078125 2.664062 -4.890625 2.4375 -4.515625 C 2.207031 -4.148438 2.09375 -3.695312 2.09375 -3.15625 C 2.09375 -2.5625 2.207031 -2.085938 2.4375 -1.734375 C 2.675781 -1.378906 3.03125 -1.203125 3.5 -1.203125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-17">
+<path style="stroke:none;" d="M 0.546875 -4.25 C 0.546875 -5.757812 0.945312 -6.921875 1.75 -7.734375 C 2.457031 -8.441406 3.351562 -8.796875 4.4375 -8.796875 C 5.882812 -8.796875 6.945312 -8.320312 7.625 -7.375 C 8 -6.832031 8.195312 -6.296875 8.21875 -5.765625 L 6.421875 -5.765625 C 6.296875 -6.171875 6.144531 -6.484375 5.96875 -6.703125 C 5.632812 -7.078125 5.144531 -7.265625 4.5 -7.265625 C 3.84375 -7.265625 3.328125 -7 2.953125 -6.46875 C 2.578125 -5.9375 2.390625 -5.1875 2.390625 -4.21875 C 2.390625 -3.25 2.585938 -2.519531 2.984375 -2.03125 C 3.390625 -1.550781 3.898438 -1.3125 4.515625 -1.3125 C 5.148438 -1.3125 5.628906 -1.519531 5.953125 -1.9375 C 6.140625 -2.164062 6.296875 -2.5 6.421875 -2.9375 L 8.203125 -2.9375 C 8.046875 -2 7.644531 -1.234375 7 -0.640625 C 6.363281 -0.0546875 5.539062 0.234375 4.53125 0.234375 C 3.289062 0.234375 2.316406 -0.160156 1.609375 -0.953125 C 0.898438 -1.753906 0.546875 -2.851562 0.546875 -4.25 Z M 4.390625 -8.90625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-18">
+<path style="stroke:none;" d="M 2.078125 -2.046875 C 2.117188 -1.742188 2.195312 -1.53125 2.3125 -1.40625 C 2.519531 -1.1875 2.898438 -1.078125 3.453125 -1.078125 C 3.785156 -1.078125 4.046875 -1.125 4.234375 -1.21875 C 4.429688 -1.3125 4.53125 -1.457031 4.53125 -1.65625 C 4.53125 -1.84375 4.453125 -1.988281 4.296875 -2.09375 C 4.140625 -2.1875 3.5625 -2.351562 2.5625 -2.59375 C 1.832031 -2.769531 1.320312 -2.992188 1.03125 -3.265625 C 0.726562 -3.523438 0.578125 -3.90625 0.578125 -4.40625 C 0.578125 -5 0.804688 -5.503906 1.265625 -5.921875 C 1.734375 -6.347656 2.390625 -6.5625 3.234375 -6.5625 C 4.023438 -6.5625 4.671875 -6.398438 5.171875 -6.078125 C 5.679688 -5.765625 5.972656 -5.21875 6.046875 -4.4375 L 4.375 -4.4375 C 4.351562 -4.65625 4.289062 -4.828125 4.1875 -4.953125 C 4.007812 -5.179688 3.695312 -5.296875 3.25 -5.296875 C 2.882812 -5.296875 2.625 -5.238281 2.46875 -5.125 C 2.320312 -5.007812 2.25 -4.875 2.25 -4.71875 C 2.25 -4.53125 2.328125 -4.394531 2.484375 -4.3125 C 2.648438 -4.21875 3.234375 -4.0625 4.234375 -3.84375 C 4.898438 -3.6875 5.394531 -3.453125 5.71875 -3.140625 C 6.050781 -2.816406 6.21875 -2.414062 6.21875 -1.9375 C 6.21875 -1.300781 5.984375 -0.78125 5.515625 -0.375 C 5.046875 0.0195312 4.316406 0.21875 3.328125 0.21875 C 2.328125 0.21875 1.585938 0.00390625 1.109375 -0.421875 C 0.628906 -0.847656 0.390625 -1.390625 0.390625 -2.046875 Z M 3.359375 -6.5625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-19">
+<path style="stroke:none;" d="M 7.921875 -6.53125 C 8.203125 -6.53125 8.476562 -6.472656 8.75 -6.359375 C 9.019531 -6.253906 9.269531 -6.066406 9.5 -5.796875 C 9.675781 -5.566406 9.796875 -5.289062 9.859375 -4.96875 C 9.898438 -4.75 9.921875 -4.4375 9.921875 -4.03125 L 9.90625 0 L 8.1875 0 L 8.1875 -4.0625 C 8.1875 -4.3125 8.148438 -4.515625 8.078125 -4.671875 C 7.929688 -4.960938 7.65625 -5.109375 7.25 -5.109375 C 6.789062 -5.109375 6.472656 -4.914062 6.296875 -4.53125 C 6.210938 -4.332031 6.171875 -4.085938 6.171875 -3.796875 L 6.171875 0 L 4.484375 0 L 4.484375 -3.796875 C 4.484375 -4.179688 4.441406 -4.457031 4.359375 -4.625 C 4.222656 -4.9375 3.953125 -5.09375 3.546875 -5.09375 C 3.066406 -5.09375 2.742188 -4.9375 2.578125 -4.625 C 2.484375 -4.445312 2.4375 -4.1875 2.4375 -3.84375 L 2.4375 0 L 0.75 0 L 0.75 -6.375 L 2.375 -6.375 L 2.375 -5.4375 C 2.582031 -5.769531 2.773438 -6.007812 2.953125 -6.15625 C 3.285156 -6.40625 3.707031 -6.53125 4.21875 -6.53125 C 4.707031 -6.53125 5.101562 -6.421875 5.40625 -6.203125 C 5.644531 -6.003906 5.828125 -5.75 5.953125 -5.4375 C 6.171875 -5.8125 6.441406 -6.085938 6.765625 -6.265625 C 7.109375 -6.441406 7.492188 -6.53125 7.921875 -6.53125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-20">
+<path style="stroke:none;" d="M 2.671875 -7.140625 L 2.671875 -1.5 L 4.328125 -1.5 C 5.179688 -1.5 5.773438 -1.921875 6.109375 -2.765625 C 6.296875 -3.222656 6.390625 -3.769531 6.390625 -4.40625 C 6.390625 -5.28125 6.25 -5.953125 5.96875 -6.421875 C 5.695312 -6.898438 5.148438 -7.140625 4.328125 -7.140625 Z M 4.640625 -8.640625 C 5.171875 -8.628906 5.613281 -8.566406 5.96875 -8.453125 C 6.570312 -8.253906 7.0625 -7.890625 7.4375 -7.359375 C 7.738281 -6.921875 7.941406 -6.453125 8.046875 -5.953125 C 8.160156 -5.453125 8.21875 -4.976562 8.21875 -4.53125 C 8.21875 -3.382812 7.988281 -2.410156 7.53125 -1.609375 C 6.90625 -0.535156 5.941406 0 4.640625 0 L 0.921875 0 L 0.921875 -8.640625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-21">
+<path style="stroke:none;" d="M 3.140625 -8.71875 C 3.242188 -8.71875 3.335938 -8.710938 3.421875 -8.703125 C 3.503906 -8.703125 3.625 -8.695312 3.78125 -8.6875 L 3.78125 -7.328125 C 3.6875 -7.335938 3.523438 -7.34375 3.296875 -7.34375 C 3.078125 -7.351562 2.925781 -7.304688 2.84375 -7.203125 C 2.757812 -7.109375 2.71875 -7 2.71875 -6.875 C 2.71875 -6.75 2.71875 -6.566406 2.71875 -6.328125 L 3.8125 -6.328125 L 3.8125 -5.15625 L 2.71875 -5.15625 L 2.71875 0 L 1.0625 0 L 1.0625 -5.15625 L 0.125 -5.15625 L 0.125 -6.328125 L 1.03125 -6.328125 L 1.03125 -6.734375 C 1.03125 -7.421875 1.148438 -7.894531 1.390625 -8.15625 C 1.628906 -8.53125 2.210938 -8.71875 3.140625 -8.71875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-22">
+<path style="stroke:none;" d="M 4.59375 -4.09375 C 4.5625 -4.332031 4.484375 -4.546875 4.359375 -4.734375 C 4.171875 -4.992188 3.878906 -5.125 3.484375 -5.125 C 2.921875 -5.125 2.535156 -4.847656 2.328125 -4.296875 C 2.210938 -3.992188 2.15625 -3.597656 2.15625 -3.109375 C 2.15625 -2.640625 2.210938 -2.257812 2.328125 -1.96875 C 2.523438 -1.4375 2.898438 -1.171875 3.453125 -1.171875 C 3.835938 -1.171875 4.113281 -1.273438 4.28125 -1.484375 C 4.445312 -1.703125 4.546875 -1.976562 4.578125 -2.3125 L 6.28125 -2.3125 C 6.25 -1.800781 6.066406 -1.320312 5.734375 -0.875 C 5.210938 -0.144531 4.4375 0.21875 3.40625 0.21875 C 2.382812 0.21875 1.628906 -0.0820312 1.140625 -0.6875 C 0.660156 -1.300781 0.421875 -2.09375 0.421875 -3.0625 C 0.421875 -4.164062 0.6875 -5.019531 1.21875 -5.625 C 1.75 -6.238281 2.488281 -6.546875 3.4375 -6.546875 C 4.238281 -6.546875 4.894531 -6.363281 5.40625 -6 C 5.914062 -5.644531 6.21875 -5.007812 6.3125 -4.09375 Z M 3.46875 -6.5625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-23">
+<path style="stroke:none;" d="M 2.71875 -7.140625 L 2.71875 -4.8125 L 4.765625 -4.8125 C 5.171875 -4.8125 5.472656 -4.859375 5.671875 -4.953125 C 6.035156 -5.117188 6.21875 -5.445312 6.21875 -5.9375 C 6.21875 -6.457031 6.046875 -6.804688 5.703125 -6.984375 C 5.503906 -7.085938 5.207031 -7.140625 4.8125 -7.140625 Z M 5.1875 -8.640625 C 5.789062 -8.628906 6.253906 -8.550781 6.578125 -8.40625 C 6.910156 -8.269531 7.191406 -8.070312 7.421875 -7.8125 C 7.609375 -7.59375 7.753906 -7.347656 7.859375 -7.078125 C 7.972656 -6.816406 8.03125 -6.515625 8.03125 -6.171875 C 8.03125 -5.765625 7.925781 -5.363281 7.71875 -4.96875 C 7.507812 -4.570312 7.164062 -4.289062 6.6875 -4.125 C 7.09375 -3.96875 7.375 -3.738281 7.53125 -3.4375 C 7.695312 -3.144531 7.78125 -2.695312 7.78125 -2.09375 L 7.78125 -1.515625 C 7.78125 -1.117188 7.796875 -0.847656 7.828125 -0.703125 C 7.878906 -0.484375 7.988281 -0.320312 8.15625 -0.21875 L 8.15625 0 L 6.171875 0 C 6.117188 -0.1875 6.082031 -0.34375 6.0625 -0.46875 C 6.007812 -0.707031 5.984375 -0.953125 5.984375 -1.203125 L 5.96875 -2.015625 C 5.957031 -2.566406 5.851562 -2.929688 5.65625 -3.109375 C 5.46875 -3.296875 5.109375 -3.390625 4.578125 -3.390625 L 2.71875 -3.390625 L 2.71875 0 L 0.953125 0 L 0.953125 -8.640625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-24">
+<path style="stroke:none;" d="M 0.125 -5.140625 L 0.125 -6.328125 L 1.015625 -6.328125 L 1.015625 -8.109375 L 2.671875 -8.109375 L 2.671875 -6.328125 L 3.703125 -6.328125 L 3.703125 -5.140625 L 2.671875 -5.140625 L 2.671875 -1.765625 C 2.671875 -1.503906 2.703125 -1.335938 2.765625 -1.265625 C 2.828125 -1.203125 3.03125 -1.171875 3.375 -1.171875 C 3.425781 -1.171875 3.476562 -1.171875 3.53125 -1.171875 C 3.59375 -1.179688 3.648438 -1.1875 3.703125 -1.1875 L 3.703125 0.0625 L 2.90625 0.09375 C 2.125 0.113281 1.585938 -0.0234375 1.296875 -0.328125 C 1.109375 -0.515625 1.015625 -0.804688 1.015625 -1.203125 L 1.015625 -5.140625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-25">
+<path style="stroke:none;" d="M 6.71875 -5.9375 C 6.582031 -6.53125 6.25 -6.941406 5.71875 -7.171875 C 5.425781 -7.304688 5.097656 -7.375 4.734375 -7.375 C 4.035156 -7.375 3.460938 -7.109375 3.015625 -6.578125 C 2.566406 -6.054688 2.34375 -5.269531 2.34375 -4.21875 C 2.34375 -3.15625 2.582031 -2.398438 3.0625 -1.953125 C 3.550781 -1.515625 4.101562 -1.296875 4.71875 -1.296875 C 5.320312 -1.296875 5.816406 -1.46875 6.203125 -1.8125 C 6.597656 -2.164062 6.835938 -2.625 6.921875 -3.1875 L 4.921875 -3.1875 L 4.921875 -4.640625 L 8.53125 -4.640625 L 8.53125 0 L 7.328125 0 L 7.15625 -1.078125 C 6.800781 -0.671875 6.488281 -0.382812 6.21875 -0.21875 C 5.738281 0.0820312 5.148438 0.234375 4.453125 0.234375 C 3.304688 0.234375 2.367188 -0.164062 1.640625 -0.96875 C 0.878906 -1.757812 0.5 -2.847656 0.5 -4.234375 C 0.5 -5.628906 0.882812 -6.75 1.65625 -7.59375 C 2.425781 -8.4375 3.441406 -8.859375 4.703125 -8.859375 C 5.804688 -8.859375 6.6875 -8.578125 7.34375 -8.015625 C 8.007812 -7.460938 8.394531 -6.769531 8.5 -5.9375 Z M 4.703125 -8.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-26">
+<path style="stroke:none;" d="M 2.4375 -6.390625 L 2.4375 -2.53125 C 2.4375 -2.175781 2.484375 -1.90625 2.578125 -1.71875 C 2.722656 -1.394531 3.019531 -1.234375 3.46875 -1.234375 C 4.039062 -1.234375 4.429688 -1.460938 4.640625 -1.921875 C 4.753906 -2.171875 4.8125 -2.5 4.8125 -2.90625 L 4.8125 -6.390625 L 6.5 -6.390625 L 6.5 0 L 4.875 0 L 4.875 -0.90625 C 4.863281 -0.882812 4.828125 -0.820312 4.765625 -0.71875 C 4.703125 -0.625 4.625 -0.539062 4.53125 -0.46875 C 4.269531 -0.238281 4.015625 -0.0820312 3.765625 0 C 3.523438 0.09375 3.242188 0.140625 2.921875 0.140625 C 1.972656 0.140625 1.335938 -0.195312 1.015625 -0.875 C 0.828125 -1.25 0.734375 -1.800781 0.734375 -2.53125 L 0.734375 -6.390625 Z M 3.609375 -6.5625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-27">
+<path style="stroke:none;" d="M 0.765625 -8.609375 L 2.40625 -8.609375 L 2.40625 -3.953125 L 4.484375 -6.359375 L 6.546875 -6.359375 L 4.3125 -3.921875 L 6.640625 0 L 4.625 0 L 3.09375 -2.734375 L 2.40625 -2.015625 L 2.40625 0 L 0.765625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-28">
+<path style="stroke:none;" d="M 1.03125 1.21875 L 1.25 1.234375 C 1.414062 1.242188 1.570312 1.238281 1.71875 1.21875 C 1.863281 1.195312 1.988281 1.148438 2.09375 1.078125 C 2.1875 1.015625 2.273438 0.878906 2.359375 0.671875 C 2.441406 0.460938 2.476562 0.332031 2.46875 0.28125 L 0.125 -6.390625 L 1.984375 -6.390625 L 3.375 -1.671875 L 4.6875 -6.390625 L 6.46875 -6.390625 L 4.28125 -0.109375 C 3.851562 1.109375 3.515625 1.859375 3.265625 2.140625 C 3.023438 2.429688 2.535156 2.578125 1.796875 2.578125 C 1.648438 2.578125 1.53125 2.578125 1.4375 2.578125 C 1.351562 2.578125 1.21875 2.570312 1.03125 2.5625 Z M 3.296875 -6.5625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-29">
+<path style="stroke:none;" d="M 4.71875 -6.390625 L 6.515625 -6.390625 L 4.203125 0 L 2.4375 0 L 0.15625 -6.390625 L 2.03125 -6.390625 L 3.359375 -1.671875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-30">
+<path style="stroke:none;" d="M 0.3125 -1.53125 L 4.765625 -7.109375 L 0.421875 -7.109375 L 0.421875 -8.640625 L 7.015625 -8.640625 L 7.015625 -7.1875 L 2.5 -1.53125 L 7.03125 -1.53125 L 7.03125 0 L 0.3125 0 Z M 3.71875 -8.640625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-31">
+<path style="stroke:none;" d="M 0.921875 -8.625 L 7.03125 -8.625 L 7.03125 -7.109375 L 2.703125 -7.109375 L 2.703125 -5.125 L 6.5 -5.125 L 6.5 -3.625 L 2.703125 -3.625 L 2.703125 0 L 0.921875 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph5-32">
+<path style="stroke:none;" d="M 0.921875 -8.640625 L 2.71875 -8.640625 L 2.71875 -1.546875 L 7 -1.546875 L 7 0 L 0.921875 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph6-0">
+<path style="stroke:none;" d="M 0.90625 0 L 0.90625 -20.328125 L 17.046875 -20.328125 L 17.046875 0 Z M 14.5 -2.546875 L 14.5 -17.78125 L 3.453125 -17.78125 L 3.453125 -2.546875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph6-1">
+<path style="stroke:none;" d="M 2.453125 -17.078125 C 2.484375 -18.109375 2.660156 -18.863281 2.984375 -19.34375 C 3.566406 -20.195312 4.691406 -20.625 6.359375 -20.625 C 6.515625 -20.625 6.675781 -20.617188 6.84375 -20.609375 C 7.007812 -20.597656 7.195312 -20.582031 7.40625 -20.5625 L 7.40625 -18.296875 C 7.144531 -18.316406 6.957031 -18.328125 6.84375 -18.328125 C 6.726562 -18.335938 6.617188 -18.34375 6.515625 -18.34375 C 5.765625 -18.34375 5.3125 -18.144531 5.15625 -17.75 C 5.007812 -17.351562 4.9375 -16.351562 4.9375 -14.75 L 7.40625 -14.75 L 7.40625 -12.78125 L 4.90625 -12.78125 L 4.90625 0 L 2.453125 0 L 2.453125 -12.78125 L 0.390625 -12.78125 L 0.390625 -14.75 L 2.453125 -14.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph6-2">
+<path style="stroke:none;" d="M 0.421875 -14.828125 L 3.640625 -14.828125 L 7.046875 -9.609375 L 10.484375 -14.828125 L 13.515625 -14.75 L 8.53125 -7.59375 L 13.75 0 L 10.5625 0 L 6.875 -5.5625 L 3.3125 0 L 0.15625 0 L 5.375 -7.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph6-3">
+<path style="stroke:none;" d="M 1.765625 -20.328125 L 4.171875 -20.328125 L 4.171875 -8.53125 L 10.5625 -14.828125 L 13.75 -14.828125 L 8.0625 -9.265625 L 14.0625 0 L 10.875 0 L 6.25 -7.46875 L 4.171875 -5.5625 L 4.171875 0 L 1.765625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph7-0">
+<path style="stroke:none;" d="M 1.40625 5.015625 L 1.40625 -19.984375 L 15.578125 -19.984375 L 15.578125 5.015625 Z M 3 3.4375 L 14 3.4375 L 14 -18.390625 L 3 -18.390625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph7-1">
+<path style="stroke:none;" d="M 5.671875 -11.328125 C 5.671875 -10.878906 5.5 -10.492188 5.15625 -10.171875 C 4.820312 -9.847656 4.414062 -9.6875 3.9375 -9.6875 C 3.457031 -9.6875 3.050781 -9.847656 2.71875 -10.171875 C 2.382812 -10.492188 2.21875 -10.878906 2.21875 -11.328125 C 2.21875 -11.796875 2.382812 -12.1875 2.71875 -12.5 C 3.050781 -12.820312 3.457031 -12.984375 3.9375 -12.984375 C 4.414062 -12.984375 4.820312 -12.820312 5.15625 -12.5 C 5.5 -12.1875 5.671875 -11.796875 5.671875 -11.328125 Z M 5.671875 -1.328125 C 5.671875 -0.878906 5.5 -0.492188 5.15625 -0.171875 C 4.820312 0.148438 4.414062 0.3125 3.9375 0.3125 C 3.457031 0.3125 3.050781 0.148438 2.71875 -0.171875 C 2.382812 -0.492188 2.21875 -0.878906 2.21875 -1.328125 C 2.21875 -1.785156 2.382812 -2.175781 2.71875 -2.5 C 3.050781 -2.832031 3.457031 -3 3.9375 -3 C 4.414062 -3 4.820312 -2.832031 5.15625 -2.5 C 5.5 -2.175781 5.671875 -1.785156 5.671875 -1.328125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph7-2">
+<path style="stroke:none;" d="M 23.265625 -9.390625 L 17.46875 -11.734375 L 18.09375 -13.171875 L 26.390625 -9.65625 L 26.390625 -7.515625 L 18.09375 -4 L 17.46875 -5.4375 L 23.265625 -7.796875 L 1.59375 -7.796875 L 1.59375 -9.390625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph7-3">
+<path style="stroke:none;" d="M 14.359375 -3.859375 L 1.21875 -3.859375 L 1.21875 -5.78125 L 14.359375 -5.78125 Z M 14.359375 -7.59375 L 1.21875 -7.59375 L 1.21875 -9.515625 L 14.359375 -9.515625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph8-0">
+<path style="stroke:none;" d="M 1.765625 6.265625 L 1.765625 -24.984375 L 19.484375 -24.984375 L 19.484375 6.265625 Z M 3.75 4.296875 L 17.515625 4.296875 L 17.515625 -23 L 3.75 -23 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph8-1">
+<path style="stroke:none;" d="M 10.140625 -24.921875 C 8.191406 -23.140625 6.796875 -21.078125 5.953125 -18.734375 C 5.117188 -16.398438 4.703125 -13.265625 4.703125 -9.328125 C 4.703125 -5.378906 5.117188 -2.242188 5.953125 0.078125 C 6.796875 2.410156 8.191406 4.460938 10.140625 6.234375 L 9.4375 6.96875 C 6.988281 5.1875 5.070312 2.859375 3.6875 -0.015625 C 2.3125 -2.898438 1.625 -6.003906 1.625 -9.328125 C 1.625 -12.648438 2.316406 -15.753906 3.703125 -18.640625 C 5.085938 -21.535156 7 -23.875 9.4375 -25.65625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph8-2">
+<path style="stroke:none;" d="M 1.65625 -24.921875 L 2.34375 -25.65625 C 4.78125 -23.875 6.691406 -21.535156 8.078125 -18.640625 C 9.472656 -15.742188 10.171875 -12.640625 10.171875 -9.328125 C 10.171875 -6.015625 9.472656 -2.914062 8.078125 -0.03125 C 6.691406 2.851562 4.78125 5.1875 2.34375 6.96875 L 1.65625 6.234375 C 3.625 4.472656 5.019531 2.429688 5.84375 0.109375 C 6.675781 -2.210938 7.09375 -5.359375 7.09375 -9.328125 C 7.09375 -13.296875 6.675781 -16.441406 5.84375 -18.765625 C 5.019531 -21.097656 3.625 -23.148438 1.65625 -24.921875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph9-0">
+<path style="stroke:none;" d="M 0.640625 -0.640625 L -13.734375 -15.015625 L -2.328125 -26.421875 L 12.046875 -12.046875 Z M 8.453125 -12.046875 L -2.328125 -22.828125 L -10.140625 -15.015625 L 0.640625 -4.234375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph9-1">
+<path style="stroke:none;" d="M -10.34375 -13.8125 C -11.050781 -14.5625 -11.457031 -15.21875 -11.5625 -15.78125 C -11.75 -16.800781 -11.253906 -17.898438 -10.078125 -19.078125 C -9.972656 -19.179688 -9.859375 -19.289062 -9.734375 -19.40625 C -9.609375 -19.519531 -9.46875 -19.644531 -9.3125 -19.78125 L -7.703125 -18.171875 C -7.898438 -17.992188 -8.039062 -17.867188 -8.125 -17.796875 C -8.207031 -17.722656 -8.285156 -17.648438 -8.359375 -17.578125 C -8.890625 -17.046875 -9.066406 -16.582031 -8.890625 -16.1875 C -8.722656 -15.800781 -8.070312 -15.039062 -6.9375 -13.90625 L -5.1875 -15.65625 L -3.796875 -14.265625 L -5.5625 -12.5 L 3.46875 -3.46875 L 1.734375 -1.734375 L -7.296875 -10.765625 L -8.75 -9.3125 L -10.140625 -10.703125 L -8.6875 -12.15625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph9-2">
+<path style="stroke:none;" d="M -10.1875 -10.78125 L -7.90625 -13.0625 L -1.8125 -11.78125 L -3.078125 -17.890625 L -0.859375 -19.984375 L 0.65625 -11.40625 L 9.71875 -9.71875 L 7.46875 -7.46875 L 0.921875 -8.796875 L 2.34375 -2.34375 L 0.109375 -0.109375 L -1.578125 -9.171875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph9-3">
+<path style="stroke:none;" d="M -5.4375 -16.125 C -4.257812 -17.300781 -3.015625 -17.972656 -1.703125 -18.140625 C -0.390625 -18.304688 1.039062 -17.757812 2.59375 -16.5 L 0.875 -14.78125 C 0.125 -15.320312 -0.644531 -15.617188 -1.4375 -15.671875 C -2.238281 -15.734375 -3.046875 -15.359375 -3.859375 -14.546875 C -4.992188 -13.410156 -5.253906 -12.054688 -4.640625 -10.484375 C -4.242188 -9.460938 -3.519531 -8.425781 -2.46875 -7.375 C -1.425781 -6.332031 -0.320312 -5.675781 0.84375 -5.40625 C 2.007812 -5.132812 3.066406 -5.472656 4.015625 -6.421875 C 4.742188 -7.148438 5.097656 -7.953125 5.078125 -8.828125 C 5.054688 -9.703125 4.734375 -10.609375 4.109375 -11.546875 L 5.828125 -13.265625 C 7.035156 -11.679688 7.566406 -10.175781 7.421875 -8.75 C 7.273438 -7.320312 6.59375 -6 5.375 -4.78125 C 4.007812 -3.414062 2.414062 -2.820312 0.59375 -3 C -1.21875 -3.1875 -2.875 -4.03125 -4.375 -5.53125 C -6.21875 -7.375 -7.203125 -9.253906 -7.328125 -11.171875 C -7.453125 -13.085938 -6.820312 -14.738281 -5.4375 -16.125 Z M -5.671875 -15.796875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph9-4">
+<path style="stroke:none;" d="M -8.328125 -12.640625 L 3.015625 -6.890625 L -2.609375 -18.359375 L -0.671875 -20.296875 L 5.859375 -5.859375 L 3.984375 -3.984375 L -10.375 -10.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph9-5">
+<path style="stroke:none;" d="M -13.125 -15.625 L -11.421875 -17.328125 L -3.078125 -8.984375 L -3.015625 -17.953125 L -0.765625 -20.203125 L -0.84375 -12.25 L 9.9375 -9.9375 L 7.6875 -7.6875 L -0.859375 -9.703125 L -0.984375 -6.890625 L 2.953125 -2.953125 L 1.25 -1.25 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph10-0">
+<path style="stroke:none;" d="M 5.6875 3.1875 L -16.421875 -18.921875 L -3.890625 -31.453125 L 18.21875 -9.34375 Z M 5.6875 0.375 L 15.421875 -9.359375 L -3.875 -28.65625 L -13.609375 -18.921875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph10-1">
+<path style="stroke:none;" d="M -10.453125 -24.796875 C -10.566406 -22.160156 -10.09375 -19.71875 -9.03125 -17.46875 C -7.96875 -15.21875 -6.046875 -12.703125 -3.265625 -9.921875 C -0.472656 -7.128906 2.039062 -5.207031 4.28125 -4.15625 C 6.519531 -3.101562 8.953125 -2.640625 11.578125 -2.765625 L 11.59375 -1.75 C 8.601562 -1.28125 5.601562 -1.578125 2.59375 -2.640625 C -0.414062 -3.703125 -3.09375 -5.40625 -5.4375 -7.75 C -7.789062 -10.101562 -9.5 -12.789062 -10.5625 -15.8125 C -11.625 -18.832031 -11.925781 -21.832031 -11.46875 -24.8125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph10-2">
+<path style="stroke:none;" d="M -16.453125 -18.796875 L -16.484375 -19.796875 C -13.492188 -20.265625 -10.484375 -19.960938 -7.453125 -18.890625 C -4.429688 -17.828125 -1.75 -16.125 0.59375 -13.78125 C 2.9375 -11.4375 4.632812 -8.753906 5.6875 -5.734375 C 6.75 -2.722656 7.046875 0.273438 6.578125 3.265625 L 5.578125 3.234375 C 5.734375 0.597656 5.28125 -1.832031 4.21875 -4.0625 C 3.15625 -6.289062 1.222656 -8.804688 -1.578125 -11.609375 C -4.390625 -14.421875 -6.910156 -16.359375 -9.140625 -17.421875 C -11.367188 -18.484375 -13.804688 -18.941406 -16.453125 -18.796875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph10-3">
+<path style="stroke:none;" d="M -0.625 -31.59375 L 2.984375 -28.734375 L 1.890625 -27.640625 C -0.398438 -28.867188 -2.3125 -29.359375 -3.84375 -29.109375 C -5.382812 -28.867188 -7.125 -27.78125 -9.0625 -25.84375 L -12.359375 -22.546875 L 6.3125 -19.65625 L 7.5625 -1.15625 L 12.234375 -5.828125 C 14.265625 -7.859375 15.441406 -9.554688 15.765625 -10.921875 C 16.085938 -12.285156 15.816406 -13.960938 14.953125 -15.953125 L 16.0625 -17.0625 L 18.5625 -13.0625 L 18.6875 -12.8125 C 19.957031 -10.789062 19.859375 -9.046875 18.390625 -7.578125 L 6.3125 4.5 L 4.875 -16.40625 L -17.40625 -19.90625 L -5.890625 -31.421875 C -4.785156 -32.523438 -3.96875 -33.09375 -3.4375 -33.125 C -2.914062 -33.164062 -1.976562 -32.65625 -0.625 -31.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph11-0">
+<path style="stroke:none;" d="M 4.546875 2.546875 L -13.125 -15.125 L -3.109375 -25.140625 L 14.5625 -7.46875 Z M 4.5625 0.3125 L 12.34375 -7.46875 L -3.09375 -22.90625 L -10.875 -15.125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph11-1">
+<path style="stroke:none;" d="M 7.421875 -12.890625 L -1.875 -3.59375 L -3.234375 -4.953125 L 6.0625 -14.25 Z M 4.78125 -15.53125 L -4.515625 -6.234375 L -5.875 -7.59375 L 3.421875 -16.890625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph11-2">
+<path style="stroke:none;" d="M 0.796875 -11.609375 L 4.734375 -15.546875 L 6.078125 -14.203125 L 2.140625 -10.265625 L 6.203125 -6.203125 L 4.84375 -4.84375 L 0.78125 -8.90625 L -3.171875 -4.953125 L -4.515625 -6.296875 L -0.5625 -10.25 L -4.625 -14.3125 L -3.265625 -15.671875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph12-0">
+<path style="stroke:none;" d="M 0.453125 -0.453125 L -9.609375 -10.515625 L -1.625 -18.5 L 8.4375 -8.4375 Z M 5.921875 -8.453125 L -1.625 -16 L -7.09375 -10.53125 L 0.453125 -2.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph12-1">
+<path style="stroke:none;" d="M -6.390625 -8.203125 L -5.140625 -9.453125 L 2.15625 -2.15625 L 0.90625 -0.90625 Z M -9.15625 -10.96875 L -7.90625 -12.21875 L -6.5 -10.8125 L -7.75 -9.5625 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 223 14.398438 L 223 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 223.933594 152 L 223.933594 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 223.933594 115 L 223.933594 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 223.933594 77 L 223.933594 79 L 54.019531 79 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 223.933594 40 L 223.933594 41 L 54.019531 41 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 80 14.398438 L 82 14.398438 L 82 180 L 80 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 119 14.398438 L 120 14.398438 L 120 180 L 119 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 157 14.398438 L 158 14.398438 L 158 180 L 157 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 195 14.398438 L 197 14.398438 L 197 180 L 195 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 223.933594 171 L 223.933594 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 223.933594 133 L 223.933594 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 96 L 223.933594 96 L 223.933594 98 L 54.019531 98 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 58 L 223.933594 58 L 223.933594 60 L 54.019531 60 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 223.933594 21 L 223.933594 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 61 14.398438 L 63 14.398438 L 63 180 L 61 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 99 14.398438 L 101 14.398438 L 101 180 L 99 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 137 14.398438 L 140 14.398438 L 140 180 L 137 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 176 14.398438 L 178 14.398438 L 178 180 L 176 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 214 14.398438 L 216 14.398438 L 216 180 L 214 180 Z "/>
+</clipPath>
+<clipPath id="clip20">
+ <path d="M 237.332031 0 L 475 0 L 475 216 L 237.332031 216 Z "/>
+</clipPath>
+<clipPath id="clip21">
+ <path d="M 237.332031 0 L 475.664062 0 L 475.664062 217 L 237.332031 217 Z "/>
+</clipPath>
+<clipPath id="clip22">
+ <path d="M 291.351562 14.398438 L 461 14.398438 L 461 180 L 291.351562 180 Z "/>
+</clipPath>
+<clipPath id="clip23">
+ <path d="M 291.351562 154 L 461 154 L 461 156 L 291.351562 156 Z "/>
+</clipPath>
+<clipPath id="clip24">
+ <path d="M 291.351562 116 L 461 116 L 461 118 L 291.351562 118 Z "/>
+</clipPath>
+<clipPath id="clip25">
+ <path d="M 291.351562 78 L 461 78 L 461 80 L 291.351562 80 Z "/>
+</clipPath>
+<clipPath id="clip26">
+ <path d="M 291.351562 40 L 461 40 L 461 42 L 291.351562 42 Z "/>
+</clipPath>
+<clipPath id="clip27">
+ <path d="M 317 14.398438 L 319 14.398438 L 319 180 L 317 180 Z "/>
+</clipPath>
+<clipPath id="clip28">
+ <path d="M 356 14.398438 L 357 14.398438 L 357 180 L 356 180 Z "/>
+</clipPath>
+<clipPath id="clip29">
+ <path d="M 394 14.398438 L 396 14.398438 L 396 180 L 394 180 Z "/>
+</clipPath>
+<clipPath id="clip30">
+ <path d="M 433 14.398438 L 434 14.398438 L 434 180 L 433 180 Z "/>
+</clipPath>
+<clipPath id="clip31">
+ <path d="M 291.351562 173 L 461 173 L 461 175 L 291.351562 175 Z "/>
+</clipPath>
+<clipPath id="clip32">
+ <path d="M 291.351562 135 L 461 135 L 461 137 L 291.351562 137 Z "/>
+</clipPath>
+<clipPath id="clip33">
+ <path d="M 291.351562 97 L 461 97 L 461 99 L 291.351562 99 Z "/>
+</clipPath>
+<clipPath id="clip34">
+ <path d="M 291.351562 59 L 461 59 L 461 61 L 291.351562 61 Z "/>
+</clipPath>
+<clipPath id="clip35">
+ <path d="M 291.351562 21 L 461 21 L 461 23 L 291.351562 23 Z "/>
+</clipPath>
+<clipPath id="clip36">
+ <path d="M 298 14.398438 L 300 14.398438 L 300 180 L 298 180 Z "/>
+</clipPath>
+<clipPath id="clip37">
+ <path d="M 336 14.398438 L 338 14.398438 L 338 180 L 336 180 Z "/>
+</clipPath>
+<clipPath id="clip38">
+ <path d="M 375 14.398438 L 377 14.398438 L 377 180 L 375 180 Z "/>
+</clipPath>
+<clipPath id="clip39">
+ <path d="M 413 14.398438 L 415 14.398438 L 415 180 L 413 180 Z "/>
+</clipPath>
+<clipPath id="clip40">
+ <path d="M 452 14.398438 L 454 14.398438 L 454 180 L 452 180 Z "/>
+</clipPath>
+<clipPath id="clip41">
+ <path d="M 474.667969 0 L 712 0 L 712 216 L 474.667969 216 Z "/>
+</clipPath>
+<clipPath id="clip42">
+ <path d="M 474.667969 0 L 712 0 L 712 217 L 474.667969 217 Z "/>
+</clipPath>
+<clipPath id="clip43">
+ <path d="M 528.683594 14.398438 L 698 14.398438 L 698 180 L 528.683594 180 Z "/>
+</clipPath>
+<clipPath id="clip44">
+ <path d="M 528.683594 152 L 698 152 L 698 154 L 528.683594 154 Z "/>
+</clipPath>
+<clipPath id="clip45">
+ <path d="M 528.683594 115 L 698 115 L 698 116 L 528.683594 116 Z "/>
+</clipPath>
+<clipPath id="clip46">
+ <path d="M 528.683594 77 L 698 77 L 698 79 L 528.683594 79 Z "/>
+</clipPath>
+<clipPath id="clip47">
+ <path d="M 528.683594 40 L 698 40 L 698 41 L 528.683594 41 Z "/>
+</clipPath>
+<clipPath id="clip48">
+ <path d="M 555 14.398438 L 556 14.398438 L 556 180 L 555 180 Z "/>
+</clipPath>
+<clipPath id="clip49">
+ <path d="M 593 14.398438 L 595 14.398438 L 595 180 L 593 180 Z "/>
+</clipPath>
+<clipPath id="clip50">
+ <path d="M 632 14.398438 L 633 14.398438 L 633 180 L 632 180 Z "/>
+</clipPath>
+<clipPath id="clip51">
+ <path d="M 670 14.398438 L 671 14.398438 L 671 180 L 670 180 Z "/>
+</clipPath>
+<clipPath id="clip52">
+ <path d="M 528.683594 171 L 698.597656 171 L 698.597656 173 L 528.683594 173 Z "/>
+</clipPath>
+<clipPath id="clip53">
+ <path d="M 528.683594 133 L 698.597656 133 L 698.597656 135 L 528.683594 135 Z "/>
+</clipPath>
+<clipPath id="clip54">
+ <path d="M 528.683594 96 L 698.597656 96 L 698.597656 98 L 528.683594 98 Z "/>
+</clipPath>
+<clipPath id="clip55">
+ <path d="M 528.683594 58 L 698.597656 58 L 698.597656 60 L 528.683594 60 Z "/>
+</clipPath>
+<clipPath id="clip56">
+ <path d="M 528.683594 21 L 698.597656 21 L 698.597656 23 L 528.683594 23 Z "/>
+</clipPath>
+<clipPath id="clip57">
+ <path d="M 535 14.398438 L 537 14.398438 L 537 180 L 535 180 Z "/>
+</clipPath>
+<clipPath id="clip58">
+ <path d="M 574 14.398438 L 576 14.398438 L 576 180 L 574 180 Z "/>
+</clipPath>
+<clipPath id="clip59">
+ <path d="M 612 14.398438 L 614 14.398438 L 614 180 L 612 180 Z "/>
+</clipPath>
+<clipPath id="clip60">
+ <path d="M 651 14.398438 L 653 14.398438 L 653 180 L 651 180 Z "/>
+</clipPath>
+<clipPath id="clip61">
+ <path d="M 689 14.398438 L 691 14.398438 L 691 180 L 689 180 Z "/>
+</clipPath>
+<clipPath id="clip62">
+ <path d="M 0 216 L 238 216 L 238 433 L 0 433 Z "/>
+</clipPath>
+<clipPath id="clip63">
+ <path d="M 54.019531 230.398438 L 223 230.398438 L 223 396 L 54.019531 396 Z "/>
+</clipPath>
+<clipPath id="clip64">
+ <path d="M 54.019531 368 L 223.933594 368 L 223.933594 370 L 54.019531 370 Z "/>
+</clipPath>
+<clipPath id="clip65">
+ <path d="M 54.019531 331 L 223.933594 331 L 223.933594 332 L 54.019531 332 Z "/>
+</clipPath>
+<clipPath id="clip66">
+ <path d="M 54.019531 293 L 223.933594 293 L 223.933594 295 L 54.019531 295 Z "/>
+</clipPath>
+<clipPath id="clip67">
+ <path d="M 54.019531 256 L 223.933594 256 L 223.933594 257 L 54.019531 257 Z "/>
+</clipPath>
+<clipPath id="clip68">
+ <path d="M 80 230.398438 L 82 230.398438 L 82 396 L 80 396 Z "/>
+</clipPath>
+<clipPath id="clip69">
+ <path d="M 119 230.398438 L 120 230.398438 L 120 396 L 119 396 Z "/>
+</clipPath>
+<clipPath id="clip70">
+ <path d="M 157 230.398438 L 158 230.398438 L 158 396 L 157 396 Z "/>
+</clipPath>
+<clipPath id="clip71">
+ <path d="M 195 230.398438 L 197 230.398438 L 197 396 L 195 396 Z "/>
+</clipPath>
+<clipPath id="clip72">
+ <path d="M 54.019531 387 L 223.933594 387 L 223.933594 389 L 54.019531 389 Z "/>
+</clipPath>
+<clipPath id="clip73">
+ <path d="M 54.019531 349 L 223.933594 349 L 223.933594 351 L 54.019531 351 Z "/>
+</clipPath>
+<clipPath id="clip74">
+ <path d="M 54.019531 312 L 223.933594 312 L 223.933594 314 L 54.019531 314 Z "/>
+</clipPath>
+<clipPath id="clip75">
+ <path d="M 54.019531 274 L 223.933594 274 L 223.933594 276 L 54.019531 276 Z "/>
+</clipPath>
+<clipPath id="clip76">
+ <path d="M 54.019531 237 L 223.933594 237 L 223.933594 239 L 54.019531 239 Z "/>
+</clipPath>
+<clipPath id="clip77">
+ <path d="M 61 230.398438 L 63 230.398438 L 63 396 L 61 396 Z "/>
+</clipPath>
+<clipPath id="clip78">
+ <path d="M 99 230.398438 L 101 230.398438 L 101 396 L 99 396 Z "/>
+</clipPath>
+<clipPath id="clip79">
+ <path d="M 137 230.398438 L 140 230.398438 L 140 396 L 137 396 Z "/>
+</clipPath>
+<clipPath id="clip80">
+ <path d="M 176 230.398438 L 178 230.398438 L 178 396 L 176 396 Z "/>
+</clipPath>
+<clipPath id="clip81">
+ <path d="M 214 230.398438 L 216 230.398438 L 216 396 L 214 396 Z "/>
+</clipPath>
+<clipPath id="clip82">
+ <path d="M 237.332031 216 L 475 216 L 475 432 L 237.332031 432 Z "/>
+</clipPath>
+<clipPath id="clip83">
+ <path d="M 237.332031 216 L 475.664062 216 L 475.664062 433 L 237.332031 433 Z "/>
+</clipPath>
+<clipPath id="clip84">
+ <path d="M 291.351562 230.398438 L 461 230.398438 L 461 396 L 291.351562 396 Z "/>
+</clipPath>
+<clipPath id="clip85">
+ <path d="M 291.351562 368 L 461 368 L 461 370 L 291.351562 370 Z "/>
+</clipPath>
+<clipPath id="clip86">
+ <path d="M 291.351562 331 L 461 331 L 461 332 L 291.351562 332 Z "/>
+</clipPath>
+<clipPath id="clip87">
+ <path d="M 291.351562 293 L 461 293 L 461 295 L 291.351562 295 Z "/>
+</clipPath>
+<clipPath id="clip88">
+ <path d="M 291.351562 256 L 461 256 L 461 257 L 291.351562 257 Z "/>
+</clipPath>
+<clipPath id="clip89">
+ <path d="M 317 230.398438 L 319 230.398438 L 319 396 L 317 396 Z "/>
+</clipPath>
+<clipPath id="clip90">
+ <path d="M 356 230.398438 L 357 230.398438 L 357 396 L 356 396 Z "/>
+</clipPath>
+<clipPath id="clip91">
+ <path d="M 394 230.398438 L 396 230.398438 L 396 396 L 394 396 Z "/>
+</clipPath>
+<clipPath id="clip92">
+ <path d="M 433 230.398438 L 434 230.398438 L 434 396 L 433 396 Z "/>
+</clipPath>
+<clipPath id="clip93">
+ <path d="M 291.351562 387 L 461 387 L 461 389 L 291.351562 389 Z "/>
+</clipPath>
+<clipPath id="clip94">
+ <path d="M 291.351562 349 L 461 349 L 461 351 L 291.351562 351 Z "/>
+</clipPath>
+<clipPath id="clip95">
+ <path d="M 291.351562 312 L 461 312 L 461 314 L 291.351562 314 Z "/>
+</clipPath>
+<clipPath id="clip96">
+ <path d="M 291.351562 274 L 461 274 L 461 276 L 291.351562 276 Z "/>
+</clipPath>
+<clipPath id="clip97">
+ <path d="M 291.351562 237 L 461 237 L 461 239 L 291.351562 239 Z "/>
+</clipPath>
+<clipPath id="clip98">
+ <path d="M 298 230.398438 L 300 230.398438 L 300 396 L 298 396 Z "/>
+</clipPath>
+<clipPath id="clip99">
+ <path d="M 336 230.398438 L 338 230.398438 L 338 396 L 336 396 Z "/>
+</clipPath>
+<clipPath id="clip100">
+ <path d="M 375 230.398438 L 377 230.398438 L 377 396 L 375 396 Z "/>
+</clipPath>
+<clipPath id="clip101">
+ <path d="M 413 230.398438 L 415 230.398438 L 415 396 L 413 396 Z "/>
+</clipPath>
+<clipPath id="clip102">
+ <path d="M 452 230.398438 L 454 230.398438 L 454 396 L 452 396 Z "/>
+</clipPath>
+<clipPath id="clip103">
+ <path d="M 474.667969 216 L 712 216 L 712 432 L 474.667969 432 Z "/>
+</clipPath>
+<clipPath id="clip104">
+ <path d="M 474.667969 216 L 712 216 L 712 433 L 474.667969 433 Z "/>
+</clipPath>
+<clipPath id="clip105">
+ <path d="M 528.683594 230.398438 L 698 230.398438 L 698 396 L 528.683594 396 Z "/>
+</clipPath>
+<clipPath id="clip106">
+ <path d="M 528.683594 369 L 698 369 L 698 370 L 528.683594 370 Z "/>
+</clipPath>
+<clipPath id="clip107">
+ <path d="M 528.683594 331 L 698 331 L 698 332 L 528.683594 332 Z "/>
+</clipPath>
+<clipPath id="clip108">
+ <path d="M 528.683594 292 L 698 292 L 698 294 L 528.683594 294 Z "/>
+</clipPath>
+<clipPath id="clip109">
+ <path d="M 528.683594 254 L 698 254 L 698 256 L 528.683594 256 Z "/>
+</clipPath>
+<clipPath id="clip110">
+ <path d="M 555 230.398438 L 556 230.398438 L 556 396 L 555 396 Z "/>
+</clipPath>
+<clipPath id="clip111">
+ <path d="M 593 230.398438 L 595 230.398438 L 595 396 L 593 396 Z "/>
+</clipPath>
+<clipPath id="clip112">
+ <path d="M 632 230.398438 L 633 230.398438 L 633 396 L 632 396 Z "/>
+</clipPath>
+<clipPath id="clip113">
+ <path d="M 670 230.398438 L 671 230.398438 L 671 396 L 670 396 Z "/>
+</clipPath>
+<clipPath id="clip114">
+ <path d="M 528.683594 388 L 698.597656 388 L 698.597656 390 L 528.683594 390 Z "/>
+</clipPath>
+<clipPath id="clip115">
+ <path d="M 528.683594 349 L 698.597656 349 L 698.597656 351 L 528.683594 351 Z "/>
+</clipPath>
+<clipPath id="clip116">
+ <path d="M 528.683594 311 L 698.597656 311 L 698.597656 313 L 528.683594 313 Z "/>
+</clipPath>
+<clipPath id="clip117">
+ <path d="M 528.683594 273 L 698.597656 273 L 698.597656 275 L 528.683594 275 Z "/>
+</clipPath>
+<clipPath id="clip118">
+ <path d="M 528.683594 235 L 698.597656 235 L 698.597656 237 L 528.683594 237 Z "/>
+</clipPath>
+<clipPath id="clip119">
+ <path d="M 535 230.398438 L 537 230.398438 L 537 396 L 535 396 Z "/>
+</clipPath>
+<clipPath id="clip120">
+ <path d="M 574 230.398438 L 576 230.398438 L 576 396 L 574 396 Z "/>
+</clipPath>
+<clipPath id="clip121">
+ <path d="M 612 230.398438 L 614 230.398438 L 614 396 L 612 396 Z "/>
+</clipPath>
+<clipPath id="clip122">
+ <path d="M 651 230.398438 L 653 230.398438 L 653 396 L 651 396 Z "/>
+</clipPath>
+<clipPath id="clip123">
+ <path d="M 689 230.398438 L 691 230.398438 L 691 396 L 689 396 Z "/>
+</clipPath>
+<clipPath id="clip124">
+ <path d="M 0 432 L 238 432 L 238 649 L 0 649 Z "/>
+</clipPath>
+<clipPath id="clip125">
+ <path d="M 54.019531 446.398438 L 223 446.398438 L 223 612 L 54.019531 612 Z "/>
+</clipPath>
+<clipPath id="clip126">
+ <path d="M 54.019531 584 L 223.933594 584 L 223.933594 586 L 54.019531 586 Z "/>
+</clipPath>
+<clipPath id="clip127">
+ <path d="M 54.019531 547 L 223.933594 547 L 223.933594 548 L 54.019531 548 Z "/>
+</clipPath>
+<clipPath id="clip128">
+ <path d="M 54.019531 509 L 223.933594 509 L 223.933594 511 L 54.019531 511 Z "/>
+</clipPath>
+<clipPath id="clip129">
+ <path d="M 54.019531 472 L 223.933594 472 L 223.933594 473 L 54.019531 473 Z "/>
+</clipPath>
+<clipPath id="clip130">
+ <path d="M 80 446.398438 L 82 446.398438 L 82 612 L 80 612 Z "/>
+</clipPath>
+<clipPath id="clip131">
+ <path d="M 119 446.398438 L 120 446.398438 L 120 612 L 119 612 Z "/>
+</clipPath>
+<clipPath id="clip132">
+ <path d="M 157 446.398438 L 158 446.398438 L 158 612 L 157 612 Z "/>
+</clipPath>
+<clipPath id="clip133">
+ <path d="M 195 446.398438 L 197 446.398438 L 197 612 L 195 612 Z "/>
+</clipPath>
+<clipPath id="clip134">
+ <path d="M 54.019531 603 L 223.933594 603 L 223.933594 605 L 54.019531 605 Z "/>
+</clipPath>
+<clipPath id="clip135">
+ <path d="M 54.019531 565 L 223.933594 565 L 223.933594 567 L 54.019531 567 Z "/>
+</clipPath>
+<clipPath id="clip136">
+ <path d="M 54.019531 528 L 223.933594 528 L 223.933594 530 L 54.019531 530 Z "/>
+</clipPath>
+<clipPath id="clip137">
+ <path d="M 54.019531 490 L 223.933594 490 L 223.933594 492 L 54.019531 492 Z "/>
+</clipPath>
+<clipPath id="clip138">
+ <path d="M 54.019531 453 L 223.933594 453 L 223.933594 455 L 54.019531 455 Z "/>
+</clipPath>
+<clipPath id="clip139">
+ <path d="M 61 446.398438 L 63 446.398438 L 63 612 L 61 612 Z "/>
+</clipPath>
+<clipPath id="clip140">
+ <path d="M 99 446.398438 L 101 446.398438 L 101 612 L 99 612 Z "/>
+</clipPath>
+<clipPath id="clip141">
+ <path d="M 137 446.398438 L 140 446.398438 L 140 612 L 137 612 Z "/>
+</clipPath>
+<clipPath id="clip142">
+ <path d="M 176 446.398438 L 178 446.398438 L 178 612 L 176 612 Z "/>
+</clipPath>
+<clipPath id="clip143">
+ <path d="M 214 446.398438 L 216 446.398438 L 216 612 L 214 612 Z "/>
+</clipPath>
+<clipPath id="clip144">
+ <path d="M 237.332031 432 L 475 432 L 475 648 L 237.332031 648 Z "/>
+</clipPath>
+<clipPath id="clip145">
+ <path d="M 237.332031 432 L 475.664062 432 L 475.664062 649 L 237.332031 649 Z "/>
+</clipPath>
+<clipPath id="clip146">
+ <path d="M 291.351562 446.398438 L 461 446.398438 L 461 612 L 291.351562 612 Z "/>
+</clipPath>
+<clipPath id="clip147">
+ <path d="M 291.351562 590 L 461 590 L 461 592 L 291.351562 592 Z "/>
+</clipPath>
+<clipPath id="clip148">
+ <path d="M 291.351562 551 L 461 551 L 461 552 L 291.351562 552 Z "/>
+</clipPath>
+<clipPath id="clip149">
+ <path d="M 291.351562 512 L 461 512 L 461 513 L 291.351562 513 Z "/>
+</clipPath>
+<clipPath id="clip150">
+ <path d="M 291.351562 473 L 461 473 L 461 474 L 291.351562 474 Z "/>
+</clipPath>
+<clipPath id="clip151">
+ <path d="M 317 446.398438 L 319 446.398438 L 319 612 L 317 612 Z "/>
+</clipPath>
+<clipPath id="clip152">
+ <path d="M 356 446.398438 L 357 446.398438 L 357 612 L 356 612 Z "/>
+</clipPath>
+<clipPath id="clip153">
+ <path d="M 394 446.398438 L 396 446.398438 L 396 612 L 394 612 Z "/>
+</clipPath>
+<clipPath id="clip154">
+ <path d="M 433 446.398438 L 434 446.398438 L 434 612 L 433 612 Z "/>
+</clipPath>
+<clipPath id="clip155">
+ <path d="M 291.351562 609 L 461 609 L 461 611 L 291.351562 611 Z "/>
+</clipPath>
+<clipPath id="clip156">
+ <path d="M 291.351562 570 L 461 570 L 461 572 L 291.351562 572 Z "/>
+</clipPath>
+<clipPath id="clip157">
+ <path d="M 291.351562 531 L 461 531 L 461 533 L 291.351562 533 Z "/>
+</clipPath>
+<clipPath id="clip158">
+ <path d="M 291.351562 492 L 461 492 L 461 494 L 291.351562 494 Z "/>
+</clipPath>
+<clipPath id="clip159">
+ <path d="M 291.351562 453 L 461 453 L 461 455 L 291.351562 455 Z "/>
+</clipPath>
+<clipPath id="clip160">
+ <path d="M 298 446.398438 L 300 446.398438 L 300 612 L 298 612 Z "/>
+</clipPath>
+<clipPath id="clip161">
+ <path d="M 336 446.398438 L 338 446.398438 L 338 612 L 336 612 Z "/>
+</clipPath>
+<clipPath id="clip162">
+ <path d="M 375 446.398438 L 377 446.398438 L 377 612 L 375 612 Z "/>
+</clipPath>
+<clipPath id="clip163">
+ <path d="M 413 446.398438 L 415 446.398438 L 415 612 L 413 612 Z "/>
+</clipPath>
+<clipPath id="clip164">
+ <path d="M 452 446.398438 L 454 446.398438 L 454 612 L 452 612 Z "/>
+</clipPath>
+<clipPath id="clip165">
+ <path d="M 474.667969 432 L 712 432 L 712 648 L 474.667969 648 Z "/>
+</clipPath>
+<clipPath id="clip166">
+ <path d="M 474.667969 432 L 712 432 L 712 649 L 474.667969 649 Z "/>
+</clipPath>
+<clipPath id="clip167">
+ <path d="M 528.683594 446.398438 L 698 446.398438 L 698 612 L 528.683594 612 Z "/>
+</clipPath>
+<clipPath id="clip168">
+ <path d="M 528.683594 598 L 698 598 L 698 600 L 528.683594 600 Z "/>
+</clipPath>
+<clipPath id="clip169">
+ <path d="M 528.683594 560 L 698 560 L 698 561 L 528.683594 561 Z "/>
+</clipPath>
+<clipPath id="clip170">
+ <path d="M 528.683594 521 L 698 521 L 698 523 L 528.683594 523 Z "/>
+</clipPath>
+<clipPath id="clip171">
+ <path d="M 528.683594 483 L 698 483 L 698 484 L 528.683594 484 Z "/>
+</clipPath>
+<clipPath id="clip172">
+ <path d="M 555 446.398438 L 556 446.398438 L 556 612 L 555 612 Z "/>
+</clipPath>
+<clipPath id="clip173">
+ <path d="M 593 446.398438 L 595 446.398438 L 595 612 L 593 612 Z "/>
+</clipPath>
+<clipPath id="clip174">
+ <path d="M 632 446.398438 L 633 446.398438 L 633 612 L 632 612 Z "/>
+</clipPath>
+<clipPath id="clip175">
+ <path d="M 670 446.398438 L 671 446.398438 L 671 612 L 670 612 Z "/>
+</clipPath>
+<clipPath id="clip176">
+ <path d="M 528.683594 579 L 698.597656 579 L 698.597656 581 L 528.683594 581 Z "/>
+</clipPath>
+<clipPath id="clip177">
+ <path d="M 528.683594 540 L 698.597656 540 L 698.597656 542 L 528.683594 542 Z "/>
+</clipPath>
+<clipPath id="clip178">
+ <path d="M 528.683594 502 L 698.597656 502 L 698.597656 504 L 528.683594 504 Z "/>
+</clipPath>
+<clipPath id="clip179">
+ <path d="M 528.683594 463 L 698.597656 463 L 698.597656 465 L 528.683594 465 Z "/>
+</clipPath>
+<clipPath id="clip180">
+ <path d="M 535 446.398438 L 537 446.398438 L 537 612 L 535 612 Z "/>
+</clipPath>
+<clipPath id="clip181">
+ <path d="M 574 446.398438 L 576 446.398438 L 576 612 L 574 612 Z "/>
+</clipPath>
+<clipPath id="clip182">
+ <path d="M 612 446.398438 L 614 446.398438 L 614 612 L 612 612 Z "/>
+</clipPath>
+<clipPath id="clip183">
+ <path d="M 651 446.398438 L 653 446.398438 L 653 612 L 651 612 Z "/>
+</clipPath>
+<clipPath id="clip184">
+ <path d="M 689 446.398438 L 691 446.398438 L 691 612 L 689 612 Z "/>
+</clipPath>
+<clipPath id="clip185">
+ <path d="M 0 648 L 238 648 L 238 865 L 0 865 Z "/>
+</clipPath>
+<clipPath id="clip186">
+ <path d="M 54.019531 662.398438 L 223 662.398438 L 223 828 L 54.019531 828 Z "/>
+</clipPath>
+<clipPath id="clip187">
+ <path d="M 54.019531 800 L 223.933594 800 L 223.933594 801 L 54.019531 801 Z "/>
+</clipPath>
+<clipPath id="clip188">
+ <path d="M 54.019531 762 L 223.933594 762 L 223.933594 763 L 54.019531 763 Z "/>
+</clipPath>
+<clipPath id="clip189">
+ <path d="M 54.019531 724 L 223.933594 724 L 223.933594 725 L 54.019531 725 Z "/>
+</clipPath>
+<clipPath id="clip190">
+ <path d="M 54.019531 686 L 223.933594 686 L 223.933594 687 L 54.019531 687 Z "/>
+</clipPath>
+<clipPath id="clip191">
+ <path d="M 80 662.398438 L 82 662.398438 L 82 828 L 80 828 Z "/>
+</clipPath>
+<clipPath id="clip192">
+ <path d="M 119 662.398438 L 120 662.398438 L 120 828 L 119 828 Z "/>
+</clipPath>
+<clipPath id="clip193">
+ <path d="M 157 662.398438 L 158 662.398438 L 158 828 L 157 828 Z "/>
+</clipPath>
+<clipPath id="clip194">
+ <path d="M 195 662.398438 L 197 662.398438 L 197 828 L 195 828 Z "/>
+</clipPath>
+<clipPath id="clip195">
+ <path d="M 54.019531 819 L 223.933594 819 L 223.933594 821 L 54.019531 821 Z "/>
+</clipPath>
+<clipPath id="clip196">
+ <path d="M 54.019531 780 L 223.933594 780 L 223.933594 783 L 54.019531 783 Z "/>
+</clipPath>
+<clipPath id="clip197">
+ <path d="M 54.019531 742 L 223.933594 742 L 223.933594 744 L 54.019531 744 Z "/>
+</clipPath>
+<clipPath id="clip198">
+ <path d="M 54.019531 704 L 223.933594 704 L 223.933594 706 L 54.019531 706 Z "/>
+</clipPath>
+<clipPath id="clip199">
+ <path d="M 54.019531 666 L 223.933594 666 L 223.933594 668 L 54.019531 668 Z "/>
+</clipPath>
+<clipPath id="clip200">
+ <path d="M 61 662.398438 L 63 662.398438 L 63 828 L 61 828 Z "/>
+</clipPath>
+<clipPath id="clip201">
+ <path d="M 99 662.398438 L 101 662.398438 L 101 828 L 99 828 Z "/>
+</clipPath>
+<clipPath id="clip202">
+ <path d="M 137 662.398438 L 140 662.398438 L 140 828 L 137 828 Z "/>
+</clipPath>
+<clipPath id="clip203">
+ <path d="M 176 662.398438 L 178 662.398438 L 178 828 L 176 828 Z "/>
+</clipPath>
+<clipPath id="clip204">
+ <path d="M 214 662.398438 L 216 662.398438 L 216 828 L 214 828 Z "/>
+</clipPath>
+<clipPath id="clip205">
+ <path d="M 237.332031 648 L 475 648 L 475 864 L 237.332031 864 Z "/>
+</clipPath>
+<clipPath id="clip206">
+ <path d="M 237.332031 648 L 475.664062 648 L 475.664062 865 L 237.332031 865 Z "/>
+</clipPath>
+<clipPath id="clip207">
+ <path d="M 291.351562 662.398438 L 461 662.398438 L 461 828 L 291.351562 828 Z "/>
+</clipPath>
+<clipPath id="clip208">
+ <path d="M 291.351562 801 L 461 801 L 461 803 L 291.351562 803 Z "/>
+</clipPath>
+<clipPath id="clip209">
+ <path d="M 291.351562 762 L 461 762 L 461 764 L 291.351562 764 Z "/>
+</clipPath>
+<clipPath id="clip210">
+ <path d="M 291.351562 723 L 461 723 L 461 725 L 291.351562 725 Z "/>
+</clipPath>
+<clipPath id="clip211">
+ <path d="M 291.351562 684 L 461 684 L 461 686 L 291.351562 686 Z "/>
+</clipPath>
+<clipPath id="clip212">
+ <path d="M 317 662.398438 L 319 662.398438 L 319 828 L 317 828 Z "/>
+</clipPath>
+<clipPath id="clip213">
+ <path d="M 356 662.398438 L 357 662.398438 L 357 828 L 356 828 Z "/>
+</clipPath>
+<clipPath id="clip214">
+ <path d="M 394 662.398438 L 396 662.398438 L 396 828 L 394 828 Z "/>
+</clipPath>
+<clipPath id="clip215">
+ <path d="M 433 662.398438 L 434 662.398438 L 434 828 L 433 828 Z "/>
+</clipPath>
+<clipPath id="clip216">
+ <path d="M 291.351562 821 L 461 821 L 461 823 L 291.351562 823 Z "/>
+</clipPath>
+<clipPath id="clip217">
+ <path d="M 291.351562 782 L 461 782 L 461 784 L 291.351562 784 Z "/>
+</clipPath>
+<clipPath id="clip218">
+ <path d="M 291.351562 743 L 461 743 L 461 745 L 291.351562 745 Z "/>
+</clipPath>
+<clipPath id="clip219">
+ <path d="M 291.351562 704 L 461 704 L 461 706 L 291.351562 706 Z "/>
+</clipPath>
+<clipPath id="clip220">
+ <path d="M 291.351562 665 L 461 665 L 461 667 L 291.351562 667 Z "/>
+</clipPath>
+<clipPath id="clip221">
+ <path d="M 298 662.398438 L 300 662.398438 L 300 828 L 298 828 Z "/>
+</clipPath>
+<clipPath id="clip222">
+ <path d="M 336 662.398438 L 338 662.398438 L 338 828 L 336 828 Z "/>
+</clipPath>
+<clipPath id="clip223">
+ <path d="M 375 662.398438 L 377 662.398438 L 377 828 L 375 828 Z "/>
+</clipPath>
+<clipPath id="clip224">
+ <path d="M 413 662.398438 L 415 662.398438 L 415 828 L 413 828 Z "/>
+</clipPath>
+<clipPath id="clip225">
+ <path d="M 452 662.398438 L 454 662.398438 L 454 828 L 452 828 Z "/>
+</clipPath>
+<clipPath id="clip226">
+ <path d="M 474.667969 648 L 712 648 L 712 864 L 474.667969 864 Z "/>
+</clipPath>
+<clipPath id="clip227">
+ <path d="M 474.667969 648 L 712 648 L 712 865 L 474.667969 865 Z "/>
+</clipPath>
+<clipPath id="clip228">
+ <path d="M 528.683594 662.398438 L 698 662.398438 L 698 828 L 528.683594 828 Z "/>
+</clipPath>
+<clipPath id="clip229">
+ <path d="M 528.683594 801 L 698 801 L 698 802 L 528.683594 802 Z "/>
+</clipPath>
+<clipPath id="clip230">
+ <path d="M 528.683594 763 L 698 763 L 698 764 L 528.683594 764 Z "/>
+</clipPath>
+<clipPath id="clip231">
+ <path d="M 528.683594 725 L 698 725 L 698 726 L 528.683594 726 Z "/>
+</clipPath>
+<clipPath id="clip232">
+ <path d="M 528.683594 687 L 698 687 L 698 688 L 528.683594 688 Z "/>
+</clipPath>
+<clipPath id="clip233">
+ <path d="M 555 662.398438 L 556 662.398438 L 556 828 L 555 828 Z "/>
+</clipPath>
+<clipPath id="clip234">
+ <path d="M 593 662.398438 L 595 662.398438 L 595 828 L 593 828 Z "/>
+</clipPath>
+<clipPath id="clip235">
+ <path d="M 632 662.398438 L 633 662.398438 L 633 828 L 632 828 Z "/>
+</clipPath>
+<clipPath id="clip236">
+ <path d="M 670 662.398438 L 671 662.398438 L 671 828 L 670 828 Z "/>
+</clipPath>
+<clipPath id="clip237">
+ <path d="M 528.683594 820 L 698.597656 820 L 698.597656 822 L 528.683594 822 Z "/>
+</clipPath>
+<clipPath id="clip238">
+ <path d="M 528.683594 781 L 698.597656 781 L 698.597656 784 L 528.683594 784 Z "/>
+</clipPath>
+<clipPath id="clip239">
+ <path d="M 528.683594 743 L 698.597656 743 L 698.597656 745 L 528.683594 745 Z "/>
+</clipPath>
+<clipPath id="clip240">
+ <path d="M 528.683594 705 L 698.597656 705 L 698.597656 707 L 528.683594 707 Z "/>
+</clipPath>
+<clipPath id="clip241">
+ <path d="M 528.683594 667 L 698.597656 667 L 698.597656 669 L 528.683594 669 Z "/>
+</clipPath>
+<clipPath id="clip242">
+ <path d="M 535 662.398438 L 537 662.398438 L 537 828 L 535 828 Z "/>
+</clipPath>
+<clipPath id="clip243">
+ <path d="M 574 662.398438 L 576 662.398438 L 576 828 L 574 828 Z "/>
+</clipPath>
+<clipPath id="clip244">
+ <path d="M 612 662.398438 L 614 662.398438 L 614 828 L 612 828 Z "/>
+</clipPath>
+<clipPath id="clip245">
+ <path d="M 651 662.398438 L 653 662.398438 L 653 828 L 651 828 Z "/>
+</clipPath>
+<clipPath id="clip246">
+ <path d="M 689 662.398438 L 691 662.398438 L 691 828 L 689 828 Z "/>
+</clipPath>
+<clipPath id="clip247">
+ <path d="M 0 864 L 238 864 L 238 1081 L 0 1081 Z "/>
+</clipPath>
+<clipPath id="clip248">
+ <path d="M 54.019531 878.398438 L 223 878.398438 L 223 1044 L 54.019531 1044 Z "/>
+</clipPath>
+<clipPath id="clip249">
+ <path d="M 54.019531 1016 L 223.933594 1016 L 223.933594 1018 L 54.019531 1018 Z "/>
+</clipPath>
+<clipPath id="clip250">
+ <path d="M 54.019531 979 L 223.933594 979 L 223.933594 980 L 54.019531 980 Z "/>
+</clipPath>
+<clipPath id="clip251">
+ <path d="M 54.019531 941 L 223.933594 941 L 223.933594 943 L 54.019531 943 Z "/>
+</clipPath>
+<clipPath id="clip252">
+ <path d="M 54.019531 904 L 223.933594 904 L 223.933594 905 L 54.019531 905 Z "/>
+</clipPath>
+<clipPath id="clip253">
+ <path d="M 80 878.398438 L 82 878.398438 L 82 1044 L 80 1044 Z "/>
+</clipPath>
+<clipPath id="clip254">
+ <path d="M 119 878.398438 L 120 878.398438 L 120 1044 L 119 1044 Z "/>
+</clipPath>
+<clipPath id="clip255">
+ <path d="M 157 878.398438 L 158 878.398438 L 158 1044 L 157 1044 Z "/>
+</clipPath>
+<clipPath id="clip256">
+ <path d="M 195 878.398438 L 197 878.398438 L 197 1044 L 195 1044 Z "/>
+</clipPath>
+<clipPath id="clip257">
+ <path d="M 54.019531 1035 L 223.933594 1035 L 223.933594 1037 L 54.019531 1037 Z "/>
+</clipPath>
+<clipPath id="clip258">
+ <path d="M 54.019531 997 L 223.933594 997 L 223.933594 999 L 54.019531 999 Z "/>
+</clipPath>
+<clipPath id="clip259">
+ <path d="M 54.019531 960 L 223.933594 960 L 223.933594 962 L 54.019531 962 Z "/>
+</clipPath>
+<clipPath id="clip260">
+ <path d="M 54.019531 922 L 223.933594 922 L 223.933594 924 L 54.019531 924 Z "/>
+</clipPath>
+<clipPath id="clip261">
+ <path d="M 54.019531 885 L 223.933594 885 L 223.933594 887 L 54.019531 887 Z "/>
+</clipPath>
+<clipPath id="clip262">
+ <path d="M 61 878.398438 L 63 878.398438 L 63 1044 L 61 1044 Z "/>
+</clipPath>
+<clipPath id="clip263">
+ <path d="M 99 878.398438 L 101 878.398438 L 101 1044 L 99 1044 Z "/>
+</clipPath>
+<clipPath id="clip264">
+ <path d="M 137 878.398438 L 140 878.398438 L 140 1044 L 137 1044 Z "/>
+</clipPath>
+<clipPath id="clip265">
+ <path d="M 176 878.398438 L 178 878.398438 L 178 1044 L 176 1044 Z "/>
+</clipPath>
+<clipPath id="clip266">
+ <path d="M 214 878.398438 L 216 878.398438 L 216 1044 L 214 1044 Z "/>
+</clipPath>
+<clipPath id="clip267">
+ <path d="M 237.332031 864 L 475 864 L 475 1080 L 237.332031 1080 Z "/>
+</clipPath>
+<clipPath id="clip268">
+ <path d="M 237.332031 864 L 475.664062 864 L 475.664062 1081 L 237.332031 1081 Z "/>
+</clipPath>
+<clipPath id="clip269">
+ <path d="M 291.351562 878.398438 L 461 878.398438 L 461 1044 L 291.351562 1044 Z "/>
+</clipPath>
+<clipPath id="clip270">
+ <path d="M 291.351562 1016 L 461 1016 L 461 1018 L 291.351562 1018 Z "/>
+</clipPath>
+<clipPath id="clip271">
+ <path d="M 291.351562 979 L 461 979 L 461 980 L 291.351562 980 Z "/>
+</clipPath>
+<clipPath id="clip272">
+ <path d="M 291.351562 941 L 461 941 L 461 943 L 291.351562 943 Z "/>
+</clipPath>
+<clipPath id="clip273">
+ <path d="M 291.351562 904 L 461 904 L 461 905 L 291.351562 905 Z "/>
+</clipPath>
+<clipPath id="clip274">
+ <path d="M 317 878.398438 L 319 878.398438 L 319 1044 L 317 1044 Z "/>
+</clipPath>
+<clipPath id="clip275">
+ <path d="M 356 878.398438 L 357 878.398438 L 357 1044 L 356 1044 Z "/>
+</clipPath>
+<clipPath id="clip276">
+ <path d="M 394 878.398438 L 396 878.398438 L 396 1044 L 394 1044 Z "/>
+</clipPath>
+<clipPath id="clip277">
+ <path d="M 433 878.398438 L 434 878.398438 L 434 1044 L 433 1044 Z "/>
+</clipPath>
+<clipPath id="clip278">
+ <path d="M 291.351562 1035 L 461 1035 L 461 1037 L 291.351562 1037 Z "/>
+</clipPath>
+<clipPath id="clip279">
+ <path d="M 291.351562 997 L 461 997 L 461 999 L 291.351562 999 Z "/>
+</clipPath>
+<clipPath id="clip280">
+ <path d="M 291.351562 960 L 461 960 L 461 962 L 291.351562 962 Z "/>
+</clipPath>
+<clipPath id="clip281">
+ <path d="M 291.351562 922 L 461 922 L 461 924 L 291.351562 924 Z "/>
+</clipPath>
+<clipPath id="clip282">
+ <path d="M 291.351562 885 L 461 885 L 461 887 L 291.351562 887 Z "/>
+</clipPath>
+<clipPath id="clip283">
+ <path d="M 298 878.398438 L 300 878.398438 L 300 1044 L 298 1044 Z "/>
+</clipPath>
+<clipPath id="clip284">
+ <path d="M 336 878.398438 L 338 878.398438 L 338 1044 L 336 1044 Z "/>
+</clipPath>
+<clipPath id="clip285">
+ <path d="M 375 878.398438 L 377 878.398438 L 377 1044 L 375 1044 Z "/>
+</clipPath>
+<clipPath id="clip286">
+ <path d="M 413 878.398438 L 415 878.398438 L 415 1044 L 413 1044 Z "/>
+</clipPath>
+<clipPath id="clip287">
+ <path d="M 452 878.398438 L 454 878.398438 L 454 1044 L 452 1044 Z "/>
+</clipPath>
+<clipPath id="clip288">
+ <path d="M 474.667969 864 L 712 864 L 712 1080 L 474.667969 1080 Z "/>
+</clipPath>
+<clipPath id="clip289">
+ <path d="M 474.667969 864 L 712 864 L 712 1081 L 474.667969 1081 Z "/>
+</clipPath>
+<clipPath id="clip290">
+ <path d="M 528.683594 878.398438 L 698 878.398438 L 698 1044 L 528.683594 1044 Z "/>
+</clipPath>
+<clipPath id="clip291">
+ <path d="M 528.683594 1016 L 698 1016 L 698 1018 L 528.683594 1018 Z "/>
+</clipPath>
+<clipPath id="clip292">
+ <path d="M 528.683594 979 L 698 979 L 698 980 L 528.683594 980 Z "/>
+</clipPath>
+<clipPath id="clip293">
+ <path d="M 528.683594 941 L 698 941 L 698 943 L 528.683594 943 Z "/>
+</clipPath>
+<clipPath id="clip294">
+ <path d="M 528.683594 904 L 698 904 L 698 905 L 528.683594 905 Z "/>
+</clipPath>
+<clipPath id="clip295">
+ <path d="M 555 878.398438 L 556 878.398438 L 556 1044 L 555 1044 Z "/>
+</clipPath>
+<clipPath id="clip296">
+ <path d="M 593 878.398438 L 595 878.398438 L 595 1044 L 593 1044 Z "/>
+</clipPath>
+<clipPath id="clip297">
+ <path d="M 632 878.398438 L 633 878.398438 L 633 1044 L 632 1044 Z "/>
+</clipPath>
+<clipPath id="clip298">
+ <path d="M 670 878.398438 L 671 878.398438 L 671 1044 L 670 1044 Z "/>
+</clipPath>
+<clipPath id="clip299">
+ <path d="M 528.683594 1035 L 698.597656 1035 L 698.597656 1037 L 528.683594 1037 Z "/>
+</clipPath>
+<clipPath id="clip300">
+ <path d="M 528.683594 997 L 698.597656 997 L 698.597656 999 L 528.683594 999 Z "/>
+</clipPath>
+<clipPath id="clip301">
+ <path d="M 528.683594 960 L 698.597656 960 L 698.597656 962 L 528.683594 962 Z "/>
+</clipPath>
+<clipPath id="clip302">
+ <path d="M 528.683594 922 L 698.597656 922 L 698.597656 924 L 528.683594 924 Z "/>
+</clipPath>
+<clipPath id="clip303">
+ <path d="M 528.683594 885 L 698.597656 885 L 698.597656 887 L 528.683594 887 Z "/>
+</clipPath>
+<clipPath id="clip304">
+ <path d="M 535 878.398438 L 537 878.398438 L 537 1044 L 535 1044 Z "/>
+</clipPath>
+<clipPath id="clip305">
+ <path d="M 574 878.398438 L 576 878.398438 L 576 1044 L 574 1044 Z "/>
+</clipPath>
+<clipPath id="clip306">
+ <path d="M 612 878.398438 L 614 878.398438 L 614 1044 L 612 1044 Z "/>
+</clipPath>
+<clipPath id="clip307">
+ <path d="M 651 878.398438 L 653 878.398438 L 653 1044 L 651 1044 Z "/>
+</clipPath>
+<clipPath id="clip308">
+ <path d="M 689 878.398438 L 691 878.398438 L 691 1044 L 689 1044 Z "/>
+</clipPath>
+<clipPath id="clip309">
+ <path d="M 0 1080 L 238 1080 L 238 1297 L 0 1297 Z "/>
+</clipPath>
+<clipPath id="clip310">
+ <path d="M 54.019531 1094.398438 L 223 1094.398438 L 223 1260 L 54.019531 1260 Z "/>
+</clipPath>
+<clipPath id="clip311">
+ <path d="M 54.019531 1245 L 223.933594 1245 L 223.933594 1247 L 54.019531 1247 Z "/>
+</clipPath>
+<clipPath id="clip312">
+ <path d="M 54.019531 1204 L 223.933594 1204 L 223.933594 1206 L 54.019531 1206 Z "/>
+</clipPath>
+<clipPath id="clip313">
+ <path d="M 54.019531 1163 L 223.933594 1163 L 223.933594 1164 L 54.019531 1164 Z "/>
+</clipPath>
+<clipPath id="clip314">
+ <path d="M 54.019531 1122 L 223.933594 1122 L 223.933594 1123 L 54.019531 1123 Z "/>
+</clipPath>
+<clipPath id="clip315">
+ <path d="M 80 1094.398438 L 82 1094.398438 L 82 1260 L 80 1260 Z "/>
+</clipPath>
+<clipPath id="clip316">
+ <path d="M 119 1094.398438 L 120 1094.398438 L 120 1260 L 119 1260 Z "/>
+</clipPath>
+<clipPath id="clip317">
+ <path d="M 157 1094.398438 L 158 1094.398438 L 158 1260 L 157 1260 Z "/>
+</clipPath>
+<clipPath id="clip318">
+ <path d="M 195 1094.398438 L 197 1094.398438 L 197 1260 L 195 1260 Z "/>
+</clipPath>
+<clipPath id="clip319">
+ <path d="M 54.019531 1224 L 223.933594 1224 L 223.933594 1226 L 54.019531 1226 Z "/>
+</clipPath>
+<clipPath id="clip320">
+ <path d="M 54.019531 1183 L 223.933594 1183 L 223.933594 1185 L 54.019531 1185 Z "/>
+</clipPath>
+<clipPath id="clip321">
+ <path d="M 54.019531 1142 L 223.933594 1142 L 223.933594 1144 L 54.019531 1144 Z "/>
+</clipPath>
+<clipPath id="clip322">
+ <path d="M 54.019531 1101 L 223.933594 1101 L 223.933594 1103 L 54.019531 1103 Z "/>
+</clipPath>
+<clipPath id="clip323">
+ <path d="M 61 1094.398438 L 63 1094.398438 L 63 1260 L 61 1260 Z "/>
+</clipPath>
+<clipPath id="clip324">
+ <path d="M 99 1094.398438 L 101 1094.398438 L 101 1260 L 99 1260 Z "/>
+</clipPath>
+<clipPath id="clip325">
+ <path d="M 137 1094.398438 L 140 1094.398438 L 140 1260 L 137 1260 Z "/>
+</clipPath>
+<clipPath id="clip326">
+ <path d="M 176 1094.398438 L 178 1094.398438 L 178 1260 L 176 1260 Z "/>
+</clipPath>
+<clipPath id="clip327">
+ <path d="M 214 1094.398438 L 216 1094.398438 L 216 1260 L 214 1260 Z "/>
+</clipPath>
+<clipPath id="clip328">
+ <path d="M 237.332031 1080 L 475 1080 L 475 1296 L 237.332031 1296 Z "/>
+</clipPath>
+<clipPath id="clip329">
+ <path d="M 237.332031 1080 L 475.664062 1080 L 475.664062 1297 L 237.332031 1297 Z "/>
+</clipPath>
+<clipPath id="clip330">
+ <path d="M 291.351562 1094.398438 L 461 1094.398438 L 461 1260 L 291.351562 1260 Z "/>
+</clipPath>
+<clipPath id="clip331">
+ <path d="M 291.351562 1232 L 461 1232 L 461 1234 L 291.351562 1234 Z "/>
+</clipPath>
+<clipPath id="clip332">
+ <path d="M 291.351562 1195 L 461 1195 L 461 1196 L 291.351562 1196 Z "/>
+</clipPath>
+<clipPath id="clip333">
+ <path d="M 291.351562 1157 L 461 1157 L 461 1159 L 291.351562 1159 Z "/>
+</clipPath>
+<clipPath id="clip334">
+ <path d="M 291.351562 1120 L 461 1120 L 461 1121 L 291.351562 1121 Z "/>
+</clipPath>
+<clipPath id="clip335">
+ <path d="M 317 1094.398438 L 319 1094.398438 L 319 1260 L 317 1260 Z "/>
+</clipPath>
+<clipPath id="clip336">
+ <path d="M 356 1094.398438 L 357 1094.398438 L 357 1260 L 356 1260 Z "/>
+</clipPath>
+<clipPath id="clip337">
+ <path d="M 394 1094.398438 L 396 1094.398438 L 396 1260 L 394 1260 Z "/>
+</clipPath>
+<clipPath id="clip338">
+ <path d="M 433 1094.398438 L 434 1094.398438 L 434 1260 L 433 1260 Z "/>
+</clipPath>
+<clipPath id="clip339">
+ <path d="M 291.351562 1251 L 461 1251 L 461 1253 L 291.351562 1253 Z "/>
+</clipPath>
+<clipPath id="clip340">
+ <path d="M 291.351562 1213 L 461 1213 L 461 1215 L 291.351562 1215 Z "/>
+</clipPath>
+<clipPath id="clip341">
+ <path d="M 291.351562 1176 L 461 1176 L 461 1178 L 291.351562 1178 Z "/>
+</clipPath>
+<clipPath id="clip342">
+ <path d="M 291.351562 1138 L 461 1138 L 461 1140 L 291.351562 1140 Z "/>
+</clipPath>
+<clipPath id="clip343">
+ <path d="M 291.351562 1101 L 461 1101 L 461 1103 L 291.351562 1103 Z "/>
+</clipPath>
+<clipPath id="clip344">
+ <path d="M 298 1094.398438 L 300 1094.398438 L 300 1260 L 298 1260 Z "/>
+</clipPath>
+<clipPath id="clip345">
+ <path d="M 336 1094.398438 L 338 1094.398438 L 338 1260 L 336 1260 Z "/>
+</clipPath>
+<clipPath id="clip346">
+ <path d="M 375 1094.398438 L 377 1094.398438 L 377 1260 L 375 1260 Z "/>
+</clipPath>
+<clipPath id="clip347">
+ <path d="M 413 1094.398438 L 415 1094.398438 L 415 1260 L 413 1260 Z "/>
+</clipPath>
+<clipPath id="clip348">
+ <path d="M 452 1094.398438 L 454 1094.398438 L 454 1260 L 452 1260 Z "/>
+</clipPath>
+<clipPath id="clip349">
+ <path d="M 474.667969 1080 L 712 1080 L 712 1296 L 474.667969 1296 Z "/>
+</clipPath>
+<clipPath id="clip350">
+ <path d="M 474.667969 1080 L 712 1080 L 712 1297 L 474.667969 1297 Z "/>
+</clipPath>
+<clipPath id="clip351">
+ <path d="M 528.683594 1094.398438 L 698 1094.398438 L 698 1260 L 528.683594 1260 Z "/>
+</clipPath>
+<clipPath id="clip352">
+ <path d="M 528.683594 1232 L 698 1232 L 698 1234 L 528.683594 1234 Z "/>
+</clipPath>
+<clipPath id="clip353">
+ <path d="M 528.683594 1195 L 698 1195 L 698 1196 L 528.683594 1196 Z "/>
+</clipPath>
+<clipPath id="clip354">
+ <path d="M 528.683594 1157 L 698 1157 L 698 1159 L 528.683594 1159 Z "/>
+</clipPath>
+<clipPath id="clip355">
+ <path d="M 528.683594 1120 L 698 1120 L 698 1121 L 528.683594 1121 Z "/>
+</clipPath>
+<clipPath id="clip356">
+ <path d="M 555 1094.398438 L 556 1094.398438 L 556 1260 L 555 1260 Z "/>
+</clipPath>
+<clipPath id="clip357">
+ <path d="M 593 1094.398438 L 595 1094.398438 L 595 1260 L 593 1260 Z "/>
+</clipPath>
+<clipPath id="clip358">
+ <path d="M 632 1094.398438 L 633 1094.398438 L 633 1260 L 632 1260 Z "/>
+</clipPath>
+<clipPath id="clip359">
+ <path d="M 670 1094.398438 L 671 1094.398438 L 671 1260 L 670 1260 Z "/>
+</clipPath>
+<clipPath id="clip360">
+ <path d="M 528.683594 1251 L 698.597656 1251 L 698.597656 1253 L 528.683594 1253 Z "/>
+</clipPath>
+<clipPath id="clip361">
+ <path d="M 528.683594 1213 L 698.597656 1213 L 698.597656 1215 L 528.683594 1215 Z "/>
+</clipPath>
+<clipPath id="clip362">
+ <path d="M 528.683594 1176 L 698.597656 1176 L 698.597656 1178 L 528.683594 1178 Z "/>
+</clipPath>
+<clipPath id="clip363">
+ <path d="M 528.683594 1138 L 698.597656 1138 L 698.597656 1140 L 528.683594 1140 Z "/>
+</clipPath>
+<clipPath id="clip364">
+ <path d="M 528.683594 1101 L 698.597656 1101 L 698.597656 1103 L 528.683594 1103 Z "/>
+</clipPath>
+<clipPath id="clip365">
+ <path d="M 535 1094.398438 L 537 1094.398438 L 537 1260 L 535 1260 Z "/>
+</clipPath>
+<clipPath id="clip366">
+ <path d="M 574 1094.398438 L 576 1094.398438 L 576 1260 L 574 1260 Z "/>
+</clipPath>
+<clipPath id="clip367">
+ <path d="M 612 1094.398438 L 614 1094.398438 L 614 1260 L 612 1260 Z "/>
+</clipPath>
+<clipPath id="clip368">
+ <path d="M 651 1094.398438 L 653 1094.398438 L 653 1260 L 651 1260 Z "/>
+</clipPath>
+<clipPath id="clip369">
+ <path d="M 689 1094.398438 L 691 1094.398438 L 691 1260 L 689 1260 Z "/>
+</clipPath>
+<clipPath id="clip370">
+ <path d="M 0 1296 L 238 1296 L 238 1512 L 0 1512 Z "/>
+</clipPath>
+<clipPath id="clip371">
+ <path d="M 54.019531 1310.398438 L 223 1310.398438 L 223 1476 L 54.019531 1476 Z "/>
+</clipPath>
+<clipPath id="clip372">
+ <path d="M 54.019531 1448 L 223.933594 1448 L 223.933594 1450 L 54.019531 1450 Z "/>
+</clipPath>
+<clipPath id="clip373">
+ <path d="M 54.019531 1411 L 223.933594 1411 L 223.933594 1412 L 54.019531 1412 Z "/>
+</clipPath>
+<clipPath id="clip374">
+ <path d="M 54.019531 1373 L 223.933594 1373 L 223.933594 1375 L 54.019531 1375 Z "/>
+</clipPath>
+<clipPath id="clip375">
+ <path d="M 54.019531 1336 L 223.933594 1336 L 223.933594 1337 L 54.019531 1337 Z "/>
+</clipPath>
+<clipPath id="clip376">
+ <path d="M 80 1310.398438 L 82 1310.398438 L 82 1476 L 80 1476 Z "/>
+</clipPath>
+<clipPath id="clip377">
+ <path d="M 119 1310.398438 L 120 1310.398438 L 120 1476 L 119 1476 Z "/>
+</clipPath>
+<clipPath id="clip378">
+ <path d="M 157 1310.398438 L 158 1310.398438 L 158 1476 L 157 1476 Z "/>
+</clipPath>
+<clipPath id="clip379">
+ <path d="M 195 1310.398438 L 197 1310.398438 L 197 1476 L 195 1476 Z "/>
+</clipPath>
+<clipPath id="clip380">
+ <path d="M 54.019531 1467 L 223.933594 1467 L 223.933594 1469 L 54.019531 1469 Z "/>
+</clipPath>
+<clipPath id="clip381">
+ <path d="M 54.019531 1429 L 223.933594 1429 L 223.933594 1431 L 54.019531 1431 Z "/>
+</clipPath>
+<clipPath id="clip382">
+ <path d="M 54.019531 1392 L 223.933594 1392 L 223.933594 1394 L 54.019531 1394 Z "/>
+</clipPath>
+<clipPath id="clip383">
+ <path d="M 54.019531 1354 L 223.933594 1354 L 223.933594 1356 L 54.019531 1356 Z "/>
+</clipPath>
+<clipPath id="clip384">
+ <path d="M 54.019531 1317 L 223.933594 1317 L 223.933594 1319 L 54.019531 1319 Z "/>
+</clipPath>
+<clipPath id="clip385">
+ <path d="M 61 1310.398438 L 63 1310.398438 L 63 1476 L 61 1476 Z "/>
+</clipPath>
+<clipPath id="clip386">
+ <path d="M 99 1310.398438 L 101 1310.398438 L 101 1476 L 99 1476 Z "/>
+</clipPath>
+<clipPath id="clip387">
+ <path d="M 137 1310.398438 L 140 1310.398438 L 140 1476 L 137 1476 Z "/>
+</clipPath>
+<clipPath id="clip388">
+ <path d="M 176 1310.398438 L 178 1310.398438 L 178 1476 L 176 1476 Z "/>
+</clipPath>
+<clipPath id="clip389">
+ <path d="M 214 1310.398438 L 216 1310.398438 L 216 1476 L 214 1476 Z "/>
+</clipPath>
+<clipPath id="clip390">
+ <path d="M 237.332031 1296 L 475 1296 L 475 1512 L 237.332031 1512 Z "/>
+</clipPath>
+<clipPath id="clip391">
+ <path d="M 237.332031 1296 L 475.664062 1296 L 475.664062 1512 L 237.332031 1512 Z "/>
+</clipPath>
+<clipPath id="clip392">
+ <path d="M 291.351562 1310.398438 L 461 1310.398438 L 461 1476 L 291.351562 1476 Z "/>
+</clipPath>
+<clipPath id="clip393">
+ <path d="M 291.351562 1448 L 461 1448 L 461 1450 L 291.351562 1450 Z "/>
+</clipPath>
+<clipPath id="clip394">
+ <path d="M 291.351562 1411 L 461 1411 L 461 1412 L 291.351562 1412 Z "/>
+</clipPath>
+<clipPath id="clip395">
+ <path d="M 291.351562 1373 L 461 1373 L 461 1375 L 291.351562 1375 Z "/>
+</clipPath>
+<clipPath id="clip396">
+ <path d="M 291.351562 1336 L 461 1336 L 461 1337 L 291.351562 1337 Z "/>
+</clipPath>
+<clipPath id="clip397">
+ <path d="M 317 1310.398438 L 319 1310.398438 L 319 1476 L 317 1476 Z "/>
+</clipPath>
+<clipPath id="clip398">
+ <path d="M 356 1310.398438 L 357 1310.398438 L 357 1476 L 356 1476 Z "/>
+</clipPath>
+<clipPath id="clip399">
+ <path d="M 394 1310.398438 L 396 1310.398438 L 396 1476 L 394 1476 Z "/>
+</clipPath>
+<clipPath id="clip400">
+ <path d="M 433 1310.398438 L 434 1310.398438 L 434 1476 L 433 1476 Z "/>
+</clipPath>
+<clipPath id="clip401">
+ <path d="M 291.351562 1467 L 461 1467 L 461 1469 L 291.351562 1469 Z "/>
+</clipPath>
+<clipPath id="clip402">
+ <path d="M 291.351562 1429 L 461 1429 L 461 1431 L 291.351562 1431 Z "/>
+</clipPath>
+<clipPath id="clip403">
+ <path d="M 291.351562 1392 L 461 1392 L 461 1394 L 291.351562 1394 Z "/>
+</clipPath>
+<clipPath id="clip404">
+ <path d="M 291.351562 1354 L 461 1354 L 461 1356 L 291.351562 1356 Z "/>
+</clipPath>
+<clipPath id="clip405">
+ <path d="M 291.351562 1317 L 461 1317 L 461 1319 L 291.351562 1319 Z "/>
+</clipPath>
+<clipPath id="clip406">
+ <path d="M 298 1310.398438 L 300 1310.398438 L 300 1476 L 298 1476 Z "/>
+</clipPath>
+<clipPath id="clip407">
+ <path d="M 336 1310.398438 L 338 1310.398438 L 338 1476 L 336 1476 Z "/>
+</clipPath>
+<clipPath id="clip408">
+ <path d="M 375 1310.398438 L 377 1310.398438 L 377 1476 L 375 1476 Z "/>
+</clipPath>
+<clipPath id="clip409">
+ <path d="M 413 1310.398438 L 415 1310.398438 L 415 1476 L 413 1476 Z "/>
+</clipPath>
+<clipPath id="clip410">
+ <path d="M 452 1310.398438 L 454 1310.398438 L 454 1476 L 452 1476 Z "/>
+</clipPath>
+<clipPath id="clip411">
+ <path d="M 474.667969 1296 L 712 1296 L 712 1512 L 474.667969 1512 Z "/>
+</clipPath>
+<clipPath id="clip412">
+ <path d="M 528.683594 1310.398438 L 698 1310.398438 L 698 1476 L 528.683594 1476 Z "/>
+</clipPath>
+<clipPath id="clip413">
+ <path d="M 528.683594 1448 L 698 1448 L 698 1450 L 528.683594 1450 Z "/>
+</clipPath>
+<clipPath id="clip414">
+ <path d="M 528.683594 1411 L 698 1411 L 698 1412 L 528.683594 1412 Z "/>
+</clipPath>
+<clipPath id="clip415">
+ <path d="M 528.683594 1373 L 698 1373 L 698 1375 L 528.683594 1375 Z "/>
+</clipPath>
+<clipPath id="clip416">
+ <path d="M 528.683594 1336 L 698 1336 L 698 1337 L 528.683594 1337 Z "/>
+</clipPath>
+<clipPath id="clip417">
+ <path d="M 555 1310.398438 L 556 1310.398438 L 556 1476 L 555 1476 Z "/>
+</clipPath>
+<clipPath id="clip418">
+ <path d="M 593 1310.398438 L 595 1310.398438 L 595 1476 L 593 1476 Z "/>
+</clipPath>
+<clipPath id="clip419">
+ <path d="M 632 1310.398438 L 633 1310.398438 L 633 1476 L 632 1476 Z "/>
+</clipPath>
+<clipPath id="clip420">
+ <path d="M 670 1310.398438 L 671 1310.398438 L 671 1476 L 670 1476 Z "/>
+</clipPath>
+<clipPath id="clip421">
+ <path d="M 528.683594 1467 L 698.597656 1467 L 698.597656 1469 L 528.683594 1469 Z "/>
+</clipPath>
+<clipPath id="clip422">
+ <path d="M 528.683594 1429 L 698.597656 1429 L 698.597656 1431 L 528.683594 1431 Z "/>
+</clipPath>
+<clipPath id="clip423">
+ <path d="M 528.683594 1392 L 698.597656 1392 L 698.597656 1394 L 528.683594 1394 Z "/>
+</clipPath>
+<clipPath id="clip424">
+ <path d="M 528.683594 1354 L 698.597656 1354 L 698.597656 1356 L 528.683594 1356 Z "/>
+</clipPath>
+<clipPath id="clip425">
+ <path d="M 528.683594 1317 L 698.597656 1317 L 698.597656 1319 L 528.683594 1319 Z "/>
+</clipPath>
+<clipPath id="clip426">
+ <path d="M 535 1310.398438 L 537 1310.398438 L 537 1476 L 535 1476 Z "/>
+</clipPath>
+<clipPath id="clip427">
+ <path d="M 574 1310.398438 L 576 1310.398438 L 576 1476 L 574 1476 Z "/>
+</clipPath>
+<clipPath id="clip428">
+ <path d="M 612 1310.398438 L 614 1310.398438 L 614 1476 L 612 1476 Z "/>
+</clipPath>
+<clipPath id="clip429">
+ <path d="M 651 1310.398438 L 653 1310.398438 L 653 1476 L 651 1476 Z "/>
+</clipPath>
+<clipPath id="clip430">
+ <path d="M 689 1310.398438 L 691 1310.398438 L 691 1476 L 689 1476 Z "/>
+</clipPath>
+</defs>
+<g id="surface1191">
+<rect x="0" y="0" width="712" height="1512" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 237.332031 216 L 237.332031 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 222.933594 179.027344 L 222.933594 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.800781 L 222.933594 152.800781 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.308594 L 222.933594 115.308594 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 77.820312 L 222.933594 77.820312 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.328125 L 222.933594 40.328125 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 80.890625 179.027344 L 80.890625 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.28125 179.027344 L 119.28125 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.671875 179.027344 L 157.671875 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.058594 179.027344 L 196.058594 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.546875 L 222.933594 171.546875 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.054688 L 222.933594 134.054688 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.5625 L 222.933594 96.5625 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.074219 L 222.933594 59.074219 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.582031 L 222.933594 21.582031 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 179.027344 L 61.695312 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 179.027344 L 100.085938 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 179.027344 L 138.476562 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 179.027344 L 176.867188 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 179.027344 L 215.253906 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 61.695312 171.546875 L 62.621094 169.742188 L 62.925781 169.140625 L 63.234375 168.539062 L 63.542969 167.941406 L 63.851562 167.339844 L 64.15625 166.738281 L 65.390625 164.332031 L 65.695312 163.730469 L 66.003906 163.132812 L 66.621094 161.929688 L 66.925781 161.328125 L 68.160156 158.921875 L 68.464844 158.324219 L 69.390625 156.519531 L 69.695312 155.917969 L 70.3125 154.714844 L 70.621094 154.117188 L 70.929688 153.515625 L 71.234375 152.914062 L 72.46875 150.507812 L 72.773438 149.90625 L 73.082031 149.308594 L 73.699219 148.105469 L 74.003906 147.503906 L 75.238281 145.097656 L 75.542969 144.5 L 76.46875 142.695312 L 76.773438 142.09375 L 77.699219 140.289062 L 78.007812 139.691406 L 78.3125 139.089844 L 79.238281 137.285156 L 79.542969 136.683594 L 79.851562 136.082031 L 80.160156 135.484375 L 80.777344 134.28125 L 81.082031 133.679688 L 82.007812 131.875 L 82.3125 131.273438 L 82.621094 130.675781 L 83.546875 128.871094 L 83.851562 128.269531 L 84.777344 126.464844 L 85.082031 125.867188 L 86.316406 123.460938 L 86.621094 122.859375 L 86.929688 122.257812 L 87.238281 121.660156 L 87.855469 120.457031 L 88.160156 119.855469 L 89.085938 118.050781 L 89.390625 117.449219 L 89.699219 116.851562 L 90.625 115.046875 L 90.929688 114.445312 L 91.855469 112.640625 L 92.160156 112.042969 L 93.394531 109.636719 L 93.699219 109.035156 L 94.007812 108.433594 L 94.316406 107.835938 L 94.625 107.234375 L 94.929688 106.632812 L 96.164062 104.226562 L 96.46875 103.625 L 96.777344 103.027344 L 97.394531 101.824219 L 97.699219 101.222656 L 98.933594 98.816406 L 99.238281 98.21875 L 100.164062 96.414062 L 100.46875 95.8125 L 101.394531 94.007812 L 101.703125 93.410156 L 102.007812 92.808594 L 103.242188 90.402344 L 103.546875 89.800781 L 103.855469 89.203125 L 104.472656 88 L 104.777344 87.398438 L 106.011719 84.992188 L 106.316406 84.394531 L 107.242188 82.589844 L 107.546875 81.988281 L 108.472656 80.183594 L 108.78125 79.585938 L 109.085938 78.984375 L 110.011719 77.179688 L 110.316406 76.578125 L 110.625 75.976562 L 110.933594 75.378906 L 111.550781 74.175781 L 111.855469 73.574219 L 112.78125 71.769531 L 113.085938 71.167969 L 113.394531 70.570312 L 114.320312 68.765625 L 114.625 68.164062 L 115.550781 66.359375 L 115.855469 65.761719 L 117.089844 63.355469 L 117.394531 62.753906 L 117.703125 62.152344 L 118.011719 61.554688 L 118.320312 60.953125 L 118.625 60.351562 L 119.859375 57.945312 L 120.164062 57.34375 L 120.472656 56.746094 L 121.398438 54.941406 L 121.703125 54.339844 L 122.628906 52.535156 L 122.933594 51.9375 L 124.167969 49.53125 L 124.472656 48.929688 L 125.089844 47.726562 L 125.398438 47.128906 L 125.703125 46.527344 L 126.9375 44.121094 L 127.242188 43.519531 L 127.550781 42.921875 L 128.167969 41.71875 L 128.472656 41.117188 L 129.707031 38.710938 L 130.011719 38.113281 L 130.9375 36.308594 L 131.242188 35.707031 L 132.167969 33.902344 L 132.476562 33.304688 L 132.78125 32.703125 L 133.707031 30.898438 L 134.011719 30.296875 L 134.320312 29.695312 L 134.628906 29.097656 L 135.246094 27.894531 L 135.550781 27.292969 L 136.785156 24.886719 L 137.089844 24.289062 L 138.015625 22.484375 L 138.320312 21.882812 L 138.628906 21.882812 L 139.554688 23.6875 L 139.859375 24.289062 L 140.167969 24.886719 L 140.785156 26.089844 L 141.089844 26.691406 L 142.324219 29.097656 L 142.628906 29.695312 L 143.554688 31.5 L 143.859375 32.101562 L 144.476562 33.304688 L 144.785156 33.902344 L 145.09375 34.503906 L 145.398438 35.105469 L 146.324219 36.910156 L 146.628906 37.511719 L 146.9375 38.113281 L 147.246094 38.710938 L 147.863281 39.914062 L 148.167969 40.515625 L 149.09375 42.320312 L 149.398438 42.921875 L 149.707031 43.519531 L 150.632812 45.324219 L 150.9375 45.925781 L 151.554688 47.128906 L 151.863281 47.726562 L 152.171875 48.328125 L 152.476562 48.929688 L 153.402344 50.734375 L 153.707031 51.335938 L 154.015625 51.9375 L 154.324219 52.535156 L 154.941406 53.738281 L 155.246094 54.339844 L 156.171875 56.144531 L 156.476562 56.746094 L 156.785156 57.34375 L 157.710938 59.148438 L 158.015625 59.75 L 158.941406 61.554688 L 159.246094 62.152344 L 160.480469 64.558594 L 160.785156 65.160156 L 161.09375 65.761719 L 161.402344 66.359375 L 161.710938 66.960938 L 162.015625 67.5625 L 163.25 69.96875 L 163.554688 70.570312 L 163.863281 71.167969 L 164.480469 72.371094 L 164.785156 72.972656 L 166.019531 75.378906 L 166.324219 75.976562 L 167.25 77.78125 L 167.554688 78.382812 L 168.171875 79.585938 L 168.480469 80.183594 L 168.789062 80.785156 L 169.09375 81.386719 L 170.328125 83.792969 L 170.632812 84.394531 L 170.941406 84.992188 L 171.558594 86.195312 L 171.863281 86.796875 L 173.097656 89.203125 L 173.402344 89.800781 L 174.328125 91.605469 L 174.632812 92.207031 L 175.25 93.410156 L 175.558594 94.007812 L 175.867188 94.609375 L 176.171875 95.210938 L 177.097656 97.015625 L 177.402344 97.617188 L 177.710938 98.21875 L 178.019531 98.816406 L 178.636719 100.019531 L 178.941406 100.621094 L 179.867188 102.425781 L 180.171875 103.027344 L 180.480469 103.625 L 181.40625 105.429688 L 181.710938 106.03125 L 182.636719 107.835938 L 182.941406 108.433594 L 184.175781 110.839844 L 184.480469 111.441406 L 184.789062 112.042969 L 185.097656 112.640625 L 185.714844 113.84375 L 186.019531 114.445312 L 186.945312 116.25 L 187.25 116.851562 L 187.558594 117.449219 L 188.484375 119.253906 L 188.789062 119.855469 L 189.714844 121.660156 L 190.019531 122.257812 L 191.253906 124.664062 L 191.558594 125.265625 L 191.867188 125.867188 L 192.175781 126.464844 L 192.484375 127.066406 L 192.789062 127.667969 L 194.023438 130.074219 L 194.328125 130.675781 L 194.636719 131.273438 L 195.253906 132.476562 L 195.558594 133.078125 L 196.792969 135.484375 L 197.097656 136.082031 L 198.023438 137.886719 L 198.328125 138.488281 L 198.945312 139.691406 L 199.253906 140.289062 L 199.5625 140.890625 L 199.867188 141.492188 L 201.101562 143.898438 L 201.40625 144.5 L 201.714844 145.097656 L 202.332031 146.300781 L 202.636719 146.902344 L 203.871094 149.308594 L 204.175781 149.90625 L 205.101562 151.710938 L 205.40625 152.3125 L 206.332031 154.117188 L 206.640625 154.714844 L 206.945312 155.316406 L 207.871094 157.121094 L 208.175781 157.722656 L 208.484375 158.324219 L 208.792969 158.921875 L 209.410156 160.125 L 209.714844 160.726562 L 210.640625 162.53125 L 210.945312 163.132812 L 211.253906 163.730469 L 212.179688 165.535156 L 212.484375 166.136719 L 213.410156 167.941406 L 213.714844 168.539062 L 214.949219 170.945312 L 215.253906 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.492188"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.492188"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.492188"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.492188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="100"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="100"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="100"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="100"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="62.511719"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="62.511719"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="62.511719"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="62.511719"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.019531"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.019531"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.019531"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.019531"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.546875 L 54.019531 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.054688 L 54.019531 134.054688 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.5625 L 54.019531 96.5625 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.074219 L 54.019531 59.074219 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.582031 L 54.019531 21.582031 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 183.28125 L 61.695312 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 183.28125 L 100.085938 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 183.28125 L 138.476562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 183.28125 L 176.867188 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 183.28125 L 215.253906 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="52.359375" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="57.694962" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="60.360413" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="65.695999" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="90.75" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="96.085587" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="98.751038" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="104.086624" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="129.140625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="134.476212" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="137.141663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="142.477249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="167.53125" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="172.866837" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="175.532288" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="180.867874" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="205.917969" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="211.253555" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="213.919006" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="219.254593" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="135.476562" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-1" x="23.335938" y="10.800781"/>
+ <use xlink:href="#glyph5-2" x="30.666016" y="10.800781"/>
+ <use xlink:href="#glyph5-3" x="35.335938" y="10.800781"/>
+ <use xlink:href="#glyph5-4" x="38.669922" y="10.800781"/>
+ <use xlink:href="#glyph5-5" x="45.34375" y="10.800781"/>
+ <use xlink:href="#glyph5-6" x="52.673828" y="10.800781"/>
+ <use xlink:href="#glyph5-7" x="60.003906" y="10.800781"/>
+ <use xlink:href="#glyph5-8" x="63.337891" y="10.800781"/>
+</g>
+<g clip-path="url(#clip20)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 237.332031 216 L 474.664062 216 L 474.664062 0 L 237.332031 0 Z "/>
+</g>
+<g clip-path="url(#clip21)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.332031 216 L 474.664062 216 L 474.664062 0 L 237.332031 0 Z "/>
+</g>
+<g clip-path="url(#clip22)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 291.351562 179.027344 L 460.265625 179.027344 L 460.265625 14.398438 L 291.351562 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip23)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 154.882812 L 460.265625 154.882812 "/>
+</g>
+<g clip-path="url(#clip24)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 116.882812 L 460.265625 116.882812 "/>
+</g>
+<g clip-path="url(#clip25)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 78.882812 L 460.265625 78.882812 "/>
+</g>
+<g clip-path="url(#clip26)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 40.882812 L 460.265625 40.882812 "/>
+</g>
+<g clip-path="url(#clip27)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.222656 179.027344 L 318.222656 14.398438 "/>
+</g>
+<g clip-path="url(#clip28)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.613281 179.027344 L 356.613281 14.398438 "/>
+</g>
+<g clip-path="url(#clip29)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.003906 179.027344 L 395.003906 14.398438 "/>
+</g>
+<g clip-path="url(#clip30)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.394531 179.027344 L 433.394531 14.398438 "/>
+</g>
+<g clip-path="url(#clip31)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 173.882812 L 460.265625 173.882812 "/>
+</g>
+<g clip-path="url(#clip32)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 135.882812 L 460.265625 135.882812 "/>
+</g>
+<g clip-path="url(#clip33)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 97.882812 L 460.265625 97.882812 "/>
+</g>
+<g clip-path="url(#clip34)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 59.882812 L 460.265625 59.882812 "/>
+</g>
+<g clip-path="url(#clip35)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 21.882812 L 460.265625 21.882812 "/>
+</g>
+<g clip-path="url(#clip36)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 179.027344 L 299.03125 14.398438 "/>
+</g>
+<g clip-path="url(#clip37)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 179.027344 L 337.417969 14.398438 "/>
+</g>
+<g clip-path="url(#clip38)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 179.027344 L 375.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip39)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 179.027344 L 414.199219 14.398438 "/>
+</g>
+<g clip-path="url(#clip40)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 179.027344 L 452.589844 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 299.03125 171.546875 L 299.335938 171.488281 L 299.644531 171.433594 L 299.953125 171.371094 L 300.261719 171.3125 L 300.566406 171.25 L 301.492188 171.050781 L 301.800781 170.980469 L 302.105469 170.90625 L 302.722656 170.757812 L 303.03125 170.679688 L 303.335938 170.597656 L 303.644531 170.515625 L 304.261719 170.34375 L 304.570312 170.25 L 304.875 170.15625 L 305.183594 170.0625 L 305.492188 169.964844 L 305.800781 169.863281 L 306.105469 169.757812 L 306.722656 169.539062 L 307.339844 169.304688 L 307.644531 169.183594 L 307.953125 169.058594 L 308.261719 168.929688 L 308.570312 168.796875 L 308.878906 168.660156 L 309.183594 168.515625 L 309.492188 168.371094 L 309.800781 168.222656 L 310.109375 168.066406 L 310.414062 167.90625 L 310.722656 167.742188 L 311.03125 167.574219 L 311.339844 167.398438 L 311.648438 167.214844 L 311.953125 167.03125 L 312.261719 166.839844 L 312.570312 166.640625 L 312.878906 166.433594 L 313.183594 166.222656 L 313.492188 166.007812 L 313.800781 165.78125 L 314.109375 165.550781 L 314.417969 165.308594 L 314.722656 165.0625 L 315.03125 164.808594 L 315.339844 164.542969 L 315.648438 164.273438 L 315.953125 163.992188 L 316.261719 163.699219 L 316.570312 163.402344 L 316.878906 163.09375 L 317.1875 162.773438 L 317.492188 162.445312 L 317.800781 162.101562 L 318.109375 161.75 L 318.417969 161.386719 L 318.722656 161.011719 L 319.03125 160.625 L 319.339844 160.226562 L 319.648438 159.8125 L 319.957031 159.386719 L 320.261719 158.945312 L 320.570312 158.492188 L 320.878906 158.019531 L 321.1875 157.535156 L 321.492188 157.035156 L 321.800781 156.515625 L 322.109375 155.984375 L 322.417969 155.429688 L 322.726562 154.859375 L 323.03125 154.273438 L 323.339844 153.664062 L 323.648438 153.039062 L 323.957031 152.390625 L 324.265625 151.722656 L 324.570312 151.035156 L 324.878906 150.324219 L 325.1875 149.59375 L 325.496094 148.835938 L 325.800781 148.054688 L 326.109375 147.253906 L 326.417969 146.425781 L 326.726562 145.570312 L 327.035156 144.691406 L 327.339844 143.785156 L 327.648438 142.851562 L 327.957031 141.890625 L 328.265625 140.902344 L 328.570312 139.882812 L 328.878906 138.839844 L 329.1875 137.761719 L 329.496094 136.65625 L 329.804688 135.519531 L 330.109375 134.355469 L 330.417969 133.15625 L 330.726562 131.929688 L 331.035156 130.667969 L 331.339844 129.378906 L 331.648438 128.054688 L 331.957031 126.699219 L 332.265625 125.316406 L 332.574219 123.898438 L 332.878906 122.449219 L 333.1875 120.972656 L 333.496094 119.460938 L 333.804688 117.921875 L 334.109375 116.351562 L 334.417969 114.753906 L 334.726562 113.128906 L 335.035156 111.476562 L 335.34375 109.800781 L 335.648438 108.097656 L 335.957031 106.367188 L 336.265625 104.617188 L 336.574219 102.847656 L 336.878906 101.058594 L 337.1875 99.25 L 337.496094 97.425781 L 337.804688 95.589844 L 338.113281 93.738281 L 338.417969 91.878906 L 338.726562 90.007812 L 339.34375 86.257812 L 339.648438 84.378906 L 339.957031 82.5 L 340.265625 80.625 L 340.574219 78.753906 L 340.882812 76.894531 L 341.1875 75.046875 L 341.496094 73.207031 L 341.804688 71.386719 L 342.113281 69.585938 L 342.421875 67.800781 L 342.726562 66.039062 L 343.035156 64.304688 L 343.34375 62.59375 L 343.652344 60.914062 L 343.957031 59.265625 L 344.265625 57.648438 L 344.574219 56.0625 L 344.882812 54.515625 L 345.191406 53.003906 L 345.496094 51.53125 L 345.804688 50.097656 L 346.113281 48.703125 L 346.421875 47.351562 L 346.726562 46.039062 L 347.035156 44.769531 L 347.34375 43.542969 L 347.652344 42.359375 L 347.960938 41.21875 L 348.265625 40.125 L 348.574219 39.070312 L 348.882812 38.054688 L 349.191406 37.085938 L 349.496094 36.15625 L 349.804688 35.269531 L 350.113281 34.425781 L 350.421875 33.617188 L 350.730469 32.847656 L 351.035156 32.117188 L 351.34375 31.425781 L 351.652344 30.769531 L 351.960938 30.144531 L 352.265625 29.558594 L 352.574219 29.003906 L 352.882812 28.480469 L 353.191406 27.984375 L 353.5 27.523438 L 353.804688 27.085938 L 354.113281 26.679688 L 354.421875 26.296875 L 354.730469 25.9375 L 355.035156 25.605469 L 355.34375 25.292969 L 355.652344 25.003906 L 355.960938 24.734375 L 356.269531 24.480469 L 356.574219 24.25 L 356.882812 24.035156 L 357.191406 23.835938 L 357.5 23.652344 L 357.808594 23.484375 L 358.113281 23.328125 L 358.421875 23.183594 L 358.730469 23.050781 L 359.039062 22.933594 L 359.34375 22.824219 L 359.652344 22.722656 L 359.960938 22.632812 L 360.269531 22.550781 L 360.578125 22.472656 L 360.882812 22.40625 L 361.191406 22.34375 L 361.5 22.289062 L 361.808594 22.238281 L 362.113281 22.195312 L 362.421875 22.15625 L 362.730469 22.121094 L 363.039062 22.089844 L 363.347656 22.0625 L 363.652344 22.035156 L 364.578125 21.976562 L 364.882812 21.964844 L 365.191406 21.949219 L 365.5 21.941406 L 365.808594 21.929688 L 366.117188 21.921875 L 366.421875 21.914062 L 367.347656 21.902344 L 367.652344 21.898438 L 368.269531 21.890625 L 368.578125 21.890625 L 368.886719 21.886719 L 369.808594 21.886719 L 370.117188 21.882812 L 381.503906 21.882812 L 381.808594 21.886719 L 382.734375 21.886719 L 383.039062 21.890625 L 383.347656 21.890625 L 384.273438 21.902344 L 384.578125 21.90625 L 385.195312 21.914062 L 385.503906 21.921875 L 385.808594 21.929688 L 386.117188 21.941406 L 386.425781 21.949219 L 386.734375 21.964844 L 387.042969 21.976562 L 387.347656 21.996094 L 387.964844 22.035156 L 388.273438 22.0625 L 388.578125 22.089844 L 388.886719 22.121094 L 389.195312 22.15625 L 389.503906 22.195312 L 389.8125 22.238281 L 390.117188 22.289062 L 390.425781 22.34375 L 390.734375 22.40625 L 391.042969 22.472656 L 391.351562 22.550781 L 391.65625 22.632812 L 391.964844 22.722656 L 392.273438 22.824219 L 392.582031 22.933594 L 392.886719 23.050781 L 393.195312 23.183594 L 393.503906 23.328125 L 393.8125 23.484375 L 394.121094 23.652344 L 394.425781 23.835938 L 394.734375 24.035156 L 395.042969 24.25 L 395.351562 24.480469 L 395.65625 24.734375 L 395.964844 25.003906 L 396.273438 25.292969 L 396.582031 25.605469 L 396.890625 25.9375 L 397.195312 26.296875 L 397.503906 26.679688 L 397.8125 27.085938 L 398.121094 27.523438 L 398.425781 27.984375 L 398.734375 28.480469 L 399.042969 29.003906 L 399.351562 29.558594 L 399.660156 30.144531 L 399.964844 30.769531 L 400.273438 31.425781 L 400.582031 32.117188 L 400.890625 32.847656 L 401.195312 33.617188 L 401.503906 34.425781 L 401.8125 35.269531 L 402.121094 36.15625 L 402.429688 37.085938 L 402.734375 38.054688 L 403.042969 39.070312 L 403.351562 40.125 L 403.660156 41.21875 L 403.964844 42.359375 L 404.273438 43.542969 L 404.582031 44.769531 L 404.890625 46.039062 L 405.199219 47.351562 L 405.503906 48.703125 L 405.8125 50.097656 L 406.121094 51.53125 L 406.429688 53.003906 L 406.738281 54.515625 L 407.042969 56.0625 L 407.351562 57.648438 L 407.660156 59.265625 L 407.96875 60.914062 L 408.273438 62.59375 L 408.582031 64.304688 L 408.890625 66.039062 L 409.199219 67.800781 L 409.507812 69.585938 L 409.8125 71.386719 L 410.121094 73.207031 L 410.429688 75.046875 L 410.738281 76.894531 L 411.042969 78.753906 L 411.351562 80.625 L 411.660156 82.5 L 412.277344 86.257812 L 412.582031 88.132812 L 412.890625 90.007812 L 413.199219 91.878906 L 413.507812 93.738281 L 413.8125 95.589844 L 414.121094 97.425781 L 414.429688 99.25 L 414.738281 101.058594 L 415.046875 102.847656 L 415.351562 104.617188 L 415.660156 106.367188 L 415.96875 108.097656 L 416.277344 109.800781 L 416.582031 111.476562 L 416.890625 113.128906 L 417.199219 114.753906 L 417.507812 116.351562 L 417.816406 117.921875 L 418.121094 119.460938 L 418.429688 120.972656 L 418.738281 122.449219 L 419.046875 123.898438 L 419.351562 125.316406 L 419.660156 126.699219 L 419.96875 128.054688 L 420.277344 129.378906 L 420.585938 130.667969 L 420.890625 131.929688 L 421.199219 133.15625 L 421.507812 134.355469 L 421.816406 135.519531 L 422.125 136.65625 L 422.429688 137.761719 L 422.738281 138.839844 L 423.046875 139.882812 L 423.355469 140.902344 L 423.660156 141.890625 L 423.96875 142.851562 L 424.277344 143.785156 L 424.585938 144.691406 L 424.894531 145.570312 L 425.199219 146.425781 L 425.507812 147.253906 L 425.816406 148.054688 L 426.125 148.835938 L 426.429688 149.59375 L 426.738281 150.324219 L 427.046875 151.035156 L 427.355469 151.722656 L 427.664062 152.390625 L 427.96875 153.039062 L 428.277344 153.664062 L 428.585938 154.273438 L 428.894531 154.859375 L 429.199219 155.429688 L 429.507812 155.984375 L 429.816406 156.515625 L 430.125 157.035156 L 430.433594 157.535156 L 430.738281 158.019531 L 431.046875 158.492188 L 431.355469 158.945312 L 431.664062 159.386719 L 431.96875 159.8125 L 432.277344 160.226562 L 432.585938 160.625 L 432.894531 161.011719 L 433.203125 161.386719 L 433.507812 161.75 L 433.816406 162.101562 L 434.125 162.445312 L 434.433594 162.773438 L 434.738281 163.09375 L 435.046875 163.402344 L 435.355469 163.699219 L 435.664062 163.992188 L 435.972656 164.273438 L 436.277344 164.542969 L 436.585938 164.808594 L 436.894531 165.0625 L 437.203125 165.308594 L 437.507812 165.550781 L 437.816406 165.78125 L 438.125 166.007812 L 438.433594 166.222656 L 438.742188 166.433594 L 439.046875 166.640625 L 439.355469 166.839844 L 439.664062 167.03125 L 440.28125 167.398438 L 440.585938 167.574219 L 440.894531 167.742188 L 441.203125 167.90625 L 441.511719 168.066406 L 441.816406 168.222656 L 442.125 168.371094 L 442.742188 168.660156 L 443.050781 168.796875 L 443.355469 168.929688 L 443.664062 169.058594 L 443.972656 169.183594 L 444.28125 169.304688 L 444.585938 169.421875 L 444.894531 169.539062 L 445.511719 169.757812 L 445.820312 169.863281 L 446.125 169.964844 L 446.433594 170.0625 L 447.050781 170.25 L 447.355469 170.34375 L 447.972656 170.515625 L 448.589844 170.679688 L 448.894531 170.757812 L 449.820312 170.980469 L 450.125 171.050781 L 451.050781 171.25 L 451.359375 171.3125 L 451.664062 171.371094 L 451.972656 171.433594 L 452.28125 171.488281 L 452.589844 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="177.320312"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="177.320312"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="177.320312"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="177.320312"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="139.320312"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="139.320312"/>
+ <use xlink:href="#glyph0-3" x="273.594788" y="139.320312"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="139.320312"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="101.320312"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="101.320312"/>
+ <use xlink:href="#glyph0-4" x="273.594788" y="101.320312"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="101.320312"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="63.320312"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="63.320312"/>
+ <use xlink:href="#glyph0-5" x="273.594788" y="63.320312"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="63.320312"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="265.59375" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 173.882812 L 291.351562 173.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 135.882812 L 291.351562 135.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 97.882812 L 291.351562 97.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 59.882812 L 291.351562 59.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 21.882812 L 291.351562 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 183.28125 L 299.03125 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 183.28125 L 337.417969 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 183.28125 L 375.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 183.28125 L 414.199219 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 183.28125 L 452.589844 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="289.695312" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="295.030899" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="297.69635" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="303.031937" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="328.082031" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="333.417618" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="336.083069" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="341.418655" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="366.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="371.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="374.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="379.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="404.863281" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="410.198868" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="412.864319" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="418.199905" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="443.253906" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="448.589493" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="451.254944" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="456.59053" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="372.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="258.992188" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="258.992188" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="258.992188" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="258.992188" y="90.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-9" x="248.335938" y="10.800781"/>
+ <use xlink:href="#glyph5-8" x="257.001953" y="10.800781"/>
+ <use xlink:href="#glyph5-7" x="263.675781" y="10.800781"/>
+ <use xlink:href="#glyph5-7" x="267.009766" y="10.800781"/>
+</g>
+<g clip-path="url(#clip41)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 474.667969 216 L 712 216 L 712 0 L 474.667969 0 Z "/>
+</g>
+<g clip-path="url(#clip42)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 474.667969 216 L 712 216 L 712 0 L 474.667969 0 Z "/>
+</g>
+<g clip-path="url(#clip43)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 528.683594 179.027344 L 697.597656 179.027344 L 697.597656 14.398438 L 528.683594 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip44)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 152.835938 L 697.601562 152.835938 "/>
+</g>
+<g clip-path="url(#clip45)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 115.421875 L 697.601562 115.421875 "/>
+</g>
+<g clip-path="url(#clip46)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 78.007812 L 697.601562 78.007812 "/>
+</g>
+<g clip-path="url(#clip47)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 40.589844 L 697.601562 40.589844 "/>
+</g>
+<g clip-path="url(#clip48)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 555.558594 179.027344 L 555.558594 14.398438 "/>
+</g>
+<g clip-path="url(#clip49)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 593.949219 179.027344 L 593.949219 14.398438 "/>
+</g>
+<g clip-path="url(#clip50)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 632.335938 179.027344 L 632.335938 14.398438 "/>
+</g>
+<g clip-path="url(#clip51)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 670.726562 179.027344 L 670.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip52)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 171.546875 L 697.601562 171.546875 "/>
+</g>
+<g clip-path="url(#clip53)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 134.128906 L 697.601562 134.128906 "/>
+</g>
+<g clip-path="url(#clip54)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 96.714844 L 697.601562 96.714844 "/>
+</g>
+<g clip-path="url(#clip55)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 59.296875 L 697.601562 59.296875 "/>
+</g>
+<g clip-path="url(#clip56)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 21.882812 L 697.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip57)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 179.027344 L 536.363281 14.398438 "/>
+</g>
+<g clip-path="url(#clip58)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 179.027344 L 574.753906 14.398438 "/>
+</g>
+<g clip-path="url(#clip59)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 179.027344 L 613.140625 14.398438 "/>
+</g>
+<g clip-path="url(#clip60)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 179.027344 L 651.53125 14.398438 "/>
+</g>
+<g clip-path="url(#clip61)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 179.027344 L 689.921875 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 536.363281 171.546875 L 536.671875 171.542969 L 536.976562 171.527344 L 537.285156 171.503906 L 537.59375 171.46875 L 537.902344 171.425781 L 538.210938 171.371094 L 538.515625 171.308594 L 538.824219 171.238281 L 539.132812 171.15625 L 539.441406 171.066406 L 539.746094 170.964844 L 540.054688 170.851562 L 540.363281 170.734375 L 540.671875 170.601562 L 540.980469 170.464844 L 541.285156 170.316406 L 541.59375 170.15625 L 541.902344 169.988281 L 542.210938 169.808594 L 542.515625 169.621094 L 542.824219 169.425781 L 543.132812 169.21875 L 543.441406 169.003906 L 543.75 168.777344 L 544.054688 168.539062 L 544.363281 168.296875 L 544.671875 168.039062 L 544.980469 167.777344 L 545.289062 167.503906 L 545.59375 167.21875 L 545.902344 166.925781 L 546.210938 166.621094 L 546.519531 166.308594 L 546.824219 165.988281 L 547.132812 165.65625 L 547.441406 165.3125 L 547.75 164.964844 L 548.058594 164.601562 L 548.363281 164.230469 L 548.671875 163.851562 L 548.980469 163.460938 L 549.289062 163.0625 L 549.59375 162.65625 L 549.902344 162.238281 L 550.210938 161.808594 L 550.519531 161.371094 L 550.828125 160.925781 L 551.132812 160.46875 L 551.441406 160 L 551.75 159.523438 L 552.058594 159.039062 L 552.363281 158.542969 L 552.671875 158.039062 L 552.980469 157.523438 L 553.289062 157 L 553.597656 156.464844 L 553.902344 155.921875 L 554.210938 155.371094 L 554.519531 154.808594 L 554.828125 154.234375 L 555.132812 153.652344 L 555.441406 153.0625 L 555.75 152.460938 L 556.058594 151.851562 L 556.367188 151.230469 L 556.671875 150.601562 L 556.980469 149.960938 L 557.289062 149.3125 L 557.597656 148.652344 L 557.902344 147.984375 L 558.210938 147.304688 L 558.519531 146.617188 L 558.828125 145.921875 L 559.136719 145.214844 L 559.441406 144.5 L 559.75 143.773438 L 560.058594 143.035156 L 560.367188 142.292969 L 560.671875 141.535156 L 560.980469 140.773438 L 561.289062 139.996094 L 561.597656 139.214844 L 561.90625 138.421875 L 562.210938 137.617188 L 562.519531 136.804688 L 562.828125 135.984375 L 563.136719 135.152344 L 563.445312 134.308594 L 563.75 133.457031 L 564.058594 132.597656 L 564.367188 131.726562 L 564.675781 130.847656 L 564.980469 129.957031 L 565.289062 129.058594 L 565.597656 128.148438 L 565.90625 127.230469 L 566.214844 126.304688 L 566.519531 125.367188 L 566.828125 124.417969 L 567.136719 123.460938 L 567.445312 122.496094 L 567.75 121.519531 L 568.058594 120.53125 L 568.367188 119.539062 L 568.675781 118.53125 L 568.984375 117.519531 L 569.289062 116.492188 L 569.597656 115.460938 L 569.90625 114.417969 L 570.214844 113.363281 L 570.519531 112.300781 L 570.828125 111.230469 L 571.136719 110.148438 L 571.445312 109.054688 L 571.753906 107.953125 L 572.058594 106.84375 L 572.367188 105.722656 L 572.675781 104.59375 L 572.984375 103.453125 L 573.289062 102.304688 L 573.597656 101.144531 L 573.90625 99.976562 L 574.214844 98.796875 L 574.523438 97.609375 L 574.828125 96.414062 L 575.136719 95.222656 L 575.445312 94.039062 L 575.753906 92.867188 L 576.058594 91.703125 L 576.367188 90.546875 L 576.675781 89.402344 L 576.984375 88.269531 L 577.292969 87.144531 L 577.597656 86.027344 L 577.90625 84.921875 L 578.214844 83.824219 L 578.523438 82.738281 L 578.832031 81.660156 L 579.136719 80.59375 L 579.445312 79.535156 L 579.753906 78.488281 L 580.0625 77.449219 L 580.367188 76.421875 L 580.675781 75.402344 L 580.984375 74.390625 L 581.292969 73.390625 L 581.601562 72.402344 L 581.90625 71.417969 L 582.214844 70.449219 L 582.523438 69.488281 L 582.832031 68.535156 L 583.136719 67.59375 L 583.445312 66.660156 L 583.753906 65.734375 L 584.0625 64.824219 L 584.371094 63.917969 L 584.675781 63.023438 L 584.984375 62.140625 L 585.292969 61.265625 L 585.601562 60.398438 L 585.90625 59.542969 L 586.214844 58.695312 L 586.523438 57.859375 L 586.832031 57.03125 L 587.140625 56.214844 L 587.445312 55.40625 L 587.753906 54.609375 L 588.0625 53.820312 L 588.371094 53.042969 L 588.675781 52.273438 L 588.984375 51.511719 L 589.292969 50.761719 L 589.601562 50.023438 L 589.910156 49.292969 L 590.214844 48.570312 L 590.523438 47.859375 L 590.832031 47.15625 L 591.140625 46.464844 L 591.445312 45.78125 L 591.753906 45.109375 L 592.0625 44.445312 L 592.371094 43.789062 L 592.679688 43.144531 L 592.984375 42.511719 L 593.292969 41.886719 L 593.601562 41.269531 L 593.910156 40.664062 L 594.21875 40.070312 L 594.523438 39.480469 L 594.832031 38.90625 L 595.140625 38.335938 L 595.449219 37.78125 L 595.753906 37.230469 L 596.0625 36.691406 L 596.371094 36.164062 L 596.679688 35.644531 L 596.988281 35.136719 L 597.292969 34.636719 L 597.601562 34.144531 L 597.910156 33.664062 L 598.21875 33.191406 L 598.523438 32.730469 L 598.832031 32.277344 L 599.140625 31.835938 L 599.449219 31.402344 L 599.757812 30.980469 L 600.0625 30.566406 L 600.371094 30.164062 L 600.679688 29.769531 L 600.988281 29.382812 L 601.292969 29.007812 L 601.601562 28.644531 L 601.910156 28.289062 L 602.21875 27.941406 L 602.527344 27.605469 L 602.832031 27.277344 L 603.140625 26.960938 L 603.449219 26.652344 L 603.757812 26.355469 L 604.0625 26.066406 L 604.371094 25.789062 L 604.679688 25.519531 L 604.988281 25.257812 L 605.296875 25.007812 L 605.601562 24.769531 L 605.910156 24.539062 L 606.21875 24.316406 L 606.527344 24.105469 L 606.832031 23.902344 L 607.140625 23.710938 L 607.449219 23.527344 L 607.757812 23.355469 L 608.066406 23.191406 L 608.371094 23.039062 L 608.679688 22.894531 L 608.988281 22.757812 L 609.296875 22.632812 L 609.601562 22.519531 L 609.910156 22.410156 L 610.21875 22.316406 L 610.527344 22.230469 L 610.835938 22.152344 L 611.140625 22.085938 L 611.449219 22.027344 L 611.757812 21.980469 L 612.066406 21.941406 L 612.375 21.910156 L 612.679688 21.894531 L 612.988281 21.882812 L 613.296875 21.882812 L 613.605469 21.894531 L 613.910156 21.910156 L 614.21875 21.941406 L 614.527344 21.980469 L 614.835938 22.027344 L 615.144531 22.085938 L 615.449219 22.152344 L 615.757812 22.230469 L 616.066406 22.316406 L 616.375 22.410156 L 616.679688 22.519531 L 616.988281 22.632812 L 617.296875 22.757812 L 617.605469 22.894531 L 617.914062 23.039062 L 618.21875 23.191406 L 618.527344 23.355469 L 618.835938 23.527344 L 619.144531 23.710938 L 619.449219 23.902344 L 619.757812 24.105469 L 620.066406 24.316406 L 620.375 24.539062 L 620.683594 24.769531 L 620.988281 25.007812 L 621.296875 25.257812 L 621.605469 25.519531 L 621.914062 25.789062 L 622.21875 26.066406 L 622.527344 26.355469 L 622.835938 26.652344 L 623.144531 26.960938 L 623.453125 27.277344 L 623.757812 27.605469 L 624.066406 27.941406 L 624.375 28.289062 L 624.683594 28.644531 L 624.988281 29.007812 L 625.296875 29.382812 L 625.605469 29.769531 L 625.914062 30.164062 L 626.222656 30.566406 L 626.527344 30.980469 L 626.835938 31.402344 L 627.144531 31.835938 L 627.453125 32.277344 L 627.761719 32.730469 L 628.066406 33.191406 L 628.375 33.664062 L 628.683594 34.144531 L 628.992188 34.636719 L 629.296875 35.136719 L 629.605469 35.644531 L 629.914062 36.164062 L 630.222656 36.691406 L 630.53125 37.230469 L 630.835938 37.78125 L 631.144531 38.335938 L 631.453125 38.90625 L 631.761719 39.480469 L 632.066406 40.070312 L 632.375 40.664062 L 632.683594 41.269531 L 632.992188 41.886719 L 633.300781 42.511719 L 633.605469 43.144531 L 633.914062 43.789062 L 634.222656 44.445312 L 634.53125 45.109375 L 634.835938 45.78125 L 635.144531 46.464844 L 635.453125 47.15625 L 635.761719 47.859375 L 636.070312 48.570312 L 636.375 49.292969 L 636.683594 50.023438 L 636.992188 50.761719 L 637.300781 51.511719 L 637.605469 52.273438 L 637.914062 53.042969 L 638.222656 53.820312 L 638.53125 54.609375 L 638.839844 55.40625 L 639.144531 56.214844 L 639.453125 57.03125 L 639.761719 57.859375 L 640.070312 58.695312 L 640.375 59.542969 L 640.683594 60.398438 L 640.992188 61.265625 L 641.300781 62.140625 L 641.609375 63.023438 L 641.914062 63.917969 L 642.222656 64.824219 L 642.53125 65.734375 L 642.839844 66.660156 L 643.148438 67.59375 L 643.453125 68.535156 L 643.761719 69.488281 L 644.070312 70.449219 L 644.378906 71.417969 L 644.683594 72.402344 L 644.992188 73.390625 L 645.300781 74.390625 L 645.609375 75.402344 L 645.917969 76.421875 L 646.222656 77.449219 L 646.53125 78.488281 L 646.839844 79.535156 L 647.148438 80.59375 L 647.453125 81.660156 L 647.761719 82.738281 L 648.070312 83.824219 L 648.378906 84.921875 L 648.6875 86.027344 L 648.992188 87.144531 L 649.300781 88.269531 L 649.609375 89.402344 L 649.917969 90.546875 L 650.222656 91.703125 L 650.53125 92.867188 L 650.839844 94.039062 L 651.148438 95.222656 L 651.457031 96.414062 L 651.761719 97.609375 L 652.070312 98.796875 L 652.378906 99.976562 L 652.6875 101.144531 L 652.992188 102.304688 L 653.300781 103.453125 L 653.609375 104.59375 L 653.917969 105.722656 L 654.226562 106.84375 L 654.53125 107.953125 L 654.839844 109.054688 L 655.148438 110.148438 L 655.457031 111.230469 L 655.761719 112.300781 L 656.070312 113.363281 L 656.378906 114.417969 L 656.6875 115.460938 L 656.996094 116.492188 L 657.300781 117.519531 L 657.609375 118.53125 L 657.917969 119.539062 L 658.226562 120.53125 L 658.53125 121.519531 L 658.839844 122.496094 L 659.148438 123.460938 L 659.457031 124.417969 L 659.765625 125.367188 L 660.070312 126.304688 L 660.378906 127.230469 L 660.6875 128.148438 L 660.996094 129.058594 L 661.304688 129.957031 L 661.609375 130.847656 L 661.917969 131.726562 L 662.226562 132.597656 L 662.535156 133.457031 L 662.839844 134.308594 L 663.148438 135.152344 L 663.457031 135.984375 L 663.765625 136.804688 L 664.074219 137.617188 L 664.378906 138.421875 L 664.6875 139.214844 L 664.996094 139.996094 L 665.304688 140.773438 L 665.609375 141.535156 L 665.917969 142.292969 L 666.226562 143.035156 L 666.535156 143.773438 L 666.84375 144.5 L 667.148438 145.214844 L 667.457031 145.921875 L 667.765625 146.617188 L 668.074219 147.304688 L 668.378906 147.984375 L 668.6875 148.652344 L 668.996094 149.3125 L 669.304688 149.960938 L 669.613281 150.601562 L 669.917969 151.230469 L 670.226562 151.851562 L 670.535156 152.460938 L 670.84375 153.0625 L 671.148438 153.652344 L 671.457031 154.234375 L 671.765625 154.808594 L 672.074219 155.371094 L 672.382812 155.921875 L 672.6875 156.464844 L 672.996094 157 L 673.304688 157.523438 L 673.613281 158.039062 L 673.917969 158.542969 L 674.226562 159.039062 L 674.535156 159.523438 L 674.84375 160 L 675.152344 160.46875 L 675.457031 160.925781 L 675.765625 161.371094 L 676.074219 161.808594 L 676.382812 162.238281 L 676.691406 162.65625 L 676.996094 163.0625 L 677.304688 163.460938 L 677.613281 163.851562 L 677.921875 164.230469 L 678.226562 164.601562 L 678.535156 164.964844 L 678.84375 165.3125 L 679.152344 165.65625 L 679.460938 165.988281 L 679.765625 166.308594 L 680.074219 166.621094 L 680.382812 166.925781 L 680.691406 167.21875 L 680.996094 167.503906 L 681.304688 167.777344 L 681.613281 168.039062 L 681.921875 168.296875 L 682.230469 168.539062 L 682.535156 168.777344 L 682.84375 169.003906 L 683.152344 169.21875 L 683.460938 169.425781 L 683.765625 169.621094 L 684.074219 169.808594 L 684.382812 169.988281 L 684.691406 170.15625 L 685 170.316406 L 685.304688 170.464844 L 685.613281 170.601562 L 685.921875 170.734375 L 686.230469 170.851562 L 686.535156 170.964844 L 686.84375 171.066406 L 687.152344 171.15625 L 687.460938 171.238281 L 687.769531 171.308594 L 688.074219 171.371094 L 688.382812 171.425781 L 688.691406 171.46875 L 689 171.503906 L 689.304688 171.527344 L 689.613281 171.542969 L 689.921875 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="137.566406"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="137.566406"/>
+ <use xlink:href="#glyph0-3" x="510.926819" y="137.566406"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="137.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="100.152344"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="100.152344"/>
+ <use xlink:href="#glyph0-4" x="510.926819" y="100.152344"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="100.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="62.734375"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="62.734375"/>
+ <use xlink:href="#glyph0-5" x="510.926819" y="62.734375"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="62.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="502.925781" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 171.546875 L 528.683594 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 134.128906 L 528.683594 134.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 96.714844 L 528.683594 96.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 59.296875 L 528.683594 59.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 21.882812 L 528.683594 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 183.28125 L 536.363281 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 183.28125 L 574.753906 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 183.28125 L 613.140625 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 183.28125 L 651.53125 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 183.28125 L 689.921875 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="527.027344" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="532.36293" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="535.028381" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="540.363968" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="565.417969" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="570.753555" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="573.419006" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="578.754593" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="603.804688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="609.140274" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="611.805725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="617.141312" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="642.195312" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="647.530899" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="650.19635" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="655.531937" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="680.585938" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="685.921524" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="688.586975" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="693.922562" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="610.140625" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="496.324219" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="496.324219" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="496.324219" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="496.324219" y="90.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-10" x="498.34375" y="10.800781"/>
+ <use xlink:href="#glyph5-3" x="506.347656" y="10.800781"/>
+ <use xlink:href="#glyph5-11" x="509.681641" y="10.800781"/>
+ <use xlink:href="#glyph5-12" x="517.685547" y="10.800781"/>
+ <use xlink:href="#glyph5-4" x="525.015625" y="10.800781"/>
+ <use xlink:href="#glyph5-13" x="531.689453" y="10.800781"/>
+ <use xlink:href="#glyph5-8" x="539.019531" y="10.800781"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 0 432 L 237.332031 432 L 237.332031 216 L 0 216 Z "/>
+<g clip-path="url(#clip62)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 432 L 237.332031 432 L 237.332031 216 L 0 216 Z "/>
+</g>
+<g clip-path="url(#clip63)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 395.027344 L 222.933594 395.027344 L 222.933594 230.398438 L 54.019531 230.398438 Z "/>
+</g>
+<g clip-path="url(#clip64)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 368.839844 L 222.933594 368.839844 "/>
+</g>
+<g clip-path="url(#clip65)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 331.421875 L 222.933594 331.421875 "/>
+</g>
+<g clip-path="url(#clip66)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 294.007812 L 222.933594 294.007812 "/>
+</g>
+<g clip-path="url(#clip67)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 256.589844 L 222.933594 256.589844 "/>
+</g>
+<g clip-path="url(#clip68)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 80.890625 395.027344 L 80.890625 230.398438 "/>
+</g>
+<g clip-path="url(#clip69)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.28125 395.027344 L 119.28125 230.398438 "/>
+</g>
+<g clip-path="url(#clip70)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.671875 395.027344 L 157.671875 230.398438 "/>
+</g>
+<g clip-path="url(#clip71)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.058594 395.027344 L 196.058594 230.398438 "/>
+</g>
+<g clip-path="url(#clip72)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 387.546875 L 222.933594 387.546875 "/>
+</g>
+<g clip-path="url(#clip73)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 350.128906 L 222.933594 350.128906 "/>
+</g>
+<g clip-path="url(#clip74)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 312.714844 L 222.933594 312.714844 "/>
+</g>
+<g clip-path="url(#clip75)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 275.296875 L 222.933594 275.296875 "/>
+</g>
+<g clip-path="url(#clip76)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 237.882812 L 222.933594 237.882812 "/>
+</g>
+<g clip-path="url(#clip77)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 395.027344 L 61.695312 230.398438 "/>
+</g>
+<g clip-path="url(#clip78)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 395.027344 L 100.085938 230.398438 "/>
+</g>
+<g clip-path="url(#clip79)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 395.027344 L 138.476562 230.398438 "/>
+</g>
+<g clip-path="url(#clip80)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 395.027344 L 176.867188 230.398438 "/>
+</g>
+<g clip-path="url(#clip81)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 395.027344 L 215.253906 230.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 61.695312 387.546875 L 62.003906 386.347656 L 62.3125 385.144531 L 62.621094 383.945312 L 62.925781 382.746094 L 63.851562 379.148438 L 64.15625 377.949219 L 64.773438 375.550781 L 65.082031 374.347656 L 65.390625 373.148438 L 65.695312 371.949219 L 66.621094 368.351562 L 66.925781 367.152344 L 67.234375 365.953125 L 67.542969 364.75 L 68.160156 362.351562 L 68.464844 361.152344 L 69.390625 357.554688 L 69.695312 356.355469 L 70.003906 355.152344 L 70.929688 351.554688 L 71.234375 350.355469 L 72.160156 346.757812 L 72.46875 345.554688 L 72.773438 344.355469 L 73.699219 340.757812 L 74.003906 339.558594 L 74.621094 337.160156 L 74.929688 335.957031 L 75.238281 334.757812 L 75.542969 333.558594 L 76.46875 329.960938 L 76.773438 328.761719 L 77.082031 327.5625 L 77.390625 326.359375 L 78.007812 323.960938 L 78.3125 322.761719 L 79.238281 319.164062 L 79.542969 317.964844 L 79.851562 316.761719 L 80.777344 313.164062 L 81.082031 311.964844 L 82.007812 308.367188 L 82.3125 307.164062 L 83.546875 302.367188 L 83.851562 301.167969 L 84.46875 298.769531 L 84.777344 297.566406 L 85.082031 296.367188 L 86.316406 291.570312 L 86.621094 290.371094 L 86.929688 289.171875 L 87.238281 287.96875 L 87.855469 285.570312 L 88.160156 284.371094 L 89.085938 280.773438 L 89.390625 279.574219 L 89.699219 278.375 L 90.007812 277.171875 L 90.625 274.773438 L 90.929688 273.574219 L 91.855469 269.976562 L 92.160156 268.777344 L 92.46875 267.574219 L 93.394531 263.976562 L 93.699219 262.777344 L 94.625 259.179688 L 94.929688 257.976562 L 96.164062 253.179688 L 96.46875 251.980469 L 97.085938 249.582031 L 97.394531 248.378906 L 97.699219 247.179688 L 98.933594 242.382812 L 99.238281 241.183594 L 99.546875 239.984375 L 99.855469 238.78125 L 100.164062 237.882812 L 176.789062 237.882812 L 177.097656 238.78125 L 177.402344 239.984375 L 178.636719 244.78125 L 178.941406 245.980469 L 179.558594 248.378906 L 179.867188 249.582031 L 180.171875 250.78125 L 181.40625 255.578125 L 181.710938 256.777344 L 182.019531 257.976562 L 182.328125 259.179688 L 182.636719 260.378906 L 182.941406 261.578125 L 184.175781 266.375 L 184.480469 267.574219 L 184.789062 268.777344 L 185.714844 272.375 L 186.019531 273.574219 L 186.945312 277.171875 L 187.25 278.375 L 188.484375 283.171875 L 188.789062 284.371094 L 189.714844 287.96875 L 190.019531 289.171875 L 191.253906 293.96875 L 191.558594 295.167969 L 192.175781 297.566406 L 192.484375 298.769531 L 192.789062 299.96875 L 194.023438 304.765625 L 194.328125 305.964844 L 194.636719 307.164062 L 194.945312 308.367188 L 195.253906 309.566406 L 195.558594 310.765625 L 196.792969 315.5625 L 197.097656 316.761719 L 197.40625 317.964844 L 198.023438 320.363281 L 198.328125 321.5625 L 199.5625 326.359375 L 199.867188 327.5625 L 201.101562 332.359375 L 201.40625 333.558594 L 202.023438 335.957031 L 202.332031 337.160156 L 202.636719 338.359375 L 203.871094 343.15625 L 204.175781 344.355469 L 204.484375 345.554688 L 204.792969 346.757812 L 205.101562 347.957031 L 205.40625 349.15625 L 206.640625 353.953125 L 206.945312 355.152344 L 207.253906 356.355469 L 207.871094 358.753906 L 208.175781 359.953125 L 209.410156 364.75 L 209.714844 365.953125 L 210.640625 369.550781 L 210.945312 370.75 L 211.871094 374.347656 L 212.179688 375.550781 L 212.484375 376.75 L 213.410156 380.347656 L 213.714844 381.546875 L 214.640625 385.144531 L 214.949219 386.347656 L 215.253906 387.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="390.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="390.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="390.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="390.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="353.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="353.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="353.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="353.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="316.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="316.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="316.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="316.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="278.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="278.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="278.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="278.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="241.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="241.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="241.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="241.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 387.546875 L 54.019531 387.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 350.128906 L 54.019531 350.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 312.714844 L 54.019531 312.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 275.296875 L 54.019531 275.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 237.882812 L 54.019531 237.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 399.28125 L 61.695312 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 399.28125 L 100.085938 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 399.28125 L 138.476562 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 399.28125 L 176.867188 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 399.28125 L 215.253906 395.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="52.359375" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="57.694962" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="60.360413" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="65.695999" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="90.75" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="96.085587" y="408.992188"/>
+ <use xlink:href="#glyph0-3" x="98.751038" y="408.992188"/>
+ <use xlink:href="#glyph0-4" x="104.086624" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="129.140625" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="134.476212" y="408.992188"/>
+ <use xlink:href="#glyph0-4" x="137.141663" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="142.477249" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="167.53125" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="172.866837" y="408.992188"/>
+ <use xlink:href="#glyph0-5" x="175.532288" y="408.992188"/>
+ <use xlink:href="#glyph0-4" x="180.867874" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="205.917969" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="211.253555" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="213.919006" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="219.254593" y="408.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="135.476562" y="421.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="324.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="317.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="312.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="306.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-1" x="28.335938" y="226.800781"/>
+ <use xlink:href="#glyph5-2" x="35.666016" y="226.800781"/>
+ <use xlink:href="#glyph5-4" x="40.335938" y="226.800781"/>
+ <use xlink:href="#glyph5-13" x="47.009766" y="226.800781"/>
+ <use xlink:href="#glyph5-8" x="54.339844" y="226.800781"/>
+ <use xlink:href="#glyph5-14" x="61.013672" y="226.800781"/>
+ <use xlink:href="#glyph5-15" x="67.013672" y="226.800781"/>
+ <use xlink:href="#glyph5-3" x="74.34375" y="226.800781"/>
+ <use xlink:href="#glyph5-16" x="77.677734" y="226.800781"/>
+</g>
+<g clip-path="url(#clip82)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 237.332031 432 L 474.664062 432 L 474.664062 216 L 237.332031 216 Z "/>
+</g>
+<g clip-path="url(#clip83)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.332031 432 L 474.664062 432 L 474.664062 216 L 237.332031 216 Z "/>
+</g>
+<g clip-path="url(#clip84)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 291.351562 395.027344 L 460.265625 395.027344 L 460.265625 230.398438 L 291.351562 230.398438 Z "/>
+</g>
+<g clip-path="url(#clip85)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 368.835938 L 460.265625 368.835938 "/>
+</g>
+<g clip-path="url(#clip86)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 331.421875 L 460.265625 331.421875 "/>
+</g>
+<g clip-path="url(#clip87)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 294.003906 L 460.265625 294.003906 "/>
+</g>
+<g clip-path="url(#clip88)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 256.589844 L 460.265625 256.589844 "/>
+</g>
+<g clip-path="url(#clip89)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.222656 395.027344 L 318.222656 230.398438 "/>
+</g>
+<g clip-path="url(#clip90)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.613281 395.027344 L 356.613281 230.398438 "/>
+</g>
+<g clip-path="url(#clip91)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.003906 395.027344 L 395.003906 230.398438 "/>
+</g>
+<g clip-path="url(#clip92)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.394531 395.027344 L 433.394531 230.398438 "/>
+</g>
+<g clip-path="url(#clip93)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 387.546875 L 460.265625 387.546875 "/>
+</g>
+<g clip-path="url(#clip94)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 350.128906 L 460.265625 350.128906 "/>
+</g>
+<g clip-path="url(#clip95)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 312.714844 L 460.265625 312.714844 "/>
+</g>
+<g clip-path="url(#clip96)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 275.296875 L 460.265625 275.296875 "/>
+</g>
+<g clip-path="url(#clip97)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 237.882812 L 460.265625 237.882812 "/>
+</g>
+<g clip-path="url(#clip98)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 395.027344 L 299.03125 230.398438 "/>
+</g>
+<g clip-path="url(#clip99)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 395.027344 L 337.417969 230.398438 "/>
+</g>
+<g clip-path="url(#clip100)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 395.027344 L 375.808594 230.398438 "/>
+</g>
+<g clip-path="url(#clip101)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 395.027344 L 414.199219 230.398438 "/>
+</g>
+<g clip-path="url(#clip102)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 395.027344 L 452.589844 230.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 299.03125 387.546875 L 299.335938 387.539062 L 299.644531 387.523438 L 299.953125 387.492188 L 300.261719 387.449219 L 300.566406 387.398438 L 300.875 387.332031 L 301.183594 387.253906 L 301.492188 387.167969 L 301.800781 387.066406 L 302.105469 386.953125 L 302.414062 386.828125 L 302.722656 386.691406 L 303.03125 386.546875 L 303.335938 386.386719 L 303.644531 386.214844 L 303.953125 386.03125 L 304.261719 385.839844 L 304.570312 385.632812 L 304.875 385.414062 L 305.183594 385.183594 L 305.492188 384.945312 L 305.800781 384.691406 L 306.105469 384.429688 L 306.414062 384.15625 L 306.722656 383.867188 L 307.03125 383.570312 L 307.339844 383.261719 L 307.644531 382.941406 L 307.953125 382.613281 L 308.261719 382.269531 L 308.570312 381.917969 L 308.878906 381.554688 L 309.183594 381.179688 L 309.492188 380.792969 L 309.800781 380.394531 L 310.109375 379.988281 L 310.414062 379.570312 L 310.722656 379.140625 L 311.03125 378.703125 L 311.339844 378.253906 L 311.648438 377.792969 L 311.953125 377.324219 L 312.261719 376.84375 L 312.570312 376.351562 L 312.878906 375.851562 L 313.183594 375.339844 L 313.492188 374.820312 L 313.800781 374.289062 L 314.109375 373.75 L 314.417969 373.199219 L 314.722656 372.640625 L 315.03125 372.070312 L 315.339844 371.492188 L 315.648438 370.902344 L 315.953125 370.308594 L 316.261719 369.699219 L 316.570312 369.085938 L 316.878906 368.460938 L 317.1875 367.828125 L 317.492188 367.1875 L 317.800781 366.535156 L 318.109375 365.878906 L 318.417969 365.210938 L 318.722656 364.535156 L 319.03125 363.851562 L 319.339844 363.160156 L 319.648438 362.457031 L 319.957031 361.75 L 320.261719 361.035156 L 320.570312 360.3125 L 320.878906 359.582031 L 321.1875 358.84375 L 321.492188 358.097656 L 321.800781 357.34375 L 322.109375 356.585938 L 322.417969 355.816406 L 322.726562 355.042969 L 323.03125 354.265625 L 323.339844 353.476562 L 323.648438 352.683594 L 323.957031 351.882812 L 324.265625 351.078125 L 324.570312 350.265625 L 324.878906 349.449219 L 325.1875 348.625 L 325.496094 347.792969 L 325.800781 346.960938 L 326.417969 345.273438 L 326.726562 344.421875 L 327.035156 343.566406 L 327.339844 342.707031 L 327.648438 341.839844 L 327.957031 340.96875 L 328.265625 340.09375 L 328.570312 339.214844 L 328.878906 338.332031 L 329.1875 337.445312 L 329.496094 336.554688 L 329.804688 335.660156 L 330.109375 334.761719 L 330.417969 333.859375 L 330.726562 332.953125 L 331.035156 332.042969 L 331.339844 331.132812 L 331.648438 330.21875 L 331.957031 329.300781 L 332.574219 327.457031 L 332.878906 326.53125 L 333.1875 325.605469 L 333.804688 323.746094 L 334.109375 322.8125 L 334.417969 321.878906 L 335.34375 319.066406 L 335.648438 318.128906 L 336.574219 315.304688 L 336.878906 314.363281 L 337.1875 313.421875 L 337.496094 312.476562 L 338.113281 310.59375 L 338.417969 309.652344 L 339.035156 307.769531 L 339.34375 306.832031 L 339.648438 305.890625 L 339.957031 304.953125 L 340.265625 304.019531 L 340.574219 303.082031 L 340.882812 302.148438 L 341.1875 301.21875 L 341.496094 300.285156 L 342.421875 297.507812 L 342.726562 296.585938 L 343.035156 295.667969 L 343.652344 293.839844 L 343.957031 292.929688 L 344.574219 291.117188 L 345.191406 289.320312 L 345.496094 288.425781 L 346.113281 286.652344 L 346.421875 285.773438 L 346.726562 284.894531 L 347.035156 284.023438 L 347.34375 283.15625 L 347.652344 282.292969 L 347.960938 281.433594 L 348.265625 280.578125 L 348.574219 279.730469 L 348.882812 278.886719 L 349.191406 278.050781 L 349.496094 277.21875 L 349.804688 276.390625 L 350.113281 275.570312 L 350.421875 274.753906 L 350.730469 273.945312 L 351.035156 273.144531 L 351.34375 272.347656 L 351.652344 271.554688 L 351.960938 270.773438 L 352.265625 269.996094 L 352.574219 269.226562 L 352.882812 268.460938 L 353.191406 267.707031 L 353.5 266.957031 L 353.804688 266.214844 L 354.113281 265.480469 L 354.421875 264.753906 L 354.730469 264.035156 L 355.035156 263.320312 L 355.34375 262.617188 L 355.652344 261.921875 L 355.960938 261.234375 L 356.269531 260.554688 L 356.574219 259.882812 L 356.882812 259.21875 L 357.191406 258.566406 L 357.5 257.917969 L 357.808594 257.28125 L 358.113281 256.652344 L 358.421875 256.035156 L 358.730469 255.421875 L 359.039062 254.820312 L 359.34375 254.230469 L 359.652344 253.644531 L 359.960938 253.070312 L 360.269531 252.507812 L 360.578125 251.953125 L 360.882812 251.40625 L 361.191406 250.871094 L 361.5 250.347656 L 361.808594 249.832031 L 362.113281 249.324219 L 362.421875 248.828125 L 362.730469 248.34375 L 363.039062 247.867188 L 363.347656 247.402344 L 363.652344 246.949219 L 363.960938 246.503906 L 364.269531 246.070312 L 364.578125 245.648438 L 364.882812 245.234375 L 365.191406 244.832031 L 365.5 244.441406 L 365.808594 244.0625 L 366.117188 243.691406 L 366.421875 243.332031 L 366.730469 242.984375 L 367.039062 242.648438 L 367.347656 242.324219 L 367.652344 242.007812 L 367.960938 241.707031 L 368.269531 241.414062 L 368.578125 241.132812 L 368.886719 240.863281 L 369.191406 240.605469 L 369.5 240.359375 L 369.808594 240.125 L 370.117188 239.902344 L 370.421875 239.691406 L 370.730469 239.492188 L 371.039062 239.300781 L 371.347656 239.125 L 371.65625 238.960938 L 371.960938 238.808594 L 372.269531 238.664062 L 372.578125 238.535156 L 372.886719 238.417969 L 373.195312 238.308594 L 373.5 238.214844 L 373.808594 238.132812 L 374.117188 238.0625 L 374.425781 238 L 374.730469 237.953125 L 375.039062 237.917969 L 375.347656 237.894531 L 375.65625 237.882812 L 375.964844 237.882812 L 376.269531 237.894531 L 376.578125 237.917969 L 376.886719 237.953125 L 377.195312 238 L 377.5 238.0625 L 377.808594 238.132812 L 378.117188 238.214844 L 378.425781 238.308594 L 378.734375 238.417969 L 379.039062 238.535156 L 379.347656 238.664062 L 379.65625 238.808594 L 379.964844 238.960938 L 380.269531 239.125 L 380.578125 239.300781 L 380.886719 239.492188 L 381.195312 239.691406 L 381.503906 239.902344 L 381.808594 240.125 L 382.117188 240.359375 L 382.425781 240.605469 L 382.734375 240.863281 L 383.039062 241.132812 L 383.347656 241.414062 L 383.65625 241.707031 L 383.964844 242.007812 L 384.273438 242.324219 L 384.578125 242.648438 L 384.886719 242.984375 L 385.195312 243.332031 L 385.503906 243.691406 L 385.808594 244.0625 L 386.117188 244.441406 L 386.425781 244.832031 L 386.734375 245.234375 L 387.042969 245.648438 L 387.347656 246.070312 L 387.65625 246.503906 L 387.964844 246.949219 L 388.273438 247.402344 L 388.578125 247.867188 L 388.886719 248.34375 L 389.195312 248.828125 L 389.503906 249.324219 L 389.8125 249.832031 L 390.117188 250.347656 L 390.425781 250.871094 L 390.734375 251.40625 L 391.042969 251.953125 L 391.351562 252.507812 L 391.65625 253.070312 L 391.964844 253.644531 L 392.273438 254.230469 L 392.582031 254.820312 L 392.886719 255.421875 L 393.195312 256.035156 L 393.503906 256.652344 L 393.8125 257.28125 L 394.121094 257.917969 L 394.425781 258.566406 L 394.734375 259.21875 L 395.042969 259.882812 L 395.351562 260.554688 L 395.65625 261.234375 L 395.964844 261.921875 L 396.273438 262.617188 L 396.582031 263.320312 L 396.890625 264.035156 L 397.195312 264.753906 L 397.503906 265.480469 L 397.8125 266.214844 L 398.121094 266.957031 L 398.425781 267.707031 L 398.734375 268.460938 L 399.042969 269.226562 L 399.351562 269.996094 L 399.660156 270.773438 L 399.964844 271.554688 L 400.273438 272.347656 L 400.582031 273.144531 L 400.890625 273.945312 L 401.195312 274.753906 L 401.503906 275.570312 L 401.8125 276.390625 L 402.121094 277.21875 L 402.429688 278.050781 L 402.734375 278.886719 L 403.042969 279.730469 L 403.351562 280.578125 L 403.660156 281.433594 L 403.964844 282.292969 L 404.273438 283.15625 L 404.582031 284.023438 L 404.890625 284.894531 L 405.199219 285.773438 L 405.503906 286.652344 L 406.121094 288.425781 L 406.429688 289.320312 L 406.738281 290.21875 L 407.042969 291.117188 L 407.660156 292.929688 L 407.96875 293.839844 L 408.273438 294.753906 L 408.582031 295.667969 L 408.890625 296.585938 L 409.199219 297.507812 L 409.507812 298.433594 L 409.8125 299.359375 L 410.121094 300.285156 L 410.429688 301.21875 L 410.738281 302.148438 L 411.042969 303.082031 L 411.351562 304.019531 L 411.660156 304.953125 L 411.96875 305.890625 L 412.277344 306.832031 L 412.582031 307.769531 L 413.507812 310.59375 L 413.8125 311.535156 L 414.121094 312.476562 L 414.429688 313.421875 L 415.046875 315.304688 L 415.351562 316.246094 L 415.96875 318.128906 L 416.277344 319.066406 L 416.582031 320.003906 L 417.199219 321.878906 L 417.816406 323.746094 L 418.121094 324.675781 L 418.429688 325.605469 L 419.046875 327.457031 L 419.351562 328.378906 L 419.660156 329.300781 L 419.96875 330.21875 L 420.277344 331.132812 L 420.585938 332.042969 L 420.890625 332.953125 L 421.199219 333.859375 L 421.507812 334.761719 L 421.816406 335.660156 L 422.125 336.554688 L 422.429688 337.445312 L 422.738281 338.332031 L 423.046875 339.214844 L 423.355469 340.09375 L 423.660156 340.96875 L 423.96875 341.839844 L 424.277344 342.707031 L 424.585938 343.566406 L 424.894531 344.421875 L 425.199219 345.273438 L 425.816406 346.960938 L 426.125 347.792969 L 426.429688 348.625 L 426.738281 349.449219 L 427.046875 350.265625 L 427.355469 351.078125 L 427.664062 351.882812 L 427.96875 352.683594 L 428.277344 353.476562 L 428.585938 354.265625 L 428.894531 355.042969 L 429.199219 355.816406 L 429.507812 356.585938 L 429.816406 357.34375 L 430.125 358.097656 L 430.433594 358.84375 L 430.738281 359.582031 L 431.046875 360.3125 L 431.355469 361.035156 L 431.664062 361.75 L 431.96875 362.457031 L 432.277344 363.160156 L 432.585938 363.851562 L 432.894531 364.535156 L 433.203125 365.210938 L 433.507812 365.878906 L 433.816406 366.535156 L 434.125 367.1875 L 434.433594 367.828125 L 434.738281 368.460938 L 435.046875 369.085938 L 435.355469 369.699219 L 435.664062 370.308594 L 435.972656 370.902344 L 436.277344 371.492188 L 436.585938 372.070312 L 436.894531 372.640625 L 437.203125 373.199219 L 437.507812 373.75 L 437.816406 374.289062 L 438.125 374.820312 L 438.433594 375.339844 L 438.742188 375.851562 L 439.046875 376.351562 L 439.355469 376.84375 L 439.664062 377.324219 L 439.972656 377.792969 L 440.28125 378.253906 L 440.585938 378.703125 L 440.894531 379.140625 L 441.203125 379.570312 L 441.511719 379.988281 L 441.816406 380.394531 L 442.125 380.792969 L 442.433594 381.179688 L 442.742188 381.554688 L 443.050781 381.917969 L 443.355469 382.269531 L 443.664062 382.613281 L 443.972656 382.941406 L 444.28125 383.261719 L 444.585938 383.570312 L 444.894531 383.867188 L 445.203125 384.15625 L 445.511719 384.429688 L 445.820312 384.691406 L 446.125 384.945312 L 446.433594 385.183594 L 446.742188 385.414062 L 447.050781 385.632812 L 447.355469 385.839844 L 447.664062 386.03125 L 447.972656 386.214844 L 448.28125 386.386719 L 448.589844 386.546875 L 448.894531 386.691406 L 449.203125 386.828125 L 449.511719 386.953125 L 449.820312 387.066406 L 450.125 387.167969 L 450.433594 387.253906 L 450.742188 387.332031 L 451.050781 387.398438 L 451.359375 387.449219 L 451.664062 387.492188 L 451.972656 387.523438 L 452.28125 387.539062 L 452.589844 387.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="390.984375"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="390.984375"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="390.984375"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="390.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="353.566406"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="353.566406"/>
+ <use xlink:href="#glyph0-3" x="273.594788" y="353.566406"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="353.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="316.152344"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="316.152344"/>
+ <use xlink:href="#glyph0-4" x="273.594788" y="316.152344"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="316.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="278.734375"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="278.734375"/>
+ <use xlink:href="#glyph0-5" x="273.594788" y="278.734375"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="278.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="265.59375" y="241.320312"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="241.320312"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="241.320312"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="241.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 387.546875 L 291.351562 387.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 350.128906 L 291.351562 350.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 312.714844 L 291.351562 312.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 275.296875 L 291.351562 275.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 237.882812 L 291.351562 237.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 399.28125 L 299.03125 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 399.28125 L 337.417969 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 399.28125 L 375.808594 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 399.28125 L 414.199219 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 399.28125 L 452.589844 395.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="289.695312" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="295.030899" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="297.69635" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="303.031937" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="328.082031" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="333.417618" y="408.992188"/>
+ <use xlink:href="#glyph0-3" x="336.083069" y="408.992188"/>
+ <use xlink:href="#glyph0-4" x="341.418655" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="366.472656" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="371.808243" y="408.992188"/>
+ <use xlink:href="#glyph0-4" x="374.473694" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="379.80928" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="404.863281" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="410.198868" y="408.992188"/>
+ <use xlink:href="#glyph0-5" x="412.864319" y="408.992188"/>
+ <use xlink:href="#glyph0-4" x="418.199905" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="443.253906" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="448.589493" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="451.254944" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="456.59053" y="408.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="372.808594" y="421.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="258.992188" y="324.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="258.992188" y="317.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="258.992188" y="312.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="258.992188" y="306.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-17" x="257.335938" y="226.800781"/>
+ <use xlink:href="#glyph5-15" x="266.001953" y="226.800781"/>
+ <use xlink:href="#glyph5-18" x="273.332031" y="226.800781"/>
+ <use xlink:href="#glyph5-3" x="280.005859" y="226.800781"/>
+ <use xlink:href="#glyph5-5" x="283.339844" y="226.800781"/>
+ <use xlink:href="#glyph5-8" x="290.669922" y="226.800781"/>
+</g>
+<g clip-path="url(#clip103)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 474.667969 432 L 712 432 L 712 216 L 474.667969 216 Z "/>
+</g>
+<g clip-path="url(#clip104)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 474.667969 432 L 712 432 L 712 216 L 474.667969 216 Z "/>
+</g>
+<g clip-path="url(#clip105)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 528.683594 395.027344 L 697.597656 395.027344 L 697.597656 230.398438 L 528.683594 230.398438 Z "/>
+</g>
+<g clip-path="url(#clip106)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 369.476562 L 697.601562 369.476562 "/>
+</g>
+<g clip-path="url(#clip107)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 331.292969 L 697.601562 331.292969 "/>
+</g>
+<g clip-path="url(#clip108)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 293.113281 L 697.601562 293.113281 "/>
+</g>
+<g clip-path="url(#clip109)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 254.929688 L 697.601562 254.929688 "/>
+</g>
+<g clip-path="url(#clip110)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 555.558594 395.027344 L 555.558594 230.398438 "/>
+</g>
+<g clip-path="url(#clip111)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 593.949219 395.027344 L 593.949219 230.398438 "/>
+</g>
+<g clip-path="url(#clip112)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 632.335938 395.027344 L 632.335938 230.398438 "/>
+</g>
+<g clip-path="url(#clip113)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 670.726562 395.027344 L 670.726562 230.398438 "/>
+</g>
+<g clip-path="url(#clip114)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 388.566406 L 697.601562 388.566406 "/>
+</g>
+<g clip-path="url(#clip115)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 350.386719 L 697.601562 350.386719 "/>
+</g>
+<g clip-path="url(#clip116)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 312.203125 L 697.601562 312.203125 "/>
+</g>
+<g clip-path="url(#clip117)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 274.019531 L 697.601562 274.019531 "/>
+</g>
+<g clip-path="url(#clip118)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 235.839844 L 697.601562 235.839844 "/>
+</g>
+<g clip-path="url(#clip119)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 395.027344 L 536.363281 230.398438 "/>
+</g>
+<g clip-path="url(#clip120)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 395.027344 L 574.753906 230.398438 "/>
+</g>
+<g clip-path="url(#clip121)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 395.027344 L 613.140625 230.398438 "/>
+</g>
+<g clip-path="url(#clip122)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 395.027344 L 651.53125 230.398438 "/>
+</g>
+<g clip-path="url(#clip123)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 395.027344 L 689.921875 230.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 536.363281 387.546875 L 536.671875 387.503906 L 536.976562 387.460938 L 537.285156 387.417969 L 537.59375 387.371094 L 538.210938 387.269531 L 538.515625 387.21875 L 538.824219 387.164062 L 539.441406 387.046875 L 539.746094 386.984375 L 540.054688 386.921875 L 540.363281 386.855469 L 540.980469 386.714844 L 541.285156 386.636719 L 541.59375 386.5625 L 541.902344 386.480469 L 542.210938 386.394531 L 542.515625 386.308594 L 542.824219 386.21875 L 543.441406 386.023438 L 543.75 385.921875 L 544.054688 385.816406 L 544.363281 385.707031 L 544.980469 385.472656 L 545.289062 385.347656 L 545.59375 385.21875 L 545.902344 385.085938 L 546.210938 384.945312 L 546.519531 384.800781 L 546.824219 384.652344 L 547.132812 384.496094 L 547.441406 384.332031 L 547.75 384.164062 L 548.058594 383.988281 L 548.363281 383.808594 L 548.671875 383.621094 L 548.980469 383.425781 L 549.289062 383.222656 L 549.59375 383.011719 L 549.902344 382.792969 L 550.210938 382.566406 L 550.519531 382.332031 L 550.828125 382.085938 L 551.132812 381.832031 L 551.441406 381.570312 L 551.75 381.296875 L 552.058594 381.015625 L 552.363281 380.722656 L 552.671875 380.417969 L 552.980469 380.101562 L 553.289062 379.777344 L 553.597656 379.4375 L 553.902344 379.089844 L 554.210938 378.726562 L 554.519531 378.351562 L 554.828125 377.960938 L 555.132812 377.558594 L 555.441406 377.144531 L 555.75 376.710938 L 556.058594 376.265625 L 556.367188 375.804688 L 556.671875 375.328125 L 556.980469 374.835938 L 557.289062 374.328125 L 557.597656 373.800781 L 557.902344 373.257812 L 558.210938 372.695312 L 558.519531 372.117188 L 558.828125 371.519531 L 559.136719 370.902344 L 559.441406 370.265625 L 559.75 369.609375 L 560.058594 368.933594 L 560.367188 368.238281 L 560.671875 367.523438 L 560.980469 366.785156 L 561.289062 366.027344 L 561.597656 365.246094 L 561.90625 364.441406 L 562.210938 363.617188 L 562.519531 362.769531 L 562.828125 361.898438 L 563.136719 361.003906 L 563.445312 360.085938 L 563.75 359.144531 L 564.058594 358.183594 L 564.367188 357.195312 L 564.675781 356.183594 L 564.980469 355.148438 L 565.289062 354.089844 L 565.597656 353.007812 L 565.90625 351.90625 L 566.214844 350.777344 L 566.519531 349.625 L 566.828125 348.449219 L 567.136719 347.253906 L 567.445312 346.035156 L 567.75 344.792969 L 568.058594 343.53125 L 568.367188 342.25 L 568.675781 340.945312 L 568.984375 339.621094 L 569.289062 338.28125 L 569.597656 336.917969 L 569.90625 335.539062 L 570.214844 334.144531 L 570.519531 332.734375 L 570.828125 331.304688 L 571.136719 329.863281 L 571.445312 328.410156 L 571.753906 326.941406 L 572.058594 325.464844 L 572.367188 323.972656 L 572.675781 322.476562 L 572.984375 320.96875 L 573.289062 319.457031 L 573.597656 317.9375 L 573.90625 316.414062 L 574.523438 313.359375 L 574.828125 311.828125 L 575.136719 310.296875 L 575.445312 308.769531 L 575.753906 307.246094 L 576.058594 305.722656 L 576.367188 304.207031 L 576.675781 302.695312 L 576.984375 301.195312 L 577.292969 299.703125 L 577.597656 298.21875 L 577.90625 296.746094 L 578.214844 295.285156 L 578.523438 293.835938 L 578.832031 292.402344 L 579.136719 290.980469 L 579.445312 289.578125 L 579.753906 288.191406 L 580.0625 286.820312 L 580.367188 285.46875 L 580.675781 284.136719 L 580.984375 282.824219 L 581.292969 281.53125 L 581.601562 280.261719 L 581.90625 279.007812 L 582.214844 277.78125 L 582.523438 276.574219 L 582.832031 275.386719 L 583.136719 274.226562 L 583.445312 273.085938 L 583.753906 271.972656 L 584.0625 270.878906 L 584.371094 269.808594 L 584.675781 268.765625 L 584.984375 267.742188 L 585.292969 266.742188 L 585.601562 265.769531 L 585.90625 264.820312 L 586.214844 263.890625 L 586.523438 262.988281 L 586.832031 262.105469 L 587.140625 261.246094 L 587.445312 260.414062 L 587.753906 259.601562 L 588.0625 258.808594 L 588.371094 258.039062 L 588.675781 257.292969 L 588.984375 256.566406 L 589.292969 255.863281 L 589.601562 255.179688 L 589.910156 254.515625 L 590.214844 253.871094 L 590.523438 253.25 L 590.832031 252.644531 L 591.140625 252.058594 L 591.445312 251.488281 L 591.753906 250.941406 L 592.0625 250.40625 L 592.371094 249.894531 L 592.679688 249.394531 L 592.984375 248.914062 L 593.292969 248.445312 L 593.601562 247.996094 L 593.910156 247.5625 L 594.21875 247.140625 L 594.523438 246.734375 L 594.832031 246.34375 L 595.140625 245.964844 L 595.449219 245.601562 L 595.753906 245.25 L 596.0625 244.910156 L 596.371094 244.582031 L 596.679688 244.265625 L 596.988281 243.960938 L 597.292969 243.667969 L 597.601562 243.386719 L 597.910156 243.113281 L 598.21875 242.851562 L 598.523438 242.597656 L 598.832031 242.355469 L 599.140625 242.125 L 599.449219 241.898438 L 599.757812 241.683594 L 600.0625 241.476562 L 600.371094 241.277344 L 600.679688 241.085938 L 600.988281 240.902344 L 601.292969 240.726562 L 601.601562 240.558594 L 601.910156 240.394531 L 602.21875 240.238281 L 602.527344 240.089844 L 602.832031 239.949219 L 603.140625 239.8125 L 603.449219 239.679688 L 603.757812 239.558594 L 604.0625 239.4375 L 604.371094 239.324219 L 604.679688 239.214844 L 604.988281 239.113281 L 605.296875 239.015625 L 605.601562 238.921875 L 605.910156 238.832031 L 606.527344 238.667969 L 606.832031 238.59375 L 607.140625 238.523438 L 607.449219 238.457031 L 607.757812 238.394531 L 608.066406 238.335938 L 608.371094 238.28125 L 608.679688 238.230469 L 608.988281 238.183594 L 609.296875 238.140625 L 609.601562 238.097656 L 609.910156 238.0625 L 610.527344 238 L 610.835938 237.972656 L 611.140625 237.949219 L 611.449219 237.929688 L 611.757812 237.914062 L 612.066406 237.902344 L 612.375 237.894531 L 612.679688 237.886719 L 612.988281 237.882812 L 613.296875 237.882812 L 613.605469 237.886719 L 613.910156 237.894531 L 614.21875 237.902344 L 614.527344 237.914062 L 614.835938 237.929688 L 615.144531 237.949219 L 615.449219 237.972656 L 615.757812 238 L 616.375 238.0625 L 616.679688 238.097656 L 617.296875 238.183594 L 617.605469 238.230469 L 617.914062 238.28125 L 618.21875 238.335938 L 618.527344 238.394531 L 618.835938 238.457031 L 619.144531 238.523438 L 619.449219 238.59375 L 619.757812 238.667969 L 620.375 238.832031 L 620.683594 238.921875 L 620.988281 239.015625 L 621.296875 239.113281 L 621.605469 239.214844 L 621.914062 239.324219 L 622.21875 239.4375 L 622.835938 239.679688 L 623.144531 239.8125 L 623.453125 239.949219 L 623.757812 240.089844 L 624.066406 240.238281 L 624.375 240.394531 L 624.683594 240.558594 L 624.988281 240.726562 L 625.296875 240.902344 L 625.605469 241.085938 L 625.914062 241.277344 L 626.222656 241.476562 L 626.527344 241.683594 L 626.835938 241.898438 L 627.144531 242.125 L 627.453125 242.355469 L 627.761719 242.597656 L 628.066406 242.851562 L 628.375 243.113281 L 628.683594 243.386719 L 628.992188 243.667969 L 629.296875 243.960938 L 629.605469 244.265625 L 629.914062 244.582031 L 630.222656 244.910156 L 630.53125 245.25 L 630.835938 245.601562 L 631.144531 245.964844 L 631.453125 246.34375 L 631.761719 246.734375 L 632.066406 247.140625 L 632.375 247.5625 L 632.683594 247.996094 L 632.992188 248.445312 L 633.300781 248.914062 L 633.605469 249.394531 L 633.914062 249.894531 L 634.222656 250.40625 L 634.53125 250.941406 L 634.835938 251.488281 L 635.144531 252.058594 L 635.453125 252.644531 L 635.761719 253.25 L 636.070312 253.871094 L 636.375 254.515625 L 636.683594 255.179688 L 636.992188 255.863281 L 637.300781 256.566406 L 637.605469 257.292969 L 637.914062 258.039062 L 638.222656 258.808594 L 638.53125 259.601562 L 638.839844 260.414062 L 639.144531 261.246094 L 639.453125 262.105469 L 639.761719 262.988281 L 640.070312 263.890625 L 640.375 264.820312 L 640.683594 265.769531 L 640.992188 266.742188 L 641.300781 267.742188 L 641.609375 268.765625 L 641.914062 269.808594 L 642.222656 270.878906 L 642.53125 271.972656 L 642.839844 273.085938 L 643.148438 274.226562 L 643.453125 275.386719 L 643.761719 276.574219 L 644.070312 277.78125 L 644.378906 279.007812 L 644.683594 280.261719 L 644.992188 281.53125 L 645.300781 282.824219 L 645.609375 284.136719 L 645.917969 285.46875 L 646.222656 286.820312 L 646.53125 288.191406 L 646.839844 289.578125 L 647.148438 290.980469 L 647.453125 292.402344 L 647.761719 293.835938 L 648.070312 295.285156 L 648.378906 296.746094 L 648.6875 298.21875 L 648.992188 299.703125 L 649.300781 301.195312 L 649.609375 302.695312 L 649.917969 304.207031 L 650.222656 305.722656 L 650.839844 308.769531 L 651.148438 310.296875 L 651.457031 311.828125 L 651.761719 313.359375 L 652.378906 316.414062 L 652.6875 317.9375 L 652.992188 319.457031 L 653.300781 320.96875 L 653.609375 322.476562 L 653.917969 323.972656 L 654.226562 325.464844 L 654.53125 326.941406 L 654.839844 328.410156 L 655.148438 329.863281 L 655.457031 331.304688 L 655.761719 332.734375 L 656.070312 334.144531 L 656.378906 335.539062 L 656.6875 336.917969 L 656.996094 338.28125 L 657.300781 339.621094 L 657.609375 340.945312 L 657.917969 342.25 L 658.226562 343.53125 L 658.53125 344.792969 L 658.839844 346.035156 L 659.148438 347.253906 L 659.457031 348.449219 L 659.765625 349.625 L 660.070312 350.777344 L 660.378906 351.90625 L 660.6875 353.007812 L 660.996094 354.089844 L 661.304688 355.148438 L 661.609375 356.183594 L 661.917969 357.195312 L 662.226562 358.183594 L 662.535156 359.144531 L 662.839844 360.085938 L 663.148438 361.003906 L 663.457031 361.898438 L 663.765625 362.769531 L 664.074219 363.617188 L 664.378906 364.441406 L 664.6875 365.246094 L 664.996094 366.027344 L 665.304688 366.785156 L 665.609375 367.523438 L 665.917969 368.238281 L 666.226562 368.933594 L 666.535156 369.609375 L 666.84375 370.265625 L 667.148438 370.902344 L 667.457031 371.519531 L 667.765625 372.117188 L 668.074219 372.695312 L 668.378906 373.257812 L 668.6875 373.800781 L 668.996094 374.328125 L 669.304688 374.835938 L 669.613281 375.328125 L 669.917969 375.804688 L 670.226562 376.265625 L 670.535156 376.710938 L 670.84375 377.144531 L 671.148438 377.558594 L 671.457031 377.960938 L 671.765625 378.351562 L 672.074219 378.726562 L 672.382812 379.089844 L 672.6875 379.4375 L 672.996094 379.777344 L 673.304688 380.101562 L 673.613281 380.417969 L 673.917969 380.722656 L 674.226562 381.015625 L 674.535156 381.296875 L 674.84375 381.570312 L 675.152344 381.832031 L 675.457031 382.085938 L 675.765625 382.332031 L 676.074219 382.566406 L 676.382812 382.792969 L 676.691406 383.011719 L 676.996094 383.222656 L 677.304688 383.425781 L 677.613281 383.621094 L 677.921875 383.808594 L 678.226562 383.988281 L 678.535156 384.164062 L 678.84375 384.332031 L 679.152344 384.496094 L 679.460938 384.652344 L 679.765625 384.800781 L 680.074219 384.945312 L 680.382812 385.085938 L 680.691406 385.21875 L 680.996094 385.347656 L 681.304688 385.472656 L 681.921875 385.707031 L 682.230469 385.816406 L 682.535156 385.921875 L 682.84375 386.023438 L 683.460938 386.21875 L 683.765625 386.308594 L 684.382812 386.480469 L 684.691406 386.5625 L 685 386.636719 L 685.304688 386.714844 L 685.921875 386.855469 L 686.230469 386.921875 L 686.535156 386.984375 L 686.84375 387.046875 L 687.460938 387.164062 L 687.769531 387.21875 L 688.074219 387.269531 L 688.691406 387.371094 L 689 387.417969 L 689.304688 387.460938 L 689.921875 387.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="392.003906"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="392.003906"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="392.003906"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="392.003906"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="353.824219"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="353.824219"/>
+ <use xlink:href="#glyph0-3" x="510.926819" y="353.824219"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="353.824219"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="315.640625"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="315.640625"/>
+ <use xlink:href="#glyph0-4" x="510.926819" y="315.640625"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="315.640625"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="277.457031"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="277.457031"/>
+ <use xlink:href="#glyph0-5" x="510.926819" y="277.457031"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="277.457031"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="502.925781" y="239.277344"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="239.277344"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="239.277344"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="239.277344"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 388.566406 L 528.683594 388.566406 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 350.386719 L 528.683594 350.386719 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 312.203125 L 528.683594 312.203125 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 274.019531 L 528.683594 274.019531 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 235.839844 L 528.683594 235.839844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 399.28125 L 536.363281 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 399.28125 L 574.753906 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 399.28125 L 613.140625 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 399.28125 L 651.53125 395.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 399.28125 L 689.921875 395.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="527.027344" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="532.36293" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="535.028381" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="540.363968" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="565.417969" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="570.753555" y="408.992188"/>
+ <use xlink:href="#glyph0-3" x="573.419006" y="408.992188"/>
+ <use xlink:href="#glyph0-4" x="578.754593" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="603.804688" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="609.140274" y="408.992188"/>
+ <use xlink:href="#glyph0-4" x="611.805725" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="617.141312" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="642.195312" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="647.530899" y="408.992188"/>
+ <use xlink:href="#glyph0-5" x="650.19635" y="408.992188"/>
+ <use xlink:href="#glyph0-4" x="655.531937" y="408.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="680.585938" y="408.992188"/>
+ <use xlink:href="#glyph0-2" x="685.921524" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="688.586975" y="408.992188"/>
+ <use xlink:href="#glyph0-1" x="693.922562" y="408.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="610.140625" y="421.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="496.324219" y="324.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="496.324219" y="317.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="496.324219" y="312.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="496.324219" y="306.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-11" x="527.675781" y="226.800781"/>
+ <use xlink:href="#glyph5-3" x="535.679688" y="226.800781"/>
+ <use xlink:href="#glyph5-6" x="539.013672" y="226.800781"/>
+ <use xlink:href="#glyph5-19" x="546.34375" y="226.800781"/>
+ <use xlink:href="#glyph5-15" x="557.013672" y="226.800781"/>
+ <use xlink:href="#glyph5-3" x="564.34375" y="226.800781"/>
+ <use xlink:href="#glyph5-16" x="567.677734" y="226.800781"/>
+ <use xlink:href="#glyph5-20" x="575.007812" y="226.800781"/>
+ <use xlink:href="#glyph5-3" x="583.673828" y="226.800781"/>
+ <use xlink:href="#glyph5-21" x="587.007812" y="226.800781"/>
+ <use xlink:href="#glyph5-21" x="591.003906" y="226.800781"/>
+ <use xlink:href="#glyph5-8" x="595" y="226.800781"/>
+ <use xlink:href="#glyph5-2" x="601.673828" y="226.800781"/>
+ <use xlink:href="#glyph5-8" x="606.34375" y="226.800781"/>
+ <use xlink:href="#glyph5-5" x="613.017578" y="226.800781"/>
+ <use xlink:href="#glyph5-22" x="620.347656" y="226.800781"/>
+ <use xlink:href="#glyph5-8" x="627.021484" y="226.800781"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 0 648 L 237.332031 648 L 237.332031 432 L 0 432 Z "/>
+<g clip-path="url(#clip124)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 648 L 237.332031 648 L 237.332031 432 L 0 432 Z "/>
+</g>
+<g clip-path="url(#clip125)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 611.027344 L 222.933594 611.027344 L 222.933594 446.398438 L 54.019531 446.398438 Z "/>
+</g>
+<g clip-path="url(#clip126)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 584.839844 L 222.933594 584.839844 "/>
+</g>
+<g clip-path="url(#clip127)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 547.421875 L 222.933594 547.421875 "/>
+</g>
+<g clip-path="url(#clip128)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 510.007812 L 222.933594 510.007812 "/>
+</g>
+<g clip-path="url(#clip129)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 472.589844 L 222.933594 472.589844 "/>
+</g>
+<g clip-path="url(#clip130)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 80.890625 611.027344 L 80.890625 446.398438 "/>
+</g>
+<g clip-path="url(#clip131)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.28125 611.027344 L 119.28125 446.398438 "/>
+</g>
+<g clip-path="url(#clip132)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.671875 611.027344 L 157.671875 446.398438 "/>
+</g>
+<g clip-path="url(#clip133)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.058594 611.027344 L 196.058594 446.398438 "/>
+</g>
+<g clip-path="url(#clip134)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 603.546875 L 222.933594 603.546875 "/>
+</g>
+<g clip-path="url(#clip135)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 566.128906 L 222.933594 566.128906 "/>
+</g>
+<g clip-path="url(#clip136)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 528.714844 L 222.933594 528.714844 "/>
+</g>
+<g clip-path="url(#clip137)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 491.296875 L 222.933594 491.296875 "/>
+</g>
+<g clip-path="url(#clip138)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 453.882812 L 222.933594 453.882812 "/>
+</g>
+<g clip-path="url(#clip139)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 611.027344 L 61.695312 446.398438 "/>
+</g>
+<g clip-path="url(#clip140)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 611.027344 L 100.085938 446.398438 "/>
+</g>
+<g clip-path="url(#clip141)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 611.027344 L 138.476562 446.398438 "/>
+</g>
+<g clip-path="url(#clip142)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 611.027344 L 176.867188 446.398438 "/>
+</g>
+<g clip-path="url(#clip143)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 611.027344 L 215.253906 446.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 61.695312 603.546875 L 99.855469 603.546875 L 100.164062 453.882812 L 176.789062 453.882812 L 177.097656 603.546875 L 215.253906 603.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="606.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="606.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="606.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="606.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="569.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="569.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="569.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="569.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="532.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="532.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="532.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="532.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="494.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="494.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="494.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="494.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="457.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="457.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="457.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="457.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 603.546875 L 54.019531 603.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 566.128906 L 54.019531 566.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 528.714844 L 54.019531 528.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 491.296875 L 54.019531 491.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 453.882812 L 54.019531 453.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 615.28125 L 61.695312 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 615.28125 L 100.085938 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 615.28125 L 138.476562 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 615.28125 L 176.867188 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 615.28125 L 215.253906 611.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="52.359375" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="57.694962" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="60.360413" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="65.695999" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="90.75" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="96.085587" y="624.992188"/>
+ <use xlink:href="#glyph0-3" x="98.751038" y="624.992188"/>
+ <use xlink:href="#glyph0-4" x="104.086624" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="129.140625" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="134.476212" y="624.992188"/>
+ <use xlink:href="#glyph0-4" x="137.141663" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="142.477249" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="167.53125" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="172.866837" y="624.992188"/>
+ <use xlink:href="#glyph0-5" x="175.532288" y="624.992188"/>
+ <use xlink:href="#glyph0-4" x="180.867874" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="205.917969" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="211.253555" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="213.919006" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="219.254593" y="624.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="135.476562" y="637.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="540.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="533.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="528.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="522.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-23" x="28.675781" y="442.800781"/>
+ <use xlink:href="#glyph5-8" x="37.341797" y="442.800781"/>
+ <use xlink:href="#glyph5-22" x="44.015625" y="442.800781"/>
+ <use xlink:href="#glyph5-24" x="50.689453" y="442.800781"/>
+ <use xlink:href="#glyph5-4" x="54.685547" y="442.800781"/>
+ <use xlink:href="#glyph5-5" x="61.359375" y="442.800781"/>
+ <use xlink:href="#glyph5-6" x="68.689453" y="442.800781"/>
+ <use xlink:href="#glyph5-7" x="76.019531" y="442.800781"/>
+ <use xlink:href="#glyph5-8" x="79.353516" y="442.800781"/>
+</g>
+<g clip-path="url(#clip144)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 237.332031 648 L 474.664062 648 L 474.664062 432 L 237.332031 432 Z "/>
+</g>
+<g clip-path="url(#clip145)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.332031 648 L 474.664062 648 L 474.664062 432 L 237.332031 432 Z "/>
+</g>
+<g clip-path="url(#clip146)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 291.351562 611.027344 L 460.265625 611.027344 L 460.265625 446.398438 L 291.351562 446.398438 Z "/>
+</g>
+<g clip-path="url(#clip147)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 590.855469 L 460.265625 590.855469 "/>
+</g>
+<g clip-path="url(#clip148)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 551.71875 L 460.265625 551.71875 "/>
+</g>
+<g clip-path="url(#clip149)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 512.585938 L 460.265625 512.585938 "/>
+</g>
+<g clip-path="url(#clip150)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 473.449219 L 460.265625 473.449219 "/>
+</g>
+<g clip-path="url(#clip151)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.222656 611.027344 L 318.222656 446.398438 "/>
+</g>
+<g clip-path="url(#clip152)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.613281 611.027344 L 356.613281 446.398438 "/>
+</g>
+<g clip-path="url(#clip153)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.003906 611.027344 L 395.003906 446.398438 "/>
+</g>
+<g clip-path="url(#clip154)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.394531 611.027344 L 433.394531 446.398438 "/>
+</g>
+<g clip-path="url(#clip155)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 610.425781 L 460.265625 610.425781 "/>
+</g>
+<g clip-path="url(#clip156)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 571.289062 L 460.265625 571.289062 "/>
+</g>
+<g clip-path="url(#clip157)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 532.152344 L 460.265625 532.152344 "/>
+</g>
+<g clip-path="url(#clip158)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 493.015625 L 460.265625 493.015625 "/>
+</g>
+<g clip-path="url(#clip159)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 453.882812 L 460.265625 453.882812 "/>
+</g>
+<g clip-path="url(#clip160)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 611.027344 L 299.03125 446.398438 "/>
+</g>
+<g clip-path="url(#clip161)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 611.027344 L 337.417969 446.398438 "/>
+</g>
+<g clip-path="url(#clip162)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 611.027344 L 375.808594 446.398438 "/>
+</g>
+<g clip-path="url(#clip163)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 611.027344 L 414.199219 446.398438 "/>
+</g>
+<g clip-path="url(#clip164)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 611.027344 L 452.589844 446.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 299.03125 603.546875 L 299.335938 603.371094 L 299.644531 603.195312 L 300.261719 602.828125 L 300.566406 602.636719 L 300.875 602.445312 L 301.492188 602.046875 L 301.800781 601.839844 L 302.105469 601.632812 L 302.414062 601.417969 L 303.03125 600.980469 L 303.335938 600.753906 L 303.953125 600.285156 L 304.261719 600.046875 L 304.570312 599.800781 L 304.875 599.550781 L 305.183594 599.296875 L 305.492188 599.039062 L 305.800781 598.777344 L 306.105469 598.507812 L 306.414062 598.234375 L 306.722656 597.957031 L 307.03125 597.671875 L 307.339844 597.382812 L 307.644531 597.089844 L 307.953125 596.789062 L 308.261719 596.484375 L 308.570312 596.175781 L 308.878906 595.859375 L 309.183594 595.539062 L 309.492188 595.214844 L 309.800781 594.882812 L 310.109375 594.542969 L 310.414062 594.199219 L 310.722656 593.851562 L 311.03125 593.496094 L 311.339844 593.136719 L 311.648438 592.769531 L 311.953125 592.398438 L 312.261719 592.019531 L 312.570312 591.632812 L 312.878906 591.242188 L 313.183594 590.847656 L 313.800781 590.035156 L 314.109375 589.617188 L 314.417969 589.195312 L 314.722656 588.765625 L 315.03125 588.332031 L 315.339844 587.890625 L 315.648438 587.441406 L 315.953125 586.988281 L 316.261719 586.527344 L 316.570312 586.058594 L 316.878906 585.585938 L 317.1875 585.105469 L 317.492188 584.617188 L 317.800781 584.125 L 318.109375 583.621094 L 318.417969 583.113281 L 318.722656 582.597656 L 319.03125 582.078125 L 319.339844 581.550781 L 319.648438 581.015625 L 319.957031 580.472656 L 320.261719 579.921875 L 320.570312 579.367188 L 320.878906 578.804688 L 321.1875 578.234375 L 321.492188 577.65625 L 321.800781 577.070312 L 322.109375 576.480469 L 322.417969 575.882812 L 322.726562 575.277344 L 323.03125 574.664062 L 323.339844 574.046875 L 323.648438 573.417969 L 323.957031 572.785156 L 324.265625 572.144531 L 324.570312 571.5 L 324.878906 570.84375 L 325.1875 570.183594 L 325.496094 569.515625 L 325.800781 568.839844 L 326.109375 568.15625 L 326.417969 567.46875 L 326.726562 566.773438 L 327.035156 566.070312 L 327.339844 565.363281 L 327.648438 564.644531 L 327.957031 563.921875 L 328.265625 563.195312 L 328.570312 562.457031 L 328.878906 561.714844 L 329.1875 560.964844 L 329.496094 560.210938 L 329.804688 559.449219 L 330.109375 558.679688 L 330.417969 557.90625 L 330.726562 557.125 L 331.035156 556.339844 L 331.339844 555.546875 L 331.648438 554.746094 L 331.957031 553.941406 L 332.265625 553.128906 L 332.574219 552.3125 L 332.878906 551.488281 L 333.1875 550.660156 L 333.496094 549.828125 L 333.804688 548.988281 L 334.109375 548.144531 L 334.417969 547.292969 L 334.726562 546.4375 L 335.035156 545.578125 L 335.34375 544.714844 L 335.648438 543.84375 L 335.957031 542.96875 L 336.265625 542.089844 L 336.574219 541.207031 L 336.878906 540.316406 L 337.1875 539.425781 L 337.804688 537.628906 L 338.113281 536.722656 L 338.417969 535.816406 L 339.035156 533.988281 L 339.34375 533.070312 L 339.648438 532.148438 L 339.957031 531.222656 L 340.574219 529.363281 L 340.882812 528.429688 L 341.1875 527.496094 L 341.496094 526.558594 L 342.421875 523.734375 L 342.726562 522.789062 L 343.035156 521.839844 L 343.34375 520.894531 L 343.652344 519.945312 L 343.957031 518.996094 L 344.265625 518.042969 L 344.574219 517.09375 L 344.882812 516.140625 L 345.191406 515.191406 L 345.496094 514.238281 L 345.804688 513.289062 L 346.113281 512.335938 L 346.421875 511.386719 L 346.726562 510.4375 L 347.035156 509.492188 L 347.34375 508.542969 L 347.960938 506.652344 L 348.265625 505.710938 L 349.191406 502.898438 L 349.496094 501.96875 L 350.113281 500.109375 L 350.421875 499.1875 L 350.730469 498.269531 L 351.035156 497.351562 L 351.34375 496.441406 L 351.960938 494.628906 L 352.265625 493.730469 L 352.574219 492.835938 L 352.882812 491.949219 L 353.191406 491.066406 L 353.5 490.1875 L 353.804688 489.316406 L 354.113281 488.449219 L 354.421875 487.589844 L 354.730469 486.734375 L 355.035156 485.886719 L 355.34375 485.046875 L 355.652344 484.210938 L 355.960938 483.386719 L 356.269531 482.566406 L 356.574219 481.757812 L 356.882812 480.953125 L 357.191406 480.15625 L 357.5 479.371094 L 357.808594 478.589844 L 358.113281 477.820312 L 358.421875 477.0625 L 358.730469 476.308594 L 359.039062 475.566406 L 359.34375 474.832031 L 359.652344 474.109375 L 359.960938 473.394531 L 360.269531 472.691406 L 360.578125 472 L 360.882812 471.316406 L 361.191406 470.644531 L 361.5 469.984375 L 361.808594 469.332031 L 362.113281 468.695312 L 362.421875 468.066406 L 362.730469 467.449219 L 363.039062 466.847656 L 363.347656 466.253906 L 363.652344 465.675781 L 363.960938 465.105469 L 364.269531 464.550781 L 364.578125 464.007812 L 364.882812 463.476562 L 365.191406 462.960938 L 365.5 462.457031 L 365.808594 461.964844 L 366.117188 461.488281 L 366.421875 461.023438 L 366.730469 460.574219 L 367.039062 460.136719 L 367.347656 459.710938 L 367.652344 459.304688 L 367.960938 458.910156 L 368.269531 458.527344 L 368.578125 458.160156 L 368.886719 457.808594 L 369.191406 457.472656 L 369.5 457.148438 L 369.808594 456.839844 L 370.117188 456.546875 L 370.421875 456.269531 L 370.730469 456.007812 L 371.039062 455.757812 L 371.347656 455.523438 L 371.65625 455.308594 L 371.960938 455.105469 L 372.269531 454.917969 L 372.578125 454.746094 L 372.886719 454.589844 L 373.195312 454.449219 L 373.5 454.324219 L 373.808594 454.210938 L 374.117188 454.117188 L 374.425781 454.039062 L 374.730469 453.976562 L 375.039062 453.929688 L 375.347656 453.898438 L 375.65625 453.882812 L 375.964844 453.882812 L 376.269531 453.898438 L 376.578125 453.929688 L 376.886719 453.976562 L 377.195312 454.039062 L 377.5 454.117188 L 377.808594 454.210938 L 378.117188 454.324219 L 378.425781 454.449219 L 378.734375 454.589844 L 379.039062 454.746094 L 379.347656 454.917969 L 379.65625 455.105469 L 379.964844 455.308594 L 380.269531 455.523438 L 380.578125 455.757812 L 380.886719 456.007812 L 381.195312 456.269531 L 381.503906 456.546875 L 381.808594 456.839844 L 382.117188 457.148438 L 382.425781 457.472656 L 382.734375 457.808594 L 383.039062 458.160156 L 383.347656 458.527344 L 383.65625 458.910156 L 383.964844 459.304688 L 384.273438 459.710938 L 384.578125 460.136719 L 384.886719 460.574219 L 385.195312 461.023438 L 385.503906 461.488281 L 385.808594 461.964844 L 386.117188 462.457031 L 386.425781 462.960938 L 386.734375 463.476562 L 387.042969 464.007812 L 387.347656 464.550781 L 387.65625 465.105469 L 387.964844 465.675781 L 388.273438 466.253906 L 388.578125 466.847656 L 388.886719 467.449219 L 389.195312 468.066406 L 389.503906 468.695312 L 389.8125 469.332031 L 390.117188 469.984375 L 390.425781 470.644531 L 390.734375 471.316406 L 391.042969 472 L 391.351562 472.691406 L 391.65625 473.394531 L 391.964844 474.109375 L 392.273438 474.832031 L 392.582031 475.566406 L 392.886719 476.308594 L 393.195312 477.0625 L 393.503906 477.820312 L 393.8125 478.589844 L 394.121094 479.371094 L 394.425781 480.15625 L 394.734375 480.953125 L 395.042969 481.757812 L 395.351562 482.566406 L 395.65625 483.386719 L 395.964844 484.210938 L 396.273438 485.046875 L 396.582031 485.886719 L 396.890625 486.734375 L 397.195312 487.589844 L 397.503906 488.449219 L 397.8125 489.316406 L 398.121094 490.1875 L 398.425781 491.066406 L 398.734375 491.949219 L 399.042969 492.835938 L 399.351562 493.730469 L 399.660156 494.628906 L 399.964844 495.535156 L 400.273438 496.441406 L 400.582031 497.351562 L 400.890625 498.269531 L 401.195312 499.1875 L 401.503906 500.109375 L 402.429688 502.898438 L 402.734375 503.835938 L 403.351562 505.710938 L 403.660156 506.652344 L 403.964844 507.597656 L 404.273438 508.542969 L 404.582031 509.492188 L 404.890625 510.4375 L 405.199219 511.386719 L 405.503906 512.335938 L 405.8125 513.289062 L 406.121094 514.238281 L 406.429688 515.191406 L 406.738281 516.140625 L 407.042969 517.09375 L 407.351562 518.042969 L 407.660156 518.996094 L 407.96875 519.945312 L 408.273438 520.894531 L 408.582031 521.839844 L 408.890625 522.789062 L 409.199219 523.734375 L 409.507812 524.675781 L 409.8125 525.617188 L 410.121094 526.558594 L 410.429688 527.496094 L 410.738281 528.429688 L 411.042969 529.363281 L 411.660156 531.222656 L 411.96875 532.148438 L 412.277344 533.070312 L 412.582031 533.988281 L 413.199219 535.816406 L 413.507812 536.722656 L 413.8125 537.628906 L 414.429688 539.425781 L 415.046875 541.207031 L 415.351562 542.089844 L 415.660156 542.96875 L 415.96875 543.84375 L 416.277344 544.714844 L 416.582031 545.578125 L 416.890625 546.4375 L 417.199219 547.292969 L 417.507812 548.144531 L 417.816406 548.988281 L 418.121094 549.828125 L 418.429688 550.660156 L 418.738281 551.488281 L 419.046875 552.3125 L 419.351562 553.128906 L 419.660156 553.941406 L 419.96875 554.746094 L 420.277344 555.546875 L 420.585938 556.339844 L 420.890625 557.125 L 421.199219 557.90625 L 421.507812 558.679688 L 421.816406 559.449219 L 422.125 560.210938 L 422.429688 560.964844 L 422.738281 561.714844 L 423.046875 562.457031 L 423.355469 563.195312 L 423.660156 563.921875 L 423.96875 564.644531 L 424.277344 565.363281 L 424.585938 566.070312 L 424.894531 566.773438 L 425.199219 567.46875 L 425.507812 568.15625 L 425.816406 568.839844 L 426.125 569.515625 L 426.429688 570.183594 L 426.738281 570.84375 L 427.046875 571.5 L 427.355469 572.144531 L 427.664062 572.785156 L 427.96875 573.417969 L 428.277344 574.046875 L 428.585938 574.664062 L 428.894531 575.277344 L 429.199219 575.882812 L 429.507812 576.480469 L 429.816406 577.070312 L 430.125 577.65625 L 430.433594 578.234375 L 430.738281 578.804688 L 431.046875 579.367188 L 431.355469 579.921875 L 431.664062 580.472656 L 431.96875 581.015625 L 432.277344 581.550781 L 432.585938 582.078125 L 432.894531 582.597656 L 433.203125 583.113281 L 433.507812 583.621094 L 433.816406 584.125 L 434.125 584.617188 L 434.433594 585.105469 L 434.738281 585.585938 L 435.046875 586.058594 L 435.355469 586.527344 L 435.664062 586.988281 L 435.972656 587.441406 L 436.277344 587.890625 L 436.585938 588.332031 L 436.894531 588.765625 L 437.203125 589.195312 L 437.507812 589.617188 L 437.816406 590.035156 L 438.433594 590.847656 L 438.742188 591.242188 L 439.046875 591.632812 L 439.355469 592.019531 L 439.664062 592.398438 L 439.972656 592.769531 L 440.28125 593.136719 L 440.585938 593.496094 L 440.894531 593.851562 L 441.203125 594.199219 L 441.511719 594.542969 L 441.816406 594.882812 L 442.125 595.214844 L 442.433594 595.539062 L 442.742188 595.859375 L 443.050781 596.175781 L 443.355469 596.484375 L 443.664062 596.789062 L 443.972656 597.089844 L 444.28125 597.382812 L 444.585938 597.671875 L 444.894531 597.957031 L 445.203125 598.234375 L 445.511719 598.507812 L 445.820312 598.777344 L 446.125 599.039062 L 446.433594 599.296875 L 446.742188 599.550781 L 447.050781 599.800781 L 447.355469 600.046875 L 447.664062 600.285156 L 448.28125 600.753906 L 448.589844 600.980469 L 448.894531 601.199219 L 449.203125 601.417969 L 449.511719 601.632812 L 449.820312 601.839844 L 450.125 602.046875 L 450.742188 602.445312 L 451.359375 602.828125 L 451.664062 603.011719 L 451.972656 603.195312 L 452.589844 603.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="613.863281"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="613.863281"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="613.863281"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="613.863281"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="574.726562"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="574.726562"/>
+ <use xlink:href="#glyph0-3" x="273.594788" y="574.726562"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="574.726562"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="535.589844"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="535.589844"/>
+ <use xlink:href="#glyph0-4" x="273.594788" y="535.589844"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="535.589844"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="496.453125"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="496.453125"/>
+ <use xlink:href="#glyph0-5" x="273.594788" y="496.453125"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="496.453125"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="265.59375" y="457.320312"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="457.320312"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="457.320312"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="457.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 610.425781 L 291.351562 610.425781 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 571.289062 L 291.351562 571.289062 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 532.152344 L 291.351562 532.152344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 493.015625 L 291.351562 493.015625 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 453.882812 L 291.351562 453.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 615.28125 L 299.03125 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 615.28125 L 337.417969 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 615.28125 L 375.808594 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 615.28125 L 414.199219 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 615.28125 L 452.589844 611.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="289.695312" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="295.030899" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="297.69635" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="303.031937" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="328.082031" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="333.417618" y="624.992188"/>
+ <use xlink:href="#glyph0-3" x="336.083069" y="624.992188"/>
+ <use xlink:href="#glyph0-4" x="341.418655" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="366.472656" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="371.808243" y="624.992188"/>
+ <use xlink:href="#glyph0-4" x="374.473694" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="379.80928" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="404.863281" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="410.198868" y="624.992188"/>
+ <use xlink:href="#glyph0-5" x="412.864319" y="624.992188"/>
+ <use xlink:href="#glyph0-4" x="418.199905" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="443.253906" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="448.589493" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="451.254944" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="456.59053" y="624.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="372.808594" y="637.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="258.992188" y="540.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="258.992188" y="533.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="258.992188" y="528.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="258.992188" y="522.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-25" x="264.34375" y="442.800781"/>
+ <use xlink:href="#glyph5-4" x="273.677734" y="442.800781"/>
+ <use xlink:href="#glyph5-26" x="280.351562" y="442.800781"/>
+ <use xlink:href="#glyph5-18" x="287.681641" y="442.800781"/>
+ <use xlink:href="#glyph5-18" x="294.355469" y="442.800781"/>
+ <use xlink:href="#glyph5-3" x="301.029297" y="442.800781"/>
+ <use xlink:href="#glyph5-4" x="304.363281" y="442.800781"/>
+ <use xlink:href="#glyph5-5" x="311.037109" y="442.800781"/>
+</g>
+<g clip-path="url(#clip165)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 474.667969 648 L 712 648 L 712 432 L 474.667969 432 Z "/>
+</g>
+<g clip-path="url(#clip166)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 474.667969 648 L 712 648 L 712 432 L 474.667969 432 Z "/>
+</g>
+<g clip-path="url(#clip167)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 528.683594 611.027344 L 697.597656 611.027344 L 697.597656 446.398438 L 528.683594 446.398438 Z "/>
+</g>
+<g clip-path="url(#clip168)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 598.894531 L 697.601562 598.894531 "/>
+</g>
+<g clip-path="url(#clip169)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 560.433594 L 697.601562 560.433594 "/>
+</g>
+<g clip-path="url(#clip170)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 521.96875 L 697.601562 521.96875 "/>
+</g>
+<g clip-path="url(#clip171)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 483.503906 L 697.601562 483.503906 "/>
+</g>
+<g clip-path="url(#clip172)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 555.558594 611.027344 L 555.558594 446.398438 "/>
+</g>
+<g clip-path="url(#clip173)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 593.949219 611.027344 L 593.949219 446.398438 "/>
+</g>
+<g clip-path="url(#clip174)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 632.335938 611.027344 L 632.335938 446.398438 "/>
+</g>
+<g clip-path="url(#clip175)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 670.726562 611.027344 L 670.726562 446.398438 "/>
+</g>
+<g clip-path="url(#clip176)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 579.664062 L 697.601562 579.664062 "/>
+</g>
+<g clip-path="url(#clip177)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 541.199219 L 697.601562 541.199219 "/>
+</g>
+<g clip-path="url(#clip178)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 502.738281 L 697.601562 502.738281 "/>
+</g>
+<g clip-path="url(#clip179)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 464.273438 L 697.601562 464.273438 "/>
+</g>
+<g clip-path="url(#clip180)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 611.027344 L 536.363281 446.398438 "/>
+</g>
+<g clip-path="url(#clip181)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 611.027344 L 574.753906 446.398438 "/>
+</g>
+<g clip-path="url(#clip182)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 611.027344 L 613.140625 446.398438 "/>
+</g>
+<g clip-path="url(#clip183)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 611.027344 L 651.53125 446.398438 "/>
+</g>
+<g clip-path="url(#clip184)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 611.027344 L 689.921875 446.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 536.363281 603.546875 L 536.671875 603.273438 L 536.976562 602.996094 L 537.285156 602.714844 L 537.59375 602.429688 L 538.210938 601.84375 L 538.515625 601.539062 L 538.824219 601.234375 L 539.132812 600.925781 L 539.441406 600.609375 L 539.746094 600.285156 L 540.054688 599.960938 L 540.363281 599.628906 L 540.671875 599.289062 L 540.980469 598.945312 L 541.285156 598.597656 L 541.59375 598.246094 L 542.210938 597.519531 L 542.515625 597.148438 L 542.824219 596.769531 L 543.132812 596.386719 L 543.441406 596 L 543.75 595.605469 L 544.054688 595.203125 L 544.363281 594.796875 L 544.671875 594.382812 L 544.980469 593.960938 L 545.289062 593.535156 L 545.59375 593.105469 L 545.902344 592.664062 L 546.210938 592.21875 L 546.519531 591.769531 L 546.824219 591.308594 L 547.132812 590.84375 L 547.441406 590.371094 L 547.75 589.894531 L 548.058594 589.40625 L 548.363281 588.914062 L 548.671875 588.417969 L 548.980469 587.910156 L 549.289062 587.398438 L 549.59375 586.878906 L 549.902344 586.351562 L 550.210938 585.816406 L 550.519531 585.273438 L 550.828125 584.726562 L 551.132812 584.171875 L 551.441406 583.609375 L 551.75 583.039062 L 552.058594 582.460938 L 552.363281 581.875 L 552.671875 581.285156 L 552.980469 580.6875 L 553.289062 580.078125 L 553.597656 579.464844 L 553.902344 578.84375 L 554.210938 578.214844 L 554.519531 577.582031 L 554.828125 576.9375 L 555.132812 576.285156 L 555.441406 575.628906 L 555.75 574.964844 L 556.058594 574.292969 L 556.367188 573.613281 L 556.671875 572.925781 L 556.980469 572.230469 L 557.289062 571.527344 L 557.597656 570.820312 L 557.902344 570.105469 L 558.210938 569.382812 L 558.519531 568.652344 L 558.828125 567.914062 L 559.136719 567.171875 L 559.441406 566.417969 L 559.75 565.660156 L 560.058594 564.898438 L 560.367188 564.125 L 560.671875 563.347656 L 560.980469 562.5625 L 561.289062 561.773438 L 561.597656 560.976562 L 561.90625 560.171875 L 562.210938 559.359375 L 562.519531 558.542969 L 562.828125 557.722656 L 563.136719 556.894531 L 563.445312 556.058594 L 563.75 555.21875 L 564.058594 554.375 L 564.367188 553.523438 L 564.675781 552.667969 L 564.980469 551.804688 L 565.289062 550.9375 L 565.597656 550.066406 L 566.214844 548.308594 L 566.519531 547.421875 L 566.828125 546.53125 L 567.136719 545.636719 L 567.445312 544.738281 L 567.75 543.832031 L 568.058594 542.925781 L 568.367188 542.015625 L 568.984375 540.1875 L 569.289062 539.265625 L 569.597656 538.34375 L 569.90625 537.414062 L 570.214844 536.488281 L 570.519531 535.554688 L 571.136719 533.6875 L 571.753906 531.8125 L 572.058594 530.871094 L 572.675781 528.988281 L 572.984375 528.042969 L 573.289062 527.101562 L 574.523438 523.320312 L 574.828125 522.375 L 575.136719 521.433594 L 575.445312 520.488281 L 575.753906 519.546875 L 576.058594 518.605469 L 576.984375 515.792969 L 577.292969 514.859375 L 577.597656 513.925781 L 577.90625 512.996094 L 578.523438 511.144531 L 578.832031 510.226562 L 579.136719 509.308594 L 579.445312 508.390625 L 579.753906 507.480469 L 580.0625 506.574219 L 580.367188 505.671875 L 580.675781 504.769531 L 580.984375 503.875 L 581.292969 502.984375 L 581.601562 502.101562 L 581.90625 501.21875 L 582.214844 500.34375 L 582.523438 499.472656 L 582.832031 498.605469 L 583.136719 497.746094 L 583.753906 496.042969 L 584.0625 495.203125 L 584.371094 494.367188 L 584.675781 493.535156 L 584.984375 492.710938 L 585.292969 491.894531 L 585.601562 491.085938 L 585.90625 490.28125 L 586.214844 489.484375 L 586.523438 488.695312 L 586.832031 487.914062 L 587.140625 487.140625 L 587.445312 486.371094 L 587.753906 485.613281 L 588.0625 484.859375 L 588.371094 484.117188 L 588.675781 483.378906 L 588.984375 482.652344 L 589.292969 481.929688 L 589.601562 481.21875 L 589.910156 480.515625 L 590.214844 479.820312 L 590.523438 479.132812 L 590.832031 478.453125 L 591.140625 477.78125 L 591.445312 477.121094 L 591.753906 476.46875 L 592.0625 475.824219 L 592.371094 475.191406 L 592.679688 474.5625 L 592.984375 473.945312 L 593.292969 473.335938 L 593.601562 472.738281 L 593.910156 472.148438 L 594.21875 471.566406 L 594.523438 470.996094 L 594.832031 470.433594 L 595.140625 469.878906 L 595.449219 469.335938 L 595.753906 468.800781 L 596.0625 468.273438 L 596.371094 467.757812 L 596.679688 467.25 L 596.988281 466.753906 L 597.292969 466.265625 L 597.601562 465.785156 L 597.910156 465.316406 L 598.21875 464.855469 L 598.523438 464.40625 L 598.832031 463.964844 L 599.140625 463.535156 L 599.449219 463.113281 L 599.757812 462.699219 L 600.0625 462.296875 L 600.371094 461.902344 L 600.679688 461.519531 L 600.988281 461.144531 L 601.292969 460.78125 L 601.601562 460.425781 L 601.910156 460.078125 L 602.21875 459.742188 L 602.527344 459.414062 L 602.832031 459.097656 L 603.140625 458.789062 L 603.449219 458.492188 L 603.757812 458.203125 L 604.0625 457.921875 L 604.371094 457.652344 L 604.679688 457.390625 L 604.988281 457.140625 L 605.296875 456.898438 L 605.601562 456.664062 L 605.910156 456.441406 L 606.21875 456.230469 L 606.527344 456.023438 L 606.832031 455.828125 L 607.140625 455.644531 L 607.449219 455.46875 L 607.757812 455.300781 L 608.066406 455.144531 L 608.371094 454.996094 L 608.679688 454.855469 L 608.988281 454.726562 L 609.296875 454.605469 L 609.601562 454.492188 L 609.910156 454.390625 L 610.21875 454.300781 L 610.527344 454.214844 L 610.835938 454.140625 L 611.140625 454.078125 L 611.449219 454.023438 L 611.757812 453.976562 L 612.066406 453.9375 L 612.375 453.910156 L 612.679688 453.890625 L 612.988281 453.882812 L 613.296875 453.882812 L 613.605469 453.890625 L 613.910156 453.910156 L 614.21875 453.9375 L 614.527344 453.976562 L 614.835938 454.023438 L 615.144531 454.078125 L 615.449219 454.140625 L 615.757812 454.214844 L 616.066406 454.300781 L 616.375 454.390625 L 616.679688 454.492188 L 616.988281 454.605469 L 617.296875 454.726562 L 617.605469 454.855469 L 617.914062 454.996094 L 618.21875 455.144531 L 618.527344 455.300781 L 618.835938 455.46875 L 619.144531 455.644531 L 619.449219 455.828125 L 619.757812 456.023438 L 620.066406 456.230469 L 620.375 456.441406 L 620.683594 456.664062 L 620.988281 456.898438 L 621.296875 457.140625 L 621.605469 457.390625 L 621.914062 457.652344 L 622.21875 457.921875 L 622.527344 458.203125 L 622.835938 458.492188 L 623.144531 458.789062 L 623.453125 459.097656 L 623.757812 459.414062 L 624.066406 459.742188 L 624.375 460.078125 L 624.683594 460.425781 L 624.988281 460.78125 L 625.296875 461.144531 L 625.605469 461.519531 L 625.914062 461.902344 L 626.222656 462.296875 L 626.527344 462.699219 L 626.835938 463.113281 L 627.144531 463.535156 L 627.453125 463.964844 L 627.761719 464.40625 L 628.066406 464.855469 L 628.375 465.316406 L 628.683594 465.785156 L 628.992188 466.265625 L 629.296875 466.753906 L 629.605469 467.25 L 629.914062 467.757812 L 630.222656 468.273438 L 630.53125 468.800781 L 630.835938 469.335938 L 631.144531 469.878906 L 631.453125 470.433594 L 631.761719 470.996094 L 632.066406 471.566406 L 632.375 472.148438 L 632.683594 472.738281 L 632.992188 473.335938 L 633.300781 473.945312 L 633.605469 474.5625 L 633.914062 475.191406 L 634.222656 475.824219 L 634.53125 476.46875 L 634.835938 477.121094 L 635.144531 477.78125 L 635.453125 478.453125 L 635.761719 479.132812 L 636.070312 479.820312 L 636.375 480.515625 L 636.683594 481.21875 L 636.992188 481.929688 L 637.300781 482.652344 L 637.605469 483.378906 L 637.914062 484.117188 L 638.222656 484.859375 L 638.53125 485.613281 L 638.839844 486.371094 L 639.144531 487.140625 L 639.453125 487.914062 L 639.761719 488.695312 L 640.070312 489.484375 L 640.375 490.28125 L 640.683594 491.085938 L 640.992188 491.894531 L 641.300781 492.710938 L 641.609375 493.535156 L 641.914062 494.367188 L 642.222656 495.203125 L 642.53125 496.042969 L 643.148438 497.746094 L 643.453125 498.605469 L 643.761719 499.472656 L 644.070312 500.34375 L 644.378906 501.21875 L 644.683594 502.101562 L 644.992188 502.984375 L 645.300781 503.875 L 645.609375 504.769531 L 645.917969 505.671875 L 646.222656 506.574219 L 646.53125 507.480469 L 646.839844 508.390625 L 647.148438 509.308594 L 647.453125 510.226562 L 647.761719 511.144531 L 648.378906 512.996094 L 648.6875 513.925781 L 648.992188 514.859375 L 649.300781 515.792969 L 649.917969 517.667969 L 650.222656 518.605469 L 650.839844 520.488281 L 651.148438 521.433594 L 651.457031 522.375 L 651.761719 523.320312 L 652.6875 526.15625 L 652.992188 527.101562 L 653.300781 528.042969 L 653.609375 528.988281 L 654.226562 530.871094 L 654.53125 531.8125 L 655.148438 533.6875 L 655.457031 534.621094 L 655.761719 535.554688 L 656.070312 536.488281 L 656.378906 537.414062 L 656.6875 538.34375 L 656.996094 539.265625 L 657.300781 540.1875 L 657.917969 542.015625 L 658.226562 542.925781 L 658.53125 543.832031 L 658.839844 544.738281 L 659.148438 545.636719 L 659.457031 546.53125 L 659.765625 547.421875 L 660.070312 548.308594 L 660.6875 550.066406 L 660.996094 550.9375 L 661.304688 551.804688 L 661.609375 552.667969 L 661.917969 553.523438 L 662.226562 554.375 L 662.535156 555.21875 L 662.839844 556.058594 L 663.148438 556.894531 L 663.457031 557.722656 L 663.765625 558.542969 L 664.074219 559.359375 L 664.378906 560.171875 L 664.6875 560.976562 L 664.996094 561.773438 L 665.304688 562.5625 L 665.609375 563.347656 L 665.917969 564.125 L 666.226562 564.898438 L 666.535156 565.660156 L 666.84375 566.417969 L 667.148438 567.171875 L 667.457031 567.914062 L 667.765625 568.652344 L 668.074219 569.382812 L 668.378906 570.105469 L 668.6875 570.820312 L 668.996094 571.527344 L 669.304688 572.230469 L 669.613281 572.925781 L 669.917969 573.613281 L 670.226562 574.292969 L 670.535156 574.964844 L 670.84375 575.628906 L 671.148438 576.285156 L 671.457031 576.9375 L 671.765625 577.582031 L 672.074219 578.214844 L 672.382812 578.84375 L 672.6875 579.464844 L 672.996094 580.078125 L 673.304688 580.6875 L 673.613281 581.285156 L 673.917969 581.875 L 674.226562 582.460938 L 674.535156 583.039062 L 674.84375 583.609375 L 675.152344 584.171875 L 675.457031 584.726562 L 675.765625 585.273438 L 676.074219 585.816406 L 676.382812 586.351562 L 676.691406 586.878906 L 676.996094 587.398438 L 677.304688 587.910156 L 677.613281 588.417969 L 677.921875 588.914062 L 678.226562 589.40625 L 678.535156 589.894531 L 678.84375 590.371094 L 679.152344 590.84375 L 679.460938 591.308594 L 679.765625 591.769531 L 680.074219 592.21875 L 680.382812 592.664062 L 680.691406 593.105469 L 680.996094 593.535156 L 681.304688 593.960938 L 681.613281 594.382812 L 681.921875 594.796875 L 682.230469 595.203125 L 682.535156 595.605469 L 682.84375 596 L 683.152344 596.386719 L 683.460938 596.769531 L 683.765625 597.148438 L 684.074219 597.519531 L 684.691406 598.246094 L 685 598.597656 L 685.304688 598.945312 L 685.613281 599.289062 L 685.921875 599.628906 L 686.230469 599.960938 L 686.535156 600.285156 L 686.84375 600.609375 L 687.152344 600.925781 L 687.460938 601.234375 L 687.769531 601.539062 L 688.074219 601.84375 L 688.691406 602.429688 L 689 602.714844 L 689.304688 602.996094 L 689.613281 603.273438 L 689.921875 603.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="508.261719" y="583.101562"/>
+ <use xlink:href="#glyph0-2" x="513.597305" y="583.101562"/>
+ <use xlink:href="#glyph0-3" x="516.262756" y="583.101562"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="508.261719" y="544.636719"/>
+ <use xlink:href="#glyph0-2" x="513.597305" y="544.636719"/>
+ <use xlink:href="#glyph0-7" x="516.262756" y="544.636719"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="508.261719" y="506.175781"/>
+ <use xlink:href="#glyph0-2" x="513.597305" y="506.175781"/>
+ <use xlink:href="#glyph0-8" x="516.262756" y="506.175781"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="508.261719" y="467.710938"/>
+ <use xlink:href="#glyph0-2" x="513.597305" y="467.710938"/>
+ <use xlink:href="#glyph0-9" x="516.262756" y="467.710938"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 579.664062 L 528.683594 579.664062 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 541.199219 L 528.683594 541.199219 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 502.738281 L 528.683594 502.738281 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 464.273438 L 528.683594 464.273438 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 615.28125 L 536.363281 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 615.28125 L 574.753906 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 615.28125 L 613.140625 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 615.28125 L 651.53125 611.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 615.28125 L 689.921875 611.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="527.027344" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="532.36293" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="535.028381" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="540.363968" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="565.417969" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="570.753555" y="624.992188"/>
+ <use xlink:href="#glyph0-3" x="573.419006" y="624.992188"/>
+ <use xlink:href="#glyph0-4" x="578.754593" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="603.804688" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="609.140274" y="624.992188"/>
+ <use xlink:href="#glyph0-4" x="611.805725" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="617.141312" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="642.195312" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="647.530899" y="624.992188"/>
+ <use xlink:href="#glyph0-5" x="650.19635" y="624.992188"/>
+ <use xlink:href="#glyph0-4" x="655.531937" y="624.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="680.585938" y="624.992188"/>
+ <use xlink:href="#glyph0-2" x="685.921524" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="688.586975" y="624.992188"/>
+ <use xlink:href="#glyph0-1" x="693.922562" y="624.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="610.140625" y="637.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="496.324219" y="540.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="496.324219" y="533.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="496.324219" y="528.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="496.324219" y="522.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-11" x="521" y="442.800781"/>
+ <use xlink:href="#glyph5-3" x="529.003906" y="442.800781"/>
+ <use xlink:href="#glyph5-6" x="532.337891" y="442.800781"/>
+ <use xlink:href="#glyph5-19" x="539.667969" y="442.800781"/>
+ <use xlink:href="#glyph5-15" x="550.337891" y="442.800781"/>
+ <use xlink:href="#glyph5-3" x="557.667969" y="442.800781"/>
+ <use xlink:href="#glyph5-16" x="561.001953" y="442.800781"/>
+ <use xlink:href="#glyph5-10" x="568.332031" y="442.800781"/>
+ <use xlink:href="#glyph5-2" x="576.335938" y="442.800781"/>
+ <use xlink:href="#glyph5-15" x="581.005859" y="442.800781"/>
+ <use xlink:href="#glyph5-16" x="588.335938" y="442.800781"/>
+ <use xlink:href="#glyph5-26" x="595.666016" y="442.800781"/>
+ <use xlink:href="#glyph5-22" x="602.996094" y="442.800781"/>
+ <use xlink:href="#glyph5-24" x="609.669922" y="442.800781"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 0 864 L 237.332031 864 L 237.332031 648 L 0 648 Z "/>
+<g clip-path="url(#clip185)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 864 L 237.332031 864 L 237.332031 648 L 0 648 Z "/>
+</g>
+<g clip-path="url(#clip186)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 827.027344 L 222.933594 827.027344 L 222.933594 662.398438 L 54.019531 662.398438 Z "/>
+</g>
+<g clip-path="url(#clip187)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 800.515625 L 222.933594 800.515625 "/>
+</g>
+<g clip-path="url(#clip188)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 762.449219 L 222.933594 762.449219 "/>
+</g>
+<g clip-path="url(#clip189)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 724.386719 L 222.933594 724.386719 "/>
+</g>
+<g clip-path="url(#clip190)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 686.320312 L 222.933594 686.320312 "/>
+</g>
+<g clip-path="url(#clip191)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 80.890625 827.027344 L 80.890625 662.398438 "/>
+</g>
+<g clip-path="url(#clip192)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.28125 827.027344 L 119.28125 662.398438 "/>
+</g>
+<g clip-path="url(#clip193)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.671875 827.027344 L 157.671875 662.398438 "/>
+</g>
+<g clip-path="url(#clip194)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.058594 827.027344 L 196.058594 662.398438 "/>
+</g>
+<g clip-path="url(#clip195)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 819.546875 L 222.933594 819.546875 "/>
+</g>
+<g clip-path="url(#clip196)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 781.480469 L 222.933594 781.480469 "/>
+</g>
+<g clip-path="url(#clip197)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 743.417969 L 222.933594 743.417969 "/>
+</g>
+<g clip-path="url(#clip198)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 705.355469 L 222.933594 705.355469 "/>
+</g>
+<g clip-path="url(#clip199)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 667.289062 L 222.933594 667.289062 "/>
+</g>
+<g clip-path="url(#clip200)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 827.027344 L 61.695312 662.398438 "/>
+</g>
+<g clip-path="url(#clip201)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 827.027344 L 100.085938 662.398438 "/>
+</g>
+<g clip-path="url(#clip202)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 827.027344 L 138.476562 662.398438 "/>
+</g>
+<g clip-path="url(#clip203)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 827.027344 L 176.867188 662.398438 "/>
+</g>
+<g clip-path="url(#clip204)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 827.027344 L 215.253906 662.398438 "/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 65.417969 819.546875 C 65.417969 824.507812 57.976562 824.507812 57.976562 819.546875 C 57.976562 814.585938 65.417969 814.585938 65.417969 819.546875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 68.1875 808.5625 C 68.1875 813.523438 60.746094 813.523438 60.746094 808.5625 C 60.746094 803.601562 68.1875 803.601562 68.1875 808.5625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 71.261719 796.355469 C 71.261719 801.316406 63.824219 801.316406 63.824219 796.355469 C 63.824219 791.394531 71.261719 791.394531 71.261719 796.355469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 74.339844 784.152344 C 74.339844 789.113281 66.898438 789.113281 66.898438 784.152344 C 66.898438 779.191406 74.339844 779.191406 74.339844 784.152344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 77.417969 771.945312 C 77.417969 776.90625 69.976562 776.90625 69.976562 771.945312 C 69.976562 766.984375 77.417969 766.984375 77.417969 771.945312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 80.496094 759.742188 C 80.496094 764.703125 73.054688 764.703125 73.054688 759.742188 C 73.054688 754.78125 80.496094 754.78125 80.496094 759.742188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 83.574219 747.535156 C 83.574219 752.496094 76.132812 752.496094 76.132812 747.535156 C 76.132812 742.578125 83.574219 742.578125 83.574219 747.535156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 86.648438 735.332031 C 86.648438 740.292969 79.210938 740.292969 79.210938 735.332031 C 79.210938 730.371094 86.648438 730.371094 86.648438 735.332031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 89.726562 723.128906 C 89.726562 728.085938 82.285156 728.085938 82.285156 723.128906 C 82.285156 718.167969 89.726562 718.167969 89.726562 723.128906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 92.804688 710.921875 C 92.804688 715.882812 85.363281 715.882812 85.363281 710.921875 C 85.363281 705.960938 92.804688 705.960938 92.804688 710.921875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 95.882812 698.71875 C 95.882812 703.679688 88.441406 703.679688 88.441406 698.71875 C 88.441406 693.757812 95.882812 693.757812 95.882812 698.71875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 98.960938 686.511719 C 98.960938 691.472656 91.519531 691.472656 91.519531 686.511719 C 91.519531 681.550781 98.960938 681.550781 98.960938 686.511719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 102.035156 674.308594 C 102.035156 679.269531 94.597656 679.269531 94.597656 674.308594 C 94.597656 669.347656 102.035156 669.347656 102.035156 674.308594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 105.113281 669.882812 C 105.113281 674.84375 97.671875 674.84375 97.671875 669.882812 C 97.671875 664.921875 105.113281 664.921875 105.113281 669.882812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 108.191406 675.984375 C 108.191406 680.945312 100.75 680.945312 100.75 675.984375 C 100.75 671.023438 108.191406 671.023438 108.191406 675.984375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 111.269531 682.089844 C 111.269531 687.046875 103.828125 687.046875 103.828125 682.089844 C 103.828125 677.128906 111.269531 677.128906 111.269531 682.089844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 114.347656 688.191406 C 114.347656 693.152344 106.90625 693.152344 106.90625 688.191406 C 106.90625 683.230469 114.347656 683.230469 114.347656 688.191406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 117.421875 694.292969 C 117.421875 699.253906 109.984375 699.253906 109.984375 694.292969 C 109.984375 689.332031 117.421875 689.332031 117.421875 694.292969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 120.5 700.394531 C 120.5 705.355469 113.058594 705.355469 113.058594 700.394531 C 113.058594 695.433594 120.5 695.433594 120.5 700.394531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 123.578125 706.496094 C 123.578125 711.457031 116.136719 711.457031 116.136719 706.496094 C 116.136719 701.539062 123.578125 701.539062 123.578125 706.496094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 126.65625 712.601562 C 126.65625 717.5625 119.214844 717.5625 119.214844 712.601562 C 119.214844 707.640625 126.65625 707.640625 126.65625 712.601562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 129.734375 718.703125 C 129.734375 723.664062 122.292969 723.664062 122.292969 718.703125 C 122.292969 713.742188 129.734375 713.742188 129.734375 718.703125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 132.808594 724.804688 C 132.808594 729.765625 125.371094 729.765625 125.371094 724.804688 C 125.371094 719.84375 132.808594 719.84375 132.808594 724.804688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 135.886719 730.90625 C 135.886719 735.867188 128.445312 735.867188 128.445312 730.90625 C 128.445312 725.945312 135.886719 725.945312 135.886719 730.90625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 138.964844 737.011719 C 138.964844 741.972656 131.523438 741.972656 131.523438 737.011719 C 131.523438 732.050781 138.964844 732.050781 138.964844 737.011719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 142.042969 743.113281 C 142.042969 748.074219 134.601562 748.074219 134.601562 743.113281 C 134.601562 738.152344 142.042969 738.152344 142.042969 743.113281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 145.121094 737.621094 C 145.121094 742.582031 137.679688 742.582031 137.679688 737.621094 C 137.679688 732.660156 145.121094 732.660156 145.121094 737.621094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 148.195312 731.519531 C 148.195312 736.480469 140.757812 736.480469 140.757812 731.519531 C 140.757812 726.558594 148.195312 726.558594 148.195312 731.519531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 151.273438 725.414062 C 151.273438 730.375 143.832031 730.375 143.832031 725.414062 C 143.832031 720.453125 151.273438 720.453125 151.273438 725.414062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 154.351562 719.3125 C 154.351562 724.273438 146.910156 724.273438 146.910156 719.3125 C 146.910156 714.351562 154.351562 714.351562 154.351562 719.3125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 157.429688 713.210938 C 157.429688 718.171875 149.988281 718.171875 149.988281 713.210938 C 149.988281 708.25 157.429688 708.25 157.429688 713.210938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 160.507812 707.109375 C 160.507812 712.070312 153.066406 712.070312 153.066406 707.109375 C 153.066406 702.148438 160.507812 702.148438 160.507812 707.109375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 163.582031 701.003906 C 163.582031 705.964844 156.144531 705.964844 156.144531 701.003906 C 156.144531 696.046875 163.582031 696.046875 163.582031 701.003906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 166.660156 694.902344 C 166.660156 699.863281 159.21875 699.863281 159.21875 694.902344 C 159.21875 689.941406 166.660156 689.941406 166.660156 694.902344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 169.738281 688.800781 C 169.738281 693.761719 162.296875 693.761719 162.296875 688.800781 C 162.296875 683.839844 169.738281 683.839844 169.738281 688.800781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 172.816406 682.699219 C 172.816406 687.660156 165.375 687.660156 165.375 682.699219 C 165.375 677.738281 172.816406 677.738281 172.816406 682.699219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 175.894531 676.597656 C 175.894531 681.554688 168.453125 681.554688 168.453125 676.597656 C 168.453125 671.636719 175.894531 671.636719 175.894531 676.597656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 178.96875 670.492188 C 178.96875 675.453125 171.53125 675.453125 171.53125 670.492188 C 171.53125 665.53125 178.96875 665.53125 178.96875 670.492188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 182.046875 673.085938 C 182.046875 678.046875 174.605469 678.046875 174.605469 673.085938 C 174.605469 668.125 182.046875 668.125 182.046875 673.085938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 185.125 685.292969 C 185.125 690.253906 177.683594 690.253906 177.683594 685.292969 C 177.683594 680.332031 185.125 680.332031 185.125 685.292969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 188.203125 697.496094 C 188.203125 702.457031 180.761719 702.457031 180.761719 697.496094 C 180.761719 692.535156 188.203125 692.535156 188.203125 697.496094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 191.28125 709.703125 C 191.28125 714.664062 183.839844 714.664062 183.839844 709.703125 C 183.839844 704.742188 191.28125 704.742188 191.28125 709.703125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 194.355469 721.90625 C 194.355469 726.867188 186.917969 726.867188 186.917969 721.90625 C 186.917969 716.945312 194.355469 716.945312 194.355469 721.90625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 197.433594 734.113281 C 197.433594 739.070312 189.992188 739.070312 189.992188 734.113281 C 189.992188 729.152344 197.433594 729.152344 197.433594 734.113281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 200.511719 746.316406 C 200.511719 751.277344 193.070312 751.277344 193.070312 746.316406 C 193.070312 741.355469 200.511719 741.355469 200.511719 746.316406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 203.589844 758.519531 C 203.589844 763.480469 196.148438 763.480469 196.148438 758.519531 C 196.148438 753.5625 203.589844 753.5625 203.589844 758.519531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 206.667969 770.726562 C 206.667969 775.6875 199.226562 775.6875 199.226562 770.726562 C 199.226562 765.765625 206.667969 765.765625 206.667969 770.726562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 209.742188 782.929688 C 209.742188 787.890625 202.304688 787.890625 202.304688 782.929688 C 202.304688 777.96875 209.742188 777.96875 209.742188 782.929688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 212.820312 795.136719 C 212.820312 800.097656 205.378906 800.097656 205.378906 795.136719 C 205.378906 790.175781 212.820312 790.175781 212.820312 795.136719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 215.898438 807.339844 C 215.898438 812.300781 208.457031 812.300781 208.457031 807.339844 C 208.457031 802.378906 215.898438 802.378906 215.898438 807.339844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 218.976562 819.546875 C 218.976562 824.507812 211.535156 824.507812 211.535156 819.546875 C 211.535156 814.585938 218.976562 814.585938 218.976562 819.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="822.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="822.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="822.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="822.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="784.917969"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="784.917969"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="784.917969"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="784.917969"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="746.855469"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="746.855469"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="746.855469"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="746.855469"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="708.792969"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="708.792969"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="708.792969"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="708.792969"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="670.726562"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="670.726562"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="670.726562"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="670.726562"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 819.546875 L 54.019531 819.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 781.480469 L 54.019531 781.480469 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 743.417969 L 54.019531 743.417969 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 705.355469 L 54.019531 705.355469 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 667.289062 L 54.019531 667.289062 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 831.28125 L 61.695312 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 831.28125 L 100.085938 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 831.28125 L 138.476562 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 831.28125 L 176.867188 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 831.28125 L 215.253906 827.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="52.359375" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="57.694962" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="60.360413" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="65.695999" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="90.75" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="96.085587" y="840.992188"/>
+ <use xlink:href="#glyph0-3" x="98.751038" y="840.992188"/>
+ <use xlink:href="#glyph0-4" x="104.086624" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="129.140625" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="134.476212" y="840.992188"/>
+ <use xlink:href="#glyph0-4" x="137.141663" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="142.477249" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="167.53125" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="172.866837" y="840.992188"/>
+ <use xlink:href="#glyph0-5" x="175.532288" y="840.992188"/>
+ <use xlink:href="#glyph0-4" x="180.867874" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="205.917969" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="211.253555" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="213.919006" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="219.254593" y="840.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="135.476562" y="853.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="756.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="749.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="744.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="738.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-20" x="23.679688" y="658.800781"/>
+ <use xlink:href="#glyph5-3" x="32.345703" y="658.800781"/>
+ <use xlink:href="#glyph5-18" x="35.679688" y="658.800781"/>
+ <use xlink:href="#glyph5-22" x="42.353516" y="658.800781"/>
+ <use xlink:href="#glyph5-2" x="49.027344" y="658.800781"/>
+ <use xlink:href="#glyph5-8" x="53.697266" y="658.800781"/>
+ <use xlink:href="#glyph5-24" x="60.371094" y="658.800781"/>
+ <use xlink:href="#glyph5-8" x="64.367188" y="658.800781"/>
+</g>
+<g clip-path="url(#clip205)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 237.332031 864 L 474.664062 864 L 474.664062 648 L 237.332031 648 Z "/>
+</g>
+<g clip-path="url(#clip206)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.332031 864 L 474.664062 864 L 474.664062 648 L 237.332031 648 Z "/>
+</g>
+<g clip-path="url(#clip207)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 291.351562 827.027344 L 460.265625 827.027344 L 460.265625 662.398438 L 291.351562 662.398438 Z "/>
+</g>
+<g clip-path="url(#clip208)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 802.214844 L 460.265625 802.214844 "/>
+</g>
+<g clip-path="url(#clip209)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 763.226562 L 460.265625 763.226562 "/>
+</g>
+<g clip-path="url(#clip210)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 724.234375 L 460.265625 724.234375 "/>
+</g>
+<g clip-path="url(#clip211)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 685.242188 L 460.265625 685.242188 "/>
+</g>
+<g clip-path="url(#clip212)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.222656 827.027344 L 318.222656 662.398438 "/>
+</g>
+<g clip-path="url(#clip213)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.613281 827.027344 L 356.613281 662.398438 "/>
+</g>
+<g clip-path="url(#clip214)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.003906 827.027344 L 395.003906 662.398438 "/>
+</g>
+<g clip-path="url(#clip215)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.394531 827.027344 L 433.394531 662.398438 "/>
+</g>
+<g clip-path="url(#clip216)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 821.710938 L 460.265625 821.710938 "/>
+</g>
+<g clip-path="url(#clip217)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 782.71875 L 460.265625 782.71875 "/>
+</g>
+<g clip-path="url(#clip218)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 743.730469 L 460.265625 743.730469 "/>
+</g>
+<g clip-path="url(#clip219)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 704.738281 L 460.265625 704.738281 "/>
+</g>
+<g clip-path="url(#clip220)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 665.746094 L 460.265625 665.746094 "/>
+</g>
+<g clip-path="url(#clip221)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 827.027344 L 299.03125 662.398438 "/>
+</g>
+<g clip-path="url(#clip222)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 827.027344 L 337.417969 662.398438 "/>
+</g>
+<g clip-path="url(#clip223)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 827.027344 L 375.808594 662.398438 "/>
+</g>
+<g clip-path="url(#clip224)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 827.027344 L 414.199219 662.398438 "/>
+</g>
+<g clip-path="url(#clip225)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 827.027344 L 452.589844 662.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 299.03125 819.546875 L 299.335938 819.480469 L 299.644531 819.414062 L 299.953125 819.34375 L 300.261719 819.269531 L 300.566406 819.199219 L 300.875 819.121094 L 301.183594 819.046875 L 301.800781 818.882812 L 302.105469 818.800781 L 302.722656 818.628906 L 303.03125 818.539062 L 303.335938 818.445312 L 303.644531 818.351562 L 303.953125 818.253906 L 304.570312 818.050781 L 304.875 817.945312 L 305.183594 817.839844 L 305.492188 817.730469 L 305.800781 817.617188 L 306.105469 817.5 L 306.414062 817.382812 L 306.722656 817.261719 L 307.339844 817.011719 L 307.644531 816.878906 L 307.953125 816.746094 L 308.570312 816.472656 L 308.878906 816.328125 L 309.183594 816.183594 L 309.800781 815.878906 L 310.109375 815.722656 L 310.414062 815.5625 L 310.722656 815.398438 L 311.03125 815.230469 L 311.648438 814.886719 L 311.953125 814.707031 L 312.261719 814.523438 L 312.570312 814.335938 L 312.878906 814.144531 L 313.183594 813.949219 L 313.492188 813.75 L 313.800781 813.546875 L 314.417969 813.125 L 314.722656 812.90625 L 315.03125 812.683594 L 315.339844 812.457031 L 315.648438 812.226562 L 315.953125 811.992188 L 316.261719 811.75 L 316.570312 811.503906 L 316.878906 811.253906 L 317.1875 810.996094 L 317.492188 810.734375 L 317.800781 810.46875 L 318.109375 810.199219 L 318.417969 809.921875 L 318.722656 809.636719 L 319.03125 809.351562 L 319.648438 808.757812 L 319.957031 808.453125 L 320.261719 808.140625 L 320.570312 807.824219 L 320.878906 807.5 L 321.1875 807.171875 L 321.492188 806.835938 L 321.800781 806.496094 L 322.109375 806.148438 L 322.417969 805.792969 L 322.726562 805.433594 L 323.03125 805.066406 L 323.339844 804.695312 L 323.648438 804.316406 L 323.957031 803.929688 L 324.265625 803.535156 L 324.570312 803.132812 L 324.878906 802.726562 L 325.1875 802.3125 L 325.496094 801.890625 L 325.800781 801.464844 L 326.109375 801.027344 L 326.417969 800.585938 L 326.726562 800.136719 L 327.035156 799.679688 L 327.339844 799.214844 L 327.648438 798.742188 L 327.957031 798.261719 L 328.265625 797.773438 L 328.570312 797.28125 L 328.878906 796.777344 L 329.1875 796.265625 L 329.496094 795.746094 L 329.804688 795.222656 L 330.109375 794.6875 L 330.417969 794.144531 L 330.726562 793.59375 L 331.035156 793.035156 L 331.339844 792.46875 L 331.648438 791.894531 L 331.957031 791.3125 L 332.265625 790.71875 L 332.574219 790.121094 L 333.1875 788.894531 L 333.496094 788.269531 L 333.804688 787.636719 L 334.109375 786.996094 L 334.417969 786.34375 L 334.726562 785.683594 L 335.035156 785.019531 L 335.34375 784.339844 L 335.648438 783.65625 L 335.957031 782.960938 L 336.265625 782.261719 L 336.574219 781.550781 L 336.878906 780.828125 L 337.1875 780.101562 L 337.496094 779.363281 L 337.804688 778.617188 L 338.113281 777.863281 L 338.417969 777.101562 L 338.726562 776.328125 L 339.035156 775.546875 L 339.34375 774.757812 L 339.648438 773.960938 L 339.957031 773.152344 L 340.265625 772.335938 L 340.574219 771.511719 L 340.882812 770.679688 L 341.1875 769.839844 L 341.496094 768.988281 L 341.804688 768.128906 L 342.113281 767.261719 L 342.421875 766.386719 L 342.726562 765.503906 L 343.035156 764.609375 L 343.34375 763.710938 L 343.652344 762.800781 L 343.957031 761.882812 L 344.265625 760.957031 L 344.574219 760.023438 L 344.882812 759.082031 L 345.191406 758.132812 L 345.496094 757.175781 L 345.804688 756.210938 L 346.113281 755.238281 L 346.421875 754.253906 L 346.726562 753.265625 L 347.035156 752.269531 L 347.34375 751.265625 L 347.652344 750.257812 L 347.960938 749.238281 L 348.265625 748.214844 L 348.574219 747.179688 L 348.882812 746.140625 L 349.191406 745.097656 L 349.496094 744.042969 L 349.804688 742.984375 L 350.113281 741.917969 L 350.421875 740.847656 L 350.730469 739.769531 L 351.035156 738.683594 L 351.34375 737.59375 L 351.652344 736.5 L 351.960938 735.398438 L 352.265625 734.292969 L 352.574219 733.179688 L 352.882812 732.0625 L 353.191406 730.941406 L 353.5 729.8125 L 353.804688 728.679688 L 354.113281 727.546875 L 354.421875 726.40625 L 354.730469 725.261719 L 355.035156 724.113281 L 355.34375 722.960938 L 355.652344 721.804688 L 355.960938 720.644531 L 356.269531 719.480469 L 356.574219 718.316406 L 356.882812 717.148438 L 357.5 714.804688 L 357.808594 713.628906 L 358.113281 712.453125 L 358.730469 710.09375 L 359.039062 708.910156 L 359.34375 707.726562 L 360.578125 702.992188 L 360.882812 701.816406 L 361.191406 700.65625 L 361.5 699.507812 L 361.808594 698.375 L 362.113281 697.253906 L 362.421875 696.152344 L 362.730469 695.0625 L 363.039062 693.988281 L 363.347656 692.933594 L 363.652344 691.894531 L 363.960938 690.875 L 364.269531 689.871094 L 364.578125 688.886719 L 364.882812 687.925781 L 365.191406 686.980469 L 365.5 686.058594 L 365.808594 685.15625 L 366.117188 684.277344 L 366.421875 683.417969 L 366.730469 682.582031 L 367.039062 681.769531 L 367.347656 680.980469 L 367.652344 680.214844 L 367.960938 679.476562 L 368.269531 678.757812 L 368.578125 678.070312 L 368.886719 677.402344 L 369.191406 676.765625 L 369.5 676.152344 L 369.808594 675.566406 L 370.117188 675.007812 L 370.421875 674.476562 L 370.730469 673.972656 L 371.039062 673.496094 L 371.347656 673.050781 L 371.65625 672.632812 L 371.960938 672.242188 L 372.269531 671.882812 L 372.578125 671.550781 L 372.886719 671.25 L 373.195312 670.976562 L 373.5 670.734375 L 373.808594 670.523438 L 374.117188 670.339844 L 374.425781 670.1875 L 374.730469 670.066406 L 375.039062 669.972656 L 375.347656 669.914062 L 375.65625 669.882812 L 375.964844 669.882812 L 376.269531 669.914062 L 376.578125 669.972656 L 376.886719 670.066406 L 377.195312 670.1875 L 377.5 670.339844 L 377.808594 670.523438 L 378.117188 670.734375 L 378.425781 670.976562 L 378.734375 671.25 L 379.039062 671.550781 L 379.347656 671.882812 L 379.65625 672.242188 L 379.964844 672.632812 L 380.269531 673.050781 L 380.578125 673.496094 L 380.886719 673.972656 L 381.195312 674.476562 L 381.503906 675.007812 L 381.808594 675.566406 L 382.117188 676.152344 L 382.425781 676.765625 L 382.734375 677.402344 L 383.039062 678.070312 L 383.347656 678.757812 L 383.65625 679.476562 L 383.964844 680.214844 L 384.273438 680.980469 L 384.578125 681.769531 L 384.886719 682.582031 L 385.195312 683.417969 L 385.503906 684.277344 L 385.808594 685.15625 L 386.117188 686.058594 L 386.425781 686.980469 L 386.734375 687.925781 L 387.042969 688.886719 L 387.347656 689.871094 L 387.65625 690.875 L 387.964844 691.894531 L 388.273438 692.933594 L 388.578125 693.988281 L 388.886719 695.0625 L 389.195312 696.152344 L 389.503906 697.253906 L 389.8125 698.375 L 390.117188 699.507812 L 390.425781 700.65625 L 390.734375 701.816406 L 391.042969 702.992188 L 391.351562 704.175781 L 391.65625 705.359375 L 392.582031 708.910156 L 392.886719 710.09375 L 393.503906 712.453125 L 394.121094 714.804688 L 394.425781 715.976562 L 394.734375 717.148438 L 395.042969 718.316406 L 395.351562 719.480469 L 395.65625 720.644531 L 395.964844 721.804688 L 396.273438 722.960938 L 396.582031 724.113281 L 396.890625 725.261719 L 397.195312 726.40625 L 397.503906 727.546875 L 398.121094 729.8125 L 398.425781 730.941406 L 398.734375 732.0625 L 399.042969 733.179688 L 399.351562 734.292969 L 399.660156 735.398438 L 399.964844 736.5 L 400.273438 737.59375 L 400.582031 738.683594 L 400.890625 739.769531 L 401.195312 740.847656 L 401.503906 741.917969 L 401.8125 742.984375 L 402.121094 744.042969 L 402.429688 745.097656 L 402.734375 746.140625 L 403.042969 747.179688 L 403.351562 748.214844 L 403.660156 749.238281 L 403.964844 750.257812 L 404.273438 751.265625 L 404.582031 752.269531 L 404.890625 753.265625 L 405.199219 754.253906 L 405.503906 755.238281 L 405.8125 756.210938 L 406.121094 757.175781 L 406.429688 758.132812 L 406.738281 759.082031 L 407.042969 760.023438 L 407.351562 760.957031 L 407.660156 761.882812 L 407.96875 762.800781 L 408.273438 763.710938 L 408.582031 764.609375 L 408.890625 765.503906 L 409.199219 766.386719 L 409.507812 767.261719 L 409.8125 768.128906 L 410.121094 768.988281 L 410.429688 769.839844 L 410.738281 770.679688 L 411.042969 771.511719 L 411.351562 772.335938 L 411.660156 773.152344 L 411.96875 773.960938 L 412.277344 774.757812 L 412.582031 775.546875 L 412.890625 776.328125 L 413.199219 777.101562 L 413.507812 777.863281 L 413.8125 778.617188 L 414.121094 779.363281 L 414.429688 780.101562 L 414.738281 780.828125 L 415.046875 781.550781 L 415.351562 782.261719 L 415.660156 782.960938 L 415.96875 783.65625 L 416.277344 784.339844 L 416.582031 785.019531 L 416.890625 785.683594 L 417.199219 786.34375 L 417.507812 786.996094 L 417.816406 787.636719 L 418.121094 788.269531 L 418.429688 788.894531 L 418.738281 789.511719 L 419.046875 790.121094 L 419.351562 790.71875 L 419.660156 791.3125 L 419.96875 791.894531 L 420.277344 792.46875 L 420.585938 793.035156 L 420.890625 793.59375 L 421.199219 794.144531 L 421.507812 794.6875 L 421.816406 795.222656 L 422.125 795.746094 L 422.429688 796.265625 L 422.738281 796.777344 L 423.046875 797.28125 L 423.355469 797.773438 L 423.660156 798.261719 L 423.96875 798.742188 L 424.277344 799.214844 L 424.585938 799.679688 L 424.894531 800.136719 L 425.199219 800.585938 L 425.507812 801.027344 L 425.816406 801.464844 L 426.125 801.890625 L 426.429688 802.3125 L 426.738281 802.726562 L 427.046875 803.132812 L 427.355469 803.535156 L 427.664062 803.929688 L 427.96875 804.316406 L 428.277344 804.695312 L 428.585938 805.066406 L 428.894531 805.433594 L 429.199219 805.792969 L 429.507812 806.148438 L 429.816406 806.496094 L 430.125 806.835938 L 430.433594 807.171875 L 430.738281 807.5 L 431.046875 807.824219 L 431.355469 808.140625 L 431.664062 808.453125 L 431.96875 808.757812 L 432.585938 809.351562 L 433.203125 809.921875 L 433.507812 810.199219 L 433.816406 810.46875 L 434.125 810.734375 L 434.433594 810.996094 L 434.738281 811.253906 L 435.046875 811.503906 L 435.355469 811.75 L 435.664062 811.992188 L 435.972656 812.226562 L 436.277344 812.457031 L 436.585938 812.683594 L 436.894531 812.90625 L 437.203125 813.125 L 437.507812 813.335938 L 437.816406 813.546875 L 438.125 813.75 L 438.433594 813.949219 L 438.742188 814.144531 L 439.046875 814.335938 L 439.355469 814.523438 L 439.664062 814.707031 L 439.972656 814.886719 L 440.28125 815.058594 L 440.585938 815.230469 L 440.894531 815.398438 L 441.203125 815.5625 L 441.511719 815.722656 L 441.816406 815.878906 L 442.433594 816.183594 L 443.050781 816.472656 L 443.355469 816.609375 L 443.664062 816.746094 L 444.28125 817.011719 L 444.585938 817.136719 L 444.894531 817.261719 L 445.203125 817.382812 L 445.820312 817.617188 L 446.125 817.730469 L 446.433594 817.839844 L 447.050781 818.050781 L 447.355469 818.152344 L 447.664062 818.253906 L 447.972656 818.351562 L 448.589844 818.539062 L 448.894531 818.628906 L 449.511719 818.800781 L 449.820312 818.882812 L 450.125 818.964844 L 450.433594 819.046875 L 450.742188 819.121094 L 451.050781 819.199219 L 451.359375 819.269531 L 451.664062 819.34375 L 451.972656 819.414062 L 452.589844 819.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="270.929688" y="825.148438"/>
+ <use xlink:href="#glyph0-2" x="276.265274" y="825.148438"/>
+ <use xlink:href="#glyph0-1" x="278.930725" y="825.148438"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="270.929688" y="786.15625"/>
+ <use xlink:href="#glyph0-2" x="276.265274" y="786.15625"/>
+ <use xlink:href="#glyph0-3" x="278.930725" y="786.15625"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="270.929688" y="747.167969"/>
+ <use xlink:href="#glyph0-2" x="276.265274" y="747.167969"/>
+ <use xlink:href="#glyph0-7" x="278.930725" y="747.167969"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="270.929688" y="708.175781"/>
+ <use xlink:href="#glyph0-2" x="276.265274" y="708.175781"/>
+ <use xlink:href="#glyph0-8" x="278.930725" y="708.175781"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="270.929688" y="669.183594"/>
+ <use xlink:href="#glyph0-2" x="276.265274" y="669.183594"/>
+ <use xlink:href="#glyph0-9" x="278.930725" y="669.183594"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 821.710938 L 291.351562 821.710938 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 782.71875 L 291.351562 782.71875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 743.730469 L 291.351562 743.730469 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 704.738281 L 291.351562 704.738281 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 665.746094 L 291.351562 665.746094 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 831.28125 L 299.03125 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 831.28125 L 337.417969 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 831.28125 L 375.808594 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 831.28125 L 414.199219 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 831.28125 L 452.589844 827.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="289.695312" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="295.030899" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="297.69635" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="303.031937" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="328.082031" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="333.417618" y="840.992188"/>
+ <use xlink:href="#glyph0-3" x="336.083069" y="840.992188"/>
+ <use xlink:href="#glyph0-4" x="341.418655" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="366.472656" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="371.808243" y="840.992188"/>
+ <use xlink:href="#glyph0-4" x="374.473694" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="379.80928" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="404.863281" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="410.198868" y="840.992188"/>
+ <use xlink:href="#glyph0-5" x="412.864319" y="840.992188"/>
+ <use xlink:href="#glyph0-4" x="418.199905" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="443.253906" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="448.589493" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="451.254944" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="456.59053" y="840.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="372.808594" y="853.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="258.992188" y="756.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="258.992188" y="749.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="258.992188" y="744.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="258.992188" y="738.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-25" x="287.011719" y="658.800781"/>
+ <use xlink:href="#glyph5-4" x="296.345703" y="658.800781"/>
+ <use xlink:href="#glyph5-26" x="303.019531" y="658.800781"/>
+ <use xlink:href="#glyph5-18" x="310.349609" y="658.800781"/>
+ <use xlink:href="#glyph5-18" x="317.023438" y="658.800781"/>
+ <use xlink:href="#glyph5-3" x="323.697266" y="658.800781"/>
+ <use xlink:href="#glyph5-4" x="327.03125" y="658.800781"/>
+ <use xlink:href="#glyph5-5" x="333.705078" y="658.800781"/>
+ <use xlink:href="#glyph5-10" x="341.035156" y="658.800781"/>
+ <use xlink:href="#glyph5-2" x="349.039062" y="658.800781"/>
+ <use xlink:href="#glyph5-15" x="353.708984" y="658.800781"/>
+ <use xlink:href="#glyph5-16" x="361.039062" y="658.800781"/>
+ <use xlink:href="#glyph5-26" x="368.369141" y="658.800781"/>
+ <use xlink:href="#glyph5-22" x="375.699219" y="658.800781"/>
+ <use xlink:href="#glyph5-24" x="382.373047" y="658.800781"/>
+</g>
+<g clip-path="url(#clip226)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 474.667969 864 L 712 864 L 712 648 L 474.667969 648 Z "/>
+</g>
+<g clip-path="url(#clip227)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 474.667969 864 L 712 864 L 712 648 L 474.667969 648 Z "/>
+</g>
+<g clip-path="url(#clip228)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 528.683594 827.027344 L 697.597656 827.027344 L 697.597656 662.398438 L 528.683594 662.398438 Z "/>
+</g>
+<g clip-path="url(#clip229)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 801.546875 L 697.601562 801.546875 "/>
+</g>
+<g clip-path="url(#clip230)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 763.496094 L 697.601562 763.496094 "/>
+</g>
+<g clip-path="url(#clip231)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 725.441406 L 697.601562 725.441406 "/>
+</g>
+<g clip-path="url(#clip232)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 687.390625 L 697.601562 687.390625 "/>
+</g>
+<g clip-path="url(#clip233)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 555.558594 827.027344 L 555.558594 662.398438 "/>
+</g>
+<g clip-path="url(#clip234)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 593.949219 827.027344 L 593.949219 662.398438 "/>
+</g>
+<g clip-path="url(#clip235)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 632.335938 827.027344 L 632.335938 662.398438 "/>
+</g>
+<g clip-path="url(#clip236)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 670.726562 827.027344 L 670.726562 662.398438 "/>
+</g>
+<g clip-path="url(#clip237)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 820.570312 L 697.601562 820.570312 "/>
+</g>
+<g clip-path="url(#clip238)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 782.519531 L 697.601562 782.519531 "/>
+</g>
+<g clip-path="url(#clip239)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 744.46875 L 697.601562 744.46875 "/>
+</g>
+<g clip-path="url(#clip240)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 706.417969 L 697.601562 706.417969 "/>
+</g>
+<g clip-path="url(#clip241)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 668.367188 L 697.601562 668.367188 "/>
+</g>
+<g clip-path="url(#clip242)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 827.027344 L 536.363281 662.398438 "/>
+</g>
+<g clip-path="url(#clip243)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 827.027344 L 574.753906 662.398438 "/>
+</g>
+<g clip-path="url(#clip244)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 827.027344 L 613.140625 662.398438 "/>
+</g>
+<g clip-path="url(#clip245)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 827.027344 L 651.53125 662.398438 "/>
+</g>
+<g clip-path="url(#clip246)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 827.027344 L 689.921875 662.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 536.363281 819.546875 L 536.671875 819.523438 L 536.976562 819.503906 L 537.285156 819.480469 L 537.59375 819.460938 L 538.210938 819.414062 L 538.515625 819.390625 L 539.132812 819.34375 L 539.441406 819.316406 L 539.746094 819.292969 L 540.054688 819.265625 L 540.363281 819.242188 L 540.980469 819.1875 L 541.285156 819.15625 L 541.902344 819.101562 L 542.210938 819.070312 L 542.515625 819.039062 L 543.75 818.914062 L 544.054688 818.878906 L 545.289062 818.738281 L 545.59375 818.699219 L 545.902344 818.664062 L 546.519531 818.585938 L 546.824219 818.542969 L 547.132812 818.503906 L 548.058594 818.375 L 548.363281 818.332031 L 549.289062 818.191406 L 549.59375 818.144531 L 550.828125 817.941406 L 551.132812 817.886719 L 552.058594 817.722656 L 552.363281 817.664062 L 552.980469 817.546875 L 553.597656 817.421875 L 553.902344 817.359375 L 554.828125 817.160156 L 555.132812 817.089844 L 555.441406 817.019531 L 555.75 816.945312 L 556.058594 816.875 L 556.367188 816.796875 L 556.671875 816.722656 L 557.289062 816.566406 L 557.597656 816.484375 L 557.902344 816.402344 L 558.519531 816.230469 L 558.828125 816.140625 L 559.136719 816.054688 L 559.441406 815.960938 L 560.058594 815.773438 L 560.367188 815.675781 L 560.671875 815.578125 L 560.980469 815.476562 L 561.90625 815.160156 L 562.210938 815.050781 L 562.828125 814.824219 L 563.445312 814.589844 L 563.75 814.46875 L 564.367188 814.21875 L 564.675781 814.089844 L 564.980469 813.957031 L 565.289062 813.824219 L 565.90625 813.550781 L 566.214844 813.40625 L 566.519531 813.261719 L 567.136719 812.964844 L 567.445312 812.808594 L 567.75 812.652344 L 568.058594 812.492188 L 568.367188 812.328125 L 568.984375 811.992188 L 569.289062 811.816406 L 569.597656 811.640625 L 569.90625 811.460938 L 570.214844 811.273438 L 570.519531 811.085938 L 570.828125 810.894531 L 571.136719 810.699219 L 571.445312 810.5 L 571.753906 810.296875 L 572.058594 810.085938 L 572.367188 809.875 L 572.675781 809.660156 L 572.984375 809.4375 L 573.289062 809.210938 L 573.597656 808.980469 L 573.90625 808.746094 L 574.214844 808.507812 L 574.523438 808.265625 L 574.828125 808.015625 L 575.136719 807.761719 L 575.753906 807.238281 L 576.058594 806.96875 L 576.367188 806.691406 L 576.675781 806.410156 L 576.984375 806.125 L 577.292969 805.832031 L 577.597656 805.53125 L 577.90625 805.230469 L 578.214844 804.917969 L 578.523438 804.601562 L 578.832031 804.277344 L 579.136719 803.949219 L 579.445312 803.613281 L 579.753906 803.269531 L 580.0625 802.917969 L 580.367188 802.5625 L 580.675781 802.195312 L 580.984375 801.824219 L 581.292969 801.445312 L 581.601562 801.058594 L 581.90625 800.664062 L 582.214844 800.257812 L 582.523438 799.847656 L 582.832031 799.429688 L 583.136719 799 L 583.445312 798.5625 L 583.753906 798.117188 L 584.0625 797.664062 L 584.371094 797.199219 L 584.675781 796.726562 L 584.984375 796.246094 L 585.292969 795.753906 L 585.601562 795.25 L 585.90625 794.738281 L 586.214844 794.214844 L 586.523438 793.679688 L 586.832031 793.136719 L 587.140625 792.582031 L 587.445312 792.015625 L 587.753906 791.4375 L 588.0625 790.847656 L 588.371094 790.246094 L 588.675781 789.632812 L 588.984375 789.003906 L 589.292969 788.367188 L 589.601562 787.714844 L 589.910156 787.050781 L 590.214844 786.371094 L 590.523438 785.679688 L 590.832031 784.972656 L 591.140625 784.25 L 591.445312 783.515625 L 591.753906 782.765625 L 592.0625 782 L 592.371094 781.21875 L 592.679688 780.421875 L 592.984375 779.609375 L 593.292969 778.78125 L 593.601562 777.9375 L 593.910156 777.074219 L 594.21875 776.191406 L 594.523438 775.292969 L 594.832031 774.378906 L 595.140625 773.441406 L 595.449219 772.488281 L 595.753906 771.515625 L 596.0625 770.523438 L 596.371094 769.507812 L 596.679688 768.476562 L 596.988281 767.421875 L 597.292969 766.34375 L 597.601562 765.246094 L 597.910156 764.128906 L 598.21875 762.984375 L 598.523438 761.820312 L 598.832031 760.628906 L 599.140625 759.417969 L 599.449219 758.179688 L 599.757812 756.914062 L 600.0625 755.628906 L 600.371094 754.3125 L 600.679688 752.972656 L 600.988281 751.601562 L 601.292969 750.207031 L 601.601562 748.78125 L 601.910156 747.328125 L 602.21875 745.847656 L 602.527344 744.335938 L 602.832031 742.789062 L 603.140625 741.214844 L 603.449219 739.609375 L 603.757812 737.972656 L 604.0625 736.300781 L 604.371094 734.59375 L 604.679688 732.851562 L 604.988281 731.078125 L 605.296875 729.265625 L 605.601562 727.417969 L 605.910156 725.53125 L 606.21875 723.609375 L 606.527344 721.644531 L 606.832031 719.644531 L 607.140625 717.601562 L 607.449219 715.515625 L 607.757812 713.390625 L 608.066406 711.21875 L 608.371094 709.007812 L 608.679688 706.746094 L 608.988281 704.445312 L 609.296875 702.09375 L 609.601562 699.695312 L 609.910156 697.246094 L 610.21875 694.75 L 610.527344 692.203125 L 610.835938 689.605469 L 611.140625 686.953125 L 611.449219 684.25 L 611.757812 681.492188 L 612.066406 678.675781 L 612.375 675.804688 L 612.679688 672.871094 L 612.988281 669.882812 L 613.296875 669.882812 L 613.605469 672.871094 L 613.910156 675.804688 L 614.21875 678.675781 L 614.527344 681.492188 L 614.835938 684.25 L 615.144531 686.953125 L 615.449219 689.605469 L 615.757812 692.203125 L 616.066406 694.75 L 616.375 697.246094 L 616.679688 699.695312 L 616.988281 702.09375 L 617.296875 704.445312 L 617.605469 706.746094 L 617.914062 709.007812 L 618.21875 711.21875 L 618.527344 713.390625 L 618.835938 715.515625 L 619.144531 717.601562 L 619.449219 719.644531 L 619.757812 721.644531 L 620.066406 723.609375 L 620.375 725.53125 L 620.683594 727.417969 L 620.988281 729.265625 L 621.296875 731.078125 L 621.605469 732.851562 L 621.914062 734.59375 L 622.21875 736.300781 L 622.527344 737.972656 L 622.835938 739.609375 L 623.144531 741.214844 L 623.453125 742.789062 L 623.757812 744.335938 L 624.066406 745.847656 L 624.375 747.328125 L 624.683594 748.78125 L 624.988281 750.207031 L 625.296875 751.601562 L 625.605469 752.972656 L 625.914062 754.3125 L 626.222656 755.628906 L 626.527344 756.914062 L 626.835938 758.179688 L 627.144531 759.417969 L 627.453125 760.628906 L 627.761719 761.820312 L 628.066406 762.984375 L 628.375 764.128906 L 628.683594 765.246094 L 628.992188 766.34375 L 629.296875 767.421875 L 629.605469 768.476562 L 629.914062 769.507812 L 630.222656 770.523438 L 630.53125 771.515625 L 630.835938 772.488281 L 631.144531 773.441406 L 631.453125 774.378906 L 631.761719 775.292969 L 632.066406 776.191406 L 632.375 777.074219 L 632.683594 777.9375 L 632.992188 778.78125 L 633.300781 779.609375 L 633.605469 780.421875 L 633.914062 781.21875 L 634.222656 782 L 634.53125 782.765625 L 634.835938 783.515625 L 635.144531 784.25 L 635.453125 784.972656 L 635.761719 785.679688 L 636.070312 786.371094 L 636.375 787.050781 L 636.683594 787.714844 L 636.992188 788.367188 L 637.300781 789.003906 L 637.605469 789.632812 L 637.914062 790.246094 L 638.222656 790.847656 L 638.53125 791.4375 L 638.839844 792.015625 L 639.144531 792.582031 L 639.453125 793.136719 L 639.761719 793.679688 L 640.070312 794.214844 L 640.375 794.738281 L 640.683594 795.25 L 640.992188 795.753906 L 641.300781 796.246094 L 641.609375 796.726562 L 641.914062 797.199219 L 642.222656 797.664062 L 642.53125 798.117188 L 642.839844 798.5625 L 643.148438 799 L 643.453125 799.429688 L 643.761719 799.847656 L 644.070312 800.257812 L 644.378906 800.664062 L 644.683594 801.058594 L 644.992188 801.445312 L 645.300781 801.824219 L 645.609375 802.195312 L 645.917969 802.5625 L 646.222656 802.917969 L 646.53125 803.269531 L 646.839844 803.613281 L 647.148438 803.949219 L 647.453125 804.277344 L 647.761719 804.601562 L 648.070312 804.917969 L 648.378906 805.230469 L 648.6875 805.53125 L 648.992188 805.832031 L 649.300781 806.125 L 649.609375 806.410156 L 649.917969 806.691406 L 650.222656 806.96875 L 650.53125 807.238281 L 651.148438 807.761719 L 651.457031 808.015625 L 651.761719 808.265625 L 652.070312 808.507812 L 652.378906 808.746094 L 652.6875 808.980469 L 652.992188 809.210938 L 653.300781 809.4375 L 653.609375 809.660156 L 653.917969 809.875 L 654.226562 810.085938 L 654.53125 810.296875 L 654.839844 810.5 L 655.148438 810.699219 L 655.457031 810.894531 L 655.761719 811.085938 L 656.378906 811.460938 L 656.6875 811.640625 L 656.996094 811.816406 L 657.300781 811.992188 L 657.917969 812.328125 L 658.226562 812.492188 L 658.53125 812.652344 L 659.148438 812.964844 L 659.765625 813.261719 L 660.070312 813.40625 L 660.378906 813.550781 L 660.996094 813.824219 L 661.304688 813.957031 L 661.609375 814.089844 L 661.917969 814.21875 L 662.535156 814.46875 L 662.839844 814.589844 L 663.457031 814.824219 L 664.074219 815.050781 L 664.378906 815.160156 L 665.304688 815.476562 L 665.609375 815.578125 L 666.226562 815.773438 L 666.84375 815.960938 L 667.148438 816.054688 L 667.457031 816.140625 L 667.765625 816.230469 L 668.074219 816.316406 L 668.378906 816.402344 L 668.996094 816.566406 L 669.613281 816.722656 L 669.917969 816.796875 L 670.226562 816.875 L 670.535156 816.945312 L 670.84375 817.019531 L 671.148438 817.089844 L 671.457031 817.160156 L 672.382812 817.359375 L 672.6875 817.421875 L 673.304688 817.546875 L 673.613281 817.605469 L 673.917969 817.664062 L 674.226562 817.722656 L 675.152344 817.886719 L 675.457031 817.941406 L 676.691406 818.144531 L 676.996094 818.191406 L 677.921875 818.332031 L 678.226562 818.375 L 679.152344 818.503906 L 679.460938 818.542969 L 679.765625 818.585938 L 680.382812 818.664062 L 680.691406 818.699219 L 680.996094 818.738281 L 682.230469 818.878906 L 682.535156 818.914062 L 683.460938 819.007812 L 683.765625 819.039062 L 684.382812 819.101562 L 685 819.15625 L 685.304688 819.1875 L 685.921875 819.242188 L 686.230469 819.265625 L 686.535156 819.292969 L 686.84375 819.316406 L 687.152344 819.34375 L 687.769531 819.390625 L 688.074219 819.414062 L 688.691406 819.460938 L 689 819.480469 L 689.304688 819.503906 L 689.613281 819.523438 L 689.921875 819.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="824.007812"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="824.007812"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="824.007812"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="824.007812"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="785.957031"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="785.957031"/>
+ <use xlink:href="#glyph0-3" x="510.926819" y="785.957031"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="785.957031"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="747.90625"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="747.90625"/>
+ <use xlink:href="#glyph0-4" x="510.926819" y="747.90625"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="747.90625"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="709.855469"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="709.855469"/>
+ <use xlink:href="#glyph0-5" x="510.926819" y="709.855469"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="709.855469"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="502.925781" y="671.804688"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="671.804688"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="671.804688"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="671.804688"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 820.570312 L 528.683594 820.570312 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 782.519531 L 528.683594 782.519531 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 744.46875 L 528.683594 744.46875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 706.417969 L 528.683594 706.417969 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 668.367188 L 528.683594 668.367188 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 831.28125 L 536.363281 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 831.28125 L 574.753906 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 831.28125 L 613.140625 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 831.28125 L 651.53125 827.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 831.28125 L 689.921875 827.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="527.027344" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="532.36293" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="535.028381" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="540.363968" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="565.417969" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="570.753555" y="840.992188"/>
+ <use xlink:href="#glyph0-3" x="573.419006" y="840.992188"/>
+ <use xlink:href="#glyph0-4" x="578.754593" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="603.804688" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="609.140274" y="840.992188"/>
+ <use xlink:href="#glyph0-4" x="611.805725" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="617.141312" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="642.195312" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="647.530899" y="840.992188"/>
+ <use xlink:href="#glyph0-5" x="650.19635" y="840.992188"/>
+ <use xlink:href="#glyph0-4" x="655.531937" y="840.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="680.585938" y="840.992188"/>
+ <use xlink:href="#glyph0-2" x="685.921524" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="688.586975" y="840.992188"/>
+ <use xlink:href="#glyph0-1" x="693.922562" y="840.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="610.140625" y="853.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="496.324219" y="756.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="496.324219" y="749.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="496.324219" y="744.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="496.324219" y="738.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-11" x="490.675781" y="658.800781"/>
+ <use xlink:href="#glyph5-13" x="498.679688" y="658.800781"/>
+ <use xlink:href="#glyph5-3" x="506.009766" y="658.800781"/>
+ <use xlink:href="#glyph5-27" x="509.34375" y="658.800781"/>
+ <use xlink:href="#glyph5-8" x="516.017578" y="658.800781"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 0 1080 L 237.332031 1080 L 237.332031 864 L 0 864 Z "/>
+<g clip-path="url(#clip247)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 1080 L 237.332031 1080 L 237.332031 864 L 0 864 Z "/>
+</g>
+<g clip-path="url(#clip248)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 1043.027344 L 222.933594 1043.027344 L 222.933594 878.398438 L 54.019531 878.398438 Z "/>
+</g>
+<g clip-path="url(#clip249)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1016.839844 L 222.933594 1016.839844 "/>
+</g>
+<g clip-path="url(#clip250)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 979.421875 L 222.933594 979.421875 "/>
+</g>
+<g clip-path="url(#clip251)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 942.007812 L 222.933594 942.007812 "/>
+</g>
+<g clip-path="url(#clip252)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 904.589844 L 222.933594 904.589844 "/>
+</g>
+<g clip-path="url(#clip253)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 80.890625 1043.027344 L 80.890625 878.398438 "/>
+</g>
+<g clip-path="url(#clip254)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.28125 1043.027344 L 119.28125 878.398438 "/>
+</g>
+<g clip-path="url(#clip255)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.671875 1043.027344 L 157.671875 878.398438 "/>
+</g>
+<g clip-path="url(#clip256)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.058594 1043.027344 L 196.058594 878.398438 "/>
+</g>
+<g clip-path="url(#clip257)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1035.546875 L 222.933594 1035.546875 "/>
+</g>
+<g clip-path="url(#clip258)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 998.128906 L 222.933594 998.128906 "/>
+</g>
+<g clip-path="url(#clip259)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 960.714844 L 222.933594 960.714844 "/>
+</g>
+<g clip-path="url(#clip260)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 923.296875 L 222.933594 923.296875 "/>
+</g>
+<g clip-path="url(#clip261)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 885.882812 L 222.933594 885.882812 "/>
+</g>
+<g clip-path="url(#clip262)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 1043.027344 L 61.695312 878.398438 "/>
+</g>
+<g clip-path="url(#clip263)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 1043.027344 L 100.085938 878.398438 "/>
+</g>
+<g clip-path="url(#clip264)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 1043.027344 L 138.476562 878.398438 "/>
+</g>
+<g clip-path="url(#clip265)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 1043.027344 L 176.867188 878.398438 "/>
+</g>
+<g clip-path="url(#clip266)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 1043.027344 L 215.253906 878.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 61.695312 1035.546875 L 176.789062 1035.546875 L 177.097656 885.882812 L 215.253906 885.882812 "/>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 61.695312 885.882812 L 99.855469 885.882812 L 100.164062 1035.546875 L 215.253906 1035.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="1038.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="1038.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="1038.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="1038.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="1001.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="1001.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="1001.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="1001.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="964.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="964.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="964.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="964.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="926.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="926.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="926.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="926.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="889.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="889.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="889.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="889.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 1035.546875 L 54.019531 1035.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 998.128906 L 54.019531 998.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 960.714844 L 54.019531 960.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 923.296875 L 54.019531 923.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 885.882812 L 54.019531 885.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 1047.28125 L 61.695312 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 1047.28125 L 100.085938 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 1047.28125 L 138.476562 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 1047.28125 L 176.867188 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 1047.28125 L 215.253906 1043.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="52.359375" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="57.694962" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="60.360413" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="65.695999" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="90.75" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="96.085587" y="1056.992188"/>
+ <use xlink:href="#glyph0-3" x="98.751038" y="1056.992188"/>
+ <use xlink:href="#glyph0-4" x="104.086624" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="129.140625" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="134.476212" y="1056.992188"/>
+ <use xlink:href="#glyph0-4" x="137.141663" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="142.477249" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="167.53125" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="172.866837" y="1056.992188"/>
+ <use xlink:href="#glyph0-5" x="175.532288" y="1056.992188"/>
+ <use xlink:href="#glyph0-4" x="180.867874" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="205.917969" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="211.253555" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="213.919006" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="219.254593" y="1056.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="135.476562" y="1069.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="972.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="965.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="960.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="954.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-9" x="18.671875" y="874.800781"/>
+ <use xlink:href="#glyph5-3" x="27.337891" y="874.800781"/>
+ <use xlink:href="#glyph5-5" x="30.671875" y="874.800781"/>
+ <use xlink:href="#glyph5-4" x="38.001953" y="874.800781"/>
+ <use xlink:href="#glyph5-2" x="44.675781" y="874.800781"/>
+ <use xlink:href="#glyph5-28" x="49.345703" y="874.800781"/>
+</g>
+<g clip-path="url(#clip267)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 237.332031 1080 L 474.664062 1080 L 474.664062 864 L 237.332031 864 Z "/>
+</g>
+<g clip-path="url(#clip268)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.332031 1080 L 474.664062 1080 L 474.664062 864 L 237.332031 864 Z "/>
+</g>
+<g clip-path="url(#clip269)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 291.351562 1043.027344 L 460.265625 1043.027344 L 460.265625 878.398438 L 291.351562 878.398438 Z "/>
+</g>
+<g clip-path="url(#clip270)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1016.839844 L 460.265625 1016.839844 "/>
+</g>
+<g clip-path="url(#clip271)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 979.421875 L 460.265625 979.421875 "/>
+</g>
+<g clip-path="url(#clip272)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 942.007812 L 460.265625 942.007812 "/>
+</g>
+<g clip-path="url(#clip273)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 904.589844 L 460.265625 904.589844 "/>
+</g>
+<g clip-path="url(#clip274)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.222656 1043.027344 L 318.222656 878.398438 "/>
+</g>
+<g clip-path="url(#clip275)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.613281 1043.027344 L 356.613281 878.398438 "/>
+</g>
+<g clip-path="url(#clip276)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.003906 1043.027344 L 395.003906 878.398438 "/>
+</g>
+<g clip-path="url(#clip277)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.394531 1043.027344 L 433.394531 878.398438 "/>
+</g>
+<g clip-path="url(#clip278)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1035.546875 L 460.265625 1035.546875 "/>
+</g>
+<g clip-path="url(#clip279)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 998.128906 L 460.265625 998.128906 "/>
+</g>
+<g clip-path="url(#clip280)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 960.714844 L 460.265625 960.714844 "/>
+</g>
+<g clip-path="url(#clip281)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 923.296875 L 460.265625 923.296875 "/>
+</g>
+<g clip-path="url(#clip282)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 885.882812 L 460.265625 885.882812 "/>
+</g>
+<g clip-path="url(#clip283)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 1043.027344 L 299.03125 878.398438 "/>
+</g>
+<g clip-path="url(#clip284)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 1043.027344 L 337.417969 878.398438 "/>
+</g>
+<g clip-path="url(#clip285)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 1043.027344 L 375.808594 878.398438 "/>
+</g>
+<g clip-path="url(#clip286)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 1043.027344 L 414.199219 878.398438 "/>
+</g>
+<g clip-path="url(#clip287)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 1043.027344 L 452.589844 878.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 299.03125 1035.546875 L 329.496094 1035.546875 L 329.804688 1035.445312 L 330.109375 1034.945312 L 331.035156 1033.445312 L 331.339844 1032.945312 L 332.574219 1030.945312 L 332.878906 1030.445312 L 333.1875 1029.949219 L 333.804688 1028.949219 L 334.109375 1028.449219 L 335.34375 1026.449219 L 335.648438 1025.949219 L 336.574219 1024.449219 L 336.878906 1023.949219 L 338.113281 1021.949219 L 338.417969 1021.449219 L 339.34375 1019.949219 L 339.648438 1019.449219 L 340.882812 1017.449219 L 341.1875 1016.949219 L 342.421875 1014.949219 L 342.726562 1014.449219 L 343.035156 1013.953125 L 343.652344 1012.953125 L 343.957031 1012.453125 L 345.191406 1010.453125 L 345.496094 1009.953125 L 346.421875 1008.453125 L 346.726562 1007.953125 L 347.960938 1005.953125 L 348.265625 1005.453125 L 349.191406 1003.953125 L 349.496094 1003.453125 L 350.730469 1001.453125 L 351.035156 1000.953125 L 351.960938 999.453125 L 352.265625 998.953125 L 352.574219 998.457031 L 353.5 996.957031 L 353.804688 996.457031 L 354.730469 994.957031 L 355.035156 994.457031 L 356.269531 992.457031 L 356.574219 991.957031 L 357.808594 989.957031 L 358.113281 989.457031 L 359.039062 987.957031 L 359.34375 987.457031 L 360.578125 985.457031 L 360.882812 984.957031 L 361.808594 983.457031 L 362.113281 982.957031 L 362.421875 982.460938 L 363.347656 980.960938 L 363.652344 980.460938 L 364.578125 978.960938 L 364.882812 978.460938 L 366.117188 976.460938 L 366.421875 975.960938 L 367.347656 974.460938 L 367.652344 973.960938 L 368.886719 971.960938 L 369.191406 971.460938 L 370.117188 969.960938 L 370.421875 969.460938 L 371.65625 967.460938 L 371.960938 966.964844 L 373.195312 964.964844 L 373.5 964.464844 L 374.425781 962.964844 L 374.730469 962.464844 L 375.964844 960.464844 L 376.269531 959.964844 L 377.195312 958.464844 L 377.5 957.964844 L 378.734375 955.964844 L 379.039062 955.464844 L 379.964844 953.964844 L 380.269531 953.464844 L 381.195312 951.964844 L 381.503906 951.46875 L 381.808594 950.96875 L 382.734375 949.46875 L 383.039062 948.96875 L 384.273438 946.96875 L 384.578125 946.46875 L 385.503906 944.96875 L 385.808594 944.46875 L 387.042969 942.46875 L 387.347656 941.96875 L 388.273438 940.46875 L 388.578125 939.96875 L 389.8125 937.96875 L 390.117188 937.46875 L 391.042969 935.96875 L 391.351562 935.472656 L 391.65625 934.972656 L 392.582031 933.472656 L 392.886719 932.972656 L 394.121094 930.972656 L 394.425781 930.472656 L 395.351562 928.972656 L 395.65625 928.472656 L 396.890625 926.472656 L 397.195312 925.972656 L 398.121094 924.472656 L 398.425781 923.972656 L 399.660156 921.972656 L 399.964844 921.472656 L 400.582031 920.472656 L 400.890625 919.976562 L 401.195312 919.476562 L 402.429688 917.476562 L 402.734375 916.976562 L 403.660156 915.476562 L 403.964844 914.976562 L 405.199219 912.976562 L 405.503906 912.476562 L 406.738281 910.476562 L 407.042969 909.976562 L 407.96875 908.476562 L 408.273438 907.976562 L 409.507812 905.976562 L 409.8125 905.476562 L 410.429688 904.476562 L 410.738281 903.980469 L 411.042969 903.480469 L 412.277344 901.480469 L 412.582031 900.980469 L 413.507812 899.480469 L 413.8125 898.980469 L 415.046875 896.980469 L 415.351562 896.480469 L 416.277344 894.980469 L 416.582031 894.480469 L 417.816406 892.480469 L 418.121094 891.980469 L 419.046875 890.480469 L 419.351562 889.980469 L 419.96875 888.980469 L 420.277344 888.484375 L 420.585938 887.984375 L 420.890625 887.484375 L 421.816406 885.984375 L 422.125 885.882812 L 452.589844 885.882812 "/>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 299.03125 885.882812 L 329.496094 885.882812 L 329.804688 885.984375 L 330.109375 886.484375 L 331.035156 887.984375 L 331.339844 888.484375 L 331.648438 888.980469 L 332.574219 890.480469 L 332.878906 890.980469 L 333.804688 892.480469 L 334.109375 892.980469 L 335.34375 894.980469 L 335.648438 895.480469 L 336.574219 896.980469 L 336.878906 897.480469 L 338.113281 899.480469 L 338.417969 899.980469 L 339.34375 901.480469 L 339.648438 901.980469 L 340.882812 903.980469 L 341.1875 904.476562 L 342.421875 906.476562 L 342.726562 906.976562 L 343.652344 908.476562 L 343.957031 908.976562 L 345.191406 910.976562 L 345.496094 911.476562 L 346.421875 912.976562 L 346.726562 913.476562 L 347.960938 915.476562 L 348.265625 915.976562 L 349.191406 917.476562 L 349.496094 917.976562 L 350.730469 919.976562 L 351.035156 920.472656 L 351.960938 921.972656 L 352.265625 922.472656 L 353.5 924.472656 L 353.804688 924.972656 L 354.730469 926.472656 L 355.035156 926.972656 L 356.269531 928.972656 L 356.574219 929.472656 L 357.808594 931.472656 L 358.113281 931.972656 L 359.039062 933.472656 L 359.34375 933.972656 L 360.269531 935.472656 L 360.578125 935.96875 L 360.882812 936.46875 L 361.808594 937.96875 L 362.113281 938.46875 L 363.347656 940.46875 L 363.652344 940.96875 L 364.578125 942.46875 L 364.882812 942.96875 L 366.117188 944.96875 L 366.421875 945.46875 L 367.347656 946.96875 L 367.652344 947.46875 L 368.886719 949.46875 L 369.191406 949.96875 L 370.117188 951.46875 L 370.421875 951.964844 L 371.65625 953.964844 L 371.960938 954.464844 L 373.195312 956.464844 L 373.5 956.964844 L 374.425781 958.464844 L 374.730469 958.964844 L 375.964844 960.964844 L 376.269531 961.464844 L 377.195312 962.964844 L 377.5 963.464844 L 378.734375 965.464844 L 379.039062 965.964844 L 379.65625 966.964844 L 379.964844 967.460938 L 380.269531 967.960938 L 381.503906 969.960938 L 381.808594 970.460938 L 382.734375 971.960938 L 383.039062 972.460938 L 384.273438 974.460938 L 384.578125 974.960938 L 385.503906 976.460938 L 385.808594 976.960938 L 387.042969 978.960938 L 387.347656 979.460938 L 388.273438 980.960938 L 388.578125 981.460938 L 389.195312 982.460938 L 389.503906 982.957031 L 389.8125 983.457031 L 390.117188 983.957031 L 391.351562 985.957031 L 391.65625 986.457031 L 392.582031 987.957031 L 392.886719 988.457031 L 394.121094 990.457031 L 394.425781 990.957031 L 395.351562 992.457031 L 395.65625 992.957031 L 396.890625 994.957031 L 397.195312 995.457031 L 398.121094 996.957031 L 398.425781 997.457031 L 399.042969 998.457031 L 399.351562 998.953125 L 399.660156 999.453125 L 399.964844 999.953125 L 400.890625 1001.453125 L 401.195312 1001.953125 L 402.429688 1003.953125 L 402.734375 1004.453125 L 403.660156 1005.953125 L 403.964844 1006.453125 L 405.199219 1008.453125 L 405.503906 1008.953125 L 406.738281 1010.953125 L 407.042969 1011.453125 L 407.96875 1012.953125 L 408.273438 1013.453125 L 408.582031 1013.953125 L 408.890625 1014.449219 L 409.507812 1015.449219 L 409.8125 1015.949219 L 410.738281 1017.449219 L 411.042969 1017.949219 L 412.277344 1019.949219 L 412.582031 1020.449219 L 413.507812 1021.949219 L 413.8125 1022.449219 L 415.046875 1024.449219 L 415.351562 1024.949219 L 416.277344 1026.449219 L 416.582031 1026.949219 L 417.816406 1028.949219 L 418.121094 1029.449219 L 418.429688 1029.949219 L 418.738281 1030.445312 L 419.046875 1030.945312 L 419.351562 1031.445312 L 420.585938 1033.445312 L 420.890625 1033.945312 L 421.816406 1035.445312 L 422.125 1035.546875 L 452.589844 1035.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="1038.984375"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1038.984375"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="1038.984375"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="1038.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="1001.566406"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1001.566406"/>
+ <use xlink:href="#glyph0-3" x="273.594788" y="1001.566406"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="1001.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="964.152344"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="964.152344"/>
+ <use xlink:href="#glyph0-4" x="273.594788" y="964.152344"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="964.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="926.734375"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="926.734375"/>
+ <use xlink:href="#glyph0-5" x="273.594788" y="926.734375"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="926.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="265.59375" y="889.320312"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="889.320312"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="889.320312"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="889.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 1035.546875 L 291.351562 1035.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 998.128906 L 291.351562 998.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 960.714844 L 291.351562 960.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 923.296875 L 291.351562 923.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 885.882812 L 291.351562 885.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 1047.28125 L 299.03125 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 1047.28125 L 337.417969 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 1047.28125 L 375.808594 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 1047.28125 L 414.199219 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 1047.28125 L 452.589844 1043.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="289.695312" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="295.030899" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="297.69635" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="303.031937" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="328.082031" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="333.417618" y="1056.992188"/>
+ <use xlink:href="#glyph0-3" x="336.083069" y="1056.992188"/>
+ <use xlink:href="#glyph0-4" x="341.418655" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="366.472656" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="371.808243" y="1056.992188"/>
+ <use xlink:href="#glyph0-4" x="374.473694" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="379.80928" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="404.863281" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="410.198868" y="1056.992188"/>
+ <use xlink:href="#glyph0-5" x="412.864319" y="1056.992188"/>
+ <use xlink:href="#glyph0-4" x="418.199905" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="443.253906" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="448.589493" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="451.254944" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="456.59053" y="1056.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="372.808594" y="1069.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="258.992188" y="972.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="258.992188" y="965.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="258.992188" y="960.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="258.992188" y="954.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-23" x="254.003906" y="874.800781"/>
+ <use xlink:href="#glyph5-4" x="262.669922" y="874.800781"/>
+ <use xlink:href="#glyph5-19" x="269.34375" y="874.800781"/>
+ <use xlink:href="#glyph5-13" x="280.013672" y="874.800781"/>
+</g>
+<g clip-path="url(#clip288)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 474.667969 1080 L 712 1080 L 712 864 L 474.667969 864 Z "/>
+</g>
+<g clip-path="url(#clip289)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 474.667969 1080 L 712 1080 L 712 864 L 474.667969 864 Z "/>
+</g>
+<g clip-path="url(#clip290)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 528.683594 1043.027344 L 697.597656 1043.027344 L 697.597656 878.398438 L 528.683594 878.398438 Z "/>
+</g>
+<g clip-path="url(#clip291)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1016.839844 L 697.601562 1016.839844 "/>
+</g>
+<g clip-path="url(#clip292)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 979.421875 L 697.601562 979.421875 "/>
+</g>
+<g clip-path="url(#clip293)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 942.007812 L 697.601562 942.007812 "/>
+</g>
+<g clip-path="url(#clip294)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 904.589844 L 697.601562 904.589844 "/>
+</g>
+<g clip-path="url(#clip295)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 555.558594 1043.027344 L 555.558594 878.398438 "/>
+</g>
+<g clip-path="url(#clip296)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 593.949219 1043.027344 L 593.949219 878.398438 "/>
+</g>
+<g clip-path="url(#clip297)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 632.335938 1043.027344 L 632.335938 878.398438 "/>
+</g>
+<g clip-path="url(#clip298)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 670.726562 1043.027344 L 670.726562 878.398438 "/>
+</g>
+<g clip-path="url(#clip299)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1035.546875 L 697.601562 1035.546875 "/>
+</g>
+<g clip-path="url(#clip300)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 998.128906 L 697.601562 998.128906 "/>
+</g>
+<g clip-path="url(#clip301)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 960.714844 L 697.601562 960.714844 "/>
+</g>
+<g clip-path="url(#clip302)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 923.296875 L 697.601562 923.296875 "/>
+</g>
+<g clip-path="url(#clip303)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 885.882812 L 697.601562 885.882812 "/>
+</g>
+<g clip-path="url(#clip304)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 1043.027344 L 536.363281 878.398438 "/>
+</g>
+<g clip-path="url(#clip305)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 1043.027344 L 574.753906 878.398438 "/>
+</g>
+<g clip-path="url(#clip306)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 1043.027344 L 613.140625 878.398438 "/>
+</g>
+<g clip-path="url(#clip307)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 1043.027344 L 651.53125 878.398438 "/>
+</g>
+<g clip-path="url(#clip308)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 1043.027344 L 689.921875 878.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 536.363281 1035.546875 L 536.671875 1035.542969 L 536.976562 1035.542969 L 537.59375 1035.527344 L 538.210938 1035.503906 L 538.515625 1035.488281 L 539.132812 1035.449219 L 539.441406 1035.425781 L 539.746094 1035.402344 L 540.054688 1035.371094 L 540.363281 1035.34375 L 540.671875 1035.308594 L 540.980469 1035.277344 L 541.285156 1035.238281 L 541.59375 1035.199219 L 542.210938 1035.113281 L 542.515625 1035.066406 L 543.132812 1034.964844 L 543.441406 1034.910156 L 543.75 1034.851562 L 544.054688 1034.792969 L 544.363281 1034.734375 L 545.289062 1034.535156 L 545.59375 1034.464844 L 546.210938 1034.316406 L 546.519531 1034.238281 L 546.824219 1034.15625 L 547.132812 1034.074219 L 547.441406 1033.988281 L 548.058594 1033.808594 L 548.363281 1033.71875 L 549.289062 1033.425781 L 549.59375 1033.324219 L 550.210938 1033.113281 L 550.519531 1033.003906 L 550.828125 1032.890625 L 551.132812 1032.777344 L 551.441406 1032.660156 L 552.058594 1032.417969 L 552.363281 1032.296875 L 553.289062 1031.910156 L 553.597656 1031.777344 L 553.902344 1031.640625 L 554.210938 1031.503906 L 554.519531 1031.363281 L 554.828125 1031.21875 L 555.132812 1031.074219 L 555.441406 1030.925781 L 556.367188 1030.46875 L 556.671875 1030.308594 L 557.289062 1029.988281 L 557.597656 1029.824219 L 557.902344 1029.65625 L 558.828125 1029.140625 L 559.136719 1028.964844 L 559.441406 1028.785156 L 560.058594 1028.417969 L 560.367188 1028.230469 L 560.671875 1028.042969 L 561.289062 1027.660156 L 561.597656 1027.464844 L 561.90625 1027.265625 L 562.210938 1027.0625 L 562.828125 1026.65625 L 563.136719 1026.445312 L 563.445312 1026.238281 L 563.75 1026.023438 L 564.058594 1025.808594 L 564.675781 1025.371094 L 564.980469 1025.148438 L 565.289062 1024.925781 L 565.597656 1024.695312 L 565.90625 1024.46875 L 566.214844 1024.234375 L 566.519531 1024 L 566.828125 1023.765625 L 567.445312 1023.28125 L 567.75 1023.039062 L 568.058594 1022.792969 L 568.675781 1022.292969 L 568.984375 1022.039062 L 569.289062 1021.78125 L 569.597656 1021.523438 L 570.214844 1021 L 570.519531 1020.734375 L 571.136719 1020.195312 L 571.753906 1019.648438 L 572.058594 1019.371094 L 572.675781 1018.808594 L 572.984375 1018.523438 L 573.289062 1018.234375 L 573.597656 1017.945312 L 574.214844 1017.359375 L 574.523438 1017.0625 L 574.828125 1016.761719 L 575.136719 1016.460938 L 575.753906 1015.851562 L 576.058594 1015.542969 L 576.675781 1014.917969 L 576.984375 1014.601562 L 577.292969 1014.28125 L 577.597656 1013.960938 L 578.214844 1013.3125 L 578.523438 1012.984375 L 578.832031 1012.652344 L 579.136719 1012.320312 L 579.753906 1011.648438 L 580.0625 1011.304688 L 580.367188 1010.964844 L 580.675781 1010.617188 L 580.984375 1010.273438 L 581.601562 1009.570312 L 581.90625 1009.214844 L 582.214844 1008.859375 L 582.523438 1008.5 L 582.832031 1008.136719 L 583.136719 1007.773438 L 583.445312 1007.40625 L 584.371094 1006.292969 L 584.675781 1005.914062 L 585.292969 1005.15625 L 585.601562 1004.773438 L 585.90625 1004.386719 L 586.832031 1003.214844 L 587.140625 1002.820312 L 587.445312 1002.421875 L 588.0625 1001.617188 L 588.371094 1001.210938 L 588.675781 1000.804688 L 589.292969 999.984375 L 589.601562 999.566406 L 589.910156 999.152344 L 590.214844 998.730469 L 590.832031 997.886719 L 591.140625 997.457031 L 591.445312 997.027344 L 591.753906 996.597656 L 592.0625 996.164062 L 592.679688 995.289062 L 592.984375 994.847656 L 593.601562 993.957031 L 594.21875 993.058594 L 594.523438 992.605469 L 595.140625 991.691406 L 595.449219 991.230469 L 595.753906 990.769531 L 596.0625 990.304688 L 596.679688 989.367188 L 596.988281 988.894531 L 597.292969 988.417969 L 597.601562 987.941406 L 598.21875 986.980469 L 598.523438 986.496094 L 599.140625 985.519531 L 599.757812 984.535156 L 600.0625 984.035156 L 600.371094 983.539062 L 600.988281 982.53125 L 601.292969 982.027344 L 601.601562 981.519531 L 602.21875 980.496094 L 602.527344 979.980469 L 602.832031 979.460938 L 603.140625 978.941406 L 603.449219 978.417969 L 603.757812 977.890625 L 604.0625 977.363281 L 604.679688 976.300781 L 605.296875 975.230469 L 605.601562 974.6875 L 605.910156 974.148438 L 606.527344 973.054688 L 606.832031 972.507812 L 607.757812 970.84375 L 608.066406 970.285156 L 608.371094 969.722656 L 608.679688 969.160156 L 608.988281 968.59375 L 609.296875 968.023438 L 609.601562 967.453125 L 610.21875 966.304688 L 610.527344 965.726562 L 610.835938 965.144531 L 611.140625 964.5625 L 611.757812 963.390625 L 612.066406 962.800781 L 612.375 962.207031 L 612.679688 961.613281 L 612.988281 961.015625 L 613.296875 960.414062 L 613.605469 959.816406 L 613.910156 959.222656 L 614.21875 958.628906 L 614.527344 958.039062 L 615.144531 956.867188 L 615.449219 956.285156 L 615.757812 955.703125 L 616.375 954.546875 L 616.679688 953.976562 L 616.988281 953.402344 L 617.605469 952.269531 L 617.914062 951.707031 L 618.21875 951.144531 L 618.835938 950.027344 L 619.144531 949.472656 L 619.449219 948.921875 L 620.375 947.28125 L 620.683594 946.738281 L 620.988281 946.199219 L 621.914062 944.59375 L 622.21875 944.066406 L 622.835938 943.011719 L 623.144531 942.488281 L 623.453125 941.96875 L 623.757812 941.449219 L 624.066406 940.933594 L 624.683594 939.910156 L 624.988281 939.402344 L 625.296875 938.894531 L 625.605469 938.390625 L 626.222656 937.390625 L 626.527344 936.894531 L 627.144531 935.910156 L 627.761719 934.933594 L 628.066406 934.449219 L 628.683594 933.488281 L 628.992188 933.011719 L 629.296875 932.535156 L 629.605469 932.0625 L 630.222656 931.125 L 630.53125 930.660156 L 630.835938 930.199219 L 631.453125 929.277344 L 631.761719 928.824219 L 632.066406 928.371094 L 632.375 927.917969 L 632.683594 927.472656 L 632.992188 927.023438 L 633.300781 926.582031 L 633.605469 926.140625 L 634.222656 925.265625 L 634.53125 924.832031 L 634.835938 924.398438 L 635.144531 923.96875 L 635.453125 923.542969 L 636.070312 922.699219 L 636.375 922.277344 L 636.683594 921.859375 L 636.992188 921.445312 L 637.300781 921.035156 L 637.605469 920.625 L 637.914062 920.214844 L 638.839844 919.007812 L 639.144531 918.609375 L 639.761719 917.820312 L 640.070312 917.429688 L 640.375 917.042969 L 640.683594 916.65625 L 641.300781 915.890625 L 641.609375 915.515625 L 641.914062 915.136719 L 642.222656 914.765625 L 642.53125 914.390625 L 643.148438 913.65625 L 643.453125 913.292969 L 643.761719 912.929688 L 644.070312 912.570312 L 644.378906 912.214844 L 644.683594 911.859375 L 645.300781 911.15625 L 645.609375 910.808594 L 645.917969 910.464844 L 646.222656 910.121094 L 646.53125 909.78125 L 647.148438 909.109375 L 647.453125 908.777344 L 647.761719 908.445312 L 648.070312 908.117188 L 648.6875 907.46875 L 648.992188 907.148438 L 649.300781 906.828125 L 649.609375 906.511719 L 649.917969 906.199219 L 650.222656 905.886719 L 650.53125 905.578125 L 651.148438 904.96875 L 651.457031 904.667969 L 651.761719 904.367188 L 652.378906 903.773438 L 652.6875 903.484375 L 652.992188 903.195312 L 653.300781 902.90625 L 653.609375 902.621094 L 654.226562 902.058594 L 654.53125 901.78125 L 654.839844 901.503906 L 655.148438 901.234375 L 655.457031 900.960938 L 655.761719 900.695312 L 656.378906 900.164062 L 656.6875 899.90625 L 656.996094 899.644531 L 657.300781 899.390625 L 657.609375 899.136719 L 658.226562 898.636719 L 658.53125 898.390625 L 658.839844 898.144531 L 659.148438 897.902344 L 659.457031 897.664062 L 659.765625 897.429688 L 660.070312 897.195312 L 660.378906 896.960938 L 660.6875 896.730469 L 660.996094 896.503906 L 661.304688 896.28125 L 661.609375 896.058594 L 661.917969 895.835938 L 662.535156 895.40625 L 662.839844 895.191406 L 663.148438 894.980469 L 663.765625 894.566406 L 664.074219 894.363281 L 664.378906 894.164062 L 664.6875 893.964844 L 664.996094 893.769531 L 665.304688 893.578125 L 665.609375 893.386719 L 665.917969 893.195312 L 666.84375 892.644531 L 667.148438 892.464844 L 667.765625 892.113281 L 668.074219 891.941406 L 668.378906 891.773438 L 668.6875 891.605469 L 668.996094 891.441406 L 669.613281 891.121094 L 669.917969 890.960938 L 670.226562 890.808594 L 670.535156 890.652344 L 670.84375 890.503906 L 671.148438 890.355469 L 671.765625 890.066406 L 672.074219 889.925781 L 672.382812 889.789062 L 672.6875 889.652344 L 673.304688 889.386719 L 673.613281 889.261719 L 673.917969 889.132812 L 674.226562 889.011719 L 674.535156 888.886719 L 675.152344 888.652344 L 675.457031 888.539062 L 675.765625 888.425781 L 676.074219 888.316406 L 676.691406 888.105469 L 676.996094 888.003906 L 677.304688 887.902344 L 677.613281 887.804688 L 677.921875 887.710938 L 678.226562 887.617188 L 678.535156 887.527344 L 679.152344 887.355469 L 679.460938 887.273438 L 679.765625 887.191406 L 680.074219 887.113281 L 680.691406 886.964844 L 680.996094 886.894531 L 681.304688 886.824219 L 681.613281 886.757812 L 682.230469 886.632812 L 682.535156 886.574219 L 683.152344 886.464844 L 683.460938 886.414062 L 683.765625 886.363281 L 684.074219 886.316406 L 684.691406 886.230469 L 685 886.191406 L 685.304688 886.152344 L 685.613281 886.117188 L 686.230469 886.054688 L 686.535156 886.027344 L 687.152344 885.980469 L 687.769531 885.941406 L 688.074219 885.925781 L 688.691406 885.902344 L 689 885.894531 L 689.304688 885.886719 L 689.613281 885.882812 L 689.921875 885.882812 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="1038.984375"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1038.984375"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="1038.984375"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="1038.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="1001.566406"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1001.566406"/>
+ <use xlink:href="#glyph0-3" x="510.926819" y="1001.566406"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="1001.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="964.152344"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="964.152344"/>
+ <use xlink:href="#glyph0-4" x="510.926819" y="964.152344"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="964.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="926.734375"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="926.734375"/>
+ <use xlink:href="#glyph0-5" x="510.926819" y="926.734375"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="926.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="502.925781" y="889.320312"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="889.320312"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="889.320312"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="889.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 1035.546875 L 528.683594 1035.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 998.128906 L 528.683594 998.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 960.714844 L 528.683594 960.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 923.296875 L 528.683594 923.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 885.882812 L 528.683594 885.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 1047.28125 L 536.363281 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 1047.28125 L 574.753906 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 1047.28125 L 613.140625 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 1047.28125 L 651.53125 1043.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 1047.28125 L 689.921875 1043.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="527.027344" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="532.36293" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="535.028381" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="540.363968" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="565.417969" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="570.753555" y="1056.992188"/>
+ <use xlink:href="#glyph0-3" x="573.419006" y="1056.992188"/>
+ <use xlink:href="#glyph0-4" x="578.754593" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="603.804688" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="609.140274" y="1056.992188"/>
+ <use xlink:href="#glyph0-4" x="611.805725" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="617.141312" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="642.195312" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="647.530899" y="1056.992188"/>
+ <use xlink:href="#glyph0-5" x="650.19635" y="1056.992188"/>
+ <use xlink:href="#glyph0-4" x="655.531937" y="1056.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="680.585938" y="1056.992188"/>
+ <use xlink:href="#glyph0-2" x="685.921524" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="688.586975" y="1056.992188"/>
+ <use xlink:href="#glyph0-1" x="693.922562" y="1056.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="610.140625" y="1069.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="496.324219" y="972.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="496.324219" y="965.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="496.324219" y="960.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="496.324219" y="954.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-11" x="496.675781" y="874.800781"/>
+ <use xlink:href="#glyph5-11" x="504.679688" y="874.800781"/>
+ <use xlink:href="#glyph5-12" x="512.683594" y="874.800781"/>
+ <use xlink:href="#glyph5-4" x="520.013672" y="874.800781"/>
+ <use xlink:href="#glyph5-13" x="526.6875" y="874.800781"/>
+ <use xlink:href="#glyph5-8" x="534.017578" y="874.800781"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 0 1296 L 237.332031 1296 L 237.332031 1080 L 0 1080 Z "/>
+<g clip-path="url(#clip309)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 1296 L 237.332031 1296 L 237.332031 1080 L 0 1080 Z "/>
+</g>
+<g clip-path="url(#clip310)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 1259.027344 L 222.933594 1259.027344 L 222.933594 1094.398438 L 54.019531 1094.398438 Z "/>
+</g>
+<g clip-path="url(#clip311)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1245.933594 L 222.933594 1245.933594 "/>
+</g>
+<g clip-path="url(#clip312)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1204.777344 L 222.933594 1204.777344 "/>
+</g>
+<g clip-path="url(#clip313)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1163.617188 L 222.933594 1163.617188 "/>
+</g>
+<g clip-path="url(#clip314)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1122.460938 L 222.933594 1122.460938 "/>
+</g>
+<g clip-path="url(#clip315)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 80.890625 1259.027344 L 80.890625 1094.398438 "/>
+</g>
+<g clip-path="url(#clip316)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.28125 1259.027344 L 119.28125 1094.398438 "/>
+</g>
+<g clip-path="url(#clip317)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.671875 1259.027344 L 157.671875 1094.398438 "/>
+</g>
+<g clip-path="url(#clip318)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.058594 1259.027344 L 196.058594 1094.398438 "/>
+</g>
+<g clip-path="url(#clip319)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1225.355469 L 222.933594 1225.355469 "/>
+</g>
+<g clip-path="url(#clip320)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1184.199219 L 222.933594 1184.199219 "/>
+</g>
+<g clip-path="url(#clip321)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1143.039062 L 222.933594 1143.039062 "/>
+</g>
+<g clip-path="url(#clip322)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1101.882812 L 222.933594 1101.882812 "/>
+</g>
+<g clip-path="url(#clip323)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 1259.027344 L 61.695312 1094.398438 "/>
+</g>
+<g clip-path="url(#clip324)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 1259.027344 L 100.085938 1094.398438 "/>
+</g>
+<g clip-path="url(#clip325)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 1259.027344 L 138.476562 1094.398438 "/>
+</g>
+<g clip-path="url(#clip326)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 1259.027344 L 176.867188 1094.398438 "/>
+</g>
+<g clip-path="url(#clip327)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 1259.027344 L 215.253906 1094.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 61.695312 1101.882812 L 92.160156 1101.882812 L 92.46875 1102.15625 L 92.777344 1103.519531 L 93.085938 1104.863281 L 93.394531 1106.191406 L 93.699219 1107.5 L 94.007812 1108.792969 L 94.316406 1110.066406 L 94.625 1111.328125 L 94.929688 1112.570312 L 95.238281 1113.796875 L 95.546875 1115.011719 L 95.855469 1116.207031 L 96.164062 1117.390625 L 96.46875 1118.558594 L 96.777344 1119.710938 L 97.085938 1120.851562 L 97.394531 1121.976562 L 97.699219 1123.089844 L 98.007812 1124.191406 L 98.316406 1125.277344 L 98.625 1126.351562 L 98.933594 1127.410156 L 99.238281 1128.460938 L 99.546875 1129.496094 L 99.855469 1130.519531 L 100.164062 1131.535156 L 100.46875 1132.535156 L 100.777344 1133.523438 L 101.085938 1134.503906 L 101.394531 1135.472656 L 101.703125 1136.429688 L 102.007812 1137.375 L 102.316406 1138.3125 L 102.625 1139.238281 L 102.933594 1140.152344 L 103.242188 1141.058594 L 103.546875 1141.957031 L 103.855469 1142.84375 L 104.164062 1143.71875 L 104.472656 1144.585938 L 104.777344 1145.445312 L 105.085938 1146.296875 L 105.394531 1147.136719 L 105.703125 1147.96875 L 106.011719 1148.792969 L 106.316406 1149.609375 L 106.625 1150.414062 L 106.933594 1151.214844 L 107.242188 1152.003906 L 107.546875 1152.785156 L 107.855469 1153.5625 L 108.164062 1154.328125 L 108.472656 1155.089844 L 108.78125 1155.839844 L 109.085938 1156.585938 L 109.394531 1157.320312 L 109.703125 1158.050781 L 110.011719 1158.773438 L 110.316406 1159.492188 L 110.625 1160.199219 L 110.933594 1160.902344 L 111.242188 1161.597656 L 111.550781 1162.289062 L 111.855469 1162.972656 L 112.164062 1163.648438 L 112.472656 1164.316406 L 112.78125 1164.980469 L 113.085938 1165.640625 L 113.394531 1166.292969 L 113.703125 1166.9375 L 114.011719 1167.578125 L 114.320312 1168.210938 L 114.625 1168.839844 L 114.933594 1169.464844 L 115.242188 1170.082031 L 115.550781 1170.691406 L 115.855469 1171.296875 L 116.164062 1171.898438 L 116.472656 1172.496094 L 116.78125 1173.085938 L 117.089844 1173.671875 L 117.394531 1174.25 L 117.703125 1174.828125 L 118.011719 1175.398438 L 118.320312 1175.960938 L 118.625 1176.523438 L 118.933594 1177.078125 L 119.242188 1177.628906 L 119.550781 1178.175781 L 119.859375 1178.71875 L 120.164062 1179.257812 L 120.78125 1180.320312 L 121.089844 1180.84375 L 121.398438 1181.363281 L 121.703125 1181.878906 L 122.011719 1182.390625 L 122.320312 1182.898438 L 122.628906 1183.402344 L 122.933594 1183.898438 L 123.242188 1184.394531 L 123.550781 1184.886719 L 123.859375 1185.375 L 124.167969 1185.859375 L 124.472656 1186.335938 L 124.78125 1186.8125 L 125.089844 1187.285156 L 125.398438 1187.753906 L 125.703125 1188.21875 L 126.011719 1188.679688 L 126.628906 1189.59375 L 126.9375 1190.042969 L 127.242188 1190.492188 L 127.859375 1191.375 L 128.167969 1191.8125 L 128.472656 1192.246094 L 128.78125 1192.679688 L 129.398438 1193.53125 L 129.707031 1193.953125 L 130.011719 1194.371094 L 130.320312 1194.785156 L 130.9375 1195.605469 L 131.242188 1196.011719 L 131.859375 1196.816406 L 132.167969 1197.214844 L 132.476562 1197.609375 L 132.78125 1198 L 133.089844 1198.390625 L 133.398438 1198.773438 L 133.707031 1199.160156 L 134.011719 1199.539062 L 134.320312 1199.917969 L 134.9375 1200.667969 L 135.246094 1201.035156 L 135.550781 1201.40625 L 136.167969 1202.132812 L 136.785156 1202.851562 L 137.089844 1203.207031 L 137.707031 1203.910156 L 138.015625 1204.257812 L 138.320312 1204.605469 L 138.628906 1204.949219 L 139.246094 1205.628906 L 139.554688 1205.964844 L 139.859375 1206.300781 L 140.167969 1206.632812 L 140.785156 1207.289062 L 141.089844 1207.617188 L 141.398438 1207.941406 L 142.015625 1208.582031 L 142.324219 1208.898438 L 142.628906 1209.214844 L 143.554688 1210.152344 L 144.167969 1210.765625 L 144.476562 1211.066406 L 144.785156 1211.371094 L 145.09375 1211.671875 L 145.398438 1211.96875 L 145.707031 1212.265625 L 146.324219 1212.851562 L 146.628906 1213.144531 L 146.9375 1213.433594 L 147.863281 1214.289062 L 148.167969 1214.570312 L 148.476562 1214.851562 L 149.09375 1215.40625 L 149.398438 1215.683594 L 150.015625 1216.230469 L 150.632812 1216.769531 L 150.9375 1217.035156 L 151.554688 1217.566406 L 152.171875 1218.089844 L 152.476562 1218.351562 L 152.785156 1218.609375 L 153.09375 1218.863281 L 153.402344 1219.121094 L 153.707031 1219.375 L 154.015625 1219.625 L 154.324219 1219.878906 L 154.632812 1220.125 L 154.941406 1220.375 L 155.246094 1220.621094 L 155.554688 1220.867188 L 156.171875 1221.351562 L 156.476562 1221.59375 L 156.785156 1221.835938 L 157.09375 1222.074219 L 157.402344 1222.308594 L 157.710938 1222.546875 L 158.015625 1222.78125 L 158.324219 1223.015625 L 158.941406 1223.476562 L 159.246094 1223.707031 L 160.480469 1224.613281 L 160.785156 1224.835938 L 161.09375 1225.058594 L 161.710938 1225.496094 L 162.015625 1225.714844 L 162.324219 1225.933594 L 163.25 1226.578125 L 163.554688 1226.792969 L 164.480469 1227.425781 L 164.785156 1227.632812 L 165.402344 1228.046875 L 165.710938 1228.25 L 166.019531 1228.457031 L 166.324219 1228.660156 L 166.632812 1228.859375 L 166.941406 1229.0625 L 167.25 1229.261719 L 167.554688 1229.460938 L 167.863281 1229.660156 L 168.789062 1230.246094 L 169.09375 1230.441406 L 169.402344 1230.632812 L 169.710938 1230.828125 L 170.019531 1231.019531 L 170.328125 1231.207031 L 170.632812 1231.398438 L 171.558594 1231.960938 L 171.863281 1232.144531 L 172.171875 1232.332031 L 172.480469 1232.515625 L 172.789062 1232.695312 L 173.097656 1232.878906 L 173.402344 1233.058594 L 173.710938 1233.242188 L 174.019531 1233.417969 L 174.328125 1233.597656 L 174.632812 1233.777344 L 175.558594 1234.304688 L 175.867188 1234.476562 L 176.171875 1234.652344 L 177.097656 1235.167969 L 177.402344 1235.335938 L 177.710938 1235.507812 L 178.636719 1236.011719 L 178.941406 1236.175781 L 179.25 1236.34375 L 179.867188 1236.671875 L 180.171875 1236.835938 L 180.480469 1236.996094 L 180.789062 1237.160156 L 181.40625 1237.480469 L 181.710938 1237.640625 L 182.019531 1237.796875 L 182.328125 1237.957031 L 182.636719 1238.113281 L 182.941406 1238.269531 L 183.558594 1238.582031 L 183.867188 1238.734375 L 184.175781 1238.890625 L 184.480469 1239.042969 L 185.40625 1239.5 L 185.714844 1239.648438 L 186.019531 1239.800781 L 186.945312 1240.246094 L 187.25 1240.390625 L 187.558594 1240.539062 L 187.867188 1240.683594 L 188.175781 1240.832031 L 188.484375 1240.976562 L 188.789062 1241.117188 L 189.40625 1241.40625 L 189.714844 1241.546875 L 190.019531 1241.6875 L 190.328125 1241.832031 L 190.636719 1241.96875 L 191.253906 1242.25 L 191.558594 1242.386719 L 191.867188 1242.527344 L 192.484375 1242.800781 L 192.789062 1242.9375 L 193.097656 1243.074219 L 193.40625 1243.207031 L 193.714844 1243.34375 L 194.023438 1243.476562 L 194.328125 1243.609375 L 195.253906 1244.007812 L 195.558594 1244.136719 L 195.867188 1244.269531 L 196.792969 1244.65625 L 197.097656 1244.785156 L 197.714844 1245.042969 L 198.023438 1245.167969 L 198.328125 1245.296875 L 199.5625 1245.796875 L 199.867188 1245.921875 L 200.175781 1246.042969 L 200.484375 1246.167969 L 200.792969 1246.289062 L 201.101562 1246.414062 L 201.40625 1246.535156 L 202.023438 1246.777344 L 202.332031 1246.894531 L 202.636719 1247.015625 L 202.945312 1247.132812 L 203.253906 1247.253906 L 203.871094 1247.488281 L 204.175781 1247.605469 L 205.101562 1247.957031 L 205.40625 1248.070312 L 205.714844 1248.1875 L 206.640625 1248.527344 L 206.945312 1248.640625 L 207.871094 1248.980469 L 208.175781 1249.089844 L 208.484375 1249.203125 L 209.101562 1249.421875 L 209.410156 1249.535156 L 209.714844 1249.644531 L 210.023438 1249.753906 L 210.332031 1249.859375 L 210.640625 1249.96875 L 210.945312 1250.078125 L 211.253906 1250.183594 L 211.5625 1250.292969 L 212.179688 1250.503906 L 212.484375 1250.609375 L 213.410156 1250.925781 L 213.714844 1251.03125 L 214.023438 1251.132812 L 214.332031 1251.238281 L 214.640625 1251.339844 L 214.949219 1251.445312 L 215.253906 1251.546875 "/>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 61.695312 1251.546875 L 62.003906 1251.445312 L 62.3125 1251.339844 L 62.621094 1251.238281 L 62.925781 1251.132812 L 63.234375 1251.03125 L 63.851562 1250.820312 L 64.15625 1250.714844 L 65.390625 1250.292969 L 65.695312 1250.183594 L 66.003906 1250.078125 L 66.621094 1249.859375 L 66.925781 1249.753906 L 67.542969 1249.535156 L 67.851562 1249.421875 L 68.160156 1249.3125 L 68.464844 1249.203125 L 68.773438 1249.089844 L 69.082031 1248.980469 L 69.390625 1248.867188 L 69.695312 1248.753906 L 70.929688 1248.300781 L 71.234375 1248.1875 L 71.542969 1248.070312 L 71.851562 1247.957031 L 72.46875 1247.722656 L 72.773438 1247.605469 L 73.699219 1247.253906 L 74.003906 1247.132812 L 74.3125 1247.015625 L 74.621094 1246.894531 L 74.929688 1246.777344 L 75.238281 1246.65625 L 75.542969 1246.535156 L 75.851562 1246.414062 L 76.160156 1246.289062 L 76.46875 1246.167969 L 76.773438 1246.042969 L 77.082031 1245.921875 L 78.007812 1245.546875 L 78.3125 1245.421875 L 78.621094 1245.296875 L 78.929688 1245.167969 L 79.238281 1245.042969 L 79.542969 1244.914062 L 80.777344 1244.398438 L 81.082031 1244.269531 L 81.390625 1244.136719 L 81.699219 1244.007812 L 82.007812 1243.875 L 82.3125 1243.742188 L 83.238281 1243.34375 L 83.546875 1243.207031 L 83.851562 1243.074219 L 84.777344 1242.664062 L 85.082031 1242.527344 L 85.390625 1242.386719 L 85.699219 1242.25 L 86.316406 1241.96875 L 86.621094 1241.832031 L 86.929688 1241.6875 L 87.546875 1241.40625 L 87.855469 1241.261719 L 88.160156 1241.117188 L 88.46875 1240.976562 L 88.777344 1240.832031 L 89.085938 1240.683594 L 89.390625 1240.539062 L 89.699219 1240.390625 L 90.007812 1240.246094 L 90.625 1239.949219 L 90.929688 1239.800781 L 91.238281 1239.648438 L 91.546875 1239.5 L 91.855469 1239.347656 L 92.160156 1239.195312 L 92.777344 1238.890625 L 93.085938 1238.734375 L 93.394531 1238.582031 L 93.699219 1238.425781 L 94.625 1237.957031 L 94.929688 1237.796875 L 95.238281 1237.640625 L 96.164062 1237.160156 L 96.46875 1236.996094 L 96.777344 1236.835938 L 97.394531 1236.507812 L 97.699219 1236.34375 L 98.007812 1236.175781 L 98.316406 1236.011719 L 98.933594 1235.675781 L 99.238281 1235.507812 L 99.546875 1235.335938 L 99.855469 1235.167969 L 100.164062 1234.996094 L 100.46875 1234.824219 L 100.777344 1234.652344 L 101.085938 1234.476562 L 101.394531 1234.304688 L 101.703125 1234.128906 L 102.007812 1233.953125 L 102.316406 1233.777344 L 102.933594 1233.417969 L 103.242188 1233.242188 L 103.546875 1233.058594 L 103.855469 1232.878906 L 104.164062 1232.695312 L 104.472656 1232.515625 L 104.777344 1232.332031 L 105.085938 1232.144531 L 105.394531 1231.960938 L 106.011719 1231.585938 L 106.316406 1231.398438 L 106.625 1231.207031 L 106.933594 1231.019531 L 107.242188 1230.828125 L 107.546875 1230.632812 L 107.855469 1230.441406 L 108.78125 1229.855469 L 109.085938 1229.660156 L 110.011719 1229.0625 L 110.316406 1228.859375 L 110.625 1228.660156 L 110.933594 1228.457031 L 111.242188 1228.25 L 111.550781 1228.046875 L 111.855469 1227.839844 L 112.472656 1227.425781 L 112.78125 1227.214844 L 113.085938 1227.003906 L 113.394531 1226.792969 L 114.320312 1226.148438 L 114.625 1225.933594 L 115.550781 1225.277344 L 115.855469 1225.058594 L 116.472656 1224.613281 L 117.089844 1224.160156 L 117.394531 1223.933594 L 117.703125 1223.707031 L 118.320312 1223.246094 L 118.625 1223.015625 L 119.242188 1222.546875 L 119.550781 1222.308594 L 119.859375 1222.074219 L 120.164062 1221.835938 L 121.398438 1220.867188 L 121.703125 1220.621094 L 122.011719 1220.375 L 122.320312 1220.125 L 122.628906 1219.878906 L 122.933594 1219.625 L 123.242188 1219.375 L 123.550781 1219.121094 L 123.859375 1218.863281 L 124.167969 1218.609375 L 124.472656 1218.351562 L 125.398438 1217.566406 L 125.703125 1217.300781 L 126.320312 1216.769531 L 126.9375 1216.230469 L 127.242188 1215.957031 L 127.550781 1215.683594 L 128.167969 1215.128906 L 128.472656 1214.851562 L 129.089844 1214.289062 L 129.707031 1213.71875 L 130.011719 1213.433594 L 130.320312 1213.144531 L 130.9375 1212.558594 L 131.242188 1212.265625 L 131.859375 1211.671875 L 132.167969 1211.371094 L 132.476562 1211.066406 L 132.78125 1210.765625 L 133.089844 1210.457031 L 133.398438 1210.152344 L 133.707031 1209.839844 L 134.011719 1209.527344 L 134.320312 1209.214844 L 134.9375 1208.582031 L 135.246094 1208.261719 L 135.550781 1207.941406 L 135.859375 1207.617188 L 136.785156 1206.632812 L 137.089844 1206.300781 L 137.707031 1205.628906 L 138.015625 1205.289062 L 138.320312 1204.949219 L 138.628906 1204.605469 L 139.246094 1203.910156 L 139.554688 1203.558594 L 139.859375 1203.207031 L 140.167969 1202.851562 L 140.785156 1202.132812 L 141.089844 1201.769531 L 141.398438 1201.40625 L 141.707031 1201.035156 L 142.015625 1200.667969 L 142.324219 1200.292969 L 142.628906 1199.917969 L 143.246094 1199.160156 L 143.554688 1198.773438 L 143.859375 1198.390625 L 144.476562 1197.609375 L 144.785156 1197.214844 L 145.09375 1196.816406 L 145.398438 1196.414062 L 145.707031 1196.011719 L 146.015625 1195.605469 L 146.324219 1195.195312 L 146.628906 1194.785156 L 146.9375 1194.371094 L 147.246094 1193.953125 L 147.554688 1193.53125 L 147.863281 1193.105469 L 148.167969 1192.679688 L 148.785156 1191.8125 L 149.09375 1191.375 L 149.398438 1190.933594 L 149.707031 1190.492188 L 150.324219 1189.59375 L 150.632812 1189.136719 L 150.9375 1188.679688 L 151.246094 1188.21875 L 151.554688 1187.753906 L 151.863281 1187.285156 L 152.171875 1186.8125 L 152.476562 1186.335938 L 152.785156 1185.859375 L 153.09375 1185.375 L 153.402344 1184.886719 L 153.707031 1184.394531 L 154.324219 1183.402344 L 154.632812 1182.898438 L 154.941406 1182.390625 L 155.246094 1181.878906 L 155.554688 1181.363281 L 155.863281 1180.84375 L 156.171875 1180.320312 L 156.476562 1179.789062 L 156.785156 1179.257812 L 157.09375 1178.71875 L 157.402344 1178.175781 L 157.710938 1177.628906 L 158.015625 1177.078125 L 158.324219 1176.523438 L 158.941406 1175.398438 L 159.246094 1174.828125 L 159.863281 1173.671875 L 160.171875 1173.085938 L 160.480469 1172.496094 L 160.785156 1171.898438 L 161.09375 1171.296875 L 161.402344 1170.691406 L 161.710938 1170.082031 L 162.015625 1169.464844 L 162.324219 1168.839844 L 162.632812 1168.210938 L 162.941406 1167.578125 L 163.25 1166.9375 L 163.554688 1166.292969 L 163.863281 1165.640625 L 164.171875 1164.980469 L 164.480469 1164.316406 L 164.785156 1163.648438 L 165.09375 1162.972656 L 165.402344 1162.289062 L 165.710938 1161.597656 L 166.019531 1160.902344 L 166.324219 1160.199219 L 166.632812 1159.492188 L 166.941406 1158.773438 L 167.25 1158.050781 L 167.554688 1157.320312 L 167.863281 1156.585938 L 168.171875 1155.839844 L 168.480469 1155.089844 L 168.789062 1154.328125 L 169.09375 1153.5625 L 169.402344 1152.785156 L 169.710938 1152.003906 L 170.019531 1151.214844 L 170.328125 1150.414062 L 170.632812 1149.609375 L 170.941406 1148.792969 L 171.25 1147.96875 L 171.558594 1147.136719 L 171.863281 1146.296875 L 172.171875 1145.445312 L 172.480469 1144.585938 L 172.789062 1143.71875 L 173.097656 1142.84375 L 173.402344 1141.957031 L 173.710938 1141.058594 L 174.019531 1140.152344 L 174.328125 1139.238281 L 174.632812 1138.3125 L 174.941406 1137.375 L 175.25 1136.429688 L 175.558594 1135.472656 L 175.867188 1134.503906 L 176.171875 1133.523438 L 176.480469 1132.535156 L 176.789062 1131.535156 L 177.097656 1130.519531 L 177.402344 1129.496094 L 177.710938 1128.460938 L 178.019531 1127.410156 L 178.328125 1126.351562 L 178.636719 1125.277344 L 178.941406 1124.191406 L 179.25 1123.089844 L 179.558594 1121.976562 L 179.867188 1120.851562 L 180.171875 1119.710938 L 180.480469 1118.558594 L 180.789062 1117.390625 L 181.097656 1116.207031 L 181.40625 1115.011719 L 181.710938 1113.796875 L 182.019531 1112.570312 L 182.328125 1111.328125 L 182.636719 1110.066406 L 182.941406 1108.792969 L 183.25 1107.5 L 183.558594 1106.191406 L 183.867188 1104.863281 L 184.175781 1103.519531 L 184.480469 1102.15625 L 184.789062 1101.882812 L 215.253906 1101.882812 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="33.59375" y="1228.792969"/>
+ <use xlink:href="#glyph0-2" x="38.929337" y="1228.792969"/>
+ <use xlink:href="#glyph0-7" x="41.594788" y="1228.792969"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="33.59375" y="1187.636719"/>
+ <use xlink:href="#glyph0-2" x="38.929337" y="1187.636719"/>
+ <use xlink:href="#glyph0-8" x="41.594788" y="1187.636719"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="33.59375" y="1146.476562"/>
+ <use xlink:href="#glyph0-2" x="38.929337" y="1146.476562"/>
+ <use xlink:href="#glyph0-9" x="41.594788" y="1146.476562"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="33.59375" y="1105.320312"/>
+ <use xlink:href="#glyph0-2" x="38.929337" y="1105.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594788" y="1105.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 1225.355469 L 54.019531 1225.355469 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 1184.199219 L 54.019531 1184.199219 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 1143.039062 L 54.019531 1143.039062 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 1101.882812 L 54.019531 1101.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 1263.28125 L 61.695312 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 1263.28125 L 100.085938 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 1263.28125 L 138.476562 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 1263.28125 L 176.867188 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 1263.28125 L 215.253906 1259.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="52.359375" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="57.694962" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="60.360413" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="65.695999" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="90.75" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="96.085587" y="1272.992188"/>
+ <use xlink:href="#glyph0-3" x="98.751038" y="1272.992188"/>
+ <use xlink:href="#glyph0-4" x="104.086624" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="129.140625" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="134.476212" y="1272.992188"/>
+ <use xlink:href="#glyph0-4" x="137.141663" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="142.477249" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="167.53125" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="172.866837" y="1272.992188"/>
+ <use xlink:href="#glyph0-5" x="175.532288" y="1272.992188"/>
+ <use xlink:href="#glyph0-4" x="180.867874" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="205.917969" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="211.253555" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="213.919006" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="219.254593" y="1272.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="135.476562" y="1285.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="1188.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="1181.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="1176.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="1170.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-17" x="25.011719" y="1090.800781"/>
+ <use xlink:href="#glyph5-15" x="33.677734" y="1090.800781"/>
+ <use xlink:href="#glyph5-5" x="41.007812" y="1090.800781"/>
+ <use xlink:href="#glyph5-22" x="48.337891" y="1090.800781"/>
+ <use xlink:href="#glyph5-4" x="55.011719" y="1090.800781"/>
+ <use xlink:href="#glyph5-29" x="61.685547" y="1090.800781"/>
+ <use xlink:href="#glyph5-8" x="68.359375" y="1090.800781"/>
+</g>
+<g clip-path="url(#clip328)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 237.332031 1296 L 474.664062 1296 L 474.664062 1080 L 237.332031 1080 Z "/>
+</g>
+<g clip-path="url(#clip329)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.332031 1296 L 474.664062 1296 L 474.664062 1080 L 237.332031 1080 Z "/>
+</g>
+<g clip-path="url(#clip330)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 291.351562 1259.027344 L 460.265625 1259.027344 L 460.265625 1094.398438 L 291.351562 1094.398438 Z "/>
+</g>
+<g clip-path="url(#clip331)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1232.84375 L 460.265625 1232.84375 "/>
+</g>
+<g clip-path="url(#clip332)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1195.425781 L 460.265625 1195.425781 "/>
+</g>
+<g clip-path="url(#clip333)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1158.003906 L 460.265625 1158.003906 "/>
+</g>
+<g clip-path="url(#clip334)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1120.585938 L 460.265625 1120.585938 "/>
+</g>
+<g clip-path="url(#clip335)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.222656 1259.027344 L 318.222656 1094.398438 "/>
+</g>
+<g clip-path="url(#clip336)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.613281 1259.027344 L 356.613281 1094.398438 "/>
+</g>
+<g clip-path="url(#clip337)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.003906 1259.027344 L 395.003906 1094.398438 "/>
+</g>
+<g clip-path="url(#clip338)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.394531 1259.027344 L 433.394531 1094.398438 "/>
+</g>
+<g clip-path="url(#clip339)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1251.550781 L 460.265625 1251.550781 "/>
+</g>
+<g clip-path="url(#clip340)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1214.132812 L 460.265625 1214.132812 "/>
+</g>
+<g clip-path="url(#clip341)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1176.714844 L 460.265625 1176.714844 "/>
+</g>
+<g clip-path="url(#clip342)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1139.296875 L 460.265625 1139.296875 "/>
+</g>
+<g clip-path="url(#clip343)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1101.875 L 460.265625 1101.875 "/>
+</g>
+<g clip-path="url(#clip344)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 1259.027344 L 299.03125 1094.398438 "/>
+</g>
+<g clip-path="url(#clip345)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 1259.027344 L 337.417969 1094.398438 "/>
+</g>
+<g clip-path="url(#clip346)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 1259.027344 L 375.808594 1094.398438 "/>
+</g>
+<g clip-path="url(#clip347)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 1259.027344 L 414.199219 1094.398438 "/>
+</g>
+<g clip-path="url(#clip348)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 1259.027344 L 452.589844 1094.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 299.03125 1101.882812 L 300.566406 1101.882812 L 300.875 1101.886719 L 303.335938 1101.886719 L 303.644531 1101.890625 L 305.492188 1101.890625 L 305.800781 1101.894531 L 307.339844 1101.894531 L 307.644531 1101.898438 L 308.570312 1101.898438 L 308.878906 1101.902344 L 309.800781 1101.902344 L 310.109375 1101.90625 L 310.722656 1101.90625 L 311.03125 1101.910156 L 311.648438 1101.910156 L 311.953125 1101.914062 L 312.570312 1101.914062 L 312.878906 1101.917969 L 313.183594 1101.917969 L 313.492188 1101.921875 L 313.800781 1101.921875 L 314.109375 1101.925781 L 314.417969 1101.925781 L 314.722656 1101.929688 L 315.03125 1101.929688 L 315.339844 1101.933594 L 315.648438 1101.933594 L 315.953125 1101.9375 L 316.261719 1101.941406 L 316.570312 1101.941406 L 317.1875 1101.949219 L 317.492188 1101.953125 L 317.800781 1101.953125 L 318.417969 1101.960938 L 318.722656 1101.964844 L 319.957031 1101.980469 L 320.261719 1101.984375 L 321.1875 1101.996094 L 321.492188 1102.003906 L 322.109375 1102.011719 L 322.417969 1102.019531 L 322.726562 1102.023438 L 323.03125 1102.03125 L 323.339844 1102.039062 L 323.648438 1102.042969 L 324.265625 1102.058594 L 324.570312 1102.066406 L 325.496094 1102.089844 L 325.800781 1102.097656 L 326.109375 1102.105469 L 326.417969 1102.117188 L 326.726562 1102.125 L 327.035156 1102.136719 L 327.339844 1102.148438 L 327.648438 1102.160156 L 327.957031 1102.167969 L 328.265625 1102.183594 L 328.570312 1102.195312 L 328.878906 1102.207031 L 329.1875 1102.222656 L 329.496094 1102.234375 L 329.804688 1102.25 L 330.109375 1102.265625 L 331.035156 1102.3125 L 331.339844 1102.332031 L 332.574219 1102.410156 L 332.878906 1102.433594 L 333.804688 1102.503906 L 334.109375 1102.527344 L 334.726562 1102.582031 L 335.035156 1102.613281 L 335.34375 1102.640625 L 335.648438 1102.671875 L 335.957031 1102.707031 L 336.265625 1102.738281 L 336.574219 1102.773438 L 336.878906 1102.8125 L 337.1875 1102.847656 L 337.496094 1102.886719 L 338.113281 1102.972656 L 338.417969 1103.015625 L 339.035156 1103.109375 L 339.34375 1103.160156 L 339.648438 1103.210938 L 339.957031 1103.265625 L 340.882812 1103.441406 L 341.1875 1103.507812 L 341.496094 1103.570312 L 342.113281 1103.710938 L 342.421875 1103.785156 L 342.726562 1103.863281 L 343.035156 1103.941406 L 343.652344 1104.113281 L 343.957031 1104.203125 L 344.265625 1104.296875 L 344.574219 1104.394531 L 344.882812 1104.496094 L 345.191406 1104.601562 L 345.496094 1104.710938 L 345.804688 1104.824219 L 346.113281 1104.941406 L 346.421875 1105.0625 L 346.726562 1105.191406 L 347.035156 1105.324219 L 347.34375 1105.460938 L 347.652344 1105.605469 L 347.960938 1105.753906 L 348.265625 1105.90625 L 348.574219 1106.066406 L 348.882812 1106.234375 L 349.191406 1106.40625 L 349.496094 1106.585938 L 349.804688 1106.773438 L 350.113281 1106.964844 L 350.421875 1107.167969 L 350.730469 1107.375 L 351.035156 1107.589844 L 351.34375 1107.816406 L 351.652344 1108.046875 L 351.960938 1108.289062 L 352.265625 1108.539062 L 352.574219 1108.800781 L 352.882812 1109.070312 L 353.191406 1109.351562 L 353.5 1109.640625 L 353.804688 1109.941406 L 354.113281 1110.25 L 354.421875 1110.574219 L 354.730469 1110.90625 L 355.035156 1111.253906 L 355.34375 1111.613281 L 355.652344 1111.984375 L 355.960938 1112.367188 L 356.269531 1112.765625 L 356.574219 1113.179688 L 356.882812 1113.605469 L 357.191406 1114.042969 L 357.5 1114.5 L 357.808594 1114.972656 L 358.113281 1115.457031 L 358.421875 1115.960938 L 358.730469 1116.480469 L 359.039062 1117.019531 L 359.34375 1117.574219 L 359.652344 1118.144531 L 359.960938 1118.734375 L 360.269531 1119.34375 L 360.578125 1119.972656 L 360.882812 1120.617188 L 361.191406 1121.285156 L 361.5 1121.972656 L 361.808594 1122.679688 L 362.113281 1123.410156 L 362.421875 1124.160156 L 362.730469 1124.929688 L 363.039062 1125.722656 L 363.347656 1126.535156 L 363.652344 1127.375 L 363.960938 1128.230469 L 364.269531 1129.113281 L 364.578125 1130.019531 L 364.882812 1130.945312 L 365.191406 1131.894531 L 365.5 1132.871094 L 365.808594 1133.867188 L 366.117188 1134.886719 L 366.421875 1135.929688 L 366.730469 1136.996094 L 367.039062 1138.082031 L 367.347656 1139.195312 L 367.652344 1140.328125 L 367.960938 1141.484375 L 368.269531 1142.664062 L 368.578125 1143.863281 L 368.886719 1145.085938 L 369.191406 1146.328125 L 369.5 1147.589844 L 369.808594 1148.871094 L 370.117188 1150.175781 L 370.421875 1151.496094 L 370.730469 1152.832031 L 371.039062 1154.1875 L 371.347656 1155.558594 L 371.65625 1156.949219 L 371.960938 1158.351562 L 372.269531 1159.765625 L 372.578125 1161.195312 L 372.886719 1162.636719 L 373.195312 1164.089844 L 373.5 1165.550781 L 373.808594 1167.019531 L 374.117188 1168.5 L 374.425781 1169.984375 L 374.730469 1171.472656 L 375.347656 1174.464844 L 375.964844 1177.464844 L 376.269531 1178.964844 L 376.886719 1181.957031 L 377.195312 1183.445312 L 377.5 1184.929688 L 377.808594 1186.40625 L 378.117188 1187.878906 L 378.425781 1189.339844 L 378.734375 1190.792969 L 379.039062 1192.234375 L 379.347656 1193.664062 L 379.65625 1195.078125 L 379.964844 1196.480469 L 380.269531 1197.867188 L 380.578125 1199.242188 L 380.886719 1200.597656 L 381.195312 1201.933594 L 381.503906 1203.253906 L 381.808594 1204.558594 L 382.117188 1205.839844 L 382.425781 1207.101562 L 382.734375 1208.34375 L 383.039062 1209.566406 L 383.347656 1210.765625 L 383.65625 1211.945312 L 383.964844 1213.101562 L 384.273438 1214.234375 L 384.578125 1215.347656 L 384.886719 1216.433594 L 385.195312 1217.5 L 385.503906 1218.542969 L 385.808594 1219.5625 L 386.117188 1220.558594 L 386.425781 1221.53125 L 386.734375 1222.484375 L 387.042969 1223.410156 L 387.347656 1224.316406 L 387.65625 1225.195312 L 387.964844 1226.054688 L 388.273438 1226.890625 L 388.578125 1227.707031 L 388.886719 1228.5 L 389.195312 1229.269531 L 389.503906 1230.019531 L 389.8125 1230.75 L 390.117188 1231.457031 L 390.425781 1232.144531 L 390.734375 1232.808594 L 391.042969 1233.457031 L 391.351562 1234.085938 L 391.65625 1234.695312 L 391.964844 1235.285156 L 392.273438 1235.855469 L 392.582031 1236.410156 L 392.886719 1236.949219 L 393.195312 1237.46875 L 393.503906 1237.972656 L 393.8125 1238.457031 L 394.121094 1238.929688 L 394.425781 1239.382812 L 394.734375 1239.824219 L 395.042969 1240.25 L 395.351562 1240.664062 L 395.65625 1241.058594 L 395.964844 1241.445312 L 396.273438 1241.816406 L 396.582031 1242.175781 L 396.890625 1242.519531 L 397.195312 1242.855469 L 397.503906 1243.175781 L 397.8125 1243.488281 L 398.121094 1243.789062 L 398.425781 1244.078125 L 398.734375 1244.359375 L 399.042969 1244.628906 L 399.351562 1244.886719 L 399.660156 1245.140625 L 399.964844 1245.378906 L 400.273438 1245.613281 L 400.582031 1245.835938 L 400.890625 1246.054688 L 401.195312 1246.261719 L 401.503906 1246.464844 L 401.8125 1246.65625 L 402.121094 1246.84375 L 402.429688 1247.023438 L 402.734375 1247.195312 L 403.042969 1247.363281 L 403.351562 1247.523438 L 403.660156 1247.675781 L 403.964844 1247.824219 L 404.273438 1247.96875 L 404.582031 1248.105469 L 404.890625 1248.238281 L 405.199219 1248.363281 L 405.503906 1248.488281 L 405.8125 1248.605469 L 406.121094 1248.71875 L 406.429688 1248.828125 L 406.738281 1248.933594 L 407.042969 1249.035156 L 407.351562 1249.132812 L 407.660156 1249.226562 L 407.96875 1249.316406 L 408.273438 1249.402344 L 408.890625 1249.566406 L 409.199219 1249.644531 L 409.507812 1249.71875 L 409.8125 1249.789062 L 410.429688 1249.921875 L 410.738281 1249.984375 L 411.042969 1250.046875 L 411.351562 1250.105469 L 412.277344 1250.269531 L 412.582031 1250.316406 L 412.890625 1250.367188 L 413.199219 1250.414062 L 413.507812 1250.457031 L 413.8125 1250.5 L 414.121094 1250.539062 L 414.429688 1250.582031 L 414.738281 1250.617188 L 415.046875 1250.65625 L 415.351562 1250.691406 L 415.660156 1250.722656 L 415.96875 1250.757812 L 416.277344 1250.789062 L 416.582031 1250.816406 L 416.890625 1250.847656 L 417.199219 1250.875 L 417.507812 1250.898438 L 417.816406 1250.925781 L 418.121094 1250.949219 L 419.046875 1251.019531 L 419.351562 1251.039062 L 420.277344 1251.097656 L 420.585938 1251.113281 L 420.890625 1251.132812 L 422.125 1251.195312 L 422.429688 1251.207031 L 422.738281 1251.222656 L 423.355469 1251.246094 L 423.660156 1251.257812 L 424.585938 1251.292969 L 424.894531 1251.300781 L 425.199219 1251.3125 L 425.507812 1251.320312 L 425.816406 1251.332031 L 426.125 1251.339844 L 426.429688 1251.347656 L 427.664062 1251.378906 L 427.96875 1251.386719 L 428.277344 1251.390625 L 428.585938 1251.398438 L 428.894531 1251.402344 L 429.199219 1251.410156 L 429.507812 1251.414062 L 429.816406 1251.421875 L 430.433594 1251.429688 L 430.738281 1251.4375 L 431.664062 1251.449219 L 431.96875 1251.453125 L 433.203125 1251.46875 L 433.507812 1251.472656 L 433.816406 1251.472656 L 434.433594 1251.480469 L 434.738281 1251.484375 L 435.046875 1251.484375 L 435.664062 1251.492188 L 435.972656 1251.492188 L 436.277344 1251.496094 L 436.585938 1251.5 L 436.894531 1251.5 L 437.203125 1251.503906 L 437.507812 1251.503906 L 437.816406 1251.507812 L 438.433594 1251.507812 L 438.742188 1251.511719 L 439.046875 1251.511719 L 439.355469 1251.515625 L 439.972656 1251.515625 L 440.28125 1251.519531 L 440.585938 1251.519531 L 440.894531 1251.523438 L 441.816406 1251.523438 L 442.125 1251.527344 L 443.050781 1251.527344 L 443.355469 1251.53125 L 444.28125 1251.53125 L 444.585938 1251.535156 L 446.125 1251.535156 L 446.433594 1251.539062 L 448.28125 1251.539062 L 448.589844 1251.542969 L 451.359375 1251.542969 L 451.664062 1251.546875 L 452.589844 1251.546875 "/>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 299.03125 1251.546875 L 299.953125 1251.546875 L 300.261719 1251.542969 L 303.03125 1251.542969 L 303.335938 1251.539062 L 305.183594 1251.539062 L 305.492188 1251.535156 L 307.03125 1251.535156 L 307.339844 1251.53125 L 308.261719 1251.53125 L 308.570312 1251.527344 L 309.492188 1251.527344 L 309.800781 1251.523438 L 310.722656 1251.523438 L 311.03125 1251.519531 L 311.339844 1251.519531 L 311.648438 1251.515625 L 312.261719 1251.515625 L 312.570312 1251.511719 L 312.878906 1251.511719 L 313.183594 1251.507812 L 313.800781 1251.507812 L 314.109375 1251.503906 L 314.417969 1251.503906 L 314.722656 1251.5 L 315.03125 1251.5 L 315.648438 1251.492188 L 315.953125 1251.492188 L 316.570312 1251.484375 L 316.878906 1251.484375 L 317.1875 1251.480469 L 317.492188 1251.476562 L 317.800781 1251.472656 L 318.109375 1251.472656 L 318.417969 1251.46875 L 318.722656 1251.464844 L 319.957031 1251.449219 L 320.261719 1251.445312 L 320.878906 1251.4375 L 321.1875 1251.429688 L 321.492188 1251.425781 L 321.800781 1251.421875 L 322.109375 1251.414062 L 322.417969 1251.410156 L 322.726562 1251.402344 L 323.03125 1251.398438 L 323.339844 1251.390625 L 323.648438 1251.386719 L 324.265625 1251.371094 L 324.570312 1251.363281 L 325.496094 1251.339844 L 325.800781 1251.332031 L 326.109375 1251.320312 L 326.417969 1251.3125 L 326.726562 1251.300781 L 327.035156 1251.292969 L 327.339844 1251.28125 L 328.265625 1251.246094 L 328.570312 1251.234375 L 328.878906 1251.222656 L 329.1875 1251.207031 L 329.496094 1251.195312 L 329.804688 1251.179688 L 330.109375 1251.164062 L 330.726562 1251.132812 L 331.035156 1251.113281 L 331.339844 1251.097656 L 332.574219 1251.019531 L 332.878906 1250.996094 L 333.804688 1250.925781 L 334.109375 1250.898438 L 334.417969 1250.875 L 334.726562 1250.847656 L 335.035156 1250.816406 L 335.34375 1250.789062 L 335.648438 1250.757812 L 335.957031 1250.722656 L 336.265625 1250.691406 L 336.574219 1250.65625 L 336.878906 1250.617188 L 337.1875 1250.582031 L 337.496094 1250.539062 L 337.804688 1250.5 L 338.113281 1250.457031 L 338.417969 1250.414062 L 338.726562 1250.367188 L 339.035156 1250.316406 L 339.34375 1250.269531 L 339.648438 1250.214844 L 340.265625 1250.105469 L 340.574219 1250.046875 L 340.882812 1249.984375 L 341.1875 1249.921875 L 341.804688 1249.789062 L 342.113281 1249.71875 L 342.421875 1249.644531 L 342.726562 1249.566406 L 343.34375 1249.402344 L 343.652344 1249.316406 L 343.957031 1249.226562 L 344.265625 1249.132812 L 344.574219 1249.035156 L 344.882812 1248.933594 L 345.191406 1248.828125 L 345.496094 1248.71875 L 345.804688 1248.605469 L 346.113281 1248.488281 L 346.421875 1248.363281 L 346.726562 1248.238281 L 347.035156 1248.105469 L 347.34375 1247.96875 L 347.652344 1247.824219 L 347.960938 1247.675781 L 348.265625 1247.523438 L 348.574219 1247.363281 L 348.882812 1247.195312 L 349.191406 1247.023438 L 349.496094 1246.84375 L 349.804688 1246.65625 L 350.113281 1246.464844 L 350.421875 1246.261719 L 350.730469 1246.054688 L 351.035156 1245.835938 L 351.34375 1245.613281 L 351.652344 1245.378906 L 351.960938 1245.140625 L 352.265625 1244.886719 L 352.574219 1244.628906 L 352.882812 1244.359375 L 353.191406 1244.078125 L 353.5 1243.789062 L 353.804688 1243.488281 L 354.113281 1243.175781 L 354.421875 1242.855469 L 354.730469 1242.519531 L 355.035156 1242.175781 L 355.34375 1241.816406 L 355.652344 1241.445312 L 355.960938 1241.058594 L 356.269531 1240.664062 L 356.574219 1240.25 L 356.882812 1239.824219 L 357.191406 1239.382812 L 357.5 1238.929688 L 357.808594 1238.457031 L 358.113281 1237.972656 L 358.421875 1237.46875 L 358.730469 1236.949219 L 359.039062 1236.410156 L 359.34375 1235.855469 L 359.652344 1235.285156 L 359.960938 1234.695312 L 360.269531 1234.085938 L 360.578125 1233.457031 L 360.882812 1232.808594 L 361.191406 1232.144531 L 361.5 1231.457031 L 361.808594 1230.75 L 362.113281 1230.019531 L 362.421875 1229.269531 L 362.730469 1228.5 L 363.039062 1227.707031 L 363.347656 1226.890625 L 363.652344 1226.054688 L 363.960938 1225.195312 L 364.269531 1224.316406 L 364.578125 1223.410156 L 364.882812 1222.484375 L 365.191406 1221.53125 L 365.5 1220.558594 L 365.808594 1219.5625 L 366.117188 1218.542969 L 366.421875 1217.5 L 366.730469 1216.433594 L 367.039062 1215.347656 L 367.347656 1214.234375 L 367.652344 1213.101562 L 367.960938 1211.945312 L 368.269531 1210.765625 L 368.578125 1209.566406 L 368.886719 1208.34375 L 369.191406 1207.101562 L 369.5 1205.839844 L 369.808594 1204.558594 L 370.117188 1203.253906 L 370.421875 1201.933594 L 370.730469 1200.597656 L 371.039062 1199.242188 L 371.347656 1197.867188 L 371.65625 1196.480469 L 371.960938 1195.078125 L 372.269531 1193.664062 L 372.578125 1192.234375 L 372.886719 1190.792969 L 373.195312 1189.339844 L 373.5 1187.878906 L 373.808594 1186.40625 L 374.117188 1184.929688 L 374.425781 1183.445312 L 374.730469 1181.957031 L 375.347656 1178.964844 L 375.964844 1175.964844 L 376.269531 1174.464844 L 376.886719 1171.472656 L 377.195312 1169.984375 L 377.5 1168.5 L 377.808594 1167.019531 L 378.117188 1165.550781 L 378.425781 1164.089844 L 378.734375 1162.636719 L 379.039062 1161.195312 L 379.347656 1159.765625 L 379.65625 1158.351562 L 379.964844 1156.949219 L 380.269531 1155.558594 L 380.578125 1154.1875 L 380.886719 1152.832031 L 381.195312 1151.496094 L 381.503906 1150.175781 L 381.808594 1148.871094 L 382.117188 1147.589844 L 382.425781 1146.328125 L 382.734375 1145.085938 L 383.039062 1143.863281 L 383.347656 1142.664062 L 383.65625 1141.484375 L 383.964844 1140.328125 L 384.273438 1139.195312 L 384.578125 1138.082031 L 384.886719 1136.996094 L 385.195312 1135.929688 L 385.503906 1134.886719 L 385.808594 1133.867188 L 386.117188 1132.871094 L 386.425781 1131.894531 L 386.734375 1130.945312 L 387.042969 1130.019531 L 387.347656 1129.113281 L 387.65625 1128.230469 L 387.964844 1127.375 L 388.273438 1126.535156 L 388.578125 1125.722656 L 388.886719 1124.929688 L 389.195312 1124.160156 L 389.503906 1123.410156 L 389.8125 1122.679688 L 390.117188 1121.972656 L 390.425781 1121.285156 L 390.734375 1120.617188 L 391.042969 1119.972656 L 391.351562 1119.34375 L 391.65625 1118.734375 L 391.964844 1118.144531 L 392.273438 1117.574219 L 392.582031 1117.019531 L 392.886719 1116.480469 L 393.195312 1115.960938 L 393.503906 1115.457031 L 393.8125 1114.972656 L 394.121094 1114.5 L 394.425781 1114.042969 L 394.734375 1113.605469 L 395.042969 1113.179688 L 395.351562 1112.765625 L 395.65625 1112.367188 L 395.964844 1111.984375 L 396.273438 1111.613281 L 396.582031 1111.253906 L 396.890625 1110.90625 L 397.195312 1110.574219 L 397.503906 1110.25 L 397.8125 1109.941406 L 398.121094 1109.640625 L 398.425781 1109.351562 L 398.734375 1109.070312 L 399.042969 1108.800781 L 399.351562 1108.539062 L 399.660156 1108.289062 L 399.964844 1108.046875 L 400.273438 1107.816406 L 400.582031 1107.589844 L 400.890625 1107.375 L 401.195312 1107.167969 L 401.503906 1106.964844 L 401.8125 1106.773438 L 402.121094 1106.585938 L 402.429688 1106.40625 L 402.734375 1106.234375 L 403.042969 1106.066406 L 403.351562 1105.90625 L 403.660156 1105.753906 L 403.964844 1105.605469 L 404.273438 1105.460938 L 404.582031 1105.324219 L 404.890625 1105.191406 L 405.199219 1105.0625 L 405.503906 1104.941406 L 405.8125 1104.824219 L 406.121094 1104.710938 L 406.429688 1104.601562 L 406.738281 1104.496094 L 407.042969 1104.394531 L 407.351562 1104.296875 L 407.660156 1104.203125 L 407.96875 1104.113281 L 408.273438 1104.027344 L 408.582031 1103.941406 L 409.199219 1103.785156 L 409.507812 1103.710938 L 409.8125 1103.640625 L 410.121094 1103.570312 L 410.429688 1103.507812 L 410.738281 1103.441406 L 411.042969 1103.382812 L 411.660156 1103.265625 L 411.96875 1103.210938 L 412.277344 1103.160156 L 412.582031 1103.109375 L 413.199219 1103.015625 L 413.507812 1102.972656 L 413.8125 1102.929688 L 414.121094 1102.886719 L 414.429688 1102.847656 L 414.738281 1102.8125 L 415.046875 1102.773438 L 415.351562 1102.738281 L 415.660156 1102.707031 L 415.96875 1102.671875 L 416.277344 1102.640625 L 416.582031 1102.613281 L 416.890625 1102.582031 L 417.507812 1102.527344 L 417.816406 1102.503906 L 418.121094 1102.480469 L 419.046875 1102.410156 L 419.351562 1102.390625 L 420.585938 1102.3125 L 420.890625 1102.296875 L 422.125 1102.234375 L 422.429688 1102.222656 L 422.738281 1102.207031 L 423.355469 1102.183594 L 423.660156 1102.167969 L 423.96875 1102.160156 L 424.894531 1102.125 L 425.199219 1102.117188 L 425.507812 1102.105469 L 426.125 1102.089844 L 426.429688 1102.082031 L 427.664062 1102.050781 L 427.96875 1102.042969 L 428.277344 1102.039062 L 428.894531 1102.023438 L 429.199219 1102.019531 L 429.507812 1102.011719 L 430.125 1102.003906 L 430.433594 1101.996094 L 430.738281 1101.992188 L 431.664062 1101.980469 L 431.96875 1101.976562 L 433.203125 1101.960938 L 433.507812 1101.957031 L 433.816406 1101.953125 L 434.125 1101.953125 L 434.433594 1101.949219 L 434.738281 1101.945312 L 435.046875 1101.941406 L 435.355469 1101.941406 L 435.972656 1101.933594 L 436.277344 1101.933594 L 436.585938 1101.929688 L 436.894531 1101.929688 L 437.203125 1101.925781 L 437.507812 1101.925781 L 437.816406 1101.921875 L 438.125 1101.921875 L 438.433594 1101.917969 L 438.742188 1101.917969 L 439.046875 1101.914062 L 439.664062 1101.914062 L 439.972656 1101.910156 L 440.585938 1101.910156 L 440.894531 1101.90625 L 441.511719 1101.90625 L 441.816406 1101.902344 L 442.742188 1101.902344 L 443.050781 1101.898438 L 443.972656 1101.898438 L 444.28125 1101.894531 L 445.820312 1101.894531 L 446.125 1101.890625 L 447.972656 1101.890625 L 448.28125 1101.886719 L 450.742188 1101.886719 L 451.050781 1101.882812 L 452.589844 1101.882812 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="1254.988281"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1254.988281"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="1254.988281"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="1254.988281"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="1217.570312"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1217.570312"/>
+ <use xlink:href="#glyph0-3" x="273.594788" y="1217.570312"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="1217.570312"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="1180.152344"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1180.152344"/>
+ <use xlink:href="#glyph0-4" x="273.594788" y="1180.152344"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="1180.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="1142.734375"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1142.734375"/>
+ <use xlink:href="#glyph0-5" x="273.594788" y="1142.734375"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="1142.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="265.59375" y="1105.3125"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1105.3125"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="1105.3125"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="1105.3125"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 1251.550781 L 291.351562 1251.550781 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 1214.132812 L 291.351562 1214.132812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 1176.714844 L 291.351562 1176.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 1139.296875 L 291.351562 1139.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 1101.875 L 291.351562 1101.875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 1263.28125 L 299.03125 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 1263.28125 L 337.417969 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 1263.28125 L 375.808594 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 1263.28125 L 414.199219 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 1263.28125 L 452.589844 1259.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="289.695312" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="295.030899" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="297.69635" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="303.031937" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="328.082031" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="333.417618" y="1272.992188"/>
+ <use xlink:href="#glyph0-3" x="336.083069" y="1272.992188"/>
+ <use xlink:href="#glyph0-4" x="341.418655" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="366.472656" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="371.808243" y="1272.992188"/>
+ <use xlink:href="#glyph0-4" x="374.473694" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="379.80928" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="404.863281" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="410.198868" y="1272.992188"/>
+ <use xlink:href="#glyph0-5" x="412.864319" y="1272.992188"/>
+ <use xlink:href="#glyph0-4" x="418.199905" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="443.253906" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="448.589493" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="451.254944" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="456.59053" y="1272.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="372.808594" y="1285.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="258.992188" y="1188.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="258.992188" y="1181.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="258.992188" y="1176.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="258.992188" y="1170.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-11" x="260.996094" y="1090.800781"/>
+ <use xlink:href="#glyph5-3" x="269" y="1090.800781"/>
+ <use xlink:href="#glyph5-6" x="272.333984" y="1090.800781"/>
+ <use xlink:href="#glyph5-19" x="279.664062" y="1090.800781"/>
+ <use xlink:href="#glyph5-15" x="290.333984" y="1090.800781"/>
+ <use xlink:href="#glyph5-3" x="297.664062" y="1090.800781"/>
+ <use xlink:href="#glyph5-16" x="300.998047" y="1090.800781"/>
+</g>
+<g clip-path="url(#clip349)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 474.667969 1296 L 712 1296 L 712 1080 L 474.667969 1080 Z "/>
+</g>
+<g clip-path="url(#clip350)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 474.667969 1296 L 712 1296 L 712 1080 L 474.667969 1080 Z "/>
+</g>
+<g clip-path="url(#clip351)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 528.683594 1259.027344 L 697.597656 1259.027344 L 697.597656 1094.398438 L 528.683594 1094.398438 Z "/>
+</g>
+<g clip-path="url(#clip352)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1232.839844 L 697.601562 1232.839844 "/>
+</g>
+<g clip-path="url(#clip353)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1195.421875 L 697.601562 1195.421875 "/>
+</g>
+<g clip-path="url(#clip354)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1158.007812 L 697.601562 1158.007812 "/>
+</g>
+<g clip-path="url(#clip355)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1120.589844 L 697.601562 1120.589844 "/>
+</g>
+<g clip-path="url(#clip356)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 555.558594 1259.027344 L 555.558594 1094.398438 "/>
+</g>
+<g clip-path="url(#clip357)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 593.949219 1259.027344 L 593.949219 1094.398438 "/>
+</g>
+<g clip-path="url(#clip358)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 632.335938 1259.027344 L 632.335938 1094.398438 "/>
+</g>
+<g clip-path="url(#clip359)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 670.726562 1259.027344 L 670.726562 1094.398438 "/>
+</g>
+<g clip-path="url(#clip360)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1251.546875 L 697.601562 1251.546875 "/>
+</g>
+<g clip-path="url(#clip361)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1214.128906 L 697.601562 1214.128906 "/>
+</g>
+<g clip-path="url(#clip362)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1176.714844 L 697.601562 1176.714844 "/>
+</g>
+<g clip-path="url(#clip363)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1139.296875 L 697.601562 1139.296875 "/>
+</g>
+<g clip-path="url(#clip364)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1101.882812 L 697.601562 1101.882812 "/>
+</g>
+<g clip-path="url(#clip365)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 1259.027344 L 536.363281 1094.398438 "/>
+</g>
+<g clip-path="url(#clip366)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 1259.027344 L 574.753906 1094.398438 "/>
+</g>
+<g clip-path="url(#clip367)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 1259.027344 L 613.140625 1094.398438 "/>
+</g>
+<g clip-path="url(#clip368)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 1259.027344 L 651.53125 1094.398438 "/>
+</g>
+<g clip-path="url(#clip369)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 1259.027344 L 689.921875 1094.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 536.363281 1101.882812 L 536.671875 1101.882812 L 536.976562 1101.886719 L 537.59375 1101.902344 L 538.210938 1101.925781 L 538.515625 1101.941406 L 539.132812 1101.980469 L 539.441406 1102.003906 L 539.746094 1102.027344 L 540.054688 1102.054688 L 540.671875 1102.117188 L 540.980469 1102.152344 L 541.285156 1102.191406 L 541.59375 1102.230469 L 542.210938 1102.316406 L 542.515625 1102.363281 L 543.132812 1102.464844 L 543.75 1102.574219 L 544.054688 1102.632812 L 544.671875 1102.757812 L 544.980469 1102.824219 L 545.289062 1102.894531 L 545.59375 1102.964844 L 546.210938 1103.113281 L 546.519531 1103.191406 L 546.824219 1103.273438 L 547.132812 1103.355469 L 547.75 1103.527344 L 548.058594 1103.617188 L 548.363281 1103.710938 L 548.671875 1103.804688 L 548.980469 1103.902344 L 549.289062 1104.003906 L 549.59375 1104.105469 L 550.210938 1104.316406 L 550.519531 1104.425781 L 550.828125 1104.539062 L 551.132812 1104.652344 L 551.75 1104.886719 L 552.058594 1105.011719 L 552.363281 1105.132812 L 552.671875 1105.261719 L 552.980469 1105.386719 L 553.597656 1105.652344 L 553.902344 1105.789062 L 554.210938 1105.925781 L 554.519531 1106.066406 L 554.828125 1106.210938 L 555.132812 1106.355469 L 555.75 1106.652344 L 556.058594 1106.808594 L 556.367188 1106.960938 L 556.671875 1107.121094 L 557.289062 1107.441406 L 557.597656 1107.605469 L 557.902344 1107.773438 L 558.210938 1107.941406 L 558.519531 1108.113281 L 559.136719 1108.464844 L 559.441406 1108.644531 L 560.367188 1109.195312 L 560.671875 1109.386719 L 561.289062 1109.769531 L 561.597656 1109.964844 L 561.90625 1110.164062 L 562.210938 1110.363281 L 562.519531 1110.566406 L 563.136719 1110.980469 L 563.445312 1111.191406 L 563.75 1111.40625 L 564.367188 1111.835938 L 564.675781 1112.058594 L 564.980469 1112.28125 L 565.289062 1112.503906 L 565.597656 1112.730469 L 565.90625 1112.960938 L 566.214844 1113.195312 L 566.519531 1113.429688 L 566.828125 1113.664062 L 567.136719 1113.902344 L 567.445312 1114.144531 L 567.75 1114.390625 L 568.058594 1114.636719 L 568.675781 1115.136719 L 568.984375 1115.390625 L 569.289062 1115.644531 L 569.597656 1115.90625 L 569.90625 1116.164062 L 570.214844 1116.429688 L 570.519531 1116.695312 L 570.828125 1116.960938 L 571.136719 1117.234375 L 571.445312 1117.503906 L 571.753906 1117.78125 L 572.058594 1118.058594 L 572.675781 1118.621094 L 572.984375 1118.90625 L 573.289062 1119.195312 L 573.90625 1119.773438 L 574.523438 1120.367188 L 574.828125 1120.667969 L 575.136719 1120.96875 L 575.753906 1121.578125 L 576.058594 1121.886719 L 576.675781 1122.511719 L 576.984375 1122.828125 L 577.292969 1123.148438 L 577.597656 1123.46875 L 578.214844 1124.117188 L 578.523438 1124.445312 L 578.832031 1124.777344 L 579.136719 1125.109375 L 579.753906 1125.78125 L 580.0625 1126.121094 L 580.367188 1126.464844 L 580.675781 1126.808594 L 580.984375 1127.15625 L 581.601562 1127.859375 L 581.90625 1128.214844 L 582.214844 1128.570312 L 582.523438 1128.929688 L 582.832031 1129.292969 L 583.136719 1129.65625 L 583.753906 1130.390625 L 584.0625 1130.765625 L 584.371094 1131.136719 L 584.675781 1131.515625 L 584.984375 1131.890625 L 585.601562 1132.65625 L 585.90625 1133.042969 L 586.214844 1133.429688 L 586.523438 1133.820312 L 587.140625 1134.609375 L 587.445312 1135.007812 L 588.371094 1136.214844 L 588.675781 1136.625 L 589.292969 1137.445312 L 589.601562 1137.859375 L 589.910156 1138.277344 L 590.214844 1138.699219 L 590.832031 1139.542969 L 591.140625 1139.96875 L 591.445312 1140.398438 L 592.0625 1141.265625 L 592.679688 1142.140625 L 592.984375 1142.582031 L 593.292969 1143.023438 L 593.601562 1143.472656 L 593.910156 1143.917969 L 594.21875 1144.371094 L 594.523438 1144.824219 L 594.832031 1145.277344 L 595.449219 1146.199219 L 595.753906 1146.660156 L 596.0625 1147.125 L 596.679688 1148.0625 L 596.988281 1148.535156 L 597.292969 1149.011719 L 597.601562 1149.488281 L 598.21875 1150.449219 L 598.523438 1150.933594 L 599.140625 1151.910156 L 599.757812 1152.894531 L 600.0625 1153.390625 L 600.679688 1154.390625 L 600.988281 1154.894531 L 601.292969 1155.402344 L 601.601562 1155.910156 L 602.21875 1156.933594 L 602.527344 1157.449219 L 602.832031 1157.96875 L 603.140625 1158.488281 L 603.449219 1159.011719 L 603.757812 1159.539062 L 604.0625 1160.066406 L 604.371094 1160.59375 L 605.296875 1162.199219 L 605.601562 1162.738281 L 605.910156 1163.28125 L 606.527344 1164.375 L 606.832031 1164.921875 L 607.140625 1165.472656 L 607.449219 1166.027344 L 608.066406 1167.144531 L 608.371094 1167.707031 L 608.679688 1168.269531 L 609.296875 1169.402344 L 609.601562 1169.976562 L 609.910156 1170.546875 L 610.527344 1171.703125 L 610.835938 1172.285156 L 611.140625 1172.867188 L 611.757812 1174.039062 L 612.066406 1174.628906 L 612.375 1175.222656 L 612.679688 1175.816406 L 612.988281 1176.414062 L 613.296875 1177.015625 L 613.605469 1177.613281 L 613.910156 1178.207031 L 614.21875 1178.800781 L 614.527344 1179.390625 L 615.144531 1180.5625 L 615.449219 1181.144531 L 615.757812 1181.726562 L 616.066406 1182.304688 L 616.375 1182.878906 L 616.679688 1183.453125 L 617.296875 1184.59375 L 617.605469 1185.160156 L 617.914062 1185.722656 L 618.21875 1186.285156 L 618.527344 1186.84375 L 619.144531 1187.953125 L 619.449219 1188.507812 L 620.375 1190.148438 L 620.683594 1190.6875 L 620.988281 1191.230469 L 621.605469 1192.300781 L 621.914062 1192.832031 L 622.21875 1193.363281 L 622.835938 1194.417969 L 623.144531 1194.941406 L 623.453125 1195.460938 L 623.757812 1195.980469 L 624.066406 1196.496094 L 624.683594 1197.519531 L 624.988281 1198.027344 L 625.914062 1199.539062 L 626.222656 1200.035156 L 626.527344 1200.535156 L 627.144531 1201.519531 L 627.761719 1202.496094 L 628.066406 1202.980469 L 628.683594 1203.941406 L 628.992188 1204.417969 L 629.296875 1204.894531 L 629.605469 1205.367188 L 630.222656 1206.304688 L 630.53125 1206.769531 L 630.835938 1207.230469 L 631.144531 1207.691406 L 631.761719 1208.605469 L 632.066406 1209.058594 L 632.683594 1209.957031 L 633.300781 1210.847656 L 633.605469 1211.289062 L 634.222656 1212.164062 L 634.53125 1212.597656 L 634.835938 1213.027344 L 635.453125 1213.886719 L 636.070312 1214.730469 L 636.375 1215.152344 L 636.683594 1215.566406 L 636.992188 1215.984375 L 637.300781 1216.394531 L 637.605469 1216.804688 L 638.222656 1217.617188 L 638.839844 1218.421875 L 639.144531 1218.820312 L 639.453125 1219.214844 L 640.070312 1219.996094 L 640.375 1220.386719 L 640.683594 1220.773438 L 640.992188 1221.15625 L 641.609375 1221.914062 L 641.914062 1222.292969 L 642.839844 1223.40625 L 643.148438 1223.773438 L 643.453125 1224.136719 L 643.761719 1224.5 L 644.070312 1224.859375 L 644.378906 1225.214844 L 644.683594 1225.570312 L 645.300781 1226.273438 L 645.609375 1226.617188 L 645.917969 1226.964844 L 646.222656 1227.304688 L 646.53125 1227.648438 L 647.148438 1228.320312 L 647.453125 1228.652344 L 647.761719 1228.984375 L 648.070312 1229.3125 L 648.6875 1229.960938 L 648.992188 1230.28125 L 649.300781 1230.601562 L 649.609375 1230.917969 L 649.917969 1231.230469 L 650.222656 1231.542969 L 650.53125 1231.851562 L 651.148438 1232.460938 L 651.457031 1232.761719 L 651.761719 1233.0625 L 652.070312 1233.359375 L 652.6875 1233.945312 L 652.992188 1234.234375 L 653.300781 1234.523438 L 653.609375 1234.808594 L 654.226562 1235.371094 L 654.53125 1235.648438 L 655.148438 1236.195312 L 655.457031 1236.464844 L 655.761719 1236.734375 L 656.070312 1237 L 656.6875 1237.523438 L 656.996094 1237.78125 L 657.300781 1238.039062 L 657.609375 1238.292969 L 658.226562 1238.792969 L 658.53125 1239.039062 L 659.457031 1239.765625 L 659.765625 1240 L 660.070312 1240.234375 L 660.378906 1240.46875 L 660.6875 1240.695312 L 660.996094 1240.925781 L 661.304688 1241.148438 L 661.609375 1241.371094 L 662.226562 1241.808594 L 662.535156 1242.023438 L 662.839844 1242.238281 L 663.148438 1242.445312 L 663.457031 1242.65625 L 664.074219 1243.0625 L 664.378906 1243.265625 L 664.6875 1243.464844 L 664.996094 1243.660156 L 665.304688 1243.851562 L 665.609375 1244.042969 L 666.226562 1244.417969 L 666.84375 1244.785156 L 667.148438 1244.964844 L 667.457031 1245.140625 L 668.074219 1245.484375 L 668.378906 1245.65625 L 668.6875 1245.824219 L 668.996094 1245.988281 L 669.613281 1246.308594 L 669.917969 1246.46875 L 670.84375 1246.925781 L 671.148438 1247.074219 L 671.765625 1247.363281 L 672.074219 1247.503906 L 672.382812 1247.640625 L 672.6875 1247.777344 L 672.996094 1247.910156 L 673.613281 1248.167969 L 673.917969 1248.296875 L 674.84375 1248.660156 L 675.152344 1248.777344 L 675.457031 1248.890625 L 675.765625 1249.003906 L 676.074219 1249.113281 L 676.691406 1249.324219 L 676.996094 1249.425781 L 677.921875 1249.71875 L 678.226562 1249.808594 L 678.84375 1249.988281 L 679.152344 1250.074219 L 679.460938 1250.15625 L 679.765625 1250.238281 L 680.074219 1250.316406 L 680.691406 1250.464844 L 680.996094 1250.535156 L 681.921875 1250.734375 L 682.230469 1250.792969 L 682.535156 1250.851562 L 682.84375 1250.910156 L 683.152344 1250.964844 L 683.460938 1251.015625 L 683.765625 1251.066406 L 684.074219 1251.113281 L 684.691406 1251.199219 L 685 1251.238281 L 685.304688 1251.277344 L 685.613281 1251.308594 L 685.921875 1251.34375 L 686.230469 1251.371094 L 686.535156 1251.402344 L 687.152344 1251.449219 L 687.769531 1251.488281 L 688.074219 1251.503906 L 688.691406 1251.527344 L 689 1251.535156 L 689.304688 1251.542969 L 689.613281 1251.542969 L 689.921875 1251.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="1254.984375"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1254.984375"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="1254.984375"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="1254.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="1217.566406"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1217.566406"/>
+ <use xlink:href="#glyph0-3" x="510.926819" y="1217.566406"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="1217.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="1180.152344"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1180.152344"/>
+ <use xlink:href="#glyph0-4" x="510.926819" y="1180.152344"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="1180.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="1142.734375"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1142.734375"/>
+ <use xlink:href="#glyph0-5" x="510.926819" y="1142.734375"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="1142.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="502.925781" y="1105.320312"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1105.320312"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="1105.320312"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="1105.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 1251.546875 L 528.683594 1251.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 1214.128906 L 528.683594 1214.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 1176.714844 L 528.683594 1176.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 1139.296875 L 528.683594 1139.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 1101.882812 L 528.683594 1101.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 1263.28125 L 536.363281 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 1263.28125 L 574.753906 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 1263.28125 L 613.140625 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 1263.28125 L 651.53125 1259.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 1263.28125 L 689.921875 1259.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="527.027344" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="532.36293" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="535.028381" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="540.363968" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="565.417969" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="570.753555" y="1272.992188"/>
+ <use xlink:href="#glyph0-3" x="573.419006" y="1272.992188"/>
+ <use xlink:href="#glyph0-4" x="578.754593" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="603.804688" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="609.140274" y="1272.992188"/>
+ <use xlink:href="#glyph0-4" x="611.805725" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="617.141312" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="642.195312" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="647.530899" y="1272.992188"/>
+ <use xlink:href="#glyph0-5" x="650.19635" y="1272.992188"/>
+ <use xlink:href="#glyph0-4" x="655.531937" y="1272.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="680.585938" y="1272.992188"/>
+ <use xlink:href="#glyph0-2" x="685.921524" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="688.586975" y="1272.992188"/>
+ <use xlink:href="#glyph0-1" x="693.922562" y="1272.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="610.140625" y="1285.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="496.324219" y="1188.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="496.324219" y="1181.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="496.324219" y="1176.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="496.324219" y="1170.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-30" x="496.339844" y="1090.800781"/>
+ <use xlink:href="#glyph5-11" x="503.669922" y="1090.800781"/>
+ <use xlink:href="#glyph5-12" x="511.673828" y="1090.800781"/>
+ <use xlink:href="#glyph5-4" x="519.003906" y="1090.800781"/>
+ <use xlink:href="#glyph5-13" x="525.677734" y="1090.800781"/>
+ <use xlink:href="#glyph5-8" x="533.007812" y="1090.800781"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 0 1512 L 237.332031 1512 L 237.332031 1296 L 0 1296 Z "/>
+<g clip-path="url(#clip370)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 1512 L 237.332031 1512 L 237.332031 1296 L 0 1296 Z "/>
+</g>
+<g clip-path="url(#clip371)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 1475.027344 L 222.933594 1475.027344 L 222.933594 1310.398438 L 54.019531 1310.398438 Z "/>
+</g>
+<g clip-path="url(#clip372)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1448.839844 L 222.933594 1448.839844 "/>
+</g>
+<g clip-path="url(#clip373)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1411.421875 L 222.933594 1411.421875 "/>
+</g>
+<g clip-path="url(#clip374)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1374.007812 L 222.933594 1374.007812 "/>
+</g>
+<g clip-path="url(#clip375)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1336.589844 L 222.933594 1336.589844 "/>
+</g>
+<g clip-path="url(#clip376)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 80.890625 1475.027344 L 80.890625 1310.398438 "/>
+</g>
+<g clip-path="url(#clip377)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.28125 1475.027344 L 119.28125 1310.398438 "/>
+</g>
+<g clip-path="url(#clip378)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.671875 1475.027344 L 157.671875 1310.398438 "/>
+</g>
+<g clip-path="url(#clip379)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.058594 1475.027344 L 196.058594 1310.398438 "/>
+</g>
+<g clip-path="url(#clip380)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1467.546875 L 222.933594 1467.546875 "/>
+</g>
+<g clip-path="url(#clip381)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1430.128906 L 222.933594 1430.128906 "/>
+</g>
+<g clip-path="url(#clip382)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1392.714844 L 222.933594 1392.714844 "/>
+</g>
+<g clip-path="url(#clip383)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1355.296875 L 222.933594 1355.296875 "/>
+</g>
+<g clip-path="url(#clip384)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 1317.882812 L 222.933594 1317.882812 "/>
+</g>
+<g clip-path="url(#clip385)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 1475.027344 L 61.695312 1310.398438 "/>
+</g>
+<g clip-path="url(#clip386)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 1475.027344 L 100.085938 1310.398438 "/>
+</g>
+<g clip-path="url(#clip387)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 1475.027344 L 138.476562 1310.398438 "/>
+</g>
+<g clip-path="url(#clip388)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 1475.027344 L 176.867188 1310.398438 "/>
+</g>
+<g clip-path="url(#clip389)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 1475.027344 L 215.253906 1310.398438 "/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph6-1" x="74.902344" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph7-1" x="88.023438" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph6-2" x="101.144531" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph7-2" x="121.875" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph6-1" x="156.402344" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph8-1" x="164.277344" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph6-2" x="176.078125" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph8-2" x="190.25" y="1402.058594"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="1470.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="1470.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="1470.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="1470.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="1433.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="1433.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="1433.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="1433.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="1396.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="1396.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="1396.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="1396.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="1358.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="1358.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="1358.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="1358.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="1321.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="1321.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="1321.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="1321.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 1467.546875 L 54.019531 1467.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 1430.128906 L 54.019531 1430.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 1392.714844 L 54.019531 1392.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 1355.296875 L 54.019531 1355.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 1317.882812 L 54.019531 1317.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.695312 1479.28125 L 61.695312 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.085938 1479.28125 L 100.085938 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.476562 1479.28125 L 138.476562 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.867188 1479.28125 L 176.867188 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.253906 1479.28125 L 215.253906 1475.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="52.359375" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="57.694962" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="60.360413" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="65.695999" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="90.75" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="96.085587" y="1488.992188"/>
+ <use xlink:href="#glyph0-3" x="98.751038" y="1488.992188"/>
+ <use xlink:href="#glyph0-4" x="104.086624" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="129.140625" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="134.476212" y="1488.992188"/>
+ <use xlink:href="#glyph0-4" x="137.141663" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="142.477249" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="167.53125" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="172.866837" y="1488.992188"/>
+ <use xlink:href="#glyph0-5" x="175.532288" y="1488.992188"/>
+ <use xlink:href="#glyph0-4" x="180.867874" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="205.917969" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="211.253555" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="213.919006" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="219.254593" y="1488.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="135.476562" y="1501.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-2" x="21.683594" y="1402.375"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.683594" y="1399.042969"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.683594" y="1394.046875"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.683594" y="1388.046875"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-31" x="25.328125" y="1306.800781"/>
+ <use xlink:href="#glyph5-26" x="32.658203" y="1306.800781"/>
+ <use xlink:href="#glyph5-5" x="39.988281" y="1306.800781"/>
+ <use xlink:href="#glyph5-22" x="47.318359" y="1306.800781"/>
+ <use xlink:href="#glyph5-24" x="53.992188" y="1306.800781"/>
+ <use xlink:href="#glyph5-3" x="57.988281" y="1306.800781"/>
+ <use xlink:href="#glyph5-15" x="61.322266" y="1306.800781"/>
+ <use xlink:href="#glyph5-5" x="68.652344" y="1306.800781"/>
+</g>
+<g clip-path="url(#clip390)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 237.332031 1512 L 474.664062 1512 L 474.664062 1296 L 237.332031 1296 Z "/>
+</g>
+<g clip-path="url(#clip391)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.332031 1512 L 474.664062 1512 L 474.664062 1296 L 237.332031 1296 Z "/>
+</g>
+<g clip-path="url(#clip392)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 291.351562 1475.027344 L 460.265625 1475.027344 L 460.265625 1310.398438 L 291.351562 1310.398438 Z "/>
+</g>
+<g clip-path="url(#clip393)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1448.839844 L 460.265625 1448.839844 "/>
+</g>
+<g clip-path="url(#clip394)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1411.421875 L 460.265625 1411.421875 "/>
+</g>
+<g clip-path="url(#clip395)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1374.007812 L 460.265625 1374.007812 "/>
+</g>
+<g clip-path="url(#clip396)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1336.589844 L 460.265625 1336.589844 "/>
+</g>
+<g clip-path="url(#clip397)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.222656 1475.027344 L 318.222656 1310.398438 "/>
+</g>
+<g clip-path="url(#clip398)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.613281 1475.027344 L 356.613281 1310.398438 "/>
+</g>
+<g clip-path="url(#clip399)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 395.003906 1475.027344 L 395.003906 1310.398438 "/>
+</g>
+<g clip-path="url(#clip400)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 433.394531 1475.027344 L 433.394531 1310.398438 "/>
+</g>
+<g clip-path="url(#clip401)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1467.546875 L 460.265625 1467.546875 "/>
+</g>
+<g clip-path="url(#clip402)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1430.128906 L 460.265625 1430.128906 "/>
+</g>
+<g clip-path="url(#clip403)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1392.714844 L 460.265625 1392.714844 "/>
+</g>
+<g clip-path="url(#clip404)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1355.296875 L 460.265625 1355.296875 "/>
+</g>
+<g clip-path="url(#clip405)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.351562 1317.882812 L 460.265625 1317.882812 "/>
+</g>
+<g clip-path="url(#clip406)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 1475.027344 L 299.03125 1310.398438 "/>
+</g>
+<g clip-path="url(#clip407)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 1475.027344 L 337.417969 1310.398438 "/>
+</g>
+<g clip-path="url(#clip408)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 1475.027344 L 375.808594 1310.398438 "/>
+</g>
+<g clip-path="url(#clip409)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 1475.027344 L 414.199219 1310.398438 "/>
+</g>
+<g clip-path="url(#clip410)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 1475.027344 L 452.589844 1310.398438 "/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph9-1" x="312.132812" y="1456.953125"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph10-1" x="317.699219" y="1451.386719"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph9-2" x="326.042969" y="1443.042969"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph10-2" x="336.066406" y="1433.019531"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph11-1" x="349.046875" y="1420.039062"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph10-3" x="364.917969" y="1404.632812"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph12-1" x="389.914062" y="1414.882812"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph9-3" x="385.332031" y="1383.753906"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph12-1" x="399.023437" y="1377.402344"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph9-4" x="398.46875" y="1370.617188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph12-1" x="412.160156" y="1364.265625"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph11-2" x="415.316406" y="1353.769531"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph9-5" x="430.027344" y="1339.058594"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="1470.984375"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1470.984375"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="1470.984375"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="1470.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="1433.566406"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1433.566406"/>
+ <use xlink:href="#glyph0-3" x="273.594788" y="1433.566406"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="1433.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="1396.152344"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1396.152344"/>
+ <use xlink:href="#glyph0-4" x="273.594788" y="1396.152344"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="1396.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="265.59375" y="1358.734375"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1358.734375"/>
+ <use xlink:href="#glyph0-5" x="273.594788" y="1358.734375"/>
+ <use xlink:href="#glyph0-4" x="278.930374" y="1358.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="265.59375" y="1321.320312"/>
+ <use xlink:href="#glyph0-2" x="270.929337" y="1321.320312"/>
+ <use xlink:href="#glyph0-1" x="273.594788" y="1321.320312"/>
+ <use xlink:href="#glyph0-1" x="278.930374" y="1321.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 1467.546875 L 291.351562 1467.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 1430.128906 L 291.351562 1430.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 1392.714844 L 291.351562 1392.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 1355.296875 L 291.351562 1355.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.097656 1317.882812 L 291.351562 1317.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.03125 1479.28125 L 299.03125 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.417969 1479.28125 L 337.417969 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 375.808594 1479.28125 L 375.808594 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 414.199219 1479.28125 L 414.199219 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 452.589844 1479.28125 L 452.589844 1475.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="289.695312" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="295.030899" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="297.69635" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="303.031937" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="328.082031" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="333.417618" y="1488.992188"/>
+ <use xlink:href="#glyph0-3" x="336.083069" y="1488.992188"/>
+ <use xlink:href="#glyph0-4" x="341.418655" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="366.472656" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="371.808243" y="1488.992188"/>
+ <use xlink:href="#glyph0-4" x="374.473694" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="379.80928" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="404.863281" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="410.198868" y="1488.992188"/>
+ <use xlink:href="#glyph0-5" x="412.864319" y="1488.992188"/>
+ <use xlink:href="#glyph0-4" x="418.199905" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="443.253906" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="448.589493" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="451.254944" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="456.59053" y="1488.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="372.808594" y="1501.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-2" x="259.015625" y="1402.375"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="259.015625" y="1399.042969"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="259.015625" y="1394.046875"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="259.015625" y="1388.046875"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-32" x="255.339844" y="1306.800781"/>
+ <use xlink:href="#glyph5-3" x="262.669922" y="1306.800781"/>
+ <use xlink:href="#glyph5-5" x="266.003906" y="1306.800781"/>
+ <use xlink:href="#glyph5-8" x="273.333984" y="1306.800781"/>
+ <use xlink:href="#glyph5-4" x="280.007812" y="1306.800781"/>
+ <use xlink:href="#glyph5-2" x="286.681641" y="1306.800781"/>
+</g>
+<g clip-path="url(#clip411)" clip-rule="nonzero">
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 474.667969 1512 L 712 1512 L 712 1296 L 474.667969 1296 Z "/>
+</g>
+<g clip-path="url(#clip412)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 528.683594 1475.027344 L 697.597656 1475.027344 L 697.597656 1310.398438 L 528.683594 1310.398438 Z "/>
+</g>
+<g clip-path="url(#clip413)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1448.839844 L 697.601562 1448.839844 "/>
+</g>
+<g clip-path="url(#clip414)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1411.421875 L 697.601562 1411.421875 "/>
+</g>
+<g clip-path="url(#clip415)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1374.007812 L 697.601562 1374.007812 "/>
+</g>
+<g clip-path="url(#clip416)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1336.589844 L 697.601562 1336.589844 "/>
+</g>
+<g clip-path="url(#clip417)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 555.558594 1475.027344 L 555.558594 1310.398438 "/>
+</g>
+<g clip-path="url(#clip418)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 593.949219 1475.027344 L 593.949219 1310.398438 "/>
+</g>
+<g clip-path="url(#clip419)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 632.335938 1475.027344 L 632.335938 1310.398438 "/>
+</g>
+<g clip-path="url(#clip420)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 670.726562 1475.027344 L 670.726562 1310.398438 "/>
+</g>
+<g clip-path="url(#clip421)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1467.546875 L 697.601562 1467.546875 "/>
+</g>
+<g clip-path="url(#clip422)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1430.128906 L 697.601562 1430.128906 "/>
+</g>
+<g clip-path="url(#clip423)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1392.714844 L 697.601562 1392.714844 "/>
+</g>
+<g clip-path="url(#clip424)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1355.296875 L 697.601562 1355.296875 "/>
+</g>
+<g clip-path="url(#clip425)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 528.683594 1317.882812 L 697.601562 1317.882812 "/>
+</g>
+<g clip-path="url(#clip426)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 1475.027344 L 536.363281 1310.398438 "/>
+</g>
+<g clip-path="url(#clip427)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 1475.027344 L 574.753906 1310.398438 "/>
+</g>
+<g clip-path="url(#clip428)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 1475.027344 L 613.140625 1310.398438 "/>
+</g>
+<g clip-path="url(#clip429)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 1475.027344 L 651.53125 1310.398438 "/>
+</g>
+<g clip-path="url(#clip430)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 1475.027344 L 689.921875 1310.398438 "/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph6-1" x="568.894531" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph8-1" x="576.769531" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph6-2" x="588.570312" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph8-2" x="602.742188" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph7-3" x="621.101562" y="1402.058594"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph6-3" x="643.21875" y="1402.058594"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="1470.984375"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1470.984375"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="1470.984375"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="1470.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="1433.566406"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1433.566406"/>
+ <use xlink:href="#glyph0-3" x="510.926819" y="1433.566406"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="1433.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="1396.152344"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1396.152344"/>
+ <use xlink:href="#glyph0-4" x="510.926819" y="1396.152344"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="1396.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="502.925781" y="1358.734375"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1358.734375"/>
+ <use xlink:href="#glyph0-5" x="510.926819" y="1358.734375"/>
+ <use xlink:href="#glyph0-4" x="516.262405" y="1358.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="502.925781" y="1321.320312"/>
+ <use xlink:href="#glyph0-2" x="508.261368" y="1321.320312"/>
+ <use xlink:href="#glyph0-1" x="510.926819" y="1321.320312"/>
+ <use xlink:href="#glyph0-1" x="516.262405" y="1321.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 1467.546875 L 528.683594 1467.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 1430.128906 L 528.683594 1430.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 1392.714844 L 528.683594 1392.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 1355.296875 L 528.683594 1355.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 524.433594 1317.882812 L 528.683594 1317.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 536.363281 1479.28125 L 536.363281 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 574.753906 1479.28125 L 574.753906 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 613.140625 1479.28125 L 613.140625 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 651.53125 1479.28125 L 651.53125 1475.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.921875 1479.28125 L 689.921875 1475.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="527.027344" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="532.36293" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="535.028381" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="540.363968" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="565.417969" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="570.753555" y="1488.992188"/>
+ <use xlink:href="#glyph0-3" x="573.419006" y="1488.992188"/>
+ <use xlink:href="#glyph0-4" x="578.754593" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="603.804688" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="609.140274" y="1488.992188"/>
+ <use xlink:href="#glyph0-4" x="611.805725" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="617.141312" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="642.195312" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="647.530899" y="1488.992188"/>
+ <use xlink:href="#glyph0-5" x="650.19635" y="1488.992188"/>
+ <use xlink:href="#glyph0-4" x="655.531937" y="1488.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="680.585938" y="1488.992188"/>
+ <use xlink:href="#glyph0-2" x="685.921524" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="688.586975" y="1488.992188"/>
+ <use xlink:href="#glyph0-1" x="693.922562" y="1488.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="610.140625" y="1501.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-2" x="496.347656" y="1402.375"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="496.347656" y="1399.042969"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="496.347656" y="1394.046875"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="496.347656" y="1388.046875"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph5-17" x="500.667969" y="1306.800781"/>
+ <use xlink:href="#glyph5-15" x="509.333984" y="1306.800781"/>
+ <use xlink:href="#glyph5-5" x="516.664062" y="1306.800781"/>
+ <use xlink:href="#glyph5-18" x="523.994141" y="1306.800781"/>
+ <use xlink:href="#glyph5-24" x="530.667969" y="1306.800781"/>
+ <use xlink:href="#glyph5-4" x="534.664062" y="1306.800781"/>
+ <use xlink:href="#glyph5-5" x="541.337891" y="1306.800781"/>
+ <use xlink:href="#glyph5-24" x="548.667969" y="1306.800781"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/trapezoid.svg b/documentation/ui/figure/trapezoid.svg
new file mode 100644
index 0000000..4cd17a2
--- /dev/null
+++ b/documentation/ui/figure/trapezoid.svg
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 202 152 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 202 77 L 202 79 L 54.019531 79 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 202 40 L 202 41 L 54.019531 41 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 202.601562 171 L 202.601562 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 96 L 202.601562 96 L 202.601562 98 L 54.019531 98 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 58 L 202.601562 58 L 202.601562 60 L 54.019531 60 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface186">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.839844 L 201.601562 152.839844 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.421875 L 201.601562 115.421875 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 78.007812 L 201.601562 78.007812 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.589844 L 201.601562 40.589844 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.546875 L 201.601562 171.546875 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.128906 L 201.601562 134.128906 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.714844 L 201.601562 96.714844 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.296875 L 201.601562 59.296875 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.882812 L 201.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 60.996094 170.347656 L 61.265625 169.144531 L 61.53125 167.945312 L 62.878906 161.949219 L 63.144531 160.75 L 63.414062 159.550781 L 63.683594 158.347656 L 64.492188 154.75 L 64.757812 153.550781 L 65.566406 149.953125 L 65.835938 148.75 L 66.105469 147.550781 L 66.371094 146.351562 L 67.71875 140.355469 L 67.984375 139.152344 L 69.332031 133.15625 L 69.597656 131.957031 L 69.867188 130.757812 L 70.136719 129.554688 L 70.945312 125.957031 L 71.210938 124.757812 L 72.019531 121.160156 L 72.289062 119.957031 L 72.558594 118.757812 L 72.824219 117.558594 L 73.902344 112.761719 L 74.167969 111.5625 L 74.4375 110.359375 L 75.515625 105.5625 L 75.78125 104.363281 L 76.320312 101.964844 L 76.589844 100.761719 L 77.128906 98.363281 L 77.394531 97.164062 L 78.472656 92.367188 L 78.742188 91.164062 L 79.007812 89.964844 L 80.355469 83.96875 L 80.621094 82.769531 L 80.890625 81.566406 L 81.96875 76.769531 L 82.234375 75.570312 L 82.773438 73.171875 L 83.042969 71.96875 L 83.582031 69.570312 L 83.847656 68.371094 L 85.195312 62.375 L 85.460938 61.171875 L 86.808594 55.175781 L 87.074219 53.976562 L 87.34375 52.777344 L 87.613281 51.574219 L 88.152344 49.175781 L 88.417969 47.976562 L 89.496094 43.179688 L 89.765625 41.976562 L 90.03125 40.777344 L 91.378906 34.78125 L 91.644531 33.582031 L 91.914062 32.378906 L 92.992188 27.582031 L 93.257812 26.382812 L 93.796875 23.984375 L 94.066406 22.78125 L 94.335938 21.882812 L 161.28125 21.882812 L 161.550781 22.78125 L 161.820312 23.984375 L 162.628906 27.582031 L 162.894531 28.78125 L 163.703125 32.378906 L 163.972656 33.582031 L 164.242188 34.78125 L 164.507812 35.980469 L 165.855469 41.976562 L 166.121094 43.179688 L 167.46875 49.175781 L 167.734375 50.375 L 168.003906 51.574219 L 168.273438 52.777344 L 169.082031 56.375 L 169.347656 57.574219 L 170.15625 61.171875 L 170.425781 62.375 L 170.695312 63.574219 L 170.960938 64.773438 L 172.308594 70.769531 L 172.574219 71.96875 L 172.84375 73.171875 L 173.921875 77.96875 L 174.1875 79.167969 L 174.726562 81.566406 L 174.996094 82.769531 L 175.535156 85.167969 L 175.800781 86.367188 L 176.878906 91.164062 L 177.144531 92.367188 L 178.492188 98.363281 L 178.757812 99.5625 L 179.027344 100.761719 L 179.296875 101.964844 L 180.105469 105.5625 L 180.371094 106.761719 L 181.179688 110.359375 L 181.449219 111.5625 L 181.71875 112.761719 L 181.984375 113.960938 L 183.332031 119.957031 L 183.597656 121.160156 L 184.945312 127.15625 L 185.210938 128.355469 L 185.480469 129.554688 L 185.75 130.757812 L 186.558594 134.355469 L 186.824219 135.554688 L 187.632812 139.152344 L 187.902344 140.355469 L 188.171875 141.554688 L 188.4375 142.753906 L 189.785156 148.75 L 190.050781 149.953125 L 191.128906 154.75 L 191.394531 155.949219 L 191.933594 158.347656 L 192.203125 159.550781 L 192.742188 161.949219 L 193.007812 163.148438 L 194.355469 169.144531 L 194.621094 170.347656 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="100.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="100.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="100.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="100.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="62.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="62.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="62.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="62.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.546875 L 54.019531 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.128906 L 54.019531 134.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.714844 L 54.019531 96.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.296875 L 54.019531 59.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.882812 L 54.019531 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/triangle.svg b/documentation/ui/figure/triangle.svg
new file mode 100644
index 0000000..fd3e09d
--- /dev/null
+++ b/documentation/ui/figure/triangle.svg
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 202 152 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 202 77 L 202 79 L 54.019531 79 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 202 40 L 202 41 L 54.019531 41 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 202.601562 171 L 202.601562 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 96 L 202.601562 96 L 202.601562 98 L 54.019531 98 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 58 L 202.601562 58 L 202.601562 60 L 54.019531 60 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface181">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.800781 L 201.601562 152.800781 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.308594 L 201.601562 115.308594 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 77.820312 L 201.601562 77.820312 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.328125 L 201.601562 40.328125 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.546875 L 201.601562 171.546875 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.054688 L 201.601562 134.054688 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.5625 L 201.601562 96.5625 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.074219 L 201.601562 59.074219 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.582031 L 201.601562 21.582031 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 171.546875 L 61.265625 170.34375 L 61.53125 169.742188 L 62.070312 168.539062 L 62.339844 167.941406 L 62.878906 166.738281 L 63.144531 166.136719 L 64.222656 163.730469 L 64.492188 163.132812 L 64.757812 162.53125 L 66.105469 159.523438 L 66.371094 158.921875 L 66.640625 158.324219 L 67.71875 155.917969 L 67.984375 155.316406 L 68.253906 154.714844 L 68.523438 154.117188 L 69.332031 152.3125 L 69.597656 151.710938 L 70.40625 149.90625 L 70.675781 149.308594 L 70.945312 148.707031 L 71.210938 148.105469 L 72.558594 145.097656 L 72.824219 144.5 L 73.902344 142.09375 L 74.167969 141.492188 L 74.707031 140.289062 L 74.976562 139.691406 L 75.515625 138.488281 L 75.78125 137.886719 L 76.589844 136.082031 L 76.859375 135.484375 L 77.128906 134.882812 L 77.394531 134.28125 L 78.742188 131.273438 L 79.007812 130.675781 L 80.355469 127.667969 L 80.621094 127.066406 L 80.890625 126.464844 L 81.160156 125.867188 L 81.96875 124.0625 L 82.234375 123.460938 L 82.773438 122.257812 L 83.042969 121.660156 L 83.582031 120.457031 L 83.847656 119.855469 L 84.925781 117.449219 L 85.195312 116.851562 L 85.460938 116.25 L 86.808594 113.242188 L 87.074219 112.640625 L 87.34375 112.042969 L 88.152344 110.238281 L 88.417969 109.636719 L 88.957031 108.433594 L 89.226562 107.835938 L 89.765625 106.632812 L 90.03125 106.03125 L 91.109375 103.625 L 91.378906 103.027344 L 91.644531 102.425781 L 92.992188 99.417969 L 93.257812 98.816406 L 93.527344 98.21875 L 94.605469 95.8125 L 94.871094 95.210938 L 95.410156 94.007812 L 95.679688 93.410156 L 96.21875 92.207031 L 96.484375 91.605469 L 97.292969 89.800781 L 97.5625 89.203125 L 97.832031 88.601562 L 98.097656 88 L 99.445312 84.992188 L 99.710938 84.394531 L 101.058594 81.386719 L 101.324219 80.785156 L 101.59375 80.183594 L 101.863281 79.585938 L 102.402344 78.382812 L 102.667969 77.78125 L 103.476562 75.976562 L 103.746094 75.378906 L 104.015625 74.777344 L 104.28125 74.175781 L 105.628906 71.167969 L 105.894531 70.570312 L 107.242188 67.5625 L 107.507812 66.960938 L 107.777344 66.359375 L 108.046875 65.761719 L 108.855469 63.957031 L 109.121094 63.355469 L 109.660156 62.152344 L 109.929688 61.554688 L 110.46875 60.351562 L 110.734375 59.75 L 111.8125 57.34375 L 112.082031 56.746094 L 112.347656 56.144531 L 113.695312 53.136719 L 113.960938 52.535156 L 114.230469 51.9375 L 115.308594 49.53125 L 115.574219 48.929688 L 116.113281 47.726562 L 116.382812 47.128906 L 116.921875 45.925781 L 117.1875 45.324219 L 117.996094 43.519531 L 118.265625 42.921875 L 118.53125 42.320312 L 119.878906 39.3125 L 120.144531 38.710938 L 120.414062 38.113281 L 121.492188 35.707031 L 121.757812 35.105469 L 122.296875 33.902344 L 122.566406 33.304688 L 123.105469 32.101562 L 123.371094 31.5 L 124.179688 29.695312 L 124.449219 29.097656 L 124.71875 28.496094 L 124.984375 27.894531 L 126.332031 24.886719 L 126.597656 24.289062 L 127.675781 21.882812 L 127.945312 21.882812 L 128.210938 22.484375 L 129.019531 24.289062 L 129.289062 24.886719 L 129.558594 25.488281 L 129.824219 26.089844 L 131.171875 29.097656 L 131.4375 29.695312 L 132.515625 32.101562 L 132.78125 32.703125 L 133.050781 33.304688 L 133.320312 33.902344 L 134.128906 35.707031 L 134.394531 36.308594 L 135.203125 38.113281 L 135.472656 38.710938 L 135.742188 39.3125 L 136.007812 39.914062 L 137.355469 42.921875 L 137.621094 43.519531 L 138.96875 46.527344 L 139.234375 47.128906 L 139.503906 47.726562 L 140.582031 50.132812 L 140.847656 50.734375 L 141.386719 51.9375 L 141.65625 52.535156 L 142.195312 53.738281 L 142.460938 54.339844 L 143.539062 56.746094 L 143.808594 57.34375 L 144.074219 57.945312 L 145.421875 60.953125 L 145.6875 61.554688 L 145.957031 62.152344 L 146.765625 63.957031 L 147.03125 64.558594 L 147.570312 65.761719 L 147.839844 66.359375 L 148.378906 67.5625 L 148.644531 68.164062 L 149.722656 70.570312 L 149.992188 71.167969 L 150.257812 71.769531 L 151.605469 74.777344 L 151.871094 75.378906 L 152.140625 75.976562 L 153.21875 78.382812 L 153.484375 78.984375 L 153.753906 79.585938 L 154.023438 80.183594 L 154.832031 81.988281 L 155.097656 82.589844 L 155.90625 84.394531 L 156.175781 84.992188 L 156.445312 85.59375 L 156.710938 86.195312 L 158.058594 89.203125 L 158.324219 89.800781 L 159.671875 92.808594 L 159.9375 93.410156 L 160.207031 94.007812 L 161.015625 95.8125 L 161.28125 96.414062 L 162.089844 98.21875 L 162.359375 98.816406 L 162.628906 99.417969 L 162.894531 100.019531 L 164.242188 103.027344 L 164.507812 103.625 L 165.855469 106.632812 L 166.121094 107.234375 L 166.390625 107.835938 L 166.660156 108.433594 L 167.46875 110.238281 L 167.734375 110.839844 L 168.273438 112.042969 L 168.542969 112.640625 L 169.082031 113.84375 L 169.347656 114.445312 L 170.425781 116.851562 L 170.695312 117.449219 L 170.960938 118.050781 L 172.308594 121.058594 L 172.574219 121.660156 L 172.84375 122.257812 L 173.921875 124.664062 L 174.1875 125.265625 L 174.457031 125.867188 L 174.726562 126.464844 L 175.535156 128.269531 L 175.800781 128.871094 L 176.609375 130.675781 L 176.878906 131.273438 L 177.144531 131.875 L 178.492188 134.882812 L 178.757812 135.484375 L 179.027344 136.082031 L 180.105469 138.488281 L 180.371094 139.089844 L 180.640625 139.691406 L 180.910156 140.289062 L 181.71875 142.09375 L 181.984375 142.695312 L 182.792969 144.5 L 183.0625 145.097656 L 183.332031 145.699219 L 183.597656 146.300781 L 184.945312 149.308594 L 185.210938 149.90625 L 186.558594 152.914062 L 186.824219 153.515625 L 187.09375 154.117188 L 187.363281 154.714844 L 188.171875 156.519531 L 188.4375 157.121094 L 188.976562 158.324219 L 189.246094 158.921875 L 189.785156 160.125 L 190.050781 160.726562 L 191.128906 163.132812 L 191.394531 163.730469 L 192.742188 166.738281 L 193.007812 167.339844 L 193.277344 167.941406 L 193.546875 168.539062 L 194.355469 170.34375 L 194.621094 170.945312 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.492188"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.492188"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.492188"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.492188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="100"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="100"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="100"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="100"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="62.511719"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="62.511719"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="62.511719"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="62.511719"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.019531"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.019531"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.019531"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.019531"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.546875 L 54.019531 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.054688 L 54.019531 134.054688 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.5625 L 54.019531 96.5625 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.074219 L 54.019531 59.074219 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.582031 L 54.019531 21.582031 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/figure/zShape.svg b/documentation/ui/figure/zShape.svg
new file mode 100644
index 0000000..40b41b3
--- /dev/null
+++ b/documentation/ui/figure/zShape.svg
@@ -0,0 +1,260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="216pt" height="216pt" viewBox="0 0 216 216" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 0.8125 -1.015625 L 1.796875 -1.015625 L 1.796875 0 L 0.8125 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 1.1875 -1.703125 C 1.238281 -1.222656 1.460938 -0.894531 1.859375 -0.71875 C 2.054688 -0.625 2.285156 -0.578125 2.546875 -0.578125 C 3.046875 -0.578125 3.414062 -0.734375 3.65625 -1.046875 C 3.894531 -1.367188 4.015625 -1.722656 4.015625 -2.109375 C 4.015625 -2.578125 3.867188 -2.9375 3.578125 -3.1875 C 3.296875 -3.445312 2.957031 -3.578125 2.5625 -3.578125 C 2.269531 -3.578125 2.019531 -3.519531 1.8125 -3.40625 C 1.601562 -3.289062 1.425781 -3.132812 1.28125 -2.9375 L 0.546875 -2.984375 L 1.0625 -6.59375 L 4.546875 -6.59375 L 4.546875 -5.78125 L 1.703125 -5.78125 L 1.40625 -3.921875 C 1.5625 -4.035156 1.710938 -4.125 1.859375 -4.1875 C 2.109375 -4.289062 2.394531 -4.34375 2.71875 -4.34375 C 3.332031 -4.34375 3.851562 -4.140625 4.28125 -3.734375 C 4.707031 -3.335938 4.921875 -2.835938 4.921875 -2.234375 C 4.921875 -1.597656 4.722656 -1.035156 4.328125 -0.546875 C 3.941406 -0.0664062 3.320312 0.171875 2.46875 0.171875 C 1.914062 0.171875 1.429688 0.0195312 1.015625 -0.28125 C 0.597656 -0.59375 0.363281 -1.066406 0.3125 -1.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 5.015625 -6.59375 L 5.015625 -5.859375 C 4.796875 -5.648438 4.507812 -5.285156 4.15625 -4.765625 C 3.800781 -4.242188 3.484375 -3.6875 3.203125 -3.09375 C 2.929688 -2.507812 2.726562 -1.976562 2.59375 -1.5 C 2.5 -1.1875 2.378906 -0.6875 2.234375 0 L 1.3125 0 C 1.519531 -1.28125 1.988281 -2.554688 2.71875 -3.828125 C 3.144531 -4.566406 3.59375 -5.207031 4.0625 -5.75 L 0.34375 -5.75 L 0.34375 -6.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -1.828125 -2 C -1.265625 -2 -0.882812 -2.050781 -0.6875 -2.15625 C -0.5 -2.269531 -0.40625 -2.472656 -0.40625 -2.765625 C -0.40625 -3.222656 -0.726562 -3.601562 -1.375 -3.90625 C -2.019531 -4.207031 -2.835938 -4.359375 -3.828125 -4.359375 L -5.390625 -4.359375 L -5.390625 -5.46875 L -1.453125 -5.46875 C -1.097656 -5.46875 -0.832031 -5.503906 -0.65625 -5.578125 C -0.488281 -5.648438 -0.40625 -5.765625 -0.40625 -5.921875 C -0.40625 -6.085938 -0.488281 -6.210938 -0.65625 -6.296875 C -0.820312 -6.390625 -1.066406 -6.4375 -1.390625 -6.4375 L -1.5625 -6.4375 L -1.5625 -6.6875 C -1.53125 -6.6875 -1.492188 -6.6875 -1.453125 -6.6875 C -1.421875 -6.695312 -1.367188 -6.703125 -1.296875 -6.703125 C -0.847656 -6.703125 -0.5 -6.601562 -0.25 -6.40625 C -0.0078125 -6.21875 0.109375 -5.953125 0.109375 -5.609375 C 0.109375 -5.210938 -0.0625 -4.910156 -0.40625 -4.703125 C -0.75 -4.503906 -1.265625 -4.398438 -1.953125 -4.390625 C -1.242188 -4.210938 -0.722656 -3.96875 -0.390625 -3.65625 C -0.0546875 -3.351562 0.109375 -2.96875 0.109375 -2.5 C 0.109375 -2.144531 0.00390625 -1.851562 -0.203125 -1.625 C -0.410156 -1.394531 -0.71875 -1.234375 -1.125 -1.140625 C -1.050781 -1.128906 -0.941406 -1.125 -0.796875 -1.125 C -0.285156 -1.125 0.273438 -1.253906 0.890625 -1.515625 C 1.515625 -1.773438 1.882812 -1.90625 2 -1.90625 C 2.15625 -1.90625 2.28125 -1.859375 2.375 -1.765625 C 2.46875 -1.671875 2.515625 -1.546875 2.515625 -1.390625 C 2.515625 -1.210938 2.445312 -1.082031 2.3125 -1 C 2.175781 -0.914062 1.960938 -0.875 1.671875 -0.875 C 1.597656 -0.875 1.363281 -0.878906 0.96875 -0.890625 C 0.582031 -0.910156 0.226562 -0.921875 -0.09375 -0.921875 C -0.382812 -0.921875 -0.789062 -0.914062 -1.3125 -0.90625 C -1.832031 -0.894531 -2.210938 -0.890625 -2.453125 -0.890625 L -5.390625 -0.890625 L -5.390625 -2 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 2.65625 -0.75 L -10.578125 -0.75 L -10.578125 -8.25 L 2.65625 -8.25 Z M 1.8125 -1.59375 L 1.8125 -7.40625 L -9.734375 -7.40625 L -9.734375 -1.59375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M -10.546875 -4.296875 C -9.796875 -3.460938 -8.925781 -2.867188 -7.9375 -2.515625 C -6.945312 -2.171875 -5.617188 -2 -3.953125 -2 C -2.273438 -2 -0.945312 -2.171875 0.03125 -2.515625 C 1.019531 -2.867188 1.890625 -3.460938 2.640625 -4.296875 L 2.953125 -3.984375 C 2.191406 -2.953125 1.203125 -2.144531 -0.015625 -1.5625 C -1.234375 -0.976562 -2.546875 -0.6875 -3.953125 -0.6875 C -5.359375 -0.6875 -6.671875 -0.976562 -7.890625 -1.5625 C -9.117188 -2.15625 -10.109375 -2.960938 -10.859375 -3.984375 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M -10.546875 -0.703125 L -10.859375 -0.984375 C -10.109375 -2.023438 -9.117188 -2.835938 -7.890625 -3.421875 C -6.660156 -4.015625 -5.347656 -4.3125 -3.953125 -4.3125 C -2.546875 -4.3125 -1.234375 -4.015625 -0.015625 -3.421875 C 1.203125 -2.835938 2.191406 -2.023438 2.953125 -0.984375 L 2.640625 -0.703125 C 1.898438 -1.535156 1.035156 -2.125 0.046875 -2.46875 C -0.929688 -2.820312 -2.265625 -3 -3.953125 -3 C -5.628906 -3 -6.957031 -2.820312 -7.9375 -2.46875 C -8.925781 -2.125 -9.796875 -1.535156 -10.546875 -0.703125 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-0">
+<path style="stroke:none;" d="M 0 -0.390625 L -8.609375 -0.390625 L -8.609375 -7.21875 L 0 -7.21875 Z M -1.078125 -6.140625 L -7.53125 -6.140625 L -7.53125 -1.46875 L -1.078125 -1.46875 Z "/>
+</symbol>
+<symbol overflow="visible" id="glyph4-1">
+<path style="stroke:none;" d="M -6.28125 -0.171875 L -6.28125 -1.546875 L -4.0625 -2.984375 L -6.28125 -4.4375 L -6.25 -5.71875 L -3.21875 -3.609375 L 0 -5.8125 L 0 -4.46875 L -2.359375 -2.90625 L 0 -1.40625 L 0 -0.0625 L -3.21875 -2.28125 Z "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 54.019531 14.398438 L 202 14.398438 L 202 180 L 54.019531 180 Z "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 54.019531 152 L 202 152 L 202 154 L 54.019531 154 Z "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 54.019531 115 L 202 115 L 202 116 L 54.019531 116 Z "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 54.019531 77 L 202 77 L 202 79 L 54.019531 79 Z "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 54.019531 40 L 202 40 L 202 41 L 54.019531 41 Z "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 77 14.398438 L 78 14.398438 L 78 180 L 77 180 Z "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 110 14.398438 L 112 14.398438 L 112 180 L 110 180 Z "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 144 14.398438 L 145 14.398438 L 145 180 L 144 180 Z "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 177 14.398438 L 179 14.398438 L 179 180 L 177 180 Z "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 54.019531 171 L 202.601562 171 L 202.601562 173 L 54.019531 173 Z "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 54.019531 133 L 202.601562 133 L 202.601562 135 L 54.019531 135 Z "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 54.019531 96 L 202.601562 96 L 202.601562 98 L 54.019531 98 Z "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 54.019531 58 L 202.601562 58 L 202.601562 60 L 54.019531 60 Z "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 54.019531 21 L 202.601562 21 L 202.601562 23 L 54.019531 23 Z "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 60 14.398438 L 62 14.398438 L 62 180 L 60 180 Z "/>
+</clipPath>
+<clipPath id="clip16">
+ <path d="M 93 14.398438 L 95 14.398438 L 95 180 L 93 180 Z "/>
+</clipPath>
+<clipPath id="clip17">
+ <path d="M 127 14.398438 L 129 14.398438 L 129 180 L 127 180 Z "/>
+</clipPath>
+<clipPath id="clip18">
+ <path d="M 160 14.398438 L 162 14.398438 L 162 180 L 160 180 Z "/>
+</clipPath>
+<clipPath id="clip19">
+ <path d="M 194 14.398438 L 196 14.398438 L 196 180 L 194 180 Z "/>
+</clipPath>
+</defs>
+<g id="surface266">
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="216" height="216" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 216 L 216 216 L 216 0 L 0 0 Z "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 54.019531 179.027344 L 201.601562 179.027344 L 201.601562 14.398438 L 54.019531 14.398438 Z "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 152.839844 L 201.601562 152.839844 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 115.421875 L 201.601562 115.421875 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 78.007812 L 201.601562 78.007812 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 40.589844 L 201.601562 40.589844 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 77.496094 179.027344 L 77.496094 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.039062 179.027344 L 111.039062 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.578125 179.027344 L 144.578125 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.121094 179.027344 L 178.121094 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 171.546875 L 201.601562 171.546875 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 134.128906 L 201.601562 134.128906 "/>
+</g>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 96.714844 L 201.601562 96.714844 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 59.296875 L 201.601562 59.296875 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 54.019531 21.882812 L 201.601562 21.882812 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 179.027344 L 60.726562 14.398438 "/>
+</g>
+<g clip-path="url(#clip16)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 179.027344 L 94.269531 14.398438 "/>
+</g>
+<g clip-path="url(#clip17)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 179.027344 L 127.808594 14.398438 "/>
+</g>
+<g clip-path="url(#clip18)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 179.027344 L 161.351562 14.398438 "/>
+</g>
+<g clip-path="url(#clip19)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 179.027344 L 194.890625 14.398438 "/>
+</g>
+<path style="fill:none;stroke-width:7.440945;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:1;" d="M 60.726562 21.882812 L 60.996094 21.882812 L 61.265625 21.886719 L 61.53125 21.894531 L 61.800781 21.902344 L 62.339844 21.925781 L 62.609375 21.941406 L 62.878906 21.960938 L 63.144531 21.980469 L 63.683594 22.027344 L 63.953125 22.054688 L 64.492188 22.117188 L 64.757812 22.152344 L 65.296875 22.230469 L 65.835938 22.316406 L 66.105469 22.363281 L 66.371094 22.414062 L 66.640625 22.464844 L 67.179688 22.574219 L 67.449219 22.632812 L 67.71875 22.695312 L 67.984375 22.757812 L 68.253906 22.824219 L 68.792969 22.964844 L 69.332031 23.113281 L 69.597656 23.191406 L 70.136719 23.355469 L 70.675781 23.527344 L 70.945312 23.617188 L 71.210938 23.710938 L 71.480469 23.804688 L 71.75 23.902344 L 72.289062 24.105469 L 72.558594 24.210938 L 72.824219 24.316406 L 73.09375 24.425781 L 73.632812 24.652344 L 73.902344 24.769531 L 74.167969 24.886719 L 74.4375 25.011719 L 74.707031 25.132812 L 74.976562 25.261719 L 75.246094 25.386719 L 75.515625 25.519531 L 75.78125 25.652344 L 76.320312 25.925781 L 76.589844 26.066406 L 77.128906 26.355469 L 77.394531 26.503906 L 77.664062 26.652344 L 77.933594 26.808594 L 78.203125 26.960938 L 78.742188 27.28125 L 79.007812 27.441406 L 79.277344 27.605469 L 79.816406 27.941406 L 80.085938 28.113281 L 80.355469 28.289062 L 80.621094 28.464844 L 80.890625 28.644531 L 81.699219 29.195312 L 81.96875 29.386719 L 82.234375 29.578125 L 82.503906 29.769531 L 82.773438 29.964844 L 83.3125 30.363281 L 83.582031 30.566406 L 83.847656 30.773438 L 84.117188 30.980469 L 84.386719 31.191406 L 85.195312 31.835938 L 85.460938 32.058594 L 86 32.503906 L 86.269531 32.730469 L 86.539062 32.960938 L 86.808594 33.195312 L 87.074219 33.429688 L 87.34375 33.664062 L 87.613281 33.902344 L 87.882812 34.144531 L 88.152344 34.390625 L 88.417969 34.636719 L 88.957031 35.136719 L 89.496094 35.644531 L 89.765625 35.90625 L 90.03125 36.164062 L 90.839844 36.960938 L 91.109375 37.234375 L 91.378906 37.503906 L 91.644531 37.78125 L 91.914062 38.058594 L 92.453125 38.621094 L 92.722656 38.90625 L 92.992188 39.195312 L 93.257812 39.484375 L 93.527344 39.773438 L 94.066406 40.367188 L 94.605469 40.96875 L 94.871094 41.273438 L 95.140625 41.578125 L 95.410156 41.886719 L 95.949219 42.511719 L 96.21875 42.828125 L 96.484375 43.148438 L 96.753906 43.46875 L 97.292969 44.117188 L 97.5625 44.445312 L 97.832031 44.777344 L 98.097656 45.109375 L 98.636719 45.78125 L 98.90625 46.121094 L 99.445312 46.808594 L 99.710938 47.15625 L 100.25 47.859375 L 100.789062 48.570312 L 101.058594 48.929688 L 101.324219 49.292969 L 101.59375 49.65625 L 102.132812 50.390625 L 102.402344 50.765625 L 102.667969 51.136719 L 102.9375 51.515625 L 103.207031 51.890625 L 103.746094 52.65625 L 104.015625 53.042969 L 104.28125 53.429688 L 104.550781 53.820312 L 105.089844 54.609375 L 105.359375 55.007812 L 105.628906 55.410156 L 105.894531 55.8125 L 106.164062 56.214844 L 106.972656 57.445312 L 107.242188 57.859375 L 107.507812 58.277344 L 108.316406 59.542969 L 108.585938 59.96875 L 108.855469 60.398438 L 109.121094 60.832031 L 109.390625 61.265625 L 109.929688 62.140625 L 110.46875 63.023438 L 110.734375 63.472656 L 111.003906 63.917969 L 111.8125 65.277344 L 112.082031 65.738281 L 112.347656 66.199219 L 112.617188 66.660156 L 112.886719 67.125 L 113.425781 68.0625 L 113.695312 68.535156 L 113.960938 69.011719 L 114.230469 69.488281 L 114.769531 70.449219 L 115.039062 70.933594 L 115.308594 71.421875 L 115.574219 71.910156 L 116.113281 72.894531 L 116.382812 73.390625 L 116.921875 74.390625 L 117.1875 74.894531 L 117.726562 75.910156 L 118.265625 76.933594 L 118.53125 77.449219 L 119.070312 78.488281 L 119.339844 79.011719 L 119.878906 80.066406 L 120.144531 80.59375 L 120.953125 82.199219 L 121.222656 82.738281 L 121.492188 83.28125 L 121.757812 83.828125 L 122.296875 84.921875 L 122.566406 85.472656 L 122.835938 86.027344 L 123.105469 86.585938 L 123.371094 87.144531 L 123.910156 88.269531 L 124.449219 89.402344 L 124.71875 89.976562 L 124.984375 90.546875 L 125.523438 91.703125 L 126.0625 92.867188 L 126.332031 93.453125 L 126.597656 94.039062 L 126.867188 94.628906 L 127.40625 95.816406 L 127.675781 96.414062 L 127.945312 97.015625 L 128.210938 97.613281 L 128.75 98.800781 L 129.019531 99.390625 L 129.558594 100.5625 L 129.824219 101.144531 L 130.09375 101.726562 L 130.363281 102.304688 L 130.902344 103.453125 L 131.171875 104.023438 L 131.4375 104.59375 L 131.707031 105.160156 L 132.246094 106.285156 L 132.515625 106.84375 L 132.78125 107.398438 L 133.320312 108.507812 L 134.128906 110.148438 L 134.394531 110.6875 L 134.664062 111.230469 L 135.203125 112.300781 L 135.742188 113.363281 L 136.007812 113.890625 L 136.277344 114.417969 L 136.546875 114.941406 L 137.085938 115.980469 L 137.355469 116.496094 L 137.621094 117.007812 L 137.890625 117.519531 L 138.160156 118.027344 L 138.96875 119.539062 L 139.234375 120.035156 L 139.503906 120.535156 L 140.042969 121.519531 L 140.582031 122.496094 L 140.847656 122.980469 L 141.386719 123.941406 L 141.925781 124.894531 L 142.195312 125.367188 L 142.460938 125.835938 L 142.730469 126.304688 L 143 126.769531 L 143.539062 127.691406 L 143.808594 128.148438 L 144.074219 128.605469 L 144.34375 129.058594 L 144.882812 129.957031 L 145.421875 130.847656 L 145.6875 131.289062 L 146.226562 132.164062 L 146.496094 132.597656 L 146.765625 133.027344 L 147.03125 133.457031 L 147.300781 133.886719 L 148.109375 135.152344 L 148.378906 135.566406 L 148.644531 135.984375 L 149.183594 136.804688 L 149.722656 137.617188 L 149.992188 138.019531 L 150.257812 138.421875 L 150.527344 138.820312 L 150.796875 139.214844 L 151.605469 140.386719 L 151.871094 140.773438 L 152.140625 141.15625 L 152.949219 142.292969 L 153.21875 142.664062 L 153.484375 143.035156 L 153.753906 143.40625 L 154.023438 143.773438 L 154.5625 144.5 L 154.832031 144.859375 L 155.097656 145.214844 L 155.367188 145.570312 L 155.90625 146.273438 L 156.175781 146.617188 L 156.445312 146.964844 L 156.710938 147.304688 L 156.980469 147.648438 L 157.519531 148.320312 L 158.058594 148.984375 L 158.324219 149.3125 L 158.863281 149.960938 L 159.402344 150.601562 L 159.671875 150.917969 L 159.9375 151.230469 L 160.207031 151.542969 L 160.476562 151.851562 L 161.015625 152.460938 L 161.28125 152.761719 L 161.550781 153.0625 L 161.820312 153.359375 L 162.359375 153.945312 L 162.628906 154.234375 L 162.894531 154.523438 L 163.164062 154.808594 L 163.703125 155.371094 L 163.972656 155.648438 L 164.242188 155.921875 L 164.507812 156.195312 L 165.046875 156.734375 L 165.316406 157 L 165.855469 157.523438 L 166.121094 157.78125 L 166.390625 158.039062 L 166.660156 158.292969 L 167.199219 158.792969 L 167.46875 159.039062 L 167.734375 159.28125 L 168.273438 159.765625 L 169.082031 160.46875 L 169.347656 160.695312 L 169.617188 160.925781 L 170.15625 161.371094 L 170.695312 161.808594 L 170.960938 162.023438 L 171.230469 162.238281 L 171.5 162.445312 L 171.769531 162.65625 L 172.308594 163.0625 L 172.574219 163.265625 L 172.84375 163.464844 L 173.113281 163.660156 L 173.652344 164.042969 L 173.921875 164.230469 L 174.1875 164.417969 L 174.726562 164.785156 L 174.996094 164.964844 L 175.265625 165.140625 L 175.535156 165.3125 L 175.800781 165.484375 L 176.070312 165.65625 L 176.339844 165.824219 L 176.609375 165.988281 L 176.878906 166.148438 L 177.144531 166.308594 L 177.414062 166.46875 L 178.222656 166.925781 L 178.492188 167.074219 L 178.757812 167.21875 L 179.027344 167.363281 L 179.296875 167.503906 L 179.835938 167.777344 L 180.105469 167.910156 L 180.371094 168.039062 L 180.910156 168.296875 L 181.71875 168.660156 L 181.984375 168.777344 L 182.523438 169.003906 L 182.792969 169.113281 L 183.332031 169.324219 L 183.597656 169.425781 L 184.40625 169.71875 L 184.945312 169.898438 L 185.210938 169.988281 L 185.480469 170.074219 L 186.019531 170.238281 L 186.289062 170.316406 L 186.558594 170.390625 L 186.824219 170.464844 L 187.09375 170.535156 L 187.902344 170.734375 L 188.171875 170.792969 L 188.4375 170.851562 L 188.707031 170.910156 L 188.976562 170.964844 L 189.515625 171.066406 L 189.785156 171.113281 L 190.050781 171.15625 L 190.320312 171.199219 L 190.859375 171.277344 L 191.128906 171.308594 L 191.394531 171.34375 L 191.664062 171.371094 L 191.933594 171.402344 L 192.472656 171.449219 L 192.742188 171.46875 L 193.007812 171.488281 L 193.277344 171.503906 L 193.816406 171.527344 L 194.355469 171.542969 L 194.621094 171.542969 L 194.890625 171.546875 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="174.984375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="174.984375"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="174.984375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="137.566406"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="137.566406"/>
+ <use xlink:href="#glyph0-3" x="36.25885" y="137.566406"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="137.566406"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="100.152344"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="100.152344"/>
+ <use xlink:href="#glyph0-4" x="36.25885" y="100.152344"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="100.152344"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="28.257812" y="62.734375"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="62.734375"/>
+ <use xlink:href="#glyph0-5" x="36.25885" y="62.734375"/>
+ <use xlink:href="#glyph0-4" x="41.594437" y="62.734375"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="28.257812" y="25.320312"/>
+ <use xlink:href="#glyph0-2" x="33.593399" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="36.25885" y="25.320312"/>
+ <use xlink:href="#glyph0-1" x="41.594437" y="25.320312"/>
+</g>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 171.546875 L 54.019531 171.546875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 134.128906 L 54.019531 134.128906 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 96.714844 L 54.019531 96.714844 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 59.296875 L 54.019531 59.296875 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 49.765625 21.882812 L 54.019531 21.882812 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 60.726562 183.28125 L 60.726562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 94.269531 183.28125 L 94.269531 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.808594 183.28125 L 127.808594 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.351562 183.28125 L 161.351562 179.027344 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.890625 183.28125 L 194.890625 179.027344 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="51.390625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="56.726212" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="59.391663" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="64.727249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="84.933594" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="90.26918" y="192.992188"/>
+ <use xlink:href="#glyph0-3" x="92.934631" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="98.270218" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="118.472656" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="123.808243" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="126.473694" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="131.80928" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="152.015625" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="157.351212" y="192.992188"/>
+ <use xlink:href="#glyph0-5" x="160.016663" y="192.992188"/>
+ <use xlink:href="#glyph0-4" x="165.352249" y="192.992188"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-6" x="185.554688" y="192.992188"/>
+ <use xlink:href="#glyph0-2" x="190.890274" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="193.555725" y="192.992188"/>
+ <use xlink:href="#glyph0-1" x="198.891312" y="192.992188"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="124.808594" y="205.199219"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="21.660156" y="108.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="21.660156" y="101.210938"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph4-1" x="21.660156" y="96.214844"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-2" x="21.660156" y="90.214844"/>
+</g>
+</g>
+</svg>
diff --git a/documentation/ui/footer.html b/documentation/ui/footer.html
new file mode 100644
index 0000000..2a56075
--- /dev/null
+++ b/documentation/ui/footer.html
@@ -0,0 +1,22 @@
+<!-- HTML footer for doxygen 1.8.11-->
+<!-- start footer part -->
+<!--BEGIN GENERATE_TREEVIEW-->
+<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
+ <ul>
+ $navpath
+ <li>Copyright © 2010-2017 FuzzyLite Limited. All rights reserved.</li>
+ <li class="footer">$generatedby
+ <a href="http://www.doxygen.org/index.html">
+ <img class="footer" src="$relpath^doxygen.png" alt="doxygen"/></a> $doxygenversion </li>
+ </ul>
+</div>
+<!--END GENERATE_TREEVIEW-->
+<!--BEGIN !GENERATE_TREEVIEW-->
+<hr class="footer"/><address class="footer"><small>
+$generatedby &#160;<a href="http://www.doxygen.org/index.html">
+<img class="footer" src="$relpath^doxygen.png" alt="doxygen"/>
+</a> $doxygenversion
+</small></address>
+<!--END !GENERATE_TREEVIEW-->
+</body>
+</html>
diff --git a/documentation/ui/header.html b/documentation/ui/header.html
new file mode 100644
index 0000000..a8b2bb9
--- /dev/null
+++ b/documentation/ui/header.html
@@ -0,0 +1,77 @@
+<!-- HTML header for doxygen 1.8.11-->
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
+<meta http-equiv="X-UA-Compatible" content="IE=9"/>
+<meta name="generator" content="Doxygen $doxygenversion"/>
+<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
+<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
+
+<link rel="apple-touch-icon" sizes="57x57" href="$relpath^apple-touch-icon-57x57.png">
+<link rel="apple-touch-icon" sizes="60x60" href="$relpath^apple-touch-icon-60x60.png">
+<link rel="apple-touch-icon" sizes="72x72" href="$relpath^apple-touch-icon-72x72.png">
+<link rel="apple-touch-icon" sizes="76x76" href="$relpath^apple-touch-icon-76x76.png">
+<link rel="apple-touch-icon" sizes="114x114" href="$relpath^apple-touch-icon-114x114.png">
+<link rel="apple-touch-icon" sizes="120x120" href="$relpath^apple-touch-icon-120x120.png">
+<link rel="apple-touch-icon" sizes="144x144" href="$relpath^apple-touch-icon-144x144.png">
+<link rel="apple-touch-icon" sizes="152x152" href="$relpath^apple-touch-icon-152x152.png">
+<link rel="apple-touch-icon" sizes="180x180" href="$relpath^apple-touch-icon-180x180.png">
+<link rel="icon" type="image/png" href="$relpath^favicon-32x32.png" sizes="32x32">
+<link rel="icon" type="image/png" href="$relpath^android-chrome-192x192.png" sizes="192x192">
+<link rel="icon" type="image/png" href="$relpath^favicon-96x96.png" sizes="96x96">
+<link rel="icon" type="image/png" href="$relpath^favicon-16x16.png" sizes="16x16">
+<link rel="manifest" href="$relpath^manifest.json">
+<link rel="mask-icon" href="$relpath^safari-pinned-tab.svg" color="#00d200">
+<meta name="msapplication-TileColor" content="#da532c">
+<meta name="msapplication-TileImage" content="$relpath^mstile-144x144.png">
+<meta name="theme-color" content="#ffffff">
+<link rel="shortcut icon" href="$relpath^favicon.ico" type="image/x-icon" />
+
+
+<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/>
+<script type="text/javascript" src="$relpath^jquery.js"></script>
+<script type="text/javascript" src="$relpath^dynsections.js"></script>
+$treeview
+$search
+$mathjax
+<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
+$extrastylesheet
+</head>
+<body>
+<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
+
+<!--BEGIN TITLEAREA-->
+<div id="titlearea">
+<table cellspacing="0" cellpadding="0">
+ <tbody>
+ <tr style="height: 56px;">
+ <!--BEGIN PROJECT_LOGO-->
+ <td id="projectlogo"><a href="http://www.fuzzylite.com/" title="http://www.fuzzylite.com" target="_blank"><img src="$relpath^$projectlogo"/></a></td>
+ <!--END PROJECT_LOGO-->
+ <!--BEGIN PROJECT_NAME-->
+ <td id="projectalign" style="padding-left: 0.5em;">
+ <div id="projectname">$projectname
+ <!--BEGIN PROJECT_NUMBER-->&#160;<span id="projectnumber">$projectnumber</span><!--END PROJECT_NUMBER-->
+ </div>
+ <!--BEGIN PROJECT_BRIEF--><div id="projectbrief">$projectbrief</div><!--END PROJECT_BRIEF-->
+ </td>
+ <!--END PROJECT_NAME-->
+ <!--BEGIN !PROJECT_NAME-->
+ <!--BEGIN PROJECT_BRIEF-->
+ <td style="padding-left: 0.5em;">
+ <div id="projectbrief">$projectbrief</div>
+ </td>
+ <!--END PROJECT_BRIEF-->
+ <!--END !PROJECT_NAME-->
+ <!--BEGIN DISABLE_INDEX-->
+ <!--BEGIN SEARCHENGINE-->
+ <td>$searchbox</td>
+ <!--END SEARCHENGINE-->
+ <!--END DISABLE_INDEX-->
+ </tr>
+ </tbody>
+</table>
+</div>
+<!--END TITLEAREA-->
+<!-- end header part -->
diff --git a/documentation/ui/image/android-chrome-144x144.png b/documentation/ui/image/android-chrome-144x144.png
new file mode 100644
index 0000000..13a60a8
--- /dev/null
+++ b/documentation/ui/image/android-chrome-144x144.png
Binary files differ
diff --git a/documentation/ui/image/android-chrome-192x192.png b/documentation/ui/image/android-chrome-192x192.png
new file mode 100644
index 0000000..8507762
--- /dev/null
+++ b/documentation/ui/image/android-chrome-192x192.png
Binary files differ
diff --git a/documentation/ui/image/android-chrome-36x36.png b/documentation/ui/image/android-chrome-36x36.png
new file mode 100644
index 0000000..ad8e7d1
--- /dev/null
+++ b/documentation/ui/image/android-chrome-36x36.png
Binary files differ
diff --git a/documentation/ui/image/android-chrome-48x48.png b/documentation/ui/image/android-chrome-48x48.png
new file mode 100644
index 0000000..94b2dfe
--- /dev/null
+++ b/documentation/ui/image/android-chrome-48x48.png
Binary files differ
diff --git a/documentation/ui/image/android-chrome-72x72.png b/documentation/ui/image/android-chrome-72x72.png
new file mode 100644
index 0000000..8f90b01
--- /dev/null
+++ b/documentation/ui/image/android-chrome-72x72.png
Binary files differ
diff --git a/documentation/ui/image/android-chrome-96x96.png b/documentation/ui/image/android-chrome-96x96.png
new file mode 100644
index 0000000..7b29762
--- /dev/null
+++ b/documentation/ui/image/android-chrome-96x96.png
Binary files differ
diff --git a/documentation/ui/image/apple-touch-icon-114x114.png b/documentation/ui/image/apple-touch-icon-114x114.png
new file mode 100644
index 0000000..0b70f67
--- /dev/null
+++ b/documentation/ui/image/apple-touch-icon-114x114.png
Binary files differ
diff --git a/documentation/ui/image/apple-touch-icon-120x120.png b/documentation/ui/image/apple-touch-icon-120x120.png
new file mode 100644
index 0000000..b43d10e
--- /dev/null
+++ b/documentation/ui/image/apple-touch-icon-120x120.png
Binary files differ
diff --git a/documentation/ui/image/apple-touch-icon-144x144.png b/documentation/ui/image/apple-touch-icon-144x144.png
new file mode 100644
index 0000000..07a81e6
--- /dev/null
+++ b/documentation/ui/image/apple-touch-icon-144x144.png
Binary files differ
diff --git a/documentation/ui/image/apple-touch-icon-152x152.png b/documentation/ui/image/apple-touch-icon-152x152.png
new file mode 100644
index 0000000..7900187
--- /dev/null
+++ b/documentation/ui/image/apple-touch-icon-152x152.png
Binary files differ
diff --git a/documentation/ui/image/apple-touch-icon-180x180.png b/documentation/ui/image/apple-touch-icon-180x180.png
new file mode 100644
index 0000000..3d9e74f
--- /dev/null
+++ b/documentation/ui/image/apple-touch-icon-180x180.png
Binary files differ
diff --git a/documentation/ui/image/apple-touch-icon-57x57.png b/documentation/ui/image/apple-touch-icon-57x57.png
new file mode 100644
index 0000000..cf40432
--- /dev/null
+++ b/documentation/ui/image/apple-touch-icon-57x57.png
Binary files differ
diff --git a/documentation/ui/image/apple-touch-icon-60x60.png b/documentation/ui/image/apple-touch-icon-60x60.png
new file mode 100644
index 0000000..2f208d1
--- /dev/null
+++ b/documentation/ui/image/apple-touch-icon-60x60.png
Binary files differ
diff --git a/documentation/ui/image/apple-touch-icon-72x72.png b/documentation/ui/image/apple-touch-icon-72x72.png
new file mode 100644
index 0000000..2e8f273
--- /dev/null
+++ b/documentation/ui/image/apple-touch-icon-72x72.png
Binary files differ
diff --git a/documentation/ui/image/apple-touch-icon-76x76.png b/documentation/ui/image/apple-touch-icon-76x76.png
new file mode 100644
index 0000000..a10c74f
--- /dev/null
+++ b/documentation/ui/image/apple-touch-icon-76x76.png
Binary files differ
diff --git a/documentation/ui/image/apple-touch-icon-precomposed.png b/documentation/ui/image/apple-touch-icon-precomposed.png
new file mode 100644
index 0000000..9cdd1f0
--- /dev/null
+++ b/documentation/ui/image/apple-touch-icon-precomposed.png
Binary files differ
diff --git a/documentation/ui/image/apple-touch-icon.png b/documentation/ui/image/apple-touch-icon.png
new file mode 100644
index 0000000..3d9e74f
--- /dev/null
+++ b/documentation/ui/image/apple-touch-icon.png
Binary files differ
diff --git a/documentation/ui/image/browserconfig.xml b/documentation/ui/image/browserconfig.xml
new file mode 100644
index 0000000..65380f3
--- /dev/null
+++ b/documentation/ui/image/browserconfig.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<browserconfig>
+ <msapplication>
+ <tile>
+ <square70x70logo src="/mstile-70x70.png"/>
+ <square150x150logo src="/mstile-150x150.png"/>
+ <square310x310logo src="/mstile-310x310.png"/>
+ <wide310x150logo src="/mstile-310x150.png"/>
+ <TileColor>#da532c</TileColor>
+ </tile>
+ </msapplication>
+</browserconfig>
diff --git a/documentation/ui/image/favicon-16x16.png b/documentation/ui/image/favicon-16x16.png
new file mode 100644
index 0000000..3e95d61
--- /dev/null
+++ b/documentation/ui/image/favicon-16x16.png
Binary files differ
diff --git a/documentation/ui/image/favicon-32x32.png b/documentation/ui/image/favicon-32x32.png
new file mode 100644
index 0000000..d7db569
--- /dev/null
+++ b/documentation/ui/image/favicon-32x32.png
Binary files differ
diff --git a/documentation/ui/image/favicon-96x96.png b/documentation/ui/image/favicon-96x96.png
new file mode 100644
index 0000000..7b29762
--- /dev/null
+++ b/documentation/ui/image/favicon-96x96.png
Binary files differ
diff --git a/documentation/ui/image/favicon.ico b/documentation/ui/image/favicon.ico
new file mode 100644
index 0000000..c2e7915
--- /dev/null
+++ b/documentation/ui/image/favicon.ico
Binary files differ
diff --git a/documentation/ui/image/manifest.json b/documentation/ui/image/manifest.json
new file mode 100644
index 0000000..b595012
--- /dev/null
+++ b/documentation/ui/image/manifest.json
@@ -0,0 +1,41 @@
+{
+ "name": "fuzzylite",
+ "icons": [
+ {
+ "src": "\/android-chrome-36x36.png",
+ "sizes": "36x36",
+ "type": "image\/png",
+ "density": "0.75"
+ },
+ {
+ "src": "\/android-chrome-48x48.png",
+ "sizes": "48x48",
+ "type": "image\/png",
+ "density": "1.0"
+ },
+ {
+ "src": "\/android-chrome-72x72.png",
+ "sizes": "72x72",
+ "type": "image\/png",
+ "density": "1.5"
+ },
+ {
+ "src": "\/android-chrome-96x96.png",
+ "sizes": "96x96",
+ "type": "image\/png",
+ "density": "2.0"
+ },
+ {
+ "src": "\/android-chrome-144x144.png",
+ "sizes": "144x144",
+ "type": "image\/png",
+ "density": "3.0"
+ },
+ {
+ "src": "\/android-chrome-192x192.png",
+ "sizes": "192x192",
+ "type": "image\/png",
+ "density": "4.0"
+ }
+ ]
+}
diff --git a/documentation/ui/image/mstile-144x144.png b/documentation/ui/image/mstile-144x144.png
new file mode 100644
index 0000000..fcba19e
--- /dev/null
+++ b/documentation/ui/image/mstile-144x144.png
Binary files differ
diff --git a/documentation/ui/image/mstile-150x150.png b/documentation/ui/image/mstile-150x150.png
new file mode 100644
index 0000000..6748bc1
--- /dev/null
+++ b/documentation/ui/image/mstile-150x150.png
Binary files differ
diff --git a/documentation/ui/image/mstile-310x150.png b/documentation/ui/image/mstile-310x150.png
new file mode 100644
index 0000000..29c3eaa
--- /dev/null
+++ b/documentation/ui/image/mstile-310x150.png
Binary files differ
diff --git a/documentation/ui/image/mstile-310x310.png b/documentation/ui/image/mstile-310x310.png
new file mode 100644
index 0000000..16aa141
--- /dev/null
+++ b/documentation/ui/image/mstile-310x310.png
Binary files differ
diff --git a/documentation/ui/image/mstile-70x70.png b/documentation/ui/image/mstile-70x70.png
new file mode 100644
index 0000000..6531179
--- /dev/null
+++ b/documentation/ui/image/mstile-70x70.png
Binary files differ
diff --git a/documentation/ui/image/safari-pinned-tab.svg b/documentation/ui/image/safari-pinned-tab.svg
new file mode 100644
index 0000000..6f4db51
--- /dev/null
+++ b/documentation/ui/image/safari-pinned-tab.svg
@@ -0,0 +1,28 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
+<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
+ width="72.000000pt" height="73.000000pt" viewBox="0 0 72.000000 73.000000"
+ preserveAspectRatio="xMidYMid meet">
+<metadata>
+Created by potrace 1.11, written by Peter Selinger 2001-2013
+</metadata>
+<g transform="translate(0.000000,73.000000) scale(0.100000,-0.100000)"
+fill="#000000" stroke="none">
+<path d="M69 713 c-16 -6 -38 -27 -49 -45 -19 -31 -20 -50 -20 -301 0 -382
+-25 -357 357 -357 248 0 270 2 300 20 17 10 37 28 43 40 8 14 11 111 11 296 0
+382 27 354 -347 357 -188 1 -275 -2 -295 -10z m561 -28 c56 -29 60 -50 60
+-313 0 -145 -4 -251 -11 -270 -22 -63 -38 -67 -299 -70 -260 -4 -298 2 -334
+51 -20 27 -21 40 -21 281 0 279 3 298 60 322 47 20 506 19 545 -1z"/>
+<path d="M477 633 c-3 -4 -13 -37 -22 -73 -9 -36 -21 -83 -27 -105 l-11 -40
+-17 65 c-34 128 -41 150 -48 150 -5 0 -19 -44 -31 -97 -13 -54 -27 -104 -31
+-112 -4 -8 -18 32 -35 98 -15 62 -31 109 -35 104 -7 -8 -130 -493 -130 -513 0
+-6 93 -10 265 -10 246 0 265 1 265 18 0 20 -126 511 -133 518 -3 3 -7 2 -10
+-3z m-223 -151 l27 -107 -34 -130 -34 -130 -57 -3 c-52 -3 -57 -1 -52 15 3 10
+26 101 51 203 59 237 65 260 69 260 2 0 16 -48 30 -108z m146 -114 c0 -50 -9
+-58 -61 -58 -27 0 -49 2 -49 5 0 3 14 63 32 133 l32 127 23 -90 c12 -49 23
+-102 23 -117z m129 25 c5 -21 23 -91 39 -155 l30 -118 -179 0 c-98 0 -179 3
+-179 8 0 4 8 39 18 77 l18 70 62 3 c70 3 73 6 92 95 l13 57 38 0 c36 0 39 -2
+48 -37z"/>
+</g>
+</svg>
diff --git a/documentation/ui/stylesheet.css b/documentation/ui/stylesheet.css
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/documentation/ui/stylesheet.css