This commit is contained in:
Boris Marinov 2021-02-23 12:00:33 +02:00
parent fc471ffbfb
commit 1f71c95093
8 changed files with 1890 additions and 59 deletions

View File

@ -6,13 +6,11 @@ title: Orders
Orders
===
This chapter is about order (not as "Law and order", but as "alphabetical ordered") and about its mathematical qualities.
Given a set of objects, there can be numerous criteria, based on which to order them, and which depend on the objects themselves.
Given a set of objects, there can be numerous criteria, based on which to order them, and which depend on the objects themselves - size, weight, age, alphabetical order etc.
![Balls](balls.svg)
Howevever, as mathematicians we are not interested in the *criteria* that we can use to order objects, but in the *nature of the relationship* that defines the order, of which there can be several types.
Howevever, as mathematicians we are not interested in the *criteria* that we can use to order objects, but in the *nature of the relationship* that defines the order, of which there can be several types as well.
Linear order
===
@ -64,12 +62,12 @@ The third law is called antisymmetry and it states that the function that define
![antisymmetry](antisymmetry.svg)
Also it means that no ties are permitted - either I am better than my grandmother at socker or she is better at it than me.
It also means that no ties are permitted - either I am better than my grandmother at socker or she is better at it than me.
Connexity
Totality
---
The last law is called connexity, or totality and it mandates that all elements that belong to the order should be comparable - **a ≤ b or b ≤ a**. That is, for any two elements, one would always be "bigger" than the other.
The last law is called totality or connexity and it mandates that all elements that belong to the order should be comparable - **a ≤ b or b ≤ a**. That is, for any two elements, one would always be "bigger" than the other.
**NB:** By the way this law makes the reflexivity law redundant, as it is just a special case of reflexivity when **a** and **b** are one and the same object.
@ -77,7 +75,7 @@ The last law is called connexity, or totality and it mandates that all elements
You might say that this law is not as self-evident as the rest of them - if you think about different types of real-life objects that we typically order by various criteria you would probably think of some instances where it is not valid. For example, if we aim to order all people based on soccer skills there are many ways in which we can rank a person compared to their friends their friend's friends etc. but there isn't a way to order groups of people who never played with one another.
Orders like the order of people based on their soccer skills that don't follow the connexity law are called **partial orders** and they are actually much more interesting than linear orders (which are also called **total orders**, by the way).
Orders like the order of people based on their soccer skills that don't follow the totality law are called **partial orders** and they are actually much more interesting than linear orders (which are also called **total orders**, by the way).
**Task:** Think about other orders and think about whether they are partial or total.
@ -107,7 +105,7 @@ However, this is not the case with partial orders that we will look into next.
Partial order
===
Like linear orders, a partial orders consists of a set plus a relationship, with the only difference is that although the relationship obeys the reflexive, transitive and the anti-symmetric laws, it does not obey the law of totality, that is, not all elements are necessarily ordered. I say "necessarily" because even if all elements are ordered, the partial order is still a partial order (just as a group is still a monoid) - all linear orders are also partial orders, but not the other way around (we can create an *order of orders*, based on which is more general, but we can do it later).
Like linear orders, a partial orders consists of a set plus a relationship, with the only difference is that although the relationship obeys the reflexive, transitive and the antisymmetric laws, it does not obey the law of totality, that is, not all elements are necessarily ordered. I say "necessarily" because even if all elements are ordered, the partial order is still a partial order (just as a group is still a monoid) - all linear orders are also partial orders, but not the other way around (we can create an *order of orders*, based on which is more general, but we can do it later).
Partial orders
---
@ -139,36 +137,35 @@ For example, this set is not linearly ordered.
Although the connection establishes the relationship between **D** and **G** (**D ≤ G**) and although the relationship between **F** and **G** is known as well (**F ≤ G**), the relationship between **D** and **F** is *not* known. Any element can be bigger than the other one.
Maximal and minimal elements
Maximum and minimum
---
We established that partial orders cannot give us a definite answer of the question who is better at who at soccer, but some people don't care who is better than who, they only care about one thing (and one element) *who is number one* i.e. the champion, the player who is better than anyone else, or the element that is bigger than any other elements. Although, partial sets don't always have a maximal element, some of them do. For example, in our last diagram **M** is the maximal element.
So partial orders do not provide us with a definite answer of the question who is better at who at soccer, but in sports (as well as in other domains) people often don't care who is better than, *who is number one* i.e. the champion, the player who is better than anyone else, or more generally, the element that is bigger than any other element, which is called the *maximum element*.
In our last diagram **M** is the maximum element. In this diagram, the green element is the biggest one.
![Join diagram with one more element](join_additional_element.svg)
Sometimes we have more than one elements that are bigger than all other elements, in this case none of them are maximum.
![A diagram with no maximum element](non_maximal_element.svg)
We also may have a minimum (smallest) element, which is defined in the same way.
Joins
---
When we have two or more elements have a unique upper bound that is common to all them, without the elements being ordered themselves, we say that the upper element is a **join** of these elements, e.g. the green element is a join of the other two.
Give two elements, the smallest element that is bigger than both of them (i.e. their *least upper bound*) is called the *join* of these elements, e.g. the green element is a join of the other two. Formally the join of **A** and **B** is defined as the smallest element **C** for which **A ≤ C**, and **B ≤ C**.
![Join diagram](join.svg)
![Join](join.svg)
A join is formally defined as
In a totally ordered set, the *join* of any subset of elements is just their the *maximum* element.
A couple of clarifications about joins:
- An element counts as a join if the elements are not directly connected to it.
![Join diagram with one more element](join_additional_element.svg)
- An element can have, more than one arrows,
![Also Join diagram with one more element](join_additional_arrows.svg)
- If two elements have several upper bounds, that are equally big, then none of them is a **join** (a join must be unique).
And, like with the maxumum element, if two elements have several upper bounds that are equally big, then none of them is a *join* (a join must be unique).
![A non-join diagram](non_join.svg)
If, however one is established as bigger than another, it immediately qualifies
If, however one is established as bigger than another, it immediately qualifies.
![A join diagram](non_join_fix.svg)
@ -177,30 +174,64 @@ If, however one is established as bigger than another, it immediately qualifies
Meets
---
Given two elements, the biggest element that is smaller than both of them is called the *meet* of these elements.
![Meet](meet.svg)
The same rules as for the joins apply.
**Question:** What is the relationship of join and meet in terms of category theory?
Interlude: Hasse diagrams
---
By the way, in this section we use what are called a "Hasse diagrams". They are much like our usual diagrams, however they have an additional rule which we follow - "bigger" elements are always above smaller ones.
In this section we use what are called "Hasse diagrams", they are much like our usual diagrams, however they have an additional rule that is followed - "bigger" elements are always positioned above smaller ones.
In terms of arrows the rule means that if you add an arrow to a point, you the point *to* which the arrow points must always be above the one *from* which it points.
In terms of arrows, the rule means that if you add an arrow to a point, you the point *to* which the arrow points must always be above the one *from* which it points.
![A join diagram](hasse.svg)
This allows us to compare any two points by just seeing which one is above the other.
Order as sets
---
This allows us to compare any two points by just seeing which one is above the other e.g. to spot the *join* of two elements, you just have to identify the ones they connect to and see which one is lowest.
Preorder
===
Equivalence relation
In the last chapter, we saw how removing the law of totality from the laws of *(linear) order* produces a different (and somewhat more interesting) structure, called *partial order*. Now let's see what will happen if we remove another one of the laws, namely the *antisymmetry* law. If you recall, the antisymmetry law mandated that you cannot have an object that is at the same time smaller and bigger than another one. (or that **a ≤ b ⟺ b ≰ a**) and removing it leaves us with just one law - transitivity - **a ≤ b and b ≤ c ➞ a ≤ c** (two, if we count reflexivity).
| **Total order** | reflexive | transitive | antisymmetric | total |
| **Partial order** | reflexive | transitive | antisymmetric | ~~total~~ |
| **Preorder** | reflexive | transitive | ~~antisymmetric~~ | ~~total~~ |
This results in something called a preorder which is not exactly an order, as it can have arrows coming from any point to any other. If a partial order can be used to model who is better at who in soccer, then a preorder can be used to model who has beaten who, either directly (by playing him) or indirectly
![preorder](preorder.svg)
An interesting consequence of the reflexivity property is that all indirect wins (ones that are wins not against the player directly, but against someone who had beat them) are added as a direct result of its application, as seen here (we show indirect wins in lighter tone).
![preorder in sport](preorder_sports.svg)
Also, notice that all "circle" relationships (e.g. where you have a weaker player beating a stronger one) result in just a bunch of objects that are all connected to one another, due to which, we can convert the preorder into partial order, by grouping all objects that have arrows to one another in sets and then create an order from those sets.
![preorder](preorder_equivalence.svg)
Those sets are called *equivalence classes*.
Orders as categories
===
Let's revisit our color-mixing monoid and create a color-mixing poset
![A color mixing poset](color_mixing_poset.svg)
Orders as powersets
===
Lattices
===
Order as powersets
---
Logic
===

View File

@ -0,0 +1,270 @@
<?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="svg3397"
sodipodi:docname="color_mixing_poset.svg"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)">
<metadata
id="metadata3403">
<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="defs3401" />
<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="namedview3399"
showgrid="false"
inkscape:zoom="1.6510641"
inkscape:cx="335.38333"
inkscape:cy="84.808576"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g1482-7-0-2"
inkscape:document-rotation="0"
showguides="false" />
<g
id="g5757"
transform="translate(72.480001,-49.778019)">
<circle
cx="153.12378"
cy="90.683884"
r="24.6"
id="circle3371"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#f58235"
stroke="#e76524"
cx="148.32379"
cy="84.383881"
r="24.6"
id="circle3385"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g4363"
transform="translate(-161.18126,-92.94424)">
<circle
cx="539.70001"
cy="133.7"
r="24.6"
id="circle3373"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#8967ac"
stroke="#651c5f"
cx="534.71521"
cy="126.90238"
r="24.6"
id="circle3387"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5765"
transform="translate(-48.187067,-52.453115)">
<circle
cx="351.04132"
cy="94.997795"
r="24.6"
id="circle3375"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#54b948"
stroke="#00873a"
cx="343.96902"
cy="86.556648"
r="24.6"
id="circle3389"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0"
transform="matrix(0.01017386,-0.28029238,0.39203238,-0.00559565,126.41851,155.07492)"
inkscape:transform-center-x="-18.81019"
inkscape:transform-center-y="6.9854567">
<path
style="stroke-width:35.526"
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"
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"
id="g1482-7-0-7"
transform="matrix(-0.00466973,-0.28043808,0.39118727,-0.02632895,208.258,160.93184)"
inkscape:transform-center-x="-15.248575"
inkscape:transform-center-y="90.778908">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-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"
id="g1482-7-0-5"
transform="matrix(-0.00391073,-0.2804497,0.3912571,-0.02527013,282.48365,160.90865)">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-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
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4"
transform="matrix(-0.19363093,-0.20291473,0.26960977,-0.28465992,237.78365,193.36473)"
inkscape:transform-center-x="170.54007"
inkscape:transform-center-y="-64.392973">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-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:none;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-31"
d="M 96.459167,77.578189 C 147.54958,60.644507 303.77113,69.059138 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-2"
transform="matrix(0.239648,-0.1464369,-0.18446056,-0.34031378,233.85635,183.57358)">
<path
style="stroke-width:16.0981"
inkscape:connector-curvature="0"
id="path1478-7-9-7"
d="m 563.46366,141.06522 c 4.96028,-2.08575 10.13124,-3.95534 15.43904,-5.71837 -4.32297,-3.2392 -8.89528,-6.34765 -13.71749,-9.32662 -0.58317,5.25487 -0.78326,9.37726 -1.72155,15.04499 z" />
<path
style="fill:none;stroke-width:9.11185;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-7"
d="m 141.33193,152.86684 c 85.12595,-22.21059 313.4888,-42.56904 425.00281,-18.91397"
sodipodi:nodetypes="cc" />
</g>
<g
id="g5761"
transform="translate(50.982964,41.039843)">
<circle
cx="250.16379"
cy="90.603348"
r="24.6"
id="circle3365"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#fce600"
stroke="#ffdd00"
cx="245.36378"
cy="84.403351"
r="24.6"
id="circle3379"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-3"
transform="matrix(-0.19363093,-0.20291473,0.26960977,-0.28465992,315.05854,190.52542)"
inkscape:transform-center-x="-22.053495"
inkscape:transform-center-y="26.089189">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-0-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-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-31-0"
d="M 96.459167,77.578189 C 147.54958,60.644507 303.77113,69.059138 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g4359"
transform="translate(106.62416,60.030356)">
<circle
cx="271.79999"
cy="72.099998"
r="24.6"
id="circle3367"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#39bced"
stroke="#008dd2"
cx="264.84811"
cy="65.602043"
r="24.6"
id="circle3381"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5769"
transform="translate(167.36669,40.9632)">
<circle
cx="56.307613"
cy="92.667412"
r="24.6"
id="circle3369"
style="opacity:0.13;stroke:#000000;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

View File

@ -20,12 +20,41 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3401" />
id="defs3401">
<marker
style="overflow:visible"
id="Arrow1Mstart"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Mstart"
inkscape:isstock="true">
<path
transform="scale(0.4) translate(10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path4219" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="scale(0.8) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path4213" />
</marker>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -40,8 +69,8 @@
id="namedview3399"
showgrid="false"
inkscape:zoom="1.4142136"
inkscape:cx="260.22413"
inkscape:cy="87.505765"
inkscape:cx="226.28301"
inkscape:cy="74.42429"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
@ -49,9 +78,26 @@
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true" />
<g
id="g4211"
style="stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:1, 4;stroke-dashoffset:0;stroke-opacity:1"
transform="matrix(0.69968954,0,0,1,100.4443,0)">
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1, 4;stroke-dashoffset:0;stroke-opacity:1"
d="M 58.692359,158.00757 H 537.98355"
id="path4176" />
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1, 4;stroke-dashoffset:0;stroke-opacity:1"
d="M 60.830103,87.166576 H 540.1213"
id="path4176-2" />
<path
style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1, 4;stroke-dashoffset:0;stroke-opacity:1"
d="M 61.683865,20.678579 H 540.97506"
id="path4176-2-9" />
</g>
<g
id="g2760-9-8-7"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,136.60799,-80.342408)"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,163.62806,-127.61528)"
style="fill:#ffaaaa">
<g
id="g2749-4-6"
@ -76,7 +122,7 @@
<g
id="g2749-7-7"
style="fill:#f8f7cb;fill-opacity:1;stroke:#666666"
transform="matrix(0.70959204,0.01739057,-0.01739057,0.70959204,186.20172,79.381004)">
transform="matrix(0.70959204,0.01739057,-0.01739057,0.70959204,213.22179,32.108129)">
<circle
cx="55.440796"
cy="90.58149"
@ -94,7 +140,7 @@
</g>
<g
id="g2760-0-7"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,167.01003,70.507544)">
transform="matrix(0.501908,0.501908,-0.501908,0.501908,194.0301,23.234669)">
<g
id="g2749-6-8"
style="fill:#caebfc;fill-opacity:1;stroke:#666666"
@ -117,7 +163,7 @@
</g>
<g
id="g2760-9-8-7-3"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,203.7931,-80.305908)"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,230.81317,-127.57878)"
style="fill:#cee7cc;fill-opacity:1">
<g
id="g2749-4-6-6"
@ -142,7 +188,7 @@
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20"
transform="matrix(0.01081399,-0.2172856,0.29422209,0.05595566,80.313152,149.5685)"
transform="matrix(0.01081399,-0.2172856,0.29422209,0.05595566,107.33323,102.29563)"
inkscape:transform-center-x="-7.8180339"
inkscape:transform-center-y="-4.1772314">
<path
@ -161,7 +207,7 @@
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-7"
transform="matrix(-0.00954049,-0.21981135,-0.25957329,0.05660609,281.67769,150.31693)"
transform="matrix(-0.00954049,-0.21981135,-0.25957329,0.05660609,308.69776,103.04406)"
inkscape:transform-center-x="6.8973484"
inkscape:transform-center-y="-4.2257898">
<path
@ -180,7 +226,7 @@
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-6"
transform="matrix(0.1678335,-0.13842648,0.15691572,0.25509828,111.5053,70.774837)"
transform="matrix(0.1678335,-0.13842648,0.15691572,0.25509828,138.52537,23.501962)"
inkscape:transform-center-x="-8.50783"
inkscape:transform-center-y="2.8895998">
<path
@ -200,7 +246,7 @@
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-6-9"
transform="matrix(-0.1678335,-0.13842648,-0.15691572,0.25509828,257.96322,71.745979)"
transform="matrix(-0.1678335,-0.13842648,-0.15691572,0.25509828,284.98329,24.473104)"
inkscape:transform-center-x="8.5078251"
inkscape:transform-center-y="2.8895998">
<path
@ -219,7 +265,7 @@
</g>
<g
id="g2760-9-8-7-9"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,339.24266,-79.412687)"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,362.42845,-62.910436)"
style="fill:#ffaaaa;fill-opacity:1">
<g
id="g2749-4-6-4"
@ -244,7 +290,7 @@
<g
id="g2749-7-7-5"
style="fill:#f8f7cb;fill-opacity:1;stroke:#666666"
transform="matrix(0.70959204,0.01739057,-0.01739057,0.70959204,388.83639,80.310722)">
transform="matrix(0.70959204,0.01739057,-0.01739057,0.70959204,412.02218,96.812973)">
<circle
cx="55.440796"
cy="90.58149"
@ -262,7 +308,7 @@
</g>
<g
id="g2760-0-7-6"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,369.6447,71.437262)">
transform="matrix(0.501908,0.501908,-0.501908,0.501908,392.83049,87.939513)">
<g
id="g2749-6-8-1"
style="fill:#caebfc;fill-opacity:1;stroke:#666666"
@ -285,7 +331,7 @@
</g>
<g
id="g2760-9-8-7-3-3"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,409.53159,-126.10245)">
transform="matrix(0.501908,0.501908,-0.501908,0.501908,429.25522,-129.59646)">
<g
id="g2749-4-6-6-2"
style="fill:#cee7cc;fill-opacity:1;stroke:#666666"
@ -309,7 +355,7 @@
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-1"
transform="matrix(0.01081399,-0.2172856,0.29422209,0.05595566,282.94782,150.49821)"
transform="matrix(0.01081399,-0.2172856,0.29422209,0.05595566,306.13361,167.00047)"
inkscape:transform-center-x="-7.8180339"
inkscape:transform-center-y="-4.1772314">
<path
@ -328,9 +374,9 @@
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-7-7"
transform="matrix(-0.00954049,-0.21981135,-0.25957329,0.05660609,488.70323,104.66833)"
transform="matrix(-0.00954049,-0.28047876,-0.25957329,0.07222924,511.88902,116.84264)"
inkscape:transform-center-x="6.8973484"
inkscape:transform-center-y="-4.2257898">
inkscape:transform-center-y="-5.3920968">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
@ -348,9 +394,9 @@
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-6-6"
transform="matrix(0.12528657,-0.17785739,0.21875,0.20456322,325.69733,54.647802)"
inkscape:transform-center-x="-9.0324619"
inkscape:transform-center-y="0.77022403">
transform="matrix(0.12454177,-0.21029416,0.21744958,0.24187047,349.27537,58.195759)"
inkscape:transform-center-x="-8.9787696"
inkscape:transform-center-y="0.91069311">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
@ -368,7 +414,7 @@
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-6-9-7"
transform="matrix(-0.1678335,-0.13842648,-0.15691572,0.25509828,460.59789,72.675692)"
transform="matrix(-0.1678335,-0.13842648,-0.15691572,0.25509828,483.78368,89.177943)"
inkscape:transform-center-x="8.5078251"
inkscape:transform-center-y="2.8895998">
<path
@ -388,9 +434,9 @@
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-6-9-7-2"
transform="matrix(0.1678335,-0.13842648,0.15691572,0.25509828,314.75887,19.386812)"
inkscape:transform-center-x="-8.5078256"
inkscape:transform-center-y="2.8895998">
transform="matrix(0.16397951,-0.19198139,0.15331244,0.35379157,339.53662,20.665794)"
inkscape:transform-center-x="-8.3124537"
inkscape:transform-center-y="4.0075378">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
@ -405,4 +451,43 @@
d="M 114.81589,81.074446 C 182.75999,67.180639 241.85906,64.912232 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
<circle
id="path4170"
style="fill:#e6e6e6;stroke:#cccccc"
cx="-49.175602"
cy="-38.577908"
r="0.9801296" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:19.8696px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.496742"
x="124.50941"
y="27.610792"
id="text4499"><tspan
sodipodi:role="line"
id="tspan4497"
x="124.50941"
y="27.610792"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.496742">1</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:19.8696px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.496742"
x="124.33109"
y="93.611427"
id="text4499-2"><tspan
sodipodi:role="line"
id="tspan4497-7"
x="124.33109"
y="93.611427"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.496742">2</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:19.8696px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.496742"
x="124.36346"
y="163.29214"
id="text4499-2-0"><tspan
sodipodi:role="line"
id="tspan4497-7-9"
x="124.36346"
y="163.29214"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.496742">3</tspan></text>
</svg>

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 20 KiB

168
_chapters/04_order/meet.svg Normal file
View File

@ -0,0 +1,168 @@
<?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="svg3397"
sodipodi:docname="meet.svg"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)">
<metadata
id="metadata3403">
<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="defs3401" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview3399"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="280.64372"
inkscape:cy="143.57263"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g2760-0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="578.41487,-35.590171"
orientation="1,0"
id="guide3917" />
</sodipodi:namedview>
<g
id="g2760-8"
transform="translate(392.18394,2.4928396)">
<g
id="g2760-0"
transform="matrix(0.58065273,0.58065273,-0.58065273,0.58065273,42.036768,-23.943945)">
<g
id="g2760-9-8-7"
transform="matrix(0.86438585,0,0,0.86438585,-133.27849,114.43873)">
<g
id="g2749-4-6"
style="fill:#cee7cc;fill-opacity:1;stroke:#666666"
transform="rotate(-37.328029,183.17645,-58.627543)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-5"
style="opacity:0.13;fill:#cee7cc;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-6"
style="fill:#cee7cc;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
</g>
<g
id="g2749-7-7"
style="fill:#f8f7cb;fill-opacity:1;stroke:#666666"
transform="matrix(0.62600464,-0.59605461,0.59605461,0.62600464,-71.975258,128.99447)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-4"
style="opacity:0.13;fill:#f8f7cb;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-4-5"
style="fill:#f8f7cb;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g2760-0-7"
transform="matrix(0.86438585,0,0,0.86438585,-116.56199,156.16854)">
<g
id="g2749-6-8"
style="fill:#caebfc;fill-opacity:1;stroke:#666666"
transform="rotate(-44.545114,52.727379,84.306425)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-3-6"
style="opacity:0.13;fill:#caebfc;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-2-8"
style="fill:#caebfc;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-3"
transform="matrix(0.00617453,-0.25789498,-0.360082,0.0172869,96.368833,255.56556)"
inkscape:transform-center-x="-7.4297099"
inkscape:transform-center-y="-1.7417866">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-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
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3"
transform="matrix(-0.263895,-0.02343329,0.08200231,-0.35538151,20.952259,325.38116)"
inkscape:transform-center-x="0.49322428"
inkscape:transform-center-y="6.0425852">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4-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>
</svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -0,0 +1,244 @@
<?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="svg3397"
sodipodi:docname="non_maximal_element.svg"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)">
<metadata
id="metadata3403">
<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="defs3401" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview3399"
showgrid="false"
inkscape:zoom="2.0000001"
inkscape:cx="306.81378"
inkscape:cy="131.56972"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true" />
<g
id="g2760-9-8-7"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,268.51903,-129.56203)"
style="fill:#ffaaaa">
<g
id="g2749-4-6"
style="fill:#ffaaaa;fill-opacity:1;stroke:#666666"
transform="rotate(-37.328029,183.17645,-58.627543)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-5"
style="opacity:0.13;fill:#ffaaaa;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-6"
style="fill:#ffaaaa;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
</g>
<g
id="g2749-7-7"
style="fill:#f8f7cb;fill-opacity:1;stroke:#666666"
transform="matrix(0.70959204,0.01739057,-0.01739057,0.70959204,316.07313,29.710343)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-4"
style="opacity:0.13;fill:#f8f7cb;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-4-5"
style="fill:#f8f7cb;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g2760-9-8-7-3"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,335.70414,-129.52553)"
style="fill:#cee7cc;fill-opacity:1">
<g
id="g2749-4-6-6"
style="fill:#cee7cc;fill-opacity:1;stroke:#666666"
transform="rotate(-37.328029,183.17645,-58.627543)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-5-7"
style="opacity:0.13;fill:#cee7cc;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-6-5"
style="fill:#cee7cc;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-7"
transform="matrix(0.00954049,-0.21981135,0.25957329,0.05660609,287.47122,101.05261)"
inkscape:transform-center-x="-6.8973456"
inkscape:transform-center-y="-4.2257898">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1-6-2-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4-7-3-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
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-6"
transform="matrix(0.19421178,-0.09803959,0.0968445,0.28340575,325.70724,61.394661)"
inkscape:transform-center-x="-10.568768"
inkscape:transform-center-y="-6.9099805">
<path
style="stroke-width:16.0981"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1-6-2-1"
d="m -51.929716,115.29568 c 4.546773,-2.49497 9.332084,-4.78839 14.267291,-6.98503 -4.716389,-2.92882 -9.657465,-5.70609 -14.823979,-8.333021 0.212192,5.348811 0.630727,9.524671 0.556688,15.318051 z"
inkscape:transform-center-x="1.8126941"
inkscape:transform-center-y="1.4818538" />
<path
style="fill:none;stroke-width:9.11185;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4-7-3-2"
d="m -280.67764,131.2901 c 53.24188,-12.74301 165.31653,-32.911197 227.473321,-23.6651"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-6-9"
transform="matrix(0.00502584,-0.21749647,0.29560741,0.0481034,210.21336,100.97119)"
inkscape:transform-center-x="-12.275251"
inkscape:transform-center-y="-19.476187">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1-6-2-1-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-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4-7-3-2-1"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 47.872715,98.401069 C 126.06599,78.448462 241.85906,64.912232 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
<g
id="g2760-0-7"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,303.94107,48.262589)">
<g
id="g2749-6-8"
style="fill:#caebfc;fill-opacity:1;stroke:#666666"
transform="rotate(-44.545114,52.727379,84.306425)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-3-6"
style="opacity:0.13;fill:#caebfc;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-2-8"
style="fill:#caebfc;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3-20-6-3"
transform="matrix(0.19421178,-0.09803959,0.0968445,0.28340575,262.46497,90.228138)"
inkscape:transform-center-x="-10.568768"
inkscape:transform-center-y="-6.9099805">
<path
style="stroke-width:16.0981"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1-6-2-1-5"
d="m -51.929716,115.29568 c 4.546773,-2.49497 9.332084,-4.78839 14.267291,-6.98503 -4.716389,-2.92882 -9.657465,-5.70609 -14.823979,-8.333021 0.212192,5.348811 0.630727,9.524671 0.556688,15.318051 z"
inkscape:transform-center-x="1.8126941"
inkscape:transform-center-y="1.4818538" />
<path
style="fill:none;stroke-width:9.11185;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4-7-3-2-6"
d="m -280.67764,131.2901 c 53.24188,-12.74301 165.31653,-32.911197 227.473321,-23.6651"
sodipodi:nodetypes="cc" />
</g>
<g
id="g2760-0-7-3"
transform="matrix(0.501908,0.501908,-0.501908,0.501908,238.81616,77.988776)">
<g
id="g2749-6-8-6"
style="fill:#e6e6e6;fill-opacity:1;stroke:#666666"
transform="rotate(-44.545114,52.727379,84.306425)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-3-6-7"
style="opacity:0.13;fill:#e6e6e6;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-2-8-5"
style="fill:#e6e6e6;fill-opacity:1;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -0,0 +1,281 @@
<?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="svg3397"
sodipodi:docname="preorder.svg"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)">
<metadata
id="metadata3403">
<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="defs3401" />
<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="namedview3399"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="332.91475"
inkscape:cy="3.7406242"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g2760-0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="578.41487,-35.590171"
orientation="1,0"
id="guide3917" />
</sodipodi:namedview>
<g
id="g2760-8"
transform="translate(392.18394,2.4928396)">
<g
id="g2760-0"
transform="matrix(0.58065273,0.58065273,-0.58065273,0.58065273,42.036768,-23.943945)">
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-1"
transform="matrix(-0.2579681,-6.3437123e-4,0.02501629,0.35962768,18.504098,119.14207)"
inkscape:transform-center-x="1.7679659"
inkscape:transform-center-y="-1.2312622">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-6"
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
id="g2760-3"
transform="matrix(0.86438585,0,0,0.86438585,-131.7672,128.86087)">
<g
id="g2749-2"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-44.545114,52.727379,84.306425)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-0"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-6"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-36.677025"
y="109.08755"
id="text2753-15"
transform="matrix(0.72045954,-0.72526052,0.69398619,0.68939224,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-54"
x="-36.677025"
y="109.08755"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">M</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3"
transform="matrix(0.02251826,0.26397465,0.35566367,-0.08076976,-103.14184,107.56661)"
inkscape:transform-center-x="0.46573386"
inkscape:transform-center-y="-6.0434744">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4"
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"
id="g1482-7-0-25-1-3-3"
transform="matrix(0.02343329,-0.263895,0.35538151,0.08200231,-94.994205,293.58203)"
inkscape:transform-center-x="6.0425828"
inkscape:transform-center-y="-0.4932205">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4-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
id="g2760-0-7"
transform="matrix(0.86438585,0,0,0.86438585,-55.770142,209.16207)">
<g
id="g2749-6-8"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-44.545114,52.727379,84.306425)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-3-6"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-2-8"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-34.827446"
y="108.17011"
id="text2753-0-8"
transform="matrix(0.72045954,-0.72526052,0.69398619,0.68939224,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-6-4"
x="-34.827446"
y="108.17011"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">D</tspan></text>
</g>
<g
id="g2760-9-8-4-4"
transform="matrix(0.86438585,0,0,0.86438585,-99.178894,-81.815916)">
<g
id="g2749-4-5-7"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-37.328029,296.07441,96.778899)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-0-4"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-3-4"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-117.18314"
y="243.94861"
id="text2753-2-6-3"
transform="matrix(0.69820387,-0.7467102,0.71451093,0.66809626,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-5-1-0"
x="-117.18314"
y="243.94861"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">O</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-2"
transform="matrix(-1.9962314e-4,-0.26493329,-0.36120377,0.05051969,77.881701,219.1539)"
inkscape:transform-center-x="0.19931756"
inkscape:transform-center-y="6.0426801">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4-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
id="g2760-9-8-7"
transform="matrix(0.86438585,0,0,0.86438585,-145.705,83.19536)">
<g
id="g2749-4-6"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-37.328029,183.17645,-58.627543)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-5"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-6"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="1.9837745"
y="227.02519"
id="text2753-2-9"
transform="matrix(0.69820387,-0.7467102,0.71451093,0.66809626,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-5-3"
x="1.9837745"
y="227.02519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">G</tspan></text>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,362 @@
<?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="svg3397"
sodipodi:docname="preorder_equivalence.svg"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)">
<metadata
id="metadata3403">
<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="defs3401" />
<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="namedview3399"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="350.91475"
inkscape:cy="3.7406242"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g2760-0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="578.41487,-35.590171"
orientation="1,0"
id="guide3917" />
</sodipodi:namedview>
<g
id="g2760-8"
transform="translate(392.18394,2.4928396)">
<g
id="g2760-0"
transform="matrix(0.58065273,0.58065273,-0.58065273,0.58065273,42.036768,-23.943945)">
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-1"
transform="matrix(-0.25201197,0.05511724,0.10212662,0.34572826,122.61059,73.899896)"
inkscape:transform-center-x="1.985515"
inkscape:transform-center-y="-1.2183682">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-6"
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"
id="g1482-7-0-7-0-3"
transform="matrix(-0.24851641,0.06919204,0.12139355,0.33944291,-45.479502,113.688)"
inkscape:transform-center-x="-10.078677"
inkscape:transform-center-y="3.5196494">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-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
id="g2760-9-8-7-4"
transform="matrix(3.7238294,0,0,3.7238294,-609.47687,-296.97043)"
style="stroke-width:1.3735;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7"
style="fill:#cccccc;stroke:#666666;stroke-width:1.3735;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519"
style="stroke-width:1.3735;stroke-miterlimit:4;stroke-dasharray:none">
<circle
cx="52.563747"
cy="85.225021"
r="17.200493"
id="circle3369-5-5-8"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:1.3735;stroke-miterlimit:4;stroke-dasharray:none" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.337112"
cy="84.338951"
id="circle3383-6-6-4"
style="fill:#cccccc;stroke:#666666;stroke-width:1.3735;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7"
transform="matrix(0.86438585,0,0,0.86438585,-158.15326,47.988659)">
<g
id="g2749-4-6"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-37.328029,183.17645,-58.627543)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-5"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-6"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="1.9837745"
y="227.02519"
id="text2753-2-9"
transform="matrix(0.69820387,-0.7467102,0.71451093,0.66809626,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-5-3"
x="1.9837745"
y="227.02519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">G</tspan></text>
</g>
<g
id="g10526"
transform="translate(-26.256642,65.320909)">
<g
id="g2749-7-7"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.62600464,-0.59605461,0.59605461,0.62600464,-23.306073,105.23298)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-4"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-4-5"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:24.6722px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.616806"
x="-53.931595"
y="144.3268"
id="text2753-1-2"
transform="matrix(0.72509778,-0.72062332,0.68954896,0.69383047,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-1-5"
x="-53.931595"
y="144.3268"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.616806">F</tspan></text>
</g>
<g
id="g2760-9-8-4-4"
transform="matrix(0.86438585,0,0,0.86438585,-99.622192,16.388398)">
<g
id="g2749-4-5-7"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-37.328029,296.07441,96.778899)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-0-4"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-3-4"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-117.18314"
y="243.94861"
id="text2753-2-6-3"
transform="matrix(0.69820387,-0.7467102,0.71451093,0.66809626,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-5-1-0"
x="-117.18314"
y="243.94861"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">O</tspan></text>
</g>
<g
id="g2760-9-8-7-4-3"
transform="matrix(1.9814726,0,0,1.9814726,-454.45212,-27.94686)"
style="stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6"
style="fill:#cccccc;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1"
style="stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<circle
cx="52.563747"
cy="85.225021"
r="17.200493"
id="circle3369-5-5-8-0"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.337112"
cy="84.338951"
id="circle3383-6-6-4-6"
style="fill:#cccccc;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-3"
transform="matrix(0.86438585,0,0,0.86438585,-175.72519,161.59708)">
<g
id="g2749-2"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-44.545114,52.727379,84.306425)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-0"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-6"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-36.677025"
y="109.08755"
id="text2753-15"
transform="matrix(0.72045954,-0.72526052,0.69398619,0.68939224,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-54"
x="-36.677025"
y="109.08755"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">M</tspan></text>
</g>
<g
id="g2760-9-8-7-4-3-3"
transform="matrix(1.9814726,0,0,1.9814726,-193.60613,-108.00318)"
style="stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-2"
style="fill:#cccccc;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-0"
style="stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<circle
cx="52.563747"
cy="85.225021"
r="17.200493"
id="circle3369-5-5-8-0-6"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.337112"
cy="84.338951"
id="circle3383-6-6-4-6-1"
style="fill:#cccccc;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-0-7"
transform="matrix(0.86438585,0,0,0.86438585,83.218886,80.774285)">
<g
id="g2749-6-8"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-44.545114,52.727379,84.306425)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-3-6"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-2-8"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-34.827446"
y="108.17011"
id="text2753-0-8"
transform="matrix(0.72045954,-0.72526052,0.69398619,0.68939224,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-6-4"
x="-34.827446"
y="108.17011"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">D</tspan></text>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,390 @@
<?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="svg3397"
sodipodi:docname="preorder_sports.svg"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)">
<metadata
id="metadata3403">
<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="defs3401" />
<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="namedview3399"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="350.91475"
inkscape:cy="3.7406242"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g2760-0"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="578.41487,-35.590171"
orientation="1,0"
id="guide3917" />
</sodipodi:namedview>
<g
id="g2760-8"
transform="translate(392.18394,2.4928396)">
<g
id="g2760-0"
transform="matrix(0.58065273,0.58065273,-0.58065273,0.58065273,42.036768,-23.943945)">
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-1"
transform="matrix(-0.2579681,-6.3437123e-4,0.02501629,0.35962768,11.547996,125.53029)"
inkscape:transform-center-x="1.7679659"
inkscape:transform-center-y="-1.2312622">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-6"
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
id="g2760-3"
transform="matrix(0.86438585,0,0,0.86438585,-138.7233,135.24909)">
<g
id="g2749-2"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-44.545114,52.727379,84.306425)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-0"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-6"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-36.677025"
y="109.08755"
id="text2753-15"
transform="matrix(0.72045954,-0.72526052,0.69398619,0.68939224,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-54"
x="-36.677025"
y="109.08755"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">M</tspan></text>
</g>
<g
id="g2760-9-8-7"
transform="matrix(0.86438585,0,0,0.86438585,-152.6611,89.58358)">
<g
id="g2749-4-6"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-37.328029,183.17645,-58.627543)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-5"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-6"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="1.9837745"
y="227.02519"
id="text2753-2-9"
transform="matrix(0.69820387,-0.7467102,0.71451093,0.66809626,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-5-3"
x="1.9837745"
y="227.02519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">G</tspan></text>
</g>
<g
id="g2749-7-7"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.62600464,-0.59605461,0.59605461,0.62600464,-23.306073,105.23298)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-4"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-4-5"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:24.6722px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.616806"
x="-53.931595"
y="144.3268"
id="text2753-1-2"
transform="matrix(0.72509778,-0.72062332,0.68954896,0.69383047,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-1-5"
x="-53.931595"
y="144.3268"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.616806">F</tspan></text>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3"
transform="matrix(0.02251826,0.26397465,0.35566367,-0.08076976,-106.65355,113.95483)"
inkscape:transform-center-x="0.46573386"
inkscape:transform-center-y="-6.0434744">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4"
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"
id="g1482-7-0-7-0-3"
transform="matrix(-0.2579681,-6.3437123e-4,0.02501629,0.35962768,83.52588,45.086029)"
inkscape:transform-center-x="1.767968"
inkscape:transform-center-y="-1.2312642">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-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
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3"
transform="matrix(0.02343329,-0.263895,0.35538151,0.08200231,-101.95031,299.97025)"
inkscape:transform-center-x="6.0425828"
inkscape:transform-center-y="-0.4932205">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4-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
id="g2760-0-7"
transform="matrix(0.86438585,0,0,0.86438585,-62.726244,215.55029)">
<g
id="g2749-6-8"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-44.545114,52.727379,84.306425)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-3-6"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-2-8"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-34.827446"
y="108.17011"
id="text2753-0-8"
transform="matrix(0.72045954,-0.72526052,0.69398619,0.68939224,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-6-4"
x="-34.827446"
y="108.17011"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">D</tspan></text>
</g>
<g
id="g2760-9-8-4-4"
transform="matrix(0.86438585,0,0,0.86438585,-106.135,-75.427698)">
<g
id="g2749-4-5-7"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-37.328029,296.07441,96.778899)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-0-4"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-3-4"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-117.18314"
y="243.94861"
id="text2753-2-6-3"
transform="matrix(0.69820387,-0.7467102,0.71451093,0.66809626,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-5-1-0"
x="-117.18314"
y="243.94861"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">O</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-1-1"
transform="matrix(0.1771383,-0.18753657,-0.27917935,-0.22807186,51.669768,262.62408)"
inkscape:transform-center-x="-2.0853419"
inkscape:transform-center-y="-0.017197504">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-0-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:none;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-6-7"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 105.59176,90.127831 C 148.45275,75.072118 289.11541,75.577254 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#b3b3b3;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-7"
transform="matrix(0.26397465,0.02251826,-0.08076976,0.35566367,-35.381263,51.823659)"
inkscape:transform-center-x="-0.46573369"
inkscape:transform-center-y="-6.0434746">
<path
style="stroke:#b3b3b3;stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1-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="stroke:#b3b3b3;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4-6"
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:#b3b3b3;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-3-1"
transform="matrix(-6.3437229e-4,-0.2579681,0.35962768,0.02501629,-89.780252,225.94413)"
inkscape:transform-center-x="-1.7679678"
inkscape:transform-center-y="-1.231264">
<path
style="stroke:#b3b3b3;stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-2"
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:#b3b3b3;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-7-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
style="display:inline;fill:#dddddd;stroke:#b3b3b3;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-1-1-3"
transform="matrix(-0.18753657,0.1771383,-0.22807186,-0.27917935,114.23475,187.05736)"
inkscape:transform-center-x="2.0853422"
inkscape:transform-center-y="-0.017197504">
<path
style="stroke:#b3b3b3;stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-0-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:none;stroke:#b3b3b3;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-6-7-9"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 105.59176,90.127831 C 148.45275,75.072118 289.11541,75.577254 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB