This commit is contained in:
Boris Marinov 2021-03-22 18:47:11 +02:00
parent a58a6e2a6c
commit 906d58cbf4
12 changed files with 4290 additions and 55 deletions

View File

@ -233,6 +233,10 @@ GEM
rubyzip (2.3.0)
safe_yaml (1.0.5)
sass (3.7.4)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
sawyer (0.8.2)
addressable (>= 2.3.5)
faraday (> 0.8, < 2.0)

View File

@ -6,16 +6,18 @@ title: Orders
Orders
===
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.
Now let's talk about order. 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 as well.
Mathematically we can represent order as a *set of things* (e.g. our balls) and *a binary relation* between these things (which we often represent as a bunch of arrows). Not all binary relationships are orders - only ones that fit certain criteria that we are going to examine as we review the different types of order.
Linear order
===
The most straightforward type of order that you think about is linear order, one in which every object has its place depending on every other object, i.e. the ordering criteria is completely deterministic and leaves no room for ambiguity. For example, ordering the colors by the length of their waves (or by how they appear in the rainbow).
The most straightforward type of order that you think about is linear order, one in which every object has its place depending on every other object, i.e. the ordering criteria is completely deterministic and leaves no room for ambiguity in terms of which elements comes before which. For example, ordering the colors by the length of their waves (or by how they appear in the rainbow).
![Linear order](linear_order.svg)
@ -31,9 +33,7 @@ In most programming languages, we can order objects lineary by providing a funct
})
```
But in order for such function to really define an order (e.g. give the same output every time, independent of how were the objects shuffled initially), it has to obey several rules. Incidentally, (or rather not incidentally at all), these rules are nearly equivalent to the mathematical laws that define what an order is.
So let's define order formally - an order is defined by a *set*, any set and by a *relationship* between pairs of elements in that set, where the relationship has to obey the following laws.
But in order for such function to really define an order (e.g. give the same output every time, independent of how were the objects shuffled initially), it has to obey several rules. Incidentally, (or rather not incidentally at all), these rules are nearly equivalent to the mathematical laws that define the criteria of the relatioship between elements in an order i.e. those are the rules that define which element can point to which. So let's review them.
Reflexivity
---
@ -44,12 +44,12 @@ Let's get the most boring law out of the way - each object has to be bigger or e
No special reason for this law to be so, except that the "base case" should be covered somehow.
We can formulate it the opposite way too and say that each object should *not* have the relationship to itself, in which case we would have a relation than resembles *bigger than*, as opposed to *bigger or equal to* and also a different type of order (sometimes called a **strict** order).
We can formulate it the opposite way too and say that each object should *not* have the relationship to itself, in which case we would have a relation than resembles *bigger than*, as opposed to *bigger or equal to* and a slightly different type of order, sometimes called a *strict* order.
Transitivity
---
The second law is maybe the least obvious, (but probably the most essential) - it states that if one object one bigger than object two, it is automatically bigger than all objects that are smaller than object two or **a ≤ b and b ≤ c ➞ a ≤ c**`.
The second law is maybe the least obvious, (but probably the most essential) - it states that if one object one bigger than object two, it is automatically bigger than all objects that are smaller than object two or **a ≤ b and b ≤ c ➞ a ≤ c**.
![Transitivity](transitivity.svg)
@ -62,22 +62,22 @@ The third law is called antisymmetry and it states that the function that define
![antisymmetry](antisymmetry.svg)
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.
It also means that no ties are permitted - either I am better than my grandmother at soccer or she is better at it than me.
Totality
---
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.
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.
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. Why do we introduce reflexivity then? We shall see soon.
![connexity](connexity.svg)
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.
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 situations in which it does not apply. 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 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).
Orders that resemble the order of people based on their soccer skills in that they 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.
**Task:** Think about some orders that you know about and figure out whether they are partial or total.
But before we dive into the world of partial orders, let's say a few things about the numbers.
@ -88,15 +88,15 @@ Natural numbers form a linear order under the operation **bigger or equal to** (
![numbers](numbers.svg)
In many ways they are the quintesential order - every finite order of objects is isomorphic to a subset of them - we can map the first element of that order to the number **1**, the second one to the number **2** etc (and we can do the opposite operation as well) and if we think about it, this isomorphism is actually closer to the everyday notion of order, than the one proper definition that we gave (the one defined by the laws) - when most people say that they want to order a given set of objects, they aren't thinking of establishing a *transitive, antisymmetric* and *total* relationship between them, but are rather thinking of criteria of which object comes first, which comes second etc.
In many ways, numbers are the quintesential order - every finite order of objects is isomorphic to a subset of this order, as we can map the first element of any order to the number **1**, the second one to the number **2** etc (and we can do the opposite operation as well) and if we think about it, this isomorphism is actually closer to the everyday notion of order, than the proper definition (the one defined by the laws) - when most people think of order, they aren't thinking of a *transitive, antisymmetric* and *total* relationship, but are rather thinking about criteria based on which they can decide which object comes first, which comes second etc.
![Linear order isomorphisms](linear_order_isomorphism.svg)
From the fact that any finite order of objects is isomorphic to the natural numbers, it follows that all linear orders of the same magnitude are isomorphic to one another.
From the fact that any finite order of objects is isomorphic to the natural numbers it also follows that all linear orders of the same magnitude are isomorphic to one another.
**Question:** If all orders are isomorphic with one another, why do we say that numbers are the quintessential order?
So the linear order is a perfect order (it admits no ambiguities), but it is also, I think that this theorems prove it, the most *boring* order ever, when looked from a category-theoretic viewpoint - all finite linear orders are just isomorphic to the natural numbers (by the way, most infinite orders are isomorphic to the natural numbers as well, with the exception of the ones for which Cantor's diagonal argument applies) and so all their diagrams look the same.
So the linear order is a perfect order, but it is also (and I think that these theorems prove it) the most *boring* order ever, especially when looked from a category-theoretic viewpoint - all finite linear orders are just isomorphic to the natural numbers (by the way, most infinite orders are isomorphic to the natural numbers as well, with the exception of the ones for which Cantor's diagonal argument applies) and so all of their diagrams look in the same way.
![Linear order (general)](general_linear_order.svg)
@ -105,10 +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 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
---
Like linear orders, a partial orders consists of a set plus a relationship, with the only difference that, although it still obeys the reflexive, transitive and the antisymmetric laws, the relationship does not obey the law of totality - 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 that is probably too meta).
So let's revisit the example of the soccer players ranglist. The first version that includes just **m**yself, my **g**randmother and her **f**riend is a linear order.
@ -118,29 +115,31 @@ However, including this **o**ther person whom none of us played yet, makes the h
![Soccer player order - leftover element](player_order_leftover.svg)
Before we said that all linear orders' can be represented by the same chain-like diagram. We can reverse this statement and say that all diagrams that look something different than the said diagram represent partial orders (or preorders). Let's see some examples.
Before, we said that all linear orders can be represented by the same chain-like diagram, we can reverse this statement and say that all diagrams that look something different than the said diagram represent partial orders (or preorders).
Let's see some examples.
Chains
---
A partial order can contain different linearly-ordered subsets, e.g. separate groups of friends who play together and are ranked based on each other, but are not ranked with anyone from other groups.
A partial order can contain diffranked erent linearly-ordered subsets, e.g. in our soccer example, we can have separate groups of friends who play together and are ranked with each other, but not with anyone from other groups.
![Soccer order - two hierarchies](player_order_two.svg)
The different linear orders that make up the partial order are called *chains*. There are two chains in this diagram **M ➞ G ➞ F** and **D ➞ O**.
The chains in an order don't have to be completely disconnected from each other in order for the order to be a partial order, it is just that the connections between them shouldn't be *one-to-one* i.e. when the last element from one chain should not be connected to the first element of the other one (because this would effectively unite them into one chain). But there are other types of connections - *one-to-many* and *many-to-one*.
For example, this set is not linearly ordered.
The chains in an order don't have to be completely disconnected from each other in order for it to be partial, we can have connections as long as they are not all *one-to-one* i.e. when the last element from one chain should not be connected to the first element of the other one (as this would effectively unite them into one chain). But there are other types of connections, like *one-to-many* and *many-to-one*.
![Soccer order - two hierarchies and a join](player_order_two_join.svg)
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.
This set is not lineary-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.
Maximum and minimum
---
As we saw, 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*. And some partial orders do have such element. In our last diagram **M** is the maximum element. In this diagram, the green element is the biggest one.
As we saw, partial orders cannot provide us with a definite answer of the question who is better at who. But that is sometimes OK, as in sports, as well as in other domains, people often don't care about who is better than who - they only care *who is number one*, who is the champion, the player who is better than anyone else, or more generally the element that is bigger than any other element.
We call such elements the *maximum element* and some partial orders do have such 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)
@ -148,24 +147,28 @@ Sometimes we have more than one elements that are bigger than all other elements
![A diagram with no maximum element](non_maximal_element.svg)
A partial order may also have a minimum (smallest) element, which is defined in the same way.
In addition to the maximum element, a partial order may also have a minimum (smallest) element, which is defined in the same way.
Joins
---
Give two elements, their *least upper bound*) is called the *join* of these elements, e.g. the green element is a join of the other two.
The *least upper bound* of two elements that are connected as part of an order is called the *join* of these elements, e.g. the green element is a join of the other two.
![Join](join.svg)
Formally the join of **A** and **B** is defined as the smallest element **C** that is bigger than both **A** and **B** (i.e.for which **A ≤ C**, and **B ≤ C**. There can be multiple elements bigger than **A** and **B** (all elements that are bigger than **C** are also bigger than **A** and **B**), but only one of them is a join.
There can be multiple elements bigger than **A** and **B** (all elements that are bigger than **C** are also bigger than **A** and **B**), but only one of them is a join. Formally, the join of **A** and **B** is defined as the smallest element **C** that is bigger than both **A** and **B** (i.e.for which **A ≤ C**, and **B ≤ C**.
![Join with other elements](join_other_elements.svg)
Given any two elements in which one is bigger than the other (e.g. **A ≤ B**), the join is the bigger element (in this case **B**). In a totally ordered set, the *join* of any subset of elements is just their the *maximum* element. 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).
Given any two elements in which one is bigger than the other (e.g. **A ≤ B**), the join is the bigger element (in this case **B**).
In a totally ordered set, the *join* of any subset of elements is just their the *maximum* element.
Like with the maximum 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 of those elements is established as bigger than another, it immediately qualifies.
![A join diagram](non_join_fix.svg)
@ -183,48 +186,94 @@ The same rules as for the joins apply.
Interlude: Hasse diagrams
---
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 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, 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 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.
This arrangement 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.
Examples of partial orders and the inclusion order
Examples of partial orders
===
We all know many examples of total orders (any form of chart or ranking is a total order), but there are probably not so many obvious examples of partial orders. So let's cook some.
We all know many examples of total orders (any form of chart or ranking is a total order), but there are probably not so many obvious examples of partial orders that we can think of off the top of our head. So let's cook some. In addition to providing a little context, this will help us understand joins and see why are they significant.
Color order
---
Let's revisit our color-mixing monoid and create a color-mixing partial order
To stay true to our form, let's revisit our color-mixing monoid and create a color-mixing partial order in which all colors point to colors that contain them.
![A color mixing poset](color_mixing_poset.svg)
If you go through it, you will notice that the join of any two colors is the color that they make up. Nice, right?
![Join in a color mixing poset](color_mixing_poset_join.svg)
Numbers by division
---
When we order numbers by "bigger or equal to", they form a total order (*the* total order even). But numbers can also form a partial order, for example if we order them by the relationship of which divides which, like if **A** divides **B**, then A is before B e.g. because **2 * 5 = 10** **2** and **5** come before **10** (but **3**, for example does not).
![Divides poset](divides_poset.svg)
An it so happens (actually for very good reason) that the join operation again corresponds to an operation that is rellevant in the context of the objects - the join of two numbers in this partial order is their *least common multiple*.
Meanwhile, the *meet* (the opposite of join) of two numbers is their *greatest common divisor*.
![Divides poset](divides_poset_meet.svg)
Inclusion order
---
Given any sets of elements, we can define what is called the inclusion order, in which
Given a collection of all possible sets containing a combination of a given set of elements (like for example our colourful balls)...
![A color mixing poset, ordered by inclusion](color_mixing_poset_inclusion_subsets.svg)
We can define what is called the *inclusion order* of those sets, in which **A** comes before **B** if **A** *includes* **B**, or (to use the term from) chapter 1, if **B** is a *subset* of **A**.
![A color mixing poset, ordered by inclusion](color_mixing_poset_inclusion.svg)
Note that the *join* operation in an inclusion order is the set union, and the *meet* operation as set intersection.
This diagram might remind you of something, because if we take the colors that are in each of its set and mix it into one color, we get the color-blending poset that we saw earlier.
![A color mixing poset, ordered by inclusion](color_mixing_poset_blend.svg)
The poset example with the the number dividers is also isomorphic to an inclusion order. It is the inclusion order of all possible sets of *prime* numbers, including repeating ones. This is confirmed by the fundamental theory of arithmetic, which states that every number can be written as a product of primes in exactly one way.
![Divides poset](divides_poset_inclusion.svg)
And, to be more precise, the isomorphism between the number poset and the prime inclusion order is comprised of (as any other isomorphism) one function from the prime inclusion order, to the number poset (which in this case is just the *multiplication* of all the elements in the set) and one function from the number poset to the prime inclusion order (which is an operation called *prime factorization* of a number, consisting (unsurprisingly) of finding the set of prime numbers that result in that number when multiplied with one another (as we said, this set is unique, and hence these functions realy do comprise an isomorphism)).
![Divides poset](divides_poset_isomorphism.svg)
Birkoff's representation theorem
---
So far we saw two partial orders of different elements (one based on color mixing, and one based on number division) which can be represented by the inclusion orders of all possible combinations of sets of more basic elements (the primary colors in the first case, and the prime numbers (or prime powers) in the second one). Many other partial orders can be defined in this way. Which ones exactly is a question that is answered by an amazing result called *Birkoff's representation theorem* in which the author proved that they are the partial orders that meet the following two criteria:
1. All elements have *joins* and *meets* (those orders are called *lattices*, by the way)
2. Those two operations are *distribute* over one another (we will see what that means shortly)
I won't go into details about this, I would only mention that the "prime" elements with which we can construct the inclusion order are the ones that are not the join of any other elements.
By the way, the partial orders that are *NOT* distributive lattices are also isomorphic to inclusion orders, it is just that they are isomorphic to inclusion orders that do not contain all possible combinations of elements.
Preorder
===
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**).
As interesting partial orders are, I like to leave them aside for a sec just so I can return back to them, like in an old romance novel.
First off , I like us to cover one more kind of order (or something like it). In the previous section, 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**).
| **Total order** | reflexive | transitive | antisymmetric | total | Either **a ≤ b** or **b ≤ a**
| **Partial order** | reflexive | transitive | antisymmetric | ~~total~~ | Either **a ≤ b** or **b ≤ a** or they are unrelated.
| **Preorder** | reflexive | transitive | ~~antisymmetric~~ | ~~total~~ | Both **a ≤ b** and **b ≤ a** are possible.
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.
This results in something called a preorder which is not exactly an order, as I hinted at the beginning - 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)
@ -232,7 +281,7 @@ Preorders have just one law - transitivity **a ≤ b and b ≤ c ➞ a ≤ c** (
![preorder in sport](preorder_sports.svg)
And as a result of 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 (they are called *equivalence classes*, by the way).
And as a result of 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. Using this effect, 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 (they are called *equivalence classes*, by the way).
![preorder](preorder_equivalence.svg)
@ -240,7 +289,6 @@ All of that structure arizes naturally from the simple law of transitivity.
![Transitivity](transitivity.svg)
Orders as categories
===
@ -254,7 +302,7 @@ What about that other law that was required in order to be a category - the iden
![Reflexivity](reflexivity.svg)
So it's official - preoders are categories. And since partial orders and total orders are preorders too (as they obey those two laws), they are categories as well.
So it's official - preoders are categories (sounds kinda obvious, especially after we also saw that orders can be reduced to sets and functions (the inclusion order) and sets and functions form a category at their own right). And since partial orders and total orders are preorders too (as they obey those two laws), they are categories as well.
Starting to compare the categories of preorders, and partial and linear orders to other categories, like the (quintessential) category of sets, immediately sets them apart. In other categories there can be *many different morphisms (arrows)* between two objects and in orders can have *at most one morphism*. That is, for two objects **a** **b** we either we have **a ≤ b** or we do not.
@ -267,25 +315,65 @@ That is in the contrast with the category of sets where there are potentially in
Products and sums
---
While we are rehashing diagrams from the previous chapters, let's look at the diagram defining the *sum* of two objects in a category.
While we are rehashing diagrams from the previous chapters, let's look at the diagram defining the *sum* of two objects in a category.
![Joins as coproduct](coproduct_join.svg)
If you recall, this is an operation that corresponds to *set inclusion* in the category of sets.
![Joins as coproduct](coproduct_inclusion.svg)
But wait, wasn't there something else that corresponded to set inclusion - oh yes, the *join* operation in orders. And not merely that, but orders are defined in the exact same way as the categorical coproducts.
In category theory, an object **G** is the coproduct of objects **Y** and **B** if the following two conditions are met:
1. We have a morphism from any of the elements of the coproduct to the coproduct, so **Y → G** and **B → G**.
2. For any other object **P** that also has those morphisms, so for any **P** such that **P ≤ G** and **P ≤ B**, we would have morphism **G → P**.
If you recall
![Joins as coproduct](coproduct_morphisms.svg)
In the realm of orders, we say that **G** is the *join* of objects **Y** and **B** if:
The set inclusion order
1. It is bigger than both of these objects, so **Y ≤ G** and **P ≤ G**.
2. It is smaller than any other object that is bigger than them, so for any other object *P** such that **P ≤ G** and **P ≤ B** then we should also have **G ≤ P**.
![Joins as coproduct](coproduct_join_morphisms.svg)
We can see that the two definitions and the diagrams are the same, so in category theory language, we can say that the *categorical coproduct* in the category of orders is the *join* operation.
Logic
===
Do some sets form some kind of order as established by the functions between them?
So here we go with this little *leit motif* of mine where I begin talking about something completely different and then it turns out that it is all connected. This time I will not merely transport you to a different branch of mathematics, I will talk about an entirely different discipline, namely *logic*. Or, to be more precise, intuitionistic logic. This discipline may seem to you as detached from what we have been talking about as it possibly can, but it is actually as close as it can - I don't even have to start another chapter for it (althought it will make this one a bit lenghty).
Logic aims to it study of the *rules* by which knowing one thing leads you to conclude that some other thing is true, and most importantly, to do that in the *formal way* i.e. without considering what these things are.
Not only that, but logicians try to organize those rules in what are called *systems*,
of *formal systems* - containing selections of rules and also of rules for applying those rules (rules of inference) selected so they have the expressive ability to prove everything that you can see by intuition.
What does "prove" mean in this context? Simple, when we are able, using the rules of a given logical system to transform one set of assertions **A** to another one **B** we say that we have proven that **A → B** in that logical system.
![Balls](balls.svg)
And
---
So let's say I know a given fact, does not matter what it is or how exactly I learned it,
and say that it is an "atomic fact" as Wittgenstein calls it - it is not composed of any "more basic" facts, it is just the simplest thing that you can know.
So let's get our balls again.
Or and And relations
---
False
Lattices
---
The poset N+ under the divisibility ordering is a lattice!
Indeed, it turns out that the meet operation corresponds
to greatest common divisor and the join operation corresponds to least common multiple.
Logic
===
Lattices and trees
---

View File

@ -0,0 +1,506 @@
<?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 277"
version="1.1"
id="svg3397"
sodipodi:docname="color_mixing_poset_blend.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)"
width="595.29999"
height="277">
<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="1395"
id="namedview3399"
showgrid="false"
inkscape:zoom="1.6510641"
inkscape:cx="432.23908"
inkscape:cy="-18.417588"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="false" />
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0"
transform="matrix(0.01616228,-0.44527477,0.62278585,-0.0088893,28.931107,258.63471)"
inkscape:transform-center-x="-29.882022"
inkscape:transform-center-y="11.097153">
<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.00741837,-0.44550623,0.62144331,-0.04182639,158.94199,267.93906)"
inkscape:transform-center-x="-24.22401"
inkscape:transform-center-y="144.21212">
<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.00621262,-0.44552469,0.62155424,-0.04014434,276.85747,267.90222)">
<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.30760368,-0.322352,0.42830429,-0.45221308,205.84668,319.46222)"
inkscape:transform-center-x="270.92136"
inkscape:transform-center-y="-102.2952">
<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.38070678,-0.23263086,-0.29303556,-0.54062526,199.60774,303.90792)">
<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
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-3"
transform="matrix(-0.30760368,-0.322352,0.42830429,-0.45221308,328.60621,314.95167)"
inkscape:transform-center-x="-35.034367"
inkscape:transform-center-y="41.445506">
<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="g2760-9-8-7-4-3"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,119.35989,-333.97224)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6"
style="fill:#ececec;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="fill:#ececec;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:#ececec;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:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-6"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,243.15854,-330.70748)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-9"
style="fill:#ececec;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-1"
style="opacity:0.13;fill:#ececec;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-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-7"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,359.91108,-328.27607)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-0"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-93"
style="fill:#ececec;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:#ececec;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-0"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-62"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,126.75089,-479.5601)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-6"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-1"
style="fill:#ececec;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-8"
style="opacity:0.13;fill:#ececec;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-7"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-6-9"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,250.54953,-476.29534)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-2-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-9-0"
style="fill:#ececec;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-1-2"
style="opacity:0.13;fill:#ececec;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-2-3"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-7-7"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,367.30207,-473.86393)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-0-5"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-93-9"
style="fill:#ececec;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-2"
style="opacity:0.13;fill:#ececec;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-0-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g5769-8"
transform="translate(125.81972,117.99116)">
<circle
cx="56.307613"
cy="92.667412"
r="24.6"
id="circle3369-9"
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-7"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5761"
transform="translate(51.646933,121.94548)">
<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
id="g4359"
transform="translate(154.20233,145.68509)">
<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-8-3"
transform="translate(114.19865,-29.193859)">
<circle
cx="56.307613"
cy="92.667412"
r="24.6"
id="circle3369-9-6"
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-7-1"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5761-2"
transform="translate(-45.48469,-23.175754)">
<circle
cx="250.16379"
cy="90.603348"
r="24.6"
id="circle3365-9"
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-3"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5761-1"
transform="translate(44.246579,-27.85103)">
<circle
cx="250.16379"
cy="90.603348"
r="24.6"
id="circle3365-94"
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-7"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g4359-8"
transform="translate(62.400995,-1.6831244)">
<circle
cx="271.79999"
cy="72.099998"
r="24.6"
id="circle3367-4"
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-5"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5769-8-0"
transform="translate(356.46852,-23.182082)">
<circle
cx="56.307613"
cy="92.667412"
r="24.6"
id="circle3369-9-3"
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-7-6"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g4359-1"
transform="translate(176.44616,1.7740961)">
<circle
cx="271.79999"
cy="72.099998"
r="24.6"
id="circle3367-0"
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-6"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<path
id="circle3385-3-6"
style="fill:#f58235;fill-opacity:1;stroke-width:6;stroke-miterlimit:10"
d="m 186.4314,36.778711 a 24.6,24.6 0 0 0 -16.37109,23.18164 24.6,24.6 0 0 0 8.9043,18.943359 24.6,24.6 0 0 0 16.37109,-23.18164 24.6,24.6 0 0 0 -8.9043,-18.943359 z" />
<path
id="circle3385-1"
style="fill:#54b948;fill-opacity:1;stroke-width:6;stroke-miterlimit:10"
d="m 311.92569,40.900883 a 24.6,24.6 0 0 0 -13.76367,22.082032 24.6,24.6 0 0 0 6.48633,16.644532 24.6,24.6 0 0 0 13.76172,-22.083985 24.6,24.6 0 0 0 -6.48438,-16.642579 z" />
<path
id="circle3385-3-6-8"
style="fill:#8967ac;fill-opacity:1;stroke-width:6;stroke-miterlimit:10"
d="m 428.30807,42.532851 a 24.6,24.6 0 0 0 -16.37109,23.18164 24.6,24.6 0 0 0 8.9043,18.943359 24.6,24.6 0 0 0 16.37109,-23.18164 24.6,24.6 0 0 0 -8.9043,-18.943359 z" />
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,383 @@
<?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 277"
version="1.1"
id="svg3397"
sodipodi:docname="color_mixing_poset_inclusion_subsets.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)"
width="595.29999"
height="277">
<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="1395"
id="namedview3399"
showgrid="false"
inkscape:zoom="1.6510641"
inkscape:cx="382.87697"
inkscape:cy="17.014107"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="false" />
<g
id="g2760-9-8-7-4-3"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,60.6099,-360.62172)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6"
style="fill:#ececec;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="fill:#ececec;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:#ececec;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:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-6"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,83.867329,-467.5889)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-9"
style="fill:#ececec;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-1"
style="opacity:0.13;fill:#ececec;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-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-7"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,329.62758,-332.51576)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-0"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-93"
style="fill:#ececec;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:#ececec;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-0"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-62"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,426.55754,-408.69671)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-6"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-1"
style="fill:#ececec;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-8"
style="opacity:0.13;fill:#ececec;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-7"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-6-9"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,188.77119,-379.99381)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-2-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-9-0"
style="fill:#ececec;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-1-2"
style="opacity:0.13;fill:#ececec;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-2-3"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-7-7"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,291.59332,-481.73764)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-0-5"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-93-9"
style="fill:#ececec;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-2"
style="opacity:0.13;fill:#ececec;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-0-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g5769-8"
transform="translate(67.06973,91.34168)">
<circle
cx="56.307613"
cy="92.667412"
r="24.6"
id="circle3369-9"
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-7"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5761"
transform="translate(-107.64428,-14.935941)">
<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
id="g4359"
transform="translate(123.91883,141.4454)">
<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-8-3"
transform="translate(414.06845,40.761027)">
<circle
cx="56.307613"
cy="92.667412"
r="24.6"
id="circle3369-9-6"
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-7-1"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5761-2"
transform="translate(258.32196,47.687637)">
<circle
cx="250.16379"
cy="90.603348"
r="24.6"
id="circle3365-9"
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-3"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5761-1"
transform="translate(-12.383566,69.056171)">
<circle
cx="250.16379"
cy="90.603348"
r="24.6"
id="circle3365-94"
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-7"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g4359-8"
transform="translate(-1.1943591,94.921241)">
<circle
cx="271.79999"
cy="72.099998"
r="24.6"
id="circle3367-4"
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-5"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g5769-8-0"
transform="translate(284.69663,-33.781307)">
<circle
cx="56.307613"
cy="92.667412"
r="24.6"
id="circle3369-9-3"
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-7-6"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g4359-1"
transform="translate(99.52607,-2.465594)">
<circle
cx="271.79999"
cy="72.099998"
r="24.6"
id="circle3367-0"
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-6"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,144 @@
<?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_join.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)">
<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="1251"
inkscape:window-height="1174"
id="namedview3399"
showgrid="false"
inkscape:zoom="1.6510641"
inkscape:cx="294.80344"
inkscape:cy="99.344656"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="0"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="false" />
<g
id="g5765"
transform="translate(-75.44222,-48.213425)">
<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-7"
transform="matrix(-0.00466973,-0.28043808,0.39118727,-0.02632895,181.00285,165.17153)"
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
id="g5761"
transform="translate(23.727814,45.279533)">
<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,287.80339,194.76511)"
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(79.36901,64.270046)">
<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>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -0,0 +1,247 @@
<?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 277"
version="1.1"
id="svg3397"
sodipodi:docname="coproduct_inclusion.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)"
width="595.29999"
height="277">
<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="1251"
inkscape:window-height="1174"
id="namedview3399"
showgrid="false"
inkscape:zoom="1.6510641"
inkscape:cx="382.87697"
inkscape:cy="17.014107"
inkscape:window-x="213"
inkscape:window-y="72"
inkscape:window-maximized="0"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="false" />
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-3"
transform="matrix(0.25094129,-0.36818379,0.53174414,0.32432917,60.870709,139.76465)"
inkscape:transform-center-x="33.20576"
inkscape:transform-center-y="42.932172">
<path
style="stroke-width:16.0981"
inkscape:connector-curvature="0"
id="path1478-7-9-0-6"
d="m 302.29352,230.06312 c 5.40712,-1.32231 10.95511,-2.39951 16.60443,-3.35095 -3.2388,-3.84701 -6.75694,-7.60194 -10.55462,-11.26612 -2.09552,5.1081 -3.49039,9.15375 -6.04981,14.61707 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="g2760-9-8-7-4-3-6"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,132.80031,-344.15851)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-9"
style="fill:#ececec;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-1"
style="opacity:0.13;fill:#ececec;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-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-6-9"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,250.54953,-476.29534)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-2-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-9-0"
style="fill:#ececec;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-1-2"
style="opacity:0.13;fill:#ececec;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-2-3"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g5761"
transform="translate(-58.711298,108.49445)">
<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
id="g5761-1"
transform="translate(49.394774,-27.24536)">
<circle
cx="250.16379"
cy="90.603348"
r="24.6"
id="circle3365-94"
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-7"
style="stroke-width:6;stroke-miterlimit:10" />
</g>
<g
id="g4359-8"
transform="translate(60.583981,-1.3802893)">
<circle
cx="271.79999"
cy="72.099998"
r="24.6"
id="circle3367-4"
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-5"
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-4"
transform="matrix(-0.25094129,-0.36818379,-0.53174414,0.32432917,556.56442,136.28255)"
inkscape:transform-center-x="-33.205756"
inkscape:transform-center-y="42.932172">
<path
style="stroke-width:16.0981"
inkscape:connector-curvature="0"
id="path1478-7-9-0-6-8"
d="m 302.29352,230.06312 c 5.40712,-1.32231 10.95511,-2.39951 16.60443,-3.35095 -3.2388,-3.84701 -6.75694,-7.60194 -10.55462,-11.26612 -2.09552,5.1081 -3.49039,9.15375 -6.04981,14.61707 z" />
<path
style="fill:none;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-31-0-1"
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="g2760-9-8-7-4-3-7"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,369.91108,-338.27607)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-0"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-93"
style="fill:#ececec;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:#ececec;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-0"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g4359"
transform="translate(164.20233,135.68509)">
<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>
</svg>

After

Width:  |  Height:  |  Size: 8.5 KiB

View File

@ -0,0 +1,147 @@
<?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="coproduct_join.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)"
width="595.29999"
height="177">
<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="1251"
inkscape:window-height="1174"
id="namedview3399"
showgrid="false"
inkscape:zoom="1.1674786"
inkscape:cx="315.51034"
inkscape:cy="144.42193"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="0"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="false" />
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-3"
transform="matrix(0.15386835,-0.23450343,0.33825711,0.19824939,161.03647,97.287959)"
inkscape:transform-center-x="20.424576"
inkscape:transform-center-y="27.387938">
<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="g5761"
transform="translate(-2.958156,42.264939)">
<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-4"
transform="matrix(-0.15386835,-0.23450343,-0.33825711,0.19824939,456.41588,97.242679)"
inkscape:transform-center-x="-20.424578"
inkscape:transform-center-y="27.387938">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-0-6-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-4"
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(108.49994,59.255449)">
<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="g5765"
transform="translate(-34.889271,-42.230121)">
<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>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -0,0 +1,279 @@
<?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 340"
version="1.1"
id="svg3397"
sodipodi:docname="coproduct_join_morphisms.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)"
width="595.29999"
height="340">
<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="1395"
id="namedview3399"
showgrid="false"
inkscape:zoom="2.3349572"
inkscape:cx="298.6579"
inkscape:cy="144.42193"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="false" />
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-3"
transform="matrix(0.15386835,-0.23450343,0.33825711,0.19824939,143.62697,235.32918)"
inkscape:transform-center-x="20.424576"
inkscape:transform-center-y="27.387938">
<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="g5761"
transform="translate(-20.367652,180.30616)">
<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-4"
transform="matrix(-0.15386835,-0.23450343,-0.33825711,0.19824939,439.00638,235.2839)"
inkscape:transform-center-x="-20.424578"
inkscape:transform-center-y="27.387938">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-0-6-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-4"
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(91.090449,197.29667)">
<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
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-3-2"
transform="matrix(0.15386835,-0.23450343,0.33825711,0.19824939,212.84237,154.34858)"
inkscape:transform-center-x="20.424576"
inkscape:transform-center-y="27.387938">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-0-6-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-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-31-0-8"
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="g5765-7-0"
transform="translate(60.56658,-50.095425)"
style="fill:#2b1100;stroke:#501616">
<g
id="g2634-4"
transform="translate(18.844028,-5.5675538)"
style="fill:#2b1100;stroke:#501616">
<circle
cx="351.04132"
cy="94.997795"
r="24.6"
id="circle3375-5-4"
style="opacity:0.13;fill:#2b1100;stroke:#501616;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#54b948"
stroke="#00873a"
cx="346.11038"
cy="89.982834"
r="24.6"
id="circle3389-0-5"
style="fill:#2b1100;stroke:#501616;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-4-3-2-9"
transform="matrix(0.15386835,-0.23450343,0.33825711,0.19824939,278.0813,85.687633)"
inkscape:transform-center-x="20.424576"
inkscape:transform-center-y="27.387938">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-0-6-1-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:none;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-31-0-8-5"
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="g5765-7"
transform="translate(-4.8864791,18.137235)"
style="fill:#a02c2c;stroke:#501616">
<g
id="g2634"
transform="translate(18.844028,-5.5675538)"
style="fill:#a02c2c;stroke:#501616">
<circle
cx="351.04132"
cy="94.997795"
r="24.6"
id="circle3375-5"
style="opacity:0.13;fill:#a02c2c;stroke:#501616;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#54b948"
stroke="#00873a"
cx="346.11038"
cy="89.982834"
r="24.6"
id="circle3389-0"
style="fill:#a02c2c;stroke:#501616;stroke-width:6;stroke-miterlimit:10" />
</g>
</g>
<g
id="g5765-7-5"
transform="translate(-78.909171,14.000041)"
style="fill:#784421;stroke:#502d16">
<g
id="g2634-6"
transform="translate(18.844028,-5.5675538)"
style="fill:#784421;stroke:#502d16">
<circle
cx="351.04132"
cy="94.997795"
r="24.6"
id="circle3375-5-3"
style="opacity:0.13;fill:#784421;stroke:#502d16;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#54b948"
stroke="#00873a"
cx="346.11038"
cy="89.982834"
r="24.6"
id="circle3389-0-2"
style="fill:#784421;stroke:#502d16;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-4-3-2-6"
transform="matrix(0.04845633,-0.2762595,-0.38226058,-0.08716387,360.44237,237.30231)"
inkscape:transform-center-x="2.4206212"
inkscape:transform-center-y="33.94524">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-0-6-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="fill:none;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-31-0-8-9"
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="g5765"
transform="translate(-52.298767,95.8111)">
<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>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@ -0,0 +1,612 @@
<?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 340"
version="1.1"
id="svg3397"
sodipodi:docname="divides_poset.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)"
width="595.29999"
height="340">
<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="1251"
inkscape:window-height="1075"
id="namedview3399"
showgrid="false"
inkscape:zoom="1.6510641"
inkscape:cx="277.54184"
inkscape:cy="117.51476"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="0"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="false" />
<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,210.68068,252.38801)"
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-4"
transform="matrix(-0.19363093,-0.20291473,0.26960977,-0.28465992,169.34294,279.36987)"
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
id="g2760-913-7"
transform="matrix(0.91911078,0,-2.1217656e-8,0.91911078,183.16615,50.161169)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-8-4"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-74-1"
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-9-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="40.927269"
y="95.920502"
id="text2753-3-5"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-13-8"
x="40.927269"
y="95.920502"
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">6</tspan></text>
</g>
<g
id="g2760-913-0-6-8"
transform="matrix(0.91911078,0,-2.1217656e-8,0.91911078,251.60686,49.555502)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-8-6-8-6"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-74-0-5-7"
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-9-4-3-1"
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="40.927269"
y="95.920502"
id="text2753-3-0-7-8"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-13-5-6-4"
x="40.927269"
y="95.920502"
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">9</tspan></text>
</g>
<g
id="g2760-91-7"
transform="matrix(0.91911078,0,0,0.91911078,395.13446,134.96686)">
<g
id="g2749-7-5"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-8"
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-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="40.927269"
y="95.920502"
id="text2753-1-2"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1-5"
x="40.927269"
y="95.920502"
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">7</tspan></text>
</g>
<g
id="g2760-8-1"
transform="matrix(0.91911078,0,0,0.91911078,322.26753,133.67789)">
<g
id="g2749-79"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-3"
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-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="40.927269"
y="95.920502"
id="text2753-8"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-4"
x="40.927269"
y="95.920502"
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">5</tspan></text>
</g>
<g
id="g2760-91-7-0"
transform="matrix(0.91911078,0,0,0.91911078,42.650708,-32.81562)">
<g
id="g2749-7-5-7"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-8-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-4-4-7"
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="40.927269"
y="95.920502"
id="text2753-1-2-6"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1-5-8"
x="40.927269"
y="95.920502"
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">8</tspan></text>
</g>
<g
id="g2760-91-7-0-2"
transform="matrix(0.91911078,0,0,0.91911078,325.4986,50.766841)">
<g
id="g2749-7-5-7-3"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-8-0-9"
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-4-7-0"
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="31.258129"
y="95.920502"
id="text2753-1-2-6-3"
transform="scale(1.0222841,0.97820166)"><tspan
sodipodi:role="line"
id="tspan2751-1-5-8-8"
x="31.258129"
y="95.920502"
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">10</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-49"
transform="matrix(-0.19363093,-0.20291473,0.26960977,-0.28465992,245.96229,282.86326)"
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-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-31-1"
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-4-0"
transform="matrix(-0.19363093,-0.20291473,0.26960977,-0.28465992,107.26386,199.2808)"
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-37"
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-4"
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="g2760-913"
transform="matrix(0.91911078,0,0,0.91911078,106.81862,49.756331)">
<g
id="g2749-8"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-74"
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-9"
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="40.927269"
y="95.920502"
id="text2753-3"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-13"
x="40.927269"
y="95.920502"
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">4</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-3"
transform="matrix(-0.00466973,-0.28043808,0.39118727,-0.02632895,142.11749,251.24368)"
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-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-8"
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="g11113-1"
transform="translate(400.0536,327.56527)">
<path
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:5.30425;stroke-miterlimit:10"
inkscape:connector-curvature="0"
id="path1478-7-9-7-2"
d="m 16.485411,-93.259532 c 1.57346,-0.01656 3.157535,-0.137531 4.754749,-0.314805 -0.438487,1.735387 -0.960845,3.46279 -1.566976,5.182724 -1.109072,-1.702907 -1.917441,-3.076513 -3.187773,-4.867919 z" />
<path
style="display:inline;fill:none;stroke:#838383;stroke-width:3.00231;stroke-miterlimit:10;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-7-8"
d="m -86.854548,-35.460124 c 24.497242,-4.90701 82.9792733,-31.419497 105.339955,-55.799409"
sodipodi:nodetypes="cc" />
</g>
<g
id="g11113-1-3"
transform="translate(327.3732,236.71477)">
<path
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:5.30425;stroke-miterlimit:10"
inkscape:connector-curvature="0"
id="path1478-7-9-7-2-9"
d="m 16.485411,-93.259532 c 1.57346,-0.01656 3.157535,-0.137531 4.754749,-0.314805 -0.438487,1.735387 -0.960845,3.46279 -1.566976,5.182724 -1.109072,-1.702907 -1.917441,-3.076513 -3.187773,-4.867919 z" />
<path
style="display:inline;fill:none;stroke:#838383;stroke-width:3.00231;stroke-miterlimit:10;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-7-8-9"
d="m -86.854548,-35.460124 c 24.497242,-4.90701 82.9792733,-31.419497 105.339955,-55.799409"
sodipodi:nodetypes="cc" />
</g>
<g
id="g2760-9"
transform="matrix(0.91911078,0,0,0.91911078,178.78677,132.68583)">
<g
id="g2749-4"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-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"
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="40.927269"
y="95.920502"
id="text2753-2"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-5"
x="40.927269"
y="95.920502"
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">2</tspan></text>
</g>
<g
id="g2760-91"
transform="matrix(0.91911078,0,-2.1217656e-8,0.91911078,252.32263,134.36119)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-7"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7"
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"
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="40.927269"
y="95.920502"
id="text2753-1"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1"
x="40.927269"
y="95.920502"
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">3</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-49-9"
transform="matrix(-0.19363093,-0.20291473,0.26960977,-0.28465992,242.93394,364.02304)"
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-8-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-31-1-4"
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-7-06"
transform="matrix(-0.00466973,-0.28043808,0.39118727,-0.02632895,212.37521,336.64315)"
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-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-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-46"
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-49-9-9"
transform="matrix(0.19363093,-0.20291473,-0.26960977,-0.28465992,351.83399,364.62871)"
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-8-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:none;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-31-1-4-4"
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="g2760"
transform="matrix(0.91911078,0,0,0.91911078,252.47195,210.12379)">
<g
id="g2749"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33"
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"
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="40.927269"
y="95.920502"
id="text2753"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751"
x="40.927269"
y="95.920502"
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">1</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-5"
transform="matrix(-0.00466973,-0.28043808,0.39118727,-0.02632895,284.44994,253.06069)"
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-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"
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>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,631 @@
<?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 340"
version="1.1"
id="svg3397"
sodipodi:docname="divides_poset_inclusion.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)"
width="595.29999"
height="340">
<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="1251"
inkscape:window-height="1075"
id="namedview3399"
showgrid="false"
inkscape:zoom="1.6510641"
inkscape:cx="345.37688"
inkscape:cy="76.998326"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="0"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="false" />
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0"
transform="matrix(0.01616228,-0.44527476,0.62278583,-0.0088893,15.36988,287.10067)"
inkscape:transform-center-x="-29.882022"
inkscape:transform-center-y="11.097153">
<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-39"
transform="matrix(-0.00741837,-0.44550622,0.62144329,-0.04182639,145.38076,296.40502)"
inkscape:transform-center-x="-24.22401"
inkscape:transform-center-y="144.21212">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-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-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
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-5"
transform="matrix(-0.00621262,-0.44552468,0.62155423,-0.04014434,263.29624,296.36818)">
<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.30760368,-0.32235199,0.42830428,-0.45221306,192.28545,347.92818)"
inkscape:transform-center-x="270.92136"
inkscape:transform-center-y="-102.2952">
<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.38070677,-0.23263085,-0.29303555,-0.54062524,186.04651,332.37388)">
<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="g2760-9-8-7-4-3"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,105.79866,-305.50626)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6"
style="fill:#ececec;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="fill:#ececec;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:#ececec;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:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-6"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,229.59731,-302.24151)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-9"
style="fill:#ececec;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-1"
style="opacity:0.13;fill:#ececec;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-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-7"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,346.34984,-299.81009)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-0"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-93"
style="fill:#ececec;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:#ececec;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-0"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2141"
transform="translate(35.12886,32.100511)">
<g
id="g2749-79"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.91911078,0,0,0.91911078,317.07892,136.97108)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-3"
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-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:26.2342px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.655856"
x="349.30453"
y="227.29501"
id="text2753-8"
transform="scale(1.0222841,0.97820166)"><tspan
sodipodi:role="line"
id="tspan2751-4"
x="349.30453"
y="227.29501"
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.655856">5</tspan></text>
</g>
<g
id="g2760-9-8-7-4-3-62"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,113.18966,-451.09412)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-6"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-1"
style="fill:#ececec;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-8"
style="opacity:0.13;fill:#ececec;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-7"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-6-9"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,236.9883,-447.82936)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-2-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-9-0"
style="fill:#ececec;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-1-2"
style="opacity:0.13;fill:#ececec;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-2-3"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-7-7"
transform="matrix(1.8277692,1.8277692,-1.8277692,1.8277692,353.74083,-445.39795)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-0-5"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-93-9"
style="fill:#ececec;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-2"
style="opacity:0.13;fill:#ececec;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-0-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9"
transform="matrix(0.91911078,0,0,0.91911078,118.21977,160.54665)">
<g
id="g2749-4"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-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"
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="40.927269"
y="95.920502"
id="text2753-2"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-5"
x="40.927269"
y="95.920502"
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">2</tspan></text>
</g>
<g
id="g2760-91"
transform="matrix(0.91911078,0,-2.1217656e-8,0.91911078,238.99789,161.61634)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-7"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7"
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"
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="40.927269"
y="95.920502"
id="text2753-1"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1"
x="40.927269"
y="95.920502"
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">3</tspan></text>
</g>
<g
id="g2760-9-1"
transform="matrix(0.91911078,0,0,0.91911078,110.05802,5.1095811)">
<g
id="g2749-4-4"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-9"
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-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:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="40.927269"
y="95.920502"
id="text2753-2-4"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-5-4"
x="40.927269"
y="95.920502"
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">2</tspan></text>
</g>
<g
id="g2760-91-7"
transform="matrix(0.91911078,0,-2.1217656e-8,0.91911078,142.40832,11.630301)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-7-1"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-7"
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-9"
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="40.927269"
y="95.920502"
id="text2753-1-4"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1-9"
x="40.927269"
y="95.920502"
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">3</tspan></text>
</g>
<g
id="g2141-3"
transform="translate(58.315529,-106.64182)">
<g
id="g2749-79-6"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.91911078,0,0,0.91911078,317.07892,136.97108)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-3-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-8-9"
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:26.2342px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.655856"
x="349.30453"
y="227.29501"
id="text2753-8-1"
transform="scale(1.0222841,0.97820166)"><tspan
sodipodi:role="line"
id="tspan2751-4-8"
x="349.30453"
y="227.29501"
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.655856">5</tspan></text>
</g>
<g
id="g2760-9-9"
transform="matrix(0.91911078,0,0,0.91911078,349.63063,7.5079311)">
<g
id="g2749-4-0"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-1"
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-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="40.927269"
y="95.920502"
id="text2753-2-3"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-5-45"
x="40.927269"
y="95.920502"
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">2</tspan></text>
</g>
<g
id="g2760-91-9"
transform="matrix(0.91911078,0,-2.1217656e-8,0.91911078,225.56305,19.272001)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-7-7"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-2"
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-97"
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="40.927269"
y="95.920502"
id="text2753-1-6"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1-3"
x="40.927269"
y="95.920502"
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">3</tspan></text>
</g>
<g
id="g2760-91-9-0"
transform="matrix(0.91911078,0,-2.1217656e-8,0.91911078,262.50892,7.764268)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-7-7-9"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-2-7"
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-97-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="40.927269"
y="95.920502"
id="text2753-1-6-7"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1-3-9"
x="40.927269"
y="95.920502"
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">3</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,994 @@
<?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 340"
version="1.1"
id="svg3397"
sodipodi:docname="divides_poset_isomorphism.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)"
width="595.29999"
height="340">
<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="1251"
inkscape:window-height="1035"
id="namedview3399"
showgrid="false"
inkscape:zoom="0.82553205"
inkscape:cx="187.05135"
inkscape:cy="263.31597"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="0"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="false" />
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0"
transform="matrix(0.01054248,-0.2904478,0.40623631,-0.00579839,250.86698,254.75562)"
inkscape:transform-center-x="-19.491714"
inkscape:transform-center-y="7.2385487">
<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-39"
transform="matrix(-0.00483892,-0.29059878,0.40536058,-0.02728289,335.67164,260.82475)"
inkscape:transform-center-x="-15.801058"
inkscape:transform-center-y="94.067974">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-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-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
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-5"
transform="matrix(-0.00405242,-0.29061082,0.40543295,-0.02618571,412.5866,260.80072)">
<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.20064648,-0.21026664,0.27937814,-0.29497358,366.26705,294.43273)"
inkscape:transform-center-x="176.719"
inkscape:transform-center-y="-66.726033">
<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.24833081,-0.15174253,-0.19114385,-0.35264386,362.19745,284.28684)">
<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="g2760-9-8-7-4-3"
transform="matrix(1.1922336,1.1922336,-1.1922336,1.1922336,309.85267,-131.79532)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6"
style="fill:#ececec;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="fill:#ececec;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:#ececec;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:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-6"
transform="matrix(1.1922336,1.1922336,-1.1922336,1.1922336,390.60516,-129.66576)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-9"
style="fill:#ececec;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-1"
style="opacity:0.13;fill:#ececec;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-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-7"
transform="matrix(1.1922336,1.1922336,-1.1922336,1.1922336,466.76154,-128.07977)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-0"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-93"
style="fill:#ececec;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:#ececec;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-0"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2141"
transform="matrix(0.65228894,0,0,0.65228894,263.75554,88.42184)">
<g
id="g2749-79"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.91911078,0,0,0.91911078,317.07892,136.97108)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-3"
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-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:26.2342px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.655856"
x="349.30453"
y="227.29501"
id="text2753-8"
transform="scale(1.0222841,0.97820166)"><tspan
sodipodi:role="line"
id="tspan2751-4"
x="349.30453"
y="227.29501"
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.655856">5</tspan></text>
</g>
<g
id="g2760-9-8-7-4-3-62"
transform="matrix(1.1922336,1.1922336,-1.1922336,1.1922336,314.67374,-226.76067)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-6"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-1"
style="fill:#ececec;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-8"
style="opacity:0.13;fill:#ececec;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-7"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-6-9"
transform="matrix(1.1922336,1.1922336,-1.1922336,1.1922336,395.42622,-224.63111)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-2-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-9-0"
style="fill:#ececec;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-1-2"
style="opacity:0.13;fill:#ececec;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-2-3"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9-8-7-4-3-7-7"
transform="matrix(1.1922336,1.1922336,-1.1922336,1.1922336,471.5826,-223.04512)"
style="fill:#ececec;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g2749-4-6-7-6-0-5"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
transform="rotate(-37.328029,178.27377,-57.179395)">
<g
id="g10519-1-93-9"
style="fill:#ececec;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-2"
style="opacity:0.13;fill:#ececec;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-0-2"
style="fill:#ececec;stroke:#666666;stroke-width:2.60276;stroke-miterlimit:4;stroke-dasharray:none"
r="17.200493" />
</g>
</g>
</g>
<g
id="g2760-9"
transform="matrix(0.59952579,0,0,0.59952579,317.95482,172.20583)">
<g
id="g2749-4"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-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"
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="40.927269"
y="95.920502"
id="text2753-2"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-5"
x="40.927269"
y="95.920502"
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">2</tspan></text>
</g>
<g
id="g2760-91"
transform="matrix(0.59952579,0,-1.3840042e-8,0.59952579,396.73705,172.90358)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-7"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7"
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"
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="40.927269"
y="95.920502"
id="text2753-1"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1"
x="40.927269"
y="95.920502"
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">3</tspan></text>
</g>
<g
id="g2760-9-1"
transform="matrix(0.59952579,0,0,0.59952579,312.631,70.815954)">
<g
id="g2749-4-4"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-9"
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-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:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="40.927269"
y="95.920502"
id="text2753-2-4"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-5-4"
x="40.927269"
y="95.920502"
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">2</tspan></text>
</g>
<g
id="g2760-91-7"
transform="matrix(0.59952579,0,-1.3840042e-8,0.59952579,333.73275,75.06935)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-7-1"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-7"
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-9"
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="40.927269"
y="95.920502"
id="text2753-1-4"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1-9"
x="40.927269"
y="95.920502"
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">3</tspan></text>
</g>
<g
id="g2141-3"
transform="matrix(0.65228894,0,0,0.65228894,278.87995,-2.0782491)">
<g
id="g2749-79-6"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.91911078,0,0,0.91911078,317.07892,136.97108)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-3-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-8-9"
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:26.2342px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.655856"
x="349.30453"
y="227.29501"
id="text2753-8-1"
transform="scale(1.0222841,0.97820166)"><tspan
sodipodi:role="line"
id="tspan2751-4-8"
x="349.30453"
y="227.29501"
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.655856">5</tspan></text>
</g>
<g
id="g2760-9-9"
transform="matrix(0.59952579,0,0,0.59952579,468.90157,72.380371)">
<g
id="g2749-4-0"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-1"
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-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="40.927269"
y="95.920502"
id="text2753-2-3"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-5-45"
x="40.927269"
y="95.920502"
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">2</tspan></text>
</g>
<g
id="g2760-91-9"
transform="matrix(0.59952579,0,-1.3840042e-8,0.59952579,387.97366,80.05394)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-7-7"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-2"
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-97"
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="40.927269"
y="95.920502"
id="text2753-1-6"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1-3"
x="40.927269"
y="95.920502"
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">3</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7"
transform="matrix(-0.00552548,-0.33182941,0.46287381,-0.03115383,37.63765,268.88949)"
inkscape:transform-center-x="-18.042933"
inkscape:transform-center-y="107.41449">
<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
id="g2760-913-7"
transform="matrix(1.0875413,0,-2.5105871e-8,1.0875413,5.0809792,29.603818)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-8-4"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-74-1"
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-9-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="40.927269"
y="95.920502"
id="text2753-3-5"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-13-8"
x="40.927269"
y="95.920502"
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">6</tspan></text>
</g>
<g
id="g2760-913-0-6-8"
transform="matrix(1.0875413,0,-2.5105871e-8,1.0875413,86.063709,28.887156)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-8-6-8-6"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-74-0-5-7"
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-9-4-3-1"
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="40.927269"
y="95.920502"
id="text2753-3-0-7-8"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-13-5-6-4"
x="40.927269"
y="95.920502"
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">9</tspan></text>
</g>
<g
id="g2760-91-7-0-2"
transform="matrix(1.0875413,0,0,1.0875413,173.49639,30.320479)">
<g
id="g2749-7-5-7-3"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-8-0-9"
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-4-7-0"
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="31.258129"
y="95.920502"
id="text2753-1-2-6-3"
transform="scale(1.0222841,0.97820166)"><tspan
sodipodi:role="line"
id="tspan2751-1-5-8-8"
x="31.258129"
y="95.920502"
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">10</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-49"
transform="matrix(-0.22911453,-0.24009962,0.31901677,-0.33682492,79.384748,304.94944)"
inkscape:transform-center-x="201.79218"
inkscape:transform-center-y="-76.193229">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-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-31-1"
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-7-3"
transform="matrix(-0.00552548,-0.33182941,0.46287381,-0.03115383,-43.490002,267.53545)"
inkscape:transform-center-x="-18.042933"
inkscape:transform-center-y="107.41448">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-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-8"
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="g11113-1-3"
transform="matrix(1.1832538,0,0,1.1832538,175.71452,250.34407)">
<path
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:5.30425;stroke-miterlimit:10"
inkscape:connector-curvature="0"
id="path1478-7-9-7-2-9"
d="m 16.485411,-93.259532 c 1.57346,-0.01656 3.157535,-0.137531 4.754749,-0.314805 -0.438487,1.735387 -0.960845,3.46279 -1.566976,5.182724 -1.109072,-1.702907 -1.917441,-3.076513 -3.187773,-4.867919 z" />
<path
style="display:inline;fill:none;stroke:#838383;stroke-width:3.00231;stroke-miterlimit:10;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-7-8-9"
d="m -86.854548,-35.460124 c 24.497242,-4.90701 82.9792733,-31.419497 105.339955,-55.799409"
sodipodi:nodetypes="cc" />
</g>
<g
id="g2760-9-97"
transform="matrix(1.0875413,0,0,1.0875413,-0.10093856,127.25143)">
<g
id="g2749-4-9"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-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-6-3"
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="40.927269"
y="95.920502"
id="text2753-2-8"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-5-3"
x="40.927269"
y="95.920502"
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">2</tspan></text>
</g>
<g
id="g2760-91-3"
transform="matrix(1.0875413,0,-2.5105871e-8,1.0875413,86.910647,129.23381)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-7-5"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-20"
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-3"
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="40.927269"
y="95.920502"
id="text2753-1-5"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1-2"
x="40.927269"
y="95.920502"
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">3</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-5"
transform="matrix(-0.00552548,-0.33182941,0.46287381,-0.03115383,124.92541,269.68544)"
inkscape:transform-center-x="-18.042936"
inkscape:transform-center-y="107.41449">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-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="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-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
id="g2760-8-1"
transform="matrix(1.0875413,0,0,1.0875413,169.67321,128.42529)">
<g
id="g2749-79-3"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-3-2"
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-8-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="40.927269"
y="95.920502"
id="text2753-8-17"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-4-86"
x="40.927269"
y="95.920502"
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">5</tspan></text>
</g>
<g
id="g2760-91-9-0"
transform="matrix(0.59952579,0,-1.3840042e-8,0.59952579,411.12011,74.871148)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-7-7-1"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-2-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-4-97-2"
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="40.927269"
y="95.920502"
id="text2753-1-6-2"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1-3-2"
x="40.927269"
y="95.920502"
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">3</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-1"
transform="matrix(0.46214762,0.00919772,0.01980432,0.64584991,283.88091,-63.579885)"
inkscape:transform-center-x="150.83988"
inkscape:transform-center-y="19.233971">
<path
style="fill:#838383;fill-opacity:1;stroke:none;stroke-width:0.862342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 289.85552,239.65089 12.89133,-32.55359 33.88171,24.48863 z"
id="path3233" />
<path
style="fill:none;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-3"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M -378.28445,102.08819 C -281.40667,32.314638 211.13742,27.886047 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:25.1665px;line-height:1.25;font-family:sans-serif;fill:#838383;fill-opacity:1;stroke:none;stroke-width:0.629161"
x="200.18254"
y="54.599842"
id="text3037"><tspan
sodipodi:role="line"
id="tspan3035"
x="200.18254"
y="54.599842"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#838383;fill-opacity:1;stroke-width:0.629161">factorization</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:25.1665px;line-height:1.25;font-family:sans-serif;fill:#838383;fill-opacity:1;stroke:none;stroke-width:0.629161"
x="191.70827"
y="318.8345"
id="text3037-5"><tspan
sodipodi:role="line"
id="tspan3035-3"
x="191.70827"
y="318.8345"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#838383;fill-opacity:1;stroke-width:0.629161">multiplication</tspan></text>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-1-4"
transform="matrix(-0.46214762,-0.00919772,-0.01980432,-0.64584991,292.57145,416.10631)"
inkscape:transform-center-x="-150.83988"
inkscape:transform-center-y="-19.233974">
<path
style="fill:#838383;fill-opacity:1;stroke:none;stroke-width:0.862342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 289.85552,239.65089 12.89133,-32.55359 33.88171,24.48863 z"
id="path3233-1" />
<path
style="fill:none;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-3-0"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M -378.28445,102.08819 C -281.40667,32.314638 211.13742,27.886047 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -0,0 +1,200 @@
<?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 170"
version="1.1"
id="svg3397"
sodipodi:docname="divides_poset_meet.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)"
width="595.29999"
height="170">
<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="1395"
id="namedview3399"
showgrid="false"
inkscape:zoom="1.6510641"
inkscape:cx="277.54184"
inkscape:cy="117.51476"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="false" />
<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,225.21676,171.8339)"
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
id="g2760-913-7"
transform="matrix(0.91911078,0,-2.1217656e-8,0.91911078,197.70223,-30.392942)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-8-4"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-74-1"
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-9-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="40.927269"
y="95.920502"
id="text2753-3-5"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-13-8"
x="40.927269"
y="95.920502"
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">6</tspan></text>
</g>
<g
id="g2760-913-0-6-8"
transform="matrix(0.91911078,0,-2.1217656e-8,0.91911078,266.14294,-30.998609)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-8-6-8-6"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-74-0-5-7"
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-9-4-3-1"
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="40.927269"
y="95.920502"
id="text2753-3-0-7-8"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-13-5-6-4"
x="40.927269"
y="95.920502"
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">9</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-4-49"
transform="matrix(-0.19363093,-0.20291473,0.26960977,-0.28465992,260.49837,202.30915)"
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-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-31-1"
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="g2760-91"
transform="matrix(0.91911078,0,-2.1217656e-8,0.91911078,266.85871,53.807079)"
style="fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10">
<g
id="g2749-7"
style="fill:#cccccc;stroke:#666666"
transform="translate(0.28551449,0.28815136)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7"
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"
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="40.927269"
y="95.920502"
id="text2753-1"
transform="scale(1.0222841,0.97820167)"><tspan
sodipodi:role="line"
id="tspan2751-1"
x="40.927269"
y="95.920502"
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">3</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.7 KiB