blog: robust generic functions on slices

Change-Id: Ib18522588d620b3ce7b2b25ac477c65e50c9771d
Reviewed-on: https://go-review.googlesource.com/c/website/+/564456
Reviewed-by: Eli Bendersky <eliben@google.com>
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
diff --git a/_content/blog/generic-slice-functions.md b/_content/blog/generic-slice-functions.md
new file mode 100644
index 0000000..a4a7cfc
--- /dev/null
+++ b/_content/blog/generic-slice-functions.md
@@ -0,0 +1,173 @@
+---
+title: Robust generic functions on slices
+date: 2024-02-22
+by:
+- Valentin Deleplace
+summary: Avoiding memory leaks in the slices package.
+---
+
+The [slices](/pkg/slices) package provides functions that work for slices of any type.
+In this blog post we'll discuss how you can use these functions more effectively by understanding how slices are represented in memory and how that affects the garbage collector, and we'll cover how we recently adjusted these functions to make them less surprising.
+
+With [Type parameters](/blog/deconstructing-type-parameters) we can write functions like [slices.Index](/pkg/slices#Index) once for all types of slices of comparable elements:
+
+```
+// Index returns the index of the first occurrence of v in s,
+// or -1 if not present.
+func Index[S ~[]E, E comparable](s S, v E) int {
+	for i := range s {
+		if v == s[i] {
+			return i
+		}
+	}
+	return -1
+}
+```
+
+It is no longer necessary to implement `Index` again for each different type of element.
+
+The [slices](/pkg/slices) package contains many such helpers to perform common operations on slices:
+
+```
+	s := []string{"Bat", "Fox", "Owl", "Fox"}
+	s2 := slices.Clone(s)
+	slices.Sort(s2)
+	fmt.Println(s2) // [Bat Fox Fox Owl]
+	s2 = slices.Compact(s2)
+	fmt.Println(s2)                  // [Bat Fox Owl]
+	fmt.Println(slices.Equal(s, s2)) // false
+```
+
+Several new functions (`Insert`, `Replace`, `Delete`, etc.) modify the slice. To understand how they work, and how to properly use them, we need to examine the underlying structure of slices.
+
+A slice is a view of a portion of an array. [Internally](/blog/slices-intro), a slice contains a pointer, a length, and a capacity. Two slices can have the same underlying array, and can view overlapping portions.
+
+For example, this slice `s` is a view on 4 elements of an array of size 6:
+
+{{image "generic-slice-functions/1_sample_slice_4_6.svg" 450}}
+
+If a function changes the length of a slice passed as a parameter, then it needs to return a new slice to the caller. The underlying array may remain the same if it doesn't have to grow. This explains why [append](/blog/slices) and `slices.Compact` return a value, but `slices.Sort`, which merely reorders the elements, does not.
+
+Consider the task of deleting a portion of a slice. Prior to generics, the standard way to delete the portion `s[2:5]` from the slice `s` was to call the [append](/ref/spec#Appending_and_copying_slices) function to copy the end portion over the middle portion:
+
+```
+s = append(s[:2], s[5:]...)
+```
+
+The syntax was complex and error-prone, involving subslices and a variadic parameter. We added [slice.Delete](/pkg/slices#Delete) to make it easier to delete elements:
+
+```
+func Delete[S ~[]E, E any](s S, i, j int) S {
+       return append(s[:i], s[j:]...)
+}
+```
+
+The one-line function `Delete` more clearly expresses the programmer's intent. Let’s consider a slice `s` of length 6 and capacity 8, containing pointers:
+
+{{image "generic-slice-functions/2_sample_slice_6_8.svg" 600}}
+
+This call deletes the elements at `s[2]`, `s[3]`, `s[4]`  from the slice `s`:
+
+```
+s = slices.Delete(s, 2, 5)
+```
+
+{{image "generic-slice-functions/3_delete_s_2_5.svg" 600}}
+
+The gap at the indices 2, 3, 4 is filled by shifting the element `s[5]` to the left, and setting the new length to `3`.
+
+`Delete` need not allocate a new array, as it shifts the elements in place. Like `append`, it returns a new slice. Many other functions in the `slices` package follow this pattern, including `Compact`, `CompactFunc`, `DeleteFunc`, `Grow`, `Insert`, and `Replace`.
+
+When calling these functions we must consider the original slice invalid, because the underlying array has been modified. It would be a mistake to call the function but ignore the return value:
+
+```
+	slices.Delete(s, 2, 5) // incorrect!
+	// s still has the same length, but modified contents
+```
+
+## A problem of unwanted liveness
+
+Before Go 1.22, `slices.Delete` didn't modify the elements between the new and original lengths of the slice. While the returned slice wouldn't include these elements, the "gap" created at the end of the original, now-invalidated slice continued to hold onto them. These elements could contain pointers to large objects (a 20MB image), and the garbage collector would not release the memory associated with these objects. This resulted in a memory leak that could lead to significant performance issues.
+
+In this above example, we’re successfully deleting the pointers `p2`, `p3`, `p4` from `s[2:5]`, by shifting one element to the left. But `p3` and `p4` are still present in the underlying array, beyond the new length of `s`. The garbage collector won’t reclaim them. Less obviously, `p5` is not one of the deleted elements, but its memory may still leak because of the `p5` pointer kept in the gray part of the array.
+
+This could be confusing for developers, if they were not aware that "invisible" elements were still using memory.
+
+So we had two options:
+
+* Either keep the efficient implementation of `Delete`. Let users set obsolete pointers to `nil` themselves, if they want to make sure the values pointed to can be freed.
+* Or change `Delete` to always set the obsolete elements to zero. This is extra work, making `Delete` slightly less efficient. Zeroing pointers (setting them to `nil`) enables the garbage collection of the objects, when they become otherwise unreachable.
+
+It was not obvious which option was best. The first one provided performance by default, and the second one provided memory frugality by default.
+
+## The fix
+
+A key observation is that "setting the obsolete pointers to `nil`" is not as easy as it seems. In fact, this task is so error-prone that we should not put the burden on the user to write it. Out of pragmatism, we chose to modify the implementation of the five functions `Compact`, `CompactFunc`, `Delete`, `DeleteFunc`, `Replace` to "clear the tail". As a nice side effect, the cognitive load is reduced and users now don’t need to worry about these memory leaks.
+
+In Go 1.22, this is what the memory looks like after calling Delete:
+
+{{image "generic-slice-functions/4_delete_s_2_5_nil.svg" 600}}
+
+The code changed in the five functions uses the new built-in function [clear](/pkg/builtin#clear) (Go 1.21) to set the obsolete elements to the zero value of the element type of `s`:
+
+{{image "generic-slice-functions/5_Delete_diff.png" 800}}
+
+The zero value of `E` is `nil` when `E` is a type of pointer, slice, map, chan, or interface.
+
+## Tests failing
+
+This change has led to some tests that passed in Go 1.21 now failing in Go 1.22, when the slices functions are used incorrectly. This is good news. When you have a bug, tests should let you know.
+
+If you ignore the return value of `Delete`:
+
+```
+slices.Delete(s, 2, 3)  // !! INCORRECT !!
+```
+
+then you may incorrectly assume that `s` does not contain any nil pointer. [Example in the Go Playground](/play/p/NDHuO8vINHv).
+
+If you ignore the return value of `Compact`:
+
+```
+slices.Sort(s) // correct
+slices.Compact(s) // !! INCORRECT !!
+```
+
+then you may incorrectly assume that `s` is properly sorted and compacted. [Example](/play/p/eFQIekiwlnu).
+
+If you assign the return value of `Delete` to another variable, and keep using the original slice:
+
+```
+u := slices.Delete(s, 2, 3)  // !! INCORRECT, if you keep using s !!
+```
+
+then you may incorrectly assume that `s` does not contain any nil pointer. [Example](/play/p/rDxWmJpLOVO).
+
+If you accidentally shadow the slice variable, and keep using the original slice:
+
+```
+s := slices.Delete(s, 2, 3)  // !! INCORRECT, using := instead of = !!
+```
+
+then you may incorrectly assume that `s` does not contain any nil pointer. [Example](/play/p/KSpVpkX8sOi).
+
+
+## Conclusion
+
+The API of the `slices` package is a net improvement over the traditional pre-generics syntax to delete or insert elements.
+
+We encourage developers to use the new functions, while avoiding the "gotchas" listed above.
+
+Thanks to the recent changes in the implementation, a class of memory leaks is automatically avoided, without any change to the API, and with no extra work for the developers.
+
+
+## Further reading
+
+The signature of the functions in the `slices` package is heavily influenced by the specifics of the representation of slices in memory. We recommend reading
+
+*   [Go Slices: usage and internals](/blog/slices-intro)
+*   [Arrays, slices: The mechanics of 'append'](/blog/slices)
+*   The [dynamic array](https://en.wikipedia.org/wiki/Dynamic_array) data structure
+*   The [documentation](/pkg/slices) of the package slices
+
+The [original proposal](/issue/63393) about zeroing obsolete elements contains many details and comments.
diff --git a/_content/blog/generic-slice-functions/1_sample_slice_4_6.svg b/_content/blog/generic-slice-functions/1_sample_slice_4_6.svg
new file mode 100644
index 0000000..4f267a1
--- /dev/null
+++ b/_content/blog/generic-slice-functions/1_sample_slice_4_6.svg
@@ -0,0 +1,399 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   version="1.1"
+   viewBox="0 0 439 155"
+   fill="none"
+   stroke="none"
+   stroke-linecap="square"
+   stroke-miterlimit="10"
+   id="svg57"
+   sodipodi:docname="1_sample_slice_4_6.svg"
+   width="439"
+   height="155"
+   inkscape:version="1.3.2 (091e20e, 2023-11-25)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg">
+  <defs
+     id="defs57" />
+  <sodipodi:namedview
+     id="namedview57"
+     pagecolor="#ffffff"
+     bordercolor="#000000"
+     borderopacity="0.25"
+     inkscape:showpageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     inkscape:deskcolor="#d1d1d1"
+     inkscape:zoom="0.43703704"
+     inkscape:cx="480.50847"
+     inkscape:cy="270"
+     inkscape:window-width="1416"
+     inkscape:window-height="749"
+     inkscape:window-x="0"
+     inkscape:window-y="38"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="g57" />
+  <clipPath
+     id="g1f1c06f5d6c_0_0.0">
+    <path
+       d="M 0,0 H 960 V 540 H 0 Z"
+       clip-rule="nonzero"
+       id="path1" />
+  </clipPath>
+  <g
+     clip-path="url(#g1f1c06f5d6c_0_0.0)"
+     id="g57">
+    <path
+       fill="#ffffff"
+       d="M 0,0 H 436.01694 V 153.30509 H 0 Z"
+       fill-rule="evenodd"
+       id="path2"
+       style="stroke-width:0.359085" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 136.17638,57.932203 h 40.19425 v 40 h -40.19425 z"
+       fill-rule="nonzero"
+       id="path3" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 176.37062,57.932203 h 40.19422 v 40 h -40.19422 z"
+       fill-rule="nonzero"
+       id="path4" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 216.56484,57.932203 h 40.19422 v 40 h -40.19422 z"
+       fill-rule="nonzero"
+       id="path5" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 256.75904,57.932203 h 40.19425 v 40 h -40.19425 z"
+       fill-rule="nonzero"
+       id="path6" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 296.9533,57.932203 h 40.19422 v 40 H 296.9533 Z"
+       fill-rule="nonzero"
+       id="path7" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 337.14751,57.932203 h 40.19422 v 40 h -40.19422 z"
+       fill-rule="nonzero"
+       id="path8" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 136.17638,57.433513 V 98.430888"
+       fill-rule="nonzero"
+       id="path9" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 176.37062,57.433513 V 98.430888"
+       fill-rule="nonzero"
+       id="path10" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 216.56484,57.433513 V 98.430888"
+       fill-rule="nonzero"
+       id="path11" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 256.75904,57.433513 V 98.430888"
+       fill-rule="nonzero"
+       id="path12" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 296.9533,57.433513 V 98.430888"
+       fill-rule="nonzero"
+       id="path13" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 337.14751,57.433513 V 98.430888"
+       fill-rule="nonzero"
+       id="path14" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 377.34174,57.433513 V 98.430888"
+       fill-rule="nonzero"
+       id="path15" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 135.67769,57.932203 H 377.84044"
+       fill-rule="nonzero"
+       id="path16" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 135.67769,97.932203 H 377.84044"
+       fill-rule="nonzero"
+       id="path17" />
+    <path
+       fill="#1155cc"
+       d="m 145.37924,71.794703 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20313,-1.265625 0.26562,-0.515625 0.85937,-0.78125 l 0.29688,0.453125 q -0.35938,0.15625 -0.53125,0.453125 -0.17188,0.296875 -0.1875,0.859375 z m 2.01563,0 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20312,-1.265625 0.28125,-0.515625 0.85938,-0.78125 l 0.29687,0.453125 q -0.35937,0.15625 -0.53125,0.453125 -0.17187,0.296875 -0.1875,0.859375 z m 1.59463,7.9375 v -9.546875 h 3.59375 q 1.09375,0 1.75,0.296875 0.65625,0.28125 1.03125,0.890625 0.375,0.609375 0.375,1.265625 0,0.609375 -0.34375,1.15625 -0.32812,0.53125 -0.98437,0.859375 0.85937,0.25 1.32812,0.875 0.46875,0.609375 0.46875,1.4375 0,0.671875 -0.29687,1.25 -0.28125,0.578125 -0.70313,0.890625 -0.40625,0.3125 -1.03125,0.46875 -0.625,0.15625 -1.54687,0.15625 z m 1.26563,-5.53125 h 2.0625 q 0.84375,0 1.20312,-0.109375 0.48438,-0.140625 0.71875,-0.46875 0.25,-0.34375 0.25,-0.84375 0,-0.46875 -0.23437,-0.828125 -0.21875,-0.359375 -0.64063,-0.5 -0.42187,-0.140625 -1.45312,-0.140625 h -1.90625 z m 0,4.40625 h 2.375 q 0.60937,0 0.85937,-0.04687 0.4375,-0.07813 0.73438,-0.25 0.29687,-0.1875 0.48437,-0.53125 0.1875,-0.359375 0.1875,-0.8125 0,-0.53125 -0.28125,-0.921875 -0.26562,-0.40625 -0.75,-0.5625 -0.48437,-0.15625 -1.40625,-0.15625 h -2.20312 z m 12.04599,0.265625 q -0.65625,0.5625 -1.26563,0.796875 -0.59375,0.21875 -1.28125,0.21875 -1.14062,0 -1.75,-0.546875 -0.60937,-0.5625 -0.60937,-1.4375 0,-0.5 0.21875,-0.921875 0.23437,-0.421875 0.60937,-0.671875 0.375,-0.25 0.84375,-0.390625 0.34375,-0.07813 1.04688,-0.171875 1.42187,-0.171875 2.09375,-0.40625 0,-0.234375 0,-0.296875 0,-0.71875 -0.32813,-1.015625 -0.45312,-0.390625 -1.34375,-0.390625 -0.8125,0 -1.21875,0.296875 -0.39062,0.28125 -0.57812,1.015625 l -1.14063,-0.15625 q 0.15625,-0.734375 0.51563,-1.1875 0.35937,-0.453125 1.03125,-0.6875 0.67187,-0.25 1.5625,-0.25 0.89062,0 1.4375,0.203125 0.5625,0.203125 0.8125,0.53125 0.26562,0.3125 0.375,0.796875 0.0469,0.296875 0.0469,1.078125 v 1.5625 q 0,1.625 0.0781,2.0625 0.0781,0.4375 0.29687,0.828125 h -1.21875 q -0.1875,-0.359375 -0.23437,-0.859375 z m -0.0937,-2.609375 q -0.64063,0.265625 -1.92188,0.4375 -0.71875,0.109375 -1.01562,0.25 -0.29688,0.125 -0.46875,0.375 -0.15625,0.25 -0.15625,0.546875 0,0.46875 0.34375,0.78125 0.35937,0.3125 1.04687,0.3125 0.67188,0 1.20313,-0.296875 0.53125,-0.296875 0.78125,-0.8125 0.1875,-0.390625 0.1875,-1.171875 z m 5.5531,2.421875 0.17187,1.03125 q -0.5,0.109375 -0.89062,0.109375 -0.64063,0 -1,-0.203125 -0.34375,-0.203125 -0.48438,-0.53125 -0.14062,-0.328125 -0.14062,-1.390625 v -3.96875 h -0.85938 v -0.90625 h 0.85938 v -1.71875 l 1.17187,-0.703125 v 2.421875 h 1.17188 v 0.90625 h -1.17188 v 4.046875 q 0,0.5 0.0469,0.640625 0.0625,0.140625 0.20312,0.234375 0.14063,0.07813 0.40625,0.07813 0.20313,0 0.51563,-0.04687 z m 0.828,-7.234375 v -1.359375 h 1.26563 v 1.078125 q 0,0.875 -0.20313,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51563,-0.453125 0.17187,-0.3125 0.1875,-0.859375 z m 2.01563,0 v -1.359375 h 1.26562 v 1.078125 q 0,0.875 -0.20312,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51562,-0.453125 0.17188,-0.3125 0.20313,-0.859375 z"
+       fill-rule="nonzero"
+       id="path18" />
+    <path
+       fill="#1155cc"
+       d="m 181.87047,71.794703 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20313,-1.265625 0.26562,-0.515625 0.85937,-0.78125 l 0.29688,0.453125 q -0.35938,0.15625 -0.53125,0.453125 -0.17188,0.296875 -0.1875,0.859375 z m 2.01563,0 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20312,-1.265625 0.28125,-0.515625 0.85938,-0.78125 l 0.29687,0.453125 q -0.35937,0.15625 -0.53125,0.453125 -0.17187,0.296875 -0.1875,0.859375 z m 1.71963,7.9375 v -9.546875 h 6.4375 v 1.125 h -5.17187 v 2.96875 h 4.46875 v 1.125 h -4.46875 v 4.328125 z m 7.48511,-3.453125 q 0,-1.921875 1.07813,-2.84375 0.89062,-0.765625 2.17187,-0.765625 1.42188,0 2.32813,0.9375 0.90625,0.921875 0.90625,2.578125 0,1.328125 -0.40625,2.09375 -0.39063,0.765625 -1.15625,1.1875 -0.76563,0.421875 -1.67188,0.421875 -1.45312,0 -2.35937,-0.921875 -0.89063,-0.9375 -0.89063,-2.6875 z m 1.20313,0 q 0,1.328125 0.57812,1.984375 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45313,-0.65625 0.57812,-0.671875 0.57812,-2.03125 0,-1.28125 -0.59375,-1.9375 -0.57812,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57812,0.65625 -0.57812,1.984375 z m 5.8656,3.453125 2.53125,-3.59375 -2.34375,-3.3125 h 1.46875 l 1.0625,1.609375 q 0.29687,0.46875 0.48437,0.78125 0.28125,-0.4375 0.51563,-0.765625 l 1.17187,-1.625 h 1.40625 l -2.39062,3.25 2.5625,3.65625 h -1.4375 l -1.42188,-2.140625 -0.375,-0.59375 -1.8125,2.734375 z m 7.13281,-8.28125 v -1.359375 h 1.26562 v 1.078125 q 0,0.875 -0.20312,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51562,-0.453125 0.17188,-0.3125 0.1875,-0.859375 z m 2.01562,0 v -1.359375 h 1.26563 v 1.078125 q 0,0.875 -0.20313,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51563,-0.453125 0.17187,-0.3125 0.20312,-0.859375 z"
+       fill-rule="nonzero"
+       id="path19" />
+    <path
+       fill="#1155cc"
+       d="m 222.06468,71.794703 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20313,-1.265625 0.26562,-0.515625 0.85937,-0.78125 l 0.29688,0.453125 q -0.35938,0.15625 -0.53125,0.453125 -0.17188,0.296875 -0.1875,0.859375 z m 2.01563,0 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20312,-1.265625 0.28125,-0.515625 0.85938,-0.78125 l 0.29687,0.453125 q -0.35937,0.15625 -0.53125,0.453125 -0.17187,0.296875 -0.1875,0.859375 z m 1.26651,3.296875 q 0,-2.375 1.28125,-3.71875 1.28125,-1.34375 3.29687,-1.34375 1.3125,0 2.375,0.625 1.0625,0.625 1.60938,1.765625 0.5625,1.125 0.5625,2.5625 0,1.4375 -0.59375,2.59375 -0.57813,1.140625 -1.65625,1.734375 -1.0625,0.578125 -2.3125,0.578125 -1.34375,0 -2.40625,-0.640625 -1.0625,-0.65625 -1.60938,-1.78125 -0.54687,-1.125 -0.54687,-2.375 z m 1.3125,0.01563 q 0,1.71875 0.92187,2.71875 0.92188,0.984375 2.32813,0.984375 1.42187,0 2.34375,-1 0.92187,-1 0.92187,-2.84375 0,-1.15625 -0.40625,-2.03125 -0.39062,-0.875 -1.15625,-1.34375 -0.75,-0.484375 -1.6875,-0.484375 -1.34375,0 -2.3125,0.921875 -0.95312,0.921875 -0.95312,3.078125 z m 10.57016,4.625 -2.125,-6.90625 h 1.21875 l 1.09375,3.984375 0.42187,1.484375 q 0.0156,-0.109375 0.35938,-1.421875 l 1.09375,-4.046875 h 1.20312 l 1.03125,4 0.34375,1.328125 0.40625,-1.34375 1.17188,-3.984375 h 1.14062 l -2.15625,6.90625 h -1.21875 l -1.09375,-4.140625 -0.26562,-1.171875 -1.40625,5.3125 z m 8.32828,0 v -9.546875 h 1.17187 v 9.546875 z m 2.66421,-8.28125 v -1.359375 h 1.26563 v 1.078125 q 0,0.875 -0.20313,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51563,-0.453125 0.17187,-0.3125 0.1875,-0.859375 z m 2.01563,0 v -1.359375 h 1.26562 v 1.078125 q 0,0.875 -0.20312,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51562,-0.453125 0.17188,-0.3125 0.20313,-0.859375 z"
+       fill-rule="nonzero"
+       id="path20" />
+    <path
+       fill="#1155cc"
+       d="m 262.25894,71.794703 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20313,-1.265625 0.26562,-0.515625 0.85937,-0.78125 l 0.29688,0.453125 q -0.35938,0.15625 -0.53125,0.453125 -0.17188,0.296875 -0.1875,0.859375 z m 2.01563,0 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20312,-1.265625 0.28125,-0.515625 0.85938,-0.78125 l 0.29687,0.453125 q -0.35937,0.15625 -0.53125,0.453125 -0.17187,0.296875 -0.1875,0.859375 z m 1.7196,7.9375 v -9.546875 h 6.4375 v 1.125 h -5.17187 v 2.96875 h 4.46875 v 1.125 h -4.46875 v 4.328125 z m 7.48511,-3.453125 q 0,-1.921875 1.07813,-2.84375 0.89062,-0.765625 2.17187,-0.765625 1.42188,0 2.32813,0.9375 0.90625,0.921875 0.90625,2.578125 0,1.328125 -0.40625,2.09375 -0.39063,0.765625 -1.15625,1.1875 -0.76563,0.421875 -1.67188,0.421875 -1.45312,0 -2.35937,-0.921875 -0.89063,-0.9375 -0.89063,-2.6875 z m 1.20313,0 q 0,1.328125 0.57812,1.984375 0.59375,0.65625 1.46875,0.65625 0.875,0 1.45313,-0.65625 0.57812,-0.671875 0.57812,-2.03125 0,-1.28125 -0.59375,-1.9375 -0.57812,-0.65625 -1.4375,-0.65625 -0.875,0 -1.46875,0.65625 -0.57812,0.65625 -0.57812,1.984375 z m 5.8656,3.453125 2.53125,-3.59375 -2.34375,-3.3125 h 1.46875 l 1.0625,1.609375 q 0.29687,0.46875 0.48437,0.78125 0.28125,-0.4375 0.51563,-0.765625 l 1.17187,-1.625 h 1.40625 l -2.39062,3.25 2.5625,3.65625 h -1.4375 l -1.42188,-2.140625 -0.375,-0.59375 -1.8125,2.734375 z m 7.13281,-8.28125 v -1.359375 h 1.26562 v 1.078125 q 0,0.875 -0.20312,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51562,-0.453125 0.17188,-0.3125 0.1875,-0.859375 z m 2.01562,0 v -1.359375 h 1.26563 v 1.078125 q 0,0.875 -0.20313,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51563,-0.453125 0.17187,-0.3125 0.20312,-0.859375 z"
+       fill-rule="nonzero"
+       id="path21" />
+    <path
+       fill="#434343"
+       d="m 302.45314,71.794703 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20313,-1.265625 0.26562,-0.515625 0.85937,-0.78125 l 0.29688,0.453125 q -0.35938,0.15625 -0.53125,0.453125 -0.17188,0.296875 -0.1875,0.859375 z m 2.01563,0 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20312,-1.265625 0.28125,-0.515625 0.85938,-0.78125 l 0.29687,0.453125 q -0.35937,0.15625 -0.53125,0.453125 -0.17187,0.296875 -0.1875,0.859375 z m 1.59463,7.9375 v -9.546875 h 3.59375 q 1.09375,0 1.75,0.296875 0.65625,0.28125 1.03125,0.890625 0.375,0.609375 0.375,1.265625 0,0.609375 -0.34375,1.15625 -0.32812,0.53125 -0.98437,0.859375 0.85937,0.25 1.32812,0.875 0.46875,0.609375 0.46875,1.4375 0,0.671875 -0.29687,1.25 -0.28125,0.578125 -0.70313,0.890625 -0.40625,0.3125 -1.03125,0.46875 -0.625,0.15625 -1.54687,0.15625 z m 1.26563,-5.53125 h 2.0625 q 0.84375,0 1.20312,-0.109375 0.48438,-0.140625 0.71875,-0.46875 0.25,-0.34375 0.25,-0.84375 0,-0.46875 -0.23437,-0.828125 -0.21875,-0.359375 -0.64063,-0.5 -0.42187,-0.140625 -1.45312,-0.140625 h -1.90625 z m 0,4.40625 h 2.375 q 0.60937,0 0.85937,-0.04687 0.4375,-0.07813 0.73438,-0.25 0.29687,-0.1875 0.48437,-0.53125 0.1875,-0.359375 0.1875,-0.8125 0,-0.53125 -0.28125,-0.921875 -0.26562,-0.40625 -0.75,-0.5625 -0.48437,-0.15625 -1.40625,-0.15625 h -2.20312 z m 12.26474,-1.09375 1.20312,0.140625 q -0.28125,1.0625 -1.0625,1.65625 -0.76562,0.578125 -1.96875,0.578125 -1.51562,0 -2.40625,-0.9375 -0.89062,-0.9375 -0.89062,-2.609375 0,-1.75 0.89062,-2.703125 0.90625,-0.96875 2.34375,-0.96875 1.39063,0 2.26563,0.9375 0.875,0.9375 0.875,2.65625 0,0.109375 0,0.3125 h -5.15625 q 0.0625,1.140625 0.64062,1.75 0.57813,0.59375 1.4375,0.59375 0.65625,0 1.10938,-0.328125 0.45312,-0.34375 0.71875,-1.078125 z m -3.84375,-1.90625 h 3.85937 q -0.0781,-0.859375 -0.4375,-1.296875 -0.5625,-0.6875 -1.45312,-0.6875 -0.8125,0 -1.35938,0.546875 -0.54687,0.53125 -0.60937,1.4375 z m 11.25623,1.90625 1.20312,0.140625 q -0.28125,1.0625 -1.0625,1.65625 -0.76562,0.578125 -1.96875,0.578125 -1.51562,0 -2.40625,-0.9375 -0.89062,-0.9375 -0.89062,-2.609375 0,-1.75 0.89062,-2.703125 0.90625,-0.96875 2.34375,-0.96875 1.39063,0 2.26563,0.9375 0.875,0.9375 0.875,2.65625 0,0.109375 0,0.3125 H 323.1 q 0.0625,1.140625 0.64062,1.75 0.57813,0.59375 1.4375,0.59375 0.65625,0 1.10938,-0.328125 0.45312,-0.34375 0.71875,-1.078125 z m -3.84375,-1.90625 h 3.85937 q -0.0781,-0.859375 -0.4375,-1.296875 -0.5625,-0.6875 -1.45312,-0.6875 -0.8125,0 -1.35938,0.546875 -0.54687,0.53125 -0.60937,1.4375 z m 6.20935,-4.15625 v -1.359375 h 1.26562 v 1.078125 q 0,0.875 -0.20312,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51562,-0.453125 0.17188,-0.3125 0.1875,-0.859375 z m 2.01562,0 v -1.359375 h 1.26563 v 1.078125 q 0,0.875 -0.20313,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51563,-0.453125 0.17187,-0.3125 0.20312,-0.859375 z"
+       fill-rule="nonzero"
+       id="path22" />
+    <path
+       fill="#434343"
+       d="m 342.64739,71.794703 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20313,-1.265625 0.26562,-0.515625 0.85937,-0.78125 l 0.29688,0.453125 q -0.35938,0.15625 -0.53125,0.453125 -0.17188,0.296875 -0.1875,0.859375 z m 2.01563,0 v 1.359375 h -1.25 v -1.078125 q 0,-0.875 0.20312,-1.265625 0.28125,-0.515625 0.85938,-0.78125 l 0.29687,0.453125 q -0.35937,0.15625 -0.53125,0.453125 -0.17187,0.296875 -0.1875,0.859375 z m 0.61023,7.9375 3.65625,-9.546875 h 1.35937 l 3.90625,9.546875 h -1.4375 l -1.10937,-2.890625 h -3.98438 l -1.04687,2.890625 z m 2.75,-3.921875 h 3.23437 l -1,-2.640625 q -0.45312,-1.203125 -0.67187,-1.96875 -0.1875,0.90625 -0.51563,1.8125 z m 7.03039,3.921875 v -6.90625 h 1.0625 v 0.984375 q 0.75,-1.140625 2.1875,-1.140625 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26563,0.359375 0.375,0.859375 0.0625,0.328125 0.0625,1.140625 v 4.25 h -1.17187 v -4.203125 q 0,-0.71875 -0.14063,-1.0625 -0.14062,-0.359375 -0.48437,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29688,0.46875 -0.54687,0.46875 -0.54687,1.796875 v 3.78125 z m 9.97498,-1.046875 0.17188,1.03125 q -0.5,0.109375 -0.89063,0.109375 -0.64062,0 -1,-0.203125 -0.34375,-0.203125 -0.48437,-0.53125 -0.14063,-0.328125 -0.14063,-1.390625 v -3.96875 h -0.85937 v -0.90625 h 0.85937 v -1.71875 l 1.17188,-0.703125 v 2.421875 h 1.17187 v 0.90625 h -1.17187 v 4.046875 q 0,0.5 0.0469,0.640625 0.0625,0.140625 0.20313,0.234375 0.14062,0.07813 0.40625,0.07813 0.20312,0 0.51562,-0.04687 z m 0.828,-7.234375 v -1.359375 h 1.26563 v 1.078125 q 0,0.875 -0.20313,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51563,-0.453125 0.17187,-0.3125 0.1875,-0.859375 z m 2.01563,0 v -1.359375 h 1.26562 v 1.078125 q 0,0.875 -0.20312,1.25 -0.28125,0.53125 -0.875,0.796875 l -0.28125,-0.453125 q 0.34375,-0.15625 0.51562,-0.453125 0.17188,-0.3125 0.20313,-0.859375 z"
+       fill-rule="nonzero"
+       id="path23" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 123.64094,100.60937 h 39.24411 v 38.77166 h -39.24411 z"
+       fill-rule="evenodd"
+       id="path24" />
+    <path
+       fill="#000000"
+       d="m 133.31282,119.31312 q 0,-2.03125 0.40625,-3.26562 0.42188,-1.23438 1.25,-1.90625 0.82813,-0.67188 2.07813,-0.67188 0.92187,0 1.60937,0.375 0.70313,0.35938 1.15625,1.0625 0.45313,0.70313 0.70313,1.70313 0.26562,1 0.26562,2.70312 0,2.01563 -0.42187,3.26563 -0.40625,1.23437 -1.23438,1.92187 -0.82812,0.67188 -2.07812,0.67188 -1.65625,0 -2.60938,-1.20313 -1.125,-1.42187 -1.125,-4.65625 z m 1.4375,0 q 0,2.82813 0.65625,3.76563 0.67188,0.92187 1.64063,0.92187 0.96875,0 1.625,-0.9375 0.65625,-0.9375 0.65625,-3.75 0,-2.82812 -0.65625,-3.75 -0.65625,-0.9375 -1.64063,-0.9375 -0.96875,0 -1.54687,0.82813 -0.73438,1.04687 -0.73438,3.85937 z"
+       fill-rule="nonzero"
+       id="path25" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 288.69344,95.758973 h 70.07877 v 51.716537 h -70.07877 z"
+       fill-rule="evenodd"
+       id="path26" />
+    <path
+       fill="#000000"
+       d="m 298.55281,117.55897 v -9.54687 h 1.17188 v 9.54687 z m 7.71109,-2.21875 1.20313,0.14063 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57812 -1.96875,0.57812 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60937 0,-1.75 0.89063,-2.70313 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.10938 0,0.3125 h -5.15625 q 0.0625,1.14063 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32812 0.45313,-0.34375 0.71875,-1.07813 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85937 -0.4375,-1.29687 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54687 -0.54688,0.53125 -0.60938,1.4375 z m 6.52185,4.125 v -6.90625 h 1.0625 v 0.98438 q 0.75,-1.14063 2.1875,-1.14063 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26563,0.35938 0.375,0.85938 0.0625,0.32812 0.0625,1.14062 v 4.25 h -1.17187 v -4.20312 q 0,-0.71875 -0.14063,-1.0625 -0.14062,-0.35938 -0.48437,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29688,0.46875 -0.54687,0.46875 -0.54687,1.79687 v 3.78125 z m 9.66248,2.8125 q -0.98437,-1.23437 -1.65625,-2.875 -0.65625,-1.64062 -0.65625,-3.39062 0,-1.54688 0.5,-2.96875 0.57813,-1.64063 1.8125,-3.28125 h 0.82813 q -0.78125,1.35937 -1.03125,1.9375 -0.40625,0.89062 -0.625,1.875 -0.28125,1.21875 -0.28125,2.4375 0,3.14062 1.9375,6.26562 z m 1.71964,-4.875 1.15625,-0.1875 q 0.10937,0.70313 0.54687,1.07813 0.45313,0.35937 1.25,0.35937 0.8125,0 1.20313,-0.32812 0.39062,-0.32813 0.39062,-0.76563 0,-0.39062 -0.35937,-0.625 -0.23438,-0.15625 -1.1875,-0.39062 -1.29688,-0.32813 -1.79688,-0.5625 -0.48437,-0.25 -0.75,-0.65625 -0.25,-0.42188 -0.25,-0.9375 0,-0.45313 0.20313,-0.84375 0.21875,-0.40625 0.57812,-0.67188 0.28125,-0.1875 0.75,-0.32812 0.46875,-0.14063 1.01563,-0.14063 0.8125,0 1.42187,0.23438 0.60938,0.23437 0.90625,0.64062 0.29688,0.39063 0.40625,1.0625 l -1.14062,0.15625 q -0.0781,-0.53125 -0.45313,-0.82812 -0.375,-0.3125 -1.0625,-0.3125 -0.8125,0 -1.15625,0.26562 -0.34375,0.26563 -0.34375,0.625 0,0.23438 0.14063,0.42188 0.15625,0.1875 0.45312,0.3125 0.17188,0.0625 1.03125,0.29687 1.25,0.32813 1.73438,0.54688 0.5,0.20312 0.78125,0.60937 0.28125,0.40625 0.28125,1 0,0.59375 -0.34375,1.10938 -0.34375,0.51562 -1,0.79687 -0.64063,0.28125 -1.45313,0.28125 -1.34375,0 -2.04687,-0.5625 -0.70313,-0.5625 -0.90625,-1.65625 z m 7.89843,4.875 h -0.82812 q 1.9375,-3.125 1.9375,-6.26562 0,-1.21875 -0.28125,-2.42188 -0.21875,-0.98437 -0.60938,-1.875 -0.26562,-0.59375 -1.04687,-1.95312 h 0.82812 q 1.23438,1.64062 1.8125,3.28125 0.5,1.42187 0.5,2.96875 0,1.75 -0.67187,3.39062 -0.67188,1.64063 -1.64063,2.875 z"
+       fill-rule="nonzero"
+       id="path27" />
+    <path
+       fill="#000000"
+       d="m 304.74031,127.9496 h -6.3125 v -1.09375 h 6.3125 z m 0,2.89063 h -6.3125 v -1.09375 h 6.3125 z m 8.75205,2.71875 v -2.28125 h -4.14063 v -1.07813 l 4.34375,-6.1875 h 0.96875 v 6.1875 h 1.28125 v 1.07813 h -1.28125 v 2.28125 z m 0,-3.35938 v -4.29687 l -2.98438,4.29687 z"
+       fill-rule="nonzero"
+       id="path28" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 368.18164,95.758973 h 70.07874 v 51.716537 h -70.07874 z"
+       fill-rule="evenodd"
+       id="path29" />
+    <path
+       fill="#000000"
+       d="m 382.57224,115.02772 1.15625,0.15625 q -0.1875,1.1875 -0.96875,1.85938 -0.78125,0.67187 -1.92187,0.67187 -1.40625,0 -2.28125,-0.92187 -0.85938,-0.9375 -0.85938,-2.65625 0,-1.125 0.375,-1.96875 0.375,-0.84375 1.125,-1.25 0.76563,-0.42188 1.65625,-0.42188 1.125,0 1.84375,0.57813 0.71875,0.5625 0.92188,1.60937 l -1.14063,0.17188 q -0.17187,-0.70313 -0.59375,-1.04688 -0.40625,-0.35937 -0.98437,-0.35937 -0.89063,0 -1.45313,0.64062 -0.54687,0.64063 -0.54687,2 0,1.40625 0.53125,2.03125 0.54687,0.625 1.40625,0.625 0.6875,0 1.14062,-0.42187 0.46875,-0.42188 0.59375,-1.29688 z m 6.66407,1.67188 q -0.65625,0.5625 -1.26563,0.79687 -0.59375,0.21875 -1.28125,0.21875 -1.14062,0 -1.75,-0.54687 -0.60937,-0.5625 -0.60937,-1.4375 0,-0.5 0.21875,-0.92188 0.23437,-0.42187 0.60937,-0.67187 0.375,-0.25 0.84375,-0.39063 0.34375,-0.0781 1.04688,-0.17187 1.42187,-0.17188 2.09375,-0.40625 0,-0.23438 0,-0.29688 0,-0.71875 -0.32813,-1.01562 -0.45312,-0.39063 -1.34375,-0.39063 -0.8125,0 -1.21875,0.29688 -0.39062,0.28125 -0.57812,1.01562 l -1.14063,-0.15625 q 0.15625,-0.73437 0.51563,-1.1875 0.35937,-0.45312 1.03125,-0.6875 0.67187,-0.25 1.5625,-0.25 0.89062,0 1.4375,0.20313 0.5625,0.20312 0.8125,0.53125 0.26562,0.3125 0.375,0.79687 0.0469,0.29688 0.0469,1.07813 v 1.5625 q 0,1.625 0.0781,2.0625 0.0781,0.4375 0.29687,0.82812 h -1.21875 q -0.1875,-0.35937 -0.23437,-0.85937 z m -0.0937,-2.60938 q -0.64063,0.26563 -1.92188,0.4375 -0.71875,0.10938 -1.01562,0.25 -0.29688,0.125 -0.46875,0.375 -0.15625,0.25 -0.15625,0.54688 0,0.46875 0.34375,0.78125 0.35937,0.3125 1.04687,0.3125 0.67188,0 1.20313,-0.29688 0.53125,-0.29687 0.78125,-0.8125 0.1875,-0.39062 0.1875,-1.17187 z m 2.9906,6.125 v -9.5625 h 1.07812 v 0.89063 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26563 1.15625,-0.26563 0.875,0 1.54688,0.45313 0.6875,0.45312 1.03125,1.28125 0.34375,0.82812 0.34375,1.82812 0,1.04688 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29688 -0.71875,0.45312 -1.53125,0.45312 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07812 q 0,1.34375 0.53125,1.98437 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04687 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67188 -1.29687,-0.67188 -0.75,0 -1.32813,0.70313 -0.57812,0.70312 -0.57812,2.03125 z m 8.59997,6.23437 q -0.98437,-1.23437 -1.65625,-2.875 -0.65625,-1.64062 -0.65625,-3.39062 0,-1.54688 0.5,-2.96875 0.57813,-1.64063 1.8125,-3.28125 h 0.82813 q -0.78125,1.35937 -1.03125,1.9375 -0.40625,0.89062 -0.625,1.875 -0.28125,1.21875 -0.28125,2.4375 0,3.14062 1.9375,6.26562 z m 1.71961,-4.875 1.15625,-0.1875 q 0.10937,0.70313 0.54687,1.07813 0.45313,0.35937 1.25,0.35937 0.8125,0 1.20313,-0.32812 0.39062,-0.32813 0.39062,-0.76563 0,-0.39062 -0.35937,-0.625 -0.23438,-0.15625 -1.1875,-0.39062 -1.29688,-0.32813 -1.79688,-0.5625 -0.48437,-0.25 -0.75,-0.65625 -0.25,-0.42188 -0.25,-0.9375 0,-0.45313 0.20313,-0.84375 0.21875,-0.40625 0.57812,-0.67188 0.28125,-0.1875 0.75,-0.32812 0.46875,-0.14063 1.01563,-0.14063 0.8125,0 1.42187,0.23438 0.60938,0.23437 0.90625,0.64062 0.29688,0.39063 0.40625,1.0625 l -1.14062,0.15625 q -0.0781,-0.53125 -0.45313,-0.82812 -0.375,-0.3125 -1.0625,-0.3125 -0.8125,0 -1.15625,0.26562 -0.34375,0.26563 -0.34375,0.625 0,0.23438 0.14063,0.42188 0.15625,0.1875 0.45312,0.3125 0.17188,0.0625 1.03125,0.29687 1.25,0.32813 1.73438,0.54688 0.5,0.20312 0.78125,0.60937 0.28125,0.40625 0.28125,1 0,0.59375 -0.34375,1.10938 -0.34375,0.51562 -1,0.79687 -0.64063,0.28125 -1.45313,0.28125 -1.34375,0 -2.04687,-0.5625 -0.70313,-0.5625 -0.90625,-1.65625 z m 7.89844,4.875 h -0.82813 q 1.9375,-3.125 1.9375,-6.26562 0,-1.21875 -0.28125,-2.42188 -0.21875,-0.98437 -0.60937,-1.875 -0.26563,-0.59375 -1.04688,-1.95312 h 0.82813 q 1.23437,1.64062 1.8125,3.28125 0.5,1.42187 0.5,2.96875 0,1.75 -0.67188,3.39062 -0.67187,1.64063 -1.64062,2.875 z"
+       fill-rule="nonzero"
+       id="path30" />
+    <path
+       fill="#000000"
+       d="m 384.2285,127.9496 h -6.3125 v -1.09375 h 6.3125 z m 0,2.89063 h -6.3125 v -1.09375 h 6.3125 z m 11.06452,-4.48438 -1.15625,0.0937 q -0.15625,-0.6875 -0.4375,-1 -0.48438,-0.5 -1.17188,-0.5 -0.5625,0 -0.98437,0.3125 -0.5625,0.39063 -0.89063,1.17188 -0.3125,0.76562 -0.3125,2.20312 0.42188,-0.64062 1.03125,-0.95312 0.60938,-0.3125 1.28125,-0.3125 1.17188,0 1.98438,0.85937 0.82812,0.85938 0.82812,2.23438 0,0.89062 -0.39062,1.67187 -0.375,0.76563 -1.0625,1.17188 -0.67188,0.40625 -1.53125,0.40625 -1.46875,0 -2.39063,-1.0625 -0.92187,-1.07813 -0.92187,-3.5625 0,-2.76563 1.01562,-4.01563 0.90625,-1.09375 2.40625,-1.09375 1.125,0 1.84375,0.64063 0.71875,0.625 0.85938,1.73437 z m -4.78125,4.10938 q 0,0.60937 0.25,1.17187 0.26562,0.54688 0.71875,0.84375 0.46875,0.28125 0.98437,0.28125 0.73438,0 1.26563,-0.59375 0.54687,-0.60937 0.54687,-1.64062 0,-0.98438 -0.53125,-1.54688 -0.53125,-0.57812 -1.32812,-0.57812 -0.79688,0 -1.35938,0.57812 -0.54687,0.5625 -0.54687,1.48438 z"
+       fill-rule="nonzero"
+       id="path31" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 143.26299,100.60937 v 0"
+       fill-rule="evenodd"
+       id="path32" />
+    <path
+       stroke="#595959"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 143.26299,100.60937 v 0"
+       fill-rule="evenodd"
+       id="path33" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 136.16064,99.325903 v 7.968487"
+       fill-rule="evenodd"
+       id="path34" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 136.16064,99.325903 v 7.968487"
+       fill-rule="evenodd"
+       id="path35" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 377.34174,99.305723 v 7.968507"
+       fill-rule="evenodd"
+       id="path36" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 377.34174,99.305723 v 7.968507"
+       fill-rule="evenodd"
+       id="path37" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 296.95449,99.305723 v 7.968507"
+       fill-rule="evenodd"
+       id="path38" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 296.95449,99.305723 v 7.968507"
+       fill-rule="evenodd"
+       id="path39" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="M 10.118644,7.9322034 H 41.079276 V 45.097553 H 10.118644 Z"
+       fill-rule="evenodd"
+       id="path40" />
+    <path
+       fill="#000000"
+       d="m 19.462394,28.840333 2.015625,-0.296875 q 0.125,0.578125 0.515625,0.890625 0.40625,0.296875 1.109375,0.296875 0.78125,0 1.171875,-0.28125 0.265625,-0.203125 0.265625,-0.546875 0,-0.21875 -0.140625,-0.375 -0.15625,-0.140625 -0.671875,-0.265625 -2.4375,-0.53125 -3.078125,-0.984375 -0.90625,-0.609375 -0.90625,-1.703125 0,-0.984375 0.78125,-1.65625 0.78125,-0.671875 2.421875,-0.671875 1.546875,0 2.3125,0.515625 0.765625,0.5 1.046875,1.484375 l -1.90625,0.359375 q -0.109375,-0.453125 -0.453125,-0.6875 -0.34375,-0.234375 -0.96875,-0.234375 -0.796875,0 -1.140625,0.21875 -0.234375,0.15625 -0.234375,0.40625 0,0.21875 0.203125,0.375 0.28125,0.203125 1.875,0.5625 1.609375,0.359375 2.25,0.890625 0.625,0.546875 0.625,1.5 0,1.046875 -0.875,1.796875 -0.859375,0.75 -2.578125,0.75 -1.546875,0 -2.453125,-0.625 -0.90625,-0.640625 -1.1875,-1.71875 z"
+       fill-rule="nonzero"
+       id="path41" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 40.176384,9.9322034 h 41.94226 V 42.806219 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path42" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 40.176384,42.806219 h 41.94226 v 32.874016 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path43" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 40.176384,75.680233 h 41.94226 v 28.225727 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path44" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 40.176384,9.4335134 V 104.40464"
+       fill-rule="nonzero"
+       id="path45" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 82.118644,9.4335134 V 104.40464"
+       fill-rule="nonzero"
+       id="path46" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 39.677694,9.9322034 H 82.61733"
+       fill-rule="nonzero"
+       id="path47" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 39.677694,42.806219 H 82.61733"
+       fill-rule="nonzero"
+       id="path48" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 39.677694,75.680233 H 82.61733"
+       fill-rule="nonzero"
+       id="path49" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 39.677694,103.90595 H 82.61733"
+       fill-rule="nonzero"
+       id="path50" />
+    <path
+       fill="#000000"
+       d="m 43.840154,31.297203 v -7.65625 h 0.859375 v 0.71875 q 0.296875,-0.421875 0.671875,-0.625 0.390625,-0.21875 0.921875,-0.21875 0.703125,0 1.25,0.375 0.546875,0.359375 0.8125,1.03125 0.28125,0.65625 0.28125,1.453125 0,0.84375 -0.3125,1.53125 -0.296875,0.671875 -0.875,1.03125 -0.578125,0.359375 -1.21875,0.359375 -0.46875,0 -0.84375,-0.1875 -0.375,-0.203125 -0.609375,-0.515625 v 2.703125 z m 0.84375,-4.859375 q 0,1.0625 0.4375,1.578125 0.4375,0.515625 1.046875,0.515625 0.625,0 1.0625,-0.53125 0.453125,-0.53125 0.453125,-1.640625 0,-1.046875 -0.4375,-1.578125 -0.4375,-0.53125 -1.046875,-0.53125 -0.59375,0 -1.0625,0.5625 -0.453125,0.5625 -0.453125,1.625 z m 7.129623,1.890625 0.125,0.828125 q -0.390625,0.09375 -0.703125,0.09375 -0.5,0 -0.78125,-0.15625 -0.28125,-0.171875 -0.40625,-0.4375 -0.109375,-0.265625 -0.109375,-1.109375 v -3.171875 h -0.6875 v -0.734375 h 0.6875 v -1.359375 l 0.9375,-0.5625 v 1.921875 h 0.9375 v 0.734375 h -0.9375 v 3.234375 q 0,0.390625 0.04687,0.515625 0.04687,0.109375 0.15625,0.1875 0.109375,0.0625 0.328125,0.0625 0.15625,0 0.40625,-0.04687 z m 0.898148,0.84375 v -5.53125 h 0.84375 v 0.84375 q 0.328125,-0.59375 0.59375,-0.78125 0.28125,-0.1875 0.609375,-0.1875 0.46875,0 0.953125,0.3125 l -0.3125,0.859375 q -0.34375,-0.203125 -0.6875,-0.203125 -0.3125,0 -0.5625,0.1875 -0.234375,0.1875 -0.34375,0.515625 -0.15625,0.5 -0.15625,1.09375 v 2.890625 z"
+       fill-rule="nonzero"
+       id="path51" />
+    <path
+       fill="#000000"
+       d="m 43.824534,62.046213 v -7.625 h 0.9375 v 7.625 z m 6.164352,-1.78125 0.96875,0.125 q -0.234375,0.84375 -0.859375,1.3125 -0.609375,0.46875 -1.578125,0.46875 -1.203125,0 -1.921875,-0.75 -0.703125,-0.75 -0.703125,-2.09375 0,-1.390625 0.71875,-2.15625 0.71875,-0.78125 1.859375,-0.78125 1.109375,0 1.8125,0.765625 0.703125,0.75 0.703125,2.125 0,0.07813 0,0.234375 h -4.125 q 0.04687,0.921875 0.515625,1.40625 0.46875,0.484375 1.15625,0.484375 0.515625,0 0.875,-0.265625 0.359375,-0.28125 0.578125,-0.875 z m -3.078125,-1.515625 h 3.09375 q -0.0625,-0.6875 -0.359375,-1.046875 -0.453125,-0.53125 -1.15625,-0.53125 -0.640625,0 -1.09375,0.4375 -0.4375,0.421875 -0.484375,1.140625 z m 5.223374,3.296875 v -5.53125 h 0.84375 v 0.796875 q 0.609375,-0.921875 1.75,-0.921875 0.5,0 0.921875,0.1875 0.421875,0.171875 0.625,0.46875 0.21875,0.296875 0.296875,0.6875 0.04687,0.265625 0.04687,0.921875 v 3.390625 h -0.9375 v -3.359375 q 0,-0.578125 -0.109375,-0.859375 -0.109375,-0.28125 -0.390625,-0.453125 -0.265625,-0.171875 -0.640625,-0.171875 -0.59375,0 -1.03125,0.390625 -0.4375,0.375 -0.4375,1.4375 v 3.015625 z m 10.848373,-4.484375 h -5.03125 v -0.875 h 5.03125 z m 0,2.3125 h -5.03125 v -0.875 h 5.03125 z m 4.035583,2.171875 v -1.828125 h -3.296875 v -0.859375 l 3.46875,-4.9375 h 0.765625 v 4.9375 h 1.03125 v 0.859375 h -1.03125 v 1.828125 z m 0,-2.6875 v -3.4375 l -2.375,3.4375 z"
+       fill-rule="nonzero"
+       id="path52" />
+    <path
+       fill="#000000"
+       d="m 47.449534,92.888993 0.921875,0.125 q -0.15625,0.953125 -0.78125,1.5 -0.625,0.53125 -1.53125,0.53125 -1.125,0 -1.8125,-0.734375 -0.6875,-0.75 -0.6875,-2.125 0,-0.90625 0.296875,-1.578125 0.296875,-0.671875 0.890625,-1 0.609375,-0.34375 1.328125,-0.34375 0.890625,0 1.46875,0.46875 0.578125,0.453125 0.734375,1.28125 l -0.90625,0.140625 q -0.140625,-0.546875 -0.46875,-0.828125 -0.328125,-0.28125 -0.796875,-0.28125 -0.703125,0 -1.15625,0.515625 -0.4375,0.5 -0.4375,1.59375 0,1.109375 0.421875,1.625 0.4375,0.5 1.125,0.5 0.546875,0 0.90625,-0.34375 0.375,-0.34375 0.484375,-1.046875 z m 5.328125,1.34375 q -0.53125,0.453125 -1.015625,0.640625 -0.46875,0.171875 -1.015625,0.171875 -0.921875,0 -1.40625,-0.4375 -0.484375,-0.453125 -0.484375,-1.140625 0,-0.40625 0.171875,-0.734375 0.1875,-0.34375 0.484375,-0.546875 0.3125,-0.203125 0.6875,-0.3125 0.265625,-0.0625 0.828125,-0.140625 1.125,-0.125 1.671875,-0.3125 0,-0.203125 0,-0.25 0,-0.578125 -0.265625,-0.8125 -0.359375,-0.3125 -1.0625,-0.3125 -0.65625,0 -0.984375,0.234375 -0.3125,0.234375 -0.453125,0.8125 l -0.921875,-0.125 q 0.125,-0.578125 0.40625,-0.9375 0.296875,-0.375 0.828125,-0.5625 0.546875,-0.203125 1.25,-0.203125 0.71875,0 1.15625,0.171875 0.4375,0.171875 0.640625,0.421875 0.21875,0.25 0.296875,0.640625 0.04687,0.234375 0.04687,0.859375 v 1.25 q 0,1.296875 0.0625,1.65625 0.0625,0.34375 0.234375,0.65625 h -0.96875 q -0.15625,-0.296875 -0.1875,-0.6875 z m -0.07813,-2.078125 q -0.515625,0.203125 -1.53125,0.34375 -0.578125,0.07813 -0.828125,0.1875 -0.234375,0.109375 -0.359375,0.3125 -0.125,0.1875 -0.125,0.4375 0,0.375 0.28125,0.625 0.28125,0.25 0.828125,0.25 0.53125,0 0.953125,-0.234375 0.421875,-0.234375 0.625,-0.65625 0.15625,-0.3125 0.15625,-0.9375 z m 2.395248,4.890625 v -7.65625 h 0.859375 v 0.71875 q 0.296875,-0.421875 0.671875,-0.625 0.390625,-0.21875 0.921875,-0.21875 0.703125,0 1.25,0.375 0.546875,0.359375 0.8125,1.03125 0.28125,0.65625 0.28125,1.453125 0,0.84375 -0.3125,1.53125 -0.296875,0.671875 -0.875,1.03125 -0.578125,0.359375 -1.21875,0.359375 -0.46875,0 -0.84375,-0.1875 -0.375,-0.203125 -0.609375,-0.515625 v 2.703125 z m 0.84375,-4.859375 q 0,1.0625 0.4375,1.578125 0.4375,0.515625 1.046875,0.515625 0.625,0 1.0625,-0.53125 0.453125,-0.53125 0.453125,-1.640625 0,-1.046875 -0.4375,-1.578125 -0.4375,-0.53125 -1.046875,-0.53125 -0.59375,0 -1.0625,0.5625 -0.453125,0.5625 -0.453125,1.625 z m 10.004623,-1.75 H 60.9119 v -0.875 h 5.03125 z m 0,2.3125 H 60.9119 v -0.875 h 5.03125 z m 5.894959,-3.59375 -0.921875,0.07813 q -0.125,-0.546875 -0.359375,-0.796875 -0.375,-0.40625 -0.9375,-0.40625 -0.4375,0 -0.78125,0.25 -0.4375,0.328125 -0.703125,0.953125 -0.25,0.609375 -0.265625,1.75 0.34375,-0.515625 0.828125,-0.765625 0.5,-0.25 1.03125,-0.25 0.9375,0 1.59375,0.703125 0.65625,0.6875 0.65625,1.765625 0,0.71875 -0.3125,1.34375 -0.3125,0.609375 -0.859375,0.9375 -0.53125,0.328125 -1.21875,0.328125 -1.171875,0 -1.90625,-0.859375 -0.734375,-0.859375 -0.734375,-2.828125 0,-2.21875 0.8125,-3.21875 0.71875,-0.875 1.921875,-0.875 0.890625,0 1.46875,0.5 0.578125,0.5 0.6875,1.390625 z m -3.8125,3.296875 q 0,0.484375 0.203125,0.921875 0.203125,0.4375 0.5625,0.671875 0.375,0.234375 0.78125,0.234375 0.59375,0 1.015625,-0.46875 0.4375,-0.484375 0.4375,-1.3125 0,-0.78125 -0.421875,-1.234375 -0.421875,-0.46875 -1.0625,-0.46875 -0.640625,0 -1.078125,0.46875 -0.4375,0.453125 -0.4375,1.1875 z"
+       fill-rule="nonzero"
+       id="path53" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 70.118644,25.932203 66.015746,48"
+       fill-rule="evenodd"
+       id="path54" />
+    <path
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 76.249364,30.389853 50.179396,36.48539"
+       fill-rule="evenodd"
+       id="path55" />
+    <path
+       fill="#674ea7"
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linecap="butt"
+       d="m 70.927444,26.520283 c 1.068543,-1.469612 3.126129,-1.794731 4.595734,-0.726181 1.469619,1.06855 1.794738,3.126137 0.726181,4.595749 -1.068543,1.469605 -3.12613,1.794724 -4.595734,0.726174 -1.46962,-1.06855 -1.794739,-3.126137 -0.726181,-4.595742 z"
+       fill-rule="nonzero"
+       id="path56" />
+    <path
+       fill="#674ea7"
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linecap="butt"
+       d="m 124.48604,69.547103 9.28357,2.665665 -5.39816,-8.009369 z"
+       fill-rule="evenodd"
+       id="path57" />
+  </g>
+</svg>
diff --git a/_content/blog/generic-slice-functions/2_sample_slice_6_8.svg b/_content/blog/generic-slice-functions/2_sample_slice_6_8.svg
new file mode 100644
index 0000000..59f80df
--- /dev/null
+++ b/_content/blog/generic-slice-functions/2_sample_slice_6_8.svg
@@ -0,0 +1,435 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   version="1.1"
+   viewBox="0 0 652 176"
+   fill="none"
+   stroke="none"
+   stroke-linecap="square"
+   stroke-miterlimit="10"
+   id="svg63"
+   sodipodi:docname="2_sample_slice_6_8.svg"
+   width="652"
+   height="176"
+   inkscape:version="1.3.2 (091e20e, 2023-11-25)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg">
+  <defs
+     id="defs63" />
+  <sodipodi:namedview
+     id="namedview63"
+     pagecolor="#ffffff"
+     bordercolor="#000000"
+     borderopacity="0.25"
+     inkscape:showpageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     inkscape:deskcolor="#d1d1d1"
+     inkscape:zoom="0.87407408"
+     inkscape:cx="480.50847"
+     inkscape:cy="269.42796"
+     inkscape:window-width="1584"
+     inkscape:window-height="794"
+     inkscape:window-x="0"
+     inkscape:window-y="38"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="g63" />
+  <clipPath
+     id="g2ae8329a7cf_0_0.0">
+    <path
+       d="M 0,0 H 960 V 540 H 0 Z"
+       clip-rule="nonzero"
+       id="path1" />
+  </clipPath>
+  <g
+     clip-path="url(#g2ae8329a7cf_0_0.0)"
+     id="g63">
+    <path
+       fill="#ffffff"
+       d="M 0,0 H 652.24577 V 175.04238 H 0 Z"
+       fill-rule="evenodd"
+       id="path2"
+       style="stroke-width:0.469294" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 259.74418,73.949153 h 40.19424 v 40.000007 h -40.19424 z"
+       fill-rule="nonzero"
+       id="path3" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 299.93842,73.949153 h 40.19421 v 40.000007 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path4" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 340.13264,73.949153 h 40.19421 v 40.000007 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path5" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 380.32684,73.949153 h 40.19424 v 40.000007 h -40.19424 z"
+       fill-rule="nonzero"
+       id="path6" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 420.5211,73.949153 h 40.19421 V 113.94916 H 420.5211 Z"
+       fill-rule="nonzero"
+       id="path7" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 460.71531,73.949153 h 40.19421 v 40.000007 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path8" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 500.90954,73.949153 h 40.19421 v 40.000007 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path9" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 541.10374,73.949153 h 40.19427 v 40.000007 h -40.19427 z"
+       fill-rule="nonzero"
+       id="path10" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 259.74418,73.450463 V 114.44784"
+       fill-rule="nonzero"
+       id="path11" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 299.93842,73.450463 V 114.44784"
+       fill-rule="nonzero"
+       id="path12" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 340.13264,73.450463 V 114.44784"
+       fill-rule="nonzero"
+       id="path13" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 380.32684,73.450463 V 114.44784"
+       fill-rule="nonzero"
+       id="path14" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 420.5211,73.450463 V 114.44784"
+       fill-rule="nonzero"
+       id="path15" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 460.71531,73.450463 V 114.44784"
+       fill-rule="nonzero"
+       id="path16" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 500.90954,73.450463 V 114.44784"
+       fill-rule="nonzero"
+       id="path17" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 541.10374,73.450463 V 114.44784"
+       fill-rule="nonzero"
+       id="path18" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 581.29804,73.450463 V 114.44784"
+       fill-rule="nonzero"
+       id="path19" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 259.24549,73.949153 H 581.79667"
+       fill-rule="nonzero"
+       id="path20" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 259.24549,113.94916 H 581.79667"
+       fill-rule="nonzero"
+       id="path21" />
+    <path
+       fill="#1155cc"
+       d="m 269.61918,98.405403 v -9.5625 h 1.07812 v 0.890625 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.265625 1.15625,-0.265625 0.875,0 1.54688,0.453125 0.6875,0.453125 1.03125,1.28125 0.34375,0.828125 0.34375,1.828125 0,1.046875 -0.375,1.90625 -0.375,0.84375 -1.10938,1.296875 -0.71875,0.453125 -1.53125,0.453125 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.078125 q 0,1.34375 0.53125,1.984375 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.046875 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.671875 -1.29687,-0.671875 -0.75,0 -1.32813,0.703125 -0.57812,0.703125 -0.57812,2.03125 z m 6.02185,-1.28125 q 0,-1.6875 0.34375,-2.71875 0.35937,-1.03125 1.04687,-1.59375 0.6875,-0.5625 1.71875,-0.5625 0.78125,0 1.35938,0.3125 0.57812,0.296875 0.95312,0.890625 0.375,0.578125 0.59375,1.421875 0.21875,0.828125 0.21875,2.25 0,1.671875 -0.35937,2.703125 -0.34375,1.03125 -1.03125,1.59375 -0.67188,0.5625 -1.73438,0.5625 -1.375,0 -2.15625,-0.984375 -0.95312,-1.1875 -0.95312,-3.875 z m 1.20312,0 q 0,2.34375 0.54688,3.125 0.5625,0.78125 1.35937,0.78125 0.8125,0 1.35938,-0.78125 0.5625,-0.78125 0.5625,-3.125 0,-2.359375 -0.5625,-3.125 -0.54688,-0.78125 -1.35938,-0.78125 -0.8125,0 -1.29687,0.6875 -0.60938,0.875 -0.60938,3.21875 z"
+       fill-rule="nonzero"
+       id="path22" />
+    <path
+       fill="#1155cc"
+       d="m 309.81342,98.405403 v -9.5625 h 1.07812 v 0.890625 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.265625 1.15625,-0.265625 0.875,0 1.54688,0.453125 0.6875,0.453125 1.03125,1.28125 0.34375,0.828125 0.34375,1.828125 0,1.046875 -0.375,1.90625 -0.375,0.84375 -1.10938,1.296875 -0.71875,0.453125 -1.53125,0.453125 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.078125 q 0,1.34375 0.53125,1.984375 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.046875 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.671875 -1.29687,-0.671875 -0.75,0 -1.32813,0.703125 -0.57812,0.703125 -0.57812,2.03125 z m 10.44372,3.421875 h -1.17187 v -7.46875 q -0.42188,0.40625 -1.10938,0.8125 -0.6875,0.40625 -1.23437,0.609375 v -1.140625 q 0.98437,-0.453125 1.71875,-1.109375 0.73437,-0.671875 1.03125,-1.28125 h 0.76562 z"
+       fill-rule="nonzero"
+       id="path23" />
+    <path
+       fill="#1155cc"
+       d="m 350.00764,98.405403 v -9.5625 h 1.07812 v 0.890625 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.265625 1.15625,-0.265625 0.875,0 1.54688,0.453125 0.6875,0.453125 1.03125,1.28125 0.34375,0.828125 0.34375,1.828125 0,1.046875 -0.375,1.90625 -0.375,0.84375 -1.10938,1.296875 -0.71875,0.453125 -1.53125,0.453125 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.078125 q 0,1.34375 0.53125,1.984375 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.046875 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.671875 -1.29687,-0.671875 -0.75,0 -1.32813,0.703125 -0.57812,0.703125 -0.57812,2.03125 z m 12.1781,2.296875 v 1.125 h -6.29688 q -0.0156,-0.421875 0.14063,-0.8125 0.23437,-0.640625 0.76562,-1.265625 0.53125,-0.625 1.53125,-1.453125 1.5625,-1.265625 2.10938,-2.015625 0.54687,-0.75 0.54687,-1.40625 0,-0.703125 -0.5,-1.171875 -0.5,-0.484375 -1.29687,-0.484375 -0.85938,0 -1.375,0.515625 -0.5,0.5 -0.5,1.390625 l -1.20313,-0.109375 q 0.125,-1.359375 0.92188,-2.0625 0.8125,-0.703125 2.17187,-0.703125 1.375,0 2.17188,0.765625 0.8125,0.75 0.8125,1.875 0,0.578125 -0.23438,1.140625 -0.23437,0.546875 -0.78125,1.15625 -0.54687,0.609375 -1.8125,1.671875 -1.04687,0.890625 -1.35937,1.21875 -0.29688,0.3125 -0.48438,0.625 z"
+       fill-rule="nonzero"
+       id="path24" />
+    <path
+       fill="#1155cc"
+       d="m 390.20184,98.405403 v -9.5625 h 1.07812 v 0.890625 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.265625 1.15625,-0.265625 0.875,0 1.54688,0.453125 0.6875,0.453125 1.03125,1.28125 0.34375,0.828125 0.34375,1.828125 0,1.046875 -0.375,1.90625 -0.375,0.84375 -1.10938,1.296875 -0.71875,0.453125 -1.53125,0.453125 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.078125 q 0,1.34375 0.53125,1.984375 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.046875 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.671875 -1.29687,-0.671875 -0.75,0 -1.32813,0.703125 -0.57812,0.703125 -0.57812,2.03125 z m 6.03747,0.90625 1.17188,-0.15625 q 0.20312,1 0.6875,1.4375 0.48437,0.4375 1.17187,0.4375 0.82813,0 1.39063,-0.578125 0.57812,-0.578125 0.57812,-1.421875 0,-0.796875 -0.53125,-1.3125 -0.51562,-0.53125 -1.32812,-0.53125 -0.34375,0 -0.82813,0.125 l 0.125,-1.03125 q 0.125,0.01563 0.1875,0.01563 0.75,0 1.34375,-0.390625 0.60938,-0.390625 0.60938,-1.203125 0,-0.640625 -0.4375,-1.0625 -0.4375,-0.421875 -1.125,-0.421875 -0.6875,0 -1.14063,0.4375 -0.45312,0.421875 -0.59375,1.28125 l -1.17187,-0.21875 q 0.21875,-1.171875 0.98437,-1.8125 0.76563,-0.65625 1.89063,-0.65625 0.78125,0 1.4375,0.34375 0.65625,0.328125 1,0.90625 0.35937,0.578125 0.35937,1.234375 0,0.609375 -0.34375,1.125 -0.32812,0.5 -0.96875,0.796875 0.84375,0.203125 1.3125,0.828125 0.46875,0.609375 0.46875,1.53125 0,1.25 -0.92187,2.125 -0.90625,0.859375 -2.29688,0.859375 -1.25,0 -2.09375,-0.75 -0.82812,-0.75 -0.9375,-1.9375 z"
+       fill-rule="nonzero"
+       id="path25" />
+    <path
+       fill="#1155cc"
+       d="m 430.3961,98.405403 v -9.5625 h 1.07812 v 0.890625 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.265625 1.15625,-0.265625 0.875,0 1.54688,0.453125 0.6875,0.453125 1.03125,1.28125 0.34375,0.828125 0.34375,1.828125 0,1.046875 -0.375,1.90625 -0.375,0.84375 -1.10938,1.296875 -0.71875,0.453125 -1.53125,0.453125 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.078125 q 0,1.34375 0.53125,1.984375 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.046875 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.671875 -1.29687,-0.671875 -0.75,0 -1.32813,0.703125 -0.57812,0.703125 -0.57812,2.03125 z m 9.78747,3.421875 v -2.28125 h -4.14062 v -1.078125 l 4.34375,-6.1875 h 0.96875 v 6.1875 h 1.28125 v 1.078125 h -1.28125 v 2.28125 z m 0,-3.359375 v -4.296875 l -2.98437,4.296875 z"
+       fill-rule="nonzero"
+       id="path26" />
+    <path
+       fill="#1155cc"
+       d="m 470.59031,98.405403 v -9.5625 h 1.07812 v 0.890625 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.265625 1.15625,-0.265625 0.875,0 1.54688,0.453125 0.6875,0.453125 1.03125,1.28125 0.34375,0.828125 0.34375,1.828125 0,1.046875 -0.375,1.90625 -0.375,0.84375 -1.10938,1.296875 -0.71875,0.453125 -1.53125,0.453125 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.078125 q 0,1.34375 0.53125,1.984375 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.046875 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.671875 -1.29687,-0.671875 -0.75,0 -1.32813,0.703125 -0.57812,0.703125 -0.57812,2.03125 z m 6.02185,0.921875 1.23437,-0.109375 q 0.14063,0.90625 0.64063,1.359375 0.5,0.453125 1.20312,0.453125 0.84375,0 1.42188,-0.640625 0.59375,-0.640625 0.59375,-1.6875 0,-1 -0.5625,-1.578125 -0.5625,-0.59375 -1.48438,-0.59375 -0.5625,0 -1.01562,0.265625 -0.45313,0.25 -0.71875,0.671875 l -1.09375,-0.15625 0.92187,-4.890625 h 4.75 v 1.109375 h -3.8125 l -0.51562,2.5625 q 0.85937,-0.59375 1.79687,-0.59375 1.25,0 2.10938,0.875 0.85937,0.859375 0.85937,2.21875 0,1.296875 -0.75,2.234375 -0.92187,1.15625 -2.5,1.15625 -1.3125,0 -2.14062,-0.71875 -0.8125,-0.734375 -0.9375,-1.9375 z"
+       fill-rule="nonzero"
+       id="path27" />
+    <path
+       fill="#434343"
+       d="m 510.78454,98.405403 v -9.5625 h 1.07812 v 0.890625 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.265625 1.15625,-0.265625 0.875,0 1.54688,0.453125 0.6875,0.453125 1.03125,1.28125 0.34375,0.828125 0.34375,1.828125 0,1.046875 -0.375,1.90625 -0.375,0.84375 -1.10938,1.296875 -0.71875,0.453125 -1.53125,0.453125 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.078125 q 0,1.34375 0.53125,1.984375 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.046875 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.671875 -1.29687,-0.671875 -0.75,0 -1.32813,0.703125 -0.57812,0.703125 -0.57812,2.03125 z m 12.09997,-3.78125 -1.15625,0.09375 q -0.15625,-0.6875 -0.4375,-1 -0.48437,-0.5 -1.17187,-0.5 -0.5625,0 -0.98438,0.3125 -0.5625,0.390625 -0.89062,1.171875 -0.3125,0.765625 -0.3125,2.203125 0.42187,-0.640625 1.03125,-0.953125 0.60937,-0.3125 1.28125,-0.3125 1.17187,0 1.98437,0.859375 0.82813,0.859375 0.82813,2.234375 0,0.890625 -0.39063,1.671875 -0.375,0.765625 -1.0625,1.171875 -0.67187,0.40625 -1.53125,0.40625 -1.46875,0 -2.39062,-1.0625 -0.92188,-1.078125 -0.92188,-3.5625 0,-2.765625 1.01563,-4.015625 0.90625,-1.09375 2.40625,-1.09375 1.125,0 1.84375,0.640625 0.71875,0.625 0.85937,1.734375 z m -4.78125,4.109375 q 0,0.609375 0.25,1.171875 0.26563,0.546875 0.71875,0.84375 0.46875,0.28125 0.98438,0.28125 0.73437,0 1.26562,-0.59375 0.54688,-0.609375 0.54688,-1.640625 0,-0.984375 -0.53125,-1.546875 -0.53125,-0.578125 -1.32813,-0.578125 -0.79687,0 -1.35937,0.578125 -0.54688,0.5625 -0.54688,1.484375 z"
+       fill-rule="nonzero"
+       id="path28" />
+    <path
+       fill="#434343"
+       d="m 550.97874,98.405403 v -9.5625 h 1.07812 v 0.890625 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.265625 1.15625,-0.265625 0.875,0 1.54688,0.453125 0.6875,0.453125 1.03125,1.28125 0.34375,0.828125 0.34375,1.828125 0,1.046875 -0.375,1.90625 -0.375,0.84375 -1.10938,1.296875 -0.71875,0.453125 -1.53125,0.453125 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.078125 q 0,1.34375 0.53125,1.984375 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.046875 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.671875 -1.29687,-0.671875 -0.75,0 -1.32813,0.703125 -0.57812,0.703125 -0.57812,2.03125 z m 6.09997,-4.875 v -1.125 h 6.1875 v 0.921875 q -0.92187,0.96875 -1.8125,2.578125 -0.89062,1.59375 -1.375,3.296875 -0.35937,1.203125 -0.45312,2.625 h -1.20313 q 0.0156,-1.125 0.4375,-2.71875 0.42188,-1.59375 1.20313,-3.078125 0.79687,-1.484375 1.6875,-2.5 z"
+       fill-rule="nonzero"
+       id="path29" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 247.20874,116.62633 h 39.24411 v 42.01574 h -39.24411 z"
+       fill-rule="evenodd"
+       id="path30" />
+    <path
+       fill="#000000"
+       d="m 256.99,136.95258 q 0,-2.35938 0.48437,-3.79688 0.48438,-1.45312 1.4375,-2.23437 0.96875,-0.78125 2.42188,-0.78125 1.07812,0 1.89062,0.4375 0.8125,0.42187 1.32813,1.25 0.53125,0.8125 0.82812,1.98437 0.3125,1.15625 0.3125,3.14063 0,2.35937 -0.48437,3.8125 -0.48438,1.4375 -1.45313,2.23437 -0.95312,0.78125 -2.42187,0.78125 -1.92188,0 -3.03125,-1.39062 -1.3125,-1.67188 -1.3125,-5.4375 z m 1.67187,0 q 0,3.29687 0.76563,4.39062 0.78125,1.07813 1.90625,1.07813 1.14062,0 1.90625,-1.09375 0.76562,-1.09375 0.76562,-4.375 0,-3.29688 -0.76562,-4.375 -0.76563,-1.07813 -1.92188,-1.07813 -1.125,0 -1.79687,0.95313 -0.85938,1.21875 -0.85938,4.5 z"
+       fill-rule="nonzero"
+       id="path31" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 491.74944,111.77593 h 70.07873 v 51.71653 h -70.07873 z"
+       fill-rule="evenodd"
+       id="path32" />
+    <path
+       fill="#000000"
+       d="m 501.6088,133.57593 v -9.54688 h 1.17187 v 9.54688 z m 7.71112,-2.21875 1.20312,0.14062 q -0.28125,1.0625 -1.0625,1.65625 -0.76562,0.57813 -1.96875,0.57813 -1.51562,0 -2.40625,-0.9375 -0.89062,-0.9375 -0.89062,-2.60938 0,-1.75 0.89062,-2.70312 0.90625,-0.96875 2.34375,-0.96875 1.39063,0 2.26563,0.9375 0.875,0.9375 0.875,2.65625 0,0.10937 0,0.3125 h -5.15625 q 0.0625,1.14062 0.64062,1.75 0.57813,0.59375 1.4375,0.59375 0.65625,0 1.10938,-0.32813 0.45312,-0.34375 0.71875,-1.07812 z m -3.84375,-1.90625 h 3.85937 q -0.0781,-0.85938 -0.4375,-1.29688 -0.5625,-0.6875 -1.45312,-0.6875 -0.8125,0 -1.35938,0.54688 -0.54687,0.53125 -0.60937,1.4375 z m 6.52185,4.125 v -6.90625 h 1.0625 v 0.98437 q 0.75,-1.14062 2.1875,-1.14062 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26563,0.35937 0.375,0.85937 0.0625,0.32813 0.0625,1.14063 v 4.25 h -1.17187 v -4.20313 q 0,-0.71875 -0.14063,-1.0625 -0.14062,-0.35937 -0.48437,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29688,0.46875 -0.54687,0.46875 -0.54687,1.79688 v 3.78125 z m 9.66248,2.8125 q -0.98438,-1.23438 -1.65625,-2.875 -0.65625,-1.64063 -0.65625,-3.39063 0,-1.54687 0.5,-2.96875 0.57812,-1.64062 1.8125,-3.28125 h 0.82812 q -0.78125,1.35938 -1.03125,1.9375 -0.40625,0.89063 -0.625,1.875 -0.28125,1.21875 -0.28125,2.4375 0,3.14063 1.9375,6.26563 z m 1.7196,-4.875 1.15625,-0.1875 q 0.10938,0.70312 0.54688,1.07812 0.45312,0.35938 1.25,0.35938 0.8125,0 1.20312,-0.32813 0.39063,-0.32812 0.39063,-0.76562 0,-0.39063 -0.35938,-0.625 -0.23437,-0.15625 -1.1875,-0.39063 -1.29687,-0.32812 -1.79687,-0.5625 -0.48438,-0.25 -0.75,-0.65625 -0.25,-0.42187 -0.25,-0.9375 0,-0.45312 0.20312,-0.84375 0.21875,-0.40625 0.57813,-0.67187 0.28125,-0.1875 0.75,-0.32813 0.46875,-0.14062 1.01562,-0.14062 0.8125,0 1.42188,0.23437 0.60937,0.23438 0.90625,0.64063 0.29687,0.39062 0.40625,1.0625 l -1.14063,0.15625 q -0.0781,-0.53125 -0.45312,-0.82813 -0.375,-0.3125 -1.0625,-0.3125 -0.8125,0 -1.15625,0.26563 -0.34375,0.26562 -0.34375,0.625 0,0.23437 0.14062,0.42187 0.15625,0.1875 0.45313,0.3125 0.17187,0.0625 1.03125,0.29688 1.25,0.32812 1.73437,0.54687 0.5,0.20313 0.78125,0.60938 0.28125,0.40625 0.28125,1 0,0.59375 -0.34375,1.10937 -0.34375,0.51563 -1,0.79688 -0.64062,0.28125 -1.45312,0.28125 -1.34375,0 -2.04688,-0.5625 -0.70312,-0.5625 -0.90625,-1.65625 z m 7.89844,4.875 h -0.82813 q 1.9375,-3.125 1.9375,-6.26563 0,-1.21875 -0.28125,-2.42187 -0.21875,-0.98438 -0.60937,-1.875 -0.26563,-0.59375 -1.04688,-1.95313 h 0.82813 q 1.23437,1.64063 1.8125,3.28125 0.5,1.42188 0.5,2.96875 0,1.75 -0.67188,3.39063 -0.67187,1.64062 -1.64062,2.875 z"
+       fill-rule="nonzero"
+       id="path33" />
+    <path
+       fill="#000000"
+       d="m 507.7963,143.96656 h -6.3125 v -1.09375 h 6.3125 z m 0,2.89062 h -6.3125 v -1.09375 h 6.3125 z m 11.06451,-4.48437 -1.15625,0.0937 q -0.15625,-0.6875 -0.4375,-1 -0.48437,-0.5 -1.17187,-0.5 -0.5625,0 -0.98438,0.3125 -0.5625,0.39062 -0.89062,1.17187 -0.3125,0.76563 -0.3125,2.20313 0.42187,-0.64063 1.03125,-0.95313 0.60937,-0.3125 1.28125,-0.3125 1.17187,0 1.98437,0.85938 0.82813,0.85937 0.82813,2.23437 0,0.89063 -0.39063,1.67188 -0.375,0.76562 -1.0625,1.17187 -0.67187,0.40625 -1.53125,0.40625 -1.46875,0 -2.39062,-1.0625 -0.92188,-1.07812 -0.92188,-3.5625 0,-2.76562 1.01563,-4.01562 0.90625,-1.09375 2.40625,-1.09375 1.125,0 1.84375,0.64062 0.71875,0.625 0.85937,1.73438 z m -4.78125,4.10937 q 0,0.60938 0.25,1.17188 0.26563,0.54687 0.71875,0.84375 0.46875,0.28125 0.98438,0.28125 0.73437,0 1.26562,-0.59375 0.54688,-0.60938 0.54688,-1.64063 0,-0.98437 -0.53125,-1.54687 -0.53125,-0.57813 -1.32813,-0.57813 -0.79687,0 -1.35937,0.57813 -0.54688,0.5625 -0.54688,1.48437 z"
+       fill-rule="nonzero"
+       id="path34" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 571.74944,111.77593 h 70.07873 v 51.71653 h -70.07873 z"
+       fill-rule="evenodd"
+       id="path35" />
+    <path
+       fill="#000000"
+       d="m 586.14004,131.04468 1.15625,0.15625 q -0.1875,1.1875 -0.96875,1.85937 -0.78125,0.67188 -1.92188,0.67188 -1.40625,0 -2.28125,-0.92188 -0.85937,-0.9375 -0.85937,-2.65625 0,-1.125 0.375,-1.96875 0.375,-0.84375 1.125,-1.25 0.76562,-0.42187 1.65625,-0.42187 1.125,0 1.84375,0.57812 0.71875,0.5625 0.92187,1.60938 l -1.14062,0.17187 q -0.17188,-0.70312 -0.59375,-1.04687 -0.40625,-0.35938 -0.98438,-0.35938 -0.89062,0 -1.45312,0.64063 -0.54688,0.64062 -0.54688,2 0,1.40625 0.53125,2.03125 0.54688,0.625 1.40625,0.625 0.6875,0 1.14063,-0.42188 0.46875,-0.42187 0.59375,-1.29687 z m 6.66406,1.67187 q -0.65625,0.5625 -1.26562,0.79688 -0.59375,0.21875 -1.28125,0.21875 -1.14063,0 -1.75,-0.54688 -0.60938,-0.5625 -0.60938,-1.4375 0,-0.5 0.21875,-0.92187 0.23438,-0.42188 0.60938,-0.67188 0.375,-0.25 0.84375,-0.39062 0.34375,-0.0781 1.04687,-0.17188 1.42188,-0.17187 2.09375,-0.40625 0,-0.23437 0,-0.29687 0,-0.71875 -0.32812,-1.01563 -0.45313,-0.39062 -1.34375,-0.39062 -0.8125,0 -1.21875,0.29687 -0.39063,0.28125 -0.57813,1.01563 l -1.14062,-0.15625 q 0.15625,-0.73438 0.51562,-1.1875 0.35938,-0.45313 1.03125,-0.6875 0.67188,-0.25 1.5625,-0.25 0.89063,0 1.4375,0.20312 0.5625,0.20313 0.8125,0.53125 0.26563,0.3125 0.375,0.79688 0.0469,0.29687 0.0469,1.07812 v 1.5625 q 0,1.625 0.0781,2.0625 0.0781,0.4375 0.29688,0.82813 h -1.21875 q -0.1875,-0.35938 -0.23438,-0.85938 z m -0.0937,-2.60937 q -0.64062,0.26562 -1.92187,0.4375 -0.71875,0.10937 -1.01563,0.25 -0.29687,0.125 -0.46875,0.375 -0.15625,0.25 -0.15625,0.54687 0,0.46875 0.34375,0.78125 0.35938,0.3125 1.04688,0.3125 0.67187,0 1.20312,-0.29687 0.53125,-0.29688 0.78125,-0.8125 0.1875,-0.39063 0.1875,-1.17188 z m 2.9906,6.125 v -9.5625 h 1.07813 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48437,-0.26562 1.15625,-0.26562 0.875,0 1.54687,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10937,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57813,0 -1.04688,-0.25 -0.46875,-0.25 -0.76562,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54688,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54687,-1.96875 -0.54688,-0.67187 -1.29688,-0.67187 -0.75,0 -1.32812,0.70312 -0.57813,0.70313 -0.57813,2.03125 z m 8.59998,6.23438 q -0.98438,-1.23438 -1.65625,-2.875 -0.65625,-1.64063 -0.65625,-3.39063 0,-1.54687 0.5,-2.96875 0.57812,-1.64062 1.8125,-3.28125 h 0.82812 q -0.78125,1.35938 -1.03125,1.9375 -0.40625,0.89063 -0.625,1.875 -0.28125,1.21875 -0.28125,2.4375 0,3.14063 1.9375,6.26563 z m 1.7196,-4.875 1.15625,-0.1875 q 0.10938,0.70312 0.54688,1.07812 0.45312,0.35938 1.25,0.35938 0.8125,0 1.20312,-0.32813 0.39063,-0.32812 0.39063,-0.76562 0,-0.39063 -0.35938,-0.625 -0.23437,-0.15625 -1.1875,-0.39063 -1.29687,-0.32812 -1.79687,-0.5625 -0.48438,-0.25 -0.75,-0.65625 -0.25,-0.42187 -0.25,-0.9375 0,-0.45312 0.20312,-0.84375 0.21875,-0.40625 0.57813,-0.67187 0.28125,-0.1875 0.75,-0.32813 0.46875,-0.14062 1.01562,-0.14062 0.8125,0 1.42188,0.23437 0.60937,0.23438 0.90625,0.64063 0.29687,0.39062 0.40625,1.0625 l -1.14063,0.15625 q -0.0781,-0.53125 -0.45312,-0.82813 -0.375,-0.3125 -1.0625,-0.3125 -0.8125,0 -1.15625,0.26563 -0.34375,0.26562 -0.34375,0.625 0,0.23437 0.14062,0.42187 0.15625,0.1875 0.45313,0.3125 0.17187,0.0625 1.03125,0.29688 1.25,0.32812 1.73437,0.54687 0.5,0.20313 0.78125,0.60938 0.28125,0.40625 0.28125,1 0,0.59375 -0.34375,1.10937 -0.34375,0.51563 -1,0.79688 -0.64062,0.28125 -1.45312,0.28125 -1.34375,0 -2.04688,-0.5625 -0.70312,-0.5625 -0.90625,-1.65625 z m 7.89844,4.875 h -0.82813 q 1.9375,-3.125 1.9375,-6.26563 0,-1.21875 -0.28125,-2.42187 -0.21875,-0.98438 -0.60937,-1.875 -0.26563,-0.59375 -1.04688,-1.95313 h 0.82813 q 1.23437,1.64063 1.8125,3.28125 0.5,1.42188 0.5,2.96875 0,1.75 -0.67188,3.39063 -0.67187,1.64062 -1.64062,2.875 z"
+       fill-rule="nonzero"
+       id="path36" />
+    <path
+       fill="#000000"
+       d="m 587.7963,143.96656 h -6.3125 v -1.09375 h 6.3125 z m 0,2.89062 h -6.3125 v -1.09375 h 6.3125 z m 6.79889,-2.45312 q -0.73438,-0.26563 -1.09375,-0.76563 -0.34375,-0.5 -0.34375,-1.1875 0,-1.03125 0.75,-1.73437 0.75,-0.71875 1.98437,-0.71875 1.25,0 2.01563,0.73437 0.76562,0.71875 0.76562,1.75 0,0.67188 -0.35937,1.17188 -0.34375,0.48437 -1.04688,0.75 0.875,0.28125 1.32813,0.92187 0.46875,0.64063 0.46875,1.51563 0,1.23437 -0.875,2.0625 -0.85938,0.82812 -2.26563,0.82812 -1.42187,0 -2.28125,-0.82812 -0.85937,-0.84375 -0.85937,-2.09375 0,-0.92188 0.46875,-1.54688 0.46875,-0.64062 1.34375,-0.85937 z m -0.23438,-1.98438 q 0,0.67188 0.4375,1.10938 0.4375,0.42187 1.125,0.42187 0.67188,0 1.10938,-0.42187 0.4375,-0.42188 0.4375,-1.04688 0,-0.64062 -0.45313,-1.07812 -0.4375,-0.4375 -1.10937,-0.4375 -0.67188,0 -1.10938,0.4375 -0.4375,0.42187 -0.4375,1.01562 z m -0.375,4.40625 q 0,0.5 0.23438,0.96875 0.23437,0.46875 0.70312,0.73438 0.46875,0.25 1.01563,0.25 0.82812,0 1.375,-0.53125 0.54687,-0.54688 0.54687,-1.39063 0,-0.84375 -0.5625,-1.39062 -0.5625,-0.5625 -1.40625,-0.5625 -0.82812,0 -1.375,0.54687 -0.53125,0.54688 -0.53125,1.375 z"
+       fill-rule="nonzero"
+       id="path37" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 266.83079,116.62633 v 0"
+       fill-rule="evenodd"
+       id="path38" />
+    <path
+       stroke="#595959"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 266.83079,116.62633 v 0"
+       fill-rule="evenodd"
+       id="path39" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 259.72844,115.34286 v 7.96849"
+       fill-rule="evenodd"
+       id="path40" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 259.72844,115.34286 v 7.96849"
+       fill-rule="evenodd"
+       id="path41" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 501.66284,115.32268 v 7.9685"
+       fill-rule="evenodd"
+       id="path42" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 501.66284,115.32268 v 7.9685"
+       fill-rule="evenodd"
+       id="path43" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 582.24554,115.32268 v 7.9685"
+       fill-rule="evenodd"
+       id="path44" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 582.24554,115.32268 v 7.9685"
+       fill-rule="evenodd"
+       id="path45" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 133.68644,23.949153 h 30.96063 v 37.16535 h -30.96063 z"
+       fill-rule="evenodd"
+       id="path46" />
+    <path
+       fill="#000000"
+       d="m 143.03019,44.857283 2.01563,-0.296875 q 0.125,0.578125 0.51562,0.890625 0.40625,0.296875 1.10938,0.296875 0.78125,0 1.17187,-0.28125 0.26563,-0.203125 0.26563,-0.546875 0,-0.21875 -0.14063,-0.375 -0.15625,-0.140625 -0.67187,-0.265625 -2.4375,-0.53125 -3.07813,-0.984375 -0.90625,-0.609375 -0.90625,-1.703125 0,-0.984375 0.78125,-1.65625 0.78125,-0.671875 2.42188,-0.671875 1.54687,0 2.3125,0.515625 0.76562,0.5 1.04687,1.484375 l -1.90625,0.359375 q -0.10937,-0.453125 -0.45312,-0.6875 -0.34375,-0.234375 -0.96875,-0.234375 -0.79688,0 -1.14063,0.21875 -0.23437,0.15625 -0.23437,0.40625 0,0.21875 0.20312,0.375 0.28125,0.203125 1.875,0.5625 1.60938,0.359375 2.25,0.890625 0.625,0.546875 0.625,1.5 0,1.046875 -0.875,1.796875 -0.85937,0.75 -2.57812,0.75 -1.54688,0 -2.45313,-0.625 -0.90625,-0.640625 -1.1875,-1.71875 z"
+       fill-rule="nonzero"
+       id="path47" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 163.74418,25.949153 h 41.94226 v 32.874016 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path48" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 163.74418,58.823169 h 41.94226 v 32.874016 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path49" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 163.74418,91.697183 h 41.94226 v 28.225727 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path50" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 163.74418,25.450463 V 120.4216"
+       fill-rule="nonzero"
+       id="path51" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 205.68644,25.450463 V 120.4216"
+       fill-rule="nonzero"
+       id="path52" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 163.24549,25.949153 h 42.93963"
+       fill-rule="nonzero"
+       id="path53" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 163.24549,58.823169 h 42.93963"
+       fill-rule="nonzero"
+       id="path54" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 163.24549,91.697183 h 42.93963"
+       fill-rule="nonzero"
+       id="path55" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 163.24549,119.92291 h 42.93963"
+       fill-rule="nonzero"
+       id="path56" />
+    <path
+       fill="#000000"
+       d="m 167.40795,47.314153 v -7.65625 h 0.85938 v 0.71875 q 0.29687,-0.421875 0.67187,-0.625 0.39063,-0.21875 0.92188,-0.21875 0.70312,0 1.25,0.375 0.54687,0.359375 0.8125,1.03125 0.28125,0.65625 0.28125,1.453125 0,0.84375 -0.3125,1.53125 -0.29688,0.671875 -0.875,1.03125 -0.57813,0.359375 -1.21875,0.359375 -0.46875,0 -0.84375,-0.1875 -0.375,-0.203125 -0.60938,-0.515625 v 2.703125 z m 0.84375,-4.859375 q 0,1.0625 0.4375,1.578125 0.4375,0.515625 1.04688,0.515625 0.625,0 1.0625,-0.53125 0.45312,-0.53125 0.45312,-1.640625 0,-1.046875 -0.4375,-1.578125 -0.4375,-0.53125 -1.04687,-0.53125 -0.59375,0 -1.0625,0.5625 -0.45313,0.5625 -0.45313,1.625 z m 7.12962,1.890625 0.125,0.828125 q -0.39062,0.09375 -0.70312,0.09375 -0.5,0 -0.78125,-0.15625 -0.28125,-0.171875 -0.40625,-0.4375 -0.10938,-0.265625 -0.10938,-1.109375 v -3.171875 h -0.6875 v -0.734375 h 0.6875 v -1.359375 l 0.9375,-0.5625 v 1.921875 h 0.9375 v 0.734375 h -0.9375 v 3.234375 q 0,0.390625 0.0469,0.515625 0.0469,0.109375 0.15625,0.1875 0.10938,0.0625 0.32813,0.0625 0.15625,0 0.40625,-0.04687 z m 0.89815,0.84375 v -5.53125 h 0.84375 v 0.84375 q 0.32813,-0.59375 0.59375,-0.78125 0.28125,-0.1875 0.60938,-0.1875 0.46875,0 0.95312,0.3125 l -0.3125,0.859375 q -0.34375,-0.203125 -0.6875,-0.203125 -0.3125,0 -0.5625,0.1875 -0.23437,0.1875 -0.34375,0.515625 -0.15625,0.5 -0.15625,1.09375 v 2.890625 z"
+       fill-rule="nonzero"
+       id="path57" />
+    <path
+       fill="#000000"
+       d="m 167.39233,78.063163 v -7.625 h 0.9375 v 7.625 z m 6.16435,-1.78125 0.96875,0.125 q -0.23437,0.84375 -0.85937,1.3125 -0.60938,0.46875 -1.57813,0.46875 -1.20312,0 -1.92187,-0.75 -0.70313,-0.75 -0.70313,-2.09375 0,-1.390625 0.71875,-2.15625 0.71875,-0.78125 1.85938,-0.78125 1.10937,0 1.8125,0.765625 0.70312,0.75 0.70312,2.125 0,0.07813 0,0.234375 h -4.125 q 0.0469,0.921875 0.51563,1.40625 0.46875,0.484375 1.15625,0.484375 0.51562,0 0.875,-0.265625 0.35937,-0.28125 0.57812,-0.875 z m -3.07812,-1.515625 h 3.09375 q -0.0625,-0.6875 -0.35938,-1.046875 -0.45312,-0.53125 -1.15625,-0.53125 -0.64062,0 -1.09375,0.4375 -0.4375,0.421875 -0.48437,1.140625 z m 5.22337,3.296875 v -5.53125 h 0.84375 v 0.796875 q 0.60938,-0.921875 1.75,-0.921875 0.5,0 0.92188,0.1875 0.42187,0.171875 0.625,0.46875 0.21875,0.296875 0.29687,0.6875 0.0469,0.265625 0.0469,0.921875 v 3.390625 h -0.9375 v -3.359375 q 0,-0.578125 -0.10937,-0.859375 -0.10938,-0.28125 -0.39063,-0.453125 -0.26562,-0.171875 -0.64062,-0.171875 -0.59375,0 -1.03125,0.390625 -0.4375,0.375 -0.4375,1.4375 v 3.015625 z m 10.84837,-4.484375 h -5.03125 v -0.875 h 5.03125 z m 0,2.3125 h -5.03125 v -0.875 h 5.03125 z m 5.89496,-3.59375 -0.92187,0.07813 q -0.125,-0.546875 -0.35938,-0.796875 -0.375,-0.40625 -0.9375,-0.40625 -0.4375,0 -0.78125,0.25 -0.4375,0.328125 -0.70312,0.953125 -0.25,0.609375 -0.26563,1.75 0.34375,-0.515625 0.82813,-0.765625 0.5,-0.25 1.03125,-0.25 0.9375,0 1.59375,0.703125 0.65625,0.6875 0.65625,1.765625 0,0.71875 -0.3125,1.34375 -0.3125,0.609375 -0.85938,0.9375 -0.53125,0.328125 -1.21875,0.328125 -1.17187,0 -1.90625,-0.859375 -0.73437,-0.859375 -0.73437,-2.828125 0,-2.21875 0.8125,-3.21875 0.71875,-0.875 1.92187,-0.875 0.89063,0 1.46875,0.5 0.57813,0.5 0.6875,1.390625 z m -3.8125,3.296875 q 0,0.484375 0.20313,0.921875 0.20312,0.4375 0.5625,0.671875 0.375,0.234375 0.78125,0.234375 0.59375,0 1.01562,-0.46875 0.4375,-0.484375 0.4375,-1.3125 0,-0.78125 -0.42187,-1.234375 -0.42188,-0.46875 -1.0625,-0.46875 -0.64063,0 -1.07813,0.46875 -0.4375,0.453125 -0.4375,1.1875 z"
+       fill-rule="nonzero"
+       id="path58" />
+    <path
+       fill="#000000"
+       d="m 171.01733,108.90595 0.92188,0.125 q -0.15625,0.95312 -0.78125,1.5 -0.625,0.53125 -1.53125,0.53125 -1.125,0 -1.8125,-0.73438 -0.6875,-0.75 -0.6875,-2.125 0,-0.90625 0.29687,-1.57812 0.29688,-0.67188 0.89063,-1 0.60937,-0.34375 1.32812,-0.34375 0.89063,0 1.46875,0.46875 0.57813,0.45312 0.73438,1.28125 l -0.90625,0.14062 q -0.14063,-0.54687 -0.46875,-0.82812 -0.32813,-0.28125 -0.79688,-0.28125 -0.70312,0 -1.15625,0.51562 -0.4375,0.5 -0.4375,1.59375 0,1.10938 0.42188,1.625 0.4375,0.5 1.125,0.5 0.54687,0 0.90625,-0.34375 0.375,-0.34375 0.48437,-1.04687 z m 5.32813,1.34375 q -0.53125,0.45312 -1.01563,0.64062 -0.46875,0.17188 -1.01562,0.17188 -0.92188,0 -1.40625,-0.4375 -0.48438,-0.45313 -0.48438,-1.14063 0,-0.40625 0.17188,-0.73437 0.1875,-0.34375 0.48437,-0.54688 0.3125,-0.20312 0.6875,-0.3125 0.26563,-0.0625 0.82813,-0.14062 1.125,-0.125 1.67187,-0.3125 0,-0.20313 0,-0.25 0,-0.57813 -0.26562,-0.8125 -0.35938,-0.3125 -1.0625,-0.3125 -0.65625,0 -0.98438,0.23437 -0.3125,0.23438 -0.45312,0.8125 l -0.92188,-0.125 q 0.125,-0.57812 0.40625,-0.9375 0.29688,-0.375 0.82813,-0.5625 0.54687,-0.20312 1.25,-0.20312 0.71875,0 1.15625,0.17187 0.4375,0.17188 0.64062,0.42188 0.21875,0.25 0.29688,0.64062 0.0469,0.23438 0.0469,0.85938 v 1.25 q 0,1.29687 0.0625,1.65625 0.0625,0.34375 0.23437,0.65625 h -0.96875 q -0.15625,-0.29688 -0.1875,-0.6875 z m -0.0781,-2.07813 q -0.51563,0.20313 -1.53125,0.34375 -0.57813,0.0781 -0.82813,0.1875 -0.23437,0.10938 -0.35937,0.3125 -0.125,0.1875 -0.125,0.4375 0,0.375 0.28125,0.625 0.28125,0.25 0.82812,0.25 0.53125,0 0.95313,-0.23437 0.42187,-0.23438 0.625,-0.65625 0.15625,-0.3125 0.15625,-0.9375 z m 2.39524,4.89063 v -7.65625 h 0.85938 v 0.71875 q 0.29687,-0.42188 0.67187,-0.625 0.39063,-0.21875 0.92188,-0.21875 0.70312,0 1.25,0.375 0.54687,0.35937 0.8125,1.03125 0.28125,0.65625 0.28125,1.45312 0,0.84375 -0.3125,1.53125 -0.29688,0.67188 -0.875,1.03125 -0.57813,0.35938 -1.21875,0.35938 -0.46875,0 -0.84375,-0.1875 -0.375,-0.20313 -0.60938,-0.51563 v 2.70313 z m 0.84375,-4.85938 q 0,1.0625 0.4375,1.57813 0.4375,0.51562 1.04688,0.51562 0.625,0 1.0625,-0.53125 0.45312,-0.53125 0.45312,-1.64062 0,-1.04688 -0.4375,-1.57813 -0.4375,-0.53125 -1.04687,-0.53125 -0.59375,0 -1.0625,0.5625 -0.45313,0.5625 -0.45313,1.625 z m 10.00463,-1.75 h -5.03125 v -0.875 h 5.03125 z m 0,2.3125 h -5.03125 v -0.875 h 5.03125 z m 2.48871,-1.96875 q -0.59375,-0.20312 -0.875,-0.59375 -0.28125,-0.40625 -0.28125,-0.95312 0,-0.84375 0.59375,-1.40625 0.60937,-0.5625 1.59375,-0.5625 1,0 1.60937,0.57812 0.60938,0.57813 0.60938,1.40625 0,0.53125 -0.28125,0.9375 -0.26563,0.39063 -0.84375,0.59375 0.70312,0.23438 1.0625,0.75 0.375,0.5 0.375,1.20313 0,0.98437 -0.6875,1.65625 -0.6875,0.65625 -1.82813,0.65625 -1.125,0 -1.8125,-0.65625 -0.6875,-0.67188 -0.6875,-1.67188 0,-0.75 0.375,-1.25 0.375,-0.5 1.07813,-0.6875 z m -0.1875,-1.57812 q 0,0.53125 0.34375,0.875 0.34375,0.34375 0.90625,0.34375 0.53125,0 0.875,-0.32813 0.35937,-0.34375 0.35937,-0.84375 0,-0.51562 -0.35937,-0.85937 -0.35938,-0.35938 -0.89063,-0.35938 -0.53125,0 -0.89062,0.34375 -0.34375,0.34375 -0.34375,0.82813 z m -0.3125,3.51562 q 0,0.40625 0.1875,0.78125 0.20312,0.375 0.57812,0.57813 0.375,0.20312 0.79688,0.20312 0.67187,0 1.10937,-0.42187 0.4375,-0.4375 0.4375,-1.10938 0,-0.67187 -0.45312,-1.10937 -0.45313,-0.45313 -1.125,-0.45313 -0.65625,0 -1.09375,0.4375 -0.4375,0.4375 -0.4375,1.09375 z"
+       fill-rule="nonzero"
+       id="path59" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 193.68644,41.949153 66.01575,48"
+       fill-rule="evenodd"
+       id="path60" />
+    <path
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 199.81716,46.406803 50.1794,36.48539"
+       fill-rule="evenodd"
+       id="path61" />
+    <path
+       fill="#674ea7"
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linecap="butt"
+       d="m 194.49524,42.537233 c 1.06854,-1.469612 3.12613,-1.794731 4.59573,-0.726181 1.46962,1.06855 1.79474,3.126137 0.72618,4.595749 -1.06854,1.469604 -3.12612,1.794723 -4.59573,0.726173 -1.46962,-1.06855 -1.79474,-3.126136 -0.72618,-4.595741 z"
+       fill-rule="nonzero"
+       id="path62" />
+    <path
+       fill="#674ea7"
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linecap="butt"
+       d="m 248.05384,85.564053 9.28357,2.665665 -5.39817,-8.009369 z"
+       fill-rule="evenodd"
+       id="path63" />
+  </g>
+</svg>
diff --git a/_content/blog/generic-slice-functions/3_delete_s_2_5.svg b/_content/blog/generic-slice-functions/3_delete_s_2_5.svg
new file mode 100644
index 0000000..128bcae
--- /dev/null
+++ b/_content/blog/generic-slice-functions/3_delete_s_2_5.svg
@@ -0,0 +1,900 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   version="1.1"
+   viewBox="0 0 652 391"
+   fill="none"
+   stroke="none"
+   stroke-linecap="square"
+   stroke-miterlimit="10"
+   id="svg138"
+   sodipodi:docname="3_delete_s_2_5.svg"
+   width="652"
+   height="391"
+   inkscape:version="1.3.2 (091e20e, 2023-11-25)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg">
+  <defs
+     id="defs138" />
+  <sodipodi:namedview
+     id="namedview138"
+     pagecolor="#ffffff"
+     bordercolor="#000000"
+     borderopacity="0.25"
+     inkscape:showpageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     inkscape:deskcolor="#d1d1d1"
+     inkscape:zoom="0.43703704"
+     inkscape:cx="480.50847"
+     inkscape:cy="270"
+     inkscape:window-width="1392"
+     inkscape:window-height="605"
+     inkscape:window-x="0"
+     inkscape:window-y="38"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="g138" />
+  <clipPath
+     id="g2ae8329a7cf_0_62.0">
+    <path
+       d="M 0,0 H 960 V 540 H 0 Z"
+       clip-rule="nonzero"
+       id="path1" />
+  </clipPath>
+  <g
+     clip-path="url(#g2ae8329a7cf_0_62.0)"
+     id="g138">
+    <path
+       fill="#ffffff"
+       d="M 0,0 H 646.52542 V 386.69492 H 0 Z"
+       fill-rule="evenodd"
+       id="path2"
+       style="stroke-width:0.694456" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="M 43.389831,166.59268 H 358.35046 v 42.01576 H 43.389831 Z"
+       fill-rule="evenodd"
+       id="path3" />
+    <path
+       fill="#000000"
+       d="m 60.030456,190.80955 q 0,0.21875 -0.109375,0.42187 -0.109375,0.1875 -0.34375,0.32813 -0.234375,0.15625 -0.609375,0.25 -0.359375,0.0781 -0.859375,0.0781 -0.40625,0 -0.796875,-0.0781 -0.390625,-0.0937 -0.6875,-0.28125 -0.296875,-0.17188 -0.5,-0.45313 -0.1875,-0.28125 -0.203125,-0.6875 h -2.421875 q 0,0.60938 0.296875,1.20313 0.296875,0.59375 0.875,1.0625 0.5625,0.46875 1.421875,0.76562 0.859375,0.28125 1.96875,0.28125 1,0 1.8125,-0.21875 0.828125,-0.21875 1.421875,-0.625 0.5625,-0.40625 0.875,-0.95312 0.328125,-0.54688 0.328125,-1.20313 0,-0.71875 -0.328125,-1.23437 -0.3125,-0.51563 -0.859375,-0.875 -0.5625,-0.35938 -1.328125,-0.57813 -0.765625,-0.23437 -1.65625,-0.375 -0.625,-0.0937 -1.03125,-0.21875 -0.390625,-0.125 -0.609375,-0.28125 -0.25,-0.14062 -0.34375,-0.32812 -0.07813,-0.1875 -0.07813,-0.40625 0,-0.21875 0.09375,-0.40625 0.109375,-0.20313 0.3125,-0.34375 0.21875,-0.17188 0.5625,-0.25 0.34375,-0.0937 0.8125,-0.0937 0.546875,0 0.9375,0.14062 0.390625,0.125 0.609375,0.35938 0.171875,0.17187 0.25,0.39062 0.07813,0.20313 0.07813,0.45313 h 2.53125 q 0,-0.6875 -0.296875,-1.26563 -0.296875,-0.57812 -0.859375,-1.01562 -0.578125,-0.42188 -1.40625,-0.65625 -0.8125,-0.23438 -1.84375,-0.23438 -0.984375,0 -1.765625,0.25 -0.78125,0.23438 -1.328125,0.65625 -0.546875,0.42188 -0.84375,0.98438 -0.28125,0.54687 -0.28125,1.15625 0,0.625 0.28125,1.10937 0.28125,0.48438 0.796875,0.84375 0.515625,0.375 1.21875,0.64063 0.71875,0.25 1.578125,0.42187 0.6875,0.14063 1.125,0.26563 0.453125,0.125 0.734375,0.26562 0.265625,0.15625 0.359375,0.32813 0.109375,0.17187 0.109375,0.40625 z m 24.813015,-3.82813 v -2.07812 h -8.625 v 2.07812 z m 0,3.92188 v -2.0625 h -8.625 v 2.0625 z m 19.969269,-0.0937 q 0,0.21875 -0.10937,0.42187 -0.10938,0.1875 -0.34375,0.32813 -0.23438,0.15625 -0.60938,0.25 -0.35937,0.0781 -0.85937,0.0781 -0.40625,0 -0.79688,-0.0781 -0.39062,-0.0937 -0.6875,-0.28125 -0.29687,-0.17188 -0.5,-0.45313 -0.1875,-0.28125 -0.20312,-0.6875 h -2.421879 q 0,0.60938 0.29688,1.20313 0.29687,0.59375 0.875,1.0625 0.562499,0.46875 1.421869,0.76562 0.85938,0.28125 1.96875,0.28125 1,0 1.8125,-0.21875 0.82813,-0.21875 1.42188,-0.625 0.5625,-0.40625 0.875,-0.95312 0.32812,-0.54688 0.32812,-1.20313 0,-0.71875 -0.32812,-1.23437 -0.3125,-0.51563 -0.85938,-0.875 -0.5625,-0.35938 -1.32812,-0.57813 -0.76563,-0.23437 -1.65625,-0.375 -0.625,-0.0937 -1.03125,-0.21875 -0.39063,-0.125 -0.60938,-0.28125 -0.25,-0.14062 -0.34375,-0.32812 -0.0781,-0.1875 -0.0781,-0.40625 0,-0.21875 0.0937,-0.40625 0.10937,-0.20313 0.3125,-0.34375 0.21875,-0.17188 0.5625,-0.25 0.34375,-0.0937 0.8125,-0.0937 0.54687,0 0.9375,0.14062 0.39062,0.125 0.60937,0.35938 0.17188,0.17187 0.25,0.39062 0.0781,0.20313 0.0781,0.45313 h 2.53125 q 0,-0.6875 -0.29688,-1.26563 -0.29687,-0.57812 -0.85937,-1.01562 -0.57813,-0.42188 -1.40625,-0.65625 -0.8125,-0.23438 -1.84375,-0.23438 -0.98438,0 -1.76563,0.25 -0.78125,0.23438 -1.328119,0.65625 -0.54688,0.42188 -0.84375,0.98438 -0.28125,0.54687 -0.28125,1.15625 0,0.625 0.28125,1.10937 0.28125,0.48438 0.79687,0.84375 0.515629,0.375 1.218749,0.64063 0.71875,0.25 1.57813,0.42187 0.6875,0.14063 1.125,0.26563 0.45312,0.125 0.73437,0.26562 0.26563,0.15625 0.35938,0.32813 0.10937,0.17187 0.10937,0.40625 z m 5.36745,-11.29688 v 2.07813 h 2.95312 v 9.85937 h -2.95312 v 2.0625 h 8.32812 v -2.0625 h -2.8125 v -11.9375 z m 11.3362,4.14063 v 2.07812 h 2.8125 v 5.71875 h -2.8125 v 2.0625 h 8.04687 v -2.0625 h -2.67187 v -7.79687 z m 2.625,-2.51563 q 0,0.28125 0.10937,0.53125 0.10938,0.25 0.29688,0.42188 0.1875,0.1875 0.45312,0.29687 0.28125,0.0937 0.60938,0.0937 0.67187,0 1.0625,-0.375 0.39062,-0.375 0.39062,-0.96875 0,-0.59375 -0.39062,-0.96875 -0.39063,-0.39062 -1.0625,-0.39062 -0.32813,0 -0.60938,0.10937 -0.26562,0.0937 -0.45312,0.26563 -0.1875,0.1875 -0.29688,0.4375 -0.10937,0.25 -0.10937,0.54687 z m 12.25807,10.53125 q -0.60938,0 -1,-0.23437 -0.39063,-0.25 -0.625,-0.65625 -0.23438,-0.40625 -0.32813,-0.9375 -0.0937,-0.53125 -0.0937,-1.10938 v -0.28125 q 0,-0.5625 0.0937,-1.07812 0.10938,-0.53125 0.34375,-0.95313 0.21875,-0.40625 0.60938,-0.64062 0.39062,-0.25 1,-0.25 0.40625,0 0.75,0.14062 0.34375,0.14063 0.59375,0.375 0.25,0.23438 0.375,0.5625 0.125,0.32813 0.10937,0.6875 h 2.39063 q 0.0156,-0.875 -0.29688,-1.57812 -0.3125,-0.70313 -0.85937,-1.20313 -0.5625,-0.48437 -1.34375,-0.75 -0.76563,-0.28125 -1.6875,-0.28125 -1.14063,0 -2,0.39063 -0.85938,0.39062 -1.4375,1.0625 -0.57813,0.67187 -0.875,1.57812 -0.29688,0.90625 -0.29688,1.9375 v 0.28125 q 0,1.03125 0.29688,1.9375 0.29687,0.90625 0.875,1.59375 0.57812,0.67188 1.4375,1.0625 0.875,0.375 2.01562,0.375 0.85938,0 1.60938,-0.26562 0.76562,-0.26563 1.34375,-0.73438 0.5625,-0.48437 0.89062,-1.14062 0.34375,-0.65625 0.32813,-1.42188 h -2.39063 q 0.0156,0.34375 -0.125,0.64063 -0.14062,0.28125 -0.39062,0.46875 -0.25,0.20312 -0.59375,0.3125 -0.34375,0.10937 -0.71875,0.10937 z m 11.61745,2.03125 q 1.4375,0 2.48437,-0.54687 1.04688,-0.5625 1.53125,-1.25 l -1.26562,-1.375 q -0.4375,0.57812 -1.14063,0.85937 -0.70312,0.28125 -1.45312,0.28125 -0.53125,0 -0.98438,-0.15625 -0.4375,-0.17187 -0.78125,-0.48437 -0.32812,-0.28125 -0.53125,-0.64063 -0.20312,-0.35937 -0.32812,-0.95312 v -0.0312 h 6.6875 v -1.07813 q 0,-1.07812 -0.3125,-1.96875 -0.29688,-0.90625 -0.875,-1.54687 -0.57813,-0.64063 -1.42188,-0.98438 -0.82812,-0.34375 -1.89062,-0.34375 -1.03125,0 -1.90625,0.375 -0.875,0.35938 -1.5,1.03125 -0.64063,0.6875 -1,1.625 -0.35938,0.92188 -0.35938,2.04688 v 0.375 q 0,0.98437 0.35938,1.85937 0.35937,0.875 1.03125,1.5 0.65625,0.65625 1.57812,1.03125 0.9375,0.375 2.07813,0.375 z m -0.29688,-8.17187 q 0.48438,0 0.84375,0.15625 0.375,0.14062 0.625,0.39062 0.26563,0.26563 0.40625,0.625 0.14063,0.35938 0.14063,0.75 v 0.20313 h -4.14063 q 0.0781,-0.48438 0.26563,-0.875 0.1875,-0.39063 0.45312,-0.67188 0.26563,-0.28125 0.625,-0.42187 0.35938,-0.15625 0.78125,-0.15625 z m 13.07057,5.28125 q 0,0.21875 -0.10937,0.42187 -0.10938,0.1875 -0.34375,0.32813 -0.23438,0.15625 -0.60938,0.25 -0.35937,0.0781 -0.85937,0.0781 -0.40625,0 -0.79688,-0.0781 -0.39062,-0.0937 -0.6875,-0.28125 -0.29687,-0.17188 -0.5,-0.45313 -0.1875,-0.28125 -0.20312,-0.6875 h -2.42188 q 0,0.60938 0.29688,1.20313 0.29687,0.59375 0.875,1.0625 0.5625,0.46875 1.42187,0.76562 0.85938,0.28125 1.96875,0.28125 1,0 1.8125,-0.21875 0.82813,-0.21875 1.42188,-0.625 0.5625,-0.40625 0.875,-0.95312 0.32812,-0.54688 0.32812,-1.20313 0,-0.71875 -0.32812,-1.23437 -0.3125,-0.51563 -0.85938,-0.875 -0.5625,-0.35938 -1.32812,-0.57813 -0.76563,-0.23437 -1.65625,-0.375 -0.625,-0.0937 -1.03125,-0.21875 -0.39063,-0.125 -0.60938,-0.28125 -0.25,-0.14062 -0.34375,-0.32812 -0.0781,-0.1875 -0.0781,-0.40625 0,-0.21875 0.0937,-0.40625 0.10937,-0.20313 0.3125,-0.34375 0.21875,-0.17188 0.5625,-0.25 0.34375,-0.0937 0.8125,-0.0937 0.54687,0 0.9375,0.14062 0.39062,0.125 0.60937,0.35938 0.17188,0.17187 0.25,0.39062 0.0781,0.20313 0.0781,0.45313 h 2.53125 q 0,-0.6875 -0.29688,-1.26563 -0.29687,-0.57812 -0.85937,-1.01562 -0.57813,-0.42188 -1.40625,-0.65625 -0.8125,-0.23438 -1.84375,-0.23438 -0.98438,0 -1.76563,0.25 -0.78125,0.23438 -1.32812,0.65625 -0.54688,0.42188 -0.84375,0.98438 -0.28125,0.54687 -0.28125,1.15625 0,0.625 0.28125,1.10937 0.28125,0.48438 0.79687,0.84375 0.51563,0.375 1.21875,0.64063 0.71875,0.25 1.57813,0.42187 0.6875,0.14063 1.125,0.26563 0.45312,0.125 0.73437,0.26562 0.26563,0.15625 0.35938,0.32813 0.10937,0.17187 0.10937,0.40625 z m 7.3987,1.23437 q 0,0.70313 0.46875,1.1875 0.48437,0.46875 1.29687,0.46875 0.79688,0 1.26563,-0.46875 0.48437,-0.46875 0.48437,-1.1875 0,-0.70312 -0.46875,-1.1875 -0.46875,-0.48437 -1.28125,-0.48437 -0.84375,0 -1.3125,0.48437 -0.45312,0.48438 -0.45312,1.1875 z m 8.49245,1.46875 h 3.5625 q 0.875,0 1.65625,-0.21875 0.78125,-0.21875 1.42187,-0.625 0.5625,-0.34375 1.03125,-0.85937 0.46875,-0.51563 0.8125,-1.125 0.35938,-0.6875 0.5625,-1.5 0.20313,-0.82813 0.20313,-1.75 v -1.09375 q 0,-0.95313 -0.21875,-1.79688 -0.21875,-0.84375 -0.60938,-1.54687 -0.32812,-0.57813 -0.78125,-1.0625 -0.45312,-0.48438 -1.03125,-0.82813 -0.65625,-0.40625 -1.45312,-0.625 -0.79688,-0.23437 -1.71875,-0.23437 h -3.4375 z m 2.57812,-11.1875 h 0.85938 q 0.45312,0 0.84375,0.10938 0.40625,0.0937 0.73437,0.29687 0.4375,0.25 0.75,0.65625 0.32813,0.39063 0.53125,0.90625 0.15625,0.42188 0.23438,0.9375 0.0937,0.51563 0.0937,1.09375 v 1.10938 q 0,0.60937 -0.0937,1.14062 -0.0781,0.51563 -0.23438,0.95313 -0.20312,0.48437 -0.48437,0.85937 -0.28125,0.35938 -0.625,0.60938 -0.32813,0.21875 -0.75,0.34375 -0.40625,0.10937 -0.875,0.10937 h -0.98438 z m 13.53932,11.375 q 1.4375,0 2.48438,-0.54687 1.04687,-0.5625 1.53125,-1.25 l -1.26563,-1.375 q -0.4375,0.57812 -1.14062,0.85937 -0.70313,0.28125 -1.45313,0.28125 -0.53125,0 -0.98437,-0.15625 -0.4375,-0.17187 -0.78125,-0.48437 -0.32813,-0.28125 -0.53125,-0.64063 -0.20313,-0.35937 -0.32813,-0.95312 v -0.0312 h 6.6875 v -1.07813 q 0,-1.07812 -0.3125,-1.96875 -0.29687,-0.90625 -0.875,-1.54687 -0.57812,-0.64063 -1.42187,-0.98438 -0.82813,-0.34375 -1.89063,-0.34375 -1.03125,0 -1.90625,0.375 -0.875,0.35938 -1.5,1.03125 -0.64062,0.6875 -1,1.625 -0.35937,0.92188 -0.35937,2.04688 v 0.375 q 0,0.98437 0.35937,1.85937 0.35938,0.875 1.03125,1.5 0.65625,0.65625 1.57813,1.03125 0.9375,0.375 2.07812,0.375 z m -0.29687,-8.17187 q 0.48437,0 0.84375,0.15625 0.375,0.14062 0.625,0.39062 0.26562,0.26563 0.40625,0.625 0.14062,0.35938 0.14062,0.75 v 0.20313 h -4.14062 q 0.0781,-0.48438 0.26562,-0.875 0.1875,-0.39063 0.45313,-0.67188 0.26562,-0.28125 0.625,-0.42187 0.35937,-0.15625 0.78125,-0.15625 z m 7.24245,-6.01563 v 2.07813 h 2.95312 v 9.85937 h -2.95312 v 2.0625 h 8.32812 v -2.0625 h -2.8125 v -11.9375 z m 15.44557,14.1875 q 1.4375,0 2.48437,-0.54687 1.04688,-0.5625 1.53125,-1.25 l -1.26562,-1.375 q -0.4375,0.57812 -1.14063,0.85937 -0.70312,0.28125 -1.45312,0.28125 -0.53125,0 -0.98438,-0.15625 -0.4375,-0.17187 -0.78125,-0.48437 -0.32812,-0.28125 -0.53125,-0.64063 -0.20312,-0.35937 -0.32812,-0.95312 v -0.0312 h 6.6875 v -1.07813 q 0,-1.07812 -0.3125,-1.96875 -0.29688,-0.90625 -0.875,-1.54687 -0.57813,-0.64063 -1.42188,-0.98438 -0.82812,-0.34375 -1.89062,-0.34375 -1.03125,0 -1.90625,0.375 -0.875,0.35938 -1.5,1.03125 -0.64063,0.6875 -1,1.625 -0.35938,0.92188 -0.35938,2.04688 v 0.375 q 0,0.98437 0.35938,1.85937 0.35937,0.875 1.03125,1.5 0.65625,0.65625 1.57812,1.03125 0.9375,0.375 2.07813,0.375 z m -0.29688,-8.17187 q 0.48438,0 0.84375,0.15625 0.375,0.14062 0.625,0.39062 0.26563,0.26563 0.40625,0.625 0.14063,0.35938 0.14063,0.75 v 0.20313 h -4.14063 q 0.0781,-0.48438 0.26563,-0.875 0.1875,-0.39063 0.45312,-0.67188 0.26563,-0.28125 0.625,-0.42187 0.35938,-0.15625 0.78125,-0.15625 z m 11.36746,-4.28125 h -2.54687 v 2.40625 h -2.25 v 1.875 h 2.25 v 4.48437 q 0,0.96875 0.25,1.67188 0.26562,0.6875 0.73437,1.14062 0.46875,0.45313 1.125,0.67188 0.67188,0.20312 1.48438,0.20312 0.40625,0 0.84375,-0.0469 0.4375,-0.0312 0.82812,-0.10938 0.40625,-0.0625 0.76563,-0.17187 0.35937,-0.125 0.60937,-0.28125 l -0.23437,-1.73438 q -0.17188,0.0469 -0.42188,0.0937 -0.23437,0.0469 -0.51562,0.0781 -0.28125,0.0469 -0.59375,0.0781 -0.29688,0.0156 -0.59375,0.0156 -0.39063,0 -0.71875,-0.0781 -0.32813,-0.0937 -0.54688,-0.3125 -0.23437,-0.21875 -0.35937,-0.57812 -0.10938,-0.35938 -0.10938,-0.89063 v -4.23437 h 3.67188 v -1.875 h -3.67188 z m 11.32056,12.45312 q 1.4375,0 2.48438,-0.54687 1.04687,-0.5625 1.53125,-1.25 l -1.26563,-1.375 q -0.4375,0.57812 -1.14062,0.85937 -0.70313,0.28125 -1.45313,0.28125 -0.53125,0 -0.98437,-0.15625 -0.4375,-0.17187 -0.78125,-0.48437 -0.32813,-0.28125 -0.53125,-0.64063 -0.20313,-0.35937 -0.32813,-0.95312 v -0.0312 h 6.6875 v -1.07813 q 0,-1.07812 -0.3125,-1.96875 -0.29687,-0.90625 -0.875,-1.54687 -0.57812,-0.64063 -1.42187,-0.98438 -0.82813,-0.34375 -1.89063,-0.34375 -1.03125,0 -1.90625,0.375 -0.875,0.35938 -1.5,1.03125 -0.64062,0.6875 -1,1.625 -0.35937,0.92188 -0.35937,2.04688 v 0.375 q 0,0.98437 0.35937,1.85937 0.35938,0.875 1.03125,1.5 0.65625,0.65625 1.57813,1.03125 0.9375,0.375 2.07812,0.375 z m -0.29687,-8.17187 q 0.48437,0 0.84375,0.15625 0.375,0.14062 0.625,0.39062 0.26562,0.26563 0.40625,0.625 0.14062,0.35938 0.14062,0.75 v 0.20313 h -4.14062 q 0.0781,-0.48438 0.26562,-0.875 0.1875,-0.39063 0.45313,-0.67188 0.26562,-0.28125 0.625,-0.42187 0.35937,-0.15625 0.78125,-0.15625 z m 8.57055,2.59375 v 0.20312 q 0,1.28125 0.1875,2.42188 0.20313,1.125 0.54688,2.07812 0.32812,0.96875 0.78125,1.76563 0.45312,0.79687 0.95312,1.39062 0.5,0.60938 1.03125,1.03125 0.53125,0.4375 1.03125,0.65625 l 0.5,-1.35937 q -0.35937,-0.28125 -0.71875,-0.6875 -0.35937,-0.40625 -0.6875,-0.96875 -0.3125,-0.5 -0.59375,-1.1875 -0.26562,-0.6875 -0.45312,-1.48438 -0.15625,-0.57812 -0.28125,-1.53125 -0.125,-0.96875 -0.125,-2.10937 v -0.23438 q 0,-1.15625 0.125,-2.14062 0.14062,-0.98438 0.34375,-1.79688 0.23437,-0.84375 0.54687,-1.54687 0.32813,-0.71875 0.6875,-1.23438 0.28125,-0.40625 0.5625,-0.70312 0.29688,-0.3125 0.59375,-0.53125 l -0.5,-1.39063 q -0.5,0.23438 -1.03125,0.65625 -0.53125,0.42188 -1.03125,1.03125 -0.5,0.60938 -0.95312,1.40625 -0.45313,0.78125 -0.78125,1.75 -0.34375,0.95313 -0.54688,2.09375 -0.1875,1.14063 -0.1875,2.42188 z m 15.69559,2.6875 q 0,0.21875 -0.10937,0.42187 -0.10938,0.1875 -0.34375,0.32813 -0.23438,0.15625 -0.60938,0.25 -0.35937,0.0781 -0.85937,0.0781 -0.40625,0 -0.79688,-0.0781 -0.39062,-0.0937 -0.6875,-0.28125 -0.29687,-0.17188 -0.5,-0.45313 -0.1875,-0.28125 -0.20312,-0.6875 h -2.42188 q 0,0.60938 0.29688,1.20313 0.29687,0.59375 0.875,1.0625 0.5625,0.46875 1.42187,0.76562 0.85938,0.28125 1.96875,0.28125 1,0 1.8125,-0.21875 0.82813,-0.21875 1.42188,-0.625 0.5625,-0.40625 0.875,-0.95312 0.32812,-0.54688 0.32812,-1.20313 0,-0.71875 -0.32812,-1.23437 -0.3125,-0.51563 -0.85938,-0.875 -0.5625,-0.35938 -1.32812,-0.57813 -0.76563,-0.23437 -1.65625,-0.375 -0.625,-0.0937 -1.03125,-0.21875 -0.39063,-0.125 -0.60938,-0.28125 -0.25,-0.14062 -0.34375,-0.32812 -0.0781,-0.1875 -0.0781,-0.40625 0,-0.21875 0.0937,-0.40625 0.10937,-0.20313 0.3125,-0.34375 0.21875,-0.17188 0.5625,-0.25 0.34375,-0.0937 0.8125,-0.0937 0.54687,0 0.9375,0.14062 0.39062,0.125 0.60937,0.35938 0.17188,0.17187 0.25,0.39062 0.0781,0.20313 0.0781,0.45313 h 2.53125 q 0,-0.6875 -0.29688,-1.26563 -0.29687,-0.57812 -0.85937,-1.01562 -0.57813,-0.42188 -1.40625,-0.65625 -0.8125,-0.23438 -1.84375,-0.23438 -0.98438,0 -1.76563,0.25 -0.78125,0.23438 -1.32812,0.65625 -0.54688,0.42188 -0.84375,0.98438 -0.28125,0.54687 -0.28125,1.15625 0,0.625 0.28125,1.10937 0.28125,0.48438 0.79687,0.84375 0.51563,0.375 1.21875,0.64063 0.71875,0.25 1.57813,0.42187 0.6875,0.14063 1.125,0.26563 0.45312,0.125 0.73437,0.26562 0.26563,0.15625 0.35938,0.32813 0.10937,0.17187 0.10937,0.40625 z m 10.02371,2.5 0.0156,-2.01563 h -2.39063 v 2.14063 q 0,1 -0.23437,1.70312 -0.23438,0.71875 -0.57813,1.375 l 1.34375,0.70313 q 0.8125,-0.73438 1.32813,-1.79688 0.51562,-1.0625 0.51562,-2.10937 z m 25.87549,0.20312 v -2.03125 h -5.8125 l 2.48438,-2.64062 q 0.65625,-0.67188 1.17187,-1.26563 0.53125,-0.60937 0.92188,-1.1875 0.375,-0.59375 0.57812,-1.1875 0.20313,-0.59375 0.20313,-1.25 0,-0.875 -0.28125,-1.57812 -0.26563,-0.71875 -0.78125,-1.23438 -0.53125,-0.5 -1.3125,-0.78125 -0.78125,-0.29687 -1.78125,-0.29687 -1.0625,0 -1.9375,0.34375 -0.85938,0.34375 -1.46875,0.9375 -0.625,0.59375 -0.96875,1.39062 -0.32813,0.78125 -0.32813,1.65625 h 2.53125 q 0,-0.53125 0.14063,-0.95312 0.14062,-0.42188 0.40625,-0.70313 0.25,-0.26562 0.64062,-0.40625 0.39063,-0.14062 0.89063,-0.14062 0.39062,0 0.71875,0.125 0.32812,0.125 0.5625,0.35937 0.23437,0.25 0.35937,0.59375 0.125,0.34375 0.125,0.79688 0,0.29687 -0.0937,0.625 -0.0937,0.3125 -0.3125,0.67187 -0.21875,0.375 -0.5625,0.82813 -0.34375,0.4375 -0.84375,0.98437 l -4.29687,4.60938 v 1.73437 z m 7.71121,-0.20312 0.0156,-2.01563 h -2.39063 v 2.14063 q 0,1 -0.23437,1.70312 -0.23438,0.71875 -0.57813,1.375 l 1.34375,0.70313 q 0.8125,-0.73438 1.32813,-1.79688 0.51562,-1.0625 0.51562,-2.10937 z m 17.32865,-6.32813 2.03125,0.5 q 0.14062,-0.14062 0.29687,-0.26562 0.17188,-0.14063 0.39063,-0.25 0.20312,-0.0937 0.46875,-0.15625 0.28125,-0.0625 0.65625,-0.0625 0.54687,0 0.95312,0.17187 0.42188,0.17188 0.6875,0.48438 0.28125,0.32812 0.40625,0.76562 0.14063,0.4375 0.14063,0.96875 0,0.54688 -0.10938,1.01563 -0.10937,0.45312 -0.32812,0.79687 -0.21875,0.32813 -0.57813,0.53125 -0.35937,0.1875 -0.875,0.1875 -0.82812,0 -1.35937,-0.46875 -0.53125,-0.48437 -0.625,-1.34375 h -2.5 q 0.0312,0.92188 0.42187,1.64063 0.39063,0.70312 1,1.20312 0.625,0.48438 1.42188,0.75 0.79687,0.25 1.65625,0.25 1.125,0 1.95312,-0.35937 0.82813,-0.35938 1.375,-0.96875 0.54688,-0.60938 0.8125,-1.40625 0.26563,-0.8125 0.26563,-1.70313 0,-1.04687 -0.28125,-1.875 -0.26563,-0.82812 -0.78125,-1.40625 -0.51563,-0.5625 -1.26563,-0.85937 -0.75,-0.3125 -1.70312,-0.3125 -0.6875,0 -1.20313,0.17187 -0.51562,0.17188 -0.79687,0.32813 l 0.3125,-2.90625 h 5.28125 v -2.15625 h -7.35938 z m 17.82055,1.34375 v -0.20312 q 0,-1.25 -0.20312,-2.35938 -0.20313,-1.125 -0.54688,-2.09375 -0.34375,-0.95312 -0.8125,-1.75 -0.45312,-0.79687 -0.96875,-1.4375 -0.53125,-0.60937 -1.07812,-1.04687 -0.54688,-0.4375 -1.0625,-0.67188 l -0.48438,1.35938 q 0.28125,0.20312 0.54688,0.5 0.28125,0.29687 0.54687,0.67187 0.39063,0.5625 0.73438,1.34375 0.35937,0.76563 0.60937,1.75 0.1875,0.78125 0.29688,1.71875 0.125,0.92188 0.125,2 v 0.23438 q 0,1.09375 -0.125,2.04687 -0.10938,0.95313 -0.29688,1.73438 -0.23437,0.85937 -0.53125,1.54687 -0.29687,0.6875 -0.64062,1.23438 -0.3125,0.46875 -0.625,0.8125 -0.3125,0.35937 -0.64063,0.59375 l 0.48438,1.35937 q 0.51562,-0.21875 1.0625,-0.65625 0.54687,-0.4375 1.07812,-1.0625 0.51563,-0.625 0.96875,-1.42187 0.46875,-0.79688 0.8125,-1.76563 0.34375,-0.96875 0.54688,-2.07812 0.20312,-1.10938 0.20312,-2.35938 z"
+       fill-rule="nonzero"
+       id="path4" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 257.44757,64.542373 h 40.19424 v 39.999997 h -40.19424 z"
+       fill-rule="nonzero"
+       id="path5" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 297.64181,64.542373 h 40.19421 v 39.999997 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path6" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#f4cccc"
+       d="m 337.83603,64.542373 h 40.19421 v 39.999997 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path7" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#f4cccc"
+       d="m 378.03023,64.542373 h 40.19424 v 39.999997 h -40.19424 z"
+       fill-rule="nonzero"
+       id="path8" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#f4cccc"
+       d="M 418.22449,64.542373 H 458.4187 V 104.54237 H 418.22449 Z"
+       fill-rule="nonzero"
+       id="path9" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 458.4187,64.542373 h 40.19421 V 104.54237 H 458.4187 Z"
+       fill-rule="nonzero"
+       id="path10" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 498.61293,64.542373 h 40.19421 v 39.999997 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path11" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="M 538.80713,64.542373 H 579.0014 V 104.54237 H 538.80713 Z"
+       fill-rule="nonzero"
+       id="path12" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 257.44757,64.043683 V 105.04105"
+       fill-rule="nonzero"
+       id="path13" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 297.64181,64.043683 V 105.04105"
+       fill-rule="nonzero"
+       id="path14" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 337.83603,64.043683 V 105.04105"
+       fill-rule="nonzero"
+       id="path15" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 378.03023,64.043683 V 105.04105"
+       fill-rule="nonzero"
+       id="path16" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 418.22449,64.043683 V 105.04105"
+       fill-rule="nonzero"
+       id="path17" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 458.4187,64.043683 V 105.04105"
+       fill-rule="nonzero"
+       id="path18" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 498.61293,64.043683 V 105.04105"
+       fill-rule="nonzero"
+       id="path19" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 538.80713,64.043683 V 105.04105"
+       fill-rule="nonzero"
+       id="path20" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 579.00143,64.043683 V 105.04105"
+       fill-rule="nonzero"
+       id="path21" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 256.94888,64.542373 H 579.50006"
+       fill-rule="nonzero"
+       id="path22" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 256.94888,104.54237 H 579.50006"
+       fill-rule="nonzero"
+       id="path23" />
+    <path
+       fill="#1155cc"
+       d="m 267.32257,88.998623 v -9.5625 h 1.07813 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48437,-0.26562 1.15625,-0.26562 0.875,0 1.54687,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10937,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57813,0 -1.04688,-0.25 -0.46875,-0.25 -0.76562,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54688,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54687,-1.96875 -0.54688,-0.67187 -1.29688,-0.67187 -0.75,0 -1.32812,0.70312 -0.57813,0.70313 -0.57813,2.03125 z m 6.02185,-1.28125 q 0,-1.6875 0.34375,-2.71875 0.35938,-1.03125 1.04688,-1.59375 0.6875,-0.5625 1.71875,-0.5625 0.78125,0 1.35937,0.3125 0.57813,0.29688 0.95313,0.89063 0.375,0.57812 0.59375,1.42187 0.21875,0.82813 0.21875,2.25 0,1.67188 -0.35938,2.70313 -0.34375,1.03125 -1.03125,1.59375 -0.67187,0.5625 -1.73437,0.5625 -1.375,0 -2.15625,-0.98438 -0.95313,-1.1875 -0.95313,-3.875 z m 1.20313,0 q 0,2.34375 0.54687,3.125 0.5625,0.78125 1.35938,0.78125 0.8125,0 1.35937,-0.78125 0.5625,-0.78125 0.5625,-3.125 0,-2.35937 -0.5625,-3.125 -0.54687,-0.78125 -1.35937,-0.78125 -0.8125,0 -1.29688,0.6875 -0.60937,0.875 -0.60937,3.21875 z"
+       fill-rule="nonzero"
+       id="path24" />
+    <path
+       fill="#1155cc"
+       d="m 307.51681,88.998623 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 10.44373,3.42188 h -1.17188 v -7.46875 q -0.42187,0.40625 -1.10937,0.8125 -0.6875,0.40625 -1.23438,0.60937 v -1.14062 q 0.98438,-0.45313 1.71875,-1.10938 0.73438,-0.67187 1.03125,-1.28125 h 0.76563 z"
+       fill-rule="nonzero"
+       id="path25" />
+    <path
+       fill="#1155cc"
+       d="m 347.71103,88.998623 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 12.1781,2.29688 v 1.125 h -6.29687 q -0.0156,-0.42188 0.14062,-0.8125 0.23438,-0.64063 0.76563,-1.26563 0.53125,-0.625 1.53125,-1.45312 1.5625,-1.26563 2.10937,-2.01563 0.54688,-0.75 0.54688,-1.40625 0,-0.70312 -0.5,-1.17187 -0.5,-0.48438 -1.29688,-0.48438 -0.85937,0 -1.375,0.51563 -0.5,0.5 -0.5,1.39062 l -1.20312,-0.10937 q 0.125,-1.35938 0.92187,-2.0625 0.8125,-0.70313 2.17188,-0.70313 1.375,0 2.17187,0.76563 0.8125,0.75 0.8125,1.875 0,0.57812 -0.23437,1.14062 -0.23438,0.54688 -0.78125,1.15625 -0.54688,0.60938 -1.8125,1.67188 -1.04688,0.89062 -1.35938,1.21875 -0.29687,0.3125 -0.48437,0.625 z"
+       fill-rule="nonzero"
+       id="path26" />
+    <path
+       fill="#1155cc"
+       d="m 387.90523,88.998623 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 6.03748,0.90625 1.17187,-0.15625 q 0.20313,1 0.6875,1.4375 0.48438,0.4375 1.17188,0.4375 0.82812,0 1.39062,-0.57812 0.57813,-0.57813 0.57813,-1.42188 0,-0.79687 -0.53125,-1.3125 -0.51563,-0.53125 -1.32813,-0.53125 -0.34375,0 -0.82812,0.125 l 0.125,-1.03125 q 0.125,0.0156 0.1875,0.0156 0.75,0 1.34375,-0.39063 0.60937,-0.39062 0.60937,-1.20312 0,-0.64063 -0.4375,-1.0625 -0.4375,-0.42188 -1.125,-0.42188 -0.6875,0 -1.14062,0.4375 -0.45313,0.42188 -0.59375,1.28125 l -1.17188,-0.21875 q 0.21875,-1.17187 0.98438,-1.8125 0.76562,-0.65625 1.89062,-0.65625 0.78125,0 1.4375,0.34375 0.65625,0.32813 1,0.90625 0.35938,0.57813 0.35938,1.23438 0,0.60937 -0.34375,1.125 -0.32813,0.5 -0.96875,0.79687 0.84375,0.20313 1.3125,0.82813 0.46875,0.60937 0.46875,1.53125 0,1.25 -0.92188,2.125 -0.90625,0.85937 -2.29687,0.85937 -1.25,0 -2.09375,-0.75 -0.82813,-0.75 -0.9375,-1.9375 z"
+       fill-rule="nonzero"
+       id="path27" />
+    <path
+       fill="#1155cc"
+       d="m 428.09949,88.998623 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 9.78748,3.42188 v -2.28125 h -4.14063 v -1.07813 l 4.34375,-6.1875 h 0.96875 v 6.1875 h 1.28125 v 1.07813 h -1.28125 v 2.28125 z m 0,-3.35938 v -4.29687 l -2.98438,4.29687 z"
+       fill-rule="nonzero"
+       id="path28" />
+    <path
+       fill="#1155cc"
+       d="m 468.2937,88.998623 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 6.02185,0.92188 1.23438,-0.10938 q 0.14062,0.90625 0.64062,1.35938 0.5,0.45312 1.20313,0.45312 0.84375,0 1.42187,-0.64062 0.59375,-0.64063 0.59375,-1.6875 0,-1 -0.5625,-1.57813 -0.5625,-0.59375 -1.48437,-0.59375 -0.5625,0 -1.01563,0.26563 -0.45312,0.25 -0.71875,0.67187 l -1.09375,-0.15625 0.92188,-4.89062 h 4.75 v 1.10937 h -3.8125 l -0.51563,2.5625 q 0.85938,-0.59375 1.79688,-0.59375 1.25,0 2.10937,0.875 0.85938,0.85938 0.85938,2.21875 0,1.29688 -0.75,2.23438 -0.92188,1.15625 -2.5,1.15625 -1.3125,0 -2.14063,-0.71875 -0.8125,-0.73438 -0.9375,-1.9375 z"
+       fill-rule="nonzero"
+       id="path29" />
+    <path
+       fill="#434343"
+       d="m 508.48793,88.998623 v -9.5625 h 1.07813 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48437,-0.26562 1.15625,-0.26562 0.875,0 1.54687,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10937,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57813,0 -1.04688,-0.25 -0.46875,-0.25 -0.76562,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54688,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54687,-1.96875 -0.54688,-0.67187 -1.29688,-0.67187 -0.75,0 -1.32812,0.70312 -0.57813,0.70313 -0.57813,2.03125 z m 12.09998,-3.78125 -1.15625,0.0937 q -0.15625,-0.6875 -0.4375,-1 -0.48438,-0.5 -1.17188,-0.5 -0.5625,0 -0.98437,0.3125 -0.5625,0.39063 -0.89063,1.17188 -0.3125,0.76562 -0.3125,2.20312 0.42188,-0.64062 1.03125,-0.95312 0.60938,-0.3125 1.28125,-0.3125 1.17188,0 1.98438,0.85937 0.82812,0.85938 0.82812,2.23438 0,0.89062 -0.39062,1.67187 -0.375,0.76563 -1.0625,1.17188 -0.67188,0.40625 -1.53125,0.40625 -1.46875,0 -2.39063,-1.0625 -0.92187,-1.07813 -0.92187,-3.5625 0,-2.76563 1.01562,-4.01563 0.90625,-1.09375 2.40625,-1.09375 1.125,0 1.84375,0.64063 0.71875,0.625 0.85938,1.73437 z m -4.78125,4.10938 q 0,0.60937 0.25,1.17187 0.26562,0.54688 0.71875,0.84375 0.46875,0.28125 0.98437,0.28125 0.73438,0 1.26563,-0.59375 0.54687,-0.60937 0.54687,-1.64062 0,-0.98438 -0.53125,-1.54688 -0.53125,-0.57812 -1.32812,-0.57812 -0.79688,0 -1.35938,0.57812 -0.54687,0.5625 -0.54687,1.48438 z"
+       fill-rule="nonzero"
+       id="path30" />
+    <path
+       fill="#434343"
+       d="m 548.68213,88.998623 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 6.09998,-4.875 v -1.125 h 6.1875 v 0.92188 q -0.92188,0.96875 -1.8125,2.57812 -0.89063,1.59375 -1.375,3.29688 -0.35938,1.20312 -0.45313,2.625 h -1.20312 q 0.0156,-1.125 0.4375,-2.71875 0.42187,-1.59375 1.20312,-3.07813 0.79688,-1.48437 1.6875,-2.5 z"
+       fill-rule="nonzero"
+       id="path31" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 244.91213,107.21954 h 39.24411 v 42.01575 h -39.24411 z"
+       fill-rule="evenodd"
+       id="path32" />
+    <path
+       fill="#000000"
+       d="m 254.69339,127.54579 q 0,-2.35938 0.48437,-3.79688 0.48438,-1.45312 1.4375,-2.23437 0.96875,-0.78125 2.42188,-0.78125 1.07812,0 1.89062,0.4375 0.8125,0.42187 1.32813,1.25 0.53125,0.8125 0.82812,1.98437 0.3125,1.15625 0.3125,3.14063 0,2.35937 -0.48437,3.8125 -0.48438,1.4375 -1.45313,2.23437 -0.95312,0.78125 -2.42187,0.78125 -1.92188,0 -3.03125,-1.39062 -1.3125,-1.67188 -1.3125,-5.4375 z m 1.67187,0 q 0,3.29687 0.76563,4.39062 0.78125,1.07813 1.90625,1.07813 1.14062,0 1.90625,-1.09375 0.76562,-1.09375 0.76562,-4.375 0,-3.29688 -0.76562,-4.375 -0.76563,-1.07813 -1.92188,-1.07813 -1.125,0 -1.79687,0.95313 -0.85938,1.21875 -0.85938,4.5 z"
+       fill-rule="nonzero"
+       id="path33" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 489.45283,102.36914 h 70.07873 v 51.71654 h -70.07873 z"
+       fill-rule="evenodd"
+       id="path34" />
+    <path
+       fill="#000000"
+       d="m 499.31219,124.16914 v -9.54688 h 1.17188 v 9.54688 z m 7.71112,-2.21875 1.20313,0.14062 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57813 -1.96875,0.57813 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60938 0,-1.75 0.89063,-2.70312 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.10937 0,0.3125 h -5.15625 q 0.0625,1.14062 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32813 0.45313,-0.34375 0.71875,-1.07812 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85938 -0.4375,-1.29688 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54688 -0.54688,0.53125 -0.60938,1.4375 z m 6.52185,4.125 v -6.90625 h 1.0625 v 0.98437 q 0.75,-1.14062 2.1875,-1.14062 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26563,0.35937 0.375,0.85937 0.0625,0.32813 0.0625,1.14063 v 4.25 h -1.17187 v -4.20313 q 0,-0.71875 -0.14063,-1.0625 -0.14062,-0.35937 -0.48437,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29688,0.46875 -0.54687,0.46875 -0.54687,1.79688 v 3.78125 z m 9.66248,2.8125 q -0.98438,-1.23438 -1.65625,-2.875 -0.65625,-1.64063 -0.65625,-3.39063 0,-1.54687 0.5,-2.96875 0.57812,-1.64062 1.8125,-3.28125 h 0.82812 q -0.78125,1.35938 -1.03125,1.9375 -0.40625,0.89063 -0.625,1.875 -0.28125,1.21875 -0.28125,2.4375 0,3.14063 1.9375,6.26563 z m 1.7196,-4.875 1.15625,-0.1875 q 0.10938,0.70312 0.54688,1.07812 0.45312,0.35938 1.25,0.35938 0.8125,0 1.20312,-0.32813 0.39063,-0.32812 0.39063,-0.76562 0,-0.39063 -0.35938,-0.625 -0.23437,-0.15625 -1.1875,-0.39063 -1.29687,-0.32812 -1.79687,-0.5625 -0.48438,-0.25 -0.75,-0.65625 -0.25,-0.42187 -0.25,-0.9375 0,-0.45312 0.20312,-0.84375 0.21875,-0.40625 0.57813,-0.67187 0.28125,-0.1875 0.75,-0.32813 0.46875,-0.14062 1.01562,-0.14062 0.8125,0 1.42188,0.23437 0.60937,0.23438 0.90625,0.64063 0.29687,0.39062 0.40625,1.0625 l -1.14063,0.15625 q -0.0781,-0.53125 -0.45312,-0.82813 -0.375,-0.3125 -1.0625,-0.3125 -0.8125,0 -1.15625,0.26563 -0.34375,0.26562 -0.34375,0.625 0,0.23437 0.14062,0.42187 0.15625,0.1875 0.45313,0.3125 0.17187,0.0625 1.03125,0.29688 1.25,0.32812 1.73437,0.54687 0.5,0.20313 0.78125,0.60938 0.28125,0.40625 0.28125,1 0,0.59375 -0.34375,1.10937 -0.34375,0.51563 -1,0.79688 -0.64062,0.28125 -1.45312,0.28125 -1.34375,0 -2.04688,-0.5625 -0.70312,-0.5625 -0.90625,-1.65625 z m 7.89844,4.875 h -0.82813 q 1.9375,-3.125 1.9375,-6.26563 0,-1.21875 -0.28125,-2.42187 -0.21875,-0.98438 -0.60937,-1.875 -0.26563,-0.59375 -1.04688,-1.95313 h 0.82813 q 1.23437,1.64063 1.8125,3.28125 0.5,1.42188 0.5,2.96875 0,1.75 -0.67188,3.39063 -0.67187,1.64062 -1.64062,2.875 z"
+       fill-rule="nonzero"
+       id="path35" />
+    <path
+       fill="#000000"
+       d="m 505.49969,134.55977 h -6.3125 v -1.09375 h 6.3125 z m 0,2.89062 h -6.3125 v -1.09375 h 6.3125 z m 11.06451,-4.48437 -1.15625,0.0937 q -0.15625,-0.6875 -0.4375,-1 -0.48437,-0.5 -1.17187,-0.5 -0.5625,0 -0.98438,0.3125 -0.5625,0.39062 -0.89062,1.17187 -0.3125,0.76563 -0.3125,2.20313 0.42187,-0.64063 1.03125,-0.95313 0.60937,-0.3125 1.28125,-0.3125 1.17187,0 1.98437,0.85938 0.82813,0.85937 0.82813,2.23437 0,0.89063 -0.39063,1.67188 -0.375,0.76562 -1.0625,1.17187 -0.67187,0.40625 -1.53125,0.40625 -1.46875,0 -2.39062,-1.0625 -0.92188,-1.07812 -0.92188,-3.5625 0,-2.76562 1.01563,-4.01562 0.90625,-1.09375 2.40625,-1.09375 1.125,0 1.84375,0.64062 0.71875,0.625 0.85937,1.73438 z m -4.78125,4.10937 q 0,0.60938 0.25,1.17188 0.26563,0.54687 0.71875,0.84375 0.46875,0.28125 0.98438,0.28125 0.73437,0 1.26562,-0.59375 0.54688,-0.60938 0.54688,-1.64063 0,-0.98437 -0.53125,-1.54687 -0.53125,-0.57813 -1.32813,-0.57813 -0.79687,0 -1.35937,0.57813 -0.54688,0.5625 -0.54688,1.48437 z"
+       fill-rule="nonzero"
+       id="path36" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 325.93313,106.72347 h 39.24411 v 42.01575 h -39.24411 z"
+       fill-rule="evenodd"
+       id="path37" />
+    <path
+       fill="#000000"
+       d="m 344.32376,132.06535 v 1.57812 h -8.82813 q -0.0156,-0.59375 0.1875,-1.14062 0.34375,-0.90625 1.07813,-1.78125 0.75,-0.875 2.15625,-2.01563 2.17187,-1.78125 2.9375,-2.82812 0.76562,-1.04688 0.76562,-1.96875 0,-0.98438 -0.70312,-1.64063 -0.6875,-0.67187 -1.8125,-0.67187 -1.1875,0 -1.90625,0.71875 -0.70313,0.70312 -0.70313,1.95312 l -1.6875,-0.17187 q 0.17188,-1.89063 1.29688,-2.875 1.14062,-0.98438 3.03125,-0.98438 1.92187,0 3.04687,1.0625 1.125,1.0625 1.125,2.64063 0,0.79687 -0.32812,1.57812 -0.32813,0.78125 -1.09375,1.64063 -0.75,0.84375 -2.53125,2.34375 -1.46875,1.23437 -1.89063,1.6875 -0.42187,0.4375 -0.6875,0.875 z"
+       fill-rule="nonzero"
+       id="path38" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 569.45283,102.36914 h 70.07873 v 51.71654 h -70.07873 z"
+       fill-rule="evenodd"
+       id="path39" />
+    <path
+       fill="#000000"
+       d="m 583.84343,121.63789 1.15625,0.15625 q -0.1875,1.1875 -0.96875,1.85937 -0.78125,0.67188 -1.92187,0.67188 -1.40625,0 -2.28125,-0.92188 -0.85938,-0.9375 -0.85938,-2.65625 0,-1.125 0.375,-1.96875 0.375,-0.84375 1.125,-1.25 0.76563,-0.42187 1.65625,-0.42187 1.125,0 1.84375,0.57812 0.71875,0.5625 0.92188,1.60938 l -1.14063,0.17187 q -0.17187,-0.70312 -0.59375,-1.04687 -0.40625,-0.35938 -0.98437,-0.35938 -0.89063,0 -1.45313,0.64063 -0.54687,0.64062 -0.54687,2 0,1.40625 0.53125,2.03125 0.54687,0.625 1.40625,0.625 0.6875,0 1.14062,-0.42188 0.46875,-0.42187 0.59375,-1.29687 z m 6.66406,1.67187 q -0.65625,0.5625 -1.26562,0.79688 -0.59375,0.21875 -1.28125,0.21875 -1.14063,0 -1.75,-0.54688 -0.60938,-0.5625 -0.60938,-1.4375 0,-0.5 0.21875,-0.92187 0.23438,-0.42188 0.60938,-0.67188 0.375,-0.25 0.84375,-0.39062 0.34375,-0.0781 1.04687,-0.17188 1.42188,-0.17187 2.09375,-0.40625 0,-0.23437 0,-0.29687 0,-0.71875 -0.32812,-1.01563 -0.45313,-0.39062 -1.34375,-0.39062 -0.8125,0 -1.21875,0.29687 -0.39063,0.28125 -0.57813,1.01563 l -1.14062,-0.15625 q 0.15625,-0.73438 0.51562,-1.1875 0.35938,-0.45313 1.03125,-0.6875 0.67188,-0.25 1.5625,-0.25 0.89063,0 1.4375,0.20312 0.5625,0.20313 0.8125,0.53125 0.26563,0.3125 0.375,0.79688 0.0469,0.29687 0.0469,1.07812 v 1.5625 q 0,1.625 0.0781,2.0625 0.0781,0.4375 0.29688,0.82813 h -1.21875 q -0.1875,-0.35938 -0.23438,-0.85938 z m -0.0937,-2.60937 q -0.64062,0.26562 -1.92187,0.4375 -0.71875,0.10937 -1.01563,0.25 -0.29687,0.125 -0.46875,0.375 -0.15625,0.25 -0.15625,0.54687 0,0.46875 0.34375,0.78125 0.35938,0.3125 1.04688,0.3125 0.67187,0 1.20312,-0.29687 0.53125,-0.29688 0.78125,-0.8125 0.1875,-0.39063 0.1875,-1.17188 z m 2.9906,6.125 v -9.5625 h 1.07813 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48437,-0.26562 1.15625,-0.26562 0.875,0 1.54687,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10937,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57813,0 -1.04688,-0.25 -0.46875,-0.25 -0.76562,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54688,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54687,-1.96875 -0.54688,-0.67187 -1.29688,-0.67187 -0.75,0 -1.32812,0.70312 -0.57813,0.70313 -0.57813,2.03125 z m 8.59998,6.23438 q -0.98438,-1.23438 -1.65625,-2.875 -0.65625,-1.64063 -0.65625,-3.39063 0,-1.54687 0.5,-2.96875 0.57812,-1.64062 1.8125,-3.28125 h 0.82812 q -0.78125,1.35938 -1.03125,1.9375 -0.40625,0.89063 -0.625,1.875 -0.28125,1.21875 -0.28125,2.4375 0,3.14063 1.9375,6.26563 z m 1.7196,-4.875 1.15625,-0.1875 q 0.10938,0.70312 0.54688,1.07812 0.45312,0.35938 1.25,0.35938 0.8125,0 1.20312,-0.32813 0.39063,-0.32812 0.39063,-0.76562 0,-0.39063 -0.35938,-0.625 -0.23437,-0.15625 -1.1875,-0.39063 -1.29687,-0.32812 -1.79687,-0.5625 -0.48438,-0.25 -0.75,-0.65625 -0.25,-0.42187 -0.25,-0.9375 0,-0.45312 0.20312,-0.84375 0.21875,-0.40625 0.57813,-0.67187 0.28125,-0.1875 0.75,-0.32813 0.46875,-0.14062 1.01562,-0.14062 0.8125,0 1.42188,0.23437 0.60937,0.23438 0.90625,0.64063 0.29687,0.39062 0.40625,1.0625 l -1.14063,0.15625 q -0.0781,-0.53125 -0.45312,-0.82813 -0.375,-0.3125 -1.0625,-0.3125 -0.8125,0 -1.15625,0.26563 -0.34375,0.26562 -0.34375,0.625 0,0.23437 0.14062,0.42187 0.15625,0.1875 0.45313,0.3125 0.17187,0.0625 1.03125,0.29688 1.25,0.32812 1.73437,0.54687 0.5,0.20313 0.78125,0.60938 0.28125,0.40625 0.28125,1 0,0.59375 -0.34375,1.10937 -0.34375,0.51563 -1,0.79688 -0.64062,0.28125 -1.45312,0.28125 -1.34375,0 -2.04688,-0.5625 -0.70312,-0.5625 -0.90625,-1.65625 z m 7.89844,4.875 h -0.82812 q 1.9375,-3.125 1.9375,-6.26563 0,-1.21875 -0.28125,-2.42187 -0.21875,-0.98438 -0.60938,-1.875 -0.26562,-0.59375 -1.04687,-1.95313 h 0.82812 q 1.23438,1.64063 1.8125,3.28125 0.5,1.42188 0.5,2.96875 0,1.75 -0.67187,3.39063 -0.67188,1.64062 -1.64063,2.875 z"
+       fill-rule="nonzero"
+       id="path40" />
+    <path
+       fill="#000000"
+       d="m 585.49969,134.55977 h -6.3125 v -1.09375 h 6.3125 z m 0,2.89062 h -6.3125 v -1.09375 h 6.3125 z m 6.79889,-2.45312 q -0.73438,-0.26563 -1.09375,-0.76563 -0.34375,-0.5 -0.34375,-1.1875 0,-1.03125 0.75,-1.73437 0.75,-0.71875 1.98437,-0.71875 1.25,0 2.01563,0.73437 0.76562,0.71875 0.76562,1.75 0,0.67188 -0.35937,1.17188 -0.34375,0.48437 -1.04688,0.75 0.875,0.28125 1.32813,0.92187 0.46875,0.64063 0.46875,1.51563 0,1.23437 -0.875,2.0625 -0.85938,0.82812 -2.26563,0.82812 -1.42187,0 -2.28125,-0.82812 -0.85937,-0.84375 -0.85937,-2.09375 0,-0.92188 0.46875,-1.54688 0.46875,-0.64062 1.34375,-0.85937 z m -0.23438,-1.98438 q 0,0.67188 0.4375,1.10938 0.4375,0.42187 1.125,0.42187 0.67188,0 1.10938,-0.42187 0.4375,-0.42188 0.4375,-1.04688 0,-0.64062 -0.45313,-1.07812 -0.4375,-0.4375 -1.10937,-0.4375 -0.67188,0 -1.10938,0.4375 -0.4375,0.42187 -0.4375,1.01562 z m -0.375,4.40625 q 0,0.5 0.23438,0.96875 0.23437,0.46875 0.70312,0.73438 0.46875,0.25 1.01563,0.25 0.82812,0 1.375,-0.53125 0.54687,-0.54688 0.54687,-1.39063 0,-0.84375 -0.5625,-1.39062 -0.5625,-0.5625 -1.40625,-0.5625 -0.82812,0 -1.375,0.54687 -0.53125,0.54688 -0.53125,1.375 z"
+       fill-rule="nonzero"
+       id="path41" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 264.53418,107.21954 v 0"
+       fill-rule="evenodd"
+       id="path42" />
+    <path
+       stroke="#595959"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 264.53418,107.21954 v 0"
+       fill-rule="evenodd"
+       id="path43" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 257.43183,105.93607 v 7.96849"
+       fill-rule="evenodd"
+       id="path44" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 257.43183,105.93607 v 7.96849"
+       fill-rule="evenodd"
+       id="path45" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 499.36623,105.91589 v 7.96851"
+       fill-rule="evenodd"
+       id="path46" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 499.36623,105.91589 v 7.96851"
+       fill-rule="evenodd"
+       id="path47" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 579.94893,105.91589 v 7.96851"
+       fill-rule="evenodd"
+       id="path48" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 579.94893,105.91589 v 7.96851"
+       fill-rule="evenodd"
+       id="path49" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 458.39508,107.1941 v 7.96851"
+       fill-rule="evenodd"
+       id="path50" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 458.39508,107.1941 v 7.96851"
+       fill-rule="evenodd"
+       id="path51" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 337.81241,107.1941 v 7.96851"
+       fill-rule="evenodd"
+       id="path52" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 337.81241,107.1941 v 7.96851"
+       fill-rule="evenodd"
+       id="path53" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 447.18249,105.93607 h 39.24408 v 42.01575 h -39.24408 z"
+       fill-rule="evenodd"
+       id="path54" />
+    <path
+       fill="#000000"
+       d="m 456.96373,129.35607 1.71875,-0.14063 q 0.1875,1.25 0.875,1.89063 0.70312,0.625 1.6875,0.625 1.1875,0 2,-0.89063 0.82812,-0.89062 0.82812,-2.35937 0,-1.40625 -0.79687,-2.21875 -0.78125,-0.8125 -2.0625,-0.8125 -0.78125,0 -1.42188,0.35937 -0.64062,0.35938 -1,0.9375 l -1.54687,-0.20312 1.29687,-6.85938 h 6.64063 v 1.5625 h -5.32813 l -0.71875,3.59375 q 1.20313,-0.84375 2.51563,-0.84375 1.75,0 2.95312,1.21875 1.20313,1.20313 1.20313,3.10938 0,1.8125 -1.04688,3.14062 -1.29687,1.625 -3.51562,1.625 -1.8125,0 -2.96875,-1.01562 -1.15625,-1.03125 -1.3125,-2.71875 z"
+       fill-rule="nonzero"
+       id="path55" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 131.38983,14.542373 h 30.96063 v 37.16535 h -30.96063 z"
+       fill-rule="evenodd"
+       id="path56" />
+    <path
+       fill="#000000"
+       d="m 140.73358,35.450503 2.01562,-0.296875 q 0.125,0.578125 0.51563,0.890625 0.40625,0.296875 1.10937,0.296875 0.78125,0 1.17188,-0.28125 0.26562,-0.203125 0.26562,-0.546875 0,-0.21875 -0.14062,-0.375 -0.15625,-0.140625 -0.67188,-0.265625 -2.4375,-0.53125 -3.07812,-0.984375 -0.90625,-0.609375 -0.90625,-1.703125 0,-0.984375 0.78125,-1.65625 0.78125,-0.671875 2.42187,-0.671875 1.54688,0 2.3125,0.515625 0.76563,0.5 1.04688,1.484375 l -1.90625,0.359375 q -0.10938,-0.453125 -0.45313,-0.6875 -0.34375,-0.234375 -0.96875,-0.234375 -0.79687,0 -1.14062,0.21875 -0.23438,0.15625 -0.23438,0.40625 0,0.21875 0.20313,0.375 0.28125,0.203125 1.875,0.5625 1.60937,0.359375 2.25,0.890625 0.625,0.546875 0.625,1.5 0,1.046875 -0.875,1.796875 -0.85938,0.75 -2.57813,0.75 -1.54687,0 -2.45312,-0.625 -0.90625,-0.640625 -1.1875,-1.71875 z"
+       fill-rule="nonzero"
+       id="path57" />
+    <path
+       fill="#eeeeee"
+       d="m 27.045997,221.46297 v 0 c 0,12.05435 4.362465,22.58203 10.6063,25.59564 v -1.76773 l 3.535431,4.37485 -3.535431,2.69601 v -1.7677 0 c -6.243835,-3.01361 -10.6063,-13.54129 -10.6063,-25.59564 z"
+       fill-rule="evenodd"
+       id="path58" />
+    <path
+       fill="#bebebe"
+       d="m 41.187731,198.56337 v 0 c -7.443192,0 -13.61235,10.78497 -14.110077,24.66733 v 0 c -0.261787,-7.30167 1.107361,-14.47946 3.781433,-19.82431 2.674072,-5.34485 6.41378,-8.37845 10.328644,-8.37845 z"
+       fill-rule="evenodd"
+       id="path59" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 27.045997,221.46297 v 0 c 0,12.05435 4.362465,22.58203 10.6063,25.59564 v -1.76773 l 3.535431,4.37485 -3.535431,2.69601 v -1.7677 0 c -6.243835,-3.01361 -10.6063,-13.54129 -10.6063,-25.59564 v -3.53543 0 c 0,-14.59967 6.331474,-26.43503 14.141731,-26.43503 v 3.53543 0 c -7.443191,0 -13.61235,10.78498 -14.110077,24.66733"
+       fill-rule="evenodd"
+       id="path60" />
+    <path
+       stroke="#595959"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 27.045997,221.46297 v 0 c 0,12.05435 4.362465,22.58203 10.6063,25.59564 v -1.76773 l 3.535431,4.37485 -3.535431,2.69601 v -1.7677 0 c -6.243835,-3.01361 -10.6063,-13.54129 -10.6063,-25.59564 v -3.53543 0 c 0,-14.59967 6.331474,-26.43503 14.141731,-26.43503 v 3.53543 0 c -7.443191,0 -13.61235,10.78498 -14.110077,24.66733"
+       fill-rule="evenodd"
+       id="path61" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 257.44757,280.54237 h 40.19424 v 40 h -40.19424 z"
+       fill-rule="nonzero"
+       id="path62" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 297.64181,280.54237 h 40.19421 v 40 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path63" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 337.83603,280.54237 h 40.19421 v 40 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path64" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 378.03023,280.54237 h 40.19424 v 40 h -40.19424 z"
+       fill-rule="nonzero"
+       id="path65" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 418.22449,280.54237 h 40.19421 v 40 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path66" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 458.4187,280.54237 h 40.19421 v 40 H 458.4187 Z"
+       fill-rule="nonzero"
+       id="path67" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 498.61293,280.54237 h 40.19421 v 40 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path68" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 538.80713,280.54237 h 40.19427 v 40 h -40.19427 z"
+       fill-rule="nonzero"
+       id="path69" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 257.44757,280.04367 v 40.99737"
+       fill-rule="nonzero"
+       id="path70" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 297.64181,280.04367 v 40.99737"
+       fill-rule="nonzero"
+       id="path71" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 337.83603,280.04367 v 40.99737"
+       fill-rule="nonzero"
+       id="path72" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 378.03023,280.04367 v 40.99737"
+       fill-rule="nonzero"
+       id="path73" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 418.22449,280.04367 v 40.99737"
+       fill-rule="nonzero"
+       id="path74" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 458.4187,280.04367 v 40.99737"
+       fill-rule="nonzero"
+       id="path75" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 498.61293,280.04367 v 40.99737"
+       fill-rule="nonzero"
+       id="path76" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 538.80713,280.04367 v 40.99737"
+       fill-rule="nonzero"
+       id="path77" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 579.00143,280.04367 v 40.99737"
+       fill-rule="nonzero"
+       id="path78" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 256.94888,280.54237 H 579.50006"
+       fill-rule="nonzero"
+       id="path79" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 256.94888,320.54237 H 579.50006"
+       fill-rule="nonzero"
+       id="path80" />
+    <path
+       fill="#1155cc"
+       d="m 267.32257,304.99861 v -9.5625 h 1.07813 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48437,-0.26562 1.15625,-0.26562 0.875,0 1.54687,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10937,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57813,0 -1.04688,-0.25 -0.46875,-0.25 -0.76562,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54688,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54687,-1.96875 -0.54688,-0.67187 -1.29688,-0.67187 -0.75,0 -1.32812,0.70312 -0.57813,0.70313 -0.57813,2.03125 z m 6.02185,-1.28125 q 0,-1.6875 0.34375,-2.71875 0.35938,-1.03125 1.04688,-1.59375 0.6875,-0.5625 1.71875,-0.5625 0.78125,0 1.35937,0.3125 0.57813,0.29688 0.95313,0.89063 0.375,0.57812 0.59375,1.42187 0.21875,0.82813 0.21875,2.25 0,1.67188 -0.35938,2.70313 -0.34375,1.03125 -1.03125,1.59375 -0.67187,0.5625 -1.73437,0.5625 -1.375,0 -2.15625,-0.98438 -0.95313,-1.1875 -0.95313,-3.875 z m 1.20313,0 q 0,2.34375 0.54687,3.125 0.5625,0.78125 1.35938,0.78125 0.8125,0 1.35937,-0.78125 0.5625,-0.78125 0.5625,-3.125 0,-2.35937 -0.5625,-3.125 -0.54687,-0.78125 -1.35937,-0.78125 -0.8125,0 -1.29688,0.6875 -0.60937,0.875 -0.60937,3.21875 z"
+       fill-rule="nonzero"
+       id="path81" />
+    <path
+       fill="#1155cc"
+       d="m 307.51681,304.99861 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 10.44373,3.42188 h -1.17188 v -7.46875 q -0.42187,0.40625 -1.10937,0.8125 -0.6875,0.40625 -1.23438,0.60937 v -1.14062 q 0.98438,-0.45313 1.71875,-1.10938 0.73438,-0.67187 1.03125,-1.28125 h 0.76563 z"
+       fill-rule="nonzero"
+       id="path82" />
+    <path
+       fill="#1155cc"
+       d="m 347.71103,304.99861 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 6.02185,0.92188 1.23438,-0.10938 q 0.14062,0.90625 0.64062,1.35938 0.5,0.45312 1.20313,0.45312 0.84375,0 1.42187,-0.64062 0.59375,-0.64063 0.59375,-1.6875 0,-1 -0.5625,-1.57813 -0.5625,-0.59375 -1.48437,-0.59375 -0.5625,0 -1.01563,0.26563 -0.45312,0.25 -0.71875,0.67187 l -1.09375,-0.15625 0.92188,-4.89062 h 4.75 v 1.10937 h -3.8125 l -0.51563,2.5625 q 0.85938,-0.59375 1.79688,-0.59375 1.25,0 2.10937,0.875 0.85938,0.85938 0.85938,2.21875 0,1.29688 -0.75,2.23438 -0.92188,1.15625 -2.5,1.15625 -1.3125,0 -2.14063,-0.71875 -0.8125,-0.73438 -0.9375,-1.9375 z"
+       fill-rule="nonzero"
+       id="path83" />
+    <path
+       fill="#434343"
+       d="m 387.93649,295.43611 h 1.70312 v 1.01562 q 0.32813,-0.53125 0.89063,-0.84375 0.57812,-0.32812 1.26562,-0.32812 1.20313,0 2.03125,0.9375 0.84375,0.9375 0.84375,2.625 0,1.73437 -0.84375,2.70312 -0.84375,0.95313 -2.04687,0.95313 -0.57813,0 -1.04688,-0.21875 -0.45312,-0.23438 -0.96875,-0.79688 v 3.48438 h -1.82812 z m 1.8125,3.32812 q 0,1.17188 0.45312,1.73438 0.46875,0.54687 1.125,0.54687 0.64063,0 1.0625,-0.5 0.42188,-0.51562 0.42188,-1.6875 0,-1.07812 -0.4375,-1.60937 -0.4375,-0.53125 -1.07813,-0.53125 -0.67187,0 -1.10937,0.51562 -0.4375,0.51563 -0.4375,1.53125 z m 5.92261,1.04688 1.76562,-0.21875 q 0.0937,0.6875 0.45313,1.04687 0.375,0.34375 0.90625,0.34375 0.5625,0 0.95312,-0.42187 0.39063,-0.4375 0.39063,-1.15625 0,-0.6875 -0.375,-1.09375 -0.375,-0.40625 -0.90625,-0.40625 -0.34375,0 -0.84375,0.14062 l 0.20312,-1.5 q 0.75,0.0312 1.14063,-0.3125 0.39062,-0.34375 0.39062,-0.90625 0,-0.48437 -0.29687,-0.76562 -0.28125,-0.29688 -0.75,-0.29688 -0.46875,0 -0.8125,0.32813 -0.32813,0.32812 -0.39063,0.95312 l -1.6875,-0.29687 q 0.17188,-0.85938 0.51563,-1.375 0.35937,-0.51563 1,-0.8125 0.64062,-0.29688 1.42187,-0.29688 1.34375,0 2.15625,0.85938 0.67188,0.70312 0.67188,1.59375 0,1.25 -1.375,2 0.82812,0.17187 1.3125,0.78125 0.5,0.60937 0.5,1.48437 0,1.25 -0.92188,2.14063 -0.92187,0.875 -2.28125,0.875 -1.29687,0 -2.15625,-0.73438 -0.84375,-0.75 -0.98437,-1.95312 z"
+       fill-rule="nonzero"
+       id="path84" />
+    <path
+       fill="#434343"
+       d="m 428.13073,295.43611 h 1.70312 v 1.01562 q 0.32813,-0.53125 0.89063,-0.84375 0.57812,-0.32812 1.26562,-0.32812 1.20313,0 2.03125,0.9375 0.84375,0.9375 0.84375,2.625 0,1.73437 -0.84375,2.70312 -0.84375,0.95313 -2.04687,0.95313 -0.57813,0 -1.04688,-0.21875 -0.45312,-0.23438 -0.96875,-0.79688 v 3.48438 h -1.82812 z m 1.8125,3.32812 q 0,1.17188 0.45312,1.73438 0.46875,0.54687 1.125,0.54687 0.64063,0 1.0625,-0.5 0.42188,-0.51562 0.42188,-1.6875 0,-1.07812 -0.4375,-1.60937 -0.4375,-0.53125 -1.07813,-0.53125 -0.67187,0 -1.10937,0.51562 -0.4375,0.51563 -0.4375,1.53125 z m 9.57886,3.57813 v -1.92188 h -3.90625 v -1.59375 l 4.14062,-6.0625 h 1.53125 v 6.04688 h 1.1875 v 1.60937 h -1.1875 v 1.92188 z m 0,-3.53125 v -3.25 l -2.20313,3.25 z"
+       fill-rule="nonzero"
+       id="path85" />
+    <path
+       fill="#434343"
+       d="m 468.32495,295.43611 h 1.70312 v 1.01562 q 0.32813,-0.53125 0.89063,-0.84375 0.57812,-0.32812 1.26562,-0.32812 1.20313,0 2.03125,0.9375 0.84375,0.9375 0.84375,2.625 0,1.73437 -0.84375,2.70312 -0.84375,0.95313 -2.04687,0.95313 -0.57813,0 -1.04688,-0.21875 -0.45312,-0.23438 -0.96875,-0.79688 v 3.48438 h -1.82812 z m 1.8125,3.32812 q 0,1.17188 0.45312,1.73438 0.46875,0.54687 1.125,0.54687 0.64063,0 1.0625,-0.5 0.42188,-0.51562 0.42188,-1.6875 0,-1.07812 -0.4375,-1.60937 -0.4375,-0.53125 -1.07813,-0.53125 -0.67187,0 -1.10937,0.51562 -0.4375,0.51563 -0.4375,1.53125 z m 6.01636,1.125 1.82812,-0.1875 q 0.0781,0.60938 0.45313,0.98438 0.39062,0.35937 0.89062,0.35937 0.5625,0 0.95313,-0.46875 0.40625,-0.46875 0.40625,-1.40625 0,-0.875 -0.39063,-1.3125 -0.39062,-0.4375 -1.03125,-0.4375 -0.78125,0 -1.40625,0.6875 l -1.48437,-0.20312 0.9375,-4.96875 h 4.84375 v 1.70312 h -3.45313 l -0.29687,1.625 q 0.625,-0.3125 1.25,-0.3125 1.21875,0 2.0625,0.89063 0.85937,0.89062 0.85937,2.29687 0,1.17188 -0.6875,2.10938 -0.9375,1.25 -2.59375,1.25 -1.3125,0 -2.15625,-0.70313 -0.82812,-0.70312 -0.98437,-1.90625 z"
+       fill-rule="nonzero"
+       id="path86" />
+    <path
+       fill="#434343"
+       d="m 508.48793,304.99861 v -9.5625 h 1.07813 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48437,-0.26562 1.15625,-0.26562 0.875,0 1.54687,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10937,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57813,0 -1.04688,-0.25 -0.46875,-0.25 -0.76562,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54688,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54687,-1.96875 -0.54688,-0.67187 -1.29688,-0.67187 -0.75,0 -1.32812,0.70312 -0.57813,0.70313 -0.57813,2.03125 z m 12.09998,-3.78125 -1.15625,0.0937 q -0.15625,-0.6875 -0.4375,-1 -0.48438,-0.5 -1.17188,-0.5 -0.5625,0 -0.98437,0.3125 -0.5625,0.39063 -0.89063,1.17188 -0.3125,0.76562 -0.3125,2.20312 0.42188,-0.64062 1.03125,-0.95312 0.60938,-0.3125 1.28125,-0.3125 1.17188,0 1.98438,0.85937 0.82812,0.85938 0.82812,2.23438 0,0.89062 -0.39062,1.67187 -0.375,0.76563 -1.0625,1.17188 -0.67188,0.40625 -1.53125,0.40625 -1.46875,0 -2.39063,-1.0625 -0.92187,-1.07813 -0.92187,-3.5625 0,-2.76563 1.01562,-4.01563 0.90625,-1.09375 2.40625,-1.09375 1.125,0 1.84375,0.64063 0.71875,0.625 0.85938,1.73437 z m -4.78125,4.10938 q 0,0.60937 0.25,1.17187 0.26562,0.54688 0.71875,0.84375 0.46875,0.28125 0.98437,0.28125 0.73438,0 1.26563,-0.59375 0.54687,-0.60937 0.54687,-1.64062 0,-0.98438 -0.53125,-1.54688 -0.53125,-0.57812 -1.32812,-0.57812 -0.79688,0 -1.35938,0.57812 -0.54687,0.5625 -0.54687,1.48438 z"
+       fill-rule="nonzero"
+       id="path87" />
+    <path
+       fill="#434343"
+       d="m 548.68213,304.99861 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 6.09998,-4.875 v -1.125 h 6.1875 v 0.92188 q -0.92188,0.96875 -1.8125,2.57812 -0.89063,1.59375 -1.375,3.29688 -0.35938,1.20312 -0.45313,2.625 h -1.20312 q 0.0156,-1.125 0.4375,-2.71875 0.42187,-1.59375 1.20312,-3.07813 0.79688,-1.48437 1.6875,-2.5 z"
+       fill-rule="nonzero"
+       id="path88" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 244.79928,321.93607 h 39.24408 v 42.01575 h -39.24408 z"
+       fill-rule="evenodd"
+       id="path89" />
+    <path
+       fill="#000000"
+       d="m 254.58053,342.26231 q 0,-2.35938 0.48437,-3.79688 0.48438,-1.45312 1.4375,-2.23437 0.96875,-0.78125 2.42188,-0.78125 1.07812,0 1.89062,0.4375 0.8125,0.42187 1.32813,1.25 0.53125,0.8125 0.82812,1.98437 0.3125,1.15625 0.3125,3.14063 0,2.35937 -0.48437,3.8125 -0.48438,1.4375 -1.45313,2.23437 -0.95312,0.78125 -2.42187,0.78125 -1.92188,0 -3.03125,-1.39062 -1.3125,-1.67188 -1.3125,-5.4375 z m 1.67187,0 q 0,3.29687 0.76563,4.39062 0.78125,1.07813 1.90625,1.07813 1.14062,0 1.90625,-1.09375 0.76562,-1.09375 0.76562,-4.375 0,-3.29688 -0.76562,-4.375 -0.76563,-1.07813 -1.92188,-1.07813 -1.125,0 -1.79687,0.95313 -0.85938,1.21875 -0.85938,4.5 z"
+       fill-rule="nonzero"
+       id="path90" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 369.45283,318.36915 h 70.07873 v 51.71652 h -70.07873 z"
+       fill-rule="evenodd"
+       id="path91" />
+    <path
+       fill="#000000"
+       d="m 379.31219,340.16914 v -9.54687 h 1.17188 v 9.54687 z m 7.71109,-2.21875 1.20313,0.14063 q -0.28125,1.0625 -1.0625,1.65625 -0.76563,0.57812 -1.96875,0.57812 -1.51563,0 -2.40625,-0.9375 -0.89063,-0.9375 -0.89063,-2.60937 0,-1.75 0.89063,-2.70313 0.90625,-0.96875 2.34375,-0.96875 1.39062,0 2.26562,0.9375 0.875,0.9375 0.875,2.65625 0,0.10938 0,0.3125 h -5.15625 q 0.0625,1.14063 0.64063,1.75 0.57812,0.59375 1.4375,0.59375 0.65625,0 1.10937,-0.32812 0.45313,-0.34375 0.71875,-1.07813 z m -3.84375,-1.90625 h 3.85938 q -0.0781,-0.85937 -0.4375,-1.29687 -0.5625,-0.6875 -1.45313,-0.6875 -0.8125,0 -1.35937,0.54687 -0.54688,0.53125 -0.60938,1.4375 z m 6.52185,4.125 v -6.90625 h 1.0625 v 0.98438 q 0.75,-1.14063 2.1875,-1.14063 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26563,0.35938 0.375,0.85938 0.0625,0.32812 0.0625,1.14062 v 4.25 h -1.17187 v -4.20312 q 0,-0.71875 -0.14063,-1.0625 -0.14062,-0.35938 -0.48437,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29688,0.46875 -0.54687,0.46875 -0.54687,1.79687 v 3.78125 z m 9.66248,2.8125 q -0.98438,-1.23437 -1.65625,-2.875 -0.65625,-1.64062 -0.65625,-3.39062 0,-1.54688 0.5,-2.96875 0.57812,-1.64063 1.8125,-3.28125 h 0.82812 q -0.78125,1.35937 -1.03125,1.9375 -0.40625,0.89062 -0.625,1.875 -0.28125,1.21875 -0.28125,2.4375 0,3.14062 1.9375,6.26562 z m 1.71963,-4.875 1.15625,-0.1875 q 0.10938,0.70313 0.54688,1.07813 0.45312,0.35937 1.25,0.35937 0.8125,0 1.20312,-0.32812 0.39063,-0.32813 0.39063,-0.76563 0,-0.39062 -0.35938,-0.625 -0.23437,-0.15625 -1.1875,-0.39062 -1.29687,-0.32813 -1.79687,-0.5625 -0.48438,-0.25 -0.75,-0.65625 -0.25,-0.42188 -0.25,-0.9375 0,-0.45313 0.20312,-0.84375 0.21875,-0.40625 0.57813,-0.67188 0.28125,-0.1875 0.75,-0.32812 0.46875,-0.14063 1.01562,-0.14063 0.8125,0 1.42188,0.23438 0.60937,0.23437 0.90625,0.64062 0.29687,0.39063 0.40625,1.0625 l -1.14063,0.15625 q -0.0781,-0.53125 -0.45312,-0.82812 -0.375,-0.3125 -1.0625,-0.3125 -0.8125,0 -1.15625,0.26562 -0.34375,0.26563 -0.34375,0.625 0,0.23438 0.14062,0.42188 0.15625,0.1875 0.45313,0.3125 0.17187,0.0625 1.03125,0.29687 1.25,0.32813 1.73437,0.54688 0.5,0.20312 0.78125,0.60937 0.28125,0.40625 0.28125,1 0,0.59375 -0.34375,1.10938 -0.34375,0.51562 -1,0.79687 -0.64062,0.28125 -1.45312,0.28125 -1.34375,0 -2.04688,-0.5625 -0.70312,-0.5625 -0.90625,-1.65625 z m 7.89844,4.875 h -0.82813 q 1.9375,-3.125 1.9375,-6.26562 0,-1.21875 -0.28125,-2.42188 -0.21875,-0.98437 -0.60937,-1.875 -0.26563,-0.59375 -1.04688,-1.95312 h 0.82813 q 1.23437,1.64062 1.8125,3.28125 0.5,1.42187 0.5,2.96875 0,1.75 -0.67188,3.39062 -0.67187,1.64063 -1.64062,2.875 z"
+       fill-rule="nonzero"
+       id="path92" />
+    <path
+       fill="#000000"
+       d="m 385.49969,350.55977 h -6.3125 v -1.09375 h 6.3125 z m 0,2.89062 h -6.3125 v -1.09375 h 6.3125 z m 5.00204,0.20313 1.17188,-0.15625 q 0.20312,1 0.6875,1.4375 0.48437,0.4375 1.17187,0.4375 0.82813,0 1.39063,-0.57813 0.57812,-0.57812 0.57812,-1.42187 0,-0.79688 -0.53125,-1.3125 -0.51562,-0.53125 -1.32812,-0.53125 -0.34375,0 -0.82813,0.125 l 0.125,-1.03125 q 0.125,0.0156 0.1875,0.0156 0.75,0 1.34375,-0.39062 0.60938,-0.39063 0.60938,-1.20313 0,-0.64062 -0.4375,-1.0625 -0.4375,-0.42187 -1.125,-0.42187 -0.6875,0 -1.14063,0.4375 -0.45312,0.42187 -0.59375,1.28125 l -1.17187,-0.21875 q 0.21875,-1.17188 0.98437,-1.8125 0.76563,-0.65625 1.89063,-0.65625 0.78125,0 1.4375,0.34375 0.65625,0.32812 1,0.90625 0.35937,0.57812 0.35937,1.23437 0,0.60938 -0.34375,1.125 -0.32812,0.5 -0.96875,0.79688 0.84375,0.20312 1.3125,0.82812 0.46875,0.60938 0.46875,1.53125 0,1.25 -0.92187,2.125 -0.90625,0.85938 -2.29688,0.85938 -1.25,0 -2.09375,-0.75 -0.82812,-0.75 -0.9375,-1.9375 z"
+       fill-rule="nonzero"
+       id="path93" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 569.45283,318.36915 h 70.07873 v 51.71652 h -70.07873 z"
+       fill-rule="evenodd"
+       id="path94" />
+    <path
+       fill="#000000"
+       d="m 583.84343,337.63789 1.15625,0.15625 q -0.1875,1.1875 -0.96875,1.85938 -0.78125,0.67187 -1.92187,0.67187 -1.40625,0 -2.28125,-0.92187 -0.85938,-0.9375 -0.85938,-2.65625 0,-1.125 0.375,-1.96875 0.375,-0.84375 1.125,-1.25 0.76563,-0.42188 1.65625,-0.42188 1.125,0 1.84375,0.57813 0.71875,0.5625 0.92188,1.60937 l -1.14063,0.17188 q -0.17187,-0.70313 -0.59375,-1.04688 -0.40625,-0.35937 -0.98437,-0.35937 -0.89063,0 -1.45313,0.64062 -0.54687,0.64063 -0.54687,2 0,1.40625 0.53125,2.03125 0.54687,0.625 1.40625,0.625 0.6875,0 1.14062,-0.42187 0.46875,-0.42188 0.59375,-1.29688 z m 6.66406,1.67188 q -0.65625,0.5625 -1.26562,0.79687 -0.59375,0.21875 -1.28125,0.21875 -1.14063,0 -1.75,-0.54687 -0.60938,-0.5625 -0.60938,-1.4375 0,-0.5 0.21875,-0.92188 0.23438,-0.42187 0.60938,-0.67187 0.375,-0.25 0.84375,-0.39063 0.34375,-0.0781 1.04687,-0.17187 1.42188,-0.17188 2.09375,-0.40625 0,-0.23438 0,-0.29688 0,-0.71875 -0.32812,-1.01562 -0.45313,-0.39063 -1.34375,-0.39063 -0.8125,0 -1.21875,0.29688 -0.39063,0.28125 -0.57813,1.01562 l -1.14062,-0.15625 q 0.15625,-0.73437 0.51562,-1.1875 0.35938,-0.45312 1.03125,-0.6875 0.67188,-0.25 1.5625,-0.25 0.89063,0 1.4375,0.20313 0.5625,0.20312 0.8125,0.53125 0.26563,0.3125 0.375,0.79687 0.0469,0.29688 0.0469,1.07813 v 1.5625 q 0,1.625 0.0781,2.0625 0.0781,0.4375 0.29688,0.82812 h -1.21875 q -0.1875,-0.35937 -0.23438,-0.85937 z m -0.0937,-2.60938 q -0.64062,0.26563 -1.92187,0.4375 -0.71875,0.10938 -1.01563,0.25 -0.29687,0.125 -0.46875,0.375 -0.15625,0.25 -0.15625,0.54688 0,0.46875 0.34375,0.78125 0.35938,0.3125 1.04688,0.3125 0.67187,0 1.20312,-0.29688 0.53125,-0.29687 0.78125,-0.8125 0.1875,-0.39062 0.1875,-1.17187 z m 2.9906,6.125 v -9.5625 h 1.07813 v 0.89063 q 0.375,-0.53125 0.84375,-0.78125 0.48437,-0.26563 1.15625,-0.26563 0.875,0 1.54687,0.45313 0.6875,0.45312 1.03125,1.28125 0.34375,0.82812 0.34375,1.82812 0,1.04688 -0.375,1.90625 -0.375,0.84375 -1.10937,1.29688 -0.71875,0.45312 -1.53125,0.45312 -0.57813,0 -1.04688,-0.25 -0.46875,-0.25 -0.76562,-0.625 v 3.375 z m 1.0625,-6.07812 q 0,1.34375 0.53125,1.98437 0.54688,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04687 0,-1.3125 -0.54687,-1.96875 -0.54688,-0.67188 -1.29688,-0.67188 -0.75,0 -1.32812,0.70313 -0.57813,0.70312 -0.57813,2.03125 z m 8.59998,6.23437 q -0.98438,-1.23437 -1.65625,-2.875 -0.65625,-1.64062 -0.65625,-3.39062 0,-1.54688 0.5,-2.96875 0.57812,-1.64063 1.8125,-3.28125 h 0.82812 q -0.78125,1.35937 -1.03125,1.9375 -0.40625,0.89062 -0.625,1.875 -0.28125,1.21875 -0.28125,2.4375 0,3.14062 1.9375,6.26562 z m 1.7196,-4.875 1.15625,-0.1875 q 0.10938,0.70313 0.54688,1.07813 0.45312,0.35937 1.25,0.35937 0.8125,0 1.20312,-0.32812 0.39063,-0.32813 0.39063,-0.76563 0,-0.39062 -0.35938,-0.625 -0.23437,-0.15625 -1.1875,-0.39062 -1.29687,-0.32813 -1.79687,-0.5625 -0.48438,-0.25 -0.75,-0.65625 -0.25,-0.42188 -0.25,-0.9375 0,-0.45313 0.20312,-0.84375 0.21875,-0.40625 0.57813,-0.67188 0.28125,-0.1875 0.75,-0.32812 0.46875,-0.14063 1.01562,-0.14063 0.8125,0 1.42188,0.23438 0.60937,0.23437 0.90625,0.64062 0.29687,0.39063 0.40625,1.0625 l -1.14063,0.15625 q -0.0781,-0.53125 -0.45312,-0.82812 -0.375,-0.3125 -1.0625,-0.3125 -0.8125,0 -1.15625,0.26562 -0.34375,0.26563 -0.34375,0.625 0,0.23438 0.14062,0.42188 0.15625,0.1875 0.45313,0.3125 0.17187,0.0625 1.03125,0.29687 1.25,0.32813 1.73437,0.54688 0.5,0.20312 0.78125,0.60937 0.28125,0.40625 0.28125,1 0,0.59375 -0.34375,1.10938 -0.34375,0.51562 -1,0.79687 -0.64062,0.28125 -1.45312,0.28125 -1.34375,0 -2.04688,-0.5625 -0.70312,-0.5625 -0.90625,-1.65625 z m 7.89844,4.875 h -0.82812 q 1.9375,-3.125 1.9375,-6.26562 0,-1.21875 -0.28125,-2.42188 -0.21875,-0.98437 -0.60938,-1.875 -0.26562,-0.59375 -1.04687,-1.95312 h 0.82812 q 1.23438,1.64062 1.8125,3.28125 0.5,1.42187 0.5,2.96875 0,1.75 -0.67187,3.39062 -0.67188,1.64063 -1.64063,2.875 z"
+       fill-rule="nonzero"
+       id="path95" />
+    <path
+       fill="#000000"
+       d="m 585.49969,350.55977 h -6.3125 v -1.09375 h 6.3125 z m 0,2.89062 h -6.3125 v -1.09375 h 6.3125 z m 6.79889,-2.45312 q -0.73438,-0.26563 -1.09375,-0.76563 -0.34375,-0.5 -0.34375,-1.1875 0,-1.03125 0.75,-1.73437 0.75,-0.71875 1.98437,-0.71875 1.25,0 2.01563,0.73437 0.76562,0.71875 0.76562,1.75 0,0.67188 -0.35937,1.17188 -0.34375,0.48437 -1.04688,0.75 0.875,0.28125 1.32813,0.92187 0.46875,0.64063 0.46875,1.51563 0,1.23437 -0.875,2.0625 -0.85938,0.82812 -2.26563,0.82812 -1.42187,0 -2.28125,-0.82812 -0.85937,-0.84375 -0.85937,-2.09375 0,-0.92188 0.46875,-1.54688 0.46875,-0.64062 1.34375,-0.85937 z m -0.23438,-1.98438 q 0,0.67188 0.4375,1.10938 0.4375,0.42187 1.125,0.42187 0.67188,0 1.10938,-0.42187 0.4375,-0.42188 0.4375,-1.04688 0,-0.64062 -0.45313,-1.07812 -0.4375,-0.4375 -1.10937,-0.4375 -0.67188,0 -1.10938,0.4375 -0.4375,0.42187 -0.4375,1.01562 z m -0.375,4.40625 q 0,0.5 0.23438,0.96875 0.23437,0.46875 0.70312,0.73438 0.46875,0.25 1.01563,0.25 0.82812,0 1.375,-0.53125 0.54687,-0.54688 0.54687,-1.39063 0,-0.84375 -0.5625,-1.39062 -0.5625,-0.5625 -1.40625,-0.5625 -0.82812,0 -1.375,0.54687 -0.53125,0.54688 -0.53125,1.375 z"
+       fill-rule="nonzero"
+       id="path96" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 264.42133,321.93607 v 0"
+       fill-rule="evenodd"
+       id="path97" />
+    <path
+       stroke="#595959"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 264.42133,321.93607 v 0"
+       fill-rule="evenodd"
+       id="path98" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 257.43183,321.93607 v 7.96851"
+       fill-rule="evenodd"
+       id="path99" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 257.43183,321.93607 v 7.96851"
+       fill-rule="evenodd"
+       id="path100" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 379.36621,321.91587 v 7.96851"
+       fill-rule="evenodd"
+       id="path101" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 379.36621,321.91587 v 7.96851"
+       fill-rule="evenodd"
+       id="path102" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 579.94893,321.91587 v 7.96851"
+       fill-rule="evenodd"
+       id="path103" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 579.94893,321.91587 v 7.96851"
+       fill-rule="evenodd"
+       id="path104" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 161.44757,16.542373 h 41.94226 v 32.87402 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path105" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 161.44757,49.416393 h 41.94226 v 32.87401 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path106" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 161.44757,82.290403 h 41.94226 v 28.225717 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path107" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 161.44757,16.043683 V 111.01481"
+       fill-rule="nonzero"
+       id="path108" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 203.38983,16.043683 V 111.01481"
+       fill-rule="nonzero"
+       id="path109" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 160.94888,16.542373 h 42.93964"
+       fill-rule="nonzero"
+       id="path110" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 160.94888,49.416393 h 42.93964"
+       fill-rule="nonzero"
+       id="path111" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 160.94888,82.290403 h 42.93964"
+       fill-rule="nonzero"
+       id="path112" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 160.94888,110.51612 h 42.93964"
+       fill-rule="nonzero"
+       id="path113" />
+    <path
+       fill="#000000"
+       d="m 165.11134,37.907373 v -7.65625 h 0.85937 v 0.71875 q 0.29688,-0.421875 0.67188,-0.625 0.39062,-0.21875 0.92187,-0.21875 0.70313,0 1.25,0.375 0.54688,0.359375 0.8125,1.03125 0.28125,0.65625 0.28125,1.453125 0,0.84375 -0.3125,1.53125 -0.29687,0.671875 -0.875,1.03125 -0.57812,0.359375 -1.21875,0.359375 -0.46875,0 -0.84375,-0.1875 -0.375,-0.203125 -0.60937,-0.515625 v 2.703125 z m 0.84375,-4.859375 q 0,1.0625 0.4375,1.578125 0.4375,0.515625 1.04687,0.515625 0.625,0 1.0625,-0.53125 0.45313,-0.53125 0.45313,-1.640625 0,-1.046875 -0.4375,-1.578125 -0.4375,-0.53125 -1.04688,-0.53125 -0.59375,0 -1.0625,0.5625 -0.45312,0.5625 -0.45312,1.625 z m 7.12962,1.890625 0.125,0.828125 q -0.39062,0.09375 -0.70312,0.09375 -0.5,0 -0.78125,-0.15625 -0.28125,-0.171875 -0.40625,-0.4375 -0.10938,-0.265625 -0.10938,-1.109375 v -3.171875 h -0.6875 v -0.734375 h 0.6875 v -1.359375 l 0.9375,-0.5625 v 1.921875 h 0.9375 v 0.734375 h -0.9375 v 3.234375 q 0,0.390625 0.0469,0.515625 0.0469,0.109375 0.15625,0.1875 0.10937,0.0625 0.32812,0.0625 0.15625,0 0.40625,-0.04687 z m 0.89815,0.84375 v -5.53125 h 0.84375 v 0.84375 q 0.32813,-0.59375 0.59375,-0.78125 0.28125,-0.1875 0.60938,-0.1875 0.46875,0 0.95312,0.3125 l -0.3125,0.859375 q -0.34375,-0.203125 -0.6875,-0.203125 -0.3125,0 -0.5625,0.1875 -0.23437,0.1875 -0.34375,0.515625 -0.15625,0.5 -0.15625,1.09375 v 2.890625 z"
+       fill-rule="nonzero"
+       id="path114" />
+    <path
+       fill="#000000"
+       d="m 165.09572,68.656383 v -7.625 h 0.9375 v 7.625 z m 6.16435,-1.78125 0.96875,0.125 q -0.23437,0.84375 -0.85937,1.3125 -0.60938,0.46875 -1.57813,0.46875 -1.20312,0 -1.92187,-0.75 -0.70313,-0.75 -0.70313,-2.09375 0,-1.39063 0.71875,-2.15625 0.71875,-0.78125 1.85938,-0.78125 1.10937,0 1.8125,0.76562 0.70312,0.75 0.70312,2.125 0,0.0781 0,0.23438 h -4.125 q 0.0469,0.92187 0.51563,1.40625 0.46875,0.48437 1.15625,0.48437 0.51562,0 0.875,-0.26562 0.35937,-0.28125 0.57812,-0.875 z m -3.07812,-1.51563 h 3.09375 q -0.0625,-0.6875 -0.35938,-1.04687 -0.45312,-0.53125 -1.15625,-0.53125 -0.64062,0 -1.09375,0.4375 -0.4375,0.42187 -0.48437,1.14062 z m 5.22337,3.29688 v -5.53125 h 0.84375 v 0.79687 q 0.60938,-0.92187 1.75,-0.92187 0.5,0 0.92188,0.1875 0.42187,0.17187 0.625,0.46875 0.21875,0.29687 0.29687,0.6875 0.0469,0.26562 0.0469,0.92187 v 3.39063 h -0.9375 v -3.35938 q 0,-0.57812 -0.10938,-0.85937 -0.10937,-0.28125 -0.39062,-0.45313 -0.26563,-0.17187 -0.64063,-0.17187 -0.59375,0 -1.03125,0.39062 -0.4375,0.375 -0.4375,1.4375 v 3.01563 z m 10.84837,-4.48438 h -5.03125 v -0.875 h 5.03125 z m 0,2.3125 h -5.03125 v -0.875 h 5.03125 z m 5.89496,-3.59375 -0.92187,0.0781 q -0.125,-0.54688 -0.35938,-0.79688 -0.375,-0.40625 -0.9375,-0.40625 -0.4375,0 -0.78125,0.25 -0.4375,0.32813 -0.70312,0.95313 -0.25,0.60937 -0.26563,1.75 0.34375,-0.51563 0.82813,-0.76563 0.5,-0.25 1.03125,-0.25 0.9375,0 1.59375,0.70313 0.65625,0.6875 0.65625,1.76562 0,0.71875 -0.3125,1.34375 -0.3125,0.60938 -0.85938,0.9375 -0.53125,0.32813 -1.21875,0.32813 -1.17187,0 -1.90625,-0.85938 -0.73437,-0.85937 -0.73437,-2.82812 0,-2.21875 0.8125,-3.21875 0.71875,-0.875 1.92187,-0.875 0.89063,0 1.46875,0.5 0.57813,0.5 0.6875,1.39062 z m -3.8125,3.29688 q 0,0.48437 0.20313,0.92187 0.20312,0.4375 0.5625,0.67188 0.375,0.23437 0.78125,0.23437 0.59375,0 1.01562,-0.46875 0.4375,-0.48437 0.4375,-1.3125 0,-0.78125 -0.42187,-1.23437 -0.42188,-0.46875 -1.0625,-0.46875 -0.64063,0 -1.07813,0.46875 -0.4375,0.45312 -0.4375,1.1875 z"
+       fill-rule="nonzero"
+       id="path115" />
+    <path
+       fill="#000000"
+       d="m 168.72072,99.499163 0.92187,0.125 q -0.15625,0.953117 -0.78125,1.499997 -0.625,0.53125 -1.53125,0.53125 -1.125,0 -1.8125,-0.73438 -0.6875,-0.75 -0.6875,-2.124997 0,-0.90625 0.29688,-1.57812 0.29687,-0.67188 0.89062,-1 0.60938,-0.34375 1.32813,-0.34375 0.89062,0 1.46875,0.46875 0.57812,0.45312 0.73437,1.28125 l -0.90625,0.14062 q -0.14062,-0.54687 -0.46875,-0.82812 -0.32812,-0.28125 -0.79687,-0.28125 -0.70313,0 -1.15625,0.51562 -0.4375,0.5 -0.4375,1.59375 0,1.10938 0.42187,1.624997 0.4375,0.5 1.125,0.5 0.54688,0 0.90625,-0.34375 0.375,-0.34375 0.48438,-1.046867 z m 5.32812,1.343747 q -0.53125,0.45312 -1.01562,0.64062 -0.46875,0.17188 -1.01563,0.17188 -0.92187,0 -1.40625,-0.4375 -0.48437,-0.45313 -0.48437,-1.14063 0,-0.406247 0.17187,-0.734367 0.1875,-0.34375 0.48438,-0.54688 0.3125,-0.20312 0.6875,-0.3125 0.26562,-0.0625 0.82812,-0.14062 1.125,-0.125 1.67188,-0.3125 0,-0.20313 0,-0.25 0,-0.57813 -0.26563,-0.8125 -0.35937,-0.3125 -1.0625,-0.3125 -0.65625,0 -0.98437,0.23437 -0.3125,0.23438 -0.45313,0.8125 l -0.92187,-0.125 q 0.125,-0.57812 0.40625,-0.9375 0.29687,-0.375 0.82812,-0.5625 0.54688,-0.20312 1.25,-0.20312 0.71875,0 1.15625,0.17187 0.4375,0.17188 0.64063,0.42188 0.21875,0.25 0.29687,0.64062 0.0469,0.23438 0.0469,0.85938 v 1.25 q 0,1.296867 0.0625,1.656247 0.0625,0.34375 0.23437,0.65625 h -0.96875 q -0.15625,-0.29688 -0.1875,-0.6875 z m -0.0781,-2.078127 q -0.51563,0.20313 -1.53125,0.34375 -0.57813,0.0781 -0.82813,0.1875 -0.23437,0.10938 -0.35937,0.3125 -0.125,0.1875 -0.125,0.437497 0,0.375 0.28125,0.625 0.28125,0.25 0.82812,0.25 0.53125,0 0.95313,-0.23437 0.42187,-0.23438 0.625,-0.65625 0.15625,-0.312497 0.15625,-0.937497 z m 2.39525,4.890627 v -7.656247 h 0.85937 v 0.71875 q 0.29688,-0.42188 0.67188,-0.625 0.39062,-0.21875 0.92187,-0.21875 0.70313,0 1.25,0.375 0.54688,0.35937 0.8125,1.03125 0.28125,0.65625 0.28125,1.45312 0,0.84375 -0.3125,1.531247 -0.29687,0.67188 -0.875,1.03125 -0.57812,0.35938 -1.21875,0.35938 -0.46875,0 -0.84375,-0.1875 -0.375,-0.20313 -0.60937,-0.51563 v 2.70313 z m 0.84375,-4.859377 q 0,1.0625 0.4375,1.578127 0.4375,0.51562 1.04687,0.51562 0.625,0 1.0625,-0.53125 0.45313,-0.531247 0.45313,-1.640617 0,-1.04688 -0.4375,-1.57813 -0.4375,-0.53125 -1.04688,-0.53125 -0.59375,0 -1.0625,0.5625 -0.45312,0.5625 -0.45312,1.625 z m 10.00462,-1.75 h -5.03125 v -0.875 h 5.03125 z m 0,2.3125 h -5.03125 v -0.875 h 5.03125 z m 2.48871,-1.96875 q -0.59375,-0.20312 -0.875,-0.59375 -0.28125,-0.40625 -0.28125,-0.95312 0,-0.84375 0.59375,-1.40625 0.60937,-0.5625 1.59375,-0.5625 1,0 1.60937,0.57812 0.60938,0.57813 0.60938,1.40625 0,0.53125 -0.28125,0.9375 -0.26563,0.39063 -0.84375,0.59375 0.70312,0.23438 1.0625,0.75 0.375,0.5 0.375,1.20313 0,0.984367 -0.6875,1.656247 -0.6875,0.65625 -1.82813,0.65625 -1.125,0 -1.8125,-0.65625 -0.6875,-0.67188 -0.6875,-1.671877 0,-0.75 0.375,-1.25 0.375,-0.5 1.07813,-0.6875 z m -0.1875,-1.57812 q 0,0.53125 0.34375,0.875 0.34375,0.34375 0.90625,0.34375 0.53125,0 0.875,-0.32813 0.35937,-0.34375 0.35937,-0.84375 0,-0.51562 -0.35937,-0.85937 -0.35938,-0.35938 -0.89063,-0.35938 -0.53125,0 -0.89062,0.34375 -0.34375,0.34375 -0.34375,0.82813 z m -0.3125,3.51562 q 0,0.40625 0.1875,0.781247 0.20312,0.375 0.57812,0.57813 0.375,0.20312 0.79688,0.20312 0.67187,0 1.10937,-0.42187 0.4375,-0.4375 0.4375,-1.109377 0,-0.67187 -0.45312,-1.10937 -0.45313,-0.45313 -1.125,-0.45313 -0.65625,0 -1.09375,0.4375 -0.4375,0.4375 -0.4375,1.09375 z"
+       fill-rule="nonzero"
+       id="path116" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 191.38983,32.542373 66.01575,48"
+       fill-rule="evenodd"
+       id="path117" />
+    <path
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 197.52055,37.000023 50.1794,36.48539"
+       fill-rule="evenodd"
+       id="path118" />
+    <path
+       fill="#674ea7"
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linecap="butt"
+       d="m 192.19863,33.130453 c 1.06854,-1.469612 3.12613,-1.794731 4.59573,-0.726181 1.46962,1.06855 1.79474,3.126137 0.72618,4.595749 -1.06854,1.469604 -3.12612,1.794723 -4.59573,0.726173 -1.46962,-1.06855 -1.79474,-3.126136 -0.72618,-4.595741 z"
+       fill-rule="nonzero"
+       id="path119" />
+    <path
+       fill="#674ea7"
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linecap="butt"
+       d="m 245.75723,76.157273 9.28357,2.66566 -5.39816,-8.00936 z"
+       fill-rule="evenodd"
+       id="path120" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 131.38983,230.54237 h 30.96063 v 37.16534 h -30.96063 z"
+       fill-rule="evenodd"
+       id="path121" />
+    <path
+       fill="#000000"
+       d="m 140.73358,251.45047 2.01562,-0.29688 q 0.125,0.57813 0.51563,0.89063 0.40625,0.29687 1.10937,0.29687 0.78125,0 1.17188,-0.28125 0.26562,-0.20312 0.26562,-0.54687 0,-0.21875 -0.14062,-0.375 -0.15625,-0.14063 -0.67188,-0.26563 -2.4375,-0.53125 -3.07812,-0.98437 -0.90625,-0.60938 -0.90625,-1.70313 0,-0.98437 0.78125,-1.65625 0.78125,-0.67187 2.42187,-0.67187 1.54688,0 2.3125,0.51562 0.76563,0.5 1.04688,1.48438 l -1.90625,0.35937 q -0.10938,-0.45312 -0.45313,-0.6875 -0.34375,-0.23437 -0.96875,-0.23437 -0.79687,0 -1.14062,0.21875 -0.23438,0.15625 -0.23438,0.40625 0,0.21875 0.20313,0.375 0.28125,0.20312 1.875,0.5625 1.60937,0.35937 2.25,0.89062 0.625,0.54688 0.625,1.5 0,1.04688 -0.875,1.79688 -0.85938,0.75 -2.57813,0.75 -1.54687,0 -2.45312,-0.625 -0.90625,-0.64063 -1.1875,-1.71875 z"
+       fill-rule="nonzero"
+       id="path122" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 161.44757,232.54237 h 41.94226 v 32.87402 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path123" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 161.44757,265.41639 h 41.94226 v 32.87399 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path124" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 161.44757,298.29039 h 41.94226 v 28.22574 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path125" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 161.44757,232.04367 V 327.0148"
+       fill-rule="nonzero"
+       id="path126" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 203.38983,232.04367 V 327.0148"
+       fill-rule="nonzero"
+       id="path127" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 160.94888,232.54237 h 42.93964"
+       fill-rule="nonzero"
+       id="path128" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 160.94888,265.41639 h 42.93964"
+       fill-rule="nonzero"
+       id="path129" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 160.94888,298.29039 h 42.93964"
+       fill-rule="nonzero"
+       id="path130" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="m 160.94888,326.51612 h 42.93964"
+       fill-rule="nonzero"
+       id="path131" />
+    <path
+       fill="#000000"
+       d="m 165.11134,253.90737 v -7.65625 h 0.85937 v 0.71875 q 0.29688,-0.42188 0.67188,-0.625 0.39062,-0.21875 0.92187,-0.21875 0.70313,0 1.25,0.375 0.54688,0.35937 0.8125,1.03125 0.28125,0.65625 0.28125,1.45312 0,0.84375 -0.3125,1.53125 -0.29687,0.67188 -0.875,1.03125 -0.57812,0.35938 -1.21875,0.35938 -0.46875,0 -0.84375,-0.1875 -0.375,-0.20313 -0.60937,-0.51563 v 2.70313 z m 0.84375,-4.85938 q 0,1.0625 0.4375,1.57813 0.4375,0.51562 1.04687,0.51562 0.625,0 1.0625,-0.53125 0.45313,-0.53125 0.45313,-1.64062 0,-1.04688 -0.4375,-1.57813 -0.4375,-0.53125 -1.04688,-0.53125 -0.59375,0 -1.0625,0.5625 -0.45312,0.5625 -0.45312,1.625 z m 7.12962,1.89063 0.125,0.82812 q -0.39062,0.0937 -0.70312,0.0937 -0.5,0 -0.78125,-0.15625 -0.28125,-0.17187 -0.40625,-0.4375 -0.10938,-0.26562 -0.10938,-1.10937 v -3.17188 h -0.6875 v -0.73437 h 0.6875 v -1.35938 l 0.9375,-0.5625 v 1.92188 h 0.9375 v 0.73437 h -0.9375 v 3.23438 q 0,0.39062 0.0469,0.51562 0.0469,0.10938 0.15625,0.1875 0.10937,0.0625 0.32812,0.0625 0.15625,0 0.40625,-0.0469 z m 0.89815,0.84375 v -5.53125 h 0.84375 v 0.84375 q 0.32813,-0.59375 0.59375,-0.78125 0.28125,-0.1875 0.60938,-0.1875 0.46875,0 0.95312,0.3125 l -0.3125,0.85937 q -0.34375,-0.20312 -0.6875,-0.20312 -0.3125,0 -0.5625,0.1875 -0.23437,0.1875 -0.34375,0.51562 -0.15625,0.5 -0.15625,1.09375 v 2.89063 z"
+       fill-rule="nonzero"
+       id="path132" />
+    <path
+       fill="#000000"
+       d="m 165.09572,284.65637 v -7.625 h 0.9375 v 7.625 z m 6.16435,-1.78125 0.96875,0.125 q -0.23437,0.84375 -0.85937,1.3125 -0.60938,0.46875 -1.57813,0.46875 -1.20312,0 -1.92187,-0.75 -0.70313,-0.75 -0.70313,-2.09375 0,-1.39063 0.71875,-2.15625 0.71875,-0.78125 1.85938,-0.78125 1.10937,0 1.8125,0.76562 0.70312,0.75 0.70312,2.125 0,0.0781 0,0.23438 h -4.125 q 0.0469,0.92187 0.51563,1.40625 0.46875,0.48437 1.15625,0.48437 0.51562,0 0.875,-0.26562 0.35937,-0.28125 0.57812,-0.875 z m -3.07812,-1.51563 h 3.09375 q -0.0625,-0.6875 -0.35938,-1.04687 -0.45312,-0.53125 -1.15625,-0.53125 -0.64062,0 -1.09375,0.4375 -0.4375,0.42187 -0.48437,1.14062 z m 5.22337,3.29688 v -5.53125 h 0.84375 v 0.79687 q 0.60938,-0.92187 1.75,-0.92187 0.5,0 0.92188,0.1875 0.42187,0.17187 0.625,0.46875 0.21875,0.29687 0.29687,0.6875 0.0469,0.26562 0.0469,0.92187 v 3.39063 h -0.9375 v -3.35938 q 0,-0.57812 -0.10938,-0.85937 -0.10937,-0.28125 -0.39062,-0.45313 -0.26563,-0.17187 -0.64063,-0.17187 -0.59375,0 -1.03125,0.39062 -0.4375,0.375 -0.4375,1.4375 v 3.01563 z m 10.84837,-4.48438 h -5.03125 v -0.875 h 5.03125 z m 0,2.3125 h -5.03125 v -0.875 h 5.03125 z m 1.05121,0.15625 0.9375,-0.125 q 0.15625,0.79688 0.54688,1.15625 0.39062,0.34375 0.9375,0.34375 0.65625,0 1.10937,-0.45312 0.46875,-0.46875 0.46875,-1.14063 0,-0.64062 -0.42187,-1.0625 -0.42188,-0.42187 -1.07813,-0.42187 -0.26562,0 -0.65625,0.10937 l 0.10938,-0.82812 q 0.0937,0.0156 0.14062,0.0156 0.59375,0 1.07813,-0.3125 0.48437,-0.3125 0.48437,-0.96875 0,-0.51562 -0.35937,-0.84375 -0.34375,-0.34375 -0.89063,-0.34375 -0.54687,0 -0.92187,0.34375 -0.35938,0.34375 -0.45313,1.03125 l -0.9375,-0.17187 q 0.17188,-0.9375 0.78125,-1.45313 0.60938,-0.51562 1.5,-0.51562 0.625,0 1.15625,0.26562 0.53125,0.26563 0.79688,0.73438 0.28125,0.45312 0.28125,0.98437 0,0.48438 -0.26563,0.89063 -0.26562,0.40625 -0.78125,0.65625 0.67188,0.15625 1.04688,0.65625 0.375,0.48437 0.375,1.21875 0,1 -0.73438,1.70312 -0.71875,0.6875 -1.82812,0.6875 -1,0 -1.67188,-0.59375 -0.65625,-0.60937 -0.75,-1.5625 z"
+       fill-rule="nonzero"
+       id="path133" />
+    <path
+       fill="#000000"
+       d="m 168.72072,315.49917 0.92187,0.125 q -0.15625,0.95312 -0.78125,1.5 -0.625,0.53125 -1.53125,0.53125 -1.125,0 -1.8125,-0.73438 -0.6875,-0.75 -0.6875,-2.125 0,-0.90625 0.29688,-1.57812 0.29687,-0.67188 0.89062,-1 0.60938,-0.34375 1.32813,-0.34375 0.89062,0 1.46875,0.46875 0.57812,0.45312 0.73437,1.28125 l -0.90625,0.14062 q -0.14062,-0.54687 -0.46875,-0.82812 -0.32812,-0.28125 -0.79687,-0.28125 -0.70313,0 -1.15625,0.51562 -0.4375,0.5 -0.4375,1.59375 0,1.10938 0.42187,1.625 0.4375,0.5 1.125,0.5 0.54688,0 0.90625,-0.34375 0.375,-0.34375 0.48438,-1.04687 z m 5.32812,1.34375 q -0.53125,0.45312 -1.01562,0.64062 -0.46875,0.17188 -1.01563,0.17188 -0.92187,0 -1.40625,-0.4375 -0.48437,-0.45313 -0.48437,-1.14063 0,-0.40625 0.17187,-0.73437 0.1875,-0.34375 0.48438,-0.54688 0.3125,-0.20312 0.6875,-0.3125 0.26562,-0.0625 0.82812,-0.14062 1.125,-0.125 1.67188,-0.3125 0,-0.20313 0,-0.25 0,-0.57813 -0.26563,-0.8125 -0.35937,-0.3125 -1.0625,-0.3125 -0.65625,0 -0.98437,0.23437 -0.3125,0.23438 -0.45313,0.8125 l -0.92187,-0.125 q 0.125,-0.57812 0.40625,-0.9375 0.29687,-0.375 0.82812,-0.5625 0.54688,-0.20312 1.25,-0.20312 0.71875,0 1.15625,0.17187 0.4375,0.17188 0.64063,0.42188 0.21875,0.25 0.29687,0.64062 0.0469,0.23438 0.0469,0.85938 v 1.25 q 0,1.29687 0.0625,1.65625 0.0625,0.34375 0.23437,0.65625 h -0.96875 q -0.15625,-0.29688 -0.1875,-0.6875 z m -0.0781,-2.07813 q -0.51563,0.20313 -1.53125,0.34375 -0.57813,0.0781 -0.82813,0.1875 -0.23437,0.10938 -0.35937,0.3125 -0.125,0.1875 -0.125,0.4375 0,0.375 0.28125,0.625 0.28125,0.25 0.82812,0.25 0.53125,0 0.95313,-0.23437 0.42187,-0.23438 0.625,-0.65625 0.15625,-0.3125 0.15625,-0.9375 z m 2.39525,4.89063 v -7.65625 h 0.85937 v 0.71875 q 0.29688,-0.42188 0.67188,-0.625 0.39062,-0.21875 0.92187,-0.21875 0.70313,0 1.25,0.375 0.54688,0.35937 0.8125,1.03125 0.28125,0.65625 0.28125,1.45312 0,0.84375 -0.3125,1.53125 -0.29687,0.67188 -0.875,1.03125 -0.57812,0.35938 -1.21875,0.35938 -0.46875,0 -0.84375,-0.1875 -0.375,-0.20313 -0.60937,-0.51563 v 2.70313 z m 0.84375,-4.85938 q 0,1.0625 0.4375,1.57813 0.4375,0.51562 1.04687,0.51562 0.625,0 1.0625,-0.53125 0.45313,-0.53125 0.45313,-1.64062 0,-1.04688 -0.4375,-1.57813 -0.4375,-0.53125 -1.04688,-0.53125 -0.59375,0 -1.0625,0.5625 -0.45312,0.5625 -0.45312,1.625 z m 10.00462,-1.75 h -5.03125 v -0.875 h 5.03125 z m 0,2.3125 h -5.03125 v -0.875 h 5.03125 z m 2.48871,-1.96875 q -0.59375,-0.20312 -0.875,-0.59375 -0.28125,-0.40625 -0.28125,-0.95312 0,-0.84375 0.59375,-1.40625 0.60937,-0.5625 1.59375,-0.5625 1,0 1.60937,0.57812 0.60938,0.57813 0.60938,1.40625 0,0.53125 -0.28125,0.9375 -0.26563,0.39063 -0.84375,0.59375 0.70312,0.23438 1.0625,0.75 0.375,0.5 0.375,1.20313 0,0.98437 -0.6875,1.65625 -0.6875,0.65625 -1.82813,0.65625 -1.125,0 -1.8125,-0.65625 -0.6875,-0.67188 -0.6875,-1.67188 0,-0.75 0.375,-1.25 0.375,-0.5 1.07813,-0.6875 z m -0.1875,-1.57812 q 0,0.53125 0.34375,0.875 0.34375,0.34375 0.90625,0.34375 0.53125,0 0.875,-0.32813 0.35937,-0.34375 0.35937,-0.84375 0,-0.51562 -0.35937,-0.85937 -0.35938,-0.35938 -0.89063,-0.35938 -0.53125,0 -0.89062,0.34375 -0.34375,0.34375 -0.34375,0.82813 z m -0.3125,3.51562 q 0,0.40625 0.1875,0.78125 0.20312,0.375 0.57812,0.57813 0.375,0.20312 0.79688,0.20312 0.67187,0 1.10937,-0.42187 0.4375,-0.4375 0.4375,-1.10938 0,-0.67187 -0.45312,-1.10937 -0.45313,-0.45313 -1.125,-0.45313 -0.65625,0 -1.09375,0.4375 -0.4375,0.4375 -0.4375,1.09375 z"
+       fill-rule="nonzero"
+       id="path134" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 191.38983,248.54237 66.01575,48"
+       fill-rule="evenodd"
+       id="path135" />
+    <path
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 197.52055,253.00001 50.1794,36.48538"
+       fill-rule="evenodd"
+       id="path136" />
+    <path
+       fill="#674ea7"
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linecap="butt"
+       d="m 192.19863,249.13044 c 1.06854,-1.4696 3.12613,-1.79471 4.59573,-0.72617 1.46962,1.06855 1.79474,3.12613 0.72618,4.59574 -1.06854,1.4696 -3.12612,1.79474 -4.59573,0.72619 -1.46962,-1.06857 -1.79474,-3.12616 -0.72618,-4.59576 z"
+       fill-rule="nonzero"
+       id="path137" />
+    <path
+       fill="#674ea7"
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linecap="butt"
+       d="m 245.75723,292.15727 9.28357,2.66568 -5.39816,-8.0094 z"
+       fill-rule="evenodd"
+       id="path138" />
+  </g>
+</svg>
diff --git a/_content/blog/generic-slice-functions/4_delete_s_2_5_nil.svg b/_content/blog/generic-slice-functions/4_delete_s_2_5_nil.svg
new file mode 100644
index 0000000..a902cfd
--- /dev/null
+++ b/_content/blog/generic-slice-functions/4_delete_s_2_5_nil.svg
@@ -0,0 +1,470 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   version="1.1"
+   viewBox="0 0 624 228"
+   fill="none"
+   stroke="none"
+   stroke-linecap="square"
+   stroke-miterlimit="10"
+   id="svg138"
+   sodipodi:docname="4_delete_s_2_5_nil.svg"
+   width="624"
+   height="228"
+   inkscape:version="1.3.2 (091e20e, 2023-11-25)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg">
+  <defs
+     id="defs138" />
+  <sodipodi:namedview
+     id="namedview138"
+     pagecolor="#ffffff"
+     bordercolor="#000000"
+     borderopacity="0.25"
+     inkscape:showpageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     inkscape:deskcolor="#d1d1d1"
+     inkscape:zoom="0.43703704"
+     inkscape:cx="480.50847"
+     inkscape:cy="270"
+     inkscape:window-width="1312"
+     inkscape:window-height="449"
+     inkscape:window-x="118"
+     inkscape:window-y="367"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="g138" />
+  <clipPath
+     id="g2ae8329a7cf_0_31.0">
+    <path
+       d="M 0,0 H 960 V 540 H 0 Z"
+       clip-rule="nonzero"
+       id="path1" />
+  </clipPath>
+  <g
+     clip-path="url(#g2ae8329a7cf_0_31.0)"
+     id="g138">
+    <path
+       fill="#ffffff"
+       d="M 0,0 H 616.77966 V 226.52542 H 0 Z"
+       fill-rule="evenodd"
+       id="path2"
+       style="stroke-width:0.519148" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="M 29.661017,13.541835 H 344.62165 V 55.557597 H 29.661017 Z"
+       fill-rule="evenodd"
+       id="path3" />
+    <path
+       fill="#000000"
+       d="m 46.301642,37.758705 q 0,0.21875 -0.109375,0.421875 -0.109375,0.1875 -0.34375,0.328125 -0.234375,0.15625 -0.609375,0.25 -0.359375,0.07813 -0.859375,0.07813 -0.40625,0 -0.796875,-0.07813 -0.390625,-0.09375 -0.6875,-0.28125 -0.296875,-0.171875 -0.5,-0.453125 -0.1875,-0.28125 -0.203125,-0.6875 h -2.421875 q 0,0.609375 0.296875,1.203125 0.296875,0.59375 0.875,1.0625 0.5625,0.46875 1.421875,0.765625 0.859375,0.28125 1.96875,0.28125 1,0 1.8125,-0.21875 0.828125,-0.21875 1.421875,-0.625 0.5625,-0.40625 0.875,-0.953125 0.328125,-0.546875 0.328125,-1.203125 0,-0.71875 -0.328125,-1.234375 -0.3125,-0.515625 -0.859375,-0.875 -0.5625,-0.359375 -1.328125,-0.578125 -0.765625,-0.234375 -1.65625,-0.375 -0.625,-0.09375 -1.03125,-0.21875 -0.390625,-0.125 -0.609375,-0.28125 -0.25,-0.140625 -0.34375,-0.328125 -0.07813,-0.1875 -0.07813,-0.40625 0,-0.21875 0.09375,-0.40625 0.109375,-0.203125 0.3125,-0.34375 0.21875,-0.171875 0.5625,-0.25 0.34375,-0.09375 0.8125,-0.09375 0.546875,0 0.9375,0.140625 0.390625,0.125 0.609375,0.359375 0.171875,0.171875 0.25,0.390625 0.07813,0.203125 0.07813,0.453125 h 2.53125 q 0,-0.6875 -0.296875,-1.265625 -0.296875,-0.578125 -0.859375,-1.015625 -0.578125,-0.421875 -1.40625,-0.65625 -0.8125,-0.234375 -1.84375,-0.234375 -0.984375,0 -1.765625,0.25 -0.78125,0.234375 -1.328125,0.65625 -0.546875,0.421875 -0.84375,0.984375 -0.28125,0.546875 -0.28125,1.15625 0,0.625 0.28125,1.109375 0.28125,0.484375 0.796875,0.84375 0.515625,0.375 1.21875,0.640625 0.71875,0.25 1.578125,0.421875 0.6875,0.140625 1.125,0.265625 0.453125,0.125 0.734375,0.265625 0.265625,0.15625 0.359375,0.328125 0.109375,0.171875 0.109375,0.40625 z M 71.114661,33.93058 v -2.078125 h -8.625 v 2.078125 z m 0,3.921875 v -2.0625 h -8.625 v 2.0625 z m 19.969269,-0.09375 q 0,0.21875 -0.109375,0.421875 -0.109375,0.1875 -0.34375,0.328125 -0.234375,0.15625 -0.609375,0.25 -0.359375,0.07813 -0.859375,0.07813 -0.40625,0 -0.796875,-0.07813 -0.390625,-0.09375 -0.6875,-0.28125 -0.296875,-0.171875 -0.5,-0.453125 -0.1875,-0.28125 -0.203125,-0.6875 H 84.55268 q 0,0.609375 0.296875,1.203125 0.296875,0.59375 0.875,1.0625 0.5625,0.46875 1.421875,0.765625 0.859375,0.28125 1.96875,0.28125 1,0 1.8125,-0.21875 0.828125,-0.21875 1.421875,-0.625 0.5625,-0.40625 0.875,-0.953125 0.328125,-0.546875 0.328125,-1.203125 0,-0.71875 -0.328125,-1.234375 -0.3125,-0.515625 -0.859375,-0.875 -0.5625,-0.359375 -1.328125,-0.578125 -0.765625,-0.234375 -1.65625,-0.375 -0.625,-0.09375 -1.03125,-0.21875 -0.390625,-0.125 -0.609375,-0.28125 -0.25,-0.140625 -0.34375,-0.328125 -0.07813,-0.1875 -0.07813,-0.40625 0,-0.21875 0.09375,-0.40625 0.109375,-0.203125 0.3125,-0.34375 0.21875,-0.171875 0.5625,-0.25 0.34375,-0.09375 0.8125,-0.09375 0.546875,0 0.9375,0.140625 0.390625,0.125 0.609375,0.359375 0.171875,0.171875 0.25,0.390625 0.07813,0.203125 0.07813,0.453125 h 2.53125 q 0,-0.6875 -0.296875,-1.265625 -0.296875,-0.578125 -0.859375,-1.015625 -0.578125,-0.421875 -1.40625,-0.65625 -0.8125,-0.234375 -1.84375,-0.234375 -0.984375,0 -1.765625,0.25 -0.78125,0.234375 -1.328125,0.65625 -0.546875,0.421875 -0.84375,0.984375 -0.28125,0.546875 -0.28125,1.15625 0,0.625 0.28125,1.109375 0.28125,0.484375 0.796875,0.84375 0.515625,0.375 1.21875,0.640625 0.71875,0.25 1.578125,0.421875 0.6875,0.140625 1.125,0.265625 0.453125,0.125 0.734375,0.265625 0.265625,0.15625 0.359375,0.328125 0.109375,0.171875 0.109375,0.40625 z M 96.451377,26.46183 v 2.078125 h 2.953125 v 9.859375 h -2.953125 v 2.0625 h 8.328123 v -2.0625 h -2.8125 v -11.9375 z m 11.336193,4.140625 v 2.078125 h 2.8125 v 5.71875 h -2.8125 v 2.0625 h 8.04688 v -2.0625 h -2.67188 v -7.796875 z m 2.625,-2.515625 q 0,0.28125 0.10938,0.53125 0.10937,0.25 0.29687,0.421875 0.1875,0.1875 0.45313,0.296875 0.28125,0.09375 0.60937,0.09375 0.67188,0 1.0625,-0.375 0.39063,-0.375 0.39063,-0.96875 0,-0.59375 -0.39063,-0.96875 -0.39062,-0.390625 -1.0625,-0.390625 -0.32812,0 -0.60937,0.109375 -0.26563,0.09375 -0.45313,0.265625 -0.1875,0.1875 -0.29687,0.4375 -0.10938,0.25 -0.10938,0.546875 z m 12.25808,10.53125 q -0.60938,0 -1,-0.234375 -0.39063,-0.25 -0.625,-0.65625 -0.23438,-0.40625 -0.32813,-0.9375 -0.0937,-0.53125 -0.0937,-1.109375 v -0.28125 q 0,-0.5625 0.0937,-1.078125 0.10938,-0.53125 0.34375,-0.953125 0.21875,-0.40625 0.60938,-0.640625 0.39062,-0.25 1,-0.25 0.40625,0 0.75,0.140625 0.34375,0.140625 0.59375,0.375 0.25,0.234375 0.375,0.5625 0.125,0.328125 0.10937,0.6875 h 2.39063 q 0.0156,-0.875 -0.29688,-1.578125 -0.3125,-0.703125 -0.85937,-1.203125 -0.5625,-0.484375 -1.34375,-0.75 -0.76563,-0.28125 -1.6875,-0.28125 -1.14063,0 -2,0.390625 -0.85938,0.390625 -1.4375,1.0625 -0.57813,0.671875 -0.875,1.578125 -0.29688,0.90625 -0.29688,1.9375 v 0.28125 q 0,1.03125 0.29688,1.9375 0.29687,0.90625 0.875,1.59375 0.57812,0.671875 1.4375,1.0625 0.875,0.375 2.01562,0.375 0.85938,0 1.60938,-0.265625 0.76562,-0.265625 1.34375,-0.734375 0.5625,-0.484375 0.89062,-1.140625 0.34375,-0.65625 0.32813,-1.421875 h -2.39063 q 0.0156,0.34375 -0.125,0.640625 -0.14062,0.28125 -0.39062,0.46875 -0.25,0.203125 -0.59375,0.3125 -0.34375,0.109375 -0.71875,0.109375 z m 11.61744,2.03125 q 1.4375,0 2.48438,-0.546875 1.04687,-0.5625 1.53125,-1.25 l -1.26563,-1.375 q -0.4375,0.578125 -1.14062,0.859375 -0.70313,0.28125 -1.45313,0.28125 -0.53125,0 -0.98437,-0.15625 -0.4375,-0.171875 -0.78125,-0.484375 -0.32813,-0.28125 -0.53125,-0.640625 -0.20313,-0.359375 -0.32813,-0.953125 v -0.03125 h 6.6875 V 35.27433 q 0,-1.078125 -0.3125,-1.96875 -0.29687,-0.90625 -0.875,-1.546875 -0.57812,-0.640625 -1.42187,-0.984375 -0.82813,-0.34375 -1.89063,-0.34375 -1.03125,0 -1.90625,0.375 -0.875,0.359375 -1.5,1.03125 -0.64062,0.6875 -1,1.625 -0.35937,0.921875 -0.35937,2.046875 v 0.375 q 0,0.984375 0.35937,1.859375 0.35938,0.875 1.03125,1.5 0.65625,0.65625 1.57813,1.03125 0.9375,0.375 2.07812,0.375 z m -0.29687,-8.171875 q 0.48437,0 0.84375,0.15625 0.375,0.140625 0.625,0.390625 0.26562,0.265625 0.40625,0.625 0.14062,0.359375 0.14062,0.75 v 0.203125 h -4.14062 q 0.0781,-0.484375 0.26562,-0.875 0.1875,-0.390625 0.45313,-0.671875 0.26562,-0.28125 0.625,-0.421875 0.35937,-0.15625 0.78125,-0.15625 z m 13.07057,5.28125 q 0,0.21875 -0.10938,0.421875 -0.10937,0.1875 -0.34375,0.328125 -0.23437,0.15625 -0.60937,0.25 -0.35938,0.07813 -0.85938,0.07813 -0.40625,0 -0.79687,-0.07813 -0.39063,-0.09375 -0.6875,-0.28125 -0.29688,-0.171875 -0.5,-0.453125 -0.1875,-0.28125 -0.20313,-0.6875 h -2.42187 q 0,0.609375 0.29687,1.203125 0.29688,0.59375 0.875,1.0625 0.5625,0.46875 1.42188,0.765625 0.85937,0.28125 1.96875,0.28125 1,0 1.8125,-0.21875 0.82812,-0.21875 1.42187,-0.625 0.5625,-0.40625 0.875,-0.953125 0.32813,-0.546875 0.32813,-1.203125 0,-0.71875 -0.32813,-1.234375 -0.3125,-0.515625 -0.85937,-0.875 -0.5625,-0.359375 -1.32813,-0.578125 -0.76562,-0.234375 -1.65625,-0.375 -0.625,-0.09375 -1.03125,-0.21875 -0.39062,-0.125 -0.60937,-0.28125 -0.25,-0.140625 -0.34375,-0.328125 -0.0781,-0.1875 -0.0781,-0.40625 0,-0.21875 0.0937,-0.40625 0.10938,-0.203125 0.3125,-0.34375 0.21875,-0.171875 0.5625,-0.25 0.34375,-0.09375 0.8125,-0.09375 0.54688,0 0.9375,0.140625 0.39063,0.125 0.60938,0.359375 0.17187,0.171875 0.25,0.390625 0.0781,0.203125 0.0781,0.453125 h 2.53125 q 0,-0.6875 -0.29687,-1.265625 -0.29688,-0.578125 -0.85938,-1.015625 -0.57812,-0.421875 -1.40625,-0.65625 -0.8125,-0.234375 -1.84375,-0.234375 -0.98437,0 -1.76562,0.25 -0.78125,0.234375 -1.32813,0.65625 -0.54687,0.421875 -0.84375,0.984375 -0.28125,0.546875 -0.28125,1.15625 0,0.625 0.28125,1.109375 0.28125,0.484375 0.79688,0.84375 0.51562,0.375 1.21875,0.640625 0.71875,0.25 1.57812,0.421875 0.6875,0.140625 1.125,0.265625 0.45313,0.125 0.73438,0.265625 0.26562,0.15625 0.35937,0.328125 0.10938,0.171875 0.10938,0.40625 z m 7.3987,1.234375 q 0,0.703125 0.46875,1.1875 0.48437,0.46875 1.29687,0.46875 0.79688,0 1.26563,-0.46875 0.48437,-0.46875 0.48437,-1.1875 0,-0.703125 -0.46875,-1.1875 -0.46875,-0.484375 -1.28125,-0.484375 -0.84375,0 -1.3125,0.484375 -0.45312,0.484375 -0.45312,1.1875 z m 8.49244,1.46875 h 3.5625 q 0.875,0 1.65625,-0.21875 0.78125,-0.21875 1.42188,-0.625 0.5625,-0.34375 1.03125,-0.859375 0.46875,-0.515625 0.8125,-1.125 0.35937,-0.6875 0.5625,-1.5 0.20312,-0.828125 0.20312,-1.75 v -1.09375 q 0,-0.953125 -0.21875,-1.796875 -0.21875,-0.84375 -0.60937,-1.546875 -0.32813,-0.578125 -0.78125,-1.0625 -0.45313,-0.484375 -1.03125,-0.828125 -0.65625,-0.40625 -1.45313,-0.625 -0.79687,-0.234375 -1.71875,-0.234375 h -3.4375 z m 2.57813,-11.1875 h 0.85937 q 0.45313,0 0.84375,0.109375 0.40625,0.09375 0.73438,0.296875 0.4375,0.25 0.75,0.65625 0.32812,0.390625 0.53125,0.90625 0.15625,0.421875 0.23437,0.9375 0.0937,0.515625 0.0937,1.09375 v 1.109375 q 0,0.609375 -0.0937,1.140625 -0.0781,0.515625 -0.23437,0.953125 -0.20313,0.484375 -0.48438,0.859375 -0.28125,0.359375 -0.625,0.609375 -0.32812,0.21875 -0.75,0.34375 -0.40625,0.109375 -0.875,0.109375 h -0.98437 z m 13.53932,11.375 q 1.4375,0 2.48438,-0.546875 1.04687,-0.5625 1.53125,-1.25 l -1.26563,-1.375 q -0.4375,0.578125 -1.14062,0.859375 -0.70313,0.28125 -1.45313,0.28125 -0.53125,0 -0.98437,-0.15625 -0.4375,-0.171875 -0.78125,-0.484375 -0.32813,-0.28125 -0.53125,-0.640625 -0.20313,-0.359375 -0.32813,-0.953125 v -0.03125 h 6.6875 V 35.27433 q 0,-1.078125 -0.3125,-1.96875 -0.29687,-0.90625 -0.875,-1.546875 -0.57812,-0.640625 -1.42187,-0.984375 -0.82813,-0.34375 -1.89063,-0.34375 -1.03125,0 -1.90625,0.375 -0.875,0.359375 -1.5,1.03125 -0.64062,0.6875 -1,1.625 -0.35937,0.921875 -0.35937,2.046875 v 0.375 q 0,0.984375 0.35937,1.859375 0.35938,0.875 1.03125,1.5 0.65625,0.65625 1.57813,1.03125 0.9375,0.375 2.07812,0.375 z m -0.29687,-8.171875 q 0.48437,0 0.84375,0.15625 0.375,0.140625 0.625,0.390625 0.26562,0.265625 0.40625,0.625 0.14062,0.359375 0.14062,0.75 v 0.203125 h -4.14062 q 0.0781,-0.484375 0.26562,-0.875 0.1875,-0.390625 0.45313,-0.671875 0.26562,-0.28125 0.625,-0.421875 0.35937,-0.15625 0.78125,-0.15625 z m 7.24244,-6.015625 v 2.078125 h 2.95313 v 9.859375 h -2.95313 v 2.0625 h 8.32813 v -2.0625 h -2.8125 v -11.9375 z m 15.44557,14.1875 q 1.4375,0 2.48438,-0.546875 1.04687,-0.5625 1.53125,-1.25 l -1.26563,-1.375 q -0.4375,0.578125 -1.14062,0.859375 -0.70313,0.28125 -1.45313,0.28125 -0.53125,0 -0.98437,-0.15625 -0.4375,-0.171875 -0.78125,-0.484375 -0.32813,-0.28125 -0.53125,-0.640625 -0.20313,-0.359375 -0.32813,-0.953125 v -0.03125 h 6.6875 V 35.27433 q 0,-1.078125 -0.3125,-1.96875 -0.29687,-0.90625 -0.875,-1.546875 -0.57812,-0.640625 -1.42187,-0.984375 -0.82813,-0.34375 -1.89063,-0.34375 -1.03125,0 -1.90625,0.375 -0.875,0.359375 -1.5,1.03125 -0.64062,0.6875 -1,1.625 -0.35937,0.921875 -0.35937,2.046875 v 0.375 q 0,0.984375 0.35937,1.859375 0.35938,0.875 1.03125,1.5 0.65625,0.65625 1.57813,1.03125 0.9375,0.375 2.07812,0.375 z m -0.29687,-8.171875 q 0.48437,0 0.84375,0.15625 0.375,0.140625 0.625,0.390625 0.26562,0.265625 0.40625,0.625 0.14062,0.359375 0.14062,0.75 v 0.203125 h -4.14062 q 0.0781,-0.484375 0.26562,-0.875 0.1875,-0.390625 0.45313,-0.671875 0.26562,-0.28125 0.625,-0.421875 0.35937,-0.15625 0.78125,-0.15625 z m 11.36746,-4.28125 h -2.54687 v 2.40625 h -2.25 v 1.875 h 2.25 v 4.484375 q 0,0.96875 0.25,1.671875 0.26562,0.6875 0.73437,1.140625 0.46875,0.453125 1.125,0.671875 0.67188,0.203125 1.48438,0.203125 0.40625,0 0.84375,-0.04687 0.4375,-0.03125 0.82812,-0.109375 0.40625,-0.0625 0.76563,-0.171875 0.35937,-0.125 0.60937,-0.28125 l -0.23437,-1.734375 q -0.17188,0.04687 -0.42188,0.09375 -0.23437,0.04687 -0.51562,0.07813 -0.28125,0.04687 -0.59375,0.07813 -0.29688,0.01563 -0.59375,0.01563 -0.39063,0 -0.71875,-0.07813 -0.32813,-0.09375 -0.54688,-0.3125 -0.23437,-0.21875 -0.35937,-0.578125 -0.10938,-0.359375 -0.10938,-0.890625 V 32.47747 h 3.67188 v -1.875 h -3.67188 z m 11.32056,12.453125 q 1.4375,0 2.48437,-0.546875 1.04688,-0.5625 1.53125,-1.25 l -1.26562,-1.375 q -0.4375,0.578125 -1.14063,0.859375 -0.70312,0.28125 -1.45312,0.28125 -0.53125,0 -0.98438,-0.15625 -0.4375,-0.171875 -0.78125,-0.484375 -0.32812,-0.28125 -0.53125,-0.640625 -0.20312,-0.359375 -0.32812,-0.953125 v -0.03125 h 6.6875 V 35.27433 q 0,-1.078125 -0.3125,-1.96875 -0.29688,-0.90625 -0.875,-1.546875 -0.57813,-0.640625 -1.42188,-0.984375 -0.82812,-0.34375 -1.89062,-0.34375 -1.03125,0 -1.90625,0.375 -0.875,0.359375 -1.5,1.03125 -0.64063,0.6875 -1,1.625 -0.35938,0.921875 -0.35938,2.046875 v 0.375 q 0,0.984375 0.35938,1.859375 0.35937,0.875 1.03125,1.5 0.65625,0.65625 1.57812,1.03125 0.9375,0.375 2.07813,0.375 z m -0.29688,-8.171875 q 0.48438,0 0.84375,0.15625 0.375,0.140625 0.625,0.390625 0.26563,0.265625 0.40625,0.625 0.14063,0.359375 0.14063,0.75 v 0.203125 h -4.14063 q 0.0781,-0.484375 0.26563,-0.875 0.1875,-0.390625 0.45312,-0.671875 0.26563,-0.28125 0.625,-0.421875 0.35938,-0.15625 0.78125,-0.15625 z m 8.57056,2.59375 v 0.203125 q 0,1.28125 0.1875,2.421875 0.20313,1.125 0.54688,2.078125 0.32812,0.96875 0.78125,1.765625 0.45312,0.796875 0.95312,1.390625 0.5,0.609375 1.03125,1.03125 0.53125,0.4375 1.03125,0.65625 l 0.5,-1.359375 q -0.35937,-0.28125 -0.71875,-0.6875 -0.35937,-0.40625 -0.6875,-0.96875 -0.3125,-0.5 -0.59375,-1.1875 -0.26562,-0.6875 -0.45312,-1.484375 -0.15625,-0.578125 -0.28125,-1.53125 -0.125,-0.96875 -0.125,-2.109375 V 35.05558 q 0,-1.15625 0.125,-2.140625 0.14062,-0.984375 0.34375,-1.796875 0.23437,-0.84375 0.54687,-1.546875 0.32813,-0.71875 0.6875,-1.234375 0.28125,-0.40625 0.5625,-0.703125 0.29688,-0.3125 0.59375,-0.53125 l -0.5,-1.390625 q -0.5,0.234375 -1.03125,0.65625 -0.53125,0.421875 -1.03125,1.03125 -0.5,0.609375 -0.95312,1.40625 -0.45313,0.78125 -0.78125,1.75 -0.34375,0.953125 -0.54688,2.09375 -0.1875,1.140625 -0.1875,2.421875 z m 15.69559,2.6875 q 0,0.21875 -0.10938,0.421875 -0.10937,0.1875 -0.34375,0.328125 -0.23437,0.15625 -0.60937,0.25 -0.35938,0.07813 -0.85938,0.07813 -0.40625,0 -0.79687,-0.07813 -0.39063,-0.09375 -0.6875,-0.28125 -0.29688,-0.171875 -0.5,-0.453125 -0.1875,-0.28125 -0.20313,-0.6875 h -2.42187 q 0,0.609375 0.29687,1.203125 0.29688,0.59375 0.875,1.0625 0.5625,0.46875 1.42188,0.765625 0.85937,0.28125 1.96875,0.28125 1,0 1.8125,-0.21875 0.82812,-0.21875 1.42187,-0.625 0.5625,-0.40625 0.875,-0.953125 0.32813,-0.546875 0.32813,-1.203125 0,-0.71875 -0.32813,-1.234375 -0.3125,-0.515625 -0.85937,-0.875 -0.5625,-0.359375 -1.32813,-0.578125 -0.76562,-0.234375 -1.65625,-0.375 -0.625,-0.09375 -1.03125,-0.21875 -0.39062,-0.125 -0.60937,-0.28125 -0.25,-0.140625 -0.34375,-0.328125 -0.0781,-0.1875 -0.0781,-0.40625 0,-0.21875 0.0937,-0.40625 0.10938,-0.203125 0.3125,-0.34375 0.21875,-0.171875 0.5625,-0.25 0.34375,-0.09375 0.8125,-0.09375 0.54688,0 0.9375,0.140625 0.39063,0.125 0.60938,0.359375 0.17187,0.171875 0.25,0.390625 0.0781,0.203125 0.0781,0.453125 h 2.53125 q 0,-0.6875 -0.29687,-1.265625 -0.29688,-0.578125 -0.85938,-1.015625 -0.57812,-0.421875 -1.40625,-0.65625 -0.8125,-0.234375 -1.84375,-0.234375 -0.98437,0 -1.76562,0.25 -0.78125,0.234375 -1.32813,0.65625 -0.54687,0.421875 -0.84375,0.984375 -0.28125,0.546875 -0.28125,1.15625 0,0.625 0.28125,1.109375 0.28125,0.484375 0.79688,0.84375 0.51562,0.375 1.21875,0.640625 0.71875,0.25 1.57812,0.421875 0.6875,0.140625 1.125,0.265625 0.45313,0.125 0.73438,0.265625 0.26562,0.15625 0.35937,0.328125 0.10938,0.171875 0.10938,0.40625 z m 10.02371,2.5 0.0156,-2.015625 h -2.39062 v 2.140625 q 0,1 -0.23438,1.703125 -0.23437,0.71875 -0.57812,1.375 l 1.34375,0.703125 q 0.8125,-0.734375 1.32812,-1.796875 0.51563,-1.0625 0.51563,-2.109375 z m 25.87549,0.203125 v -2.03125 h -5.8125 l 2.48437,-2.640625 q 0.65625,-0.671875 1.17188,-1.265625 0.53125,-0.609375 0.92187,-1.1875 0.375,-0.59375 0.57813,-1.1875 0.20312,-0.59375 0.20312,-1.25 0,-0.875 -0.28125,-1.578125 -0.26562,-0.71875 -0.78125,-1.234375 -0.53125,-0.5 -1.3125,-0.78125 -0.78125,-0.296875 -1.78125,-0.296875 -1.0625,0 -1.9375,0.34375 -0.85937,0.34375 -1.46875,0.9375 -0.625,0.59375 -0.96875,1.390625 -0.32812,0.78125 -0.32812,1.65625 h 2.53125 q 0,-0.53125 0.14062,-0.953125 0.14063,-0.421875 0.40625,-0.703125 0.25,-0.265625 0.64063,-0.40625 0.39062,-0.140625 0.89062,-0.140625 0.39063,0 0.71875,0.125 0.32813,0.125 0.5625,0.359375 0.23438,0.25 0.35938,0.59375 0.125,0.34375 0.125,0.796875 0,0.296875 -0.0937,0.625 -0.0937,0.3125 -0.3125,0.671875 -0.21875,0.375 -0.5625,0.828125 -0.34375,0.4375 -0.84375,0.984375 l -4.29688,4.609375 v 1.734375 z m 7.71121,-0.203125 0.0156,-2.015625 h -2.39062 v 2.140625 q 0,1 -0.23438,1.703125 -0.23437,0.71875 -0.57812,1.375 l 1.34375,0.703125 q 0.8125,-0.734375 1.32812,-1.796875 0.51563,-1.0625 0.51563,-2.109375 z m 17.32864,-6.328125 2.03125,0.5 q 0.14063,-0.140625 0.29688,-0.265625 0.17187,-0.140625 0.39062,-0.25 0.20313,-0.09375 0.46875,-0.15625 0.28125,-0.0625 0.65625,-0.0625 0.54688,0 0.95313,0.171875 0.42187,0.171875 0.6875,0.484375 0.28125,0.328125 0.40625,0.765625 0.14062,0.4375 0.14062,0.96875 0,0.546875 -0.10937,1.015625 -0.10938,0.453125 -0.32813,0.796875 -0.21875,0.328125 -0.57812,0.53125 -0.35938,0.1875 -0.875,0.1875 -0.82813,0 -1.35938,-0.46875 -0.53125,-0.484375 -0.625,-1.34375 h -2.5 q 0.0312,0.921875 0.42188,1.640625 0.39062,0.703125 1,1.203125 0.625,0.484375 1.42187,0.75 0.79688,0.25 1.65625,0.25 1.125,0 1.95313,-0.359375 0.82812,-0.359375 1.375,-0.96875 0.54687,-0.609375 0.8125,-1.40625 0.26562,-0.8125 0.26562,-1.703125 0,-1.046875 -0.28125,-1.875 -0.26562,-0.828125 -0.78125,-1.40625 -0.51562,-0.5625 -1.26562,-0.859375 -0.75,-0.3125 -1.70313,-0.3125 -0.6875,0 -1.20312,0.171875 -0.51563,0.171875 -0.79688,0.328125 l 0.3125,-2.90625 h 5.28125 v -2.15625 h -7.35937 z m 17.82056,1.34375 v -0.203125 q 0,-1.25 -0.20312,-2.359375 -0.20313,-1.125 -0.54688,-2.09375 -0.34375,-0.953125 -0.8125,-1.75 -0.45312,-0.796875 -0.96875,-1.4375 -0.53125,-0.609375 -1.07812,-1.046875 -0.54688,-0.4375 -1.0625,-0.671875 l -0.48438,1.359375 q 0.28125,0.203125 0.54688,0.5 0.28125,0.296875 0.54687,0.671875 0.39063,0.5625 0.73438,1.34375 0.35937,0.765625 0.60937,1.75 0.1875,0.78125 0.29688,1.71875 0.125,0.921875 0.125,2 v 0.234375 q 0,1.09375 -0.125,2.046875 -0.10938,0.953125 -0.29688,1.734375 -0.23437,0.859375 -0.53125,1.546875 -0.29687,0.6875 -0.64062,1.234375 -0.3125,0.46875 -0.625,0.8125 -0.3125,0.359375 -0.64063,0.59375 l 0.48438,1.359375 q 0.51562,-0.21875 1.0625,-0.65625 0.54687,-0.4375 1.07812,-1.0625 0.51563,-0.625 0.96875,-1.421875 0.46875,-0.796875 0.8125,-1.765625 0.34375,-0.96875 0.54688,-2.078125 0.20312,-1.109375 0.20312,-2.359375 z"
+       fill-rule="nonzero"
+       id="path4" />
+    <path
+       fill="#eeeeee"
+       d="m 13.317183,68.412125 v 0 c 0,12.054352 4.362465,22.582031 10.6063,25.595642 v -1.76773 l 3.535431,4.374847 -3.535431,2.696015 v -1.767701 0 c -6.243835,-3.01361 -10.6063,-13.54129 -10.6063,-25.595642 z"
+       fill-rule="evenodd"
+       id="path58" />
+    <path
+       fill="#bebebe"
+       d="m 27.458917,45.512525 v 0 c -7.443192,0 -13.61235,10.784973 -14.110077,24.667328 v 0 c -0.261787,-7.301666 1.107361,-14.479462 3.781433,-19.82431 2.674072,-5.344848 6.41378,-8.378448 10.328644,-8.378448 z"
+       fill-rule="evenodd"
+       id="path59" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 13.317183,68.412125 v 0 c 0,12.054352 4.362465,22.582031 10.6063,25.595642 v -1.76773 l 3.535431,4.374847 -3.535431,2.696015 v -1.767701 0 c -6.243835,-3.01361 -10.6063,-13.54129 -10.6063,-25.595642 v -3.535431 0 c 0,-14.59967 6.331474,-26.435028 14.141731,-26.435028 v 3.535431 0 c -7.443192,0 -13.61235,10.784973 -14.110077,24.667328"
+       fill-rule="evenodd"
+       id="path60" />
+    <path
+       stroke="#595959"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 13.317183,68.412125 v 0 c 0,12.054352 4.362465,22.582031 10.6063,25.595642 v -1.76773 l 3.535431,4.374847 -3.535431,2.696015 v -1.767701 0 c -6.243835,-3.01361 -10.6063,-13.54129 -10.6063,-25.595642 v -3.535431 0 c 0,-14.59967 6.331474,-26.435028 14.141731,-26.435028 v 3.535431 0 c -7.443192,0 -13.61235,10.784973 -14.110077,24.667328"
+       fill-rule="evenodd"
+       id="path61" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="M 243.71876,127.49153 H 283.913 v 40 h -40.19424 z"
+       fill-rule="nonzero"
+       id="path62" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 283.913,127.49153 h 40.19421 v 40 H 283.913 Z"
+       fill-rule="nonzero"
+       id="path63" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9ead3"
+       d="m 324.10722,127.49153 h 40.19421 v 40 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path64" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 364.30142,127.49153 h 40.19424 v 40 h -40.19424 z"
+       fill-rule="nonzero"
+       id="path65" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 404.49568,127.49153 h 40.19421 v 40 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path66" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 444.68989,127.49153 h 40.19421 v 40 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path67" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 484.88412,127.49153 h 40.19421 v 40 h -40.19421 z"
+       fill-rule="nonzero"
+       id="path68" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#d9d9d9"
+       d="m 525.07832,127.49153 h 40.19427 v 40 h -40.19427 z"
+       fill-rule="nonzero"
+       id="path69" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 243.71876,126.99283 V 167.9902"
+       fill-rule="nonzero"
+       id="path70" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 283.913,126.99283 V 167.9902"
+       fill-rule="nonzero"
+       id="path71" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 324.10722,126.99283 V 167.9902"
+       fill-rule="nonzero"
+       id="path72" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 364.30142,126.99283 V 167.9902"
+       fill-rule="nonzero"
+       id="path73" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 404.49568,126.99283 V 167.9902"
+       fill-rule="nonzero"
+       id="path74" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 444.68989,126.99283 V 167.9902"
+       fill-rule="nonzero"
+       id="path75" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 484.88412,126.99283 V 167.9902"
+       fill-rule="nonzero"
+       id="path76" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 525.07832,126.99283 V 167.9902"
+       fill-rule="nonzero"
+       id="path77" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 565.27262,126.99283 V 167.9902"
+       fill-rule="nonzero"
+       id="path78" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 243.22007,127.49153 H 565.77125"
+       fill-rule="nonzero"
+       id="path79" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 243.22007,167.49153 H 565.77125"
+       fill-rule="nonzero"
+       id="path80" />
+    <path
+       fill="#1155cc"
+       d="m 253.59376,151.94777 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 6.02185,-1.28125 q 0,-1.6875 0.34375,-2.71875 0.35937,-1.03125 1.04687,-1.59375 0.6875,-0.5625 1.71875,-0.5625 0.78125,0 1.35938,0.3125 0.57812,0.29688 0.95312,0.89063 0.375,0.57812 0.59375,1.42187 0.21875,0.82813 0.21875,2.25 0,1.67188 -0.35937,2.70313 -0.34375,1.03125 -1.03125,1.59375 -0.67188,0.5625 -1.73438,0.5625 -1.375,0 -2.15625,-0.98438 -0.95312,-1.1875 -0.95312,-3.875 z m 1.20312,0 q 0,2.34375 0.54688,3.125 0.5625,0.78125 1.35937,0.78125 0.8125,0 1.35938,-0.78125 0.5625,-0.78125 0.5625,-3.125 0,-2.35937 -0.5625,-3.125 -0.54688,-0.78125 -1.35938,-0.78125 -0.8125,0 -1.29687,0.6875 -0.60938,0.875 -0.60938,3.21875 z"
+       fill-rule="nonzero"
+       id="path81" />
+    <path
+       fill="#1155cc"
+       d="m 293.788,151.94777 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 10.44372,3.42188 h -1.17187 v -7.46875 q -0.42188,0.40625 -1.10938,0.8125 -0.6875,0.40625 -1.23437,0.60937 v -1.14062 q 0.98437,-0.45313 1.71875,-1.10938 0.73437,-0.67187 1.03125,-1.28125 h 0.76562 z"
+       fill-rule="nonzero"
+       id="path82" />
+    <path
+       fill="#1155cc"
+       d="m 333.98222,151.94777 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 6.02185,0.92188 1.23437,-0.10938 q 0.14063,0.90625 0.64063,1.35938 0.5,0.45312 1.20312,0.45312 0.84375,0 1.42188,-0.64062 0.59375,-0.64063 0.59375,-1.6875 0,-1 -0.5625,-1.57813 -0.5625,-0.59375 -1.48438,-0.59375 -0.5625,0 -1.01562,0.26563 -0.45313,0.25 -0.71875,0.67187 l -1.09375,-0.15625 0.92187,-4.89062 h 4.75 v 1.10937 h -3.8125 l -0.51562,2.5625 q 0.85937,-0.59375 1.79687,-0.59375 1.25,0 2.10938,0.875 0.85937,0.85938 0.85937,2.21875 0,1.29688 -0.75,2.23438 -0.92187,1.15625 -2.5,1.15625 -1.3125,0 -2.14062,-0.71875 -0.8125,-0.73438 -0.9375,-1.9375 z"
+       fill-rule="nonzero"
+       id="path83" />
+    <path
+       fill="#434343"
+       d="m 375.30142,142.38527 h 1.78125 l -0.1875,0.89062 q 0.65625,-0.57812 1.23437,-0.8125 0.57813,-0.25 1.21875,-0.25 0.84375,0 1.32813,0.5 0.5,0.48438 0.5,1.28125 0,0.375 -0.20313,1.39063 l -0.8125,3.90625 h -1.875 l 0.82813,-3.92188 q 0.17187,-0.875 0.17187,-1.04687 0,-0.35938 -0.21875,-0.5625 -0.20312,-0.20313 -0.57812,-0.20313 -0.40625,0 -0.90625,0.34375 -0.5,0.34375 -0.79688,0.90625 -0.20312,0.40625 -0.46875,1.64063 l -0.59375,2.84375 h -1.85937 z m 8.6726,-2.64063 h 1.85938 l -0.34375,1.70313 h -1.875 z m -0.54687,2.64063 h 1.85937 l -1.4375,6.90625 h -1.875 z m 2.23425,6.90625 2,-9.54688 h 1.85938 l -1.98438,9.54688 z"
+       fill-rule="nonzero"
+       id="path84" />
+    <path
+       fill="#434343"
+       d="m 415.49568,142.38527 h 1.78125 l -0.1875,0.89062 q 0.65625,-0.57812 1.23437,-0.8125 0.57813,-0.25 1.21875,-0.25 0.84375,0 1.32813,0.5 0.5,0.48438 0.5,1.28125 0,0.375 -0.20313,1.39063 l -0.8125,3.90625 h -1.875 l 0.82813,-3.92188 q 0.17187,-0.875 0.17187,-1.04687 0,-0.35938 -0.21875,-0.5625 -0.20312,-0.20313 -0.57812,-0.20313 -0.40625,0 -0.90625,0.34375 -0.5,0.34375 -0.79688,0.90625 -0.20312,0.40625 -0.46875,1.64063 l -0.59375,2.84375 h -1.85937 z m 8.6726,-2.64063 h 1.85938 l -0.34375,1.70313 h -1.875 z m -0.54687,2.64063 h 1.85937 l -1.4375,6.90625 h -1.875 z m 2.23422,6.90625 2,-9.54688 h 1.85938 l -1.98438,9.54688 z"
+       fill-rule="nonzero"
+       id="path85" />
+    <path
+       fill="#434343"
+       d="m 455.68989,142.38527 h 1.78125 l -0.1875,0.89062 q 0.65625,-0.57812 1.23437,-0.8125 0.57813,-0.25 1.21875,-0.25 0.84375,0 1.32813,0.5 0.5,0.48438 0.5,1.28125 0,0.375 -0.20313,1.39063 l -0.8125,3.90625 h -1.875 l 0.82813,-3.92188 q 0.17187,-0.875 0.17187,-1.04687 0,-0.35938 -0.21875,-0.5625 -0.20312,-0.20313 -0.57812,-0.20313 -0.40625,0 -0.90625,0.34375 -0.5,0.34375 -0.79688,0.90625 -0.20312,0.40625 -0.46875,1.64063 l -0.59375,2.84375 h -1.85937 z m 8.6726,-2.64063 h 1.85938 l -0.34375,1.70313 h -1.875 z m -0.54687,2.64063 h 1.85937 l -1.4375,6.90625 h -1.875 z m 2.23425,6.90625 2,-9.54688 h 1.85938 l -1.98438,9.54688 z"
+       fill-rule="nonzero"
+       id="path86" />
+    <path
+       fill="#434343"
+       d="m 494.75912,151.94777 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 12.09997,-3.78125 -1.15625,0.0937 q -0.15625,-0.6875 -0.4375,-1 -0.48437,-0.5 -1.17187,-0.5 -0.5625,0 -0.98438,0.3125 -0.5625,0.39063 -0.89062,1.17188 -0.3125,0.76562 -0.3125,2.20312 0.42187,-0.64062 1.03125,-0.95312 0.60937,-0.3125 1.28125,-0.3125 1.17187,0 1.98437,0.85937 0.82813,0.85938 0.82813,2.23438 0,0.89062 -0.39063,1.67187 -0.375,0.76563 -1.0625,1.17188 -0.67187,0.40625 -1.53125,0.40625 -1.46875,0 -2.39062,-1.0625 -0.92188,-1.07813 -0.92188,-3.5625 0,-2.76563 1.01563,-4.01563 0.90625,-1.09375 2.40625,-1.09375 1.125,0 1.84375,0.64063 0.71875,0.625 0.85937,1.73437 z m -4.78125,4.10938 q 0,0.60937 0.25,1.17187 0.26563,0.54688 0.71875,0.84375 0.46875,0.28125 0.98438,0.28125 0.73437,0 1.26562,-0.59375 0.54688,-0.60937 0.54688,-1.64062 0,-0.98438 -0.53125,-1.54688 -0.53125,-0.57812 -1.32813,-0.57812 -0.79687,0 -1.35937,0.57812 -0.54688,0.5625 -0.54688,1.48438 z"
+       fill-rule="nonzero"
+       id="path87" />
+    <path
+       fill="#434343"
+       d="m 534.95332,151.94777 v -9.5625 h 1.07812 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48438,-0.26562 1.15625,-0.26562 0.875,0 1.54688,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10938,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57812,0 -1.04687,-0.25 -0.46875,-0.25 -0.76563,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54687,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54688,-1.96875 -0.54687,-0.67187 -1.29687,-0.67187 -0.75,0 -1.32813,0.70312 -0.57812,0.70313 -0.57812,2.03125 z m 6.09997,-4.875 v -1.125 h 6.1875 v 0.92188 q -0.92187,0.96875 -1.8125,2.57812 -0.89062,1.59375 -1.375,3.29688 -0.35937,1.20312 -0.45312,2.625 h -1.20313 q 0.0156,-1.125 0.4375,-2.71875 0.42188,-1.59375 1.20313,-3.07813 0.79687,-1.48437 1.6875,-2.5 z"
+       fill-rule="nonzero"
+       id="path88" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 231.07047,168.88523 h 39.24408 v 42.01574 h -39.24408 z"
+       fill-rule="evenodd"
+       id="path89" />
+    <path
+       fill="#000000"
+       d="m 240.85172,189.21147 q 0,-2.35938 0.48437,-3.79688 0.48438,-1.45312 1.4375,-2.23437 0.96875,-0.78125 2.42188,-0.78125 1.07812,0 1.89062,0.4375 0.8125,0.42187 1.32813,1.25 0.53125,0.8125 0.82812,1.98437 0.3125,1.15625 0.3125,3.14063 0,2.35937 -0.48437,3.8125 -0.48438,1.4375 -1.45313,2.23437 -0.95312,0.78125 -2.42187,0.78125 -1.92188,0 -3.03125,-1.39062 -1.3125,-1.67188 -1.3125,-5.4375 z m 1.67187,0 q 0,3.29687 0.76563,4.39062 0.78125,1.07813 1.90625,1.07813 1.14062,0 1.90625,-1.09375 0.76562,-1.09375 0.76562,-4.375 0,-3.29688 -0.76562,-4.375 -0.76563,-1.07813 -1.92188,-1.07813 -1.125,0 -1.79687,0.95313 -0.85938,1.21875 -0.85938,4.5 z"
+       fill-rule="nonzero"
+       id="path90" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 355.72402,165.31831 h 70.07873 v 51.71652 h -70.07873 z"
+       fill-rule="evenodd"
+       id="path91" />
+    <path
+       fill="#000000"
+       d="m 365.58338,187.1183 v -9.54688 h 1.17187 v 9.54688 z m 7.71109,-2.21875 1.20312,0.14062 q -0.28125,1.0625 -1.0625,1.65625 -0.76562,0.57813 -1.96875,0.57813 -1.51562,0 -2.40625,-0.9375 -0.89062,-0.9375 -0.89062,-2.60938 0,-1.75 0.89062,-2.70312 0.90625,-0.96875 2.34375,-0.96875 1.39063,0 2.26563,0.9375 0.875,0.9375 0.875,2.65625 0,0.10937 0,0.3125 h -5.15625 q 0.0625,1.14062 0.64062,1.75 0.57813,0.59375 1.4375,0.59375 0.65625,0 1.10938,-0.32813 0.45312,-0.34375 0.71875,-1.07812 z m -3.84375,-1.90625 h 3.85937 q -0.0781,-0.85938 -0.4375,-1.29688 -0.5625,-0.6875 -1.45312,-0.6875 -0.8125,0 -1.35938,0.54688 -0.54687,0.53125 -0.60937,1.4375 z m 6.52185,4.125 v -6.90625 h 1.0625 v 0.98437 q 0.75,-1.14062 2.1875,-1.14062 0.625,0 1.15625,0.21875 0.53125,0.21875 0.78125,0.59375 0.26562,0.35937 0.375,0.85937 0.0625,0.32813 0.0625,1.14063 v 4.25 h -1.17188 v -4.20313 q 0,-0.71875 -0.14062,-1.0625 -0.14063,-0.35937 -0.48438,-0.5625 -0.34375,-0.21875 -0.8125,-0.21875 -0.75,0 -1.29687,0.46875 -0.54688,0.46875 -0.54688,1.79688 v 3.78125 z m 9.66247,2.8125 q -0.98437,-1.23438 -1.65625,-2.875 -0.65625,-1.64063 -0.65625,-3.39063 0,-1.54687 0.5,-2.96875 0.57813,-1.64062 1.8125,-3.28125 h 0.82813 q -0.78125,1.35938 -1.03125,1.9375 -0.40625,0.89063 -0.625,1.875 -0.28125,1.21875 -0.28125,2.4375 0,3.14063 1.9375,6.26563 z m 1.71964,-4.875 1.15625,-0.1875 q 0.10937,0.70312 0.54687,1.07812 0.45313,0.35938 1.25,0.35938 0.8125,0 1.20313,-0.32813 0.39062,-0.32812 0.39062,-0.76562 0,-0.39063 -0.35937,-0.625 -0.23438,-0.15625 -1.1875,-0.39063 -1.29688,-0.32812 -1.79688,-0.5625 -0.48437,-0.25 -0.75,-0.65625 -0.25,-0.42187 -0.25,-0.9375 0,-0.45312 0.20313,-0.84375 0.21875,-0.40625 0.57812,-0.67187 0.28125,-0.1875 0.75,-0.32813 0.46875,-0.14062 1.01563,-0.14062 0.8125,0 1.42187,0.23437 0.60938,0.23438 0.90625,0.64063 0.29688,0.39062 0.40625,1.0625 l -1.14062,0.15625 q -0.0781,-0.53125 -0.45313,-0.82813 -0.375,-0.3125 -1.0625,-0.3125 -0.8125,0 -1.15625,0.26563 -0.34375,0.26562 -0.34375,0.625 0,0.23437 0.14063,0.42187 0.15625,0.1875 0.45312,0.3125 0.17188,0.0625 1.03125,0.29688 1.25,0.32812 1.73438,0.54687 0.5,0.20313 0.78125,0.60938 0.28125,0.40625 0.28125,1 0,0.59375 -0.34375,1.10937 -0.34375,0.51563 -1,0.79688 -0.64063,0.28125 -1.45313,0.28125 -1.34375,0 -2.04687,-0.5625 -0.70313,-0.5625 -0.90625,-1.65625 z m 7.89844,4.875 h -0.82813 q 1.9375,-3.125 1.9375,-6.26563 0,-1.21875 -0.28125,-2.42187 -0.21875,-0.98438 -0.60937,-1.875 -0.26563,-0.59375 -1.04688,-1.95313 h 0.82813 q 1.23437,1.64063 1.8125,3.28125 0.5,1.42188 0.5,2.96875 0,1.75 -0.67188,3.39063 -0.67187,1.64062 -1.64062,2.875 z"
+       fill-rule="nonzero"
+       id="path92" />
+    <path
+       fill="#000000"
+       d="m 371.77088,197.50893 h -6.3125 v -1.09375 h 6.3125 z m 0,2.89062 h -6.3125 v -1.09375 h 6.3125 z m 5.00204,0.20313 1.17188,-0.15625 q 0.20312,1 0.6875,1.4375 0.48437,0.4375 1.17187,0.4375 0.82813,0 1.39063,-0.57813 0.57812,-0.57812 0.57812,-1.42187 0,-0.79688 -0.53125,-1.3125 -0.51562,-0.53125 -1.32812,-0.53125 -0.34375,0 -0.82813,0.125 l 0.125,-1.03125 q 0.125,0.0156 0.1875,0.0156 0.75,0 1.34375,-0.39062 0.60938,-0.39063 0.60938,-1.20313 0,-0.64062 -0.4375,-1.0625 -0.4375,-0.42187 -1.125,-0.42187 -0.6875,0 -1.14063,0.4375 -0.45312,0.42187 -0.59375,1.28125 l -1.17187,-0.21875 q 0.21875,-1.17188 0.98437,-1.8125 0.76563,-0.65625 1.89063,-0.65625 0.78125,0 1.4375,0.34375 0.65625,0.32812 1,0.90625 0.35937,0.57812 0.35937,1.23437 0,0.60938 -0.34375,1.125 -0.32812,0.5 -0.96875,0.79688 0.84375,0.20312 1.3125,0.82812 0.46875,0.60938 0.46875,1.53125 0,1.25 -0.92187,2.125 -0.90625,0.85938 -2.29688,0.85938 -1.25,0 -2.09375,-0.75 -0.82812,-0.75 -0.9375,-1.9375 z"
+       fill-rule="nonzero"
+       id="path93" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 555.72402,165.31831 h 70.07873 v 51.71652 h -70.07873 z"
+       fill-rule="evenodd"
+       id="path94" />
+    <path
+       fill="#000000"
+       d="m 570.11462,184.58705 1.15625,0.15625 q -0.1875,1.1875 -0.96875,1.85937 -0.78125,0.67188 -1.92188,0.67188 -1.40625,0 -2.28125,-0.92188 -0.85937,-0.9375 -0.85937,-2.65625 0,-1.125 0.375,-1.96875 0.375,-0.84375 1.125,-1.25 0.76562,-0.42187 1.65625,-0.42187 1.125,0 1.84375,0.57812 0.71875,0.5625 0.92187,1.60938 l -1.14062,0.17187 q -0.17188,-0.70312 -0.59375,-1.04687 -0.40625,-0.35938 -0.98438,-0.35938 -0.89062,0 -1.45312,0.64063 -0.54688,0.64062 -0.54688,2 0,1.40625 0.53125,2.03125 0.54688,0.625 1.40625,0.625 0.6875,0 1.14063,-0.42188 0.46875,-0.42187 0.59375,-1.29687 z m 6.66406,1.67187 q -0.65625,0.5625 -1.26563,0.79688 -0.59375,0.21875 -1.28125,0.21875 -1.14062,0 -1.75,-0.54688 -0.60937,-0.5625 -0.60937,-1.4375 0,-0.5 0.21875,-0.92187 0.23437,-0.42188 0.60937,-0.67188 0.375,-0.25 0.84375,-0.39062 0.34375,-0.0781 1.04688,-0.17188 1.42187,-0.17187 2.09375,-0.40625 0,-0.23437 0,-0.29687 0,-0.71875 -0.32813,-1.01563 -0.45312,-0.39062 -1.34375,-0.39062 -0.8125,0 -1.21875,0.29687 -0.39062,0.28125 -0.57812,1.01563 l -1.14063,-0.15625 q 0.15625,-0.73438 0.51563,-1.1875 0.35937,-0.45313 1.03125,-0.6875 0.67187,-0.25 1.5625,-0.25 0.89062,0 1.4375,0.20312 0.5625,0.20313 0.8125,0.53125 0.26562,0.3125 0.375,0.79688 0.0469,0.29687 0.0469,1.07812 v 1.5625 q 0,1.625 0.0781,2.0625 0.0781,0.4375 0.29687,0.82813 h -1.21875 q -0.1875,-0.35938 -0.23437,-0.85938 z m -0.0937,-2.60937 q -0.64063,0.26562 -1.92188,0.4375 -0.71875,0.10937 -1.01562,0.25 -0.29688,0.125 -0.46875,0.375 -0.15625,0.25 -0.15625,0.54687 0,0.46875 0.34375,0.78125 0.35937,0.3125 1.04687,0.3125 0.67188,0 1.20313,-0.29687 0.53125,-0.29688 0.78125,-0.8125 0.1875,-0.39063 0.1875,-1.17188 z m 2.9906,6.125 v -9.5625 h 1.07813 v 0.89062 q 0.375,-0.53125 0.84375,-0.78125 0.48437,-0.26562 1.15625,-0.26562 0.875,0 1.54687,0.45312 0.6875,0.45313 1.03125,1.28125 0.34375,0.82813 0.34375,1.82813 0,1.04687 -0.375,1.90625 -0.375,0.84375 -1.10937,1.29687 -0.71875,0.45313 -1.53125,0.45313 -0.57813,0 -1.04688,-0.25 -0.46875,-0.25 -0.76562,-0.625 v 3.375 z m 1.0625,-6.07813 q 0,1.34375 0.53125,1.98438 0.54688,0.625 1.3125,0.625 0.78125,0 1.34375,-0.65625 0.5625,-0.65625 0.5625,-2.04688 0,-1.3125 -0.54687,-1.96875 -0.54688,-0.67187 -1.29688,-0.67187 -0.75,0 -1.32812,0.70312 -0.57813,0.70313 -0.57813,2.03125 z m 8.59998,6.23438 q -0.98438,-1.23438 -1.65625,-2.875 -0.65625,-1.64063 -0.65625,-3.39063 0,-1.54687 0.5,-2.96875 0.57812,-1.64062 1.8125,-3.28125 h 0.82812 q -0.78125,1.35938 -1.03125,1.9375 -0.40625,0.89063 -0.625,1.875 -0.28125,1.21875 -0.28125,2.4375 0,3.14063 1.9375,6.26563 z m 1.7196,-4.875 1.15625,-0.1875 q 0.10938,0.70312 0.54688,1.07812 0.45312,0.35938 1.25,0.35938 0.8125,0 1.20312,-0.32813 0.39063,-0.32812 0.39063,-0.76562 0,-0.39063 -0.35938,-0.625 -0.23437,-0.15625 -1.1875,-0.39063 -1.29687,-0.32812 -1.79687,-0.5625 -0.48438,-0.25 -0.75,-0.65625 -0.25,-0.42187 -0.25,-0.9375 0,-0.45312 0.20312,-0.84375 0.21875,-0.40625 0.57813,-0.67187 0.28125,-0.1875 0.75,-0.32813 0.46875,-0.14062 1.01562,-0.14062 0.8125,0 1.42188,0.23437 0.60937,0.23438 0.90625,0.64063 0.29687,0.39062 0.40625,1.0625 l -1.14063,0.15625 q -0.0781,-0.53125 -0.45312,-0.82813 -0.375,-0.3125 -1.0625,-0.3125 -0.8125,0 -1.15625,0.26563 -0.34375,0.26562 -0.34375,0.625 0,0.23437 0.14062,0.42187 0.15625,0.1875 0.45313,0.3125 0.17187,0.0625 1.03125,0.29688 1.25,0.32812 1.73437,0.54687 0.5,0.20313 0.78125,0.60938 0.28125,0.40625 0.28125,1 0,0.59375 -0.34375,1.10937 -0.34375,0.51563 -1,0.79688 -0.64062,0.28125 -1.45312,0.28125 -1.34375,0 -2.04688,-0.5625 -0.70312,-0.5625 -0.90625,-1.65625 z m 7.89844,4.875 h -0.82813 q 1.9375,-3.125 1.9375,-6.26563 0,-1.21875 -0.28125,-2.42187 -0.21875,-0.98438 -0.60937,-1.875 -0.26563,-0.59375 -1.04688,-1.95313 h 0.82813 q 1.23437,1.64063 1.8125,3.28125 0.5,1.42188 0.5,2.96875 0,1.75 -0.67188,3.39063 -0.67187,1.64062 -1.64062,2.875 z"
+       fill-rule="nonzero"
+       id="path95" />
+    <path
+       fill="#000000"
+       d="m 571.77088,197.50893 h -6.3125 v -1.09375 h 6.3125 z m 0,2.89062 h -6.3125 v -1.09375 h 6.3125 z m 6.79889,-2.45312 q -0.73438,-0.26563 -1.09375,-0.76563 -0.34375,-0.5 -0.34375,-1.1875 0,-1.03125 0.75,-1.73437 0.75,-0.71875 1.98437,-0.71875 1.25,0 2.01563,0.73437 0.76562,0.71875 0.76562,1.75 0,0.67188 -0.35937,1.17188 -0.34375,0.48437 -1.04688,0.75 0.875,0.28125 1.32813,0.92187 0.46875,0.64063 0.46875,1.51563 0,1.23437 -0.875,2.0625 -0.85938,0.82812 -2.26563,0.82812 -1.42187,0 -2.28125,-0.82812 -0.85937,-0.84375 -0.85937,-2.09375 0,-0.92188 0.46875,-1.54688 0.46875,-0.64062 1.34375,-0.85937 z m -0.23438,-1.98438 q 0,0.67188 0.4375,1.10938 0.4375,0.42187 1.125,0.42187 0.67188,0 1.10938,-0.42187 0.4375,-0.42188 0.4375,-1.04688 0,-0.64062 -0.45313,-1.07812 -0.4375,-0.4375 -1.10937,-0.4375 -0.67188,0 -1.10938,0.4375 -0.4375,0.42187 -0.4375,1.01562 z m -0.375,4.40625 q 0,0.5 0.23438,0.96875 0.23437,0.46875 0.70312,0.73438 0.46875,0.25 1.01563,0.25 0.82812,0 1.375,-0.53125 0.54687,-0.54688 0.54687,-1.39063 0,-0.84375 -0.5625,-1.39062 -0.5625,-0.5625 -1.40625,-0.5625 -0.82812,0 -1.375,0.54687 -0.53125,0.54688 -0.53125,1.375 z"
+       fill-rule="nonzero"
+       id="path96" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 250.69252,168.88523 v 0"
+       fill-rule="evenodd"
+       id="path97" />
+    <path
+       stroke="#595959"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 250.69252,168.88523 v 0"
+       fill-rule="evenodd"
+       id="path98" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 243.70302,168.88523 v 7.9685"
+       fill-rule="evenodd"
+       id="path99" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 243.70302,168.88523 v 7.9685"
+       fill-rule="evenodd"
+       id="path100" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 365.6374,168.86503 v 7.9685"
+       fill-rule="evenodd"
+       id="path101" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 365.6374,168.86503 v 7.9685"
+       fill-rule="evenodd"
+       id="path102" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 566.22012,168.86503 v 7.9685"
+       fill-rule="evenodd"
+       id="path103" />
+    <path
+       stroke="#999999"
+       stroke-width="1"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 566.22012,168.86503 v 7.9685"
+       fill-rule="evenodd"
+       id="path104" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 117.66102,77.491525 h 30.96063 v 37.165345 h -30.96063 z"
+       fill-rule="evenodd"
+       id="path121" />
+    <path
+       fill="#000000"
+       d="m 127.00477,98.399625 2.01562,-0.296875 q 0.125,0.578125 0.51563,0.890625 0.40625,0.296875 1.10937,0.296875 0.78125,0 1.17188,-0.28125 0.26562,-0.203125 0.26562,-0.546875 0,-0.21875 -0.14062,-0.375 -0.15625,-0.140625 -0.67188,-0.265625 -2.4375,-0.53125 -3.07812,-0.984375 -0.90625,-0.609375 -0.90625,-1.703125 0,-0.984375 0.78125,-1.65625 0.78125,-0.671875 2.42187,-0.671875 1.54688,0 2.3125,0.515625 0.76563,0.5 1.04688,1.484375 l -1.90625,0.359375 q -0.10938,-0.453125 -0.45313,-0.6875 -0.34375,-0.234375 -0.96875,-0.234375 -0.79687,0 -1.14062,0.21875 -0.23438,0.15625 -0.23438,0.40625 0,0.21875 0.20313,0.375 0.28125,0.203125 1.875,0.5625 1.60937,0.359375 2.25,0.890625 0.625,0.546875 0.625,1.5 0,1.046875 -0.875,1.796875 -0.85938,0.750005 -2.57813,0.750005 -1.54687,0 -2.45312,-0.625 -0.90625,-0.64063 -1.1875,-1.718755 z"
+       fill-rule="nonzero"
+       id="path122" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 147.71876,79.491525 h 41.94226 v 32.874025 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path123" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 147.71876,112.36555 h 41.94226 v 32.87399 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path124" />
+    <path
+       shape-rendering="crispEdges"
+       fill="#ffffff"
+       d="m 147.71876,145.23955 h 41.94226 v 28.22573 h -41.94226 z"
+       fill-rule="nonzero"
+       id="path125" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 147.71876,78.992825 V 173.96396"
+       fill-rule="nonzero"
+       id="path126" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 189.66102,78.992825 V 173.96396"
+       fill-rule="nonzero"
+       id="path127" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 147.22007,79.491525 H 190.1597"
+       fill-rule="nonzero"
+       id="path128" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 147.22007,112.36555 H 190.1597"
+       fill-rule="nonzero"
+       id="path129" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 147.22007,145.23955 H 190.1597"
+       fill-rule="nonzero"
+       id="path130" />
+    <path
+       stroke="#9e9e9e"
+       stroke-width="1"
+       stroke-linecap="butt"
+       d="M 147.22007,173.46528 H 190.1597"
+       fill-rule="nonzero"
+       id="path131" />
+    <path
+       fill="#000000"
+       d="m 151.38253,100.85653 v -7.656255 h 0.85937 v 0.71875 q 0.29688,-0.421875 0.67188,-0.625 0.39062,-0.21875 0.92187,-0.21875 0.70313,0 1.25,0.375 0.54688,0.359375 0.8125,1.03125 0.28125,0.65625 0.28125,1.453125 0,0.84375 -0.3125,1.53125 -0.29687,0.671875 -0.875,1.03125 -0.57812,0.359375 -1.21875,0.359375 -0.46875,0 -0.84375,-0.1875 -0.375,-0.203125 -0.60937,-0.515625 v 2.70313 z m 0.84375,-4.85938 q 0,1.0625 0.4375,1.578125 0.4375,0.515625 1.04687,0.515625 0.625,0 1.0625,-0.53125 0.45313,-0.53125 0.45313,-1.640625 0,-1.046875 -0.4375,-1.578125 -0.4375,-0.53125 -1.04688,-0.53125 -0.59375,0 -1.0625,0.5625 -0.45312,0.5625 -0.45312,1.625 z m 7.12962,1.890625 0.125,0.828125 q -0.39062,0.09375 -0.70312,0.09375 -0.5,0 -0.78125,-0.15625 -0.28125,-0.171875 -0.40625,-0.4375 -0.10938,-0.265625 -0.10938,-1.109375 V 93.93465 h -0.6875 v -0.734375 h 0.6875 V 91.8409 l 0.9375,-0.5625 v 1.921875 h 0.9375 v 0.734375 h -0.9375 v 3.234375 q 0,0.390625 0.0469,0.515625 0.0469,0.109375 0.15625,0.1875 0.10937,0.0625 0.32812,0.0625 0.15625,0 0.40625,-0.04687 z m 0.89815,0.84375 v -5.53125 h 0.84375 v 0.84375 q 0.32812,-0.59375 0.59375,-0.78125 0.28125,-0.1875 0.60937,-0.1875 0.46875,0 0.95313,0.3125 l -0.3125,0.859375 q -0.34375,-0.203125 -0.6875,-0.203125 -0.3125,0 -0.5625,0.1875 -0.23438,0.1875 -0.34375,0.515625 -0.15625,0.5 -0.15625,1.09375 v 2.890625 z"
+       fill-rule="nonzero"
+       id="path132" />
+    <path
+       fill="#000000"
+       d="m 151.36691,131.60553 v -7.625 h 0.9375 v 7.625 z m 6.16435,-1.78125 0.96875,0.125 q -0.23438,0.84375 -0.85938,1.3125 -0.60937,0.46875 -1.57812,0.46875 -1.20313,0 -1.92188,-0.75 -0.70312,-0.75 -0.70312,-2.09375 0,-1.39063 0.71875,-2.15625 0.71875,-0.78125 1.85937,-0.78125 1.10938,0 1.8125,0.76562 0.70313,0.75 0.70313,2.125 0,0.0781 0,0.23438 h -4.125 q 0.0469,0.92187 0.51562,1.40625 0.46875,0.48437 1.15625,0.48437 0.51563,0 0.875,-0.26562 0.35938,-0.28125 0.57813,-0.875 z m -3.07813,-1.51563 h 3.09375 q -0.0625,-0.6875 -0.35937,-1.04687 -0.45313,-0.53125 -1.15625,-0.53125 -0.64063,0 -1.09375,0.4375 -0.4375,0.42187 -0.48438,1.14062 z m 5.22338,3.29688 v -5.53125 h 0.84375 v 0.79687 q 0.60937,-0.92187 1.75,-0.92187 0.5,0 0.92187,0.1875 0.42188,0.17187 0.625,0.46875 0.21875,0.29687 0.29688,0.6875 0.0469,0.26562 0.0469,0.92187 v 3.39063 h -0.9375 v -3.35938 q 0,-0.57812 -0.10937,-0.85937 -0.10938,-0.28125 -0.39063,-0.45313 -0.26562,-0.17187 -0.64062,-0.17187 -0.59375,0 -1.03125,0.39062 -0.4375,0.375 -0.4375,1.4375 v 3.01563 z m 10.84837,-4.48438 h -5.03125 v -0.875 h 5.03125 z m 0,2.3125 h -5.03125 v -0.875 h 5.03125 z m 1.05121,0.15625 0.9375,-0.125 q 0.15625,0.79688 0.54687,1.15625 0.39063,0.34375 0.9375,0.34375 0.65625,0 1.10938,-0.45312 0.46875,-0.46875 0.46875,-1.14063 0,-0.64062 -0.42188,-1.0625 -0.42187,-0.42187 -1.07812,-0.42187 -0.26563,0 -0.65625,0.10937 l 0.10937,-0.82812 q 0.0937,0.0156 0.14063,0.0156 0.59375,0 1.07812,-0.3125 0.48438,-0.3125 0.48438,-0.96875 0,-0.51562 -0.35938,-0.84375 -0.34375,-0.34375 -0.89062,-0.34375 -0.54688,0 -0.92188,0.34375 -0.35937,0.34375 -0.45312,1.03125 l -0.9375,-0.17187 q 0.17187,-0.9375 0.78125,-1.45313 0.60937,-0.51562 1.5,-0.51562 0.625,0 1.15625,0.26562 0.53125,0.26563 0.79687,0.73438 0.28125,0.45312 0.28125,0.98437 0,0.48438 -0.26562,0.89063 -0.26563,0.40625 -0.78125,0.65625 0.67187,0.15625 1.04687,0.65625 0.375,0.48437 0.375,1.21875 0,1 -0.73437,1.70312 -0.71875,0.6875 -1.82813,0.6875 -1,0 -1.67187,-0.59375 -0.65625,-0.60937 -0.75,-1.5625 z"
+       fill-rule="nonzero"
+       id="path133" />
+    <path
+       fill="#000000"
+       d="m 154.99191,162.44833 0.92187,0.125 q -0.15625,0.95312 -0.78125,1.5 -0.625,0.53125 -1.53125,0.53125 -1.125,0 -1.8125,-0.73438 -0.6875,-0.75 -0.6875,-2.125 0,-0.90625 0.29688,-1.57812 0.29687,-0.67188 0.89062,-1 0.60938,-0.34375 1.32813,-0.34375 0.89062,0 1.46875,0.46875 0.57812,0.45312 0.73437,1.28125 l -0.90625,0.14062 q -0.14062,-0.54687 -0.46875,-0.82812 -0.32812,-0.28125 -0.79687,-0.28125 -0.70313,0 -1.15625,0.51562 -0.4375,0.5 -0.4375,1.59375 0,1.10938 0.42187,1.625 0.4375,0.5 1.125,0.5 0.54688,0 0.90625,-0.34375 0.375,-0.34375 0.48438,-1.04687 z m 5.32812,1.34375 q -0.53125,0.45312 -1.01562,0.64062 -0.46875,0.17188 -1.01563,0.17188 -0.92187,0 -1.40625,-0.4375 -0.48437,-0.45313 -0.48437,-1.14063 0,-0.40625 0.17187,-0.73437 0.1875,-0.34375 0.48438,-0.54688 0.3125,-0.20312 0.6875,-0.3125 0.26562,-0.0625 0.82812,-0.14062 1.125,-0.125 1.67188,-0.3125 0,-0.20313 0,-0.25 0,-0.57813 -0.26563,-0.8125 -0.35937,-0.3125 -1.0625,-0.3125 -0.65625,0 -0.98437,0.23437 -0.3125,0.23438 -0.45313,0.8125 l -0.92187,-0.125 q 0.125,-0.57812 0.40625,-0.9375 0.29687,-0.375 0.82812,-0.5625 0.54688,-0.20312 1.25,-0.20312 0.71875,0 1.15625,0.17187 0.4375,0.17188 0.64063,0.42188 0.21875,0.25 0.29687,0.64062 0.0469,0.23438 0.0469,0.85938 v 1.25 q 0,1.29687 0.0625,1.65625 0.0625,0.34375 0.23437,0.65625 h -0.96875 q -0.15625,-0.29688 -0.1875,-0.6875 z m -0.0781,-2.07813 q -0.51563,0.20313 -1.53125,0.34375 -0.57813,0.0781 -0.82813,0.1875 -0.23437,0.10938 -0.35937,0.3125 -0.125,0.1875 -0.125,0.4375 0,0.375 0.28125,0.625 0.28125,0.25 0.82812,0.25 0.53125,0 0.95313,-0.23437 0.42187,-0.23438 0.625,-0.65625 0.15625,-0.3125 0.15625,-0.9375 z m 2.39525,4.89063 v -7.65625 h 0.85937 v 0.71875 q 0.29688,-0.42188 0.67188,-0.625 0.39062,-0.21875 0.92187,-0.21875 0.70313,0 1.25,0.375 0.54688,0.35937 0.8125,1.03125 0.28125,0.65625 0.28125,1.45312 0,0.84375 -0.3125,1.53125 -0.29687,0.67188 -0.875,1.03125 -0.57812,0.35938 -1.21875,0.35938 -0.46875,0 -0.84375,-0.1875 -0.375,-0.20313 -0.60937,-0.51563 v 2.70313 z m 0.84375,-4.85938 q 0,1.0625 0.4375,1.57813 0.4375,0.51562 1.04687,0.51562 0.625,0 1.0625,-0.53125 0.45313,-0.53125 0.45313,-1.64062 0,-1.04688 -0.4375,-1.57813 -0.4375,-0.53125 -1.04688,-0.53125 -0.59375,0 -1.0625,0.5625 -0.45312,0.5625 -0.45312,1.625 z m 10.00462,-1.75 h -5.03125 v -0.875 h 5.03125 z m 0,2.3125 h -5.03125 v -0.875 h 5.03125 z m 2.48871,-1.96875 q -0.59375,-0.20312 -0.875,-0.59375 -0.28125,-0.40625 -0.28125,-0.95312 0,-0.84375 0.59375,-1.40625 0.60937,-0.5625 1.59375,-0.5625 1,0 1.60937,0.57812 0.60938,0.57813 0.60938,1.40625 0,0.53125 -0.28125,0.9375 -0.26563,0.39063 -0.84375,0.59375 0.70312,0.23438 1.0625,0.75 0.375,0.5 0.375,1.20313 0,0.98437 -0.6875,1.65625 -0.6875,0.65625 -1.82813,0.65625 -1.125,0 -1.8125,-0.65625 -0.6875,-0.67188 -0.6875,-1.67188 0,-0.75 0.375,-1.25 0.375,-0.5 1.07813,-0.6875 z m -0.1875,-1.57812 q 0,0.53125 0.34375,0.875 0.34375,0.34375 0.90625,0.34375 0.53125,0 0.875,-0.32813 0.35937,-0.34375 0.35937,-0.84375 0,-0.51562 -0.35937,-0.85937 -0.35938,-0.35938 -0.89063,-0.35938 -0.53125,0 -0.89062,0.34375 -0.34375,0.34375 -0.34375,0.82813 z m -0.3125,3.51562 q 0,0.40625 0.1875,0.78125 0.20312,0.375 0.57812,0.57813 0.375,0.20312 0.79688,0.20312 0.67187,0 1.10937,-0.42187 0.4375,-0.4375 0.4375,-1.10938 0,-0.67187 -0.45312,-1.10937 -0.45313,-0.45313 -1.125,-0.45313 -0.65625,0 -1.09375,0.4375 -0.4375,0.4375 -0.4375,1.09375 z"
+       fill-rule="nonzero"
+       id="path134" />
+    <path
+       fill="#000000"
+       fill-opacity="0"
+       d="m 177.66102,95.491525 66.01575,48.000005"
+       fill-rule="evenodd"
+       id="path135" />
+    <path
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linejoin="round"
+       stroke-linecap="butt"
+       d="m 183.79174,99.949165 50.17939,36.485385"
+       fill-rule="evenodd"
+       id="path136" />
+    <path
+       fill="#674ea7"
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linecap="butt"
+       d="m 178.46982,96.079595 c 1.06854,-1.469604 3.12613,-1.794708 4.59573,-0.726165 1.46962,1.068542 1.79474,3.126129 0.72618,4.595733 -1.06854,1.469607 -3.12613,1.794737 -4.59573,0.726197 -1.46962,-1.068573 -1.79474,-3.12616 -0.72618,-4.595765 z"
+       fill-rule="nonzero"
+       id="path137" />
+    <path
+       fill="#674ea7"
+       stroke="#674ea7"
+       stroke-width="2"
+       stroke-linecap="butt"
+       d="m 232.02842,139.10643 9.28357,2.66568 -5.39817,-8.0094 z"
+       fill-rule="evenodd"
+       id="path138" />
+  </g>
+</svg>
diff --git a/_content/blog/generic-slice-functions/5_Delete_diff.png b/_content/blog/generic-slice-functions/5_Delete_diff.png
new file mode 100644
index 0000000..8136321
--- /dev/null
+++ b/_content/blog/generic-slice-functions/5_Delete_diff.png
Binary files differ