Adaptiver GA-Zyklus, Pool-Groessen-Panel, Konfig direkt aus cfg-Dateien

Zyklus/Farm:
- neuer adaptiver Modus: grosse Startpopulation, die je Generation
  schrumpft (Start/Schrumpfung/MinPopulation) und bei Konvergenz stoppt
  (Geduld Generationen ohne Verbesserung >= Schwelle, max MaxGenerationen)
- Zyklus.laden erkennt adaptives Profil am Feld 'Start' (Modus adaptiv),
  sonst klassisch (Abfolge/Anzahl); Farm._LaufStatisch/_LaufAdaptiv
- neue Trunkierungs-Selektion Farm.PopulationBegrenzen
- [Adaptiv]-Profil in zyklus.cfg (dokumentiert)

Entwicklungsgrafik:
- zweites Panel unter dem Verlauf zeigt die Anzahl erzeugter
  Verteilungen im Pool je Schritt (gemeinsame Zeitachse)

Konfiguration:
- platz.cfg entfernt; zyklus.cfg/strafen.cfg werden direkt aus
  $PLATZ_CFG geladen
- neuer Schalter --zyklus-art (Default Adaptiv) waehlt das GA-Profil
- web/main.py analog: direktes Laden, Profil via PLATZ_ZYKLUSART

Doku (README.md, CLAUDE.md) und Tests entsprechend aktualisiert;
Beispiele mit dem Adaptiv-Default neu berechnet.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Michael Stangl
2026-07-11 14:31:59 +02:00
parent 4f87895303
commit 644f61ef6b
23 changed files with 1909 additions and 1607 deletions
+24 -14
View File
@@ -70,18 +70,27 @@ the same layout:
- Output (written back into the same `--indir` directory): `TischePersonen.txt` (table → - Output (written back into the same `--indir` directory): `TischePersonen.txt` (table →
seated people) and `PersonenTische.csv` (person → table, sorted). seated people) and `PersonenTische.csv` (person → table, sorted).
`cfg/platz.cfg` (still located via `$PLATZ_CFG`, independent of `--indir`) only selects the The GA cycle and penalty scheme are read directly from `$PLATZ_CFG/zyklus.cfg` and
GA cycle/penalty config: `$PLATZ_CFG/strafen.cfg` (independent of `--indir`). There is no `platz.cfg` indirection any
- `cfg/zyklus.cfg` — defines the GA run schedule ("Zyklus"): a sequence of actions more — it was removed; `zyklus.cfg`/`strafen.cfg` are loaded straight from `$PLATZ_CFG`, and
(`e`=erzeugen/create, `s`=selektieren/select-best, `S`=random-select, `m`=mutieren/mutate, the GA profile is chosen by the `--zyklus-art <name>` switch (default `Adaptiv`).
`j`=behalten/keep parents, `z`=neue Generation/advance generation) each with a count.
- `cfg/zyklus.cfg` — defines the GA profiles. Two flavours: **static** profiles (`Easy`,
`Simple`) give an explicit sequence of actions (`e`=erzeugen/create, `s`=selektieren/
select-best, `S`=random-select, `m`=mutieren/mutate, `j`=behalten/keep parents, `z`=neue
Generation/advance generation) each with a count (`Abfolge`/`Anzahl`). The **adaptive**
profile (`Adaptiv`, the default) is recognised by a `Start` field and has no fixed action
list: `Zyklus.Modus` becomes `'adaptiv'` and `Farm._LaufAdaptiv()` runs a generation loop
with a shrinking population (`Start`, `Schrumpfung`, `MinPopulation`) and a convergence
stop (`Geduld` generations without an improvement of at least `Schwelle`, capped by
`MaxGenerationen`). Static profiles run via `Farm._LaufStatisch()`.
- `cfg/strafen.cfg` — the penalty ("Strafpunkte") table: cost of splitting a group across - `cfg/strafen.cfg` — the penalty ("Strafpunkte") table: cost of splitting a group across
tables (by group size and number of splits), cost of a lone person, and per-table tables (by group size and number of splits), cost of a lone person, per-table
under-utilization penalties. under-utilization penalties, and (optional `[Abstand]` section) a penalty for the spatial
distance between split-off parts of a group.
`tische.ini`/`bestellung.json`/`TischePersonen.txt`/`PersonenTische.csv` are fixed filenames `tische.ini`/`bestellung.json`/`TischePersonen.txt`/`PersonenTische.csv` are fixed filenames
resolved as `os.path.join(indir, ...)` in `platz.py` — they are no longer configured in resolved as `os.path.join(indir, ...)` in `platz.py`.
`platz.cfg`.
Pass `--tosvg` to additionally write `<indir>/Sitzplatzverteilung.svg` via Pass `--tosvg` to additionally write `<indir>/Sitzplatzverteilung.svg` via
`Sitzplatzverteilung.alsSVG()` (see below). `Sitzplatzverteilung.alsSVG()` (see below).
@@ -139,11 +148,12 @@ Domain-agnostic and reusable in principle:
`XMLConfig` did not; `CSVConfig` (the web CSV adapter) returns the same 5-tuple. `XMLConfig` did not; `CSVConfig` (the web CSV adapter) returns the same 5-tuple.
### Data flow through `platz.py` (`__main__`) ### Data flow through `platz.py` (`__main__`)
1. Parse `--indir` (required) from the command line via `optparse`.
2. Read `platz.cfg` to locate `zyklus.cfg`/`strafen.cfg` (env-var expansion via 1. Parse `--indir` (required) and `--zyklus-art` (default `Adaptiv`) from the command line
`os.path.expandvars`). via `optparse`.
3. Load `Zyklus` (GA schedule), `Strafliste` (penalties), `Tische` (table layout, from 2. Resolve `zyklus.cfg`/`strafen.cfg` directly as `os.path.join($PLATZ_CFG, ...)`.
`<indir>/tische.ini`). 3. Load `Zyklus` (GA profile named by `--zyklus-art`), `Strafliste` (penalties), `Tische`
(table layout, from `<indir>/tische.ini`).
4. Load `<indir>/bestellung.json` via `JSONConfig` → people, groups, VIP group, VIP seat 4. Load `<indir>/bestellung.json` via `JSONConfig` → people, groups, VIP group, VIP seat
map, group names. map, group names.
5. Build a `Farm(Zyklus, Sitzplatzverteilung, Tische=..., Gruppen=..., Strafen=..., 5. Build a `Farm(Zyklus, Sitzplatzverteilung, Tische=..., Gruppen=..., Strafen=...,
+15 -10
View File
@@ -98,18 +98,23 @@ receiving the output files for one run — e.g. `work/test1/` or `work/test2/`:
To run against a different dataset, create a new folder with a `tische.ini` and To run against a different dataset, create a new folder with a `tische.ini` and
`bestellung.json` following the same layout and pass it via `--indir`. `bestellung.json` following the same layout and pass it via `--indir`.
`cfg/platz.cfg` still selects the GA cycle/penalty config (independent of `--indir`): The GA cycle and penalty scheme are read directly from `$PLATZ_CFG/zyklus.cfg` and
`$PLATZ_CFG/strafen.cfg` (independent of `--indir`); there is no longer a `platz.cfg`
indirection. The GA profile is selected with the `--zyklus-art <name>` switch (default:
`Adaptiv`).
```ini `cfg/zyklus.cfg` defines the GA profiles. Two styles exist:
[Config]
Zyklusdatei=$PLATZ_CFG/zyklus.cfg
Zyklusart=Easy
Strafendatei=$PLATZ_CFG/strafen.cfg
```
`cfg/zyklus.cfg` defines the GA run schedule ("Zyklus") as an `Abfolge` (sequence of - **static** profiles (`Easy`, `Simple`) give an explicit `Abfolge` (sequence of actions)
actions) and matching `Anzahl` (counts): `e` create, `s` select best, `S` select randomly, and matching `Anzahl` (counts): `e` create, `s` select best, `S` select randomly, `m`
`m` mutate, `j` keep parents, `z` advance generation. mutate, `j` keep parents, `z` advance generation.
- the **adaptive** profile (`Adaptiv`, the default) has no fixed action list. It is
recognised by a `Start` field and runs a generation loop: a large starting population
that shrinks each generation (`Schrumpfung`, down to `MinPopulation`) and stops once the
best score fails to improve by at least `Schwelle` for `Geduld` generations (or after
`MaxGenerationen`).
Select a different profile per run, e.g. `bin/platz.bat --indir work/test2 --zyklus-art Easy`.
`cfg/strafen.cfg` defines the penalty scheme: cost of splitting a group across tables (by `cfg/strafen.cfg` defines the penalty scheme: cost of splitting a group across tables (by
group size and number of splits), cost of a person sitting alone or without a group-mate at group size and number of splits), cost of a person sitting alone or without a group-mate at
-6
View File
@@ -1,6 +0,0 @@
[Config]
Zyklusdatei=$PLATZ_CFG/zyklus.cfg
Zyklusart=Easy
Strafendatei=$PLATZ_CFG/strafen.cfg
+24
View File
@@ -20,3 +20,27 @@ Anzahl='10,'+'5,x,2,x,x,'*3+'1'
Abfolge='e,s' Abfolge='e,s'
Anzahl='20,1' Anzahl='20,1'
# Adaptives Profil: keine feste Aktionsliste, sondern eine Generationen-
# schleife (siehe Farm._LaufAdaptiv in libs/ga.py). Erkannt wird es am Feld
# 'Start'. Es wird nicht mit harten Zahlen je Aktion gearbeitet, sondern nur
# mit einem Anfangswert und einem Abbruchkriterium:
# Start = Groesse der Startpopulation (viele Verteilungen zu
# Beginn; sie schrumpft dann von Generation zu Generation)
# MutationProLoesung = wie oft jede Loesung je Generation mutiert wird
# Schrumpfung = Faktor (<1), um den die behaltene Population je
# Generation kleiner wird (0.85 = -15 %% pro Generation)
# MinPopulation = untere Schranke, damit die Population nicht auf 1 faellt
# MaxGenerationen = harte Obergrenze der Generationen
# Geduld = nach so vielen Generationen ohne nennenswerte
# Verbesserung wird abgebrochen (dein "nach 3 Zyklen")
# Schwelle = um so viel muss sich der beste Wert mindestens
# verbessern, damit es als Verbesserung zaehlt
[Adaptiv]
Start=40
MutationProLoesung=2
Schrumpfung=0.85
MinPopulation=5
MaxGenerationen=50
Geduld=3
Schwelle=1.0
@@ -3,8 +3,8 @@
<rect width="100%" height="100%" fill="white"/> <rect width="100%" height="100%" fill="white"/>
<polyline points="125.6,353.6 206,286.4" fill="none" stroke="#e6194b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="125.6,353.6 206,286.4" fill="none" stroke="#e6194b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="125.6,380 45.2,286.4" fill="none" stroke="#3cb44b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="125.6,380 45.2,286.4" fill="none" stroke="#3cb44b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="206,125.6 125.6,32" fill="none" stroke="#4363d8" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="206,125.6 125.6,58.4" fill="none" stroke="#4363d8" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="125.6,58.4 45.2,125.6" fill="none" stroke="#f58231" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="125.6,32 45.2,125.6" fill="none" stroke="#f58231" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<circle cx="125.6" cy="366.8" r="35.2" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="125.6" cy="366.8" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="125.6" cy="353.6" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="125.6" cy="353.6" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="125.6" cy="380" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="125.6" cy="380" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
@@ -21,8 +21,8 @@
<circle cx="206" cy="125.6" r="12" fill="white" fill-opacity="0.75"/> <circle cx="206" cy="125.6" r="12" fill="white" fill-opacity="0.75"/>
<text x="206" y="125.6" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text> <text x="206" y="125.6" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
<circle cx="125.6" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="125.6" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="125.6" cy="32" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="125.6" cy="32" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="125.6" cy="58.4" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="125.6" cy="58.4" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="125.6" cy="45.2" r="12" fill="white" fill-opacity="0.75"/> <circle cx="125.6" cy="45.2" r="12" fill="white" fill-opacity="0.75"/>
<text x="125.6" y="45.2" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text> <text x="125.6" y="45.2" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
<circle cx="45.2" cy="125.6" r="35.2" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="45.2" cy="125.6" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

+31 -21
View File
@@ -1,33 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="500" viewBox="0 0 900 500" font-family="sans-serif"> <svg xmlns="http://www.w3.org/2000/svg" width="900" height="650" viewBox="0 0 900 650" font-family="sans-serif">
<rect width="100%" height="100%" fill="white"/> <rect width="100%" height="100%" fill="white"/>
<text x="450" y="30" text-anchor="middle" font-size="16" fill="#333">Entwicklung der Loesungsfindung</text> <text x="450" y="30" text-anchor="middle" font-size="16" fill="#333">Entwicklung der Loesungsfindung</text>
<line x1="60" y1="60" x2="60" y2="440" stroke="#333" stroke-width="1.5"/> <line x1="60" y1="60" x2="60" y2="390.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="440" x2="840" y2="440" stroke="#333" stroke-width="1.5"/> <line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="440.0" x2="840" y2="440.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="444.0" text-anchor="end" font-size="11" fill="#666">-200</text> <text x="52" y="394.0" text-anchor="end" font-size="11" fill="#666">-200</text>
<line x1="60" y1="364.0" x2="840" y2="364.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="324.0" x2="840" y2="324.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="368.0" text-anchor="end" font-size="11" fill="#666">-168</text> <text x="52" y="328.0" text-anchor="end" font-size="11" fill="#666">-168</text>
<line x1="60" y1="288.0" x2="840" y2="288.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="258.0" x2="840" y2="258.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="292.0" text-anchor="end" font-size="11" fill="#666">-136</text> <text x="52" y="262.0" text-anchor="end" font-size="11" fill="#666">-136</text>
<line x1="60" y1="212.0" x2="840" y2="212.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="192.0" x2="840" y2="192.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="216.0" text-anchor="end" font-size="11" fill="#666">-104</text> <text x="52" y="196.0" text-anchor="end" font-size="11" fill="#666">-104</text>
<line x1="60" y1="136.0" x2="840" y2="136.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="126.0" x2="840" y2="126.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="140.0" text-anchor="end" font-size="11" fill="#666">-72</text> <text x="52" y="130.0" text-anchor="end" font-size="11" fill="#666">-72</text>
<line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-40</text> <text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-40</text>
<text x="18" y="250" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 250)">Wertigkeit (hoeher = besser)</text> <text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
<text x="450" y="482" text-anchor="middle" font-size="12" fill="#333">Zyklus-Aktion (Zeit)</text> <polyline points="60.0,163.1 450.0,121.9 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
<text x="60.0" y="456" text-anchor="middle" font-size="10" fill="#999">e</text> <polyline points="60.0,280.0 450.0,142.5 840.0,90.9" fill="none" stroke="#c08a2d" stroke-width="2"/>
<text x="450.0" y="456" text-anchor="middle" font-size="10" fill="#999">s</text> <polyline points="60.0,390.0 450.0,163.1 840.0,121.9" fill="none" stroke="#a03030" stroke-width="2"/>
<text x="840.0" y="456" text-anchor="middle" font-size="10" fill="#999">m</text>
<polyline points="60.0,178.8 450.0,131.2 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
<polyline points="60.0,313.3 450.0,155.0 840.0,95.6" fill="none" stroke="#c08a2d" stroke-width="2"/>
<polyline points="60.0,440.0 450.0,178.8 840.0,131.2" fill="none" stroke="#a03030" stroke-width="2"/>
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/> <line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text> <text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/> <line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
<text x="710" y="92" font-size="11" fill="#333">Durchschnitt</text> <text x="710" y="92" font-size="11" fill="#333">Durchschnitt</text>
<line x1="680" y1="106" x2="704" y2="106" stroke="#a03030" stroke-width="2"/> <line x1="680" y1="106" x2="704" y2="106" stroke="#a03030" stroke-width="2"/>
<text x="710" y="110" font-size="11" fill="#333">schlechteste Loesung</text> <text x="710" y="110" font-size="11" fill="#333">schlechteste Loesung</text>
<text x="450" y="428.0" text-anchor="middle" font-size="13" fill="#333">Anzahl erzeugter Verteilungen im Pool</text>
<line x1="60" y1="440.0" x2="60" y2="590.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="590.0" x2="840" y2="590.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="590.0" x2="840" y2="590.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="594.0" text-anchor="end" font-size="11" fill="#666">0</text>
<line x1="60" y1="540.0" x2="840" y2="540.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="544.0" text-anchor="end" font-size="11" fill="#666">1</text>
<line x1="60" y1="440.0" x2="840" y2="440.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="444.0" text-anchor="end" font-size="11" fill="#666">3</text>
<polyline points="60.0,440.0 450.0,490.0 840.0,490.0" fill="none" stroke="#4060a0" stroke-width="2"/>
<text x="60.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">e</text>
<text x="450.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="840.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="450" y="638" text-anchor="middle" font-size="12" fill="#333">Zyklus-Aktion (Zeit)</text>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

+181 -35
View File
@@ -74,13 +74,30 @@ class Zyklus:
wann sollen Objekte generiert, gekreuzt, mutiert und selektiert werden wann sollen Objekte generiert, gekreuzt, mutiert und selektiert werden
wieviele sind davon jeweils betroffen wieviele sind davon jeweils betroffen
""" """
# adaptive Vorgaben, falls das Profil kein eigenes Feld setzt
AdaptivDefaults = {
'Start': 40, # Groesse der Startpopulation (Anfangswert)
'MutationProLoesung': 2,# wie oft jede Loesung je Generation mutiert wird
'Schrumpfung': 0.85, # Faktor, um den die Population je Generation faellt
'MinPopulation': 5, # untere Schranke der Population
'MaxGenerationen': 50, # harte Obergrenze der Generationen
'Geduld': 3, # Generationen ohne Verbesserung bis zum Abbruch
'Schwelle': 1.0 } # als Verbesserung zaehlende Mindestdifferenz
def __init__(self, Name='default', def __init__(self, Name='default',
Abfolge='e,m,s', Abfolge='e,m,s',
Anzahl='10,10,10'): Anzahl='10,10,10'):
self.Name = Name self.Name = Name
self.Abfolge = Abfolge.split(',') self.Abfolge = Abfolge.split(',')
self.Anzahl = Anzahl.split(',') self.Anzahl = Anzahl.split(',')
# 'statisch' = klassische Abfolge/Anzahl abspielen;
# 'adaptiv' = Generationen-Schleife mit Abbruch bei Konvergenz.
self.Modus = 'statisch'
self.Adaptiv = {}
def __repr__(self): def __repr__(self):
if self.Modus == 'adaptiv':
return( "Zyklus: %s (adaptiv)\n"
" Parameter: %s\n" % ( self.Name, self.Adaptiv ) )
return( "Zyklus: %s\n" return( "Zyklus: %s\n"
" Zyklusabfolge: %s\n" " Zyklusabfolge: %s\n"
" Anzahl : %s\n" " Anzahl : %s\n"
@@ -89,15 +106,26 @@ class Zyklus:
self.Anzahl ) ) self.Anzahl ) )
def laden(self, FileName, ZyklusName): def laden(self, FileName, ZyklusName):
config = configparser.ConfigParser() config = configparser.ConfigParser()
ZyklusPath= os.path.split( FileName ) ZyklusPath= os.path.split( FileName )
ZyklusPath= os.path.join( FileName ) ZyklusPath= os.path.join( FileName )
config.read( ZyklusPath ) config.read( ZyklusPath )
self.Name = ZyklusName self.Name = ZyklusName
# Adaptives Profil, sobald ein 'Start'-Feld vorhanden ist. Dann wird
# die Aktionsabfolge nicht aus der Config gelesen, sondern von der
# Farm generationenweise erzeugt (mit Abbruch bei Konvergenz).
if config.has_option( ZyklusName, 'Start' ):
self.Modus = 'adaptiv'
self.Adaptiv = dict(self.AdaptivDefaults)
for Feld in self.AdaptivDefaults:
if config.has_option( ZyklusName, Feld ):
self.Adaptiv[Feld] = ast.literal_eval(
config.get( ZyklusName, Feld ) )
return
self.Modus = 'statisch'
Abfolge = _StringAusdruck( config.get( ZyklusName, 'Abfolge' )) Abfolge = _StringAusdruck( config.get( ZyklusName, 'Abfolge' ))
Anzahl = _StringAusdruck( config.get( ZyklusName, 'Anzahl' )) Anzahl = _StringAusdruck( config.get( ZyklusName, 'Anzahl' ))
self.Abfolge = Abfolge.split(',') self.Abfolge = Abfolge.split(',')
self.Anzahl = Anzahl.split(',') self.Anzahl = Anzahl.split(',')
pass
class Entwicklung: class Entwicklung:
"""Beobachtungsobjekt: zeichnet den Verlauf der Loesungsfindung auf. """Beobachtungsobjekt: zeichnet den Verlauf der Loesungsfindung auf.
@@ -138,8 +166,14 @@ class Entwicklung:
best, schnitt, schlecht, n)) best, schnitt, schlecht, n))
return r return r
def alsSVG(self, OutputSVG, Breite=900, Hoehe=500, Rand=60): def alsSVG(self, OutputSVG, Breite=900, Hoehe=650, Rand=60, PoolHoehe=150):
"""zeichnet den aufgezeichneten Verlauf als SVG-Liniendiagramm""" """zeichnet den aufgezeichneten Verlauf als SVG-Liniendiagramm
Oberes Panel: Wertigkeit (beste/durchschnittliche/schlechteste
Loesung) ueber die Zyklus-Aktionen. Unteres Panel (PoolHoehe hoch):
Anzahl der erzeugten Verteilungen im Pool je Schritt, auf derselben
Zeitachse. Beide Panels teilen sich die X-Achse.
"""
if not self.Punkte: if not self.Punkte:
raise ValueError("keine Messpunkte aufgezeichnet") raise ValueError("keine Messpunkte aufgezeichnet")
@@ -150,9 +184,20 @@ class Entwicklung:
if WMax == WMin: if WMax == WMin:
WMax = WMin + 1 # flache Linie nicht auf den Rand kleben WMax = WMin + 1 # flache Linie nicht auf den Rand kleben
# Pool-Groessen (N je Messpunkt, Index 5)
NMax = max( p[5] for p in self.Punkte )
if NMax == 0:
NMax = 1
N = len(self.Punkte) N = len(self.Punkte)
PlotBreite = Breite - 2 * Rand PlotBreite = Breite - 2 * Rand
PlotHoehe = Hoehe - 2 * Rand # Oberes Panel (Wertigkeit) reicht von Rand bis kurz vor das
# untere Panel; dazwischen ein kleiner Zwischenraum (Luecke).
Luecke = 50
OberUnten = Hoehe - Rand - PoolHoehe - Luecke # Unterkante oberes Panel
OberHoehe = OberUnten - Rand
UnterOben = OberUnten + Luecke # Oberkante unteres Panel
UnterUnten = Hoehe - Rand # Unterkante unteres Panel
def X(i): def X(i):
if N == 1: if N == 1:
@@ -161,7 +206,11 @@ class Entwicklung:
def Y(wert): def Y(wert):
# hoher (besserer) Wert oben, niedriger unten # hoher (besserer) Wert oben, niedriger unten
return Rand + PlotHoehe * (WMax - wert) / (WMax - WMin) return Rand + OberHoehe * (WMax - wert) / (WMax - WMin)
def YPool(n):
# 0 an der Unterkante des unteren Panels, NMax an der Oberkante
return UnterUnten - (UnterUnten - UnterOben) * n / NMax
def Polyline(Index, Farbe, Beschriftung): def Polyline(Index, Farbe, Beschriftung):
punkte = ' '.join( '%.1f,%.1f' % (X(i), Y(p[Index])) punkte = ' '.join( '%.1f,%.1f' % (X(i), Y(p[Index]))
@@ -181,14 +230,15 @@ class Entwicklung:
'fill="#333">Entwicklung der Loesungsfindung</text>\n' 'fill="#333">Entwicklung der Loesungsfindung</text>\n'
% (Breite // 2) ) % (Breite // 2) )
# --- Oberes Panel: Wertigkeit ---
# Achsen # Achsen
Teile.append( Teile.append(
'<line x1="%d" y1="%d" x2="%d" y2="%d" stroke="#333" ' '<line x1="%d" y1="%d" x2="%d" y2="%.1f" stroke="#333" '
'stroke-width="1.5"/>\n' % (Rand, Rand, Rand, Hoehe - Rand) ) 'stroke-width="1.5"/>\n' % (Rand, Rand, Rand, OberUnten) )
Teile.append( Teile.append(
'<line x1="%d" y1="%d" x2="%d" y2="%d" stroke="#333" ' '<line x1="%d" y1="%.1f" x2="%d" y2="%.1f" stroke="#333" '
'stroke-width="1.5"/>\n' 'stroke-width="1.5"/>\n'
% (Rand, Hoehe - Rand, Breite - Rand, Hoehe - Rand) ) % (Rand, OberUnten, Breite - Rand, OberUnten) )
# Y-Gitter + Beschriftung (5 Linien) # Y-Gitter + Beschriftung (5 Linien)
for k in range(6): for k in range(6):
@@ -201,22 +251,10 @@ class Entwicklung:
'<text x="%d" y="%.1f" text-anchor="end" font-size="11" ' '<text x="%d" y="%.1f" text-anchor="end" font-size="11" '
'fill="#666">%.0f</text>\n' % (Rand - 8, y + 4, wert) ) 'fill="#666">%.0f</text>\n' % (Rand - 8, y + 4, wert) )
Teile.append( Teile.append(
'<text x="18" y="%d" text-anchor="middle" font-size="12" ' '<text x="18" y="%.1f" text-anchor="middle" font-size="12" '
'fill="#333" transform="rotate(-90 18 %d)">Wertigkeit ' 'fill="#333" transform="rotate(-90 18 %.1f)">Wertigkeit '
'(hoeher = besser)</text>\n' % (Hoehe // 2, Hoehe // 2) ) '(hoeher = besser)</text>\n'
Teile.append( % ((Rand + OberUnten) / 2, (Rand + OberUnten) / 2) )
'<text x="%d" y="%d" text-anchor="middle" font-size="12" '
'fill="#333">Zyklus-Aktion (Zeit)</text>\n'
% (Breite // 2, Hoehe - 18) )
# X-Beschriftung: Aktionsbuchstaben (bei wenigen Punkten alle,
# sonst ausgeduennt, damit die Achse lesbar bleibt)
Schritt = max(1, N // 30)
for i, p in enumerate(self.Punkte):
if i % Schritt == 0 or i == N - 1:
Teile.append(
'<text x="%.1f" y="%d" text-anchor="middle" font-size="10" '
'fill="#999">%s</text>\n' % (X(i), Hoehe - Rand + 16, p[1]) )
# die drei Kurven # die drei Kurven
Kurven = [ Kurven = [
@@ -238,6 +276,49 @@ class Entwicklung:
'<text x="%d" y="%d" font-size="11" fill="#333">%s</text>\n' '<text x="%d" y="%d" font-size="11" fill="#333">%s</text>\n'
% (LegX + 30, y + 4, besch) ) % (LegX + 30, y + 4, besch) )
# --- Unteres Panel: Anzahl erzeugter Verteilungen (Pool-Groesse) ---
Teile.append(
'<text x="%d" y="%.1f" text-anchor="middle" font-size="13" '
'fill="#333">Anzahl erzeugter Verteilungen im Pool</text>\n'
% (Breite // 2, UnterOben - 12) )
# Achsen
Teile.append(
'<line x1="%d" y1="%.1f" x2="%d" y2="%.1f" stroke="#333" '
'stroke-width="1.5"/>\n' % (Rand, UnterOben, Rand, UnterUnten) )
Teile.append(
'<line x1="%d" y1="%.1f" x2="%d" y2="%.1f" stroke="#333" '
'stroke-width="1.5"/>\n'
% (Rand, UnterUnten, Breite - Rand, UnterUnten) )
# Y-Gitter + Beschriftung (0, Mitte, Max)
for n in (0, NMax // 2, NMax):
y = YPool(n)
Teile.append(
'<line x1="%d" y1="%.1f" x2="%d" y2="%.1f" stroke="#eee" '
'stroke-width="1"/>\n' % (Rand, y, Breite - Rand, y) )
Teile.append(
'<text x="%d" y="%.1f" text-anchor="end" font-size="11" '
'fill="#666">%d</text>\n' % (Rand - 8, y + 4, n) )
# Poolgroessen-Kurve
punkte = ' '.join( '%.1f,%.1f' % (X(i), YPool(p[5]))
for i, p in enumerate(self.Punkte) )
Teile.append(
'<polyline points="%s" fill="none" stroke="#4060a0" '
'stroke-width="2"/>\n' % punkte )
# X-Beschriftung: Aktionsbuchstaben unter dem unteren Panel (bei
# wenigen Punkten alle, sonst ausgeduennt, damit die Achse lesbar
# bleibt)
Schritt = max(1, N // 30)
for i, p in enumerate(self.Punkte):
if i % Schritt == 0 or i == N - 1:
Teile.append(
'<text x="%.1f" y="%.1f" text-anchor="middle" font-size="10" '
'fill="#999">%s</text>\n' % (X(i), UnterUnten + 16, p[1]) )
Teile.append(
'<text x="%d" y="%d" text-anchor="middle" font-size="12" '
'fill="#333">Zyklus-Aktion (Zeit)</text>\n'
% (Breite // 2, Hoehe - 12) )
Teile.append( '</svg>\n' ) Teile.append( '</svg>\n' )
fout = open( OutputSVG, 'w' ) fout = open( OutputSVG, 'w' )
@@ -261,9 +342,22 @@ class Farm:
self.Zyklus = Zyklus self.Zyklus = Zyklus
self.Klasse = Klasse self.Klasse = Klasse
self.Entwicklung = Entwicklung() self.Entwicklung = Entwicklung()
for Aktion, Zahl in zip(Zyklus.Abfolge,Zyklus.Anzahl): if getattr(Zyklus, 'Modus', 'statisch') == 'adaptiv':
#print 'Aktion:',Aktion self._LaufAdaptiv(Klasse, *Arguments, **keywords)
#print 'Zahl:',Zahl else:
self._LaufStatisch(Klasse, *Arguments, **keywords)
def _Aufzeichnen(self, Aktion):
"""nach einer Aktion den aktuellen Pool-Zustand fuer die
Entwicklungsgrafik erfassen. Der beobachtete Pool ist der, in dem
gerade die Loesungen liegen: PoolNeu, sobald dort etwas gesammelt
wurde, sonst Pool."""
self.Entwicklung.erfassen(
Aktion, self.PoolNeu if self.PoolNeu else self.Pool )
def _LaufStatisch(self, Klasse, *Arguments, **keywords):
"""klassischer Ablauf: die Abfolge/Anzahl aus zyklus.cfg abspielen."""
for Aktion, Zahl in zip(self.Zyklus.Abfolge, self.Zyklus.Anzahl):
self.Position = self.Position + 1 self.Position = self.Position + 1
if Aktion == 'e': if Aktion == 'e':
self.LoesungenErzeugen(int(Zahl), Klasse, *Arguments, **keywords) self.LoesungenErzeugen(int(Zahl), Klasse, *Arguments, **keywords)
@@ -279,11 +373,54 @@ class Farm:
self.NeueGeneration() self.NeueGeneration()
else: else:
pass pass
# nach jeder Aktion den aktuellen Pool-Zustand aufzeichnen. self._Aufzeichnen(Aktion)
# Der beobachtete Pool ist der, in dem gerade die Loesungen
# liegen: PoolNeu, sobald dort etwas gesammelt wurde, sonst Pool. def _LaufAdaptiv(self, Klasse, *Arguments, **keywords):
self.Entwicklung.erfassen( """adaptiver Ablauf: viele Startloesungen, dann Generationen mit
Aktion, self.PoolNeu if self.PoolNeu else self.Pool ) schrumpfender Population; Abbruch, sobald sich die beste Bewertung
ueber 'Geduld' Generationen um weniger als 'Schwelle' verbessert."""
P = self.Zyklus.Adaptiv
Population = max( int(P['Start']), int(P['MinPopulation']) )
# Startpopulation erzeugen (der 'maximale Anfangswert')
self.LoesungenErzeugen(Population, Klasse, *Arguments, **keywords)
self._Aufzeichnen('e')
BesterWert = max(self.Pool).value
OhneVerbesserung = 0
for Gen in range(int(P['MaxGenerationen'])):
self.Position = self.Position + 1
# Mutationskinder erzeugen (in PoolNeu) und die Eltern (Pool)
# dazunehmen, so dass PoolNeu Eltern + Kinder als Kandidaten haelt.
self.LoesungenMutieren( int(P['MutationProLoesung']) )
self._Aufzeichnen('m')
self.LoesungenBehalten() # PoolNeu += Pool
self.NeueGeneration() # Pool = PoolNeu (Kandidaten), PoolNeu leer
self._Aufzeichnen('j')
# Population fuer die naechste Generation schrumpfen (nie unter
# MinPopulation) und den Kandidatenpool auf die besten K trunkieren.
Population = max( int(P['MinPopulation']),
int(Population * float(P['Schrumpfung'])) )
self.PopulationBegrenzen( Population )
self._Aufzeichnen('s')
# Konvergenz pruefen
AktuellBest = max(self.Pool).value
if AktuellBest - BesterWert >= float(P['Schwelle']):
OhneVerbesserung = 0
else:
OhneVerbesserung = OhneVerbesserung + 1
if AktuellBest > BesterWert:
BesterWert = AktuellBest
print("+ Generation %d: bester Wert %.1f, Population %d, "
"ohne Verbesserung %d" % (Gen + 1, AktuellBest, len(self.Pool),
OhneVerbesserung))
if OhneVerbesserung >= int(P['Geduld']):
print("+ Abbruch: %d Generationen ohne nennenswerte "
"Verbesserung" % OhneVerbesserung)
break
def LoesungenErzeugen(self, N, Klasse, *Arguments, **keywords): def LoesungenErzeugen(self, N, Klasse, *Arguments, **keywords):
""" Erzeuge Loesungen""" """ Erzeuge Loesungen"""
for i in range(N): for i in range(N):
@@ -324,6 +461,15 @@ class Farm:
self.PoolNeu.append(L) self.PoolNeu.append(L)
self.Pool.remove(L) self.Pool.remove(L)
#print(self) #print(self)
def PopulationBegrenzen(self, K):
"""Trunkierungs-Selektion: behalte im Pool nur die K besten
Loesungen und verwirf den Rest. Anders als LoesungenAuswaehlen
(das additiv nach PoolNeu verschiebt) veraendert dies den Pool an
Ort und Stelle - fuer die adaptive Generationenschleife, damit die
Population wirklich schrumpft."""
K = max( 0, min( K, len(self.Pool) ) )
self.Pool = sorted( self.Pool, reverse=True )[:K]
print("+ Population auf %d beste begrenzt" % K)
def LoesungenZufaelligAuswaehlen(self, N): def LoesungenZufaelligAuswaehlen(self, N):
"""Selektiere zufaellig Loesungen""" """Selektiere zufaellig Loesungen"""
print("+ zufaellig auswaehlen -"+ repr(N) + "-") print("+ zufaellig auswaehlen -"+ repr(N) + "-")
+13 -13
View File
@@ -11,7 +11,6 @@ __license__ = "Python"
from ga import * from ga import *
from Strukturdaten import * from Strukturdaten import *
import configparser
import optparse import optparse
@@ -42,6 +41,9 @@ if __name__ == '__main__':
help="zusaetzlich eine Entwicklung.svg im --indir Verzeichnis " help="zusaetzlich eine Entwicklung.svg im --indir Verzeichnis "
"erzeugen: Verlauf der Loesungsfindung (Zeitachse nach rechts, " "erzeugen: Verlauf der Loesungsfindung (Zeitachse nach rechts, "
"beste/durchschnittliche/schlechteste Wertigkeit auf der Y-Achse)" ) "beste/durchschnittliche/schlechteste Wertigkeit auf der Y-Achse)" )
parser.add_option( "--zyklus-art", dest="zyklusart", default="Adaptiv",
help="Name des GA-Profils in zyklus.cfg (Vorgabe: Adaptiv). "
"Weitere mitgelieferte Profile: Easy, Simple" )
(options, args) = parser.parse_args() (options, args) = parser.parse_args()
if options.indir is None: if options.indir is None:
@@ -50,18 +52,16 @@ if __name__ == '__main__':
if not os.path.isdir( InDir ): if not os.path.isdir( InDir ):
parser.error( "--indir '%s' ist kein Verzeichnis" % InDir ) parser.error( "--indir '%s' ist kein Verzeichnis" % InDir )
# lade Vorgaben fuer Optimierungszyklus und # zyklus.cfg (GA-Profile) und strafen.cfg (Strafpunkte) direkt aus dem
config = configparser.ConfigParser() # per $PLATZ_CFG bestimmten cfg-Verzeichnis laden. Das GA-Profil waehlt
ConfigPath= os.path.join( os.getenv('PLATZ_CFG'), 'platz.cfg') # der Schalter --zyklus-art (Vorgabe: Adaptiv).
config.read( os.path.expandvars( ConfigPath )) CfgDir = os.getenv('PLATZ_CFG')
if not CfgDir:
Zyklusconfig = os.path.normpath( config.get( 'Config', 'Zyklusdatei' )) parser.error( "Umgebungsvariable PLATZ_CFG ist nicht gesetzt "
Zyklusconfig = os.path.expandvars( Zyklusconfig ) "(bin/setenv aufrufen)" )
Zyklusart = config.get( 'Config', 'Zyklusart' ) Zyklusconfig = os.path.join( CfgDir, 'zyklus.cfg' )
Zyklusart = options.zyklusart
Strafenconfig = os.path.normpath(config.get( 'Config', 'Strafendatei' )) Strafenconfig = os.path.join( CfgDir, 'strafen.cfg' )
Strafenconfig = os.path.expandvars( Strafenconfig )
## print Strafenconfig
# lade Eingabedateien # lade Eingabedateien
Tischconfig = os.path.join( InDir, 'tische.ini' ) Tischconfig = os.path.join( InDir, 'tische.ini' )
+55 -2
View File
@@ -19,7 +19,7 @@ import unittest
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'libs')) sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'libs'))
from Strukturdaten import Gruppe, Gruppen, JSONConfig, Person, Sitzplatzverteilung, Strafliste, Tisch, Tische from Strukturdaten import Gruppe, Gruppen, JSONConfig, Person, Sitzplatzverteilung, Strafliste, Tisch, Tische
from ga import Entwicklung, _StringAusdruck from ga import Entwicklung, Farm, Zyklus, _StringAusdruck
IMAGES_DIR = os.path.join(os.path.dirname(__file__), '..', 'doc', 'images') IMAGES_DIR = os.path.join(os.path.dirname(__file__), '..', 'doc', 'images')
@@ -267,12 +267,65 @@ class TestEntwicklung(unittest.TestCase):
with open(Pfad) as f: with open(Pfad) as f:
svg = f.read() svg = f.read()
self.assertIn( '<svg', svg ) self.assertIn( '<svg', svg )
self.assertEqual( svg.count('<polyline'), 3 ) # best/schnitt/schlecht # 3 Wertigkeitskurven (best/schnitt/schlecht) + 1 Pool-Groessenkurve
self.assertEqual( svg.count('<polyline'), 4 )
# das zweite Panel zeigt die Anzahl erzeugter Verteilungen im Pool
self.assertIn( 'Anzahl erzeugter Verteilungen im Pool', svg )
self.assertIn( 'stroke="#4060a0"', svg ) # Pool-Kurve
def test_leere_entwicklung_wirft_beim_svg(self): def test_leere_entwicklung_wirft_beim_svg(self):
with self.assertRaises(ValueError): with self.assertRaises(ValueError):
Entwicklung().alsSVG( os.path.join(IMAGES_DIR, 'leer.svg') ) Entwicklung().alsSVG( os.path.join(IMAGES_DIR, 'leer.svg') )
class TestAdaptiverZyklus(unittest.TestCase):
"""Der adaptive Zyklus startet mit vielen Loesungen, laesst die
Population schrumpfen und bricht bei Konvergenz ab."""
class _L:
"""minimale GA-Loesung: fester Wert, Mutation aendert nichts (so
konvergiert der beste Wert sofort -> Abbruch nach 'Geduld')."""
def __init__(self, *a, **k):
self.value = -100
def mutieren(self):
return self
def __eq__(self, other):
return self.value == other.value
def __lt__(self, other):
return self.value < other.value
def _zyklus(self, **params):
Z = Zyklus()
Z.Modus = 'adaptiv'
Z.Adaptiv = dict(Zyklus.AdaptivDefaults)
Z.Adaptiv.update(params)
return Z
def test_population_schrumpft_und_bricht_bei_konvergenz_ab(self):
Z = self._zyklus( Start=40, Schrumpfung=0.85, MinPopulation=5,
MaxGenerationen=50, Geduld=3, Schwelle=1.0 )
F = Farm( Z, self._L )
# Pool-Groessen je 's'-Aufzeichnung (Ende jeder Generation)
pop_pro_gen = [ p[5] for p in F.Entwicklung.Punkte if p[1] == 's' ]
# monoton fallend (Population schrumpft) ...
self.assertTrue( all( a >= b for a, b in zip(pop_pro_gen, pop_pro_gen[1:]) ),
"Population muss von Generation zu Generation schrumpfen: %s"
% pop_pro_gen )
self.assertLess( pop_pro_gen[-1], pop_pro_gen[0] )
# ... und da nichts besser wird, nach Geduld(=3) Generationen Abbruch,
# also klar vor MaxGenerationen(=50).
self.assertLessEqual( len(pop_pro_gen), 4 )
def test_population_faellt_nicht_unter_min(self):
Z = self._zyklus( Start=8, Schrumpfung=0.5, MinPopulation=5,
MaxGenerationen=10, Geduld=99, Schwelle=1.0 )
F = Farm( Z, self._L )
pop_pro_gen = [ p[5] for p in F.Entwicklung.Punkte if p[1] == 's' ]
self.assertTrue( all( n >= 5 for n in pop_pro_gen ),
"MinPopulation=5 darf nicht unterschritten werden: %s"
% pop_pro_gen )
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
+7 -15
View File
@@ -51,21 +51,13 @@ app = FastAPI(
version='0.1.0' ) version='0.1.0' )
# ---------------------------------------------------------------- GA-Konfig # ---------------------------------------------------------------- GA-Konfig
# Zyklus und Strafliste einmal beim Start laden (wie in libs/platz.py) # Zyklus und Strafliste einmal beim Start laden (wie in libs/platz.py):
import configparser # zyklus.cfg und strafen.cfg direkt aus dem cfg-Verzeichnis (PLATZ_CFG bzw.
_PlatzCfg = configparser.ConfigParser() # Projekt-cfg). GA-Profil per Umgebungsvariable PLATZ_ZYKLUSART (Vorgabe:
_PlatzCfg.read( os.path.join( CFGDIR, 'platz.cfg' ) ) # Adaptiv).
ZYKLUSDATEI = os.path.expandvars( os.path.normpath( ZYKLUSDATEI = os.path.join( CFGDIR, 'zyklus.cfg' )
_PlatzCfg.get( 'Config', 'Zyklusdatei', STRAFENDATEI = os.path.join( CFGDIR, 'strafen.cfg' )
fallback=os.path.join( CFGDIR, 'zyklus.cfg' ) ) ) ) ZYKLUSART = os.environ.get( 'PLATZ_ZYKLUSART', 'Adaptiv' )
ZYKLUSART = _PlatzCfg.get( 'Config', 'Zyklusart', fallback='Easy' )
STRAFENDATEI = os.path.expandvars( os.path.normpath(
_PlatzCfg.get( 'Config', 'Strafendatei',
fallback=os.path.join( CFGDIR, 'strafen.cfg' ) ) ) )
if not os.path.isfile( ZYKLUSDATEI ):
ZYKLUSDATEI = os.path.join( CFGDIR, 'zyklus.cfg' )
if not os.path.isfile( STRAFENDATEI ):
STRAFENDATEI = os.path.join( CFGDIR, 'strafen.cfg' )
GAZyklus = Zyklus() GAZyklus = Zyklus()
GAZyklus.laden( ZYKLUSDATEI, ZYKLUSART ) GAZyklus.laden( ZYKLUSDATEI, ZYKLUSART )
+42 -36
View File
@@ -1,47 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="500" viewBox="0 0 900 500" font-family="sans-serif"> <svg xmlns="http://www.w3.org/2000/svg" width="900" height="650" viewBox="0 0 900 650" font-family="sans-serif">
<rect width="100%" height="100%" fill="white"/> <rect width="100%" height="100%" fill="white"/>
<text x="450" y="30" text-anchor="middle" font-size="16" fill="#333">Entwicklung der Loesungsfindung</text> <text x="450" y="30" text-anchor="middle" font-size="16" fill="#333">Entwicklung der Loesungsfindung</text>
<line x1="60" y1="60" x2="60" y2="440" stroke="#333" stroke-width="1.5"/> <line x1="60" y1="60" x2="60" y2="390.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="440" x2="840" y2="440" stroke="#333" stroke-width="1.5"/> <line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="440.0" x2="840" y2="440.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="444.0" text-anchor="end" font-size="11" fill="#666">-85</text> <text x="52" y="394.0" text-anchor="end" font-size="11" fill="#666">-177</text>
<line x1="60" y1="364.0" x2="840" y2="364.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="324.0" x2="840" y2="324.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="368.0" text-anchor="end" font-size="11" fill="#666">-77</text> <text x="52" y="328.0" text-anchor="end" font-size="11" fill="#666">-152</text>
<line x1="60" y1="288.0" x2="840" y2="288.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="258.0" x2="840" y2="258.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="292.0" text-anchor="end" font-size="11" fill="#666">-68</text> <text x="52" y="262.0" text-anchor="end" font-size="11" fill="#666">-127</text>
<line x1="60" y1="212.0" x2="840" y2="212.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="192.0" x2="840" y2="192.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="216.0" text-anchor="end" font-size="11" fill="#666">-60</text> <text x="52" y="196.0" text-anchor="end" font-size="11" fill="#666">-101</text>
<line x1="60" y1="136.0" x2="840" y2="136.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="126.0" x2="840" y2="126.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="140.0" text-anchor="end" font-size="11" fill="#666">-51</text> <text x="52" y="130.0" text-anchor="end" font-size="11" fill="#666">-76</text>
<line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-43</text> <text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-51</text>
<text x="18" y="250" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 250)">Wertigkeit (hoeher = besser)</text> <text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
<text x="450" y="482" text-anchor="middle" font-size="12" fill="#333">Zyklus-Aktion (Zeit)</text> <polyline points="60.0,63.4 125.0,60.0 190.0,60.0 255.0,60.0 320.0,60.0 385.0,60.0 450.0,60.0 515.0,60.0 580.0,60.0 645.0,60.0 710.0,60.0 775.0,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
<text x="60.0" y="456" text-anchor="middle" font-size="10" fill="#999">e</text> <polyline points="60.0,116.9 125.0,91.1 190.0,99.7 255.0,71.2 320.0,70.6 385.0,70.8 450.0,65.5 515.0,65.5 580.0,65.5 645.0,62.1 710.0,62.1 775.0,62.1 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
<text x="108.8" y="456" text-anchor="middle" font-size="10" fill="#999">s</text> <polyline points="60.0,390.0 125.0,294.8 190.0,390.0 255.0,80.1 320.0,80.1 385.0,80.1 450.0,68.7 515.0,68.7 580.0,68.7 645.0,63.4 710.0,63.4 775.0,63.4 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
<text x="157.5" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="206.2" y="456" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="255.0" y="456" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="303.8" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="352.5" y="456" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="401.2" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="450.0" y="456" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="498.8" y="456" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="547.5" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="596.2" y="456" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="645.0" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="693.8" y="456" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="742.5" y="456" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="791.2" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="840.0" y="456" text-anchor="middle" font-size="10" fill="#999">s</text>
<polyline points="60.0,96.2 108.8,96.2 157.5,96.2 206.2,60.0 255.0,60.0 303.8,60.0 352.5,60.0 401.2,60.0 450.0,60.0 498.8,60.0 547.5,60.0 596.2,60.0 645.0,60.0 693.8,60.0 742.5,60.0 791.2,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
<polyline points="60.0,260.0 108.8,139.6 157.5,139.6 206.2,110.7 255.0,120.3 303.8,120.3 352.5,74.5 401.2,74.5 450.0,67.2 498.8,69.7 547.5,69.7 596.2,60.0 645.0,60.0 693.8,60.0 742.5,60.0 791.2,60.0 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
<polyline points="60.0,440.0 108.8,186.7 157.5,186.7 206.2,150.5 255.0,186.7 303.8,186.7 352.5,96.2 401.2,96.2 450.0,78.1 498.8,96.2 547.5,96.2 596.2,60.0 645.0,60.0 693.8,60.0 742.5,60.0 791.2,60.0 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/> <line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text> <text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/> <line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
<text x="710" y="92" font-size="11" fill="#333">Durchschnitt</text> <text x="710" y="92" font-size="11" fill="#333">Durchschnitt</text>
<line x1="680" y1="106" x2="704" y2="106" stroke="#a03030" stroke-width="2"/> <line x1="680" y1="106" x2="704" y2="106" stroke="#a03030" stroke-width="2"/>
<text x="710" y="110" font-size="11" fill="#333">schlechteste Loesung</text> <text x="710" y="110" font-size="11" fill="#333">schlechteste Loesung</text>
<text x="450" y="428.0" text-anchor="middle" font-size="13" fill="#333">Anzahl erzeugter Verteilungen im Pool</text>
<line x1="60" y1="440.0" x2="60" y2="590.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="590.0" x2="840" y2="590.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="590.0" x2="840" y2="590.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="594.0" text-anchor="end" font-size="11" fill="#666">0</text>
<line x1="60" y1="515.0" x2="840" y2="515.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="519.0" text-anchor="end" font-size="11" fill="#666">60</text>
<line x1="60" y1="440.0" x2="840" y2="440.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="444.0" text-anchor="end" font-size="11" fill="#666">120</text>
<polyline points="60.0,540.0 125.0,490.0 190.0,440.0 255.0,547.5 320.0,505.0 385.0,462.5 450.0,555.0 515.0,520.0 580.0,485.0 645.0,561.2 710.0,532.5 775.0,503.8 840.0,566.2" fill="none" stroke="#4060a0" stroke-width="2"/>
<text x="60.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">e</text>
<text x="125.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="190.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="255.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="320.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="385.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="450.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="515.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="580.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="645.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="710.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="775.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="840.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="450" y="638" text-anchor="middle" font-size="12" fill="#333">Zyklus-Aktion (Zeit)</text>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

+104 -104
View File
@@ -1,120 +1,120 @@
Aksoy, Rainer, = Hof 1, Tisch 1, Nummer 7 Aksoy, Rainer, = Hof 1, Tisch 15, Nummer 6
Aksoy, Renate, = Hof 1, Tisch 1, Nummer 2 Aksoy, Renate, = Hof 1, Tisch 15, Nummer 4
Aydin, Horst, = Hof 1, Tisch 2, Nummer 8 Aydin, Horst, = Hof 1, Tisch 13, Nummer 7
Aydin, Ursula, = Hof 1, Tisch 2, Nummer 5 Aydin, Ursula, = Hof 1, Tisch 13, Nummer 4
Barth, Hannelore, = Hof 1, Tisch 9, Nummer 8 Barth, Hannelore, = Hof 1, Tisch 10, Nummer 8
Berger, Sergej, = Hof 1, Tisch 4, Nummer 6 Berger, Sergej, = Hof 1, Tisch 3, Nummer 4
Brandt, Andreas, = Hof 1, Tisch 15, Nummer 5 Brandt, Andreas, = Hof 1, Tisch 2, Nummer 6
Brandt, Anja, = Hof 1, Tisch 14, Nummer 2 Brandt, Anja, = Hof 1, Tisch 6, Nummer 4
Brandt, Anton, = Hof 1, Tisch 16, Nummer 14 Brandt, Anton, = Hof 1, Tisch 16, Nummer 14
Brandt, Ben, = Hof 1, Tisch 17, Nummer 7 Brandt, Ben, = Hof 1, Tisch 17, Nummer 5
Brandt, Daniel, = Hof 1, Tisch 11, Nummer 5 Brandt, Daniel, = Hof 1, Tisch 1, Nummer 7
Brandt, Felix, = Hof 1, Tisch 16, Nummer 2 Brandt, Felix, = Hof 1, Tisch 16, Nummer 4
Brandt, Frieda, = Hof 1, Tisch 16, Nummer 11 Brandt, Frieda, = Hof 1, Tisch 16, Nummer 8
Brandt, Greta, = Hof 1, Tisch 16, Nummer 10 Brandt, Greta, = Hof 1, Tisch 16, Nummer 6
Brandt, Helga, = Hof 1, Tisch 1, Nummer 5 Brandt, Helga, = Hof 1, Tisch 1, Nummer 5
Brandt, Julia, = Hof 1, Tisch 1, Nummer 6 Brandt, Julia, = Hof 1, Tisch 1, Nummer 4
Brandt, Kathrin, = Hof 1, Tisch 11, Nummer 4 Brandt, Kathrin, = Hof 1, Tisch 1, Nummer 6
Brandt, Lena, = Hof 1, Tisch 15, Nummer 2 Brandt, Lena, = Hof 1, Tisch 2, Nummer 4
Brandt, Milan, = Hof 1, Tisch 14, Nummer 4 Brandt, Milan, = Hof 1, Tisch 6, Nummer 3
Brandt, Paul, = Hof 1, Tisch 17, Nummer 6 Brandt, Paul, = Hof 1, Tisch 17, Nummer 3
Brandt, Sofia, = Hof 1, Tisch 14, Nummer 6 Brandt, Sofia, = Hof 1, Tisch 6, Nummer 2
Brandt, Theo, = Hof 1, Tisch 15, Nummer 7 Brandt, Theo, = Hof 1, Tisch 2, Nummer 7
Brandt, Werner, = Hof 1, Tisch 1, Nummer 8 Brandt, Werner, = Hof 1, Tisch 1, Nummer 8
Busch, Stefanie, = Hof 1, Tisch 8, Nummer 7 Busch, Stefanie, = Hof 1, Tisch 3, Nummer 2
Demir, Elif, = Hof 1, Tisch 10, Nummer 5 Demir, Elif, = Hof 1, Tisch 9, Nummer 6
Demir, Hannelore, = Hof 1, Tisch 13, Nummer 9 Demir, Hannelore, = Hof 1, Tisch 14, Nummer 9
Demir, Ingrid, = Hof 1, Tisch 13, Nummer 6 Demir, Ingrid, = Hof 1, Tisch 14, Nummer 7
Demir, Monika, = Hof 1, Tisch 13, Nummer 3 Demir, Monika, = Hof 1, Tisch 14, Nummer 4
Dietrich, Jennifer, = Hof 1, Tisch 13, Nummer 8 Dietrich, Jennifer, = Hof 1, Tisch 14, Nummer 8
Dietrich, Nicole, = Hof 1, Tisch 12, Nummer 5 Dietrich, Nicole, = Hof 1, Tisch 13, Nummer 5
Erdem, Erika, = Hof 1, Tisch 14, Nummer 5 Erdem, Erika, = Hof 1, Tisch 15, Nummer 7
Erdem, Gerhard, = Hof 1, Tisch 9, Nummer 2 Erdem, Gerhard, = Hof 1, Tisch 10, Nummer 7
Erdem, Rainer, = Hof 1, Tisch 9, Nummer 5 Erdem, Rainer, = Hof 1, Tisch 10, Nummer 6
Esposito, Christian, = Hof 1, Tisch 12, Nummer 7 Esposito, Christian, = Hof 1, Tisch 13, Nummer 2
Esposito, Gisela, = Hof 1, Tisch 9, Nummer 3 Esposito, Gisela, = Hof 1, Tisch 10, Nummer 4
Esposito, Julia, = Hof 1, Tisch 8, Nummer 6 Esposito, Julia, = Hof 1, Tisch 8, Nummer 3
Fischer, Heinz, = Hof 1, Tisch 15, Nummer 4 Fischer, Heinz, = Hof 1, Tisch 15, Nummer 2
Fischer, Helga, = Hof 1, Tisch 15, Nummer 3 Fischer, Helga, = Hof 1, Tisch 15, Nummer 9
Fischer, Nicole, = Hof 1, Tisch 12, Nummer 8 Fischer, Nicole, = Hof 1, Tisch 13, Nummer 9
Fischer, Sven, = Hof 1, Tisch 10, Nummer 7 Fischer, Sven, = Hof 1, Tisch 9, Nummer 3
Frank, Erika, = Hof 1, Tisch 9, Nummer 6 Frank, Erika, = Hof 1, Tisch 10, Nummer 5
Frank, Nadine, = Hof 1, Tisch 11, Nummer 9 Frank, Nadine, = Hof 1, Tisch 12, Nummer 4
Frank, Timo, = Hof 1, Tisch 10, Nummer 4 Frank, Timo, = Hof 1, Tisch 9, Nummer 8
Frank, Tobias, = Hof 1, Tisch 1, Nummer 4 Frank, Tobias, = Hof 1, Tisch 1, Nummer 10
Franke, Brigitte, = Hof 1, Tisch 9, Nummer 7 Franke, Brigitte, = Hof 1, Tisch 10, Nummer 2
Hansen, Olga, = Hof 1, Tisch 11, Nummer 3 Hansen, Olga, = Hof 1, Tisch 12, Nummer 2
Hansen, Wolfgang, = Hof 1, Tisch 9, Nummer 9 Hansen, Wolfgang, = Hof 1, Tisch 10, Nummer 3
Hoffmann, Lena, = Hof 1, Tisch 12, Nummer 6 Hoffmann, Lena, = Hof 1, Tisch 13, Nummer 6
Horn, Daniel, = Hof 1, Tisch 11, Nummer 6 Horn, Daniel, = Hof 1, Tisch 12, Nummer 7
Horn, Svenja, = Hof 1, Tisch 13, Nummer 4 Horn, Svenja, = Hof 1, Tisch 14, Nummer 5
Klein, Stefan, = Hof 1, Tisch 10, Nummer 8 Klein, Stefan, = Hof 1, Tisch 9, Nummer 5
Koch, Andreas, = Hof 1, Tisch 4, Nummer 4 Koch, Andreas, = Hof 1, Tisch 3, Nummer 5
Koch, Giovanna, = Hof 1, Tisch 8, Nummer 4 Koch, Giovanna, = Hof 1, Tisch 3, Nummer 7
Kovac, Giovanna, = Hof 1, Tisch 4, Nummer 9 Kovac, Giovanna, = Hof 1, Tisch 8, Nummer 4
Kraus, Dennis, = Hof 1, Tisch 12, Nummer 4 Kraus, Dennis, = Hof 1, Tisch 1, Nummer 3
Kraus, Matteo, = Hof 1, Tisch 16, Nummer 6 Kraus, Matteo, = Hof 1, Tisch 16, Nummer 13
Kraus, Melanie, = Hof 1, Tisch 12, Nummer 2 Kraus, Melanie, = Hof 1, Tisch 1, Nummer 9
Kuhn, Leni, = Hof 1, Tisch 16, Nummer 9 Kuhn, Leni, = Hof 1, Tisch 16, Nummer 7
Kuhn, Sarah, = Hof 1, Tisch 2, Nummer 9 Kuhn, Sarah, = Hof 1, Tisch 11, Nummer 2
Kuhn, Stefan, = Hof 1, Tisch 13, Nummer 5 Kuhn, Stefan, = Hof 1, Tisch 14, Nummer 3
Kuhn, Timo, = Hof 1, Tisch 2, Nummer 3 Kuhn, Timo, = Hof 1, Tisch 11, Nummer 7
Lange, Milan, = Hof 1, Tisch 11, Nummer 2 Lange, Milan, = Hof 1, Tisch 12, Nummer 9
Meyer, Anton, = Hof 1, Tisch 17, Nummer 5 Meyer, Anton, = Hof 1, Tisch 17, Nummer 6
Meyer, Christian, = Hof 1, Tisch 13, Nummer 7 Meyer, Christian, = Hof 1, Tisch 14, Nummer 6
Meyer, Ida, = Hof 1, Tisch 17, Nummer 3 Meyer, Ida, = Hof 1, Tisch 17, Nummer 7
Meyer, Marco, = Hof 1, Tisch 15, Nummer 8 Meyer, Marco, = Hof 1, Tisch 11, Nummer 3
Meyer, Mila, = Hof 1, Tisch 16, Nummer 3 Meyer, Mila, = Hof 1, Tisch 16, Nummer 5
Meyer, Sandra, = Hof 1, Tisch 15, Nummer 6 Meyer, Sandra, = Hof 1, Tisch 11, Nummer 4
Meyer, Wolfgang, = Hof 1, Tisch 9, Nummer 4 Meyer, Wolfgang, = Hof 1, Tisch 10, Nummer 9
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 2 Musikverein, Gast, = Hof 1, Tisch 4, Nummer 2
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 3 Musikverein, Gast, = Hof 1, Tisch 4, Nummer 3
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 4
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 5 Musikverein, Gast, = Hof 1, Tisch 4, Nummer 5
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 6
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 7 Musikverein, Gast, = Hof 1, Tisch 4, Nummer 7
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 8 Musikverein, Gast, = Hof 1, Tisch 4, Nummer 8
Musikverein, Gast, = Hof 1, Tisch 4, Nummer 9
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 2 Musikverein, Gast, = Hof 1, Tisch 5, Nummer 2
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 3
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 4
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 5 Musikverein, Gast, = Hof 1, Tisch 5, Nummer 5
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 6 Musikverein, Gast, = Hof 1, Tisch 5, Nummer 6
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 7 Musikverein, Gast, = Hof 1, Tisch 5, Nummer 7
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 8 Musikverein, Gast, = Hof 1, Tisch 5, Nummer 8
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 9 Peters, Melanie, = Hof 1, Tisch 5, Nummer 3
Peters, Melanie, = Hof 1, Tisch 8, Nummer 9 Peters, Yusuf, = Hof 1, Tisch 5, Nummer 4
Peters, Yusuf, = Hof 1, Tisch 8, Nummer 8 Polat, Matthias, = Hof 1, Tisch 13, Nummer 3
Polat, Matthias, = Hof 1, Tisch 12, Nummer 3 Roth, Stefanie, = Hof 1, Tisch 14, Nummer 2
Roth, Stefanie, = Hof 1, Tisch 13, Nummer 2 Schmidt, Dennis, = Hof 1, Tisch 3, Nummer 6
Schmidt, Dennis, = Hof 1, Tisch 8, Nummer 5 Schmitt, Markus, = Hof 1, Tisch 12, Nummer 8
Schmitt, Markus, = Hof 1, Tisch 11, Nummer 7 Schwarz, Elias, = Hof 1, Tisch 16, Nummer 3
Schwarz, Elias, = Hof 1, Tisch 16, Nummer 8 Schwarz, Guenter, = Hof 1, Tisch 15, Nummer 8
Schwarz, Guenter, = Hof 1, Tisch 1, Nummer 13 Schwarz, Liam, = Hof 1, Tisch 16, Nummer 9
Schwarz, Liam, = Hof 1, Tisch 16, Nummer 5 Schwarz, Sarah, = Hof 1, Tisch 12, Nummer 6
Schwarz, Sarah, = Hof 1, Tisch 2, Nummer 2 Schwarz, Yusuf, = Hof 1, Tisch 12, Nummer 3
Schwarz, Yusuf, = Hof 1, Tisch 2, Nummer 4 Simon, Jennifer, = Hof 1, Tisch 9, Nummer 7
Simon, Jennifer, = Hof 1, Tisch 10, Nummer 9 Simon, Patrick, = Hof 1, Tisch 8, Nummer 2
Simon, Patrick, = Hof 1, Tisch 8, Nummer 3 Simon, Stefanie, = Hof 1, Tisch 9, Nummer 2
Simon, Stefanie, = Hof 1, Tisch 10, Nummer 3 Sommer, Daniel, = Hof 1, Tisch 1, Nummer 12
Sommer, Daniel, = Hof 1, Tisch 1, Nummer 10 Sommer, Dennis, = Hof 1, Tisch 11, Nummer 6
Sommer, Dennis, = Hof 1, Tisch 14, Nummer 9 Sommer, Dennis, = Hof 1, Tisch 2, Nummer 2
Sommer, Dennis, = Hof 1, Tisch 3, Nummer 2 Sommer, Dieter, = Hof 1, Tisch 1, Nummer 2
Sommer, Dieter, = Hof 1, Tisch 1, Nummer 3 Sommer, Emil, = Hof 1, Tisch 16, Nummer 12
Sommer, Emil, = Hof 1, Tisch 16, Nummer 13 Sommer, Ida, = Hof 1, Tisch 16, Nummer 10
Sommer, Ida, = Hof 1, Tisch 16, Nummer 7 Sommer, Jennifer, = Hof 1, Tisch 11, Nummer 5
Sommer, Jennifer, = Hof 1, Tisch 3, Nummer 3 Sommer, Lina, = Hof 1, Tisch 2, Nummer 3
Sommer, Lina, = Hof 1, Tisch 14, Nummer 7 Sommer, Max, = Hof 1, Tisch 16, Nummer 2
Sommer, Max, = Hof 1, Tisch 16, Nummer 12 Sommer, Nicole, = Hof 1, Tisch 2, Nummer 5
Sommer, Nicole, = Hof 1, Tisch 14, Nummer 3 Sommer, Renate, = Hof 1, Tisch 1, Nummer 13
Sommer, Renate, = Hof 1, Tisch 1, Nummer 12 Sommer, Theo, = Hof 1, Tisch 16, Nummer 11
Sommer, Theo, = Hof 1, Tisch 16, Nummer 4 Stein, Andreas, = Hof 1, Tisch 9, Nummer 9
Stein, Andreas, = Hof 1, Tisch 10, Nummer 2 Stein, Werner, = Hof 1, Tisch 15, Nummer 3
Stein, Werner, = Hof 1, Tisch 1, Nummer 9 Tran, Heinz, = Hof 1, Tisch 15, Nummer 5
Tran, Heinz, = Hof 1, Tisch 14, Nummer 8
Vogel, Anton, = Hof 1, Tisch 17, Nummer 2 Vogel, Anton, = Hof 1, Tisch 17, Nummer 2
Vogel, Max, = Hof 1, Tisch 17, Nummer 4 Vogel, Max, = Hof 1, Tisch 17, Nummer 4
Vogel, Sandra, = Hof 1, Tisch 2, Nummer 6 Vogel, Sandra, = Hof 1, Tisch 11, Nummer 9
Vogel, Svenja, = Hof 1, Tisch 8, Nummer 2 Vogel, Svenja, = Hof 1, Tisch 3, Nummer 3
Vogel, Yusuf, = Hof 1, Tisch 2, Nummer 7 Vogel, Yusuf, = Hof 1, Tisch 11, Nummer 8
Wagner, Daniel, = Hof 1, Tisch 10, Nummer 6 Wagner, Daniel, = Hof 1, Tisch 9, Nummer 4
Wagner, Timo, = Hof 1, Tisch 12, Nummer 9 Wagner, Timo, = Hof 1, Tisch 13, Nummer 8
Winkler, Sarah, = Hof 1, Tisch 1, Nummer 11 Winkler, Sarah, = Hof 1, Tisch 1, Nummer 11
Yilmaz, Olga, = Hof 1, Tisch 11, Nummer 8 Yilmaz, Olga, = Hof 1, Tisch 12, Nummer 5
1 Aksoy Rainer = Hof 1 Tisch 1 Tisch 15 Nummer 7 Nummer 6
2 Aksoy Renate = Hof 1 Tisch 1 Tisch 15 Nummer 2 Nummer 4
3 Aydin Horst = Hof 1 Tisch 2 Tisch 13 Nummer 8 Nummer 7
4 Aydin Ursula = Hof 1 Tisch 2 Tisch 13 Nummer 5 Nummer 4
5 Barth Hannelore = Hof 1 Tisch 9 Tisch 10 Nummer 8 Nummer 8
6 Berger Sergej = Hof 1 Tisch 4 Tisch 3 Nummer 6 Nummer 4
7 Brandt Andreas = Hof 1 Tisch 15 Tisch 2 Nummer 5 Nummer 6
8 Brandt Anja = Hof 1 Tisch 14 Tisch 6 Nummer 2 Nummer 4
9 Brandt Anton = Hof 1 Tisch 16 Tisch 16 Nummer 14 Nummer 14
10 Brandt Ben = Hof 1 Tisch 17 Tisch 17 Nummer 7 Nummer 5
11 Brandt Daniel = Hof 1 Tisch 11 Tisch 1 Nummer 5 Nummer 7
12 Brandt Felix = Hof 1 Tisch 16 Tisch 16 Nummer 2 Nummer 4
13 Brandt Frieda = Hof 1 Tisch 16 Tisch 16 Nummer 11 Nummer 8
14 Brandt Greta = Hof 1 Tisch 16 Tisch 16 Nummer 10 Nummer 6
15 Brandt Helga = Hof 1 Tisch 1 Tisch 1 Nummer 5 Nummer 5
16 Brandt Julia = Hof 1 Tisch 1 Tisch 1 Nummer 6 Nummer 4
17 Brandt Kathrin = Hof 1 Tisch 11 Tisch 1 Nummer 4 Nummer 6
18 Brandt Lena = Hof 1 Tisch 15 Tisch 2 Nummer 2 Nummer 4
19 Brandt Milan = Hof 1 Tisch 14 Tisch 6 Nummer 4 Nummer 3
20 Brandt Paul = Hof 1 Tisch 17 Tisch 17 Nummer 6 Nummer 3
21 Brandt Sofia = Hof 1 Tisch 14 Tisch 6 Nummer 6 Nummer 2
22 Brandt Theo = Hof 1 Tisch 15 Tisch 2 Nummer 7 Nummer 7
23 Brandt Werner = Hof 1 Tisch 1 Tisch 1 Nummer 8 Nummer 8
24 Busch Stefanie = Hof 1 Tisch 8 Tisch 3 Nummer 7 Nummer 2
25 Demir Elif = Hof 1 Tisch 10 Tisch 9 Nummer 5 Nummer 6
26 Demir Hannelore = Hof 1 Tisch 13 Tisch 14 Nummer 9 Nummer 9
27 Demir Ingrid = Hof 1 Tisch 13 Tisch 14 Nummer 6 Nummer 7
28 Demir Monika = Hof 1 Tisch 13 Tisch 14 Nummer 3 Nummer 4
29 Dietrich Jennifer = Hof 1 Tisch 13 Tisch 14 Nummer 8 Nummer 8
30 Dietrich Nicole = Hof 1 Tisch 12 Tisch 13 Nummer 5 Nummer 5
31 Erdem Erika = Hof 1 Tisch 14 Tisch 15 Nummer 5 Nummer 7
32 Erdem Gerhard = Hof 1 Tisch 9 Tisch 10 Nummer 2 Nummer 7
33 Erdem Rainer = Hof 1 Tisch 9 Tisch 10 Nummer 5 Nummer 6
34 Esposito Christian = Hof 1 Tisch 12 Tisch 13 Nummer 7 Nummer 2
35 Esposito Gisela = Hof 1 Tisch 9 Tisch 10 Nummer 3 Nummer 4
36 Esposito Julia = Hof 1 Tisch 8 Tisch 8 Nummer 6 Nummer 3
37 Fischer Heinz = Hof 1 Tisch 15 Tisch 15 Nummer 4 Nummer 2
38 Fischer Helga = Hof 1 Tisch 15 Tisch 15 Nummer 3 Nummer 9
39 Fischer Nicole = Hof 1 Tisch 12 Tisch 13 Nummer 8 Nummer 9
40 Fischer Sven = Hof 1 Tisch 10 Tisch 9 Nummer 7 Nummer 3
41 Frank Erika = Hof 1 Tisch 9 Tisch 10 Nummer 6 Nummer 5
42 Frank Nadine = Hof 1 Tisch 11 Tisch 12 Nummer 9 Nummer 4
43 Frank Timo = Hof 1 Tisch 10 Tisch 9 Nummer 4 Nummer 8
44 Frank Tobias = Hof 1 Tisch 1 Tisch 1 Nummer 4 Nummer 10
45 Franke Brigitte = Hof 1 Tisch 9 Tisch 10 Nummer 7 Nummer 2
46 Hansen Olga = Hof 1 Tisch 11 Tisch 12 Nummer 3 Nummer 2
47 Hansen Wolfgang = Hof 1 Tisch 9 Tisch 10 Nummer 9 Nummer 3
48 Hoffmann Lena = Hof 1 Tisch 12 Tisch 13 Nummer 6 Nummer 6
49 Horn Daniel = Hof 1 Tisch 11 Tisch 12 Nummer 6 Nummer 7
50 Horn Svenja = Hof 1 Tisch 13 Tisch 14 Nummer 4 Nummer 5
51 Klein Stefan = Hof 1 Tisch 10 Tisch 9 Nummer 8 Nummer 5
52 Koch Andreas = Hof 1 Tisch 4 Tisch 3 Nummer 4 Nummer 5
53 Koch Giovanna = Hof 1 Tisch 8 Tisch 3 Nummer 4 Nummer 7
54 Kovac Giovanna = Hof 1 Tisch 4 Tisch 8 Nummer 9 Nummer 4
55 Kraus Dennis = Hof 1 Tisch 12 Tisch 1 Nummer 4 Nummer 3
56 Kraus Matteo = Hof 1 Tisch 16 Tisch 16 Nummer 6 Nummer 13
57 Kraus Melanie = Hof 1 Tisch 12 Tisch 1 Nummer 2 Nummer 9
58 Kuhn Leni = Hof 1 Tisch 16 Tisch 16 Nummer 9 Nummer 7
59 Kuhn Sarah = Hof 1 Tisch 2 Tisch 11 Nummer 9 Nummer 2
60 Kuhn Stefan = Hof 1 Tisch 13 Tisch 14 Nummer 5 Nummer 3
61 Kuhn Timo = Hof 1 Tisch 2 Tisch 11 Nummer 3 Nummer 7
62 Lange Milan = Hof 1 Tisch 11 Tisch 12 Nummer 2 Nummer 9
63 Meyer Anton = Hof 1 Tisch 17 Tisch 17 Nummer 5 Nummer 6
64 Meyer Christian = Hof 1 Tisch 13 Tisch 14 Nummer 7 Nummer 6
65 Meyer Ida = Hof 1 Tisch 17 Tisch 17 Nummer 3 Nummer 7
66 Meyer Marco = Hof 1 Tisch 15 Tisch 11 Nummer 8 Nummer 3
67 Meyer Mila = Hof 1 Tisch 16 Tisch 16 Nummer 3 Nummer 5
68 Meyer Sandra = Hof 1 Tisch 15 Tisch 11 Nummer 6 Nummer 4
69 Meyer Wolfgang = Hof 1 Tisch 9 Tisch 10 Nummer 4 Nummer 9
70 Musikverein Gast = Hof 1 Tisch 4 Tisch 4 Nummer 2 Nummer 2
71 Musikverein Gast = Hof 1 Tisch 4 Tisch 4 Nummer 3 Nummer 3
72 Musikverein Gast = Hof 1 Tisch 4 Nummer 4
73 Musikverein Gast = Hof 1 Tisch 4 Tisch 4 Nummer 5 Nummer 5
74 Musikverein Gast = Hof 1 Tisch 4 Nummer 6
75 Musikverein Gast = Hof 1 Tisch 4 Tisch 4 Nummer 7 Nummer 7
76 Musikverein Gast = Hof 1 Tisch 4 Tisch 4 Nummer 8 Nummer 8
77 Musikverein Gast = Hof 1 Tisch 4 Nummer 9
78 Musikverein Gast = Hof 1 Tisch 5 Tisch 5 Nummer 2 Nummer 2
Musikverein Gast = Hof 1 Tisch 5 Nummer 3
Musikverein Gast = Hof 1 Tisch 5 Nummer 4
79 Musikverein Gast = Hof 1 Tisch 5 Tisch 5 Nummer 5 Nummer 5
80 Musikverein Gast = Hof 1 Tisch 5 Tisch 5 Nummer 6 Nummer 6
81 Musikverein Gast = Hof 1 Tisch 5 Tisch 5 Nummer 7 Nummer 7
82 Musikverein Gast = Hof 1 Tisch 5 Tisch 5 Nummer 8 Nummer 8
83 Musikverein Peters Gast Melanie = Hof 1 Tisch 5 Tisch 5 Nummer 9 Nummer 3
84 Peters Melanie Yusuf = Hof 1 Tisch 8 Tisch 5 Nummer 9 Nummer 4
85 Peters Polat Yusuf Matthias = Hof 1 Tisch 8 Tisch 13 Nummer 8 Nummer 3
86 Polat Roth Matthias Stefanie = Hof 1 Tisch 12 Tisch 14 Nummer 3 Nummer 2
87 Roth Schmidt Stefanie Dennis = Hof 1 Tisch 13 Tisch 3 Nummer 2 Nummer 6
88 Schmidt Schmitt Dennis Markus = Hof 1 Tisch 8 Tisch 12 Nummer 5 Nummer 8
89 Schmitt Schwarz Markus Elias = Hof 1 Tisch 11 Tisch 16 Nummer 7 Nummer 3
90 Schwarz Elias Guenter = Hof 1 Tisch 16 Tisch 15 Nummer 8 Nummer 8
91 Schwarz Guenter Liam = Hof 1 Tisch 1 Tisch 16 Nummer 13 Nummer 9
92 Schwarz Liam Sarah = Hof 1 Tisch 16 Tisch 12 Nummer 5 Nummer 6
93 Schwarz Sarah Yusuf = Hof 1 Tisch 2 Tisch 12 Nummer 2 Nummer 3
94 Schwarz Simon Yusuf Jennifer = Hof 1 Tisch 2 Tisch 9 Nummer 4 Nummer 7
95 Simon Jennifer Patrick = Hof 1 Tisch 10 Tisch 8 Nummer 9 Nummer 2
96 Simon Patrick Stefanie = Hof 1 Tisch 8 Tisch 9 Nummer 3 Nummer 2
97 Simon Sommer Stefanie Daniel = Hof 1 Tisch 10 Tisch 1 Nummer 3 Nummer 12
98 Sommer Daniel Dennis = Hof 1 Tisch 1 Tisch 11 Nummer 10 Nummer 6
99 Sommer Dennis = Hof 1 Tisch 14 Tisch 2 Nummer 9 Nummer 2
100 Sommer Dennis Dieter = Hof 1 Tisch 3 Tisch 1 Nummer 2 Nummer 2
101 Sommer Dieter Emil = Hof 1 Tisch 1 Tisch 16 Nummer 3 Nummer 12
102 Sommer Emil Ida = Hof 1 Tisch 16 Tisch 16 Nummer 13 Nummer 10
103 Sommer Ida Jennifer = Hof 1 Tisch 16 Tisch 11 Nummer 7 Nummer 5
104 Sommer Jennifer Lina = Hof 1 Tisch 3 Tisch 2 Nummer 3 Nummer 3
105 Sommer Lina Max = Hof 1 Tisch 14 Tisch 16 Nummer 7 Nummer 2
106 Sommer Max Nicole = Hof 1 Tisch 16 Tisch 2 Nummer 12 Nummer 5
107 Sommer Nicole Renate = Hof 1 Tisch 14 Tisch 1 Nummer 3 Nummer 13
108 Sommer Renate Theo = Hof 1 Tisch 1 Tisch 16 Nummer 12 Nummer 11
109 Sommer Stein Theo Andreas = Hof 1 Tisch 16 Tisch 9 Nummer 4 Nummer 9
110 Stein Andreas Werner = Hof 1 Tisch 10 Tisch 15 Nummer 2 Nummer 3
111 Stein Tran Werner Heinz = Hof 1 Tisch 1 Tisch 15 Nummer 9 Nummer 5
Tran Heinz = Hof 1 Tisch 14 Nummer 8
112 Vogel Anton = Hof 1 Tisch 17 Tisch 17 Nummer 2 Nummer 2
113 Vogel Max = Hof 1 Tisch 17 Tisch 17 Nummer 4 Nummer 4
114 Vogel Sandra = Hof 1 Tisch 2 Tisch 11 Nummer 6 Nummer 9
115 Vogel Svenja = Hof 1 Tisch 8 Tisch 3 Nummer 2 Nummer 3
116 Vogel Yusuf = Hof 1 Tisch 2 Tisch 11 Nummer 7 Nummer 8
117 Wagner Daniel = Hof 1 Tisch 10 Tisch 9 Nummer 6 Nummer 4
118 Wagner Timo = Hof 1 Tisch 12 Tisch 13 Nummer 9 Nummer 8
119 Winkler Sarah = Hof 1 Tisch 1 Tisch 1 Nummer 11 Nummer 11
120 Yilmaz Olga = Hof 1 Tisch 11 Tisch 12 Nummer 8 Nummer 5
+111 -111
View File
@@ -1,17 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="995.887" height="667.258" viewBox="0 0 995.887 667.258"> <svg xmlns="http://www.w3.org/2000/svg" width="995.887" height="667.258" viewBox="0 0 995.887 667.258">
<rect width="100%" height="100%" fill="white"/> <rect width="100%" height="100%" fill="white"/>
<polyline points="413.766,249.451 580.101,251.472" fill="none" stroke="#fabed4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="251.472,415.786 251.472,251.472" fill="none" stroke="#3cb44b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="419.154,254.839 261.286,419.851" fill="none" stroke="#469990" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="567.982,254.238 415.786,251.472" fill="none" stroke="#911eb4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<circle cx="744.415" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="744.415" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
<text x="744.415" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">6</text>
<circle cx="87.1573" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="87.1573" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="87.1573" cy="415.786" r="12" fill="white" fill-opacity="0.75"/> <circle cx="87.1573" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
<text x="87.1573" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">7</text> <text x="87.1573" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">7</text>
<circle cx="744.415" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="744.415" cy="216.979" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="774.288" cy="268.718" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="714.543" cy="268.718" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="744.415" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
<text x="744.415" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">6</text>
<circle cx="251.472" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="251.472" cy="381.293" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="281.344" cy="433.033" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="221.6" cy="433.033" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="251.472" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
<text x="251.472" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">8</text>
<circle cx="87.1573" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="87.1573" cy="216.979" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="117.029" cy="234.225" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="117.029" cy="268.718" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="87.1573" cy="285.965" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="57.2852" cy="268.718" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="57.2852" cy="234.225" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="87.1573" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
<text x="87.1573" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">2</text>
<circle cx="251.472" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="251.472" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="251.472" cy="216.979" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="251.472" cy="216.979" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="251.472" cy="285.965" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="281.344" cy="234.225" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="281.344" cy="268.718" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="251.472" cy="285.965" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="221.6" cy="268.718" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="221.6" cy="234.225" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="251.472" cy="251.472" r="12" fill="white" fill-opacity="0.75"/> <circle cx="251.472" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
<text x="251.472" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">3</text> <text x="251.472" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">3</text>
<circle cx="908.73" cy="415.786" r="48.4" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="908.73" cy="415.786" r="48.4" fill="white" stroke="black" stroke-width="1.5"/>
@@ -23,139 +45,117 @@
<circle cx="885.867" cy="402.586" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="885.867" cy="402.586" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="908.73" cy="415.786" r="12" fill="white" fill-opacity="0.75"/> <circle cx="908.73" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
<text x="908.73" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">17</text> <text x="908.73" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">17</text>
<circle cx="580.101" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="580.101" cy="545.608" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="607.069" cy="558.595" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="613.729" cy="587.776" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="595.067" cy="611.178" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="565.135" cy="611.178" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="546.472" cy="587.776" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="553.133" cy="558.595" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="580.101" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
<text x="580.101" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">15</text>
<circle cx="87.1573" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="87.1573" cy="216.979" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="111.548" cy="227.081" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="121.651" cy="251.472" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="111.548" cy="275.862" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="87.1573" cy="285.965" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="62.7669" cy="275.862" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="52.664" cy="251.472" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="62.7669" cy="227.081" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="87.1573" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
<text x="87.1573" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">2</text>
<circle cx="415.786" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="415.786" cy="216.979" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="440.177" cy="227.081" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="450.28" cy="251.472" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="440.177" cy="275.862" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="415.786" cy="285.965" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="391.396" cy="275.862" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="381.293" cy="251.472" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="391.396" cy="227.081" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="415.786" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
<text x="415.786" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">4</text>
<circle cx="580.101" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="580.101" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="580.101" cy="216.979" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="580.101" cy="216.979" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="604.491" cy="227.081" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="607.069" cy="229.966" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="614.594" cy="251.472" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="613.729" cy="259.147" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="604.491" cy="275.862" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="595.067" cy="282.549" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="580.101" cy="285.965" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="565.135" cy="282.549" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="555.711" cy="275.862" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="546.472" cy="259.147" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="545.608" cy="251.472" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="553.133" cy="229.966" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="555.711" cy="227.081" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="580.101" cy="251.472" r="12" fill="white" fill-opacity="0.75"/> <circle cx="580.101" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
<text x="580.101" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">5</text> <text x="580.101" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">5</text>
<circle cx="251.472" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="415.786" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="251.472" cy="381.293" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="415.786" cy="216.979" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="275.862" cy="391.396" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="440.177" cy="227.081" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="285.965" cy="415.786" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="450.28" cy="251.472" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="275.862" cy="440.177" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="440.177" cy="275.862" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="251.472" cy="450.28" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="415.786" cy="285.965" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="227.081" cy="440.177" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="391.396" cy="275.862" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="216.979" cy="415.786" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/> <circle cx="381.293" cy="251.472" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="227.081" cy="391.396" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/> <circle cx="391.396" cy="227.081" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="251.472" cy="415.786" r="12" fill="white" fill-opacity="0.75"/> <circle cx="415.786" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
<text x="251.472" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">8</text> <text x="415.786" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">4</text>
<circle cx="415.786" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="415.786" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="415.786" cy="381.293" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="415.786" cy="381.293" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="440.177" cy="391.396" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="440.177" cy="391.396" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="450.28" cy="415.786" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="450.28" cy="415.786" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="440.177" cy="440.177" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="440.177" cy="440.177" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="415.786" cy="450.28" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="415.786" cy="450.28" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="391.396" cy="440.177" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="391.396" cy="440.177" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="381.293" cy="415.786" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="381.293" cy="415.786" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="391.396" cy="391.396" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="391.396" cy="391.396" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="415.786" cy="415.786" r="12" fill="white" fill-opacity="0.75"/> <circle cx="415.786" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
<text x="415.786" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">9</text> <text x="415.786" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">9</text>
<circle cx="580.101" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="580.101" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="580.101" cy="381.293" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="580.101" cy="381.293" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="604.491" cy="391.396" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="604.491" cy="391.396" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="614.594" cy="415.786" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="614.594" cy="415.786" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="604.491" cy="440.177" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="604.491" cy="440.177" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="580.101" cy="450.28" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="580.101" cy="450.28" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="555.711" cy="440.177" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="555.711" cy="440.177" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="545.608" cy="415.786" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="545.608" cy="415.786" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="555.711" cy="391.396" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="555.711" cy="391.396" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="580.101" cy="415.786" r="12" fill="white" fill-opacity="0.75"/> <circle cx="580.101" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
<text x="580.101" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">10</text> <text x="580.101" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">10</text>
<circle cx="744.415" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="744.415" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="744.415" cy="381.293" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="744.415" cy="381.293" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="768.806" cy="391.396" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="768.806" cy="391.396" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="778.909" cy="415.786" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="778.909" cy="415.786" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="768.806" cy="440.177" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="768.806" cy="440.177" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="744.415" cy="450.28" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="744.415" cy="450.28" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="720.025" cy="440.177" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="720.025" cy="440.177" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="709.922" cy="415.786" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="709.922" cy="415.786" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="720.025" cy="391.396" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="720.025" cy="391.396" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="744.415" cy="415.786" r="12" fill="white" fill-opacity="0.75"/> <circle cx="744.415" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
<text x="744.415" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">11</text> <text x="744.415" y="415.786" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">11</text>
<circle cx="87.1573" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="87.1573" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="87.1573" cy="545.608" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="87.1573" cy="545.608" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="111.548" cy="555.711" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="111.548" cy="555.711" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="121.651" cy="580.101" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="121.651" cy="580.101" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="111.548" cy="604.491" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="111.548" cy="604.491" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="87.1573" cy="614.594" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="87.1573" cy="614.594" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="62.7669" cy="604.491" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="62.7669" cy="604.491" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="52.664" cy="580.101" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="52.664" cy="580.101" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="62.7669" cy="555.711" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="62.7669" cy="555.711" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="87.1573" cy="580.101" r="12" fill="white" fill-opacity="0.75"/> <circle cx="87.1573" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
<text x="87.1573" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">12</text> <text x="87.1573" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">12</text>
<circle cx="251.472" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="251.472" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="251.472" cy="545.608" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="251.472" cy="545.608" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="275.862" cy="555.711" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="275.862" cy="555.711" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="285.965" cy="580.101" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="285.965" cy="580.101" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="275.862" cy="604.491" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="275.862" cy="604.491" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="251.472" cy="614.594" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="251.472" cy="614.594" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="227.081" cy="604.491" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="227.081" cy="604.491" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="216.979" cy="580.101" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="216.979" cy="580.101" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="227.081" cy="555.711" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="227.081" cy="555.711" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="251.472" cy="580.101" r="12" fill="white" fill-opacity="0.75"/> <circle cx="251.472" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
<text x="251.472" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">13</text> <text x="251.472" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">13</text>
<circle cx="415.786" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="415.786" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="415.786" cy="545.608" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="415.786" cy="545.608" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="440.177" cy="555.711" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="440.177" cy="555.711" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="450.28" cy="580.101" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="450.28" cy="580.101" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="440.177" cy="604.491" r="12" fill="#bfef45" stroke="black" stroke-width="1"/> <circle cx="440.177" cy="604.491" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="415.786" cy="614.594" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="415.786" cy="614.594" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="391.396" cy="604.491" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="391.396" cy="604.491" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="381.293" cy="580.101" r="12" fill="#bfef45" stroke="black" stroke-width="1"/> <circle cx="381.293" cy="580.101" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="391.396" cy="555.711" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="391.396" cy="555.711" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="415.786" cy="580.101" r="12" fill="white" fill-opacity="0.75"/> <circle cx="415.786" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
<text x="415.786" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">14</text> <text x="415.786" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">14</text>
<circle cx="580.101" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="580.101" cy="545.608" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="604.491" cy="555.711" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="614.594" cy="580.101" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="604.491" cy="604.491" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="580.101" cy="614.594" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="555.711" cy="604.491" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="545.608" cy="580.101" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="555.711" cy="555.711" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="580.101" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
<text x="580.101" y="580.101" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">15</text>
<circle cx="415.786" cy="87.1573" r="73.0009" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="415.786" cy="87.1573" r="73.0009" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="415.786" cy="36.1564" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="415.786" cy="36.1564" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="441.287" cy="42.9892" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="441.287" cy="42.9892" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="459.954" cy="61.6568" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="459.954" cy="61.6568" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="466.787" cy="87.1573" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="466.787" cy="87.1573" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="459.954" cy="112.658" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="459.954" cy="112.658" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="441.287" cy="131.325" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="441.287" cy="131.325" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="415.786" cy="138.158" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="415.786" cy="138.158" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="390.286" cy="131.325" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="390.286" cy="131.325" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="371.618" cy="112.658" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="371.618" cy="112.658" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="364.785" cy="87.1573" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="364.785" cy="87.1573" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="371.618" cy="61.6568" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="371.618" cy="61.6568" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="390.286" cy="42.9892" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="390.286" cy="42.9892" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="415.786" cy="87.1573" r="12" fill="white" fill-opacity="0.75"/> <circle cx="415.786" cy="87.1573" r="12" fill="white" fill-opacity="0.75"/>
<text x="415.786" y="87.1573" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">1</text> <text x="415.786" y="87.1573" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">1</text>
<circle cx="908.73" cy="251.472" r="77.1573" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="908.73" cy="251.472" r="77.1573" fill="white" stroke="black" stroke-width="1.5"/>

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

+104 -104
View File
@@ -1,154 +1,154 @@
[1] [1]
Renate Aksoy = Hof 1, Tisch 1, Nummer 1 Dieter Sommer = Hof 1, Tisch 1, Nummer 1
Dieter Sommer = Hof 1, Tisch 1, Nummer 2 Dennis Kraus = Hof 1, Tisch 1, Nummer 2
Tobias Frank = Hof 1, Tisch 1, Nummer 3 Julia Brandt = Hof 1, Tisch 1, Nummer 3
Helga Brandt = Hof 1, Tisch 1, Nummer 4 Helga Brandt = Hof 1, Tisch 1, Nummer 4
Julia Brandt = Hof 1, Tisch 1, Nummer 5 Kathrin Brandt = Hof 1, Tisch 1, Nummer 5
Rainer Aksoy = Hof 1, Tisch 1, Nummer 6 Daniel Brandt = Hof 1, Tisch 1, Nummer 6
Werner Brandt = Hof 1, Tisch 1, Nummer 7 Werner Brandt = Hof 1, Tisch 1, Nummer 7
Werner Stein = Hof 1, Tisch 1, Nummer 8 Melanie Kraus = Hof 1, Tisch 1, Nummer 8
Daniel Sommer = Hof 1, Tisch 1, Nummer 9 Tobias Frank = Hof 1, Tisch 1, Nummer 9
Sarah Winkler = Hof 1, Tisch 1, Nummer 10 Sarah Winkler = Hof 1, Tisch 1, Nummer 10
Renate Sommer = Hof 1, Tisch 1, Nummer 11 Daniel Sommer = Hof 1, Tisch 1, Nummer 11
Guenter Schwarz = Hof 1, Tisch 1, Nummer 12 Renate Sommer = Hof 1, Tisch 1, Nummer 12
[2] [2]
Sarah Schwarz = Hof 1, Tisch 2, Nummer 1 Dennis Sommer = Hof 1, Tisch 2, Nummer 1
Timo Kuhn = Hof 1, Tisch 2, Nummer 2 Lina Sommer = Hof 1, Tisch 2, Nummer 2
Yusuf Schwarz = Hof 1, Tisch 2, Nummer 3 Lena Brandt = Hof 1, Tisch 2, Nummer 3
Ursula Aydin = Hof 1, Tisch 2, Nummer 4 Nicole Sommer = Hof 1, Tisch 2, Nummer 4
Sandra Vogel = Hof 1, Tisch 2, Nummer 5 Andreas Brandt = Hof 1, Tisch 2, Nummer 5
Yusuf Vogel = Hof 1, Tisch 2, Nummer 6 Theo Brandt = Hof 1, Tisch 2, Nummer 6
Horst Aydin = Hof 1, Tisch 2, Nummer 7
Sarah Kuhn = Hof 1, Tisch 2, Nummer 8
[3] [3]
Dennis Sommer = Hof 1, Tisch 3, Nummer 1 Stefanie Busch = Hof 1, Tisch 3, Nummer 1
Jennifer Sommer = Hof 1, Tisch 3, Nummer 2 Svenja Vogel = Hof 1, Tisch 3, Nummer 2
Sergej Berger = Hof 1, Tisch 3, Nummer 3
Andreas Koch = Hof 1, Tisch 3, Nummer 4
Dennis Schmidt = Hof 1, Tisch 3, Nummer 5
Giovanna Koch = Hof 1, Tisch 3, Nummer 6
[4] [4]
Gast Musikverein = Hof 1, Tisch 4, Nummer 1 Gast Musikverein = Hof 1, Tisch 4, Nummer 1
Gast Musikverein = Hof 1, Tisch 4, Nummer 2 Gast Musikverein = Hof 1, Tisch 4, Nummer 2
Andreas Koch = Hof 1, Tisch 4, Nummer 3 Gast Musikverein = Hof 1, Tisch 4, Nummer 3
Gast Musikverein = Hof 1, Tisch 4, Nummer 4 Gast Musikverein = Hof 1, Tisch 4, Nummer 4
Sergej Berger = Hof 1, Tisch 4, Nummer 5 Gast Musikverein = Hof 1, Tisch 4, Nummer 5
Gast Musikverein = Hof 1, Tisch 4, Nummer 6 Gast Musikverein = Hof 1, Tisch 4, Nummer 6
Gast Musikverein = Hof 1, Tisch 4, Nummer 7 Gast Musikverein = Hof 1, Tisch 4, Nummer 7
Giovanna Kovac = Hof 1, Tisch 4, Nummer 8 Gast Musikverein = Hof 1, Tisch 4, Nummer 8
[5] [5]
Gast Musikverein = Hof 1, Tisch 5, Nummer 1 Gast Musikverein = Hof 1, Tisch 5, Nummer 1
Gast Musikverein = Hof 1, Tisch 5, Nummer 2 Melanie Peters = Hof 1, Tisch 5, Nummer 2
Gast Musikverein = Hof 1, Tisch 5, Nummer 3 Yusuf Peters = Hof 1, Tisch 5, Nummer 3
Gast Musikverein = Hof 1, Tisch 5, Nummer 4 Gast Musikverein = Hof 1, Tisch 5, Nummer 4
Gast Musikverein = Hof 1, Tisch 5, Nummer 5 Gast Musikverein = Hof 1, Tisch 5, Nummer 5
Gast Musikverein = Hof 1, Tisch 5, Nummer 6 Gast Musikverein = Hof 1, Tisch 5, Nummer 6
Gast Musikverein = Hof 1, Tisch 5, Nummer 7 Gast Musikverein = Hof 1, Tisch 5, Nummer 7
Gast Musikverein = Hof 1, Tisch 5, Nummer 8
[6] [6]
Sofia Brandt = Hof 1, Tisch 6, Nummer 1
Milan Brandt = Hof 1, Tisch 6, Nummer 2
Anja Brandt = Hof 1, Tisch 6, Nummer 3
[7] [7]
[8] [8]
Svenja Vogel = Hof 1, Tisch 8, Nummer 1 Patrick Simon = Hof 1, Tisch 8, Nummer 1
Patrick Simon = Hof 1, Tisch 8, Nummer 2 Julia Esposito = Hof 1, Tisch 8, Nummer 2
Giovanna Koch = Hof 1, Tisch 8, Nummer 3 Giovanna Kovac = Hof 1, Tisch 8, Nummer 3
Dennis Schmidt = Hof 1, Tisch 8, Nummer 4
Julia Esposito = Hof 1, Tisch 8, Nummer 5
Stefanie Busch = Hof 1, Tisch 8, Nummer 6
Yusuf Peters = Hof 1, Tisch 8, Nummer 7
Melanie Peters = Hof 1, Tisch 8, Nummer 8
[9] [9]
Gerhard Erdem = Hof 1, Tisch 9, Nummer 1 Stefanie Simon = Hof 1, Tisch 9, Nummer 1
Gisela Esposito = Hof 1, Tisch 9, Nummer 2 Sven Fischer = Hof 1, Tisch 9, Nummer 2
Wolfgang Meyer = Hof 1, Tisch 9, Nummer 3 Daniel Wagner = Hof 1, Tisch 9, Nummer 3
Rainer Erdem = Hof 1, Tisch 9, Nummer 4 Stefan Klein = Hof 1, Tisch 9, Nummer 4
Erika Frank = Hof 1, Tisch 9, Nummer 5 Elif Demir = Hof 1, Tisch 9, Nummer 5
Brigitte Franke = Hof 1, Tisch 9, Nummer 6 Jennifer Simon = Hof 1, Tisch 9, Nummer 6
Hannelore Barth = Hof 1, Tisch 9, Nummer 7 Timo Frank = Hof 1, Tisch 9, Nummer 7
Wolfgang Hansen = Hof 1, Tisch 9, Nummer 8 Andreas Stein = Hof 1, Tisch 9, Nummer 8
[10] [10]
Andreas Stein = Hof 1, Tisch 10, Nummer 1 Brigitte Franke = Hof 1, Tisch 10, Nummer 1
Stefanie Simon = Hof 1, Tisch 10, Nummer 2 Wolfgang Hansen = Hof 1, Tisch 10, Nummer 2
Timo Frank = Hof 1, Tisch 10, Nummer 3 Gisela Esposito = Hof 1, Tisch 10, Nummer 3
Elif Demir = Hof 1, Tisch 10, Nummer 4 Erika Frank = Hof 1, Tisch 10, Nummer 4
Daniel Wagner = Hof 1, Tisch 10, Nummer 5 Rainer Erdem = Hof 1, Tisch 10, Nummer 5
Sven Fischer = Hof 1, Tisch 10, Nummer 6 Gerhard Erdem = Hof 1, Tisch 10, Nummer 6
Stefan Klein = Hof 1, Tisch 10, Nummer 7 Hannelore Barth = Hof 1, Tisch 10, Nummer 7
Jennifer Simon = Hof 1, Tisch 10, Nummer 8 Wolfgang Meyer = Hof 1, Tisch 10, Nummer 8
[11] [11]
Milan Lange = Hof 1, Tisch 11, Nummer 1 Sarah Kuhn = Hof 1, Tisch 11, Nummer 1
Olga Hansen = Hof 1, Tisch 11, Nummer 2 Marco Meyer = Hof 1, Tisch 11, Nummer 2
Kathrin Brandt = Hof 1, Tisch 11, Nummer 3 Sandra Meyer = Hof 1, Tisch 11, Nummer 3
Daniel Brandt = Hof 1, Tisch 11, Nummer 4 Jennifer Sommer = Hof 1, Tisch 11, Nummer 4
Daniel Horn = Hof 1, Tisch 11, Nummer 5 Dennis Sommer = Hof 1, Tisch 11, Nummer 5
Markus Schmitt = Hof 1, Tisch 11, Nummer 6 Timo Kuhn = Hof 1, Tisch 11, Nummer 6
Olga Yilmaz = Hof 1, Tisch 11, Nummer 7 Yusuf Vogel = Hof 1, Tisch 11, Nummer 7
Nadine Frank = Hof 1, Tisch 11, Nummer 8 Sandra Vogel = Hof 1, Tisch 11, Nummer 8
[12] [12]
Melanie Kraus = Hof 1, Tisch 12, Nummer 1 Olga Hansen = Hof 1, Tisch 12, Nummer 1
Matthias Polat = Hof 1, Tisch 12, Nummer 2 Yusuf Schwarz = Hof 1, Tisch 12, Nummer 2
Dennis Kraus = Hof 1, Tisch 12, Nummer 3 Nadine Frank = Hof 1, Tisch 12, Nummer 3
Nicole Dietrich = Hof 1, Tisch 12, Nummer 4 Olga Yilmaz = Hof 1, Tisch 12, Nummer 4
Lena Hoffmann = Hof 1, Tisch 12, Nummer 5 Sarah Schwarz = Hof 1, Tisch 12, Nummer 5
Christian Esposito = Hof 1, Tisch 12, Nummer 6 Daniel Horn = Hof 1, Tisch 12, Nummer 6
Nicole Fischer = Hof 1, Tisch 12, Nummer 7 Markus Schmitt = Hof 1, Tisch 12, Nummer 7
Timo Wagner = Hof 1, Tisch 12, Nummer 8 Milan Lange = Hof 1, Tisch 12, Nummer 8
[13] [13]
Stefanie Roth = Hof 1, Tisch 13, Nummer 1 Christian Esposito = Hof 1, Tisch 13, Nummer 1
Monika Demir = Hof 1, Tisch 13, Nummer 2 Matthias Polat = Hof 1, Tisch 13, Nummer 2
Svenja Horn = Hof 1, Tisch 13, Nummer 3 Ursula Aydin = Hof 1, Tisch 13, Nummer 3
Stefan Kuhn = Hof 1, Tisch 13, Nummer 4 Nicole Dietrich = Hof 1, Tisch 13, Nummer 4
Ingrid Demir = Hof 1, Tisch 13, Nummer 5 Lena Hoffmann = Hof 1, Tisch 13, Nummer 5
Christian Meyer = Hof 1, Tisch 13, Nummer 6 Horst Aydin = Hof 1, Tisch 13, Nummer 6
Jennifer Dietrich = Hof 1, Tisch 13, Nummer 7 Timo Wagner = Hof 1, Tisch 13, Nummer 7
Hannelore Demir = Hof 1, Tisch 13, Nummer 8 Nicole Fischer = Hof 1, Tisch 13, Nummer 8
[14] [14]
Anja Brandt = Hof 1, Tisch 14, Nummer 1 Stefanie Roth = Hof 1, Tisch 14, Nummer 1
Nicole Sommer = Hof 1, Tisch 14, Nummer 2 Stefan Kuhn = Hof 1, Tisch 14, Nummer 2
Milan Brandt = Hof 1, Tisch 14, Nummer 3 Monika Demir = Hof 1, Tisch 14, Nummer 3
Erika Erdem = Hof 1, Tisch 14, Nummer 4 Svenja Horn = Hof 1, Tisch 14, Nummer 4
Sofia Brandt = Hof 1, Tisch 14, Nummer 5 Christian Meyer = Hof 1, Tisch 14, Nummer 5
Lina Sommer = Hof 1, Tisch 14, Nummer 6 Ingrid Demir = Hof 1, Tisch 14, Nummer 6
Heinz Tran = Hof 1, Tisch 14, Nummer 7 Jennifer Dietrich = Hof 1, Tisch 14, Nummer 7
Dennis Sommer = Hof 1, Tisch 14, Nummer 8 Hannelore Demir = Hof 1, Tisch 14, Nummer 8
[15] [15]
Lena Brandt = Hof 1, Tisch 15, Nummer 1 Heinz Fischer = Hof 1, Tisch 15, Nummer 1
Helga Fischer = Hof 1, Tisch 15, Nummer 2 Werner Stein = Hof 1, Tisch 15, Nummer 2
Heinz Fischer = Hof 1, Tisch 15, Nummer 3 Renate Aksoy = Hof 1, Tisch 15, Nummer 3
Andreas Brandt = Hof 1, Tisch 15, Nummer 4 Heinz Tran = Hof 1, Tisch 15, Nummer 4
Sandra Meyer = Hof 1, Tisch 15, Nummer 5 Rainer Aksoy = Hof 1, Tisch 15, Nummer 5
Theo Brandt = Hof 1, Tisch 15, Nummer 6 Erika Erdem = Hof 1, Tisch 15, Nummer 6
Marco Meyer = Hof 1, Tisch 15, Nummer 7 Guenter Schwarz = Hof 1, Tisch 15, Nummer 7
Helga Fischer = Hof 1, Tisch 15, Nummer 8
[16] [16]
Felix Brandt = Hof 1, Tisch 16, Nummer 1 Max Sommer = Hof 1, Tisch 16, Nummer 1
Mila Meyer = Hof 1, Tisch 16, Nummer 2 Elias Schwarz = Hof 1, Tisch 16, Nummer 2
Theo Sommer = Hof 1, Tisch 16, Nummer 3 Felix Brandt = Hof 1, Tisch 16, Nummer 3
Liam Schwarz = Hof 1, Tisch 16, Nummer 4 Mila Meyer = Hof 1, Tisch 16, Nummer 4
Matteo Kraus = Hof 1, Tisch 16, Nummer 5 Greta Brandt = Hof 1, Tisch 16, Nummer 5
Ida Sommer = Hof 1, Tisch 16, Nummer 6 Leni Kuhn = Hof 1, Tisch 16, Nummer 6
Elias Schwarz = Hof 1, Tisch 16, Nummer 7 Frieda Brandt = Hof 1, Tisch 16, Nummer 7
Leni Kuhn = Hof 1, Tisch 16, Nummer 8 Liam Schwarz = Hof 1, Tisch 16, Nummer 8
Greta Brandt = Hof 1, Tisch 16, Nummer 9 Ida Sommer = Hof 1, Tisch 16, Nummer 9
Frieda Brandt = Hof 1, Tisch 16, Nummer 10 Theo Sommer = Hof 1, Tisch 16, Nummer 10
Max Sommer = Hof 1, Tisch 16, Nummer 11 Emil Sommer = Hof 1, Tisch 16, Nummer 11
Emil Sommer = Hof 1, Tisch 16, Nummer 12 Matteo Kraus = Hof 1, Tisch 16, Nummer 12
Anton Brandt = Hof 1, Tisch 16, Nummer 13 Anton Brandt = Hof 1, Tisch 16, Nummer 13
[17] [17]
Anton Vogel = Hof 1, Tisch 17, Nummer 1 Anton Vogel = Hof 1, Tisch 17, Nummer 1
Ida Meyer = Hof 1, Tisch 17, Nummer 2 Paul Brandt = Hof 1, Tisch 17, Nummer 2
Max Vogel = Hof 1, Tisch 17, Nummer 3 Max Vogel = Hof 1, Tisch 17, Nummer 3
Anton Meyer = Hof 1, Tisch 17, Nummer 4 Ben Brandt = Hof 1, Tisch 17, Nummer 4
Paul Brandt = Hof 1, Tisch 17, Nummer 5 Anton Meyer = Hof 1, Tisch 17, Nummer 5
Ben Brandt = Hof 1, Tisch 17, Nummer 6 Ida Meyer = Hof 1, Tisch 17, Nummer 6
+45 -36
View File
@@ -1,47 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="500" viewBox="0 0 900 500" font-family="sans-serif"> <svg xmlns="http://www.w3.org/2000/svg" width="900" height="650" viewBox="0 0 900 650" font-family="sans-serif">
<rect width="100%" height="100%" fill="white"/> <rect width="100%" height="100%" fill="white"/>
<text x="450" y="30" text-anchor="middle" font-size="16" fill="#333">Entwicklung der Loesungsfindung</text> <text x="450" y="30" text-anchor="middle" font-size="16" fill="#333">Entwicklung der Loesungsfindung</text>
<line x1="60" y1="60" x2="60" y2="440" stroke="#333" stroke-width="1.5"/> <line x1="60" y1="60" x2="60" y2="390.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="440" x2="840" y2="440" stroke="#333" stroke-width="1.5"/> <line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="440.0" x2="840" y2="440.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="444.0" text-anchor="end" font-size="11" fill="#666">-744</text> <text x="52" y="394.0" text-anchor="end" font-size="11" fill="#666">-821</text>
<line x1="60" y1="364.0" x2="840" y2="364.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="324.0" x2="840" y2="324.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="368.0" text-anchor="end" font-size="11" fill="#666">-647</text> <text x="52" y="328.0" text-anchor="end" font-size="11" fill="#666">-715</text>
<line x1="60" y1="288.0" x2="840" y2="288.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="258.0" x2="840" y2="258.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="292.0" text-anchor="end" font-size="11" fill="#666">-550</text> <text x="52" y="262.0" text-anchor="end" font-size="11" fill="#666">-609</text>
<line x1="60" y1="212.0" x2="840" y2="212.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="192.0" x2="840" y2="192.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="216.0" text-anchor="end" font-size="11" fill="#666">-454</text> <text x="52" y="196.0" text-anchor="end" font-size="11" fill="#666">-503</text>
<line x1="60" y1="136.0" x2="840" y2="136.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="126.0" x2="840" y2="126.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="140.0" text-anchor="end" font-size="11" fill="#666">-357</text> <text x="52" y="130.0" text-anchor="end" font-size="11" fill="#666">-398</text>
<line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-260</text> <text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-292</text>
<text x="18" y="250" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 250)">Wertigkeit (hoeher = besser)</text> <text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
<text x="450" y="482" text-anchor="middle" font-size="12" fill="#333">Zyklus-Aktion (Zeit)</text> <polyline points="60.0,105.6 112.0,74.6 164.0,74.6 216.0,74.6 268.0,60.6 320.0,60.6 372.0,60.6 424.0,60.0 476.0,60.0 528.0,60.0 580.0,60.0 632.0,60.0 684.0,60.0 736.0,60.0 788.0,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
<text x="60.0" y="456" text-anchor="middle" font-size="10" fill="#999">e</text> <polyline points="60.0,246.5 112.0,206.0 164.0,219.5 216.0,145.1 268.0,123.3 320.0,130.6 372.0,91.7 424.0,82.5 476.0,85.5 528.0,63.8 580.0,63.8 632.0,63.8 684.0,60.5 736.0,60.5 788.0,60.5 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
<text x="108.8" y="456" text-anchor="middle" font-size="10" fill="#999">s</text> <polyline points="60.0,385.7 112.0,390.0 164.0,390.0 216.0,183.8 268.0,179.7 320.0,183.8 372.0,114.7 424.0,155.6 476.0,155.6 528.0,67.4 580.0,67.4 632.0,67.4 684.0,61.6 736.0,61.6 788.0,61.6 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
<text x="157.5" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="206.2" y="456" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="255.0" y="456" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="303.8" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="352.5" y="456" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="401.2" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="450.0" y="456" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="498.8" y="456" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="547.5" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="596.2" y="456" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="645.0" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="693.8" y="456" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="742.5" y="456" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="791.2" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="840.0" y="456" text-anchor="middle" font-size="10" fill="#999">s</text>
<polyline points="60.0,165.2 108.8,165.2 157.5,165.2 206.2,97.7 255.0,97.7 303.8,97.7 352.5,97.7 401.2,97.7 450.0,60.0 498.8,60.0 547.5,60.0 596.2,60.0 645.0,60.0 693.8,60.0 742.5,60.0 791.2,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
<polyline points="60.0,277.0 108.8,204.1 157.5,204.1 206.2,163.6 255.0,177.1 303.8,177.1 352.5,132.5 401.2,132.5 450.0,103.7 498.8,113.3 547.5,113.3 596.2,72.6 645.0,72.6 693.8,68.5 742.5,69.8 791.2,69.8 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
<polyline points="60.0,440.0 108.8,228.0 157.5,228.0 206.2,209.2 255.0,228.0 303.8,228.0 352.5,165.2 401.2,165.2 450.0,160.5 498.8,165.2 547.5,165.2 596.2,96.1 645.0,96.1 693.8,96.1 742.5,96.1 791.2,96.1 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/> <line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text> <text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/> <line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
<text x="710" y="92" font-size="11" fill="#333">Durchschnitt</text> <text x="710" y="92" font-size="11" fill="#333">Durchschnitt</text>
<line x1="680" y1="106" x2="704" y2="106" stroke="#a03030" stroke-width="2"/> <line x1="680" y1="106" x2="704" y2="106" stroke="#a03030" stroke-width="2"/>
<text x="710" y="110" font-size="11" fill="#333">schlechteste Loesung</text> <text x="710" y="110" font-size="11" fill="#333">schlechteste Loesung</text>
<text x="450" y="428.0" text-anchor="middle" font-size="13" fill="#333">Anzahl erzeugter Verteilungen im Pool</text>
<line x1="60" y1="440.0" x2="60" y2="590.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="590.0" x2="840" y2="590.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="590.0" x2="840" y2="590.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="594.0" text-anchor="end" font-size="11" fill="#666">0</text>
<line x1="60" y1="515.0" x2="840" y2="515.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="519.0" text-anchor="end" font-size="11" fill="#666">60</text>
<line x1="60" y1="440.0" x2="840" y2="440.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="444.0" text-anchor="end" font-size="11" fill="#666">120</text>
<polyline points="60.0,540.0 112.0,490.0 164.0,440.0 216.0,547.5 268.0,505.0 320.0,462.5 372.0,555.0 424.0,520.0 476.0,485.0 528.0,561.2 580.0,532.5 632.0,503.8 684.0,566.2 736.0,542.5 788.0,518.8 840.0,570.0" fill="none" stroke="#4060a0" stroke-width="2"/>
<text x="60.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">e</text>
<text x="112.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="164.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="216.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="268.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="320.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="372.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="424.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="476.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="528.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="580.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="632.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="684.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="736.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="788.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="840.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="450" y="638" text-anchor="middle" font-size="12" fill="#333">Zyklus-Aktion (Zeit)</text>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

+294 -294
View File
@@ -1,300 +1,300 @@
Aksoy, Luca, = Hof 1, Tisch 35, Nummer 3 Aksoy, Luca, = Hof 1, Tisch 30, Nummer 2
Aksoy, Marie, = Hof 1, Tisch 35, Nummer 4 Aksoy, Marie, = Hof 1, Tisch 30, Nummer 4
Aksoy, Marija, = Hof 2, Tisch 70, Nummer 5 Aksoy, Marija, = Hof 2, Tisch 53, Nummer 2
Aksoy, Michael, Dr. = Hof 2, Tisch 49, Nummer 2 Aksoy, Michael, Dr. = Hof 2, Tisch 55, Nummer 2
Aksoy, Nadine, = Hof 1, Tisch 36, Nummer 3 Aksoy, Nadine, = Hof 1, Tisch 21, Nummer 3
Aksoy, Nicole, = Hof 2, Tisch 62, Nummer 5 Aksoy, Nicole, = Hof 1, Tisch 31, Nummer 5
Aksoy, Sergej, = Hof 1, Tisch 36, Nummer 2 Aksoy, Sergej, = Hof 1, Tisch 21, Nummer 2
Aksoy, Sofia, = Hof 1, Tisch 35, Nummer 2 Aksoy, Sofia, = Hof 1, Tisch 30, Nummer 3
Aksoy, Thomas, = Hof 1, Tisch 36, Nummer 4 Aksoy, Thomas, = Hof 1, Tisch 21, Nummer 4
Albrecht, Andreas, = Hof 1, Tisch 12, Nummer 5 Albrecht, Andreas, = Hof 1, Tisch 8, Nummer 2
Albrecht, Emre, Prof. Dr. = Hof 1, Tisch 2, Nummer 4 Albrecht, Emre, Prof. Dr. = Hof 1, Tisch 37, Nummer 4
Albrecht, Sarah, = Hof 1, Tisch 12, Nummer 2 Albrecht, Sarah, = Hof 1, Tisch 8, Nummer 4
Albrecht, Yusuf, Prof. Dr. = Hof 1, Tisch 20, Nummer 4 Albrecht, Yusuf, Prof. Dr. = Hof 1, Tisch 15, Nummer 5
Arnold, Christian, = Hof 2, Tisch 50, Nummer 3 Arnold, Christian, = Hof 2, Tisch 69, Nummer 3
Arnold, Jennifer, = Hof 2, Tisch 50, Nummer 4 Arnold, Jennifer, = Hof 2, Tisch 70, Nummer 2
Arnold, Jennifer, Dr. = Hof 1, Tisch 13, Nummer 4 Arnold, Jennifer, Dr. = Hof 1, Tisch 28, Nummer 4
Arnold, Leni, = Hof 2, Tisch 51, Nummer 2 Arnold, Leni, = Hof 2, Tisch 70, Nummer 3
Arnold, Mila, = Hof 2, Tisch 50, Nummer 2 Arnold, Mila, = Hof 2, Tisch 69, Nummer 4
Arnold, Nadine, = Hof 2, Tisch 71, Nummer 3 Arnold, Nadine, = Hof 2, Tisch 52, Nummer 3
Arnold, Patrick, = Hof 2, Tisch 51, Nummer 3 Arnold, Patrick, = Hof 2, Tisch 69, Nummer 2
Barth, Lina, = Hof 2, Tisch 67, Nummer 5 Barth, Lina, = Hof 1, Tisch 16, Nummer 3
Barth, Markus, = Hof 1, Tisch 44, Nummer 3 Barth, Markus, = Hof 2, Tisch 49, Nummer 3
Barth, Nadine, = Hof 2, Tisch 67, Nummer 3 Barth, Nadine, = Hof 1, Tisch 16, Nummer 4
Barth, Patrick, = Hof 2, Tisch 67, Nummer 2 Barth, Patrick, = Hof 1, Tisch 16, Nummer 2
Barth, Timo, = Hof 2, Tisch 67, Nummer 4 Barth, Timo, = Hof 1, Tisch 16, Nummer 5
Bauer, Dragana, = Hof 2, Tisch 57, Nummer 5 Bauer, Dragana, = Hof 1, Tisch 42, Nummer 4
Bauer, Yusuf, = Hof 1, Tisch 4, Nummer 3 Bauer, Yusuf, = Hof 1, Tisch 2, Nummer 3
Becker, Jan, = Hof 1, Tisch 42, Nummer 2 Becker, Jan, = Hof 2, Tisch 46, Nummer 2
Becker, Marija, = Hof 1, Tisch 32, Nummer 2 Becker, Marija, = Hof 1, Tisch 43, Nummer 2
Becker, Nicole, = Hof 1, Tisch 42, Nummer 4 Becker, Nicole, = Hof 2, Tisch 46, Nummer 3
Becker, Sandra, = Hof 1, Tisch 42, Nummer 3 Becker, Sandra, = Hof 2, Tisch 46, Nummer 4
Berger, Andreas, = Hof 1, Tisch 33, Nummer 5 Berger, Andreas, = Hof 1, Tisch 20, Nummer 3
Berger, Anton, = Hof 1, Tisch 25, Nummer 4 Berger, Anton, = Hof 1, Tisch 29, Nummer 3
Berger, Jennifer, = Hof 1, Tisch 33, Nummer 4 Berger, Jennifer, = Hof 1, Tisch 20, Nummer 5
Berger, Layla, = Hof 1, Tisch 25, Nummer 3 Berger, Layla, = Hof 1, Tisch 29, Nummer 2
Berger, Nadine, Dr. = Hof 2, Tisch 60, Nummer 4 Berger, Nadine, Dr. = Hof 2, Tisch 62, Nummer 2
Berger, Stefan, = Hof 1, Tisch 25, Nummer 5 Berger, Stefan, = Hof 1, Tisch 20, Nummer 4
Berger, Svenja, = Hof 1, Tisch 25, Nummer 2 Berger, Svenja, = Hof 1, Tisch 20, Nummer 2
Bianchi, Jan, Dr. = Hof 1, Tisch 3, Nummer 3 Bianchi, Jan, Dr. = Hof 1, Tisch 2, Nummer 2
Bianchi, Mia, = Hof 1, Tisch 31, Nummer 4 Bianchi, Mia, = Hof 1, Tisch 38, Nummer 3
Bianchi, Sandra, = Hof 1, Tisch 31, Nummer 3 Bianchi, Sandra, = Hof 1, Tisch 38, Nummer 4
Bianchi, Thomas, = Hof 1, Tisch 2, Nummer 3 Bianchi, Thomas, = Hof 1, Tisch 37, Nummer 2
Bianchi, Thomas, = Hof 1, Tisch 31, Nummer 2 Bianchi, Thomas, = Hof 1, Tisch 38, Nummer 2
Braun, Christian, = Hof 2, Tisch 48, Nummer 3 Braun, Christian, = Hof 1, Tisch 3, Nummer 3
Braun, Dragana, = Hof 2, Tisch 47, Nummer 5 Braun, Dragana, = Hof 1, Tisch 11, Nummer 3
Braun, Jan, = Hof 2, Tisch 48, Nummer 4 Braun, Jan, = Hof 1, Tisch 11, Nummer 5
Braun, Julia, = Hof 2, Tisch 47, Nummer 2 Braun, Julia, = Hof 1, Tisch 11, Nummer 4
Braun, Milan, = Hof 2, Tisch 48, Nummer 2 Braun, Milan, = Hof 1, Tisch 11, Nummer 2
Braun, Nadine, = Hof 2, Tisch 48, Nummer 5 Braun, Nadine, = Hof 1, Tisch 3, Nummer 2
Busch, Emre, = Hof 2, Tisch 56, Nummer 5 Busch, Emre, = Hof 1, Tisch 39, Nummer 4
Busch, Marie, = Hof 2, Tisch 56, Nummer 2 Busch, Marie, = Hof 1, Tisch 39, Nummer 3
Busch, Michael, = Hof 2, Tisch 56, Nummer 3 Busch, Michael, = Hof 1, Tisch 39, Nummer 2
Busch, Olga, = Hof 2, Tisch 56, Nummer 4 Busch, Olga, = Hof 1, Tisch 39, Nummer 5
Busch, Patrick, = Hof 2, Tisch 49, Nummer 4 Busch, Patrick, = Hof 2, Tisch 55, Nummer 5
Celik, Elif, = Hof 1, Tisch 33, Nummer 3 Celik, Elif, = Hof 1, Tisch 19, Nummer 4
Celik, Patrick, = Hof 1, Tisch 33, Nummer 2 Celik, Patrick, = Hof 1, Tisch 19, Nummer 3
Dallmann, Charlotte, = Hof 1, Tisch 7, Nummer 5 Dallmann, Charlotte, = Hof 1, Tisch 7, Nummer 2
Dallmann, Heinrich, = Hof 1, Tisch 7, Nummer 2 Dallmann, Heinrich, = Hof 1, Tisch 7, Nummer 5
Dallmann, Margarete, = Hof 1, Tisch 7, Nummer 3 Dallmann, Margarete, = Hof 1, Tisch 7, Nummer 3
Dallmann, Maximilian, = Hof 1, Tisch 7, Nummer 4 Dallmann, Maximilian, = Hof 1, Tisch 7, Nummer 4
Demir, Sandra, Dr. = Hof 1, Tisch 29, Nummer 4 Demir, Sandra, Dr. = Hof 1, Tisch 29, Nummer 4
Dietrich, Dragana, Prof. Dr. = Hof 2, Tisch 59, Nummer 2 Dietrich, Dragana, Prof. Dr. = Hof 2, Tisch 56, Nummer 4
Dietrich, Jennifer, = Hof 2, Tisch 64, Nummer 3 Dietrich, Jennifer, = Hof 2, Tisch 63, Nummer 3
Dietrich, Marco, = Hof 2, Tisch 64, Nummer 4 Dietrich, Marco, = Hof 2, Tisch 63, Nummer 2
Dietrich, Sofia, = Hof 2, Tisch 64, Nummer 2 Dietrich, Sofia, = Hof 2, Tisch 63, Nummer 4
Engel, Anja, = Hof 1, Tisch 22, Nummer 2 Engel, Anja, = Hof 1, Tisch 27, Nummer 2
Engel, Anton, = Hof 1, Tisch 22, Nummer 4 Engel, Anton, = Hof 1, Tisch 28, Nummer 3
Engel, Julia, = Hof 1, Tisch 13, Nummer 2 Engel, Julia, = Hof 1, Tisch 27, Nummer 4
Engel, Nicole, = Hof 1, Tisch 22, Nummer 3 Engel, Nicole, = Hof 1, Tisch 28, Nummer 5
Engel, Yusuf, = Hof 1, Tisch 13, Nummer 3 Engel, Yusuf, = Hof 1, Tisch 27, Nummer 3
Esposito, Jan, Dr. = Hof 1, Tisch 16, Nummer 2 Esposito, Jan, Dr. = Hof 1, Tisch 10, Nummer 4
Esposito, Yusuf, Prof. Dr. = Hof 1, Tisch 32, Nummer 4 Esposito, Yusuf, Prof. Dr. = Hof 1, Tisch 43, Nummer 3
Frank, Dennis, = Hof 1, Tisch 8, Nummer 2 Frank, Dennis, = Hof 1, Tisch 12, Nummer 2
Frank, Finn, = Hof 1, Tisch 19, Nummer 3 Frank, Finn, = Hof 1, Tisch 22, Nummer 2
Frank, Lena, = Hof 1, Tisch 19, Nummer 2 Frank, Lena, = Hof 1, Tisch 22, Nummer 3
Frank, Marie, = Hof 1, Tisch 19, Nummer 4 Frank, Marie, = Hof 1, Tisch 22, Nummer 4
Frank, Nadine, = Hof 1, Tisch 8, Nummer 3 Frank, Nadine, = Hof 1, Tisch 12, Nummer 3
Franke, Amira, = Hof 2, Tisch 85, Nummer 5 Franke, Amira, = Hof 2, Tisch 57, Nummer 3
Franke, Julia, = Hof 2, Tisch 84, Nummer 3 Franke, Julia, = Hof 2, Tisch 57, Nummer 2
Franke, Marco, = Hof 2, Tisch 84, Nummer 4 Franke, Marco, = Hof 2, Tisch 67, Nummer 3
Franke, Michael, = Hof 2, Tisch 85, Nummer 4 Franke, Michael, = Hof 2, Tisch 57, Nummer 4
Franke, Olga, = Hof 2, Tisch 84, Nummer 2 Franke, Olga, = Hof 2, Tisch 67, Nummer 5
Freifrau von Waldeck, Antonia, = Hof 1, Tisch 6, Nummer 4 Freifrau von Waldeck, Antonia, = Hof 1, Tisch 6, Nummer 3
Freiherr von Waldeck, Konstantin, Dr. = Hof 1, Tisch 6, Nummer 5 Freiherr von Waldeck, Konstantin, Dr. = Hof 1, Tisch 6, Nummer 2
Grothe, Alexander, Dr. h.c. = Hof 1, Tisch 5, Nummer 3 Grothe, Alexander, Dr. h.c. = Hof 1, Tisch 5, Nummer 5
Grothe, Beate, = Hof 1, Tisch 5, Nummer 5 Grothe, Beate, = Hof 1, Tisch 5, Nummer 2
Haas, Jennifer, Dr. = Hof 1, Tisch 37, Nummer 2 Haas, Jennifer, Dr. = Hof 2, Tisch 49, Nummer 2
Haas, Patrick, = Hof 2, Tisch 57, Nummer 2 Haas, Patrick, = Hof 1, Tisch 42, Nummer 5
Hansen, Giovanna, = Hof 1, Tisch 9, Nummer 4 Hansen, Giovanna, = Hof 1, Tisch 14, Nummer 2
Hansen, Markus, = Hof 1, Tisch 9, Nummer 2 Hansen, Markus, = Hof 1, Tisch 14, Nummer 4
Hansen, Nicole, Dr. = Hof 2, Tisch 57, Nummer 3 Hansen, Nicole, Dr. = Hof 1, Tisch 41, Nummer 2
Hansen, Olga, = Hof 1, Tisch 9, Nummer 3 Hansen, Olga, = Hof 1, Tisch 14, Nummer 3
Hansen, Thomas, = Hof 1, Tisch 16, Nummer 5 Hansen, Thomas, = Hof 1, Tisch 10, Nummer 3
Hartmann, Deniz, = Hof 1, Tisch 8, Nummer 5 Hartmann, Deniz, = Hof 1, Tisch 13, Nummer 2
Hartmann, Marija, = Hof 1, Tisch 18, Nummer 3 Hartmann, Marija, = Hof 1, Tisch 12, Nummer 4
Hartmann, Nadine, = Hof 1, Tisch 8, Nummer 4 Hartmann, Nadine, = Hof 1, Tisch 13, Nummer 4
Hartmann, Olga, = Hof 1, Tisch 18, Nummer 4 Hartmann, Olga, = Hof 1, Tisch 13, Nummer 3
Hartmann, Thomas, = Hof 1, Tisch 18, Nummer 2 Hartmann, Thomas, = Hof 1, Tisch 12, Nummer 5
Hoffmann, Emre, = Hof 2, Tisch 59, Nummer 4 Hoffmann, Emre, = Hof 2, Tisch 56, Nummer 5
Hoffmann, Patrick, Prof. Dr. = Hof 2, Tisch 71, Nummer 5 Hoffmann, Patrick, Prof. Dr. = Hof 2, Tisch 52, Nummer 4
Hoffmann, Thomas, Dr. = Hof 1, Tisch 45, Nummer 5 Hoffmann, Thomas, Dr. = Hof 1, Tisch 17, Nummer 5
Horn, Kathrin, = Hof 2, Tisch 83, Nummer 4 Horn, Kathrin, = Hof 2, Tisch 82, Nummer 3
Horn, Layla, = Hof 2, Tisch 83, Nummer 2 Horn, Layla, = Hof 2, Tisch 82, Nummer 4
Horn, Leon, = Hof 2, Tisch 83, Nummer 3 Horn, Leon, = Hof 2, Tisch 82, Nummer 2
Horn, Michael, = Hof 2, Tisch 83, Nummer 5 Horn, Michael, = Hof 2, Tisch 82, Nummer 5
Kaya, Christina, = Hof 1, Tisch 40, Nummer 2 Kaya, Christina, = Hof 1, Tisch 44, Nummer 2
Kaya, Luca, = Hof 1, Tisch 40, Nummer 3 Kaya, Luca, = Hof 1, Tisch 44, Nummer 3
Kaya, Nicole, = Hof 1, Tisch 40, Nummer 4 Kaya, Nicole, = Hof 1, Tisch 44, Nummer 4
Kaya, Patrick, Dr. = Hof 1, Tisch 4, Nummer 5 Kaya, Patrick, Dr. = Hof 1, Tisch 1, Nummer 4
Kaya, Timo, Prof. Dr. = Hof 1, Tisch 29, Nummer 5 Kaya, Timo, Prof. Dr. = Hof 1, Tisch 29, Nummer 5
Kessler, Ferdinand, Dr. = Hof 1, Tisch 5, Nummer 2 Kessler, Ferdinand, Dr. = Hof 1, Tisch 5, Nummer 3
Kessler, Viktoria, = Hof 1, Tisch 5, Nummer 4 Kessler, Viktoria, = Hof 1, Tisch 5, Nummer 4
Klein, Emre, = Hof 1, Tisch 4, Nummer 4 Klein, Emre, = Hof 1, Tisch 1, Nummer 3
Klein, Lina, = Hof 2, Tisch 52, Nummer 3 Klein, Lina, = Hof 2, Tisch 51, Nummer 3
Klein, Markus, = Hof 2, Tisch 62, Nummer 2 Klein, Markus, = Hof 1, Tisch 31, Nummer 4
Klein, Milan, = Hof 2, Tisch 52, Nummer 2 Klein, Milan, = Hof 2, Tisch 51, Nummer 2
Klein, Olga, Dr. = Hof 1, Tisch 13, Nummer 5 Klein, Olga, Dr. = Hof 1, Tisch 28, Nummer 2
Klein, Stefanie, = Hof 2, Tisch 52, Nummer 4 Klein, Stefanie, = Hof 2, Tisch 51, Nummer 4
Koch, Emil, = Hof 2, Tisch 58, Nummer 3 Koch, Emil, = Hof 1, Tisch 41, Nummer 4
Koch, Jan, = Hof 2, Tisch 59, Nummer 5 Koch, Jan, = Hof 1, Tisch 40, Nummer 5
Koch, Kathrin, Dr. = Hof 2, Tisch 68, Nummer 2 Koch, Kathrin, Dr. = Hof 2, Tisch 80, Nummer 4
Koch, Marie, = Hof 2, Tisch 58, Nummer 4 Koch, Marie, = Hof 1, Tisch 41, Nummer 5
Koch, Michael, = Hof 2, Tisch 59, Nummer 3 Koch, Michael, = Hof 1, Tisch 40, Nummer 3
Koch, Olga, = Hof 2, Tisch 58, Nummer 2 Koch, Olga, = Hof 1, Tisch 40, Nummer 4
Koch, Sarah, = Hof 2, Tisch 58, Nummer 5 Koch, Sarah, = Hof 1, Tisch 40, Nummer 2
Kovac, Anja, = Hof 1, Tisch 26, Nummer 4 Kovac, Anja, = Hof 1, Tisch 32, Nummer 4
Kovac, Henry, = Hof 1, Tisch 26, Nummer 3 Kovac, Henry, = Hof 1, Tisch 24, Nummer 3
Kovac, Lena, = Hof 1, Tisch 34, Nummer 2 Kovac, Lena, = Hof 1, Tisch 24, Nummer 2
Kovac, Luca, = Hof 2, Tisch 72, Nummer 3 Kovac, Luca, = Hof 2, Tisch 67, Nummer 4
Kovac, Marco, = Hof 1, Tisch 34, Nummer 3 Kovac, Marco, = Hof 1, Tisch 32, Nummer 2
Kovac, Marija, = Hof 1, Tisch 34, Nummer 4 Kovac, Marija, = Hof 1, Tisch 32, Nummer 3
Kovac, Matthias, = Hof 1, Tisch 32, Nummer 3 Kovac, Matthias, = Hof 1, Tisch 43, Nummer 4
Kovac, Tobias, = Hof 1, Tisch 26, Nummer 2 Kovac, Tobias, = Hof 1, Tisch 24, Nummer 4
Kraus, Markus, = Hof 1, Tisch 10, Nummer 3 Kraus, Markus, = Hof 1, Tisch 34, Nummer 2
Kraus, Patrick, Dr. = Hof 2, Tisch 69, Nummer 4 Kraus, Patrick, Dr. = Hof 2, Tisch 66, Nummer 3
Krause, Andreas, = Hof 2, Tisch 88, Nummer 2 Krause, Andreas, = Hof 2, Tisch 75, Nummer 4
Krause, Arda, = Hof 2, Tisch 88, Nummer 4 Krause, Arda, = Hof 2, Tisch 75, Nummer 5
Krause, Christina, Dr. = Hof 1, Tisch 3, Nummer 4 Krause, Christina, Dr. = Hof 1, Tisch 2, Nummer 4
Krause, Daniel, = Hof 2, Tisch 62, Nummer 4 Krause, Daniel, = Hof 1, Tisch 31, Nummer 2
Krause, Dragana, Dr. = Hof 2, Tisch 72, Nummer 4 Krause, Dragana, Dr. = Hof 2, Tisch 68, Nummer 3
Krause, Emma, = Hof 2, Tisch 88, Nummer 3 Krause, Emma, = Hof 2, Tisch 75, Nummer 3
Krause, Julia, = Hof 2, Tisch 88, Nummer 5 Krause, Julia, = Hof 2, Tisch 75, Nummer 2
Krause, Matthias, = Hof 2, Tisch 78, Nummer 4 Krause, Matthias, = Hof 2, Tisch 66, Nummer 2
Krause, Thomas, = Hof 2, Tisch 47, Nummer 4 Krause, Thomas, = Hof 1, Tisch 42, Nummer 2
Kuhn, Julia, Dr. = Hof 2, Tisch 68, Nummer 4 Kuhn, Julia, Dr. = Hof 2, Tisch 80, Nummer 3
Lange, Dragana, = Hof 2, Tisch 73, Nummer 3 Lange, Dragana, = Hof 1, Tisch 8, Nummer 3
Lange, Jan, = Hof 2, Tisch 81, Nummer 3 Lange, Jan, = Hof 1, Tisch 36, Nummer 3
Lange, Michael, = Hof 2, Tisch 73, Nummer 2 Lange, Michael, = Hof 1, Tisch 36, Nummer 2
Lange, Sergej, = Hof 2, Tisch 49, Nummer 3 Lange, Sergej, = Hof 2, Tisch 55, Nummer 3
Lange, Sofia, = Hof 2, Tisch 81, Nummer 4 Lange, Sofia, = Hof 1, Tisch 36, Nummer 4
Lange, Svenja, = Hof 2, Tisch 81, Nummer 2 Lange, Svenja, = Hof 1, Tisch 8, Nummer 5
Lehmann, Giovanna, = Hof 1, Tisch 21, Nummer 2 Lehmann, Giovanna, = Hof 1, Tisch 18, Nummer 4
Lehmann, Layla, = Hof 1, Tisch 20, Nummer 2 Lehmann, Layla, = Hof 1, Tisch 18, Nummer 5
Lehmann, Markus, = Hof 1, Tisch 21, Nummer 4 Lehmann, Markus, = Hof 1, Tisch 18, Nummer 2
Lehmann, Milan, = Hof 1, Tisch 20, Nummer 3 Lehmann, Milan, = Hof 1, Tisch 18, Nummer 3
Lehmann, Nicole, = Hof 1, Tisch 21, Nummer 3 Lehmann, Nicole, = Hof 1, Tisch 19, Nummer 5
Lehmann, Patrick, = Hof 2, Tisch 60, Nummer 2 Lehmann, Patrick, = Hof 2, Tisch 62, Nummer 4
Lehmann, Thomas, = Hof 1, Tisch 21, Nummer 5 Lehmann, Thomas, = Hof 1, Tisch 19, Nummer 2
Ludwig, Aylin, Dr. = Hof 2, Tisch 69, Nummer 2 Ludwig, Aylin, Dr. = Hof 2, Tisch 66, Nummer 5
Ludwig, Elias, = Hof 2, Tisch 46, Nummer 2 Ludwig, Elias, = Hof 2, Tisch 76, Nummer 3
Ludwig, Elif, = Hof 2, Tisch 46, Nummer 4 Ludwig, Elif, = Hof 2, Tisch 76, Nummer 2
Ludwig, Emre, = Hof 2, Tisch 46, Nummer 3 Ludwig, Emre, = Hof 2, Tisch 76, Nummer 4
Ludwig, Emre, Prof. Dr. = Hof 2, Tisch 62, Nummer 3 Ludwig, Emre, Prof. Dr. = Hof 1, Tisch 31, Nummer 3
Ludwig, Giovanna, = Hof 2, Tisch 46, Nummer 5 Ludwig, Giovanna, = Hof 2, Tisch 76, Nummer 5
Maier, Arda, = Hof 2, Tisch 61, Nummer 4 Maier, Arda, = Hof 2, Tisch 78, Nummer 4
Maier, Christian, = Hof 2, Tisch 61, Nummer 2 Maier, Christian, = Hof 2, Tisch 78, Nummer 5
Maier, Olga, = Hof 2, Tisch 61, Nummer 3 Maier, Olga, = Hof 2, Tisch 78, Nummer 2
Maier, Sarah, = Hof 2, Tisch 61, Nummer 5 Maier, Sarah, = Hof 2, Tisch 78, Nummer 3
Neumann, Jennifer, = Hof 1, Tisch 14, Nummer 5 Neumann, Jennifer, = Hof 2, Tisch 86, Nummer 5
Neumann, Lina, = Hof 1, Tisch 14, Nummer 3 Neumann, Lina, = Hof 2, Tisch 86, Nummer 4
Neumann, Matteo, = Hof 1, Tisch 14, Nummer 4 Neumann, Matteo, = Hof 2, Tisch 86, Nummer 3
Neumann, Thomas, = Hof 1, Tisch 14, Nummer 2 Neumann, Thomas, = Hof 2, Tisch 86, Nummer 2
Nguyen, Anja, = Hof 1, Tisch 43, Nummer 3 Nguyen, Anja, = Hof 2, Tisch 47, Nummer 4
Nguyen, Daniel, = Hof 1, Tisch 43, Nummer 4 Nguyen, Daniel, = Hof 2, Tisch 47, Nummer 2
Nguyen, Julia, = Hof 1, Tisch 16, Nummer 3 Nguyen, Julia, = Hof 1, Tisch 9, Nummer 5
Nguyen, Sofia, = Hof 1, Tisch 43, Nummer 2 Nguyen, Sofia, = Hof 2, Tisch 47, Nummer 3
Nowak, Aylin, = Hof 1, Tisch 27, Nummer 2 Nowak, Aylin, = Hof 1, Tisch 33, Nummer 5
Nowak, Felix, = Hof 1, Tisch 28, Nummer 3 Nowak, Felix, = Hof 1, Tisch 34, Nummer 4
Nowak, Kathrin, = Hof 1, Tisch 28, Nummer 4 Nowak, Kathrin, = Hof 1, Tisch 33, Nummer 4
Nowak, Lina, = Hof 1, Tisch 27, Nummer 5 Nowak, Lina, = Hof 1, Tisch 33, Nummer 3
Nowak, Markus, = Hof 1, Tisch 28, Nummer 2 Nowak, Markus, = Hof 1, Tisch 34, Nummer 3
Nowak, Noah, = Hof 1, Tisch 28, Nummer 5 Nowak, Noah, = Hof 1, Tisch 33, Nummer 2
Ott, Daniel, = Hof 1, Tisch 38, Nummer 4 Ott, Daniel, = Hof 2, Tisch 74, Nummer 3
Ott, Hannah, = Hof 1, Tisch 30, Nummer 2 Ott, Hannah, = Hof 2, Tisch 73, Nummer 2
Ott, Luca, = Hof 2, Tisch 72, Nummer 2 Ott, Luca, = Hof 2, Tisch 68, Nummer 4
Ott, Matthias, = Hof 1, Tisch 38, Nummer 2 Ott, Matthias, = Hof 2, Tisch 73, Nummer 4
Ott, Melanie, = Hof 1, Tisch 30, Nummer 5 Ott, Melanie, = Hof 2, Tisch 73, Nummer 3
Ott, Olga, = Hof 1, Tisch 38, Nummer 3 Ott, Olga, = Hof 2, Tisch 74, Nummer 4
Ott, Sergej, Prof. Dr. = Hof 2, Tisch 47, Nummer 3 Ott, Sergej, Prof. Dr. = Hof 1, Tisch 42, Nummer 3
Ott, Yusuf, Prof. Dr. = Hof 2, Tisch 60, Nummer 3 Ott, Yusuf, Prof. Dr. = Hof 2, Tisch 62, Nummer 3
Peters, Christian, = Hof 1, Tisch 11, Nummer 4 Peters, Christian, = Hof 1, Tisch 26, Nummer 3
Peters, Nicole, = Hof 2, Tisch 57, Nummer 4 Peters, Nicole, = Hof 1, Tisch 41, Nummer 3
Petrov, Giovanna, = Hof 1, Tisch 10, Nummer 2 Petrov, Giovanna, = Hof 1, Tisch 34, Nummer 5
Petrov, Kathrin, = Hof 1, Tisch 30, Nummer 3 Petrov, Kathrin, = Hof 1, Tisch 25, Nummer 3
Petrov, Kathrin, Prof. Dr. = Hof 1, Tisch 11, Nummer 2 Petrov, Kathrin, Prof. Dr. = Hof 1, Tisch 3, Nummer 5
Petrov, Matthias, = Hof 1, Tisch 44, Nummer 2 Petrov, Matthias, = Hof 2, Tisch 50, Nummer 3
Petrov, Milan, = Hof 1, Tisch 30, Nummer 4 Petrov, Milan, = Hof 1, Tisch 25, Nummer 4
Petrov, Sergej, = Hof 2, Tisch 70, Nummer 3 Petrov, Sergej, = Hof 2, Tisch 53, Nummer 4
Pohl, Dragana, = Hof 2, Tisch 74, Nummer 2 Pohl, Dragana, = Hof 2, Tisch 85, Nummer 3
Pohl, Emre, = Hof 2, Tisch 74, Nummer 3 Pohl, Emre, = Hof 2, Tisch 85, Nummer 5
Pohl, Mia, = Hof 2, Tisch 74, Nummer 4 Pohl, Mia, = Hof 2, Tisch 85, Nummer 2
Pohl, Theo, = Hof 2, Tisch 74, Nummer 5 Pohl, Theo, = Hof 2, Tisch 85, Nummer 4
Polat, Kathrin, = Hof 2, Tisch 70, Nummer 4 Polat, Kathrin, = Hof 2, Tisch 53, Nummer 3
Polat, Katrin, = Hof 2, Tisch 85, Nummer 2 Polat, Katrin, = Hof 2, Tisch 83, Nummer 4
Polat, Marija, = Hof 2, Tisch 71, Nummer 2 Polat, Marija, = Hof 2, Tisch 52, Nummer 2
Polat, Markus, = Hof 2, Tisch 85, Nummer 3 Polat, Markus, = Hof 2, Tisch 83, Nummer 2
Polat, Sarah, = Hof 2, Tisch 79, Nummer 3 Polat, Sarah, = Hof 2, Tisch 74, Nummer 5
Polat, Stefan, = Hof 2, Tisch 79, Nummer 4 Polat, Stefan, = Hof 2, Tisch 74, Nummer 2
Polat, Stefanie, = Hof 2, Tisch 79, Nummer 2 Polat, Stefanie, = Hof 2, Tisch 83, Nummer 3
Popescu, Matthias, = Hof 1, Tisch 12, Nummer 3 Popescu, Matthias, = Hof 1, Tisch 15, Nummer 4
Richter, Anja, = Hof 1, Tisch 23, Nummer 5 Richter, Anja, = Hof 1, Tisch 23, Nummer 4
Richter, Anja, Prof. Dr. = Hof 2, Tisch 54, Nummer 4 Richter, Anja, Prof. Dr. = Hof 2, Tisch 61, Nummer 4
Richter, Anton, = Hof 1, Tisch 23, Nummer 4 Richter, Anton, = Hof 1, Tisch 23, Nummer 3
Richter, Greta, = Hof 1, Tisch 23, Nummer 3 Richter, Greta, = Hof 1, Tisch 23, Nummer 5
Richter, Julia, Prof. Dr. = Hof 1, Tisch 37, Nummer 3 Richter, Julia, Prof. Dr. = Hof 2, Tisch 50, Nummer 4
Richter, Marco, = Hof 2, Tisch 71, Nummer 4 Richter, Marco, = Hof 2, Tisch 52, Nummer 5
Richter, Matthias, = Hof 1, Tisch 23, Nummer 2 Richter, Matthias, = Hof 1, Tisch 23, Nummer 2
Richter, Stefan, = Hof 1, Tisch 1, Nummer 2 Richter, Stefan, = Hof 2, Tisch 67, Nummer 2
Rossi, Emilia, = Hof 2, Tisch 87, Nummer 3 Rossi, Emilia, = Hof 2, Tisch 84, Nummer 4
Rossi, Luca, = Hof 2, Tisch 87, Nummer 2 Rossi, Luca, = Hof 2, Tisch 84, Nummer 3
Rossi, Melanie, = Hof 2, Tisch 87, Nummer 4 Rossi, Melanie, = Hof 2, Tisch 84, Nummer 2
Roth, Christian, = Hof 2, Tisch 53, Nummer 2 Roth, Christian, = Hof 2, Tisch 60, Nummer 4
Roth, Julia, Prof. Dr. = Hof 1, Tisch 17, Nummer 3 Roth, Julia, Prof. Dr. = Hof 1, Tisch 9, Nummer 3
Roth, Olga, = Hof 1, Tisch 2, Nummer 2 Roth, Olga, = Hof 1, Tisch 37, Nummer 3
Roth, Sarah, = Hof 2, Tisch 53, Nummer 4 Roth, Sarah, = Hof 2, Tisch 60, Nummer 2
Roth, Sofia, = Hof 2, Tisch 53, Nummer 3 Roth, Sofia, = Hof 2, Tisch 60, Nummer 3
Sahin, Kathrin, = Hof 2, Tisch 55, Nummer 4 Sahin, Kathrin, = Hof 2, Tisch 77, Nummer 4
Sahin, Markus, = Hof 2, Tisch 55, Nummer 3 Sahin, Markus, = Hof 2, Tisch 77, Nummer 5
Sahin, Nicole, = Hof 2, Tisch 55, Nummer 2 Sahin, Nicole, = Hof 2, Tisch 77, Nummer 3
Sahin, Patrick, = Hof 2, Tisch 55, Nummer 5 Sahin, Patrick, = Hof 2, Tisch 77, Nummer 2
Sahin, Thomas, = Hof 2, Tisch 54, Nummer 3 Sahin, Thomas, = Hof 2, Tisch 61, Nummer 2
Schmidt, Giovanna, = Hof 1, Tisch 41, Nummer 3 Schmidt, Giovanna, = Hof 1, Tisch 45, Nummer 2
Schmidt, Marie, = Hof 1, Tisch 41, Nummer 2 Schmidt, Marie, = Hof 1, Tisch 45, Nummer 3
Schmidt, Matthias, = Hof 1, Tisch 41, Nummer 4 Schmidt, Matthias, = Hof 1, Tisch 45, Nummer 4
Schmidt, Nicole, = Hof 1, Tisch 16, Nummer 4 Schmidt, Nicole, = Hof 1, Tisch 10, Nummer 2
Schmitt, Dennis, Prof. Dr. = Hof 1, Tisch 1, Nummer 3 Schmitt, Dennis, Prof. Dr. = Hof 2, Tisch 68, Nummer 2
Schmitt, Markus, = Hof 1, Tisch 11, Nummer 5 Schmitt, Markus, = Hof 1, Tisch 26, Nummer 4
Schmitt, Markus, = Hof 2, Tisch 86, Nummer 3 Schmitt, Markus, = Hof 2, Tisch 79, Nummer 3
Schmitt, Sarah, = Hof 2, Tisch 86, Nummer 4 Schmitt, Sarah, = Hof 2, Tisch 79, Nummer 4
Schmitt, Sofia, = Hof 2, Tisch 86, Nummer 2 Schmitt, Sofia, = Hof 2, Tisch 79, Nummer 2
Schmitt, Stefan, Prof. Dr. = Hof 2, Tisch 77, Nummer 2 Schmitt, Stefan, Prof. Dr. = Hof 2, Tisch 72, Nummer 2
Schwarz, Giovanna, = Hof 2, Tisch 78, Nummer 2 Schwarz, Giovanna, = Hof 2, Tisch 56, Nummer 3
Seidel, Anja, Dr. = Hof 1, Tisch 45, Nummer 3 Seidel, Anja, Dr. = Hof 1, Tisch 17, Nummer 2
Seidel, Markus, Dr. = Hof 1, Tisch 11, Nummer 3 Seidel, Markus, Dr. = Hof 1, Tisch 3, Nummer 4
Seidel, Yusuf, Prof. Dr. = Hof 1, Tisch 4, Nummer 2 Seidel, Yusuf, Prof. Dr. = Hof 1, Tisch 1, Nummer 5
Seifert, Elif, = Hof 2, Tisch 80, Nummer 4 Seifert, Elif, = Hof 2, Tisch 48, Nummer 4
Seifert, Leni, = Hof 1, Tisch 27, Nummer 3 Seifert, Leni, = Hof 2, Tisch 48, Nummer 2
Seifert, Marco, Prof. Dr. = Hof 2, Tisch 69, Nummer 3 Seifert, Marco, Prof. Dr. = Hof 2, Tisch 66, Nummer 4
Seifert, Nicole, = Hof 1, Tisch 27, Nummer 4 Seifert, Nicole, = Hof 2, Tisch 49, Nummer 5
Seifert, Stefanie, Dr. = Hof 1, Tisch 17, Nummer 2 Seifert, Stefanie, Dr. = Hof 1, Tisch 9, Nummer 2
Seifert, Timo, = Hof 2, Tisch 80, Nummer 2 Seifert, Timo, = Hof 2, Tisch 48, Nummer 3
Seifert, Yusuf, = Hof 2, Tisch 80, Nummer 3 Seifert, Yusuf, = Hof 2, Tisch 49, Nummer 4
Simon, Andreas, = Hof 2, Tisch 63, Nummer 2 Simon, Andreas, = Hof 2, Tisch 81, Nummer 2
Simon, Emma, = Hof 2, Tisch 63, Nummer 5 Simon, Emma, = Hof 2, Tisch 81, Nummer 4
Simon, Lena, = Hof 2, Tisch 63, Nummer 3 Simon, Lena, = Hof 2, Tisch 81, Nummer 5
Simon, Markus, = Hof 2, Tisch 63, Nummer 4 Simon, Markus, = Hof 2, Tisch 81, Nummer 3
Simon, Svenja, = Hof 1, Tisch 20, Nummer 5 Simon, Svenja, = Hof 1, Tisch 15, Nummer 2
Stein, Ben, = Hof 2, Tisch 75, Nummer 3 Stein, Ben, = Hof 2, Tisch 87, Nummer 2
Stein, Emilia, = Hof 2, Tisch 75, Nummer 2 Stein, Emilia, = Hof 2, Tisch 87, Nummer 3
Stein, Giovanna, = Hof 2, Tisch 75, Nummer 4 Stein, Giovanna, = Hof 2, Tisch 87, Nummer 4
Stein, Markus, Prof. Dr. = Hof 1, Tisch 12, Nummer 4 Stein, Markus, Prof. Dr. = Hof 1, Tisch 15, Nummer 3
Stein, Nadine, Dr. = Hof 1, Tisch 10, Nummer 4 Stein, Nadine, Dr. = Hof 1, Tisch 26, Nummer 2
Stein, Thomas, = Hof 2, Tisch 75, Nummer 5 Stein, Thomas, = Hof 2, Tisch 87, Nummer 5
Steinbach, Elisabeth, = Hof 1, Tisch 6, Nummer 3 Steinbach, Elisabeth, = Hof 1, Tisch 6, Nummer 4
Steinbach, Georg, = Hof 1, Tisch 6, Nummer 2 Steinbach, Georg, = Hof 1, Tisch 6, Nummer 5
Thiel, Christina, = Hof 2, Tisch 65, Nummer 4 Thiel, Christina, = Hof 2, Tisch 64, Nummer 4
Thiel, Jan, Dr. = Hof 2, Tisch 54, Nummer 2 Thiel, Jan, Dr. = Hof 2, Tisch 61, Nummer 3
Thiel, Julia, = Hof 2, Tisch 65, Nummer 2 Thiel, Julia, = Hof 2, Tisch 64, Nummer 2
Thiel, Yusuf, = Hof 2, Tisch 65, Nummer 3 Thiel, Yusuf, = Hof 2, Tisch 64, Nummer 3
Tran, Marija, = Hof 2, Tisch 68, Nummer 3 Tran, Marija, = Hof 2, Tisch 80, Nummer 2
Tran, Olga, = Hof 1, Tisch 45, Nummer 2 Tran, Olga, = Hof 1, Tisch 17, Nummer 3
Tran, Thomas, Prof. Dr. = Hof 2, Tisch 70, Nummer 2 Tran, Thomas, Prof. Dr. = Hof 2, Tisch 53, Nummer 5
Wagner, Henry, = Hof 2, Tisch 82, Nummer 5 Wagner, Henry, = Hof 2, Tisch 59, Nummer 2
Wagner, Marco, = Hof 2, Tisch 82, Nummer 3 Wagner, Marco, = Hof 2, Tisch 59, Nummer 3
Wagner, Nicole, = Hof 2, Tisch 82, Nummer 2 Wagner, Nicole, = Hof 2, Tisch 59, Nummer 4
Wagner, Sarah, = Hof 2, Tisch 82, Nummer 4 Wagner, Sarah, = Hof 2, Tisch 59, Nummer 5
Weber, Andreas, = Hof 1, Tisch 37, Nummer 4 Weber, Andreas, = Hof 2, Tisch 50, Nummer 2
Weber, Julia, = Hof 1, Tisch 10, Nummer 5 Weber, Julia, = Hof 1, Tisch 1, Nummer 2
Weber, Katrin, = Hof 2, Tisch 77, Nummer 4 Weber, Katrin, = Hof 2, Tisch 72, Nummer 4
Weber, Yusuf, = Hof 2, Tisch 78, Nummer 3 Weber, Yusuf, = Hof 2, Tisch 56, Nummer 2
Werner, Andreas, = Hof 2, Tisch 66, Nummer 2 Werner, Andreas, = Hof 1, Tisch 35, Nummer 5
Werner, Dennis, Prof. Dr. = Hof 1, Tisch 45, Nummer 4 Werner, Dennis, Prof. Dr. = Hof 1, Tisch 17, Nummer 4
Werner, Katrin, = Hof 2, Tisch 49, Nummer 5 Werner, Katrin, = Hof 2, Tisch 55, Nummer 4
Werner, Luca, = Hof 2, Tisch 77, Nummer 3 Werner, Luca, = Hof 2, Tisch 72, Nummer 3
Werner, Marco, = Hof 2, Tisch 66, Nummer 4 Werner, Marco, = Hof 1, Tisch 35, Nummer 4
Werner, Nadine, = Hof 2, Tisch 66, Nummer 3 Werner, Nadine, = Hof 1, Tisch 35, Nummer 3
Werner, Sandra, = Hof 2, Tisch 66, Nummer 5 Werner, Sandra, = Hof 1, Tisch 35, Nummer 2
Winkler, Lena, = Hof 1, Tisch 29, Nummer 2 Winkler, Lena, = Hof 1, Tisch 25, Nummer 5
Winkler, Marco, = Hof 1, Tisch 3, Nummer 2 Winkler, Marco, = Hof 1, Tisch 2, Nummer 5
Winkler, Patrick, = Hof 1, Tisch 29, Nummer 3 Winkler, Patrick, = Hof 1, Tisch 25, Nummer 2
Winkler, Thomas, = Hof 1, Tisch 17, Nummer 4 Winkler, Thomas, = Hof 1, Tisch 9, Nummer 4
Wolf, Ben, = Hof 2, Tisch 76, Nummer 3 Wolf, Ben, = Hof 2, Tisch 88, Nummer 3
Wolf, Emma, = Hof 2, Tisch 76, Nummer 2 Wolf, Emma, = Hof 2, Tisch 88, Nummer 2
Wolf, Julia, = Hof 2, Tisch 76, Nummer 4 Wolf, Julia, = Hof 2, Tisch 88, Nummer 5
Wolf, Thomas, = Hof 2, Tisch 76, Nummer 5 Wolf, Thomas, = Hof 2, Tisch 88, Nummer 4
Zimmermann, Jan, = Hof 1, Tisch 15, Nummer 5 Zimmermann, Jan, = Hof 2, Tisch 71, Nummer 3
Zimmermann, Markus, = Hof 1, Tisch 15, Nummer 3 Zimmermann, Markus, = Hof 2, Tisch 71, Nummer 5
Zimmermann, Mia, = Hof 1, Tisch 15, Nummer 2 Zimmermann, Mia, = Hof 2, Tisch 71, Nummer 4
Zimmermann, Patrick, = Hof 1, Tisch 1, Nummer 4 Zimmermann, Patrick, = Hof 2, Tisch 68, Nummer 5
Zimmermann, Svenja, = Hof 1, Tisch 15, Nummer 4 Zimmermann, Svenja, = Hof 2, Tisch 71, Nummer 2
1 Aksoy Luca = Hof 1 Tisch 35 Tisch 30 Nummer 3 Nummer 2
2 Aksoy Marie = Hof 1 Tisch 35 Tisch 30 Nummer 4 Nummer 4
3 Aksoy Marija = Hof 2 Tisch 70 Tisch 53 Nummer 5 Nummer 2
4 Aksoy Michael Dr. = Hof 2 Tisch 49 Tisch 55 Nummer 2 Nummer 2
5 Aksoy Nadine = Hof 1 Tisch 36 Tisch 21 Nummer 3 Nummer 3
6 Aksoy Nicole = Hof 2 = Hof 1 Tisch 62 Tisch 31 Nummer 5 Nummer 5
7 Aksoy Sergej = Hof 1 Tisch 36 Tisch 21 Nummer 2 Nummer 2
8 Aksoy Sofia = Hof 1 Tisch 35 Tisch 30 Nummer 2 Nummer 3
9 Aksoy Thomas = Hof 1 Tisch 36 Tisch 21 Nummer 4 Nummer 4
10 Albrecht Andreas = Hof 1 Tisch 12 Tisch 8 Nummer 5 Nummer 2
11 Albrecht Emre Prof. Dr. = Hof 1 Tisch 2 Tisch 37 Nummer 4 Nummer 4
12 Albrecht Sarah = Hof 1 Tisch 12 Tisch 8 Nummer 2 Nummer 4
13 Albrecht Yusuf Prof. Dr. = Hof 1 Tisch 20 Tisch 15 Nummer 4 Nummer 5
14 Arnold Christian = Hof 2 Tisch 50 Tisch 69 Nummer 3 Nummer 3
15 Arnold Jennifer = Hof 2 Tisch 50 Tisch 70 Nummer 4 Nummer 2
16 Arnold Jennifer Dr. = Hof 1 Tisch 13 Tisch 28 Nummer 4 Nummer 4
17 Arnold Leni = Hof 2 Tisch 51 Tisch 70 Nummer 2 Nummer 3
18 Arnold Mila = Hof 2 Tisch 50 Tisch 69 Nummer 2 Nummer 4
19 Arnold Nadine = Hof 2 Tisch 71 Tisch 52 Nummer 3 Nummer 3
20 Arnold Patrick = Hof 2 Tisch 51 Tisch 69 Nummer 3 Nummer 2
21 Barth Lina = Hof 2 = Hof 1 Tisch 67 Tisch 16 Nummer 5 Nummer 3
22 Barth Markus = Hof 1 = Hof 2 Tisch 44 Tisch 49 Nummer 3 Nummer 3
23 Barth Nadine = Hof 2 = Hof 1 Tisch 67 Tisch 16 Nummer 3 Nummer 4
24 Barth Patrick = Hof 2 = Hof 1 Tisch 67 Tisch 16 Nummer 2 Nummer 2
25 Barth Timo = Hof 2 = Hof 1 Tisch 67 Tisch 16 Nummer 4 Nummer 5
26 Bauer Dragana = Hof 2 = Hof 1 Tisch 57 Tisch 42 Nummer 5 Nummer 4
27 Bauer Yusuf = Hof 1 Tisch 4 Tisch 2 Nummer 3 Nummer 3
28 Becker Jan = Hof 1 = Hof 2 Tisch 42 Tisch 46 Nummer 2 Nummer 2
29 Becker Marija = Hof 1 Tisch 32 Tisch 43 Nummer 2 Nummer 2
30 Becker Nicole = Hof 1 = Hof 2 Tisch 42 Tisch 46 Nummer 4 Nummer 3
31 Becker Sandra = Hof 1 = Hof 2 Tisch 42 Tisch 46 Nummer 3 Nummer 4
32 Berger Andreas = Hof 1 Tisch 33 Tisch 20 Nummer 5 Nummer 3
33 Berger Anton = Hof 1 Tisch 25 Tisch 29 Nummer 4 Nummer 3
34 Berger Jennifer = Hof 1 Tisch 33 Tisch 20 Nummer 4 Nummer 5
35 Berger Layla = Hof 1 Tisch 25 Tisch 29 Nummer 3 Nummer 2
36 Berger Nadine Dr. = Hof 2 Tisch 60 Tisch 62 Nummer 4 Nummer 2
37 Berger Stefan = Hof 1 Tisch 25 Tisch 20 Nummer 5 Nummer 4
38 Berger Svenja = Hof 1 Tisch 25 Tisch 20 Nummer 2 Nummer 2
39 Bianchi Jan Dr. = Hof 1 Tisch 3 Tisch 2 Nummer 3 Nummer 2
40 Bianchi Mia = Hof 1 Tisch 31 Tisch 38 Nummer 4 Nummer 3
41 Bianchi Sandra = Hof 1 Tisch 31 Tisch 38 Nummer 3 Nummer 4
42 Bianchi Thomas = Hof 1 Tisch 2 Tisch 37 Nummer 3 Nummer 2
43 Bianchi Thomas = Hof 1 Tisch 31 Tisch 38 Nummer 2 Nummer 2
44 Braun Christian = Hof 2 = Hof 1 Tisch 48 Tisch 3 Nummer 3 Nummer 3
45 Braun Dragana = Hof 2 = Hof 1 Tisch 47 Tisch 11 Nummer 5 Nummer 3
46 Braun Jan = Hof 2 = Hof 1 Tisch 48 Tisch 11 Nummer 4 Nummer 5
47 Braun Julia = Hof 2 = Hof 1 Tisch 47 Tisch 11 Nummer 2 Nummer 4
48 Braun Milan = Hof 2 = Hof 1 Tisch 48 Tisch 11 Nummer 2 Nummer 2
49 Braun Nadine = Hof 2 = Hof 1 Tisch 48 Tisch 3 Nummer 5 Nummer 2
50 Busch Emre = Hof 2 = Hof 1 Tisch 56 Tisch 39 Nummer 5 Nummer 4
51 Busch Marie = Hof 2 = Hof 1 Tisch 56 Tisch 39 Nummer 2 Nummer 3
52 Busch Michael = Hof 2 = Hof 1 Tisch 56 Tisch 39 Nummer 3 Nummer 2
53 Busch Olga = Hof 2 = Hof 1 Tisch 56 Tisch 39 Nummer 4 Nummer 5
54 Busch Patrick = Hof 2 Tisch 49 Tisch 55 Nummer 4 Nummer 5
55 Celik Elif = Hof 1 Tisch 33 Tisch 19 Nummer 3 Nummer 4
56 Celik Patrick = Hof 1 Tisch 33 Tisch 19 Nummer 2 Nummer 3
57 Dallmann Charlotte = Hof 1 Tisch 7 Tisch 7 Nummer 5 Nummer 2
58 Dallmann Heinrich = Hof 1 Tisch 7 Tisch 7 Nummer 2 Nummer 5
59 Dallmann Margarete = Hof 1 Tisch 7 Tisch 7 Nummer 3 Nummer 3
60 Dallmann Maximilian = Hof 1 Tisch 7 Tisch 7 Nummer 4 Nummer 4
61 Demir Sandra Dr. = Hof 1 Tisch 29 Tisch 29 Nummer 4 Nummer 4
62 Dietrich Dragana Prof. Dr. = Hof 2 Tisch 59 Tisch 56 Nummer 2 Nummer 4
63 Dietrich Jennifer = Hof 2 Tisch 64 Tisch 63 Nummer 3 Nummer 3
64 Dietrich Marco = Hof 2 Tisch 64 Tisch 63 Nummer 4 Nummer 2
65 Dietrich Sofia = Hof 2 Tisch 64 Tisch 63 Nummer 2 Nummer 4
66 Engel Anja = Hof 1 Tisch 22 Tisch 27 Nummer 2 Nummer 2
67 Engel Anton = Hof 1 Tisch 22 Tisch 28 Nummer 4 Nummer 3
68 Engel Julia = Hof 1 Tisch 13 Tisch 27 Nummer 2 Nummer 4
69 Engel Nicole = Hof 1 Tisch 22 Tisch 28 Nummer 3 Nummer 5
70 Engel Yusuf = Hof 1 Tisch 13 Tisch 27 Nummer 3 Nummer 3
71 Esposito Jan Dr. = Hof 1 Tisch 16 Tisch 10 Nummer 2 Nummer 4
72 Esposito Yusuf Prof. Dr. = Hof 1 Tisch 32 Tisch 43 Nummer 4 Nummer 3
73 Frank Dennis = Hof 1 Tisch 8 Tisch 12 Nummer 2 Nummer 2
74 Frank Finn = Hof 1 Tisch 19 Tisch 22 Nummer 3 Nummer 2
75 Frank Lena = Hof 1 Tisch 19 Tisch 22 Nummer 2 Nummer 3
76 Frank Marie = Hof 1 Tisch 19 Tisch 22 Nummer 4 Nummer 4
77 Frank Nadine = Hof 1 Tisch 8 Tisch 12 Nummer 3 Nummer 3
78 Franke Amira = Hof 2 Tisch 85 Tisch 57 Nummer 5 Nummer 3
79 Franke Julia = Hof 2 Tisch 84 Tisch 57 Nummer 3 Nummer 2
80 Franke Marco = Hof 2 Tisch 84 Tisch 67 Nummer 4 Nummer 3
81 Franke Michael = Hof 2 Tisch 85 Tisch 57 Nummer 4 Nummer 4
82 Franke Olga = Hof 2 Tisch 84 Tisch 67 Nummer 2 Nummer 5
83 Freifrau von Waldeck Antonia = Hof 1 Tisch 6 Tisch 6 Nummer 4 Nummer 3
84 Freiherr von Waldeck Konstantin Dr. = Hof 1 Tisch 6 Tisch 6 Nummer 5 Nummer 2
85 Grothe Alexander Dr. h.c. = Hof 1 Tisch 5 Tisch 5 Nummer 3 Nummer 5
86 Grothe Beate = Hof 1 Tisch 5 Tisch 5 Nummer 5 Nummer 2
87 Haas Jennifer Dr. = Hof 1 Dr. = Hof 2 Tisch 37 Tisch 49 Nummer 2 Nummer 2
88 Haas Patrick = Hof 2 = Hof 1 Tisch 57 Tisch 42 Nummer 2 Nummer 5
89 Hansen Giovanna = Hof 1 Tisch 9 Tisch 14 Nummer 4 Nummer 2
90 Hansen Markus = Hof 1 Tisch 9 Tisch 14 Nummer 2 Nummer 4
91 Hansen Nicole Dr. = Hof 2 Dr. = Hof 1 Tisch 57 Tisch 41 Nummer 3 Nummer 2
92 Hansen Olga = Hof 1 Tisch 9 Tisch 14 Nummer 3 Nummer 3
93 Hansen Thomas = Hof 1 Tisch 16 Tisch 10 Nummer 5 Nummer 3
94 Hartmann Deniz = Hof 1 Tisch 8 Tisch 13 Nummer 5 Nummer 2
95 Hartmann Marija = Hof 1 Tisch 18 Tisch 12 Nummer 3 Nummer 4
96 Hartmann Nadine = Hof 1 Tisch 8 Tisch 13 Nummer 4 Nummer 4
97 Hartmann Olga = Hof 1 Tisch 18 Tisch 13 Nummer 4 Nummer 3
98 Hartmann Thomas = Hof 1 Tisch 18 Tisch 12 Nummer 2 Nummer 5
99 Hoffmann Emre = Hof 2 Tisch 59 Tisch 56 Nummer 4 Nummer 5
100 Hoffmann Patrick Prof. Dr. = Hof 2 Tisch 71 Tisch 52 Nummer 5 Nummer 4
101 Hoffmann Thomas Dr. = Hof 1 Tisch 45 Tisch 17 Nummer 5 Nummer 5
102 Horn Kathrin = Hof 2 Tisch 83 Tisch 82 Nummer 4 Nummer 3
103 Horn Layla = Hof 2 Tisch 83 Tisch 82 Nummer 2 Nummer 4
104 Horn Leon = Hof 2 Tisch 83 Tisch 82 Nummer 3 Nummer 2
105 Horn Michael = Hof 2 Tisch 83 Tisch 82 Nummer 5 Nummer 5
106 Kaya Christina = Hof 1 Tisch 40 Tisch 44 Nummer 2 Nummer 2
107 Kaya Luca = Hof 1 Tisch 40 Tisch 44 Nummer 3 Nummer 3
108 Kaya Nicole = Hof 1 Tisch 40 Tisch 44 Nummer 4 Nummer 4
109 Kaya Patrick Dr. = Hof 1 Tisch 4 Tisch 1 Nummer 5 Nummer 4
110 Kaya Timo Prof. Dr. = Hof 1 Tisch 29 Tisch 29 Nummer 5 Nummer 5
111 Kessler Ferdinand Dr. = Hof 1 Tisch 5 Tisch 5 Nummer 2 Nummer 3
112 Kessler Viktoria = Hof 1 Tisch 5 Tisch 5 Nummer 4 Nummer 4
113 Klein Emre = Hof 1 Tisch 4 Tisch 1 Nummer 4 Nummer 3
114 Klein Lina = Hof 2 Tisch 52 Tisch 51 Nummer 3 Nummer 3
115 Klein Markus = Hof 2 = Hof 1 Tisch 62 Tisch 31 Nummer 2 Nummer 4
116 Klein Milan = Hof 2 Tisch 52 Tisch 51 Nummer 2 Nummer 2
117 Klein Olga Dr. = Hof 1 Tisch 13 Tisch 28 Nummer 5 Nummer 2
118 Klein Stefanie = Hof 2 Tisch 52 Tisch 51 Nummer 4 Nummer 4
119 Koch Emil = Hof 2 = Hof 1 Tisch 58 Tisch 41 Nummer 3 Nummer 4
120 Koch Jan = Hof 2 = Hof 1 Tisch 59 Tisch 40 Nummer 5 Nummer 5
121 Koch Kathrin Dr. = Hof 2 Tisch 68 Tisch 80 Nummer 2 Nummer 4
122 Koch Marie = Hof 2 = Hof 1 Tisch 58 Tisch 41 Nummer 4 Nummer 5
123 Koch Michael = Hof 2 = Hof 1 Tisch 59 Tisch 40 Nummer 3 Nummer 3
124 Koch Olga = Hof 2 = Hof 1 Tisch 58 Tisch 40 Nummer 2 Nummer 4
125 Koch Sarah = Hof 2 = Hof 1 Tisch 58 Tisch 40 Nummer 5 Nummer 2
126 Kovac Anja = Hof 1 Tisch 26 Tisch 32 Nummer 4 Nummer 4
127 Kovac Henry = Hof 1 Tisch 26 Tisch 24 Nummer 3 Nummer 3
128 Kovac Lena = Hof 1 Tisch 34 Tisch 24 Nummer 2 Nummer 2
129 Kovac Luca = Hof 2 Tisch 72 Tisch 67 Nummer 3 Nummer 4
130 Kovac Marco = Hof 1 Tisch 34 Tisch 32 Nummer 3 Nummer 2
131 Kovac Marija = Hof 1 Tisch 34 Tisch 32 Nummer 4 Nummer 3
132 Kovac Matthias = Hof 1 Tisch 32 Tisch 43 Nummer 3 Nummer 4
133 Kovac Tobias = Hof 1 Tisch 26 Tisch 24 Nummer 2 Nummer 4
134 Kraus Markus = Hof 1 Tisch 10 Tisch 34 Nummer 3 Nummer 2
135 Kraus Patrick Dr. = Hof 2 Tisch 69 Tisch 66 Nummer 4 Nummer 3
136 Krause Andreas = Hof 2 Tisch 88 Tisch 75 Nummer 2 Nummer 4
137 Krause Arda = Hof 2 Tisch 88 Tisch 75 Nummer 4 Nummer 5
138 Krause Christina Dr. = Hof 1 Tisch 3 Tisch 2 Nummer 4 Nummer 4
139 Krause Daniel = Hof 2 = Hof 1 Tisch 62 Tisch 31 Nummer 4 Nummer 2
140 Krause Dragana Dr. = Hof 2 Tisch 72 Tisch 68 Nummer 4 Nummer 3
141 Krause Emma = Hof 2 Tisch 88 Tisch 75 Nummer 3 Nummer 3
142 Krause Julia = Hof 2 Tisch 88 Tisch 75 Nummer 5 Nummer 2
143 Krause Matthias = Hof 2 Tisch 78 Tisch 66 Nummer 4 Nummer 2
144 Krause Thomas = Hof 2 = Hof 1 Tisch 47 Tisch 42 Nummer 4 Nummer 2
145 Kuhn Julia Dr. = Hof 2 Tisch 68 Tisch 80 Nummer 4 Nummer 3
146 Lange Dragana = Hof 2 = Hof 1 Tisch 73 Tisch 8 Nummer 3 Nummer 3
147 Lange Jan = Hof 2 = Hof 1 Tisch 81 Tisch 36 Nummer 3 Nummer 3
148 Lange Michael = Hof 2 = Hof 1 Tisch 73 Tisch 36 Nummer 2 Nummer 2
149 Lange Sergej = Hof 2 Tisch 49 Tisch 55 Nummer 3 Nummer 3
150 Lange Sofia = Hof 2 = Hof 1 Tisch 81 Tisch 36 Nummer 4 Nummer 4
151 Lange Svenja = Hof 2 = Hof 1 Tisch 81 Tisch 8 Nummer 2 Nummer 5
152 Lehmann Giovanna = Hof 1 Tisch 21 Tisch 18 Nummer 2 Nummer 4
153 Lehmann Layla = Hof 1 Tisch 20 Tisch 18 Nummer 2 Nummer 5
154 Lehmann Markus = Hof 1 Tisch 21 Tisch 18 Nummer 4 Nummer 2
155 Lehmann Milan = Hof 1 Tisch 20 Tisch 18 Nummer 3 Nummer 3
156 Lehmann Nicole = Hof 1 Tisch 21 Tisch 19 Nummer 3 Nummer 5
157 Lehmann Patrick = Hof 2 Tisch 60 Tisch 62 Nummer 2 Nummer 4
158 Lehmann Thomas = Hof 1 Tisch 21 Tisch 19 Nummer 5 Nummer 2
159 Ludwig Aylin Dr. = Hof 2 Tisch 69 Tisch 66 Nummer 2 Nummer 5
160 Ludwig Elias = Hof 2 Tisch 46 Tisch 76 Nummer 2 Nummer 3
161 Ludwig Elif = Hof 2 Tisch 46 Tisch 76 Nummer 4 Nummer 2
162 Ludwig Emre = Hof 2 Tisch 46 Tisch 76 Nummer 3 Nummer 4
163 Ludwig Emre Prof. Dr. = Hof 2 Prof. Dr. = Hof 1 Tisch 62 Tisch 31 Nummer 3 Nummer 3
164 Ludwig Giovanna = Hof 2 Tisch 46 Tisch 76 Nummer 5 Nummer 5
165 Maier Arda = Hof 2 Tisch 61 Tisch 78 Nummer 4 Nummer 4
166 Maier Christian = Hof 2 Tisch 61 Tisch 78 Nummer 2 Nummer 5
167 Maier Olga = Hof 2 Tisch 61 Tisch 78 Nummer 3 Nummer 2
168 Maier Sarah = Hof 2 Tisch 61 Tisch 78 Nummer 5 Nummer 3
169 Neumann Jennifer = Hof 1 = Hof 2 Tisch 14 Tisch 86 Nummer 5 Nummer 5
170 Neumann Lina = Hof 1 = Hof 2 Tisch 14 Tisch 86 Nummer 3 Nummer 4
171 Neumann Matteo = Hof 1 = Hof 2 Tisch 14 Tisch 86 Nummer 4 Nummer 3
172 Neumann Thomas = Hof 1 = Hof 2 Tisch 14 Tisch 86 Nummer 2 Nummer 2
173 Nguyen Anja = Hof 1 = Hof 2 Tisch 43 Tisch 47 Nummer 3 Nummer 4
174 Nguyen Daniel = Hof 1 = Hof 2 Tisch 43 Tisch 47 Nummer 4 Nummer 2
175 Nguyen Julia = Hof 1 Tisch 16 Tisch 9 Nummer 3 Nummer 5
176 Nguyen Sofia = Hof 1 = Hof 2 Tisch 43 Tisch 47 Nummer 2 Nummer 3
177 Nowak Aylin = Hof 1 Tisch 27 Tisch 33 Nummer 2 Nummer 5
178 Nowak Felix = Hof 1 Tisch 28 Tisch 34 Nummer 3 Nummer 4
179 Nowak Kathrin = Hof 1 Tisch 28 Tisch 33 Nummer 4 Nummer 4
180 Nowak Lina = Hof 1 Tisch 27 Tisch 33 Nummer 5 Nummer 3
181 Nowak Markus = Hof 1 Tisch 28 Tisch 34 Nummer 2 Nummer 3
182 Nowak Noah = Hof 1 Tisch 28 Tisch 33 Nummer 5 Nummer 2
183 Ott Daniel = Hof 1 = Hof 2 Tisch 38 Tisch 74 Nummer 4 Nummer 3
184 Ott Hannah = Hof 1 = Hof 2 Tisch 30 Tisch 73 Nummer 2 Nummer 2
185 Ott Luca = Hof 2 Tisch 72 Tisch 68 Nummer 2 Nummer 4
186 Ott Matthias = Hof 1 = Hof 2 Tisch 38 Tisch 73 Nummer 2 Nummer 4
187 Ott Melanie = Hof 1 = Hof 2 Tisch 30 Tisch 73 Nummer 5 Nummer 3
188 Ott Olga = Hof 1 = Hof 2 Tisch 38 Tisch 74 Nummer 3 Nummer 4
189 Ott Sergej Prof. Dr. = Hof 2 Prof. Dr. = Hof 1 Tisch 47 Tisch 42 Nummer 3 Nummer 3
190 Ott Yusuf Prof. Dr. = Hof 2 Tisch 60 Tisch 62 Nummer 3 Nummer 3
191 Peters Christian = Hof 1 Tisch 11 Tisch 26 Nummer 4 Nummer 3
192 Peters Nicole = Hof 2 = Hof 1 Tisch 57 Tisch 41 Nummer 4 Nummer 3
193 Petrov Giovanna = Hof 1 Tisch 10 Tisch 34 Nummer 2 Nummer 5
194 Petrov Kathrin = Hof 1 Tisch 30 Tisch 25 Nummer 3 Nummer 3
195 Petrov Kathrin Prof. Dr. = Hof 1 Tisch 11 Tisch 3 Nummer 2 Nummer 5
196 Petrov Matthias = Hof 1 = Hof 2 Tisch 44 Tisch 50 Nummer 2 Nummer 3
197 Petrov Milan = Hof 1 Tisch 30 Tisch 25 Nummer 4 Nummer 4
198 Petrov Sergej = Hof 2 Tisch 70 Tisch 53 Nummer 3 Nummer 4
199 Pohl Dragana = Hof 2 Tisch 74 Tisch 85 Nummer 2 Nummer 3
200 Pohl Emre = Hof 2 Tisch 74 Tisch 85 Nummer 3 Nummer 5
201 Pohl Mia = Hof 2 Tisch 74 Tisch 85 Nummer 4 Nummer 2
202 Pohl Theo = Hof 2 Tisch 74 Tisch 85 Nummer 5 Nummer 4
203 Polat Kathrin = Hof 2 Tisch 70 Tisch 53 Nummer 4 Nummer 3
204 Polat Katrin = Hof 2 Tisch 85 Tisch 83 Nummer 2 Nummer 4
205 Polat Marija = Hof 2 Tisch 71 Tisch 52 Nummer 2 Nummer 2
206 Polat Markus = Hof 2 Tisch 85 Tisch 83 Nummer 3 Nummer 2
207 Polat Sarah = Hof 2 Tisch 79 Tisch 74 Nummer 3 Nummer 5
208 Polat Stefan = Hof 2 Tisch 79 Tisch 74 Nummer 4 Nummer 2
209 Polat Stefanie = Hof 2 Tisch 79 Tisch 83 Nummer 2 Nummer 3
210 Popescu Matthias = Hof 1 Tisch 12 Tisch 15 Nummer 3 Nummer 4
211 Richter Anja = Hof 1 Tisch 23 Tisch 23 Nummer 5 Nummer 4
212 Richter Anja Prof. Dr. = Hof 2 Tisch 54 Tisch 61 Nummer 4 Nummer 4
213 Richter Anton = Hof 1 Tisch 23 Tisch 23 Nummer 4 Nummer 3
214 Richter Greta = Hof 1 Tisch 23 Tisch 23 Nummer 3 Nummer 5
215 Richter Julia Prof. Dr. = Hof 1 Prof. Dr. = Hof 2 Tisch 37 Tisch 50 Nummer 3 Nummer 4
216 Richter Marco = Hof 2 Tisch 71 Tisch 52 Nummer 4 Nummer 5
217 Richter Matthias = Hof 1 Tisch 23 Tisch 23 Nummer 2 Nummer 2
218 Richter Stefan = Hof 1 = Hof 2 Tisch 1 Tisch 67 Nummer 2 Nummer 2
219 Rossi Emilia = Hof 2 Tisch 87 Tisch 84 Nummer 3 Nummer 4
220 Rossi Luca = Hof 2 Tisch 87 Tisch 84 Nummer 2 Nummer 3
221 Rossi Melanie = Hof 2 Tisch 87 Tisch 84 Nummer 4 Nummer 2
222 Roth Christian = Hof 2 Tisch 53 Tisch 60 Nummer 2 Nummer 4
223 Roth Julia Prof. Dr. = Hof 1 Tisch 17 Tisch 9 Nummer 3 Nummer 3
224 Roth Olga = Hof 1 Tisch 2 Tisch 37 Nummer 2 Nummer 3
225 Roth Sarah = Hof 2 Tisch 53 Tisch 60 Nummer 4 Nummer 2
226 Roth Sofia = Hof 2 Tisch 53 Tisch 60 Nummer 3 Nummer 3
227 Sahin Kathrin = Hof 2 Tisch 55 Tisch 77 Nummer 4 Nummer 4
228 Sahin Markus = Hof 2 Tisch 55 Tisch 77 Nummer 3 Nummer 5
229 Sahin Nicole = Hof 2 Tisch 55 Tisch 77 Nummer 2 Nummer 3
230 Sahin Patrick = Hof 2 Tisch 55 Tisch 77 Nummer 5 Nummer 2
231 Sahin Thomas = Hof 2 Tisch 54 Tisch 61 Nummer 3 Nummer 2
232 Schmidt Giovanna = Hof 1 Tisch 41 Tisch 45 Nummer 3 Nummer 2
233 Schmidt Marie = Hof 1 Tisch 41 Tisch 45 Nummer 2 Nummer 3
234 Schmidt Matthias = Hof 1 Tisch 41 Tisch 45 Nummer 4 Nummer 4
235 Schmidt Nicole = Hof 1 Tisch 16 Tisch 10 Nummer 4 Nummer 2
236 Schmitt Dennis Prof. Dr. = Hof 1 Prof. Dr. = Hof 2 Tisch 1 Tisch 68 Nummer 3 Nummer 2
237 Schmitt Markus = Hof 1 Tisch 11 Tisch 26 Nummer 5 Nummer 4
238 Schmitt Markus = Hof 2 Tisch 86 Tisch 79 Nummer 3 Nummer 3
239 Schmitt Sarah = Hof 2 Tisch 86 Tisch 79 Nummer 4 Nummer 4
240 Schmitt Sofia = Hof 2 Tisch 86 Tisch 79 Nummer 2 Nummer 2
241 Schmitt Stefan Prof. Dr. = Hof 2 Tisch 77 Tisch 72 Nummer 2 Nummer 2
242 Schwarz Giovanna = Hof 2 Tisch 78 Tisch 56 Nummer 2 Nummer 3
243 Seidel Anja Dr. = Hof 1 Tisch 45 Tisch 17 Nummer 3 Nummer 2
244 Seidel Markus Dr. = Hof 1 Tisch 11 Tisch 3 Nummer 3 Nummer 4
245 Seidel Yusuf Prof. Dr. = Hof 1 Tisch 4 Tisch 1 Nummer 2 Nummer 5
246 Seifert Elif = Hof 2 Tisch 80 Tisch 48 Nummer 4 Nummer 4
247 Seifert Leni = Hof 1 = Hof 2 Tisch 27 Tisch 48 Nummer 3 Nummer 2
248 Seifert Marco Prof. Dr. = Hof 2 Tisch 69 Tisch 66 Nummer 3 Nummer 4
249 Seifert Nicole = Hof 1 = Hof 2 Tisch 27 Tisch 49 Nummer 4 Nummer 5
250 Seifert Stefanie Dr. = Hof 1 Tisch 17 Tisch 9 Nummer 2 Nummer 2
251 Seifert Timo = Hof 2 Tisch 80 Tisch 48 Nummer 2 Nummer 3
252 Seifert Yusuf = Hof 2 Tisch 80 Tisch 49 Nummer 3 Nummer 4
253 Simon Andreas = Hof 2 Tisch 63 Tisch 81 Nummer 2 Nummer 2
254 Simon Emma = Hof 2 Tisch 63 Tisch 81 Nummer 5 Nummer 4
255 Simon Lena = Hof 2 Tisch 63 Tisch 81 Nummer 3 Nummer 5
256 Simon Markus = Hof 2 Tisch 63 Tisch 81 Nummer 4 Nummer 3
257 Simon Svenja = Hof 1 Tisch 20 Tisch 15 Nummer 5 Nummer 2
258 Stein Ben = Hof 2 Tisch 75 Tisch 87 Nummer 3 Nummer 2
259 Stein Emilia = Hof 2 Tisch 75 Tisch 87 Nummer 2 Nummer 3
260 Stein Giovanna = Hof 2 Tisch 75 Tisch 87 Nummer 4 Nummer 4
261 Stein Markus Prof. Dr. = Hof 1 Tisch 12 Tisch 15 Nummer 4 Nummer 3
262 Stein Nadine Dr. = Hof 1 Tisch 10 Tisch 26 Nummer 4 Nummer 2
263 Stein Thomas = Hof 2 Tisch 75 Tisch 87 Nummer 5 Nummer 5
264 Steinbach Elisabeth = Hof 1 Tisch 6 Tisch 6 Nummer 3 Nummer 4
265 Steinbach Georg = Hof 1 Tisch 6 Tisch 6 Nummer 2 Nummer 5
266 Thiel Christina = Hof 2 Tisch 65 Tisch 64 Nummer 4 Nummer 4
267 Thiel Jan Dr. = Hof 2 Tisch 54 Tisch 61 Nummer 2 Nummer 3
268 Thiel Julia = Hof 2 Tisch 65 Tisch 64 Nummer 2 Nummer 2
269 Thiel Yusuf = Hof 2 Tisch 65 Tisch 64 Nummer 3 Nummer 3
270 Tran Marija = Hof 2 Tisch 68 Tisch 80 Nummer 3 Nummer 2
271 Tran Olga = Hof 1 Tisch 45 Tisch 17 Nummer 2 Nummer 3
272 Tran Thomas Prof. Dr. = Hof 2 Tisch 70 Tisch 53 Nummer 2 Nummer 5
273 Wagner Henry = Hof 2 Tisch 82 Tisch 59 Nummer 5 Nummer 2
274 Wagner Marco = Hof 2 Tisch 82 Tisch 59 Nummer 3 Nummer 3
275 Wagner Nicole = Hof 2 Tisch 82 Tisch 59 Nummer 2 Nummer 4
276 Wagner Sarah = Hof 2 Tisch 82 Tisch 59 Nummer 4 Nummer 5
277 Weber Andreas = Hof 1 = Hof 2 Tisch 37 Tisch 50 Nummer 4 Nummer 2
278 Weber Julia = Hof 1 Tisch 10 Tisch 1 Nummer 5 Nummer 2
279 Weber Katrin = Hof 2 Tisch 77 Tisch 72 Nummer 4 Nummer 4
280 Weber Yusuf = Hof 2 Tisch 78 Tisch 56 Nummer 3 Nummer 2
281 Werner Andreas = Hof 2 = Hof 1 Tisch 66 Tisch 35 Nummer 2 Nummer 5
282 Werner Dennis Prof. Dr. = Hof 1 Tisch 45 Tisch 17 Nummer 4 Nummer 4
283 Werner Katrin = Hof 2 Tisch 49 Tisch 55 Nummer 5 Nummer 4
284 Werner Luca = Hof 2 Tisch 77 Tisch 72 Nummer 3 Nummer 3
285 Werner Marco = Hof 2 = Hof 1 Tisch 66 Tisch 35 Nummer 4 Nummer 4
286 Werner Nadine = Hof 2 = Hof 1 Tisch 66 Tisch 35 Nummer 3 Nummer 3
287 Werner Sandra = Hof 2 = Hof 1 Tisch 66 Tisch 35 Nummer 5 Nummer 2
288 Winkler Lena = Hof 1 Tisch 29 Tisch 25 Nummer 2 Nummer 5
289 Winkler Marco = Hof 1 Tisch 3 Tisch 2 Nummer 2 Nummer 5
290 Winkler Patrick = Hof 1 Tisch 29 Tisch 25 Nummer 3 Nummer 2
291 Winkler Thomas = Hof 1 Tisch 17 Tisch 9 Nummer 4 Nummer 4
292 Wolf Ben = Hof 2 Tisch 76 Tisch 88 Nummer 3 Nummer 3
293 Wolf Emma = Hof 2 Tisch 76 Tisch 88 Nummer 2 Nummer 2
294 Wolf Julia = Hof 2 Tisch 76 Tisch 88 Nummer 4 Nummer 5
295 Wolf Thomas = Hof 2 Tisch 76 Tisch 88 Nummer 5 Nummer 4
296 Zimmermann Jan = Hof 1 = Hof 2 Tisch 15 Tisch 71 Nummer 5 Nummer 3
297 Zimmermann Markus = Hof 1 = Hof 2 Tisch 15 Tisch 71 Nummer 3 Nummer 5
298 Zimmermann Mia = Hof 1 = Hof 2 Tisch 15 Tisch 71 Nummer 2 Nummer 4
299 Zimmermann Patrick = Hof 1 = Hof 2 Tisch 1 Tisch 68 Nummer 4 Nummer 5
300 Zimmermann Svenja = Hof 1 = Hof 2 Tisch 15 Tisch 71 Nummer 4 Nummer 2
+426 -426
View File
@@ -1,245 +1,229 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="2476.05" height="466.676" viewBox="0 0 2476.05 466.676"> <svg xmlns="http://www.w3.org/2000/svg" width="2476.05" height="466.676" viewBox="0 0 2476.05 466.676">
<rect width="100%" height="100%" fill="white"/> <rect width="100%" height="100%" fill="white"/>
<polyline points="690.014,416.009 735.682,324.673" fill="none" stroke="#e6194b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="1877.37,233.338 1786.04,233.338" fill="none" stroke="#e6194b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="1968.71,50.6676 1877.37,50.6676" fill="none" stroke="#3cb44b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="872.685,50.6676 781.35,50.6676" fill="none" stroke="#3cb44b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="2151.38,233.338 2105.71,324.673" fill="none" stroke="#4363d8" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="187.67,142.003 87.0014,151.337" fill="none" stroke="#4363d8" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="50.6676,50.6676 2060.04,233.338" fill="none" stroke="#f58231" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="918.352,142.003 872.685,233.338" fill="none" stroke="#911eb4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="142.003,50.6676 178.337,151.337" fill="none" stroke="#911eb4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="142.003,233.338 105.669,132.669" fill="none" stroke="#42d4f4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="233.338,50.6676 324.673,50.6676" fill="none" stroke="#42d4f4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="324.673,233.338 279.006,324.673" fill="none" stroke="#f032e6" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="553.011,142.003 461.676,142.003" fill="none" stroke="#bfef45" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="224.004,60.0014 507.344,233.338 452.342,315.34" fill="none" stroke="#bfef45" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="644.347,142.003 680.68,60.0014" fill="none" stroke="#fabed4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="598.679,233.338 690.014,233.338" fill="none" stroke="#fabed4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="735.682,142.003 699.348,41.3338" fill="none" stroke="#469990" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="644.347,324.673 690.014,50.6676" fill="none" stroke="#469990" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="142.003,233.338 197.004,132.669" fill="none" stroke="#dcbeff" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="735.682,324.673 690.014,233.338" fill="none" stroke="#dcbeff" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="507.344,233.338 461.676,324.673" fill="none" stroke="#9a6324" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="1694.7,50.6676 1776.7,60.0014" fill="none" stroke="#4363d8" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="553.011,324.673 644.347,324.673" fill="none" stroke="#000075" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="1877.37,50.6676 1795.37,41.3338" fill="none" stroke="#f58231" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="827.017,324.673 863.351,224.004" fill="none" stroke="#e6194b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="1557.7,142.003 1603.37,233.338" fill="none" stroke="#42d4f4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="1694.7,233.338 1740.37,324.673" fill="none" stroke="#9a6324" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="2060.04,233.338 2014.38,324.673" fill="none" stroke="#9a6324" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="1786.04,233.338 1831.7,324.673" fill="none" stroke="#800000" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="2151.38,233.338 2252.05,242.672" fill="none" stroke="#800000" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="1923.04,324.673 1886.71,406.675" fill="none" stroke="#aaffc3" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="2288.38,324.673 2233.38,224.004" fill="none" stroke="#000075" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="2014.38,324.673 608.013,242.672" fill="none" stroke="#000075" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="50.6676,56.8902 142.003,50.6676" fill="none" stroke="#4363d8" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="1786.04,416.009 1868.04,425.342" fill="none" stroke="#e6194b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="242.672,41.3338 964.02,50.6676" fill="none" stroke="#f58231" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="878.907,50.6676 964.02,50.6676" fill="none" stroke="#f58231" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="644.347,142.003 726.348,132.669" fill="none" stroke="#469990" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="836.351,132.669 918.352,142.003" fill="none" stroke="#469990" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="827.017,142.003 790.683,224.004" fill="none" stroke="#9a6324" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="416.009,233.338 361.007,334.007" fill="none" stroke="#800000" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="370.341,324.673 471.01,334.007" fill="none" stroke="#4363d8" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="589.345,224.004 690.014,233.338" fill="none" stroke="#aaffc3" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="324.673,416.009 406.675,425.342" fill="none" stroke="#42d4f4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="1594.03,41.3338 1694.7,50.6676" fill="none" stroke="#42d4f4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="425.342,406.675 507.344,416.009" fill="none" stroke="#f032e6" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="1612.7,60.0014 1557.7,142.003" fill="none" stroke="#f032e6" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="2334.05,50.6676 2416.05,60.0014" fill="none" stroke="#469990" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="1786.04,50.6676 1740.37,142.003" fill="none" stroke="#bfef45" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="2434.72,41.3338 2379.72,142.003" fill="none" stroke="#dcbeff" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<polyline points="1649.03,142.003 1740.37,142.003" fill="none" stroke="#dcbeff" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="1603.37,233.338 1694.7,233.338" fill="none" stroke="#800000" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<circle cx="324.673" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="324.673" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="324.673" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="324.673" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="324.673" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">24</text> <text x="324.673" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">4</text>
<circle cx="233.338" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2242.71" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="233.338" cy="416.009" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2242.71" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="233.338" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">39</text> <text x="2242.71" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">54</text>
<circle cx="690.014" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1649.03" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="690.014" cy="397.341" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="1649.03" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<circle cx="690.014" cy="434.676" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <text x="1649.03" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">58</text>
<circle cx="690.014" cy="416.009" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2288.38" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<text x="690.014" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">44</text> <circle cx="2288.38" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<circle cx="1968.71" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <text x="2288.38" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">65</text>
<circle cx="1968.71" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="1877.37" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1968.71" cy="69.3352" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="1877.37" cy="214.67" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1968.71" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1877.37" cy="252.006" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<text x="1968.71" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">51</text> <circle cx="1877.37" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<circle cx="2151.38" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <text x="1877.37" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">70</text>
<circle cx="2151.38" cy="214.67" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="872.685" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2151.38" cy="252.006" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="872.685" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="2151.38" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="888.851" cy="60.0014" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<text x="2151.38" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">73</text> <circle cx="856.518" cy="60.0014" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="50.6676" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="872.685" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<circle cx="50.6676" cy="32" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <text x="872.685" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">10</text>
<circle cx="66.8343" cy="60.0014" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="187.67" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="34.501" cy="60.0014" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="187.67" cy="123.335" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="50.6676" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="203.837" cy="151.337" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<text x="50.6676" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">1</text> <circle cx="171.504" cy="151.337" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="142.003" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="187.67" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<circle cx="142.003" cy="32" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <text x="187.67" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">13</text>
<circle cx="158.169" cy="60.0014" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="279.006" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="125.836" cy="60.0014" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="279.006" cy="123.335" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="142.003" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="295.172" cy="151.337" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<text x="142.003" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">2</text> <circle cx="262.839" cy="151.337" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="233.338" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="279.006" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<circle cx="233.338" cy="32" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <text x="279.006" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">14</text>
<circle cx="249.505" cy="60.0014" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="918.352" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="217.171" cy="60.0014" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="918.352" cy="123.335" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="233.338" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="934.519" cy="151.337" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<text x="233.338" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">3</text> <circle cx="902.186" cy="151.337" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="781.35" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="918.352" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<circle cx="781.35" cy="32" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <text x="918.352" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">21</text>
<circle cx="797.516" cy="60.0014" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="765.183" cy="60.0014" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="781.35" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="781.35" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">9</text>
<circle cx="553.011" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="553.011" cy="123.335" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="569.178" cy="151.337" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="536.845" cy="151.337" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="553.011" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="553.011" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">17</text>
<circle cx="644.347" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="644.347" cy="123.335" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="660.513" cy="151.337" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="628.18" cy="151.337" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="644.347" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="644.347" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">18</text>
<circle cx="735.682" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="735.682" cy="123.335" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="751.849" cy="151.337" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="719.515" cy="151.337" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="735.682" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="735.682" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">19</text>
<circle cx="142.003" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="142.003" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="142.003" cy="214.67" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/> <circle cx="142.003" cy="214.67" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="158.169" cy="242.672" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/> <circle cx="158.169" cy="242.672" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="125.836" cy="242.672" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/> <circle cx="125.836" cy="242.672" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="142.003" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="142.003" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="142.003" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">22</text> <text x="142.003" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">22</text>
<circle cx="324.673" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="324.673" cy="214.67" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="340.84" cy="242.672" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="308.507" cy="242.672" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="324.673" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="324.673" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">24</text>
<circle cx="507.344" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="507.344" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="507.344" cy="214.67" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="507.344" cy="214.67" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="523.51" cy="242.672" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="523.51" cy="242.672" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="491.177" cy="242.672" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="491.177" cy="242.672" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="507.344" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="507.344" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="507.344" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">26</text> <text x="507.344" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">26</text>
<circle cx="187.67" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="598.679" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="187.67" cy="306.006" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="598.679" cy="214.67" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="203.837" cy="334.007" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="614.846" cy="242.672" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="171.504" cy="334.007" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="582.512" cy="242.672" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="187.67" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="598.679" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="187.67" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">31</text> <text x="598.679" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">27</text>
<circle cx="872.685" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="872.685" cy="214.67" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="888.851" cy="242.672" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="856.518" cy="242.672" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="872.685" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="872.685" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">30</text>
<circle cx="279.006" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="279.006" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="279.006" cy="306.006" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="279.006" cy="306.006" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="295.172" cy="334.007" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="295.172" cy="334.007" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="262.839" cy="334.007" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="262.839" cy="334.007" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="279.006" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="279.006" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="279.006" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">32</text> <text x="279.006" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">32</text>
<circle cx="461.676" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="461.676" cy="306.006" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="477.843" cy="334.007" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="445.51" cy="334.007" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="461.676" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="461.676" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">34</text>
<circle cx="553.011" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="553.011" cy="306.006" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="569.178" cy="334.007" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="536.845" cy="334.007" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="553.011" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="553.011" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">35</text>
<circle cx="644.347" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="644.347" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="644.347" cy="306.006" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="644.347" cy="306.006" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="660.513" cy="334.007" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="660.513" cy="334.007" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="628.18" cy="334.007" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="628.18" cy="334.007" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="644.347" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="644.347" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="644.347" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">36</text> <text x="644.347" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">36</text>
<circle cx="735.682" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="735.682" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="735.682" cy="306.006" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="735.682" cy="306.006" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="751.849" cy="334.007" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="751.849" cy="334.007" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="719.515" cy="334.007" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="719.515" cy="334.007" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="735.682" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="735.682" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="735.682" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">37</text> <text x="735.682" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">37</text>
<circle cx="827.017" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="827.017" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="827.017" cy="306.006" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="827.017" cy="306.006" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="843.184" cy="334.007" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="843.184" cy="334.007" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="810.851" cy="334.007" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="810.851" cy="334.007" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="827.017" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="827.017" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="827.017" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">38</text> <text x="827.017" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">38</text>
<circle cx="324.673" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="324.673" cy="397.341" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="340.84" cy="425.342" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="308.507" cy="425.342" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="324.673" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="324.673" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">40</text>
<circle cx="416.009" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="416.009" cy="397.341" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="432.175" cy="425.342" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="399.842" cy="425.342" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="416.009" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="416.009" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">41</text>
<circle cx="507.344" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="507.344" cy="397.341" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="523.51" cy="425.342" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="491.177" cy="425.342" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="507.344" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="507.344" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">42</text>
<circle cx="598.679" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="598.679" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="598.679" cy="397.341" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="598.679" cy="397.341" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="614.846" cy="425.342" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="614.846" cy="425.342" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="582.512" cy="425.342" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="582.512" cy="425.342" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="598.679" cy="416.009" r="12" fill="white" fill-opacity="0.75"/> <circle cx="598.679" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="598.679" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">43</text> <text x="598.679" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">43</text>
<circle cx="690.014" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="690.014" cy="397.341" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="706.181" cy="425.342" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="673.848" cy="425.342" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="690.014" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="690.014" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">44</text>
<circle cx="781.35" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="781.35" cy="397.341" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="797.516" cy="425.342" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="765.183" cy="425.342" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="781.35" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="781.35" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">45</text>
<circle cx="1512.03" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1512.03" cy="32" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1528.2" cy="60.0014" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1495.86" cy="60.0014" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1512.03" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="1512.03" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">46</text>
<circle cx="1603.37" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1603.37" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="1619.53" cy="60.0014" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="1587.2" cy="60.0014" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="1603.37" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="1603.37" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">47</text>
<circle cx="1694.7" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1694.7" cy="32" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="1710.87" cy="60.0014" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="1678.54" cy="60.0014" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="1694.7" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="1694.7" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">48</text>
<circle cx="1877.37" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1877.37" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1877.37" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="1877.37" cy="32" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="1893.54" cy="60.0014" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="1893.54" cy="60.0014" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="1861.21" cy="60.0014" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="1861.21" cy="60.0014" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="1877.37" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1877.37" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="1877.37" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">50</text> <text x="1877.37" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">50</text>
<circle cx="2060.04" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1968.71" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2060.04" cy="32" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="1968.71" cy="32" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="2076.21" cy="60.0014" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="1984.87" cy="60.0014" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="2043.88" cy="60.0014" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="1952.54" cy="60.0014" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="2060.04" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1968.71" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="2060.04" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">52</text> <text x="1968.71" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">51</text>
<circle cx="2151.38" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1557.7" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2151.38" cy="32" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="1557.7" cy="123.335" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="2167.54" cy="60.0014" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="1573.87" cy="151.337" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="2135.21" cy="60.0014" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="1541.53" cy="151.337" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="2151.38" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1557.7" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="2151.38" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">53</text> <text x="1557.7" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">57</text>
<circle cx="2242.71" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2242.71" cy="32" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2258.88" cy="60.0014" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2226.55" cy="60.0014" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2242.71" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="2242.71" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">54</text>
<circle cx="1831.7" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1831.7" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1831.7" cy="123.335" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="1831.7" cy="123.335" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="1847.87" cy="151.337" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="1847.87" cy="151.337" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="1815.54" cy="151.337" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="1815.54" cy="151.337" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="1831.7" cy="142.003" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1831.7" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="1831.7" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">60</text> <text x="1831.7" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">60</text>
<circle cx="1923.04" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1923.04" cy="123.335" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="1939.21" cy="151.337" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="1906.87" cy="151.337" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="1923.04" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="1923.04" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">61</text>
<circle cx="2014.38" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2014.38" cy="123.335" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="2030.54" cy="151.337" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="1998.21" cy="151.337" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="2014.38" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="2014.38" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">62</text>
<circle cx="2105.71" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2105.71" cy="123.335" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="2121.88" cy="151.337" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="2089.54" cy="151.337" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="2105.71" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="2105.71" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">63</text>
<circle cx="2197.05" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2197.05" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2197.05" cy="123.335" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="2197.05" cy="123.335" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2213.21" cy="151.337" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="2213.21" cy="151.337" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2180.88" cy="151.337" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="2180.88" cy="151.337" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2197.05" cy="142.003" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2197.05" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="2197.05" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">64</text> <text x="2197.05" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">64</text>
<circle cx="2288.38" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2288.38" cy="123.335" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2304.55" cy="151.337" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2272.21" cy="151.337" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2288.38" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="2288.38" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">65</text>
<circle cx="1694.7" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1694.7" cy="214.67" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1710.87" cy="242.672" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1678.54" cy="242.672" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1694.7" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="1694.7" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">68</text>
<circle cx="1786.04" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1786.04" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1786.04" cy="214.67" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="1786.04" cy="214.67" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1802.2" cy="242.672" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="1802.2" cy="242.672" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1769.87" cy="242.672" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="1769.87" cy="242.672" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1786.04" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1786.04" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="1786.04" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">69</text> <text x="1786.04" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">69</text>
<circle cx="2060.04" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2060.04" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2060.04" cy="214.67" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="2060.04" cy="214.67" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="2076.21" cy="242.672" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="2076.21" cy="242.672" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="2043.88" cy="242.672" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="2043.88" cy="242.672" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="2060.04" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2060.04" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="2060.04" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">72</text> <text x="2060.04" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">72</text>
<circle cx="1740.37" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2151.38" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1740.37" cy="306.006" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="2151.38" cy="214.67" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1756.54" cy="334.007" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="2167.54" cy="242.672" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1724.2" cy="334.007" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="2135.21" cy="242.672" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1740.37" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2151.38" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="1740.37" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">77</text> <text x="2151.38" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">73</text>
<circle cx="1831.7" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1831.7" cy="306.006" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1847.87" cy="334.007" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1815.54" cy="334.007" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1831.7" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="1831.7" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">78</text>
<circle cx="1923.04" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1923.04" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1923.04" cy="306.006" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="1923.04" cy="306.006" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="1939.21" cy="334.007" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="1939.21" cy="334.007" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
@@ -247,42 +231,44 @@
<circle cx="1923.04" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1923.04" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="1923.04" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">79</text> <text x="1923.04" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">79</text>
<circle cx="2014.38" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2014.38" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2014.38" cy="306.006" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="2014.38" cy="306.006" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="2030.54" cy="334.007" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="2030.54" cy="334.007" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1998.21" cy="334.007" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="1998.21" cy="334.007" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="2014.38" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2014.38" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="2014.38" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">80</text> <text x="2014.38" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">80</text>
<circle cx="2105.71" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2288.38" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2105.71" cy="306.006" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="2288.38" cy="306.006" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="2121.88" cy="334.007" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="2304.55" cy="334.007" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="2089.54" cy="334.007" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="2272.21" cy="334.007" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="2105.71" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2288.38" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="2105.71" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">81</text> <text x="2288.38" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">83</text>
<circle cx="1786.04" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1786.04" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1786.04" cy="397.341" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="1786.04" cy="397.341" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1802.2" cy="425.342" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="1802.2" cy="425.342" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1769.87" cy="425.342" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="1769.87" cy="425.342" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1786.04" cy="416.009" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1786.04" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="1786.04" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">84</text> <text x="1786.04" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">84</text>
<circle cx="1968.71" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="50.6676" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1968.71" cy="397.341" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="50.6676" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="1984.87" cy="425.342" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="69.3352" cy="50.6676" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="1952.54" cy="425.342" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="50.6676" cy="69.3352" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="1968.71" cy="416.009" r="12" fill="white" fill-opacity="0.75"/> <circle cx="32" cy="50.6676" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<text x="1968.71" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">86</text> <circle cx="50.6676" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<circle cx="2060.04" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <text x="50.6676" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">1</text>
<circle cx="2060.04" cy="397.341" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="142.003" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2076.21" cy="425.342" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="142.003" cy="32" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="2043.88" cy="425.342" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="160.67" cy="50.6676" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="2060.04" cy="416.009" r="12" fill="white" fill-opacity="0.75"/> <circle cx="142.003" cy="69.3352" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<text x="2060.04" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">87</text> <circle cx="123.335" cy="50.6676" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="324.673" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="142.003" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<circle cx="324.673" cy="32" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <text x="142.003" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">2</text>
<circle cx="343.341" cy="50.6676" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="233.338" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="324.673" cy="69.3352" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="233.338" cy="32" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="306.006" cy="50.6676" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="252.006" cy="50.6676" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="324.673" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="233.338" cy="69.3352" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<text x="324.673" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">4</text> <circle cx="214.67" cy="50.6676" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="233.338" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="233.338" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">3</text>
<circle cx="416.009" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="416.009" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="416.009" cy="32" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="416.009" cy="32" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="434.676" cy="50.6676" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="434.676" cy="50.6676" r="12" fill="#888888" stroke="black" stroke-width="1"/>
@@ -305,19 +291,19 @@
<circle cx="598.679" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="598.679" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="598.679" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">7</text> <text x="598.679" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">7</text>
<circle cx="690.014" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="690.014" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="690.014" cy="32" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="690.014" cy="32" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="708.682" cy="50.6676" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="708.682" cy="50.6676" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="690.014" cy="69.3352" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="690.014" cy="69.3352" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="671.347" cy="50.6676" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="671.347" cy="50.6676" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="690.014" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="690.014" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="690.014" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">8</text> <text x="690.014" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">8</text>
<circle cx="872.685" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="781.35" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="872.685" cy="32" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="781.35" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="891.352" cy="50.6676" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="800.017" cy="50.6676" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="872.685" cy="69.3352" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="781.35" cy="69.3352" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="854.017" cy="50.6676" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="762.682" cy="50.6676" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="872.685" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="781.35" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="872.685" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">10</text> <text x="781.35" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">9</text>
<circle cx="964.02" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="964.02" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="964.02" cy="32" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="964.02" cy="32" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="982.688" cy="50.6676" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="982.688" cy="50.6676" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
@@ -327,30 +313,16 @@
<text x="964.02" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">11</text> <text x="964.02" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">11</text>
<circle cx="96.3352" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="96.3352" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="96.3352" cy="123.335" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="96.3352" cy="123.335" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="115.003" cy="142.003" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="115.003" cy="142.003" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="96.3352" cy="160.67" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="96.3352" cy="160.67" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="77.6676" cy="142.003" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="77.6676" cy="142.003" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="96.3352" cy="142.003" r="12" fill="white" fill-opacity="0.75"/> <circle cx="96.3352" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="96.3352" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">12</text> <text x="96.3352" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">12</text>
<circle cx="187.67" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="187.67" cy="123.335" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="206.338" cy="142.003" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="187.67" cy="160.67" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="169.003" cy="142.003" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="187.67" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="187.67" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">13</text>
<circle cx="279.006" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="279.006" cy="123.335" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="297.673" cy="142.003" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="279.006" cy="160.67" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="260.338" cy="142.003" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="279.006" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="279.006" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">14</text>
<circle cx="370.341" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="370.341" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="370.341" cy="123.335" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="370.341" cy="123.335" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="389.009" cy="142.003" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="389.009" cy="142.003" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="370.341" cy="160.67" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="370.341" cy="160.67" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="351.673" cy="142.003" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="351.673" cy="142.003" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="370.341" cy="142.003" r="12" fill="white" fill-opacity="0.75"/> <circle cx="370.341" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="370.341" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">15</text> <text x="370.341" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">15</text>
<circle cx="461.676" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="461.676" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
@@ -360,230 +332,258 @@
<circle cx="443.009" cy="142.003" r="12" fill="#bfef45" stroke="black" stroke-width="1"/> <circle cx="443.009" cy="142.003" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="461.676" cy="142.003" r="12" fill="white" fill-opacity="0.75"/> <circle cx="461.676" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="461.676" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">16</text> <text x="461.676" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">16</text>
<circle cx="553.011" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="553.011" cy="123.335" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="571.679" cy="142.003" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="553.011" cy="160.67" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="534.344" cy="142.003" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="553.011" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="553.011" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">17</text>
<circle cx="644.347" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="644.347" cy="123.335" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="663.014" cy="142.003" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="644.347" cy="160.67" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="625.679" cy="142.003" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="644.347" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="644.347" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">18</text>
<circle cx="735.682" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="735.682" cy="123.335" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="754.35" cy="142.003" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="735.682" cy="160.67" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="717.014" cy="142.003" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="735.682" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="735.682" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">19</text>
<circle cx="827.017" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="827.017" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="827.017" cy="123.335" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="827.017" cy="123.335" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="845.685" cy="142.003" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="845.685" cy="142.003" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="827.017" cy="160.67" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/> <circle cx="827.017" cy="160.67" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="808.35" cy="142.003" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/> <circle cx="808.35" cy="142.003" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="827.017" cy="142.003" r="12" fill="white" fill-opacity="0.75"/> <circle cx="827.017" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="827.017" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">20</text> <text x="827.017" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">20</text>
<circle cx="918.352" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="918.352" cy="123.335" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="937.02" cy="142.003" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="918.352" cy="160.67" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="899.685" cy="142.003" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="918.352" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="918.352" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">21</text>
<circle cx="233.338" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="233.338" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="233.338" cy="214.67" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="233.338" cy="214.67" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="252.006" cy="233.338" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="252.006" cy="233.338" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="233.338" cy="252.006" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="233.338" cy="252.006" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="214.67" cy="233.338" r="12" fill="#9a6324" stroke="black" stroke-width="1"/> <circle cx="214.67" cy="233.338" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="233.338" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="233.338" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="233.338" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">23</text> <text x="233.338" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">23</text>
<circle cx="416.009" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="416.009" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="416.009" cy="214.67" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="416.009" cy="214.67" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="434.676" cy="233.338" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="434.676" cy="233.338" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="416.009" cy="252.006" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="416.009" cy="252.006" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="397.341" cy="233.338" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="397.341" cy="233.338" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="416.009" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="416.009" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="416.009" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">25</text> <text x="416.009" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">25</text>
<circle cx="598.679" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="598.679" cy="214.67" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="617.347" cy="233.338" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="598.679" cy="252.006" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="580.011" cy="233.338" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="598.679" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="598.679" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">27</text>
<circle cx="690.014" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="690.014" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="690.014" cy="214.67" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="690.014" cy="214.67" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="708.682" cy="233.338" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="708.682" cy="233.338" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="690.014" cy="252.006" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="690.014" cy="252.006" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="671.347" cy="233.338" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="671.347" cy="233.338" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="690.014" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="690.014" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="690.014" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">28</text> <text x="690.014" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">28</text>
<circle cx="781.35" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="781.35" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="781.35" cy="214.67" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="781.35" cy="214.67" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="800.017" cy="233.338" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="800.017" cy="233.338" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="781.35" cy="252.006" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="781.35" cy="252.006" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="762.682" cy="233.338" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="762.682" cy="233.338" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="781.35" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="781.35" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="781.35" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">29</text> <text x="781.35" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">29</text>
<circle cx="872.685" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="187.67" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="872.685" cy="214.67" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="187.67" cy="306.006" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="891.352" cy="233.338" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="206.338" cy="324.673" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="872.685" cy="252.006" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="187.67" cy="343.341" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="854.017" cy="233.338" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="169.003" cy="324.673" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="872.685" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="187.67" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="872.685" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">30</text> <text x="187.67" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">31</text>
<circle cx="370.341" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="370.341" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="370.341" cy="306.006" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="370.341" cy="306.006" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="389.009" cy="324.673" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="389.009" cy="324.673" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="370.341" cy="343.341" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="370.341" cy="343.341" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="351.673" cy="324.673" r="12" fill="#800000" stroke="black" stroke-width="1"/> <circle cx="351.673" cy="324.673" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="370.341" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="370.341" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="370.341" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">33</text> <text x="370.341" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">33</text>
<circle cx="781.35" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="461.676" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="781.35" cy="397.341" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="461.676" cy="306.006" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="800.017" cy="416.009" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="480.344" cy="324.673" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="781.35" cy="434.676" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="461.676" cy="343.341" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="762.682" cy="416.009" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="443.009" cy="324.673" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="781.35" cy="416.009" r="12" fill="white" fill-opacity="0.75"/> <circle cx="461.676" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="781.35" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">45</text> <text x="461.676" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">34</text>
<circle cx="1512.03" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="553.011" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1512.03" cy="32" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="553.011" cy="306.006" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="1530.7" cy="50.6676" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="571.679" cy="324.673" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="1512.03" cy="69.3352" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="553.011" cy="343.341" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="1493.36" cy="50.6676" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="534.344" cy="324.673" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="1512.03" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="553.011" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="1512.03" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">46</text> <text x="553.011" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">35</text>
<circle cx="1603.37" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="233.338" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1603.37" cy="32" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="233.338" cy="397.341" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="1622.03" cy="50.6676" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="252.006" cy="416.009" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="1603.37" cy="69.3352" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="233.338" cy="434.676" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="1584.7" cy="50.6676" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="214.67" cy="416.009" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="1603.37" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="233.338" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="1603.37" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">47</text> <text x="233.338" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">39</text>
<circle cx="1694.7" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="324.673" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1694.7" cy="32" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="324.673" cy="397.341" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="1713.37" cy="50.6676" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="343.341" cy="416.009" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="1694.7" cy="69.3352" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="324.673" cy="434.676" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="1676.03" cy="50.6676" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="306.006" cy="416.009" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="1694.7" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="324.673" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="1694.7" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">48</text> <text x="324.673" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">40</text>
<circle cx="416.009" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="416.009" cy="397.341" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="434.676" cy="416.009" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="416.009" cy="434.676" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="397.341" cy="416.009" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="416.009" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="416.009" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">41</text>
<circle cx="507.344" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="507.344" cy="397.341" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="526.011" cy="416.009" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="507.344" cy="434.676" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="488.676" cy="416.009" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="507.344" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="507.344" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">42</text>
<circle cx="1786.04" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1786.04" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1786.04" cy="32" r="12" fill="#bfef45" stroke="black" stroke-width="1"/> <circle cx="1786.04" cy="32" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="1804.7" cy="50.6676" r="12" fill="#bfef45" stroke="black" stroke-width="1"/> <circle cx="1804.7" cy="50.6676" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="1786.04" cy="69.3352" r="12" fill="#bfef45" stroke="black" stroke-width="1"/> <circle cx="1786.04" cy="69.3352" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="1767.37" cy="50.6676" r="12" fill="#bfef45" stroke="black" stroke-width="1"/> <circle cx="1767.37" cy="50.6676" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="1786.04" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1786.04" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="1786.04" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">49</text> <text x="1786.04" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">49</text>
<circle cx="2060.04" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2060.04" cy="32" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2078.71" cy="50.6676" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2060.04" cy="69.3352" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2041.38" cy="50.6676" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2060.04" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="2060.04" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">52</text>
<circle cx="2151.38" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2151.38" cy="32" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="2170.05" cy="50.6676" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="2151.38" cy="69.3352" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="2132.71" cy="50.6676" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="2151.38" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="2151.38" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">53</text>
<circle cx="2334.05" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2334.05" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2334.05" cy="32" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="2334.05" cy="32" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="2352.72" cy="50.6676" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="2352.72" cy="50.6676" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="2334.05" cy="69.3352" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="2334.05" cy="69.3352" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="2315.38" cy="50.6676" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="2315.38" cy="50.6676" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="2334.05" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2334.05" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="2334.05" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">55</text> <text x="2334.05" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">55</text>
<circle cx="2425.38" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2425.38" cy="50.6676" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2425.38" cy="32" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="2425.38" cy="32" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2444.05" cy="50.6676" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="2444.05" cy="50.6676" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2425.38" cy="69.3352" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="2425.38" cy="69.3352" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="2406.72" cy="50.6676" r="12" fill="#469990" stroke="black" stroke-width="1"/> <circle cx="2406.72" cy="50.6676" r="12" fill="#469990" stroke="black" stroke-width="1"/>
<circle cx="2425.38" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2425.38" cy="50.6676" r="12" fill="white" fill-opacity="0.75"/>
<text x="2425.38" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">56</text> <text x="2425.38" y="50.6676" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">56</text>
<circle cx="1557.7" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1557.7" cy="123.335" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="1576.37" cy="142.003" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="1557.7" cy="160.67" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="1539.03" cy="142.003" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="1557.7" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="1557.7" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">57</text>
<circle cx="1649.03" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1649.03" cy="123.335" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="1667.7" cy="142.003" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="1649.03" cy="160.67" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="1630.37" cy="142.003" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="1649.03" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="1649.03" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">58</text>
<circle cx="1740.37" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1740.37" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1740.37" cy="123.335" r="12" fill="#bfef45" stroke="black" stroke-width="1"/> <circle cx="1740.37" cy="123.335" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1759.04" cy="142.003" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/> <circle cx="1759.04" cy="142.003" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1740.37" cy="160.67" r="12" fill="#bfef45" stroke="black" stroke-width="1"/> <circle cx="1740.37" cy="160.67" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1721.7" cy="142.003" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/> <circle cx="1721.7" cy="142.003" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1740.37" cy="142.003" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1740.37" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="1740.37" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">59</text> <text x="1740.37" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">59</text>
<circle cx="1923.04" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1923.04" cy="123.335" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1941.71" cy="142.003" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1923.04" cy="160.67" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1904.37" cy="142.003" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
<circle cx="1923.04" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="1923.04" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">61</text>
<circle cx="2014.38" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2014.38" cy="123.335" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="2033.04" cy="142.003" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="2014.38" cy="160.67" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1995.71" cy="142.003" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="2014.38" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="2014.38" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">62</text>
<circle cx="2105.71" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2105.71" cy="123.335" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="2124.38" cy="142.003" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="2105.71" cy="160.67" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="2087.04" cy="142.003" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="2105.71" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="2105.71" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">63</text>
<circle cx="2379.72" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2379.72" cy="142.003" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2379.72" cy="123.335" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="2379.72" cy="123.335" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2398.38" cy="142.003" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="2398.38" cy="142.003" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2379.72" cy="160.67" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="2379.72" cy="160.67" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2361.05" cy="142.003" r="12" fill="#000075" stroke="black" stroke-width="1"/> <circle cx="2361.05" cy="142.003" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
<circle cx="2379.72" cy="142.003" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2379.72" cy="142.003" r="12" fill="white" fill-opacity="0.75"/>
<text x="2379.72" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">66</text> <text x="2379.72" y="142.003" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">66</text>
<circle cx="1603.37" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1603.37" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1603.37" cy="214.67" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="1603.37" cy="214.67" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1622.03" cy="233.338" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="1622.03" cy="233.338" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="1603.37" cy="252.006" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="1603.37" cy="252.006" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1584.7" cy="233.338" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="1584.7" cy="233.338" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="1603.37" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1603.37" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="1603.37" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">67</text> <text x="1603.37" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">67</text>
<circle cx="1877.37" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1694.7" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1877.37" cy="214.67" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="1694.7" cy="214.67" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1896.04" cy="233.338" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="1713.37" cy="233.338" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1877.37" cy="252.006" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="1694.7" cy="252.006" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1858.7" cy="233.338" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="1676.03" cy="233.338" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="1877.37" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1694.7" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="1877.37" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">70</text> <text x="1694.7" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">68</text>
<circle cx="1968.71" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1968.71" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1968.71" cy="214.67" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="1968.71" cy="214.67" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="1987.38" cy="233.338" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="1987.38" cy="233.338" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="1968.71" cy="252.006" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="1968.71" cy="252.006" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="1950.04" cy="233.338" r="12" fill="#4363d8" stroke="black" stroke-width="1"/> <circle cx="1950.04" cy="233.338" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
<circle cx="1968.71" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1968.71" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="1968.71" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">71</text> <text x="1968.71" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">71</text>
<circle cx="2242.71" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2242.71" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2242.71" cy="214.67" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="2242.71" cy="214.67" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="2261.38" cy="233.338" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="2261.38" cy="233.338" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="2242.71" cy="252.006" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="2242.71" cy="252.006" r="12" fill="#800000" stroke="black" stroke-width="1"/>
<circle cx="2224.05" cy="233.338" r="12" fill="#f58231" stroke="black" stroke-width="1"/> <circle cx="2224.05" cy="233.338" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="2242.71" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2242.71" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="2242.71" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">74</text> <text x="2242.71" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">74</text>
<circle cx="2334.05" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2334.05" cy="233.338" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2334.05" cy="214.67" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="2334.05" cy="214.67" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="2352.72" cy="233.338" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="2352.72" cy="233.338" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="2334.05" cy="252.006" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="2334.05" cy="252.006" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="2315.38" cy="233.338" r="12" fill="#911eb4" stroke="black" stroke-width="1"/> <circle cx="2315.38" cy="233.338" r="12" fill="#000075" stroke="black" stroke-width="1"/>
<circle cx="2334.05" cy="233.338" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2334.05" cy="233.338" r="12" fill="white" fill-opacity="0.75"/>
<text x="2334.05" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">75</text> <text x="2334.05" y="233.338" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">75</text>
<circle cx="1649.03" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1649.03" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1649.03" cy="306.006" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="1649.03" cy="306.006" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1667.7" cy="324.673" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="1667.7" cy="324.673" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1649.03" cy="343.341" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="1649.03" cy="343.341" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1630.37" cy="324.673" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/> <circle cx="1630.37" cy="324.673" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="1649.03" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1649.03" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="1649.03" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">76</text> <text x="1649.03" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">76</text>
<circle cx="1740.37" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1740.37" cy="306.006" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="1759.04" cy="324.673" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="1740.37" cy="343.341" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="1721.7" cy="324.673" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="1740.37" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="1740.37" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">77</text>
<circle cx="1831.7" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1831.7" cy="306.006" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="1850.37" cy="324.673" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="1831.7" cy="343.341" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="1813.04" cy="324.673" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="1831.7" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="1831.7" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">78</text>
<circle cx="2105.71" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2105.71" cy="306.006" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="2124.38" cy="324.673" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="2105.71" cy="343.341" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="2087.04" cy="324.673" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="2105.71" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="2105.71" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">81</text>
<circle cx="2197.05" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2197.05" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2197.05" cy="306.006" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="2197.05" cy="306.006" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="2215.71" cy="324.673" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="2215.71" cy="324.673" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="2197.05" cy="343.341" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="2197.05" cy="343.341" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="2178.38" cy="324.673" r="12" fill="#f032e6" stroke="black" stroke-width="1"/> <circle cx="2178.38" cy="324.673" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
<circle cx="2197.05" cy="324.673" r="12" fill="white" fill-opacity="0.75"/> <circle cx="2197.05" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="2197.05" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">82</text> <text x="2197.05" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">82</text>
<circle cx="2288.38" cy="324.673" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2288.38" cy="306.006" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2307.05" cy="324.673" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2288.38" cy="343.341" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2269.71" cy="324.673" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2288.38" cy="324.673" r="12" fill="white" fill-opacity="0.75"/>
<text x="2288.38" y="324.673" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">83</text>
<circle cx="1877.37" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="1877.37" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1877.37" cy="397.341" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="1877.37" cy="397.341" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="1896.04" cy="416.009" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/> <circle cx="1896.04" cy="416.009" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="1877.37" cy="434.676" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="1877.37" cy="434.676" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="1858.7" cy="416.009" r="12" fill="#e6194b" stroke="black" stroke-width="1"/> <circle cx="1858.7" cy="416.009" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
<circle cx="1877.37" cy="416.009" r="12" fill="white" fill-opacity="0.75"/> <circle cx="1877.37" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="1877.37" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">85</text> <text x="1877.37" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">85</text>
<circle cx="1968.71" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="1968.71" cy="397.341" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="1987.38" cy="416.009" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="1968.71" cy="434.676" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="1950.04" cy="416.009" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
<circle cx="1968.71" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="1968.71" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">86</text>
<circle cx="2060.04" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2060.04" cy="397.341" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2078.71" cy="416.009" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2060.04" cy="434.676" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2041.38" cy="416.009" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
<circle cx="2060.04" cy="416.009" r="12" fill="white" fill-opacity="0.75"/>
<text x="2060.04" y="416.009" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">87</text>
<circle cx="2151.38" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="2151.38" cy="416.009" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="2151.38" cy="397.341" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="2151.38" cy="397.341" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
<circle cx="2170.05" cy="416.009" r="12" fill="#fabed4" stroke="black" stroke-width="1"/> <circle cx="2170.05" cy="416.009" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>

Before

Width:  |  Height:  |  Size: 57 KiB

After

Width:  |  Height:  |  Size: 57 KiB

+294 -294
View File
@@ -1,476 +1,476 @@
[1] [1]
Stefan Richter = Hof 1, Tisch 1, Nummer 1 Julia Weber = Hof 1, Tisch 1, Nummer 1
Prof. Dr. Dennis Schmitt = Hof 1, Tisch 1, Nummer 2 Emre Klein = Hof 1, Tisch 1, Nummer 2
Patrick Zimmermann = Hof 1, Tisch 1, Nummer 3 Dr. Patrick Kaya = Hof 1, Tisch 1, Nummer 3
Prof. Dr. Yusuf Seidel = Hof 1, Tisch 1, Nummer 4
[2] [2]
Olga Roth = Hof 1, Tisch 2, Nummer 1 Dr. Jan Bianchi = Hof 1, Tisch 2, Nummer 1
Thomas Bianchi = Hof 1, Tisch 2, Nummer 2 Yusuf Bauer = Hof 1, Tisch 2, Nummer 2
Prof. Dr. Emre Albrecht = Hof 1, Tisch 2, Nummer 3 Dr. Christina Krause = Hof 1, Tisch 2, Nummer 3
Marco Winkler = Hof 1, Tisch 2, Nummer 4
[3] [3]
Marco Winkler = Hof 1, Tisch 3, Nummer 1 Nadine Braun = Hof 1, Tisch 3, Nummer 1
Dr. Jan Bianchi = Hof 1, Tisch 3, Nummer 2 Christian Braun = Hof 1, Tisch 3, Nummer 2
Dr. Christina Krause = Hof 1, Tisch 3, Nummer 3 Dr. Markus Seidel = Hof 1, Tisch 3, Nummer 3
Prof. Dr. Kathrin Petrov = Hof 1, Tisch 3, Nummer 4
[4] [4]
Prof. Dr. Yusuf Seidel = Hof 1, Tisch 4, Nummer 1
Yusuf Bauer = Hof 1, Tisch 4, Nummer 2
Emre Klein = Hof 1, Tisch 4, Nummer 3
Dr. Patrick Kaya = Hof 1, Tisch 4, Nummer 4
[5] [5]
Dr. Ferdinand Kessler = Hof 1, Tisch 5, Nummer 1 Beate Grothe = Hof 1, Tisch 5, Nummer 1
Dr. h.c. Alexander Grothe = Hof 1, Tisch 5, Nummer 2 Dr. Ferdinand Kessler = Hof 1, Tisch 5, Nummer 2
Viktoria Kessler = Hof 1, Tisch 5, Nummer 3 Viktoria Kessler = Hof 1, Tisch 5, Nummer 3
Beate Grothe = Hof 1, Tisch 5, Nummer 4 Dr. h.c. Alexander Grothe = Hof 1, Tisch 5, Nummer 4
[6] [6]
Georg Steinbach = Hof 1, Tisch 6, Nummer 1 Dr. Konstantin Freiherr von Waldeck = Hof 1, Tisch 6, Nummer 1
Elisabeth Steinbach = Hof 1, Tisch 6, Nummer 2 Antonia Freifrau von Waldeck = Hof 1, Tisch 6, Nummer 2
Antonia Freifrau von Waldeck = Hof 1, Tisch 6, Nummer 3 Elisabeth Steinbach = Hof 1, Tisch 6, Nummer 3
Dr. Konstantin Freiherr von Waldeck = Hof 1, Tisch 6, Nummer 4 Georg Steinbach = Hof 1, Tisch 6, Nummer 4
[7] [7]
Heinrich Dallmann = Hof 1, Tisch 7, Nummer 1 Charlotte Dallmann = Hof 1, Tisch 7, Nummer 1
Margarete Dallmann = Hof 1, Tisch 7, Nummer 2 Margarete Dallmann = Hof 1, Tisch 7, Nummer 2
Maximilian Dallmann = Hof 1, Tisch 7, Nummer 3 Maximilian Dallmann = Hof 1, Tisch 7, Nummer 3
Charlotte Dallmann = Hof 1, Tisch 7, Nummer 4 Heinrich Dallmann = Hof 1, Tisch 7, Nummer 4
[8] [8]
Dennis Frank = Hof 1, Tisch 8, Nummer 1 Andreas Albrecht = Hof 1, Tisch 8, Nummer 1
Nadine Frank = Hof 1, Tisch 8, Nummer 2 Dragana Lange = Hof 1, Tisch 8, Nummer 2
Nadine Hartmann = Hof 1, Tisch 8, Nummer 3 Sarah Albrecht = Hof 1, Tisch 8, Nummer 3
Deniz Hartmann = Hof 1, Tisch 8, Nummer 4 Svenja Lange = Hof 1, Tisch 8, Nummer 4
[9] [9]
Markus Hansen = Hof 1, Tisch 9, Nummer 1 Dr. Stefanie Seifert = Hof 1, Tisch 9, Nummer 1
Olga Hansen = Hof 1, Tisch 9, Nummer 2 Prof. Dr. Julia Roth = Hof 1, Tisch 9, Nummer 2
Giovanna Hansen = Hof 1, Tisch 9, Nummer 3 Thomas Winkler = Hof 1, Tisch 9, Nummer 3
Julia Nguyen = Hof 1, Tisch 9, Nummer 4
[10] [10]
Giovanna Petrov = Hof 1, Tisch 10, Nummer 1 Nicole Schmidt = Hof 1, Tisch 10, Nummer 1
Markus Kraus = Hof 1, Tisch 10, Nummer 2 Thomas Hansen = Hof 1, Tisch 10, Nummer 2
Dr. Nadine Stein = Hof 1, Tisch 10, Nummer 3 Dr. Jan Esposito = Hof 1, Tisch 10, Nummer 3
Julia Weber = Hof 1, Tisch 10, Nummer 4
[11] [11]
Prof. Dr. Kathrin Petrov = Hof 1, Tisch 11, Nummer 1 Milan Braun = Hof 1, Tisch 11, Nummer 1
Dr. Markus Seidel = Hof 1, Tisch 11, Nummer 2 Dragana Braun = Hof 1, Tisch 11, Nummer 2
Christian Peters = Hof 1, Tisch 11, Nummer 3 Julia Braun = Hof 1, Tisch 11, Nummer 3
Markus Schmitt = Hof 1, Tisch 11, Nummer 4 Jan Braun = Hof 1, Tisch 11, Nummer 4
[12] [12]
Sarah Albrecht = Hof 1, Tisch 12, Nummer 1 Dennis Frank = Hof 1, Tisch 12, Nummer 1
Matthias Popescu = Hof 1, Tisch 12, Nummer 2 Nadine Frank = Hof 1, Tisch 12, Nummer 2
Prof. Dr. Markus Stein = Hof 1, Tisch 12, Nummer 3 Marija Hartmann = Hof 1, Tisch 12, Nummer 3
Andreas Albrecht = Hof 1, Tisch 12, Nummer 4 Thomas Hartmann = Hof 1, Tisch 12, Nummer 4
[13] [13]
Julia Engel = Hof 1, Tisch 13, Nummer 1 Deniz Hartmann = Hof 1, Tisch 13, Nummer 1
Yusuf Engel = Hof 1, Tisch 13, Nummer 2 Olga Hartmann = Hof 1, Tisch 13, Nummer 2
Dr. Jennifer Arnold = Hof 1, Tisch 13, Nummer 3 Nadine Hartmann = Hof 1, Tisch 13, Nummer 3
Dr. Olga Klein = Hof 1, Tisch 13, Nummer 4
[14] [14]
Thomas Neumann = Hof 1, Tisch 14, Nummer 1 Giovanna Hansen = Hof 1, Tisch 14, Nummer 1
Lina Neumann = Hof 1, Tisch 14, Nummer 2 Olga Hansen = Hof 1, Tisch 14, Nummer 2
Matteo Neumann = Hof 1, Tisch 14, Nummer 3 Markus Hansen = Hof 1, Tisch 14, Nummer 3
Jennifer Neumann = Hof 1, Tisch 14, Nummer 4
[15] [15]
Mia Zimmermann = Hof 1, Tisch 15, Nummer 1 Svenja Simon = Hof 1, Tisch 15, Nummer 1
Markus Zimmermann = Hof 1, Tisch 15, Nummer 2 Prof. Dr. Markus Stein = Hof 1, Tisch 15, Nummer 2
Svenja Zimmermann = Hof 1, Tisch 15, Nummer 3 Matthias Popescu = Hof 1, Tisch 15, Nummer 3
Jan Zimmermann = Hof 1, Tisch 15, Nummer 4 Prof. Dr. Yusuf Albrecht = Hof 1, Tisch 15, Nummer 4
[16] [16]
Dr. Jan Esposito = Hof 1, Tisch 16, Nummer 1 Patrick Barth = Hof 1, Tisch 16, Nummer 1
Julia Nguyen = Hof 1, Tisch 16, Nummer 2 Lina Barth = Hof 1, Tisch 16, Nummer 2
Nicole Schmidt = Hof 1, Tisch 16, Nummer 3 Nadine Barth = Hof 1, Tisch 16, Nummer 3
Thomas Hansen = Hof 1, Tisch 16, Nummer 4 Timo Barth = Hof 1, Tisch 16, Nummer 4
[17] [17]
Dr. Stefanie Seifert = Hof 1, Tisch 17, Nummer 1 Dr. Anja Seidel = Hof 1, Tisch 17, Nummer 1
Prof. Dr. Julia Roth = Hof 1, Tisch 17, Nummer 2 Olga Tran = Hof 1, Tisch 17, Nummer 2
Thomas Winkler = Hof 1, Tisch 17, Nummer 3 Prof. Dr. Dennis Werner = Hof 1, Tisch 17, Nummer 3
Dr. Thomas Hoffmann = Hof 1, Tisch 17, Nummer 4
[18] [18]
Thomas Hartmann = Hof 1, Tisch 18, Nummer 1 Markus Lehmann = Hof 1, Tisch 18, Nummer 1
Marija Hartmann = Hof 1, Tisch 18, Nummer 2 Milan Lehmann = Hof 1, Tisch 18, Nummer 2
Olga Hartmann = Hof 1, Tisch 18, Nummer 3 Giovanna Lehmann = Hof 1, Tisch 18, Nummer 3
Layla Lehmann = Hof 1, Tisch 18, Nummer 4
[19] [19]
Lena Frank = Hof 1, Tisch 19, Nummer 1 Thomas Lehmann = Hof 1, Tisch 19, Nummer 1
Finn Frank = Hof 1, Tisch 19, Nummer 2 Patrick Celik = Hof 1, Tisch 19, Nummer 2
Marie Frank = Hof 1, Tisch 19, Nummer 3 Elif Celik = Hof 1, Tisch 19, Nummer 3
Nicole Lehmann = Hof 1, Tisch 19, Nummer 4
[20] [20]
Layla Lehmann = Hof 1, Tisch 20, Nummer 1 Svenja Berger = Hof 1, Tisch 20, Nummer 1
Milan Lehmann = Hof 1, Tisch 20, Nummer 2 Andreas Berger = Hof 1, Tisch 20, Nummer 2
Prof. Dr. Yusuf Albrecht = Hof 1, Tisch 20, Nummer 3 Stefan Berger = Hof 1, Tisch 20, Nummer 3
Svenja Simon = Hof 1, Tisch 20, Nummer 4 Jennifer Berger = Hof 1, Tisch 20, Nummer 4
[21] [21]
Giovanna Lehmann = Hof 1, Tisch 21, Nummer 1 Sergej Aksoy = Hof 1, Tisch 21, Nummer 1
Nicole Lehmann = Hof 1, Tisch 21, Nummer 2 Nadine Aksoy = Hof 1, Tisch 21, Nummer 2
Markus Lehmann = Hof 1, Tisch 21, Nummer 3 Thomas Aksoy = Hof 1, Tisch 21, Nummer 3
Thomas Lehmann = Hof 1, Tisch 21, Nummer 4
[22] [22]
Anja Engel = Hof 1, Tisch 22, Nummer 1 Finn Frank = Hof 1, Tisch 22, Nummer 1
Nicole Engel = Hof 1, Tisch 22, Nummer 2 Lena Frank = Hof 1, Tisch 22, Nummer 2
Anton Engel = Hof 1, Tisch 22, Nummer 3 Marie Frank = Hof 1, Tisch 22, Nummer 3
[23] [23]
Matthias Richter = Hof 1, Tisch 23, Nummer 1 Matthias Richter = Hof 1, Tisch 23, Nummer 1
Greta Richter = Hof 1, Tisch 23, Nummer 2 Anton Richter = Hof 1, Tisch 23, Nummer 2
Anton Richter = Hof 1, Tisch 23, Nummer 3 Anja Richter = Hof 1, Tisch 23, Nummer 3
Anja Richter = Hof 1, Tisch 23, Nummer 4 Greta Richter = Hof 1, Tisch 23, Nummer 4
[24] [24]
Lena Kovac = Hof 1, Tisch 24, Nummer 1
Henry Kovac = Hof 1, Tisch 24, Nummer 2
Tobias Kovac = Hof 1, Tisch 24, Nummer 3
[25] [25]
Svenja Berger = Hof 1, Tisch 25, Nummer 1 Patrick Winkler = Hof 1, Tisch 25, Nummer 1
Layla Berger = Hof 1, Tisch 25, Nummer 2 Kathrin Petrov = Hof 1, Tisch 25, Nummer 2
Anton Berger = Hof 1, Tisch 25, Nummer 3 Milan Petrov = Hof 1, Tisch 25, Nummer 3
Stefan Berger = Hof 1, Tisch 25, Nummer 4 Lena Winkler = Hof 1, Tisch 25, Nummer 4
[26] [26]
Tobias Kovac = Hof 1, Tisch 26, Nummer 1 Dr. Nadine Stein = Hof 1, Tisch 26, Nummer 1
Henry Kovac = Hof 1, Tisch 26, Nummer 2 Christian Peters = Hof 1, Tisch 26, Nummer 2
Anja Kovac = Hof 1, Tisch 26, Nummer 3 Markus Schmitt = Hof 1, Tisch 26, Nummer 3
[27] [27]
Aylin Nowak = Hof 1, Tisch 27, Nummer 1 Anja Engel = Hof 1, Tisch 27, Nummer 1
Leni Seifert = Hof 1, Tisch 27, Nummer 2 Yusuf Engel = Hof 1, Tisch 27, Nummer 2
Nicole Seifert = Hof 1, Tisch 27, Nummer 3 Julia Engel = Hof 1, Tisch 27, Nummer 3
Lina Nowak = Hof 1, Tisch 27, Nummer 4
[28] [28]
Markus Nowak = Hof 1, Tisch 28, Nummer 1 Dr. Olga Klein = Hof 1, Tisch 28, Nummer 1
Felix Nowak = Hof 1, Tisch 28, Nummer 2 Anton Engel = Hof 1, Tisch 28, Nummer 2
Kathrin Nowak = Hof 1, Tisch 28, Nummer 3 Dr. Jennifer Arnold = Hof 1, Tisch 28, Nummer 3
Noah Nowak = Hof 1, Tisch 28, Nummer 4 Nicole Engel = Hof 1, Tisch 28, Nummer 4
[29] [29]
Lena Winkler = Hof 1, Tisch 29, Nummer 1 Layla Berger = Hof 1, Tisch 29, Nummer 1
Patrick Winkler = Hof 1, Tisch 29, Nummer 2 Anton Berger = Hof 1, Tisch 29, Nummer 2
Dr. Sandra Demir = Hof 1, Tisch 29, Nummer 3 Dr. Sandra Demir = Hof 1, Tisch 29, Nummer 3
Prof. Dr. Timo Kaya = Hof 1, Tisch 29, Nummer 4 Prof. Dr. Timo Kaya = Hof 1, Tisch 29, Nummer 4
[30] [30]
Hannah Ott = Hof 1, Tisch 30, Nummer 1 Luca Aksoy = Hof 1, Tisch 30, Nummer 1
Kathrin Petrov = Hof 1, Tisch 30, Nummer 2 Sofia Aksoy = Hof 1, Tisch 30, Nummer 2
Milan Petrov = Hof 1, Tisch 30, Nummer 3 Marie Aksoy = Hof 1, Tisch 30, Nummer 3
Melanie Ott = Hof 1, Tisch 30, Nummer 4
[31] [31]
Thomas Bianchi = Hof 1, Tisch 31, Nummer 1 Daniel Krause = Hof 1, Tisch 31, Nummer 1
Sandra Bianchi = Hof 1, Tisch 31, Nummer 2 Prof. Dr. Emre Ludwig = Hof 1, Tisch 31, Nummer 2
Mia Bianchi = Hof 1, Tisch 31, Nummer 3 Markus Klein = Hof 1, Tisch 31, Nummer 3
Nicole Aksoy = Hof 1, Tisch 31, Nummer 4
[32] [32]
Marija Becker = Hof 1, Tisch 32, Nummer 1 Marco Kovac = Hof 1, Tisch 32, Nummer 1
Matthias Kovac = Hof 1, Tisch 32, Nummer 2 Marija Kovac = Hof 1, Tisch 32, Nummer 2
Prof. Dr. Yusuf Esposito = Hof 1, Tisch 32, Nummer 3 Anja Kovac = Hof 1, Tisch 32, Nummer 3
[33] [33]
Patrick Celik = Hof 1, Tisch 33, Nummer 1 Noah Nowak = Hof 1, Tisch 33, Nummer 1
Elif Celik = Hof 1, Tisch 33, Nummer 2 Lina Nowak = Hof 1, Tisch 33, Nummer 2
Jennifer Berger = Hof 1, Tisch 33, Nummer 3 Kathrin Nowak = Hof 1, Tisch 33, Nummer 3
Andreas Berger = Hof 1, Tisch 33, Nummer 4 Aylin Nowak = Hof 1, Tisch 33, Nummer 4
[34] [34]
Lena Kovac = Hof 1, Tisch 34, Nummer 1 Markus Kraus = Hof 1, Tisch 34, Nummer 1
Marco Kovac = Hof 1, Tisch 34, Nummer 2 Markus Nowak = Hof 1, Tisch 34, Nummer 2
Marija Kovac = Hof 1, Tisch 34, Nummer 3 Felix Nowak = Hof 1, Tisch 34, Nummer 3
Giovanna Petrov = Hof 1, Tisch 34, Nummer 4
[35] [35]
Sofia Aksoy = Hof 1, Tisch 35, Nummer 1 Sandra Werner = Hof 1, Tisch 35, Nummer 1
Luca Aksoy = Hof 1, Tisch 35, Nummer 2 Nadine Werner = Hof 1, Tisch 35, Nummer 2
Marie Aksoy = Hof 1, Tisch 35, Nummer 3 Marco Werner = Hof 1, Tisch 35, Nummer 3
Andreas Werner = Hof 1, Tisch 35, Nummer 4
[36] [36]
Sergej Aksoy = Hof 1, Tisch 36, Nummer 1 Michael Lange = Hof 1, Tisch 36, Nummer 1
Nadine Aksoy = Hof 1, Tisch 36, Nummer 2 Jan Lange = Hof 1, Tisch 36, Nummer 2
Thomas Aksoy = Hof 1, Tisch 36, Nummer 3 Sofia Lange = Hof 1, Tisch 36, Nummer 3
[37] [37]
Dr. Jennifer Haas = Hof 1, Tisch 37, Nummer 1 Thomas Bianchi = Hof 1, Tisch 37, Nummer 1
Prof. Dr. Julia Richter = Hof 1, Tisch 37, Nummer 2 Olga Roth = Hof 1, Tisch 37, Nummer 2
Andreas Weber = Hof 1, Tisch 37, Nummer 3 Prof. Dr. Emre Albrecht = Hof 1, Tisch 37, Nummer 3
[38] [38]
Matthias Ott = Hof 1, Tisch 38, Nummer 1 Thomas Bianchi = Hof 1, Tisch 38, Nummer 1
Olga Ott = Hof 1, Tisch 38, Nummer 2 Mia Bianchi = Hof 1, Tisch 38, Nummer 2
Daniel Ott = Hof 1, Tisch 38, Nummer 3 Sandra Bianchi = Hof 1, Tisch 38, Nummer 3
[39] [39]
Michael Busch = Hof 1, Tisch 39, Nummer 1
Marie Busch = Hof 1, Tisch 39, Nummer 2
Emre Busch = Hof 1, Tisch 39, Nummer 3
Olga Busch = Hof 1, Tisch 39, Nummer 4
[40] [40]
Christina Kaya = Hof 1, Tisch 40, Nummer 1 Sarah Koch = Hof 1, Tisch 40, Nummer 1
Luca Kaya = Hof 1, Tisch 40, Nummer 2 Michael Koch = Hof 1, Tisch 40, Nummer 2
Nicole Kaya = Hof 1, Tisch 40, Nummer 3 Olga Koch = Hof 1, Tisch 40, Nummer 3
Jan Koch = Hof 1, Tisch 40, Nummer 4
[41] [41]
Marie Schmidt = Hof 1, Tisch 41, Nummer 1 Dr. Nicole Hansen = Hof 1, Tisch 41, Nummer 1
Giovanna Schmidt = Hof 1, Tisch 41, Nummer 2 Nicole Peters = Hof 1, Tisch 41, Nummer 2
Matthias Schmidt = Hof 1, Tisch 41, Nummer 3 Emil Koch = Hof 1, Tisch 41, Nummer 3
Marie Koch = Hof 1, Tisch 41, Nummer 4
[42] [42]
Jan Becker = Hof 1, Tisch 42, Nummer 1 Thomas Krause = Hof 1, Tisch 42, Nummer 1
Sandra Becker = Hof 1, Tisch 42, Nummer 2 Prof. Dr. Sergej Ott = Hof 1, Tisch 42, Nummer 2
Nicole Becker = Hof 1, Tisch 42, Nummer 3 Dragana Bauer = Hof 1, Tisch 42, Nummer 3
Patrick Haas = Hof 1, Tisch 42, Nummer 4
[43] [43]
Sofia Nguyen = Hof 1, Tisch 43, Nummer 1 Marija Becker = Hof 1, Tisch 43, Nummer 1
Anja Nguyen = Hof 1, Tisch 43, Nummer 2 Prof. Dr. Yusuf Esposito = Hof 1, Tisch 43, Nummer 2
Daniel Nguyen = Hof 1, Tisch 43, Nummer 3 Matthias Kovac = Hof 1, Tisch 43, Nummer 3
[44] [44]
Matthias Petrov = Hof 1, Tisch 44, Nummer 1 Christina Kaya = Hof 1, Tisch 44, Nummer 1
Markus Barth = Hof 1, Tisch 44, Nummer 2 Luca Kaya = Hof 1, Tisch 44, Nummer 2
Nicole Kaya = Hof 1, Tisch 44, Nummer 3
[45] [45]
Olga Tran = Hof 1, Tisch 45, Nummer 1 Giovanna Schmidt = Hof 1, Tisch 45, Nummer 1
Dr. Anja Seidel = Hof 1, Tisch 45, Nummer 2 Marie Schmidt = Hof 1, Tisch 45, Nummer 2
Prof. Dr. Dennis Werner = Hof 1, Tisch 45, Nummer 3 Matthias Schmidt = Hof 1, Tisch 45, Nummer 3
Dr. Thomas Hoffmann = Hof 1, Tisch 45, Nummer 4
[46] [46]
Elias Ludwig = Hof 2, Tisch 46, Nummer 1 Jan Becker = Hof 2, Tisch 46, Nummer 1
Emre Ludwig = Hof 2, Tisch 46, Nummer 2 Nicole Becker = Hof 2, Tisch 46, Nummer 2
Elif Ludwig = Hof 2, Tisch 46, Nummer 3 Sandra Becker = Hof 2, Tisch 46, Nummer 3
Giovanna Ludwig = Hof 2, Tisch 46, Nummer 4
[47] [47]
Julia Braun = Hof 2, Tisch 47, Nummer 1 Daniel Nguyen = Hof 2, Tisch 47, Nummer 1
Prof. Dr. Sergej Ott = Hof 2, Tisch 47, Nummer 2 Sofia Nguyen = Hof 2, Tisch 47, Nummer 2
Thomas Krause = Hof 2, Tisch 47, Nummer 3 Anja Nguyen = Hof 2, Tisch 47, Nummer 3
Dragana Braun = Hof 2, Tisch 47, Nummer 4
[48] [48]
Milan Braun = Hof 2, Tisch 48, Nummer 1 Leni Seifert = Hof 2, Tisch 48, Nummer 1
Christian Braun = Hof 2, Tisch 48, Nummer 2 Timo Seifert = Hof 2, Tisch 48, Nummer 2
Jan Braun = Hof 2, Tisch 48, Nummer 3 Elif Seifert = Hof 2, Tisch 48, Nummer 3
Nadine Braun = Hof 2, Tisch 48, Nummer 4
[49] [49]
Dr. Michael Aksoy = Hof 2, Tisch 49, Nummer 1 Dr. Jennifer Haas = Hof 2, Tisch 49, Nummer 1
Sergej Lange = Hof 2, Tisch 49, Nummer 2 Markus Barth = Hof 2, Tisch 49, Nummer 2
Patrick Busch = Hof 2, Tisch 49, Nummer 3 Yusuf Seifert = Hof 2, Tisch 49, Nummer 3
Katrin Werner = Hof 2, Tisch 49, Nummer 4 Nicole Seifert = Hof 2, Tisch 49, Nummer 4
[50] [50]
Mila Arnold = Hof 2, Tisch 50, Nummer 1 Andreas Weber = Hof 2, Tisch 50, Nummer 1
Christian Arnold = Hof 2, Tisch 50, Nummer 2 Matthias Petrov = Hof 2, Tisch 50, Nummer 2
Jennifer Arnold = Hof 2, Tisch 50, Nummer 3 Prof. Dr. Julia Richter = Hof 2, Tisch 50, Nummer 3
[51] [51]
Leni Arnold = Hof 2, Tisch 51, Nummer 1 Milan Klein = Hof 2, Tisch 51, Nummer 1
Patrick Arnold = Hof 2, Tisch 51, Nummer 2 Lina Klein = Hof 2, Tisch 51, Nummer 2
Stefanie Klein = Hof 2, Tisch 51, Nummer 3
[52] [52]
Milan Klein = Hof 2, Tisch 52, Nummer 1 Marija Polat = Hof 2, Tisch 52, Nummer 1
Lina Klein = Hof 2, Tisch 52, Nummer 2 Nadine Arnold = Hof 2, Tisch 52, Nummer 2
Stefanie Klein = Hof 2, Tisch 52, Nummer 3 Prof. Dr. Patrick Hoffmann = Hof 2, Tisch 52, Nummer 3
Marco Richter = Hof 2, Tisch 52, Nummer 4
[53] [53]
Christian Roth = Hof 2, Tisch 53, Nummer 1 Marija Aksoy = Hof 2, Tisch 53, Nummer 1
Sofia Roth = Hof 2, Tisch 53, Nummer 2 Kathrin Polat = Hof 2, Tisch 53, Nummer 2
Sarah Roth = Hof 2, Tisch 53, Nummer 3 Sergej Petrov = Hof 2, Tisch 53, Nummer 3
Prof. Dr. Thomas Tran = Hof 2, Tisch 53, Nummer 4
[54] [54]
Dr. Jan Thiel = Hof 2, Tisch 54, Nummer 1
Thomas Sahin = Hof 2, Tisch 54, Nummer 2
Prof. Dr. Anja Richter = Hof 2, Tisch 54, Nummer 3
[55] [55]
Nicole Sahin = Hof 2, Tisch 55, Nummer 1 Dr. Michael Aksoy = Hof 2, Tisch 55, Nummer 1
Markus Sahin = Hof 2, Tisch 55, Nummer 2 Sergej Lange = Hof 2, Tisch 55, Nummer 2
Kathrin Sahin = Hof 2, Tisch 55, Nummer 3 Katrin Werner = Hof 2, Tisch 55, Nummer 3
Patrick Sahin = Hof 2, Tisch 55, Nummer 4 Patrick Busch = Hof 2, Tisch 55, Nummer 4
[56] [56]
Marie Busch = Hof 2, Tisch 56, Nummer 1 Yusuf Weber = Hof 2, Tisch 56, Nummer 1
Michael Busch = Hof 2, Tisch 56, Nummer 2 Giovanna Schwarz = Hof 2, Tisch 56, Nummer 2
Olga Busch = Hof 2, Tisch 56, Nummer 3 Prof. Dr. Dragana Dietrich = Hof 2, Tisch 56, Nummer 3
Emre Busch = Hof 2, Tisch 56, Nummer 4 Emre Hoffmann = Hof 2, Tisch 56, Nummer 4
[57] [57]
Patrick Haas = Hof 2, Tisch 57, Nummer 1 Julia Franke = Hof 2, Tisch 57, Nummer 1
Dr. Nicole Hansen = Hof 2, Tisch 57, Nummer 2 Amira Franke = Hof 2, Tisch 57, Nummer 2
Nicole Peters = Hof 2, Tisch 57, Nummer 3 Michael Franke = Hof 2, Tisch 57, Nummer 3
Dragana Bauer = Hof 2, Tisch 57, Nummer 4
[58] [58]
Olga Koch = Hof 2, Tisch 58, Nummer 1
Emil Koch = Hof 2, Tisch 58, Nummer 2
Marie Koch = Hof 2, Tisch 58, Nummer 3
Sarah Koch = Hof 2, Tisch 58, Nummer 4
[59] [59]
Prof. Dr. Dragana Dietrich = Hof 2, Tisch 59, Nummer 1 Henry Wagner = Hof 2, Tisch 59, Nummer 1
Michael Koch = Hof 2, Tisch 59, Nummer 2 Marco Wagner = Hof 2, Tisch 59, Nummer 2
Emre Hoffmann = Hof 2, Tisch 59, Nummer 3 Nicole Wagner = Hof 2, Tisch 59, Nummer 3
Jan Koch = Hof 2, Tisch 59, Nummer 4 Sarah Wagner = Hof 2, Tisch 59, Nummer 4
[60] [60]
Patrick Lehmann = Hof 2, Tisch 60, Nummer 1 Sarah Roth = Hof 2, Tisch 60, Nummer 1
Prof. Dr. Yusuf Ott = Hof 2, Tisch 60, Nummer 2 Sofia Roth = Hof 2, Tisch 60, Nummer 2
Dr. Nadine Berger = Hof 2, Tisch 60, Nummer 3 Christian Roth = Hof 2, Tisch 60, Nummer 3
[61] [61]
Christian Maier = Hof 2, Tisch 61, Nummer 1 Thomas Sahin = Hof 2, Tisch 61, Nummer 1
Olga Maier = Hof 2, Tisch 61, Nummer 2 Dr. Jan Thiel = Hof 2, Tisch 61, Nummer 2
Arda Maier = Hof 2, Tisch 61, Nummer 3 Prof. Dr. Anja Richter = Hof 2, Tisch 61, Nummer 3
Sarah Maier = Hof 2, Tisch 61, Nummer 4
[62] [62]
Markus Klein = Hof 2, Tisch 62, Nummer 1 Dr. Nadine Berger = Hof 2, Tisch 62, Nummer 1
Prof. Dr. Emre Ludwig = Hof 2, Tisch 62, Nummer 2 Prof. Dr. Yusuf Ott = Hof 2, Tisch 62, Nummer 2
Daniel Krause = Hof 2, Tisch 62, Nummer 3 Patrick Lehmann = Hof 2, Tisch 62, Nummer 3
Nicole Aksoy = Hof 2, Tisch 62, Nummer 4
[63] [63]
Andreas Simon = Hof 2, Tisch 63, Nummer 1 Marco Dietrich = Hof 2, Tisch 63, Nummer 1
Lena Simon = Hof 2, Tisch 63, Nummer 2 Jennifer Dietrich = Hof 2, Tisch 63, Nummer 2
Markus Simon = Hof 2, Tisch 63, Nummer 3 Sofia Dietrich = Hof 2, Tisch 63, Nummer 3
Emma Simon = Hof 2, Tisch 63, Nummer 4
[64] [64]
Sofia Dietrich = Hof 2, Tisch 64, Nummer 1 Julia Thiel = Hof 2, Tisch 64, Nummer 1
Jennifer Dietrich = Hof 2, Tisch 64, Nummer 2 Yusuf Thiel = Hof 2, Tisch 64, Nummer 2
Marco Dietrich = Hof 2, Tisch 64, Nummer 3 Christina Thiel = Hof 2, Tisch 64, Nummer 3
[65] [65]
Julia Thiel = Hof 2, Tisch 65, Nummer 1
Yusuf Thiel = Hof 2, Tisch 65, Nummer 2
Christina Thiel = Hof 2, Tisch 65, Nummer 3
[66] [66]
Andreas Werner = Hof 2, Tisch 66, Nummer 1 Matthias Krause = Hof 2, Tisch 66, Nummer 1
Nadine Werner = Hof 2, Tisch 66, Nummer 2 Dr. Patrick Kraus = Hof 2, Tisch 66, Nummer 2
Marco Werner = Hof 2, Tisch 66, Nummer 3 Prof. Dr. Marco Seifert = Hof 2, Tisch 66, Nummer 3
Sandra Werner = Hof 2, Tisch 66, Nummer 4 Dr. Aylin Ludwig = Hof 2, Tisch 66, Nummer 4
[67] [67]
Patrick Barth = Hof 2, Tisch 67, Nummer 1 Stefan Richter = Hof 2, Tisch 67, Nummer 1
Nadine Barth = Hof 2, Tisch 67, Nummer 2 Marco Franke = Hof 2, Tisch 67, Nummer 2
Timo Barth = Hof 2, Tisch 67, Nummer 3 Luca Kovac = Hof 2, Tisch 67, Nummer 3
Lina Barth = Hof 2, Tisch 67, Nummer 4 Olga Franke = Hof 2, Tisch 67, Nummer 4
[68] [68]
Dr. Kathrin Koch = Hof 2, Tisch 68, Nummer 1 Prof. Dr. Dennis Schmitt = Hof 2, Tisch 68, Nummer 1
Marija Tran = Hof 2, Tisch 68, Nummer 2 Dr. Dragana Krause = Hof 2, Tisch 68, Nummer 2
Dr. Julia Kuhn = Hof 2, Tisch 68, Nummer 3 Luca Ott = Hof 2, Tisch 68, Nummer 3
Patrick Zimmermann = Hof 2, Tisch 68, Nummer 4
[69] [69]
Dr. Aylin Ludwig = Hof 2, Tisch 69, Nummer 1 Patrick Arnold = Hof 2, Tisch 69, Nummer 1
Prof. Dr. Marco Seifert = Hof 2, Tisch 69, Nummer 2 Christian Arnold = Hof 2, Tisch 69, Nummer 2
Dr. Patrick Kraus = Hof 2, Tisch 69, Nummer 3 Mila Arnold = Hof 2, Tisch 69, Nummer 3
[70] [70]
Prof. Dr. Thomas Tran = Hof 2, Tisch 70, Nummer 1 Jennifer Arnold = Hof 2, Tisch 70, Nummer 1
Sergej Petrov = Hof 2, Tisch 70, Nummer 2 Leni Arnold = Hof 2, Tisch 70, Nummer 2
Kathrin Polat = Hof 2, Tisch 70, Nummer 3
Marija Aksoy = Hof 2, Tisch 70, Nummer 4
[71] [71]
Marija Polat = Hof 2, Tisch 71, Nummer 1 Svenja Zimmermann = Hof 2, Tisch 71, Nummer 1
Nadine Arnold = Hof 2, Tisch 71, Nummer 2 Jan Zimmermann = Hof 2, Tisch 71, Nummer 2
Marco Richter = Hof 2, Tisch 71, Nummer 3 Mia Zimmermann = Hof 2, Tisch 71, Nummer 3
Prof. Dr. Patrick Hoffmann = Hof 2, Tisch 71, Nummer 4 Markus Zimmermann = Hof 2, Tisch 71, Nummer 4
[72] [72]
Luca Ott = Hof 2, Tisch 72, Nummer 1 Prof. Dr. Stefan Schmitt = Hof 2, Tisch 72, Nummer 1
Luca Kovac = Hof 2, Tisch 72, Nummer 2 Luca Werner = Hof 2, Tisch 72, Nummer 2
Dr. Dragana Krause = Hof 2, Tisch 72, Nummer 3 Katrin Weber = Hof 2, Tisch 72, Nummer 3
[73] [73]
Michael Lange = Hof 2, Tisch 73, Nummer 1 Hannah Ott = Hof 2, Tisch 73, Nummer 1
Dragana Lange = Hof 2, Tisch 73, Nummer 2 Melanie Ott = Hof 2, Tisch 73, Nummer 2
Matthias Ott = Hof 2, Tisch 73, Nummer 3
[74] [74]
Dragana Pohl = Hof 2, Tisch 74, Nummer 1 Stefan Polat = Hof 2, Tisch 74, Nummer 1
Emre Pohl = Hof 2, Tisch 74, Nummer 2 Daniel Ott = Hof 2, Tisch 74, Nummer 2
Mia Pohl = Hof 2, Tisch 74, Nummer 3 Olga Ott = Hof 2, Tisch 74, Nummer 3
Theo Pohl = Hof 2, Tisch 74, Nummer 4 Sarah Polat = Hof 2, Tisch 74, Nummer 4
[75] [75]
Emilia Stein = Hof 2, Tisch 75, Nummer 1 Julia Krause = Hof 2, Tisch 75, Nummer 1
Ben Stein = Hof 2, Tisch 75, Nummer 2 Emma Krause = Hof 2, Tisch 75, Nummer 2
Giovanna Stein = Hof 2, Tisch 75, Nummer 3 Andreas Krause = Hof 2, Tisch 75, Nummer 3
Thomas Stein = Hof 2, Tisch 75, Nummer 4 Arda Krause = Hof 2, Tisch 75, Nummer 4
[76] [76]
Emma Wolf = Hof 2, Tisch 76, Nummer 1 Elif Ludwig = Hof 2, Tisch 76, Nummer 1
Ben Wolf = Hof 2, Tisch 76, Nummer 2 Elias Ludwig = Hof 2, Tisch 76, Nummer 2
Julia Wolf = Hof 2, Tisch 76, Nummer 3 Emre Ludwig = Hof 2, Tisch 76, Nummer 3
Thomas Wolf = Hof 2, Tisch 76, Nummer 4 Giovanna Ludwig = Hof 2, Tisch 76, Nummer 4
[77] [77]
Prof. Dr. Stefan Schmitt = Hof 2, Tisch 77, Nummer 1 Patrick Sahin = Hof 2, Tisch 77, Nummer 1
Luca Werner = Hof 2, Tisch 77, Nummer 2 Nicole Sahin = Hof 2, Tisch 77, Nummer 2
Katrin Weber = Hof 2, Tisch 77, Nummer 3 Kathrin Sahin = Hof 2, Tisch 77, Nummer 3
Markus Sahin = Hof 2, Tisch 77, Nummer 4
[78] [78]
Giovanna Schwarz = Hof 2, Tisch 78, Nummer 1 Olga Maier = Hof 2, Tisch 78, Nummer 1
Yusuf Weber = Hof 2, Tisch 78, Nummer 2 Sarah Maier = Hof 2, Tisch 78, Nummer 2
Matthias Krause = Hof 2, Tisch 78, Nummer 3 Arda Maier = Hof 2, Tisch 78, Nummer 3
Christian Maier = Hof 2, Tisch 78, Nummer 4
[79] [79]
Stefanie Polat = Hof 2, Tisch 79, Nummer 1 Sofia Schmitt = Hof 2, Tisch 79, Nummer 1
Sarah Polat = Hof 2, Tisch 79, Nummer 2 Markus Schmitt = Hof 2, Tisch 79, Nummer 2
Stefan Polat = Hof 2, Tisch 79, Nummer 3 Sarah Schmitt = Hof 2, Tisch 79, Nummer 3
[80] [80]
Timo Seifert = Hof 2, Tisch 80, Nummer 1 Marija Tran = Hof 2, Tisch 80, Nummer 1
Yusuf Seifert = Hof 2, Tisch 80, Nummer 2 Dr. Julia Kuhn = Hof 2, Tisch 80, Nummer 2
Elif Seifert = Hof 2, Tisch 80, Nummer 3 Dr. Kathrin Koch = Hof 2, Tisch 80, Nummer 3
[81] [81]
Svenja Lange = Hof 2, Tisch 81, Nummer 1 Andreas Simon = Hof 2, Tisch 81, Nummer 1
Jan Lange = Hof 2, Tisch 81, Nummer 2 Markus Simon = Hof 2, Tisch 81, Nummer 2
Sofia Lange = Hof 2, Tisch 81, Nummer 3 Emma Simon = Hof 2, Tisch 81, Nummer 3
Lena Simon = Hof 2, Tisch 81, Nummer 4
[82] [82]
Nicole Wagner = Hof 2, Tisch 82, Nummer 1 Leon Horn = Hof 2, Tisch 82, Nummer 1
Marco Wagner = Hof 2, Tisch 82, Nummer 2 Kathrin Horn = Hof 2, Tisch 82, Nummer 2
Sarah Wagner = Hof 2, Tisch 82, Nummer 3 Layla Horn = Hof 2, Tisch 82, Nummer 3
Henry Wagner = Hof 2, Tisch 82, Nummer 4 Michael Horn = Hof 2, Tisch 82, Nummer 4
[83] [83]
Layla Horn = Hof 2, Tisch 83, Nummer 1 Markus Polat = Hof 2, Tisch 83, Nummer 1
Leon Horn = Hof 2, Tisch 83, Nummer 2 Stefanie Polat = Hof 2, Tisch 83, Nummer 2
Kathrin Horn = Hof 2, Tisch 83, Nummer 3 Katrin Polat = Hof 2, Tisch 83, Nummer 3
Michael Horn = Hof 2, Tisch 83, Nummer 4
[84] [84]
Olga Franke = Hof 2, Tisch 84, Nummer 1 Melanie Rossi = Hof 2, Tisch 84, Nummer 1
Julia Franke = Hof 2, Tisch 84, Nummer 2 Luca Rossi = Hof 2, Tisch 84, Nummer 2
Marco Franke = Hof 2, Tisch 84, Nummer 3 Emilia Rossi = Hof 2, Tisch 84, Nummer 3
[85] [85]
Katrin Polat = Hof 2, Tisch 85, Nummer 1 Mia Pohl = Hof 2, Tisch 85, Nummer 1
Markus Polat = Hof 2, Tisch 85, Nummer 2 Dragana Pohl = Hof 2, Tisch 85, Nummer 2
Michael Franke = Hof 2, Tisch 85, Nummer 3 Theo Pohl = Hof 2, Tisch 85, Nummer 3
Amira Franke = Hof 2, Tisch 85, Nummer 4 Emre Pohl = Hof 2, Tisch 85, Nummer 4
[86] [86]
Sofia Schmitt = Hof 2, Tisch 86, Nummer 1 Thomas Neumann = Hof 2, Tisch 86, Nummer 1
Markus Schmitt = Hof 2, Tisch 86, Nummer 2 Matteo Neumann = Hof 2, Tisch 86, Nummer 2
Sarah Schmitt = Hof 2, Tisch 86, Nummer 3 Lina Neumann = Hof 2, Tisch 86, Nummer 3
Jennifer Neumann = Hof 2, Tisch 86, Nummer 4
[87] [87]
Luca Rossi = Hof 2, Tisch 87, Nummer 1 Ben Stein = Hof 2, Tisch 87, Nummer 1
Emilia Rossi = Hof 2, Tisch 87, Nummer 2 Emilia Stein = Hof 2, Tisch 87, Nummer 2
Melanie Rossi = Hof 2, Tisch 87, Nummer 3 Giovanna Stein = Hof 2, Tisch 87, Nummer 3
Thomas Stein = Hof 2, Tisch 87, Nummer 4
[88] [88]
Andreas Krause = Hof 2, Tisch 88, Nummer 1 Emma Wolf = Hof 2, Tisch 88, Nummer 1
Emma Krause = Hof 2, Tisch 88, Nummer 2 Ben Wolf = Hof 2, Tisch 88, Nummer 2
Arda Krause = Hof 2, Tisch 88, Nummer 3 Thomas Wolf = Hof 2, Tisch 88, Nummer 3
Julia Krause = Hof 2, Tisch 88, Nummer 4 Julia Wolf = Hof 2, Tisch 88, Nummer 4
+50
View File
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="650" viewBox="0 0 900 650" font-family="sans-serif">
<rect width="100%" height="100%" fill="white"/>
<text x="450" y="30" text-anchor="middle" font-size="16" fill="#333">Entwicklung der Loesungsfindung</text>
<line x1="60" y1="60" x2="60" y2="390.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="394.0" text-anchor="end" font-size="11" fill="#666">-187</text>
<line x1="60" y1="324.0" x2="840" y2="324.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="328.0" text-anchor="end" font-size="11" fill="#666">-152</text>
<line x1="60" y1="258.0" x2="840" y2="258.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="262.0" text-anchor="end" font-size="11" fill="#666">-117</text>
<line x1="60" y1="192.0" x2="840" y2="192.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="196.0" text-anchor="end" font-size="11" fill="#666">-82</text>
<line x1="60" y1="126.0" x2="840" y2="126.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="130.0" text-anchor="end" font-size="11" fill="#666">-47</text>
<line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-12</text>
<text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
<polyline points="60.0,60.0 146.7,60.0 233.3,60.0 320.0,60.0 406.7,60.0 493.3,60.0 580.0,60.0 666.7,60.0 753.3,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
<polyline points="60.0,115.1 146.7,136.4 233.3,129.3 320.0,60.0 406.7,104.2 493.3,89.5 580.0,60.0 666.7,113.5 753.3,95.7 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
<polyline points="60.0,377.5 146.7,390.0 233.3,390.0 320.0,60.0 406.7,377.5 493.3,377.5 580.0,60.0 666.7,390.0 753.3,390.0 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
<text x="710" y="92" font-size="11" fill="#333">Durchschnitt</text>
<line x1="680" y1="106" x2="704" y2="106" stroke="#a03030" stroke-width="2"/>
<text x="710" y="110" font-size="11" fill="#333">schlechteste Loesung</text>
<text x="450" y="428.0" text-anchor="middle" font-size="13" fill="#333">Anzahl erzeugter Verteilungen im Pool</text>
<line x1="60" y1="440.0" x2="60" y2="590.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="590.0" x2="840" y2="590.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="590.0" x2="840" y2="590.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="594.0" text-anchor="end" font-size="11" fill="#666">0</text>
<line x1="60" y1="515.0" x2="840" y2="515.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="519.0" text-anchor="end" font-size="11" fill="#666">60</text>
<line x1="60" y1="440.0" x2="840" y2="440.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="444.0" text-anchor="end" font-size="11" fill="#666">120</text>
<polyline points="60.0,540.0 146.7,490.0 233.3,440.0 320.0,547.5 406.7,505.0 493.3,462.5 580.0,555.0 666.7,520.0 753.3,485.0 840.0,561.2" fill="none" stroke="#4060a0" stroke-width="2"/>
<text x="60.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">e</text>
<text x="146.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="233.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="320.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="406.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="493.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="580.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="666.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="753.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="840.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="450" y="638" text-anchor="middle" font-size="12" fill="#333">Zyklus-Aktion (Zeit)</text>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

+39 -36
View File
@@ -1,47 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="900" height="500" viewBox="0 0 900 500" font-family="sans-serif"> <svg xmlns="http://www.w3.org/2000/svg" width="900" height="650" viewBox="0 0 900 650" font-family="sans-serif">
<rect width="100%" height="100%" fill="white"/> <rect width="100%" height="100%" fill="white"/>
<text x="450" y="30" text-anchor="middle" font-size="16" fill="#333">Entwicklung der Loesungsfindung</text> <text x="450" y="30" text-anchor="middle" font-size="16" fill="#333">Entwicklung der Loesungsfindung</text>
<line x1="60" y1="60" x2="60" y2="440" stroke="#333" stroke-width="1.5"/> <line x1="60" y1="60" x2="60" y2="390.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="440" x2="840" y2="440" stroke="#333" stroke-width="1.5"/> <line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="440.0" x2="840" y2="440.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="390.0" x2="840" y2="390.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="444.0" text-anchor="end" font-size="11" fill="#666">-68</text> <text x="52" y="394.0" text-anchor="end" font-size="11" fill="#666">-170</text>
<line x1="60" y1="364.0" x2="840" y2="364.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="324.0" x2="840" y2="324.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="368.0" text-anchor="end" font-size="11" fill="#666">-56</text> <text x="52" y="328.0" text-anchor="end" font-size="11" fill="#666">-138</text>
<line x1="60" y1="288.0" x2="840" y2="288.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="258.0" x2="840" y2="258.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="292.0" text-anchor="end" font-size="11" fill="#666">-43</text> <text x="52" y="262.0" text-anchor="end" font-size="11" fill="#666">-106</text>
<line x1="60" y1="212.0" x2="840" y2="212.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="192.0" x2="840" y2="192.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="216.0" text-anchor="end" font-size="11" fill="#666">-31</text> <text x="52" y="196.0" text-anchor="end" font-size="11" fill="#666">-75</text>
<line x1="60" y1="136.0" x2="840" y2="136.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="126.0" x2="840" y2="126.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="140.0" text-anchor="end" font-size="11" fill="#666">-18</text> <text x="52" y="130.0" text-anchor="end" font-size="11" fill="#666">-43</text>
<line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/> <line x1="60" y1="60.0" x2="840" y2="60.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-6</text> <text x="52" y="64.0" text-anchor="end" font-size="11" fill="#666">-11</text>
<text x="18" y="250" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 250)">Wertigkeit (hoeher = besser)</text> <text x="18" y="225.0" text-anchor="middle" font-size="12" fill="#333" transform="rotate(-90 18 225.0)">Wertigkeit (hoeher = besser)</text>
<text x="450" y="482" text-anchor="middle" font-size="12" fill="#333">Zyklus-Aktion (Zeit)</text> <polyline points="60.0,60.0 146.7,60.0 233.3,60.0 320.0,60.0 406.7,60.0 493.3,60.0 580.0,60.0 666.7,60.0 753.3,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
<text x="60.0" y="456" text-anchor="middle" font-size="10" fill="#999">e</text> <polyline points="60.0,106.9 146.7,110.2 233.3,109.1 320.0,66.8 406.7,100.7 493.3,89.4 580.0,64.4 666.7,84.6 753.3,77.9 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
<text x="108.8" y="456" text-anchor="middle" font-size="10" fill="#999">s</text> <polyline points="60.0,300.8 146.7,300.8 233.3,300.8 320.0,68.3 406.7,182.5 493.3,182.5 580.0,68.3 666.7,390.0 753.3,390.0 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
<text x="157.5" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="206.2" y="456" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="255.0" y="456" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="303.8" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="352.5" y="456" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="401.2" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="450.0" y="456" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="498.8" y="456" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="547.5" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="596.2" y="456" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="645.0" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="693.8" y="456" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="742.5" y="456" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="791.2" y="456" text-anchor="middle" font-size="10" fill="#999">z</text>
<text x="840.0" y="456" text-anchor="middle" font-size="10" fill="#999">s</text>
<polyline points="60.0,60.0 108.8,60.0 157.5,60.0 206.2,60.0 255.0,60.0 303.8,60.0 352.5,60.0 401.2,60.0 450.0,60.0 498.8,60.0 547.5,60.0 596.2,60.0 645.0,60.0 693.8,60.0 742.5,60.0 791.2,60.0 840.0,60.0" fill="none" stroke="#2f6f4f" stroke-width="2"/>
<polyline points="60.0,154.4 108.8,74.7 157.5,74.7 206.2,131.1 255.0,112.3 303.8,112.3 352.5,60.0 401.2,60.0 450.0,72.3 498.8,68.2 547.5,68.2 596.2,60.0 645.0,60.0 693.8,66.1 742.5,64.1 791.2,64.1 840.0,60.0" fill="none" stroke="#c08a2d" stroke-width="2"/>
<polyline points="60.0,440.0 108.8,84.5 157.5,84.5 206.2,280.6 255.0,280.6 303.8,280.6 352.5,60.0 401.2,60.0 450.0,84.5 498.8,84.5 547.5,84.5 596.2,60.0 645.0,60.0 693.8,84.5 742.5,84.5 791.2,84.5 840.0,60.0" fill="none" stroke="#a03030" stroke-width="2"/>
<line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/> <line x1="680" y1="70" x2="704" y2="70" stroke="#2f6f4f" stroke-width="2"/>
<text x="710" y="74" font-size="11" fill="#333">beste Loesung</text> <text x="710" y="74" font-size="11" fill="#333">beste Loesung</text>
<line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/> <line x1="680" y1="88" x2="704" y2="88" stroke="#c08a2d" stroke-width="2"/>
<text x="710" y="92" font-size="11" fill="#333">Durchschnitt</text> <text x="710" y="92" font-size="11" fill="#333">Durchschnitt</text>
<line x1="680" y1="106" x2="704" y2="106" stroke="#a03030" stroke-width="2"/> <line x1="680" y1="106" x2="704" y2="106" stroke="#a03030" stroke-width="2"/>
<text x="710" y="110" font-size="11" fill="#333">schlechteste Loesung</text> <text x="710" y="110" font-size="11" fill="#333">schlechteste Loesung</text>
<text x="450" y="428.0" text-anchor="middle" font-size="13" fill="#333">Anzahl erzeugter Verteilungen im Pool</text>
<line x1="60" y1="440.0" x2="60" y2="590.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="590.0" x2="840" y2="590.0" stroke="#333" stroke-width="1.5"/>
<line x1="60" y1="590.0" x2="840" y2="590.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="594.0" text-anchor="end" font-size="11" fill="#666">0</text>
<line x1="60" y1="515.0" x2="840" y2="515.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="519.0" text-anchor="end" font-size="11" fill="#666">60</text>
<line x1="60" y1="440.0" x2="840" y2="440.0" stroke="#eee" stroke-width="1"/>
<text x="52" y="444.0" text-anchor="end" font-size="11" fill="#666">120</text>
<polyline points="60.0,540.0 146.7,490.0 233.3,440.0 320.0,547.5 406.7,505.0 493.3,462.5 580.0,555.0 666.7,520.0 753.3,485.0 840.0,561.2" fill="none" stroke="#4060a0" stroke-width="2"/>
<text x="60.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">e</text>
<text x="146.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="233.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="320.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="406.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="493.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="580.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="666.7" y="606.0" text-anchor="middle" font-size="10" fill="#999">m</text>
<text x="753.3" y="606.0" text-anchor="middle" font-size="10" fill="#999">j</text>
<text x="840.0" y="606.0" text-anchor="middle" font-size="10" fill="#999">s</text>
<text x="450" y="638" text-anchor="middle" font-size="12" fill="#333">Zyklus-Aktion (Zeit)</text>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

+13 -13
View File
@@ -1,17 +1,17 @@
Bloedkopf, Bestelli, = Hof 1, Tisch 2, Nummer 2 Bloedkopf, Bestelli, = Hof 1, Tisch 2, Nummer 2
Bloedkopf, Bestelli, = Hof 1, Tisch 2, Nummer 3 Bloedkopf, Bestelli, = Hof 1, Tisch 2, Nummer 3
Bloedkopf, Bestelli, = Hof 1, Tisch 2, Nummer 4 Bloedkopf, Bestelli, = Hof 1, Tisch 2, Nummer 4
Brandt, Willi, Dr. = Hof 1, Tisch 4, Nummer 4 Brandt, Willi, Dr. = Hof 1, Tisch 4, Nummer 2
Bruegge, Heinz, = Hof 1, Tisch 3, Nummer 2 Bruegge, Heinz, = Hof 1, Tisch 5, Nummer 2
Dietrich, Marlene, = Hof 1, Tisch 2, Nummer 6 Dietrich, Marlene, = Hof 1, Tisch 5, Nummer 5
Emmerlich, Walter, = Hof 1, Tisch 5, Nummer 2 Emmerlich, Walter, = Hof 1, Tisch 3, Nummer 4
Frenzen, Heinz Harald, = Hof 1, Tisch 4, Nummer 3 Frenzen, Heinz Harald, = Hof 1, Tisch 3, Nummer 2
Hoehn, Bernd Robert, Professor = Hof 1, Tisch 1, Nummer 3 Hoehn, Bernd Robert, Professor = Hof 1, Tisch 1, Nummer 4
Junke, Harald, = Hof 1, Tisch 4, Nummer 2 Junke, Harald, = Hof 1, Tisch 4, Nummer 3
K, Hubert, = Hof 1, Tisch 3, Nummer 3 K, Hubert, = Hof 1, Tisch 5, Nummer 3
Leone, Sergio, = Hof 1, Tisch 5, Nummer 3 Leone, Sergio, = Hof 1, Tisch 4, Nummer 4
Mueller, Magnus, Professor = Hof 1, Tisch 1, Nummer 4 Mueller, Magnus, Professor = Hof 1, Tisch 1, Nummer 3
Ruehmann, Heinz, = Hof 1, Tisch 2, Nummer 5 Ruehmann, Heinz, = Hof 1, Tisch 5, Nummer 4
Schumacher, Michael, = Hof 1, Tisch 5, Nummer 5 Schumacher, Michael, = Hof 1, Tisch 4, Nummer 5
Schumacher, Ralf, = Hof 1, Tisch 5, Nummer 4 Schumacher, Ralf, = Hof 1, Tisch 3, Nummer 3
Stangl, Michael, Dipl. Ing. = Hof 1, Tisch 1, Nummer 2 Stangl, Michael, Dipl. Ing. = Hof 1, Tisch 1, Nummer 2
1 Bloedkopf Bestelli = Hof 1 Tisch 2 Nummer 2
2 Bloedkopf Bestelli = Hof 1 Tisch 2 Nummer 3
3 Bloedkopf Bestelli = Hof 1 Tisch 2 Nummer 4
4 Brandt Willi Dr. = Hof 1 Tisch 4 Nummer 4 Nummer 2
5 Bruegge Heinz = Hof 1 Tisch 3 Tisch 5 Nummer 2
6 Dietrich Marlene = Hof 1 Tisch 2 Tisch 5 Nummer 6 Nummer 5
7 Emmerlich Walter = Hof 1 Tisch 5 Tisch 3 Nummer 2 Nummer 4
8 Frenzen Heinz Harald = Hof 1 Tisch 4 Tisch 3 Nummer 3 Nummer 2
9 Hoehn Bernd Robert Professor = Hof 1 Tisch 1 Nummer 3 Nummer 4
10 Junke Harald = Hof 1 Tisch 4 Nummer 2 Nummer 3
11 K Hubert = Hof 1 Tisch 3 Tisch 5 Nummer 3
12 Leone Sergio = Hof 1 Tisch 5 Tisch 4 Nummer 3 Nummer 4
13 Mueller Magnus Professor = Hof 1 Tisch 1 Nummer 4 Nummer 3
14 Ruehmann Heinz = Hof 1 Tisch 2 Tisch 5 Nummer 5 Nummer 4
15 Schumacher Michael = Hof 1 Tisch 5 Tisch 4 Nummer 5
16 Schumacher Ralf = Hof 1 Tisch 5 Tisch 3 Nummer 4 Nummer 3
17 Stangl Michael Dipl. Ing. = Hof 1 Tisch 1 Nummer 2
+20 -20
View File
@@ -1,37 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="504.572" height="108.914" viewBox="0 0 504.572 108.914"> <svg xmlns="http://www.w3.org/2000/svg" width="504.572" height="108.914" viewBox="0 0 504.572 108.914">
<rect width="100%" height="100%" fill="white"/> <rect width="100%" height="100%" fill="white"/>
<polyline points="351.2,54.4572 450.115,54.4572" fill="none" stroke="#3cb44b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/> <polyline points="252.286,54.4572 351.2,54.4572" fill="none" stroke="#3cb44b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
<circle cx="252.286" cy="54.4572" r="37.242" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="252.286" cy="39.2151" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="252.286" cy="69.6992" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="252.286" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/>
<text x="252.286" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">3</text>
<circle cx="54.4572" cy="54.4572" r="37.242" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="54.4572" cy="54.4572" r="37.242" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="54.4572" cy="39.2151" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="54.4572" cy="39.2151" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="67.6572" cy="62.0782" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="67.6572" cy="62.0782" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="41.2572" cy="62.0782" r="12" fill="#888888" stroke="black" stroke-width="1"/> <circle cx="41.2572" cy="62.0782" r="12" fill="#888888" stroke="black" stroke-width="1"/>
<circle cx="54.4572" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/> <circle cx="54.4572" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/>
<text x="54.4572" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">1</text> <text x="54.4572" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">1</text>
<circle cx="153.372" cy="54.4572" r="44.4572" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="153.372" cy="32" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="172.82" cy="65.6858" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="133.923" cy="65.6858" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
<circle cx="153.372" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/>
<text x="153.372" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">2</text>
<circle cx="252.286" cy="54.4572" r="37.242" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="252.286" cy="39.2151" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="265.486" cy="62.0782" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="239.086" cy="62.0782" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="252.286" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/>
<text x="252.286" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">3</text>
<circle cx="351.2" cy="54.4572" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="351.2" cy="54.4572" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="351.2" cy="35.7896" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="351.2" cy="35.7896" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="367.367" cy="63.791" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="369.868" cy="54.4572" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="335.034" cy="63.791" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="351.2" cy="73.1248" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="332.533" cy="54.4572" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
<circle cx="351.2" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/> <circle cx="351.2" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/>
<text x="351.2" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">4</text> <text x="351.2" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">4</text>
<circle cx="450.115" cy="54.4572" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/> <circle cx="450.115" cy="54.4572" r="40.6676" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="450.115" cy="35.7896" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="450.115" cy="35.7896" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="468.782" cy="54.4572" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="468.782" cy="54.4572" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="450.115" cy="73.1248" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="450.115" cy="73.1248" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="431.447" cy="54.4572" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/> <circle cx="431.447" cy="54.4572" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="450.115" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/> <circle cx="450.115" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/>
<text x="450.115" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">5</text> <text x="450.115" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">5</text>
<circle cx="153.372" cy="54.4572" r="44.4572" fill="white" stroke="black" stroke-width="1.5"/>
<circle cx="153.372" cy="32" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="174.73" cy="47.5175" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="166.572" cy="72.6254" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
<circle cx="140.172" cy="72.6254" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="132.013" cy="47.5175" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
<circle cx="153.372" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/>
<text x="153.372" y="54.4572" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">2</text>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

+13 -13
View File
@@ -1,27 +1,27 @@
[1] [1]
Dipl. Ing. Michael Stangl = Hof 1, Tisch 1, Nummer 1 Dipl. Ing. Michael Stangl = Hof 1, Tisch 1, Nummer 1
Professor Bernd Robert Hoehn = Hof 1, Tisch 1, Nummer 2 Professor Magnus Mueller = Hof 1, Tisch 1, Nummer 2
Professor Magnus Mueller = Hof 1, Tisch 1, Nummer 3 Professor Bernd Robert Hoehn = Hof 1, Tisch 1, Nummer 3
[2] [2]
Bestelli Bloedkopf = Hof 1, Tisch 2, Nummer 1 Bestelli Bloedkopf = Hof 1, Tisch 2, Nummer 1
Bestelli Bloedkopf = Hof 1, Tisch 2, Nummer 2 Bestelli Bloedkopf = Hof 1, Tisch 2, Nummer 2
Bestelli Bloedkopf = Hof 1, Tisch 2, Nummer 3 Bestelli Bloedkopf = Hof 1, Tisch 2, Nummer 3
Heinz Ruehmann = Hof 1, Tisch 2, Nummer 4
Marlene Dietrich = Hof 1, Tisch 2, Nummer 5
[3] [3]
Heinz Bruegge = Hof 1, Tisch 3, Nummer 1 Heinz Harald Frenzen = Hof 1, Tisch 3, Nummer 1
Hubert K = Hof 1, Tisch 3, Nummer 2 Ralf Schumacher = Hof 1, Tisch 3, Nummer 2
Walter Emmerlich = Hof 1, Tisch 3, Nummer 3
[4] [4]
Harald Junke = Hof 1, Tisch 4, Nummer 1 Dr. Willi Brandt = Hof 1, Tisch 4, Nummer 1
Heinz Harald Frenzen = Hof 1, Tisch 4, Nummer 2 Harald Junke = Hof 1, Tisch 4, Nummer 2
Dr. Willi Brandt = Hof 1, Tisch 4, Nummer 3 Sergio Leone = Hof 1, Tisch 4, Nummer 3
Michael Schumacher = Hof 1, Tisch 4, Nummer 4
[5] [5]
Walter Emmerlich = Hof 1, Tisch 5, Nummer 1 Heinz Bruegge = Hof 1, Tisch 5, Nummer 1
Sergio Leone = Hof 1, Tisch 5, Nummer 2 Hubert K = Hof 1, Tisch 5, Nummer 2
Ralf Schumacher = Hof 1, Tisch 5, Nummer 3 Heinz Ruehmann = Hof 1, Tisch 5, Nummer 3
Michael Schumacher = Hof 1, Tisch 5, Nummer 4 Marlene Dietrich = Hof 1, Tisch 5, Nummer 4