This commit is contained in:
Boris Marinov 2021-12-14 01:02:55 +02:00
parent e310a8218a
commit 8461582886
7 changed files with 1742 additions and 220 deletions

View File

@ -122,12 +122,12 @@ If we view *monoids* as a means of modeling the effect of applying a set of (ass
A nice example of a monoid that we covered that is also a group is the set of integers under addition. The inverse of each number is its opposite number (positive numbers' inverse are negatives and vice versa). The above formula, then, becomes $x + (-x) = 0$
The study of groups is a field that is much bigger than the theory of monoids (and perhaps bigger than category theory itself). And it all started with the what are now called the "symmetry groups" which we will look into in more detail.
The study of groups is a field that is much bigger than the theory of monoids (and perhaps bigger than category theory itself). And one of its the biggest branches is the study of the "symmetry groups" which we will look into next.
Summary
---
The algebraic structures that we saw can be summarized based on the laws that define them in this table.
But before that, just a quick note - the algebraic structures that we saw can be summarized based on the laws that define them in this table.
| | Semigroups | Monoids | Groups |
|---| --- | --- |
@ -135,6 +135,8 @@ The algebraic structures that we saw can be summarized based on the laws that de
|Identity| | X | X |
|Invertability | | | X |
And now for the symmetry groups.
Symmetry groups and group classifications
===
@ -170,14 +172,15 @@ But it gets much simpler to grasp if we notice the following: although our grou
![The group of rotations in a triangle](symmetry_rotation_cyclic.svg)
Symmetry groups that have such "main" rotation, and in general, groups and monoids that have an object that is capable of generating any other object by it's repeated application, are called *cyclic groups*. And any such rotation (there may be several options to chose from) is called the group's *generator*.
Symmetry groups that have such "main" rotation, and, in general, groups and monoids that have an object that is capable of generating all other objects by it's repeated application, are called *cyclic groups*. And such rotation are called the group's *generator*.
All rotation groups are cyclic groups. Another example of a cyclic groups is, yes, the natural numbers under addition. Here we can use $+1$ or $-1$ as generators.
![The group of numbers under addition](numbers_cyclic.svg)
Wait, how can this be a cyclic group when there are no cycles? This is because the integers are an *infinite* cyclic group.
An number-based example of a finite cyclic group is the group of natural numbers under *modular arithmetic* (sometimes called "clock arithmetic"). Modular arithmetic's operation is based on a number called the modulus (let's take $12$ for example). In it, each number is mapped to the *remainder of the integer addition of that number and the modulus*.
A number-based example of a finite cyclic group is the group of natural numbers under *modular arithmetic* (sometimes called "clock arithmetic"). Modular arithmetic's operation is based on a number called the modulus (let's take $12$ for example). In it, each number is mapped to the *remainder of the integer addition of that number and the modulus*.
For example: $1 \pmod{12} = 1$ (because $1/12 = 0$ with $1$ remainder) $2 \pmod{12} = 2$ etc.
@ -193,30 +196,37 @@ All cyclic groups that have the same number of elements (or that are of the *sam
![The group of numbers under addition](symmetry_modular.svg)
As in category theory, in group theory isomorphic groups they considered instances of one and the same group. For example the one above is called $Z3$.
All cyclic groups are *commutative* (or "abelian" as they are also called).
Also, all cyclic groups are *commutative* (or "abelian" as they are also called).
**Task:** Show that there are no other groups with 3 objects, other than $Z3$.
**Task:** Show that there are no other groups with 3 objects, other than $Z_3$.
There are abelian groups that are not cyclic, but, as we shall see below, the concepts of cyclic groups and of abelian groups are deeply related.
Group isomorphisms
---
We already mentioned group isomorphisms, but we didn't define what they are. Let's do that now - an isomorphism between two groups is an isomorphism ($f$) between their respective sets of elements, such that for any $a$ and $b$ we have $f(a \bullet b) = f(a) \bullet f(b)$. Visually, the diagrams of isomorphic groups have the same structure.
![Group isomorphism between different representations of S3](group_isomorphism.svg)
As in category theory, in group theory isomorphic groups they considered instances of one and the same group. For example the one above is called $Z_3$.
Finite groups
---
Like with sets, the concept of an isomorphism in group theory allows us to identify common finite groups.
The smallest group is just the trivial group $Z1$ that has just one element.
The smallest group is just the trivial group $Z_1$ that has just one element.
![The smallest group](trivial_group.svg)
The smallest non-trivial group is the group $Z2$ that has two elements.
The smallest non-trivial group is the group $Z_2$ that has two elements.
![The smallest non-trivial group](smallest_group.svg)
$Z2$ is also known as the *boolean group*, due to the fact that it is isomorphic to the ${ True, False }$ set.
$Z_2$ is also known as the *boolean group*, due to the fact that it is isomorphic to the ${ True, False }$ set.
Like $Z3$, $Z1$ and $Z2$ are cyclic.
Like $Z_3$, $Z_1$ and $Z_2$ are cyclic.
Group/monoid products
---
@ -247,7 +257,9 @@ Another way to present the Klein-four group is the *group of symmetries of a non
Like all product groups, the Klein-four group is *non-cyclic* (because there are not one, but two generators) - vertical and horizontal spin. It is, however, still *abelian*, because the ordering of the actions still does not matter for the end results. Actually, the Klein-four group is the *smallest non-cyclic group*.
In fact all products groups (except the ones that feature the trivial group) are always *non-cyclic*, because even if the two groups that comprise the product it are cyclic, and have just 1 generator each, their product would have 2 generators. And product groups are they are still abelian, provided that the groups which they unite are abelian - we can see that this is true, by noticing that, although the generators are more than one, each of them acts only on it's own part of the group, so they don't interfere with each other in any way.
In fact, products groups (except the ones that feature the trivial group) are always *non-cyclic*, because even if the two groups that comprise the product it are cyclic, and have just 1 generator each, their product would have 2 generators.
Product groups are still abelian, provided that the groups that form them are abelian - we can see that this is true by noticing that, although the generators are more than one, each of them acts only on it's own part of the group, so they don't interfere with each other in any way.
Fundamental theorem of Finite Abelian groups
---
@ -339,14 +351,14 @@ This is one part of the isomorphism, the other part is the equivalent function f
**Task:** Write the other part of the isomorphism.
Monoid elements as functions
Monoid elements as functions/permutations
---
Let's take a step back and examine the groups/monoids that we covered so far in the light of what we learned. We started off by representing group operation as a function from pairs. For example, the operation of a symmetric group,(let's take $Z3$ as an example) are actions that converts two rotations to another another rotation.
Let's take a step back and examine the groups/monoids that we covered so far in the light of what we learned. We started off by representing group operation as a function from pairs. For example, the operation of a symmetric group,(let's take $Z_3$ as an example) are actions that converts two rotations to another another rotation.
![The group of rotations in a triangle - group notation](symmetry_rotation_actions.svg)
Using currying, we can represent the elements of a given group/monoid as functions by uniting them to the group operation, and the group operation itself - as functional composition. For example, the 3 elements of $Z3$ can be seen as 3 bijective (invertable) functions from a set of 3 elements to itself (in group-theoretic context, these kinds of functions are called *permutations*, by the way.)
Using currying, we can represent the elements of a given group/monoid as functions by uniting them to the group operation, and the group operation itself - as functional composition. For example, the 3 elements of $Z_3$ can be seen as 3 bijective (invertable) functions from a set of 3 elements to itself (in group-theoretic context, these kinds of functions are called *permutations*, by the way.)
![The group of rotations in a triangle - set notation](symmetry_rotation_functions.svg)
@ -356,11 +368,11 @@ Formally, the operation of the addition monoid, that we saw above has the follow
$+: \mathbb{Z} \times \mathbb{Z} \to \mathbb{Z}$
Because of the curry isomorphism, this operation is equivalent to the following function.
Because of the isomorphism we presented above, this function is equivalent to the following function.
$+: \mathbb{Z} \to (\mathbb{Z} \to \mathbb{Z})$
When we apply an element of the monoid to to that function (say $2$), the result is the function $+2$ that adds 2 to a given number.
When we apply an element of the monoid to that function (say $2$), the result is the function $+2$ that adds 2 to a given number.
$+2: \mathbb{Z} \to \mathbb{Z}$
@ -381,49 +393,79 @@ And the same is valid for the addition monoid - number functions can be combined
$+2 \bullet +3 \cong +5$
So, basically the functions that represent the elements of a monoid also form a monoid, under the operation of functional composition (and the functions that represent the elements that form a group also form a group). All we have to do to prove that is true is to see which is the identity objects are and to find the inverses.
So, basically the functions that represent the elements of a monoid also form a monoid, under the operation of functional composition (and the functions that represent the elements that form a group also form a group).
**Question:** Indeed, which is the identity element of function groups?
**Question:** Which are the identity elements of function groups?
**Task:** Show that the functions representing inverse group elements are also inverse.
Group isomorphisms
---
We already mentioned group isomorphisms once, but we didn't define them. Let's do that now - an isomorphism between two groups is an isomorphism between their respective sets of elements and an isomorphism of between the results of the application of group operation. Or, visually, if we take the diagrams, of two isomorphic group, there must be one isomorphism between the group objects, and one between the functions.
![The group of rotations in a triangle - set notation and normal notation](symmetry_rotation_comparison.svg)
And furthermore, yielding the same results as the ones we get if we would sum the same numbers as objects.
Cayley's theorem
---
So, the representation of the monoid's elements as functions actually yields a representation of the monoid itself (sometimes called it's standard representation.)
We saw how using currying we can represent the elements of any group as permutions that, also form a monoid. Cayley's theorem tells us that those two groups are isomorphic:
For example, the identity element of the addition monoid $0$ (zero) is isomorphic to the function $+0$, which of course is isomorphic to the identity function and the identity law holds.
> Any group is isomorphic to a permutation group.
$+2 \bullet +0 \cong +2$
Formally, if we use $Perm$ to denote the permutation group then $Perm(A) \cong A$ for any $A$.
This viewpoint is useful when we use monoids as a way to model how a set of (associative) actions that are performed on a given object (or objects) alter it's state. Provided that the object's state is determined solely by the actions that are performed on it, we can leave it out of the equation and concentrate on how the actions are combined. And as per usual, the actions (and elements) can be anything, from mixing colors in paint, or adding a quantities to a given set of things etc.
![The group of rotations in a triangle - set notation and normal notation](symmetry_rotation_comparison.svg)
Or in other words, representing the elements of a group as permutations actually yields a representation of the monoid itself (sometimes called it's standard representation.)
Cayley's theorem may not seem very impressibe, but that only shows how influental it has been as a result.
{% if site.distribution == 'print' %}
Interlude: Symmetric groups
---
The most important thing that you have to know about the symmetric groups is that they are *not the same thing as symmetry groups*. Once we have that out of the way, we can understand what they actually are: given a natural number $n$, the symmetric group of $n$, denoted $\mathrm{S}_n$ (symmetric group of degree $n$) is the group of all possible permutations of a set with $n$ elements. The number of the elements of such groups is equal to are $1\times2\times3...\times n$ or $n!$ (n-factorial.)
So, for example the group $\mathrm{S}_1$ of permutations of the one-element set has just 1 element (because a 1-element set has no other functions to itself other than the identity function.
![The S1 symmetric group](s1.svg)
The group $\mathrm{S}_2$, has $1\times2=2$ elements (by the way, the colors are there to give you some intuition as to why the number of permutations of a $n$-element set is $n!$.)
![The S2 symmetric group](s2.svg)
And with $\mathrm{S}_3$ we are already feeling the power of exponential (and even faster than exponential!) growth of the factorial function - it has $1\times2\times3=6$ elements.
![The S3 symmetric group](s3.svg)
Each symmetric group $\mathrm{S}_n$ contains all groups of order $n$ - this is so, because (as we saw in the prev section) every group with $n$ elements is isomorphic to a set of permutations on the set of $n$ elements and the group $\mathrm{S}_n$ contains all such permutations. In particular, $\mathrm{S}_1$ is isomorphic to $Z_1$ (the *trivial group*), $\mathrm{S}_2$ is isomorphic to $Z_2$ (the *boolean group*). And the top three permutations of $\mathrm{S}_3$ are isomorphic to the group $Z_3$.
![The S3 symmetric group](s3_z3.svg)
Based on this insight, can state Cayley's theorem in terms of symmetric groups in the following way:
> All groups are isomorphic to subgroups of symmetric groups.
**Task:** Show how the two are equivalent.
Fun fact: the study of group theory actually started by examining symmetric groups, so this theorem was actually a prerequisite for the emergence of the normal definition of groups that we all know and love (OK, at least *I* love it) - it provided a proof that the notion described by this definition is equivalent to the already existing notion of symmetric groups.
{% endif %}
Monoids as categories
---
Converting the monoid's elements to actions/functions yields an accurate representation of the monoid in terms of set theory.
We saw that converting the monoid's elements to actions/functions yields an accurate representation of the monoid in terms of sets and functions.
![The group of rotations in a triangle - set notation and normal notation](symmetry_rotation_set.svg)
However, it seems that some of the structure in this representation is kinda redundant - you have the same things, encoded as both objects and functions - so, it would do it good if we can simplify it. And we can do that by depicting it as an external (categorical) diagram.
However, it seems that the set part of the structure in this representation is kinda redundant - you have the same set everywhere - so, it would do it good if we can simplify it. And we can do that by depicting it as an external (categorical) diagram.
![The group of rotations in a triangle - categorical notation](symmetry_rotation_external.svg)
But wait, if *sets* in set theory correspond to *objects* in category theory and if all monoid actions have just one set as source and target, then the corresponding category would have just one object. So the correct representation would involve just one point from which all arrows come and to which they go. The only difference would be the number of morphisms that the object has and the relationship between them.
But wait, if the monoids' underlying *sets* correspond to *objects* in category theory, then the corresponding category would have just one object. And so the correct representation would involve just one point from which all arrows come and to which they go.
![The group of rotations in a triangle - categorical notation](symmetry_rotation_category.svg)
The intuition behind this representation is encompassed by the requirement of $closure$ that monoid and group operations have - it is the law that applying the operation on any two elements of the set of elements that form the monoid always results in an element that is also a member of the set e.g. no matter how do you flip a triangle, you'd still get a triangle.
The only difference between differend kind of monoids would be the number of morphisms that they have and the relationship between them.
The intuition behind this representation from a category-theoretic standpoint is encompassed by the law of $closure$ that monoid and group operations have and that categories lack - it is the law stating that applying the operation (functional composition) on any two objects always yields the same object, e.g. no matter how do you flip a triangle, you'd still get a triangle.
| | Categories | Monoids | Groups
|---| --- | --- |
@ -436,42 +478,44 @@ When we view a monoid as a category, this law says that all morphisms in the cat
Let's elaborate on this thought by reviewing the definition of a category from chapter 2.
> A category is a collection of $objects$ (we can think of them as points) and $morphisms$ (arrows) that go from one object to another, where:
> A category is a collection of *objects* (we can think of them as points) and *morphisms* (arrows) that go from one object to another, where:
> 1. Each object has to have the identity morphism.
> 2. There should be a way to compose two morphisms with an appropriate type signature into a third one in a way that is associative.
Aside from the little-confusing fact that *monoid objects* are *morphisms when viewed categorically*, this describes exactly what monoids are.
Aside from the little-confusing fact that *monoid objects are morphisms* when viewed categorically, this describes exactly what monoids are.
Categories have an identity morphism for each object, so for categories with just one object, there should also be exactly one identity morphism. And monoids do have an identity object, which when viewed categorically corresponds to that identity morphism.
Categories provide a way to compose two morphisms with an appropriate type signature, and for categories with one object this means that all morphisms should be composable with one another. And the monoid operation does exactly that - given any two objects (or two morphisms, if we use the categorical terminology), it creates a third.
Categories provide a way to compose two morphisms with an appropriate type signature, and for categories with one object this means that *all morphisms should be composable* with one another. And the monoid operation does exactly that - given any two objects (or two morphisms, if we use the categorical terminology), it creates a third.
Philosophically, defining a monoid as a one-object category means corresponds to the view of monoids as a model of how a set of (associative) actions that are performed on a given object alter it's state. Provided that the object's state is determined solely by the actions that are performed on it, we can leave it out of the equation and concentrate on how the actions are combined. And as per usual, the actions (and elements) can be anything, from mixing colors in paint, or adding a quantities to a given set of things etc.
{% if site.distribution == 'print' %}
Group/monoid presentations
---
When we view cyclic groups/monoids as categories, we would see that they correspond to categories that (besides having just one object) also have *just one morphism* (which, as we said is called *generator*), along with the morphisms that are created when this morphism is composed with itself. In fact the infinite cyclic monoid (which is isomorphic to the integers), can be completely described by this simple definition.
When we view cyclic groups/monoids as categories, we would see that they correspond to categories that (besides having just one object) also have *just one morphism* (which, as we said, is called a *generator*) along with the morphisms that are created when this morphism is composed with itself. In fact the infinite cyclic monoid (which is isomorphic to the natural numbers), can be completely described by this simple definition.
![Presentation of an infinite cyclic monoid](infinite_cyclic_presentation.svg)
This is so, because applying the generator again and again yields all elements of the infinite cyclic group. Specifically, if we view the generator as the action $+1$ then we get the integers.
This is so, because applying the generator again and again yields all elements of the infinite cyclic group. Specifically, if we view the generator as the action $+1$ then we get the natural numbers.
![Presentation of an infinite cyclic monoid](infinite_cyclic_presentation_elements.svg)
Finite cyclic groups/monoids are the same, except that their definition contains an additional law, stating that that once you compose the generator with itself $n$ number of times you get identity morphism. For the cyclic group $Z3$ (which can be visualized as the group of triangle rotations) this law states that composing the generator with itself $3$ times yields the identity morphism.
Finite cyclic groups/monoids are the same, except that their definition contains an additional law, stating that that once you compose the generator with itself $n$ number of times, you get identity morphism. For the cyclic group $Z_3$ (which can be visualized as the group of triangle rotations) this law states that composing the generator with itself $3$ times yields the identity morphism.
![Presentation of an finite cyclic monoid](finite_cyclic_presentation.svg)
Composing the group generator with itself, and then applying the law, yields the three morphisms of $Z3$.
Composing the group generator with itself, and then applying the law, yields the three morphisms of $Z_3$.
![Presentation of a finite cyclic monoid](finite_cyclic_presentation_elements.svg)
Representing product groups in this way is just a little more complex than composing the generators and their laws. But just a little. Let's take Klein four as an example, Klein four has two generators that it inherits from the groups that form it (which we viewed like vertical and horizontal rotation of a non-square rectangle) and two laws that it inherits from them.
We can represent product groups this way too. Let's take Klein four-group as an example, The Klein four-group has two generators that it inherits from the groups that form it (which we viewed like vertical and horizontal rotation of a non-square rectangle) each of which comes with one law.
![Presentation of Klein four](klein_four_presentation.svg)
To make the representation complete, we add the law that we can combine the two generators.
To make the representation complete, we add the law for combining the two generators.
![Presentation of Klein four - third law](klein_four_presentation_third_law.svg)
@ -479,14 +523,14 @@ And then, if we start applying the two generators and follow the laws, we get th
![The elements of of Klein four](klein_four_presentation_elements.svg)
The set of generators and laws that defines a given group is called the $presentation of a group$. Every group has a presentation (and finite groups always have a finite presentation.)
The set of generators and laws that defines a given group is called the *presentation of a group*. Every group has a presentation.
Free monoids
---
We saw how picking a different selection of laws gives rise to different types of monoid. But what monoid would we get if we pick no laws at all? This monoid (or rather, monoids, as we get a different one depending on the set we picked) is called a *free monoid*. Here "free" is used in the sense that once you have the set, you can upgrade it to a monoid for free (i.e. without having to define anything else.)
We saw how picking a different selection of laws gives rise to different types of monoid. But what monoids would we get if we pick no laws at all? These monoids (we get a different one depending on the set we picked) are called a *free monoids* (the word "free" is used in the sense that once you have the set, you can upgrade it to a monoid for free (i.e. without having to define anything else.)
If you revisit the previous section you will notice that we already saw one such monoid. The free monoid with just one generator is the monoid of integers.
If you revisit the previous section you will notice that we already saw one such monoid. The free monoid with just one generator is isomorphic to the monoid of integers.
![The free monoid with one generator](infinite_cyclic_presentation_elements.svg)
@ -500,6 +544,6 @@ The free monoid is a special one - each element of the free monoid over a given
**Task:** Write up the laws of the color-mixing monoid.
If we put out programmers' hat, we will see that the type of the free monoid under the set T (which we can denote as `FreeMonoid<T>`) is isomorphic to the type `List<T>` (or `Array<T>`, if you prefer) and that the intuition behind the special property that we described above is actually very simple: it is the fact that keeping objects in a list allows you to convert them to any other structure i.e. when we want to perform some manipulation on a bunch of objects, but we don't know exactly what this manipulation is, we just keep a list of those objects until it's time to do it.
If we put out programmers' hat, we will see that the type of the free monoid under the set T (which we can denote as `FreeMonoid<T>`) is isomorphic to the type `List<T>` (or `Array<T>`, if you prefer) and that the intuition behind the special property that we described above is actually very simple: keeping objects in a list allows you to convert them to any other structure i.e. when we want to perform some manipulation on a bunch of objects, but we don't know exactly what this manipulation is, we just keep a list of those objects until it's time to do it.
{% endif %}

View File

@ -47,9 +47,9 @@
inkscape:window-height="1376"
id="namedview292"
showgrid="false"
inkscape:zoom="3.8358191"
inkscape:cx="267.00752"
inkscape:cy="141.83022"
inkscape:zoom="3.0655559"
inkscape:cx="253.2417"
inkscape:cy="140.91777"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
@ -140,7 +140,7 @@
</g>
<g
id="g7972-3"
transform="matrix(0.70115412,0,0,0.70115412,380.89831,-14.028776)">
transform="matrix(0.70115412,0,0,0.70115412,381.22452,-8.8094942)">
<g
aria-label="+1"
transform="rotate(1.8199807)"
@ -439,96 +439,9 @@
id="path100210"
inkscape:connector-curvature="0" />
</g>
<g
id="g1946"
transform="matrix(0.73987929,-0.03994987,0.03994987,0.73987929,64.824899,45.928759)">
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-3-9-9"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,368.29574,-41.347157)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-8-4-2"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-8-6-2"
d="m -1249.7436,215.09201 c 418.678,-55.4365 1215.455964,-46.66301 1553.73775,1.62061"
sodipodi:nodetypes="cc" />
</g>
<path
inkscape:transform-center-y="-0.16085094"
inkscape:transform-center-x="-5.2144259"
d="m 178.71683,2.3790742 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
id="path1478-7-9-0-19-0-7-5-4-9-3-6"
inkscape:connector-curvature="0"
style="display:inline;opacity:0.40141697;fill:#757575;fill-opacity:1;stroke:#797979;stroke-width:2.21102357;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g1946-5"
transform="matrix(0.78126405,-0.01771973,0.018689,0.74074514,113.7945,134.94994)">
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-3-9-9-62"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,368.29574,-41.347157)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-8-4-2-9"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-8-6-2-1"
d="m -1249.7436,215.09201 c 418.678,-55.4365 1215.455964,-46.66301 1553.73775,1.62061"
sodipodi:nodetypes="cc" />
</g>
<path
inkscape:transform-center-y="-0.16085094"
inkscape:transform-center-x="-5.2144259"
d="m 178.71683,2.3790742 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
id="path1478-7-9-0-19-0-7-5-4-9-3-6-2"
inkscape:connector-curvature="0"
style="display:inline;opacity:0.40141697;fill:#757575;fill-opacity:1;stroke:#797979;stroke-width:2.21102357;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g1946-5-7"
transform="matrix(0.74032861,0.03051074,-0.03051074,0.74032861,20.042567,99.112337)">
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-3-9-9-62-0"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,368.29574,-41.347157)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-8-4-2-9-9"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-8-6-2-1-3"
d="m -1249.7436,215.09201 c 418.678,-55.4365 1215.455964,-46.66301 1553.73775,1.62061"
sodipodi:nodetypes="cc" />
</g>
<path
inkscape:transform-center-y="-0.16085094"
inkscape:transform-center-x="-5.2144259"
d="m 178.71683,2.3790742 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
id="path1478-7-9-0-19-0-7-5-4-9-3-6-2-6"
inkscape:connector-curvature="0"
style="display:inline;opacity:0.40141697;fill:#757575;fill-opacity:1;stroke:#797979;stroke-width:2.21102357;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g1946-0"
transform="matrix(0.78251969,-0.03994987,0.04225224,0.73987929,105.53202,93.600946)">
transform="matrix(0.80352159,-0.00707992,0.0114548,0.74100058,96.888323,84.834409)">
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-3-9-9-6"
@ -557,7 +470,7 @@
</g>
<g
id="g1946-0-8"
transform="matrix(0.85832399,-0.03994987,0.0463453,0.73987929,-12.769239,85.753552)">
transform="matrix(0.85832399,-0.03994987,0.0463453,0.73987929,-13.607406,87.703851)">
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-3-9-9-6-7"

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 177"
version="1.1"
id="svg290"
sodipodi:docname="s1.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata296">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs294">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 88.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="595.3 : 88.5 : 1"
inkscape:persp3d-origin="297.65 : 59 : 1"
id="perspective1968" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview292"
showgrid="false"
inkscape:zoom="2.3222656"
inkscape:cx="271.51271"
inkscape:cy="96.697919"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg290"
showguides="true"
inkscape:guide-bbox="true"
inkscape:document-rotation="0" />
<ellipse
style="fill:#d71920;fill-opacity:1;fill-rule:evenodd;stroke:#be1e2d;stroke-width:3.33379889;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3"
cx="241.15096"
cy="79.809311"
rx="12.615406"
ry="12.509174" />
<ellipse
style="fill:#d71920;fill-opacity:1;fill-rule:evenodd;stroke:#be1e2d;stroke-width:3.33379889;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5"
cx="353.09631"
cy="79.553177"
rx="12.615406"
ry="12.509174" />
<g
id="g7972-3-3-3-6-6-2"
transform="matrix(1.168686,0.01254764,-0.01254764,1.168686,273.30923,-148.09612)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

210
_chapters/03_monoid/s2.svg Normal file
View File

@ -0,0 +1,210 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 177"
version="1.1"
id="svg290"
sodipodi:docname="s2.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata296">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs294">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 88.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="595.3 : 88.5 : 1"
inkscape:persp3d-origin="297.65 : 59 : 1"
id="perspective1968" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview292"
showgrid="false"
inkscape:zoom="2.8284271"
inkscape:cx="290.65752"
inkscape:cy="96.697919"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg290"
showguides="true"
inkscape:guide-bbox="true"
inkscape:document-rotation="0" />
<ellipse
style="fill:#d71920;fill-opacity:1;fill-rule:evenodd;stroke:#be1e2d;stroke-width:3.33379889;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3"
cx="245.09627"
cy="23.784334"
rx="12.615406"
ry="12.509174" />
<g
id="g7972-3-3-3-6-6"
transform="matrix(1.168686,0.01254764,-0.01254764,1.168686,275.28066,-168.0677)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<g
id="g44435-8"
transform="matrix(1.6668994,0,0,1.6668994,-24.808132,327.03576)" />
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:3.33379889;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3"
cx="245.86993"
cy="60.91806"
rx="12.615406"
ry="12.509174" />
<ellipse
style="fill:#d71920;fill-opacity:1;fill-rule:evenodd;stroke:#be1e2d;stroke-width:3.33379889;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5"
cx="357.04163"
cy="23.528204"
rx="12.615406"
ry="12.509174" />
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:3.33379889;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6"
cx="357.81528"
cy="60.661926"
rx="12.615406"
ry="12.509174" />
<g
id="g7972-3-3-3-6-6-2"
transform="matrix(1.168686,0.01254764,-0.01254764,1.168686,277.25454,-204.1211)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<g
id="g44435-8-6"
transform="matrix(1.6668994,0,0,1.6668994,250.20784,325.3246)" />
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:3.33379889;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-68"
cx="245.68202"
cy="119.85204"
rx="12.615406"
ry="12.509174" />
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:3.33379889;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-4"
cx="246.4557"
cy="156.98581"
rx="12.615406"
ry="12.509174" />
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:3.33379889;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-9"
cx="357.62735"
cy="119.59592"
rx="12.615406"
ry="12.509174" />
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:3.33379889;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6-20"
cx="358.40103"
cy="156.72968"
rx="12.615406"
ry="12.509174" />
<g
id="g7972-3-3-3-6-6-2-8-5-2"
transform="matrix(1.0207339,0.56928614,-0.56928614,1.0207339,391.22088,-73.344693)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9-7-5-6"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1-9-4-1"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2-2-7-0"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<g
id="g7972-3-3-3-6-6-0-0-0"
transform="matrix(1.0669664,-0.47703993,0.47703993,1.0669664,188.73286,-61.730842)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-9"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-17"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-71"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

724
_chapters/03_monoid/s3.svg Normal file
View File

@ -0,0 +1,724 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 177"
version="1.1"
id="svg290"
sodipodi:docname="s3.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata296">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs294">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 88.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="595.3 : 88.5 : 1"
inkscape:persp3d-origin="297.65 : 59 : 1"
id="perspective1968" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview292"
showgrid="false"
inkscape:zoom="2.6964588"
inkscape:cx="235.1524"
inkscape:cy="87.680011"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg290"
showguides="true"
inkscape:guide-bbox="true"
inkscape:document-rotation="0" />
<ellipse
style="fill:#d71920;fill-opacity:1;fill-rule:evenodd;stroke:#be1e2d;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3"
cx="129.46898"
cy="20.131565"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6"
transform="matrix(0.70111371,0.00752753,-0.00752753,0.70111371,147.5771,-94.963584)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<g
id="g44435-8"
transform="translate(-26.087081,210.89584)" />
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3"
cx="129.93314"
cy="42.408688"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#d71920;fill-opacity:1;fill-rule:evenodd;stroke:#be1e2d;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5"
cx="196.62683"
cy="19.977909"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6"
cx="197.09097"
cy="42.255032"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-2"
transform="matrix(0.70111371,0.00752753,-0.00752753,0.70111371,148.76126,-116.59261)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<g
id="g44435-8-6"
transform="translate(138.89947,209.86929)" />
<g
id="g7972-3-3-3-6-6-02"
transform="matrix(0.70111371,0.00752753,-0.00752753,0.70111371,147.93537,-76.012648)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-3"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-7"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-5"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-9"
cx="129.65263"
cy="62.317795"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6-2"
cx="196.81047"
cy="62.164146"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-7-1"
cx="399.31387"
cy="139.69212"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-0-0"
transform="matrix(0.64009048,-0.28618399,0.28618399,0.64009048,364.56993,30.081057)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 177.88353,91.700981 C 217.12053,81.976981 286.339,79.662 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-2-0"
cx="399.77802"
cy="161.96925"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-6-6"
cx="466.47165"
cy="139.53845"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6-1-1"
cx="466.93582"
cy="161.8156"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-2-8-5"
transform="matrix(0.61235485,0.34152399,-0.34152399,0.61235485,486.48507,24.089029)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9-7-5"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1-9-4"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2-2-7"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 180.90476,90.672363 C 220.14176,80.948363 286.339,79.662 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-6"
cx="399.31384"
cy="116.96189"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-4"
cx="466.47171"
cy="116.80824"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-2-2"
transform="matrix(0.70111371,0.00752753,-0.00752753,0.70111371,418.60611,-19.762283)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9-5"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1-4"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2-7"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-68"
cx="128.15985"
cy="115.27799"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-4"
cx="128.62399"
cy="137.55513"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-9"
cx="195.31769"
cy="115.12433"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#8967ac;fill-opacity:1;fill-rule:evenodd;stroke:#651c5f;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6-20"
cx="195.78183"
cy="137.40147"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-02-6"
transform="matrix(0.70111371,0.00752753,-0.00752753,0.70111371,146.62622,19.133767)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-3-6"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-7-4"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-5-9"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-9-5"
cx="128.34349"
cy="157.46423"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6-2-0"
cx="195.50133"
cy="157.31058"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-7-1-4"
cx="258.47406"
cy="138.55148"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-0-0-8"
transform="matrix(0.53549186,-0.45262078,0.45262078,0.53549186,199.7043,35.903683)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-7"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-1"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#999999;stroke-width:10.65036201;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-7"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 117.23504,88.190176 C 168.92765,69.260596 255.65379,68.234588 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-2-0-2"
cx="258.93823"
cy="160.82861"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-6-6-7"
cx="325.6319"
cy="138.3978"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6-1-1-2"
cx="326.09604"
cy="160.67496"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-2-8-5-2"
transform="matrix(0.61235485,0.34152399,-0.34152399,0.61235485,215.47097,-0.6238689)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9-7-5-6"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1-9-4-1"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2-2-7-0"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-6-6"
cx="258.47406"
cy="115.82124"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-4-1"
cx="325.6319"
cy="115.66759"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-0-0-0"
transform="matrix(0.64009048,-0.28618399,0.28618399,0.64009048,93.995115,6.343469)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-9"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-17"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-71"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-7-1-4-3"
cx="259.18427"
cy="40.570591"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-0-0-8-6"
transform="matrix(0.53549186,-0.45262078,0.45262078,0.53549186,200.41448,-62.077178)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-7-7"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-1-5"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#999999;stroke-width:10.65036201;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-7-3"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 117.23504,88.190176 C 168.92765,69.260596 255.65379,68.234588 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-2-0-2-5"
cx="259.64838"
cy="62.847736"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-6-6-7-6"
cx="326.34204"
cy="40.416935"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6-1-1-2-2"
cx="326.80618"
cy="62.69408"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-6-6-9"
cx="259.1842"
cy="17.840384"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-4-1-1"
cx="326.34207"
cy="17.68672"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-2-8-5-6-2"
transform="matrix(0.64282305,0.27999218,-0.27999218,0.64282305,336.18732,-101.84274)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9-7-5-5-7"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1-9-4-6-0"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2-2-7-3-9"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 180.90476,90.672363 C 220.14176,80.948363 286.339,79.662 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g7972-3-3-3-6-6-2-8-5-6-9-3"
transform="matrix(0.64282305,0.27999218,-0.27999218,0.64282305,335.81588,-80.811889)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9-7-5-5-4-6"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1-9-4-6-8-0"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2-2-7-3-1-6"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 180.90476,90.672363 C 220.14176,80.948363 286.339,79.662 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-7-1-2"
cx="399.9494"
cy="41.459984"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-0-0-6"
transform="matrix(0.64009048,-0.28618399,0.28618399,0.64009048,365.20548,-68.151094)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-1"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-8"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-79"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 177.88353,91.700981 C 217.12053,81.976981 286.339,79.662 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-2-0-20"
cx="400.41354"
cy="63.737114"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-6-6-2"
cx="467.10718"
cy="41.306313"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6-1-1-3"
cx="467.57135"
cy="63.583458"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-6-8"
cx="399.94937"
cy="18.729733"
rx="7.5681868"
ry="7.5044565" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-4-9"
cx="467.10724"
cy="18.576069"
rx="7.5681868"
ry="7.5044565" />
<g
id="g7972-3-3-3-6-6-0-0-8-6-2"
transform="matrix(0.51485147,0.4759675,-0.4759675,0.51485147,518.98756,-61.803774)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-7-7-9"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-1-5-3"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#999999;stroke-width:10.65036201;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-7-3-1"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 117.23504,88.190176 C 168.92765,69.260596 255.65379,68.234588 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g7972-3-3-3-6-6-0-0-6-9"
transform="matrix(0.64009048,-0.28618399,0.28618399,0.64009048,364.42056,-88.319724)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-1-4"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-8-7"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-79-8"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 177.88353,91.700981 C 217.12053,81.976981 286.339,79.662 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g7972-3-3-3-6-6-0-0-8-6-2-1"
transform="matrix(0.51485147,0.4759675,-0.4759675,0.51485147,379.52983,31.47901)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-7-7-9-0"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-1-5-3-6"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#999999;stroke-width:10.65036201;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-7-3-1-3"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 117.23504,88.190176 C 168.92765,69.260596 255.65379,68.234588 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g7972-3-3-3-6-6-02-6-2"
transform="matrix(0.70111371,0.00752753,-0.00752753,0.70111371,279.36435,0.5228931)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-3-6-0"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-7-4-6"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-5-9-1"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,439 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 177"
version="1.1"
id="svg290"
sodipodi:docname="s3_z3.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata296">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs294">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 88.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="595.3 : 88.5 : 1"
inkscape:persp3d-origin="297.65 : 59 : 1"
id="perspective1968" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview292"
showgrid="false"
inkscape:zoom="1.6420898"
inkscape:cx="159.87238"
inkscape:cy="84.663004"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg290"
showguides="true"
inkscape:guide-bbox="true"
inkscape:document-rotation="0" />
<g
id="g7972-3-3-3-6-6"
transform="matrix(0.96670864,0.0103791,-0.0103791,0.96670864,115.96744,-93.014222)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<g
id="g44435-8"
transform="translate(-2.9458368,216.98564)" />
<g
id="g7972-3-3-3-6-6-2"
transform="matrix(0.96670864,0.0103791,-0.0103791,0.96670864,117.60018,-122.83673)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<g
id="g44435-8-6"
transform="translate(162.04071,215.95909)" />
<g
id="g7972-3-3-3-6-6-02"
transform="matrix(0.96670864,0.0103791,-0.0103791,0.96670864,116.46143,-66.884319)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-3"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-7"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-5"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-7-1-4-3"
cx="261.44763"
cy="97.563034"
rx="10.435157"
ry="10.347284" />
<g
id="g7972-3-3-3-6-6-0-0-8-6"
transform="matrix(0.73834615,-0.62408196,0.62408196,0.73834615,180.41476,-43.969627)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-7-7"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-1-5"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#999999;stroke-width:10.65036201;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-7-3"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 117.23504,88.190176 C 168.92765,69.260596 255.65379,68.234588 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-2-0-2-5"
cx="262.08759"
cy="128.27922"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-6-6-7-6"
cx="354.04599"
cy="97.351189"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6-1-1-2-2"
cx="354.68594"
cy="128.06734"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-6-6-9"
cx="261.44757"
cy="66.222183"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-4-1-1"
cx="354.04605"
cy="66.0103"
rx="10.435157"
ry="10.347284" />
<g
id="g7972-3-3-3-6-6-2-8-5-6-2"
transform="matrix(0.88633639,0.38605843,-0.38605843,0.88633639,367.62088,-98.799117)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9-7-5-5-7"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1-9-4-6-0"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2-2-7-3-9"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 180.90476,90.672363 C 220.14176,80.948363 286.339,79.662 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g7972-3-3-3-6-6-2-8-5-6-9-3"
transform="matrix(0.88633639,0.38605843,-0.38605843,0.88633639,367.10873,-69.801387)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-9-7-5-5-4-6"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-1-9-4-6-8-0"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-2-2-7-3-1-6"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 180.90476,90.672363 C 220.14176,80.948363 286.339,79.662 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-7-1-2"
cx="429.60675"
cy="97.329788"
rx="10.435157"
ry="10.347284" />
<g
id="g7972-3-3-3-6-6-0-0-6"
transform="matrix(0.88256867,-0.39459582,0.39459582,0.88256867,381.70119,-53.804014)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-1"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-8"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-79"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 177.88353,91.700981 C 217.12053,81.976981 286.339,79.662 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-2-0-20"
cx="430.2467"
cy="128.0459"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-6-6-2"
cx="522.20514"
cy="97.117897"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6-1-1-3"
cx="522.84515"
cy="127.83406"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-6-8"
cx="429.60669"
cy="65.988884"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-4-9"
cx="522.2052"
cy="65.777023"
rx="10.435157"
ry="10.347284" />
<g
id="g7972-3-3-3-6-6-0-0-8-6-2"
transform="matrix(0.70988679,0.65627285,-0.65627285,0.70988679,593.73879,-45.052211)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-7-7-9"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-1-5-3"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#999999;stroke-width:10.65036201;stroke-miterlimit:10;stroke-dasharray:none;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-7-3-1"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 117.23504,88.190176 C 168.92765,69.260596 255.65379,68.234588 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g7972-3-3-3-6-6-0-0-6-9"
transform="matrix(0.88256867,-0.39459582,0.39459582,0.88256867,380.61893,-81.612897)"
style="fill:#cccccc;stroke:#999999">
<g
style="fill:#cccccc;stroke:#999999;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-3-4-6-6-1-9-93-6-1-4"
transform="matrix(0.40743561,-0.00145477,5.2735526e-4,0.41834786,-83.083079,101.04713)">
<path
style="fill:#cccccc;stroke:#999999;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-6-6-7-7-2-8-6-3-8-7"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:#cccccc;stroke:#999999;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-1-3-5-5-93-7-0-2-79-8"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 177.88353,91.700981 C 217.12053,81.976981 286.339,79.662 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:15.08829975px;line-height:1.25;font-family:sans-serif;display:inline;fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.37720901"
x="131.205"
y="14.021529"
id="text5016-15-3"
transform="scale(0.98762448,1.0125306)"><tspan
sodipodi:role="line"
id="tspan5014-9-6"
x="131.205"
y="27.371138"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.37720901" /><tspan
sodipodi:role="line"
x="131.205"
y="46.23151"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.37720901"
id="tspan14069">0° </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:15.08829975px;line-height:1.25;font-family:sans-serif;display:inline;fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.37720901"
x="294.40921"
y="50.140896"
id="text5016-15"
transform="scale(0.98762448,1.0125306)"><tspan
sodipodi:role="line"
id="tspan5014-9"
x="294.40921"
y="50.140896"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.37720901">120° </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:15.08829975px;line-height:1.25;font-family:sans-serif;display:inline;fill:#666666;fill-opacity:1;stroke:none;stroke-width:0.37720901"
x="460.1062"
y="51.201283"
id="text5016-15-9"
transform="matrix(1.0025535,0.00546846,0.01893107,0.99755626,0,0)"
inkscape:transform-center-x="7.8244209"
inkscape:transform-center-y="-5.8420866"><tspan
sodipodi:role="line"
id="tspan5014-9-0"
x="460.1062"
y="51.201283"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#666666;stroke-width:0.37720901">240° </tspan></text>
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-7-1-2-4"
cx="91.478195"
cy="98.250893"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-2-0-20-7"
cx="92.118149"
cy="128.96703"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-6-6-2-6"
cx="184.0766"
cy="98.039017"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-3-6-1-1-3-5"
cx="184.71658"
cy="128.75519"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-6-8-6"
cx="91.478134"
cy="66.910004"
rx="10.435157"
ry="10.347284" />
<ellipse
style="fill:#ab6510;fill-opacity:1;fill-rule:evenodd;stroke:#81510b;stroke-width:2.75763726;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path357-3-5-4-9-9"
cx="184.07666"
cy="66.698143"
rx="10.435157"
ry="10.347284" />
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -39,8 +39,8 @@
inkscape:window-height="1376"
id="namedview3399"
showgrid="false"
inkscape:zoom="3.2841795"
inkscape:cx="315.11764"
inkscape:zoom="1.9066843"
inkscape:cx="298.62959"
inkscape:cy="33.78408"
inkscape:window-x="0"
inkscape:window-y="27"
@ -54,22 +54,22 @@
style="display:inline">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:39.7622px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.994057"
x="393.89487"
y="-31.518398"
style="font-style:normal;font-weight:normal;font-size:37.13143158px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.92828768"
x="391.74448"
y="-33.414616"
id="text1739" />
<g
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
style="fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7"
transform="matrix(-0.37442687,0.0117767,-0.01270226,-0.3420943,269.7679,241.06301)">
transform="matrix(-0.34965384,0.01099752,-0.01186185,-0.31946047,275.83006,221.13211)">
<path
style="stroke-width:35.526"
style="stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="stroke-width:10.649;paint-order:markers fill stroke"
style="stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
@ -77,195 +77,204 @@
</g>
<g
id="g1779"
transform="matrix(0.74830165,0,0,0.74830165,-9.0488129,66.042596)"
transform="matrix(0.69879211,0,0,0.69879211,15.460571,57.691496)"
style="display:inline">
<path
style="opacity:0.57;fill:#999999;stroke:#999999;stroke-width:4.16523;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="opacity:0.56999984;fill:#999999;stroke:#999999;stroke-width:4.1652298;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 362.20029,125.19115 317.64441,49.477028 274.92362,124.53029 Z"
id="path1725-3" />
id="path1725-3"
inkscape:connector-curvature="0" />
<path
style="fill:#f2f2f2;stroke:#999999;stroke-width:4.2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:#f2f2f2;stroke:#999999;stroke-width:4.19999981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 355.89937,121.89718 311.47415,46.567704 265.59517,121.07803 Z"
id="path1725"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
<path
style="fill:#39bced;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 295.92425,75.92209 c 14.50749,11.166861 31.54584,1.6345 31.54584,1.6345 L 311.68378,50.551807 Z"
id="path1742"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
<path
style="fill:#d71920;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 337.27797,94.154603 c -18.13503,5.947447 -18.06093,25.877017 -18.06093,25.877017 l 33.05902,-0.33393 z"
id="path1742-6"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
<path
style="fill:#fce600;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 298.2059,119.02195 C 301.9832,100.86156 285.17789,93.345877 285.17789,93.345877 L 269.25276,119.1295 Z"
id="path1742-6-7"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
</g>
<g
id="g1779-5"
transform="matrix(-0.36530072,0.6530779,-0.6530779,-0.36530072,303.65588,-32.932622)"
transform="matrix(-0.3411315,0.60986861,-0.60986861,-0.3411315,307.47592,-34.73527)"
style="display:inline">
<path
style="opacity:0.57;fill:#999999;stroke:#999999;stroke-width:4.16523;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="opacity:0.56999984;fill:#999999;stroke:#999999;stroke-width:4.1652298;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 355.04509,112.39915 310.48921,36.68506 267.76842,111.73829 Z"
id="path1725-3-3" />
id="path1725-3-3"
inkscape:connector-curvature="0" />
<path
style="fill:#f2f2f2;stroke:#999999;stroke-width:4.2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:#f2f2f2;stroke:#999999;stroke-width:4.19999981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 355.89937,121.89718 311.47415,46.567704 265.59517,121.07803 Z"
id="path1725-5"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
<path
style="fill:#39bced;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 295.92425,75.92209 c 14.50749,11.166861 31.54584,1.6345 31.54584,1.6345 L 311.68378,50.551807 Z"
id="path1742-62"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
<path
style="fill:#d71920;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 337.27797,94.154603 c -18.13503,5.947447 -18.06093,25.877017 -18.06093,25.877017 l 33.05902,-0.33393 z"
id="path1742-6-9"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
<path
style="fill:#fce600;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 298.2059,119.02195 C 301.9832,100.86156 285.17789,93.345877 285.17789,93.345877 L 269.25276,119.1295 Z"
id="path1742-6-7-1"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
</g>
<g
id="g1779-5-2"
transform="matrix(-0.4116013,-0.62493178,0.62493178,-0.4116013,240.2701,287.95295)"
inkscape:transform-center-x="-22.094179"
inkscape:transform-center-y="-15.246686"
transform="matrix(-0.38436871,-0.5835847,0.5835847,-0.38436871,248.28391,264.91969)"
inkscape:transform-center-x="-20.632376"
inkscape:transform-center-y="-14.237925"
style="display:inline">
<path
style="opacity:0.57;fill:#999999;stroke:#999999;stroke-width:4.16523;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="opacity:0.56999978;fill:#999999;stroke:#999999;stroke-width:4.1652298;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 346.88234,125.75421 302.32646,50.040089 259.60567,125.09335 Z"
id="path1725-3-3-7" />
id="path1725-3-3-7"
inkscape:connector-curvature="0" />
<path
style="fill:#f2f2f2;stroke:#999999;stroke-width:4.2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:#f2f2f2;stroke:#999999;stroke-width:4.19999981;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 355.89937,121.89718 311.47415,46.567704 265.59517,121.07803 Z"
id="path1725-5-0"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
<path
style="fill:#39bced;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 295.92425,75.92209 c 14.50749,11.166861 31.54584,1.6345 31.54584,1.6345 L 311.68378,50.551807 Z"
id="path1742-62-9"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
<path
style="fill:#d71920;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 337.27797,94.154603 c -18.13503,5.947447 -18.06093,25.877017 -18.06093,25.877017 l 33.05902,-0.33393 z"
id="path1742-6-9-3"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
<path
style="fill:#fce600;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 298.2059,119.02195 C 301.9832,100.86156 285.17789,93.345877 285.17789,93.345877 L 269.25276,119.1295 Z"
id="path1742-6-7-1-6"
sodipodi:nodetypes="cccc" />
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0"
transform="matrix(0.1974394,0.31835807,-0.28989576,0.18207225,241.14036,-37.044431)">
transform="matrix(0.18437631,0.29729469,-0.27071552,0.17002589,249.09659,-38.575031)">
<path
style="stroke-width:35.526"
style="stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="stroke-width:10.649;paint-order:markers fill stroke"
style="stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-7"
transform="matrix(0.18471093,-0.32590803,0.29877561,0.16710173,7.994886,129.31513)">
transform="matrix(0.17248999,-0.30434513,0.27900786,0.15604585,31.376615,116.77775)">
<path
style="stroke-width:35.526"
style="stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-9"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="stroke-width:10.649;paint-order:markers fill stroke"
style="stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-2"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
stroke="#6d6d6d"
fill="none"
stroke-width="6.389"
stroke-miterlimit="10"
id="g3795-7-1-11"
transform="matrix(0.19470485,-0.24176114,0.24176114,0.19470485,-10.830957,128.93448)"
style="display:inline">
transform="matrix(0.18182268,-0.22576561,0.22576561,0.18182268,13.796338,116.42229)"
style="display:inline;fill:none;stroke:#6d6d6d;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 383.0545,214.34442 c 2.23473,1.90742 4.44258,4.00074 6.6465,6.20318 0.0734,-3.40294 0.0242,-6.89284 -0.14744,-10.47044 -2.26487,1.50003 -3.96889,2.81306 -6.49905,4.26727 z"
stroke-width="8.94498"
id="path3791-5-0-59"
inkscape:transform-center-x="-1.4935855"
inkscape:transform-center-y="1.2119177" />
inkscape:transform-center-y="1.2119177"
inkscape:connector-curvature="0"
style="stroke-width:8.94497967" />
<path
d="m 342.99991,222.79162 c 3.51643,-21.15093 33.05129,-32.20491 46.55365,-8.17334"
stroke-width="5.24037"
paint-order="markers fill stroke"
id="path3793-3-6-7"
sodipodi:nodetypes="cc" />
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
style="stroke-width:5.2403698;paint-order:markers fill stroke" />
</g>
<g
stroke="#6d6d6d"
fill="none"
stroke-width="6.389"
stroke-miterlimit="10"
id="g3795-7-1-11-4"
transform="matrix(0.17962772,0.25316459,-0.25316459,0.17962772,221.63139,-52.101404)"
style="display:inline"
inkscape:transform-center-x="-9.8989883"
inkscape:transform-center-y="-2.5623636">
transform="matrix(0.16774309,0.23641458,-0.23641458,0.16774309,230.87838,-52.635796)"
style="display:inline;fill:none;stroke:#6d6d6d;stroke-width:6.38899994;stroke-miterlimit:10"
inkscape:transform-center-x="-9.2440441"
inkscape:transform-center-y="-2.3928303">
<path
d="m 383.0545,214.34442 c 2.23473,1.90742 4.44258,4.00074 6.6465,6.20318 0.0734,-3.40294 0.0242,-6.89284 -0.14744,-10.47044 -2.26487,1.50003 -3.96889,2.81306 -6.49905,4.26727 z"
stroke-width="8.94498"
id="path3791-5-0-59-6"
inkscape:transform-center-x="-1.4935855"
inkscape:transform-center-y="1.2119177" />
inkscape:transform-center-y="1.2119177"
inkscape:connector-curvature="0"
style="stroke-width:8.94497967" />
<path
d="m 342.99991,222.79162 c 3.51643,-21.15093 33.05129,-32.20491 46.55365,-8.17334"
stroke-width="5.24037"
paint-order="markers fill stroke"
id="path3793-3-6-7-9"
sodipodi:nodetypes="cc" />
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
style="stroke-width:5.2403698;paint-order:markers fill stroke" />
</g>
<g
stroke="#6d6d6d"
fill="none"
stroke-width="6.389"
stroke-miterlimit="10"
id="g3795-7-1-11-2"
transform="matrix(-0.32979592,-0.0504676,-0.0543413,0.30628654,307.66816,113.88282)"
style="display:inline">
transform="matrix(-0.30797578,-0.04712854,-0.05074594,0.28602184,311.22274,102.36648)"
style="display:inline;fill:none;stroke:#6d6d6d;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 383.0545,214.34442 c 2.23473,1.90742 4.44258,4.00074 6.6465,6.20318 0.0734,-3.40294 0.0242,-6.89284 -0.14744,-10.47044 -2.26487,1.50003 -3.96889,2.81306 -6.49905,4.26727 z"
stroke-width="8.94498"
id="path3791-5-0-59-2"
inkscape:transform-center-x="-1.4935855"
inkscape:transform-center-y="1.2119177" />
inkscape:transform-center-y="1.2119177"
inkscape:connector-curvature="0"
style="stroke-width:8.94497967" />
<path
d="m 342.99991,222.79162 c 3.51643,-21.15093 33.05129,-32.20491 46.55365,-8.17334"
stroke-width="5.24037"
paint-order="markers fill stroke"
id="path3793-3-6-7-4"
sodipodi:nodetypes="cc" />
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
style="stroke-width:5.2403698;paint-order:markers fill stroke" />
</g>
<g
id="g18342"
transform="matrix(0.40604758,0,0,0.40604758,274.70952,48.670776)">
transform="matrix(0.37918244,0,0,0.37918244,264.28231,46.366744)">
<text
id="text1739-9"
y="46.767025"
@ -840,5 +849,92 @@
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g1946-0"
transform="matrix(0.75035856,-0.00661149,0.01069692,0.6919741,111.42427,75.2902)">
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-3-9-9-6"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,368.29574,-41.347157)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-8-4-2-2"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-8-6-2-6"
d="m -1249.7436,215.09201 c 418.678,-55.4365 1215.455964,-46.66301 1553.73775,1.62061"
sodipodi:nodetypes="cc" />
</g>
<path
inkscape:transform-center-y="-0.16085094"
inkscape:transform-center-x="-5.2144259"
d="m 178.71683,2.3790742 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
id="path1478-7-9-0-19-0-7-5-4-9-3-6-1"
inkscape:connector-curvature="0"
style="display:inline;opacity:0.40141697;fill:#757575;fill-opacity:1;stroke:#797979;stroke-width:2.21102357;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g1946-0-8"
transform="matrix(0.80153509,-0.03730669,0.04327898,0.690927,-0.24686109,78.698572)">
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-3-9-9-6-7"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,368.29574,-41.347157)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-8-4-2-2-9"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-8-6-2-6-2"
d="m -1249.7436,215.09201 c 418.678,-55.4365 1215.455964,-46.66301 1553.73775,1.62061"
sodipodi:nodetypes="cc" />
</g>
<path
inkscape:transform-center-y="-0.16085094"
inkscape:transform-center-x="-5.2144259"
d="m 178.71683,2.3790742 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
id="path1478-7-9-0-19-0-7-5-4-9-3-6-1-0"
inkscape:connector-curvature="0"
style="display:inline;opacity:0.40141697;fill:#757575;fill-opacity:1;stroke:#797979;stroke-width:2.21102357;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g1946-5-2"
transform="matrix(0.85209063,0.04360707,0.04234535,-0.69073973,42.535115,152.31131)">
<g
style="display:inline;opacity:0.422;fill:#dddddd;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g1482-7-0-1-0-3-9-3-9-9-62-3"
transform="matrix(0.1524171,8.9640524e-4,0.00951498,0.21285148,368.29574,-41.347157)"
inkscape:transform-center-x="6.8113705"
inkscape:transform-center-y="-10.036943">
<path
style="stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-8-4-2-9-7"
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z" />
<path
style="fill:none;stroke:#797979;stroke-width:12.27708626;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-8-6-2-1-5"
d="m -1249.7436,215.09201 c 418.678,-55.4365 1215.455964,-46.66301 1553.73775,1.62061"
sodipodi:nodetypes="cc" />
</g>
<path
inkscape:transform-center-y="-0.16085094"
inkscape:transform-center-x="-5.2144259"
d="m 178.71683,2.3790742 c -0.61537,0.36259 -1.26634,0.70751 -1.93938,1.04461 0.69322,0.23296 1.41656,0.44487 2.17016,0.63587 -0.0831,-0.58646 -0.18353,-1.03947 -0.23078,-1.68048 z"
id="path1478-7-9-0-19-0-7-5-4-9-3-6-2-9"
inkscape:connector-curvature="0"
style="display:inline;opacity:0.40141697;fill:#757575;fill-opacity:1;stroke:#797979;stroke-width:2.21102357;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 53 KiB