SVG-Raumplan: Platzzahl je Tisch, Hover-Infos und Bild vor der Liste
- Platzzahl unter der Tischnummer im SVG - Personenkreise mit <title> (Name - Gruppe) und data-Attributen (gruppe/name/gid); im Web den Raumplan inline statt als <img> einbetten, dazu ein Kasten mit der Gruppen-Namensliste und Hervorhebung der Gruppe beim Hover - Ausgabe: Raumplan vor der Tabellenliste (schneller Varianten-Vergleich) - SVG als UTF-8 schreiben (Umlaute/Gedankenstrich sonst ungueltig) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@@ -2,18 +2,21 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="251.2" height="90.4" viewBox="0 0 251.2 90.4">
|
<svg xmlns="http://www.w3.org/2000/svg" width="251.2" height="90.4" viewBox="0 0 251.2 90.4">
|
||||||
<rect width="100%" height="100%" fill="white"/>
|
<rect width="100%" height="100%" fill="white"/>
|
||||||
<circle cx="45.2" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="45.2" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="45.2" cy="32" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="1" data-gruppe="Gruppe 1" data-name="Vorname1 Nachname1" cx="45.2" cy="32" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Vorname1 Nachname1 — Gruppe 1</title></circle>
|
||||||
<circle cx="45.2" cy="58.4" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="1" data-gruppe="Gruppe 1" data-name="Vorname2 Nachname2" cx="45.2" cy="58.4" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Vorname2 Nachname2 — Gruppe 1</title></circle>
|
||||||
<circle cx="45.2" cy="45.2" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="45.2" cy="45.2" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="45.2" y="45.2" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
<text x="45.2" y="40.4" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="45.2" y="53.6" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</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="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="2" data-gruppe="Gruppe 2" data-name="Vorname3 Nachname3" cx="125.6" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Vorname3 Nachname3 — Gruppe 2</title></circle>
|
||||||
<circle cx="125.6" cy="58.4" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="2" data-gruppe="Gruppe 2" data-name="Vorname4 Nachname4" cx="125.6" cy="58.4" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Vorname4 Nachname4 — Gruppe 2</title></circle>
|
||||||
<circle cx="125.6" cy="45.2" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="125.6" cy="45.2" rx="12" ry="15.6" 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="40.4" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="125.6" y="53.6" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</text>
|
||||||
<circle cx="206" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="206" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="206" cy="32" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="3" data-gruppe="Gruppe 3" data-name="Vorname5 Nachname5" cx="206" cy="32" r="12" fill="#4363d8" stroke="black" stroke-width="1"><title>Vorname5 Nachname5 — Gruppe 3</title></circle>
|
||||||
<circle cx="206" cy="58.4" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="3" data-gruppe="Gruppe 3" data-name="Vorname6 Nachname6" cx="206" cy="58.4" r="12" fill="#4363d8" stroke="black" stroke-width="1"><title>Vorname6 Nachname6 — Gruppe 3</title></circle>
|
||||||
<circle cx="206" cy="45.2" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="206" cy="45.2" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="206" y="45.2" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
<text x="206" y="40.4" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="206" y="53.6" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</text>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 2.7 KiB |
@@ -6,33 +6,39 @@
|
|||||||
<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,32" 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,58.4 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 class="person" data-gid="4" data-gruppe="Gruppe 4" data-name="Vorname10 Nachname10" cx="125.6" cy="353.6" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Vorname10 Nachname10 — Gruppe 4</title></circle>
|
||||||
<circle cx="125.6" cy="380" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="3" data-gruppe="Gruppe 3" data-name="Vorname7 Nachname7" cx="125.6" cy="380" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Vorname7 Nachname7 — Gruppe 3</title></circle>
|
||||||
<circle cx="125.6" cy="366.8" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="125.6" cy="366.8" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="125.6" y="366.8" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
<text x="125.6" y="362" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="125.6" y="375.2" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</text>
|
||||||
<circle cx="206" cy="286.4" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="206" cy="286.4" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="206" cy="273.2" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="4" data-gruppe="Gruppe 4" data-name="Vorname11 Nachname11" cx="206" cy="273.2" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Vorname11 Nachname11 — Gruppe 4</title></circle>
|
||||||
<circle cx="206" cy="299.6" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="4" data-gruppe="Gruppe 4" data-name="Vorname12 Nachname12" cx="206" cy="299.6" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Vorname12 Nachname12 — Gruppe 4</title></circle>
|
||||||
<circle cx="206" cy="286.4" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="206" cy="286.4" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="206" y="286.4" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
<text x="206" y="281.6" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="206" y="294.8" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</text>
|
||||||
<circle cx="206" cy="125.6" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="206" cy="125.6" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="206" cy="112.4" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="1" data-gruppe="Gruppe 1" data-name="Vorname2 Nachname2" cx="206" cy="112.4" r="12" fill="#4363d8" stroke="black" stroke-width="1"><title>Vorname2 Nachname2 — Gruppe 1</title></circle>
|
||||||
<circle cx="206" cy="138.8" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="1" data-gruppe="Gruppe 1" data-name="Vorname3 Nachname3" cx="206" cy="138.8" r="12" fill="#4363d8" stroke="black" stroke-width="1"><title>Vorname3 Nachname3 — Gruppe 1</title></circle>
|
||||||
<circle cx="206" cy="125.6" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="206" cy="125.6" rx="12" ry="15.6" 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="120.8" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="206" y="134" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</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 class="person" data-gid="1" data-gruppe="Gruppe 1" data-name="Vorname1 Nachname1" cx="125.6" cy="32" r="12" fill="#4363d8" stroke="black" stroke-width="1"><title>Vorname1 Nachname1 — Gruppe 1</title></circle>
|
||||||
<circle cx="125.6" cy="58.4" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="2" data-gruppe="Gruppe 2" data-name="Vorname4 Nachname4" cx="125.6" cy="58.4" r="12" fill="#f58231" stroke="black" stroke-width="1"><title>Vorname4 Nachname4 — Gruppe 2</title></circle>
|
||||||
<circle cx="125.6" cy="45.2" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="125.6" cy="45.2" rx="12" ry="15.6" 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="40.4" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="125.6" y="53.6" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</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"/>
|
||||||
<circle cx="45.2" cy="112.4" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="2" data-gruppe="Gruppe 2" data-name="Vorname5 Nachname5" cx="45.2" cy="112.4" r="12" fill="#f58231" stroke="black" stroke-width="1"><title>Vorname5 Nachname5 — Gruppe 2</title></circle>
|
||||||
<circle cx="45.2" cy="138.8" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="2" data-gruppe="Gruppe 2" data-name="Vorname6 Nachname6" cx="45.2" cy="138.8" r="12" fill="#f58231" stroke="black" stroke-width="1"><title>Vorname6 Nachname6 — Gruppe 2</title></circle>
|
||||||
<circle cx="45.2" cy="125.6" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="45.2" cy="125.6" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="45.2" y="125.6" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
<text x="45.2" y="120.8" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="45.2" y="134" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</text>
|
||||||
<circle cx="45.2" cy="286.4" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="45.2" cy="286.4" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="45.2" cy="273.2" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="3" data-gruppe="Gruppe 3" data-name="Vorname8 Nachname8" cx="45.2" cy="273.2" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Vorname8 Nachname8 — Gruppe 3</title></circle>
|
||||||
<circle cx="45.2" cy="299.6" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="3" data-gruppe="Gruppe 3" data-name="Vorname9 Nachname9" cx="45.2" cy="299.6" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Vorname9 Nachname9 — Gruppe 3</title></circle>
|
||||||
<circle cx="45.2" cy="286.4" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="45.2" cy="286.4" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="45.2" y="286.4" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
<text x="45.2" y="281.6" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="45.2" y="294.8" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</text>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 5.8 KiB |
@@ -4,23 +4,27 @@
|
|||||||
<polyline points="45.2,45.2 125.6,45.2" fill="none" stroke="#e6194b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
<polyline points="45.2,45.2 125.6,45.2" fill="none" stroke="#e6194b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
||||||
<polyline points="206,45.2 286.4,45.2" fill="none" stroke="#3cb44b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
<polyline points="206,45.2 286.4,45.2" fill="none" stroke="#3cb44b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
||||||
<circle cx="45.2" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="45.2" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="45.2" cy="32" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="2" data-gruppe="Gruppe 2" data-name="Vorname8 Nachname8" cx="45.2" cy="32" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Vorname8 Nachname8 — Gruppe 2</title></circle>
|
||||||
<circle cx="45.2" cy="58.4" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="2" data-gruppe="Gruppe 2" data-name="Vorname5 Nachname5" cx="45.2" cy="58.4" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Vorname5 Nachname5 — Gruppe 2</title></circle>
|
||||||
<circle cx="45.2" cy="45.2" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="45.2" cy="45.2" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="45.2" y="45.2" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
<text x="45.2" y="40.4" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="45.2" y="53.6" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</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="#e6194b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="2" data-gruppe="Gruppe 2" data-name="Vorname6 Nachname6" cx="125.6" cy="32" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Vorname6 Nachname6 — Gruppe 2</title></circle>
|
||||||
<circle cx="125.6" cy="58.4" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="2" data-gruppe="Gruppe 2" data-name="Vorname7 Nachname7" cx="125.6" cy="58.4" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Vorname7 Nachname7 — Gruppe 2</title></circle>
|
||||||
<circle cx="125.6" cy="45.2" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="125.6" cy="45.2" rx="12" ry="15.6" 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="40.4" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="125.6" y="53.6" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</text>
|
||||||
<circle cx="206" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="206" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="206" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="1" data-gruppe="Gruppe 1" data-name="Vorname3 Nachname3" cx="206" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Vorname3 Nachname3 — Gruppe 1</title></circle>
|
||||||
<circle cx="206" cy="58.4" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="1" data-gruppe="Gruppe 1" data-name="Vorname4 Nachname4" cx="206" cy="58.4" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Vorname4 Nachname4 — Gruppe 1</title></circle>
|
||||||
<circle cx="206" cy="45.2" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="206" cy="45.2" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="206" y="45.2" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
<text x="206" y="40.4" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="206" y="53.6" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</text>
|
||||||
<circle cx="286.4" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="286.4" cy="45.2" r="35.2" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="286.4" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="1" data-gruppe="Gruppe 1" data-name="Vorname1 Nachname1" cx="286.4" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Vorname1 Nachname1 — Gruppe 1</title></circle>
|
||||||
<circle cx="286.4" cy="58.4" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="1" data-gruppe="Gruppe 1" data-name="Vorname2 Nachname2" cx="286.4" cy="58.4" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Vorname2 Nachname2 — Gruppe 1</title></circle>
|
||||||
<circle cx="286.4" cy="45.2" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="286.4" cy="45.2" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="286.4" y="45.2" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
<text x="286.4" y="40.4" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">0</text>
|
||||||
|
<text x="286.4" y="53.6" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">2 Pl.</text>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -14,6 +14,7 @@ from random import *
|
|||||||
import ast
|
import ast
|
||||||
import configparser, os
|
import configparser, os
|
||||||
import copy
|
import copy
|
||||||
|
import html
|
||||||
import math
|
import math
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from functools import total_ordering
|
from functools import total_ordering
|
||||||
@@ -605,7 +606,8 @@ class Sitzplatzverteilung:
|
|||||||
'#42d4f4', '#f032e6', '#bfef45', '#fabed4', '#469990',
|
'#42d4f4', '#f032e6', '#bfef45', '#fabed4', '#469990',
|
||||||
'#dcbeff', '#9a6324', '#800000', '#aaffc3', '#000075' ]
|
'#dcbeff', '#9a6324', '#800000', '#aaffc3', '#000075' ]
|
||||||
|
|
||||||
def alsSVG(self, OutputSVG, PersonenRadius=12, Puffer=10, Verbindungen=True):
|
def alsSVG(self, OutputSVG, PersonenRadius=12, Puffer=10, Verbindungen=True,
|
||||||
|
GruppenNamen=None):
|
||||||
"""Zeichnet die Sitzplatzverteilung als SVG:
|
"""Zeichnet die Sitzplatzverteilung als SVG:
|
||||||
|
|
||||||
Tische werden als weisse Kreise dargestellt, Personen als
|
Tische werden als weisse Kreise dargestellt, Personen als
|
||||||
@@ -617,7 +619,24 @@ class Sitzplatzverteilung:
|
|||||||
Ist Verbindungen=True (Vorgabe), wird jede ueber mehrere Tische
|
Ist Verbindungen=True (Vorgabe), wird jede ueber mehrere Tische
|
||||||
getrennte Gruppe zusaetzlich mit einer Linie in ihrer Gruppenfarbe
|
getrennte Gruppe zusaetzlich mit einer Linie in ihrer Gruppenfarbe
|
||||||
verbunden, so dass die Zusammengehoerigkeit sichtbar bleibt.
|
verbunden, so dass die Zusammengehoerigkeit sichtbar bleibt.
|
||||||
|
|
||||||
|
Jeder Personenkreis bekommt ein <title>-Kind (nativer Browser-
|
||||||
|
Tooltip beim Hover: "Vorname Nachname — Gruppe") sowie die Attribute
|
||||||
|
class="person" und data-gruppe/data-gid, damit eine einbettende
|
||||||
|
Seite darauf ein Hover-/Kasten-Verhalten aufsetzen kann. Optional
|
||||||
|
liefert GruppenNamen ({Gid: Anzeigename}) die lesbaren Gruppennamen;
|
||||||
|
fehlt es, wird "Gruppe <Id>" verwendet.
|
||||||
"""
|
"""
|
||||||
|
GruppenNamen = GruppenNamen or {}
|
||||||
|
|
||||||
|
def GruppenName(G):
|
||||||
|
if G is None:
|
||||||
|
return 'VIP / feste Platzierung'
|
||||||
|
return GruppenNamen.get( G.Id, 'Gruppe %s' % G.Id )
|
||||||
|
|
||||||
|
def PersonName(P):
|
||||||
|
Teile = [ t for t in (P._Titel, P._Vorname, P._Name) if t ]
|
||||||
|
return ' '.join( Teile )
|
||||||
# Tischradius je Tisch berechnen: gross genug, damit alle
|
# Tischradius je Tisch berechnen: gross genug, damit alle
|
||||||
# Personenkreise (auf einem inneren Kreis gleichmaessig verteilt)
|
# Personenkreise (auf einem inneren Kreis gleichmaessig verteilt)
|
||||||
# nebeneinander Platz haben, ohne sich zu beruehren. Der Faktor
|
# nebeneinander Platz haben, ohne sich zu beruehren. Der Faktor
|
||||||
@@ -757,28 +776,49 @@ class Sitzplatzverteilung:
|
|||||||
Winkel = 2 * math.pi * i / max(n, 1) - math.pi / 2
|
Winkel = 2 * math.pi * i / max(n, 1) - math.pi / 2
|
||||||
Px = Mx + SitzRadius * math.cos(Winkel)
|
Px = Mx + SitzRadius * math.cos(Winkel)
|
||||||
Py = My + SitzRadius * math.sin(Winkel)
|
Py = My + SitzRadius * math.sin(Winkel)
|
||||||
Farbe = FarbeVonGruppe( GruppeVonPerson(P) )
|
G = GruppeVonPerson(P)
|
||||||
|
Farbe = FarbeVonGruppe( G )
|
||||||
|
GName = GruppenName( G )
|
||||||
|
PName = PersonName( P )
|
||||||
|
# data-gid: -1 fuer VIPs/ohne Gruppe (keine self.Gruppen-Id)
|
||||||
|
Gid = G.Id if G is not None else -1
|
||||||
Teile.append(
|
Teile.append(
|
||||||
'<circle cx="%g" cy="%g" r="%g" fill="%s" '
|
'<circle class="person" data-gid="%s" data-gruppe="%s" '
|
||||||
'stroke="black" stroke-width="1"/>\n'
|
'data-name="%s" cx="%g" cy="%g" r="%g" fill="%s" '
|
||||||
% (Px, Py, PersonenRadius, Farbe) )
|
'stroke="black" stroke-width="1"><title>%s — %s</title>'
|
||||||
|
'</circle>\n'
|
||||||
|
% ( Gid, html.escape(GName, quote=True),
|
||||||
|
html.escape(PName, quote=True),
|
||||||
|
Px, Py, PersonenRadius, Farbe,
|
||||||
|
html.escape(PName), html.escape(GName) ) )
|
||||||
|
|
||||||
# Tischnummer zentriert in die Tischmitte (nach den Personen-
|
# Tischnummer und Platzzahl zentriert in die Tischmitte (nach den
|
||||||
# kreisen gezeichnet, damit sie oben liegt; ein halbtransparenter
|
# Personenkreisen gezeichnet, damit sie oben liegen; eine halb-
|
||||||
# weisser Kreis darunter haelt sie auch ueber Personenkreisen
|
# transparente weisse Ellipse darunter haelt beide Zeilen auch
|
||||||
# lesbar, falls die Tischmitte belegt sein sollte)
|
# ueber Personenkreisen lesbar, falls die Tischmitte belegt ist).
|
||||||
|
# Obere Zeile: Tischnummer (gross/fett), darunter die Platzzahl.
|
||||||
Teile.append(
|
Teile.append(
|
||||||
'<circle cx="%g" cy="%g" r="%g" fill="white" '
|
'<ellipse cx="%g" cy="%g" rx="%g" ry="%g" fill="white" '
|
||||||
'fill-opacity="0.75"/>\n' % (Mx, My, PersonenRadius) )
|
'fill-opacity="0.75"/>\n'
|
||||||
|
% (Mx, My, PersonenRadius, PersonenRadius * 1.3) )
|
||||||
Teile.append(
|
Teile.append(
|
||||||
'<text x="%g" y="%g" text-anchor="middle" '
|
'<text x="%g" y="%g" text-anchor="middle" '
|
||||||
'dominant-baseline="central" font-size="%g" '
|
'dominant-baseline="central" font-size="%g" '
|
||||||
'font-weight="bold" fill="black">%s</text>\n'
|
'font-weight="bold" fill="black">%s</text>\n'
|
||||||
% (Mx, My, PersonenRadius * 1.1, T.Nummer) )
|
% (Mx, My - PersonenRadius * 0.4, PersonenRadius * 1.1, T.Nummer) )
|
||||||
|
Teile.append(
|
||||||
|
'<text x="%g" y="%g" text-anchor="middle" '
|
||||||
|
'dominant-baseline="central" font-size="%g" '
|
||||||
|
'fill="#333">%d Pl.</text>\n'
|
||||||
|
% (Mx, My + PersonenRadius * 0.7, PersonenRadius * 0.62, T.Plaetze) )
|
||||||
|
|
||||||
Teile.append( '</svg>\n' )
|
Teile.append( '</svg>\n' )
|
||||||
|
|
||||||
fout = open( OutputSVG, 'w' )
|
# als UTF-8 schreiben (die SVG deklariert encoding="UTF-8"): Namen
|
||||||
|
# enthalten Umlaute und der Gedankenstrich im <title> ist non-ASCII;
|
||||||
|
# ohne dies wuerde die Windows-Standardkodierung (cp1252) die Datei
|
||||||
|
# ungueltig machen.
|
||||||
|
fout = open( OutputSVG, 'w', encoding='utf-8' )
|
||||||
fout.writelines( Teile )
|
fout.writelines( Teile )
|
||||||
fout.close()
|
fout.close()
|
||||||
|
|
||||||
|
|||||||
@@ -127,7 +127,8 @@ if __name__ == '__main__':
|
|||||||
print(S)
|
print(S)
|
||||||
S.speichern( AusgabeTP, AusgabePT )
|
S.speichern( AusgabeTP, AusgabePT )
|
||||||
if options.tosvg:
|
if options.tosvg:
|
||||||
S.alsSVG( AusgabeSVG, Verbindungen=options.showconn )
|
S.alsSVG( AusgabeSVG, Verbindungen=options.showconn,
|
||||||
|
GruppenNamen=GruppenNamen )
|
||||||
if options.showdev:
|
if options.showdev:
|
||||||
F1.Entwicklung.alsSVG( AusgabeEntwicklung )
|
F1.Entwicklung.alsSVG( AusgabeEntwicklung )
|
||||||
print( "Entwicklungsverlauf geschrieben:", AusgabeEntwicklung )
|
print( "Entwicklungsverlauf geschrieben:", AusgabeEntwicklung )
|
||||||
|
|||||||
@@ -518,7 +518,8 @@ def ErgebnisSVG(SitzungsId: str,
|
|||||||
Handle, TempPfad = tempfile.mkstemp( suffix='.svg' )
|
Handle, TempPfad = tempfile.mkstemp( suffix='.svg' )
|
||||||
os.close( Handle )
|
os.close( Handle )
|
||||||
try:
|
try:
|
||||||
S['ergebnisse'][variante - 1].alsSVG( TempPfad )
|
S['ergebnisse'][variante - 1].alsSVG( TempPfad,
|
||||||
|
GruppenNamen=S.get( 'gruppenNamen', {} ) )
|
||||||
fsock = open( TempPfad, 'r' )
|
fsock = open( TempPfad, 'r' )
|
||||||
SVG = fsock.read()
|
SVG = fsock.read()
|
||||||
fsock.close()
|
fsock.close()
|
||||||
|
|||||||
@@ -47,8 +47,16 @@
|
|||||||
.status { font-size: .85rem; margin-top: .5rem; min-height: 1.2rem; }
|
.status { font-size: .85rem; margin-top: .5rem; min-height: 1.2rem; }
|
||||||
.status.ok { color: var(--akzent); }
|
.status.ok { color: var(--akzent); }
|
||||||
.status.fehler { color: #a03030; white-space: pre-wrap; }
|
.status.fehler { color: #a03030; white-space: pre-wrap; }
|
||||||
#svgBild { max-width: 100%; border: 1px solid var(--rand); border-radius: 4px;
|
#svgPlan { margin-top: .75rem; border: 1px solid var(--rand); border-radius: 4px;
|
||||||
margin-top: .75rem; background: white; }
|
background: white; overflow: auto; }
|
||||||
|
#svgPlan svg { max-width: 100%; height: auto; display: block; }
|
||||||
|
#svgPlan .person { cursor: pointer; }
|
||||||
|
#svgPlan .person.aktiv { stroke: #111; stroke-width: 3; }
|
||||||
|
#gruppeBox { position: fixed; z-index: 1000; pointer-events: none; display: none;
|
||||||
|
background: #2a2a24; color: white; border-radius: 6px;
|
||||||
|
padding: .5rem .7rem; font-size: .8rem; max-width: 18rem;
|
||||||
|
line-height: 1.35; box-shadow: 0 2px 10px rgba(0,0,0,.35); }
|
||||||
|
#gruppeBox b { display: block; margin-bottom: .3rem; color: var(--akzent-hell, #d6eade); }
|
||||||
.kennzahl { display: inline-block; background: #f1eee6; border-radius: 4px;
|
.kennzahl { display: inline-block; background: #f1eee6; border-radius: 4px;
|
||||||
padding: .3rem .7rem; margin: .15rem .3rem .15rem 0; font-size: .9rem; }
|
padding: .3rem .7rem; margin: .15rem .3rem .15rem 0; font-size: .9rem; }
|
||||||
.kennzahl b { color: var(--akzent); }
|
.kennzahl b { color: var(--akzent); }
|
||||||
@@ -125,9 +133,13 @@
|
|||||||
<div class="status" id="rechnenStatus"></div>
|
<div class="status" id="rechnenStatus"></div>
|
||||||
<div class="varianten" id="variantenListe"></div>
|
<div class="varianten" id="variantenListe"></div>
|
||||||
<div id="kennzahlen"></div>
|
<div id="kennzahlen"></div>
|
||||||
|
<p class="hinweis" style="margin-bottom:0">Im Raumplan mit der Maus über eine Person
|
||||||
|
fahren: Tooltip zeigt Name & Gruppe, ein Kasten listet alle Namen dieser Gruppe,
|
||||||
|
und die Gruppe wird im Plan hervorgehoben.</p>
|
||||||
|
<div id="svgPlan"></div>
|
||||||
<div id="ergebnisTabellen"></div>
|
<div id="ergebnisTabellen"></div>
|
||||||
<img id="svgBild" alt="" style="display:none">
|
|
||||||
</section>
|
</section>
|
||||||
|
<div id="gruppeBox"></div>
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
<script>
|
<script>
|
||||||
@@ -376,16 +388,53 @@ async function zeigeVariante(i) {
|
|||||||
'</tbody></table>';
|
'</tbody></table>';
|
||||||
document.getElementById('ergebnisTabellen').innerHTML = html;
|
document.getElementById('ergebnisTabellen').innerHTML = html;
|
||||||
|
|
||||||
// Raumplan der gewaehlten Variante
|
// Raumplan der gewaehlten Variante — inline einbetten (nicht als <img>),
|
||||||
|
// damit die <title>-Tooltips und das Gruppen-Hover funktionieren
|
||||||
try {
|
try {
|
||||||
const svg = await fetch('/sitzung/' + sitzung + '/ergebnis.svg?variante=' + v.nr);
|
const antwort = await fetch('/sitzung/' + sitzung + '/ergebnis.svg?variante=' + v.nr);
|
||||||
const svgText = await svg.text();
|
const svgText = await antwort.text();
|
||||||
const bild = document.getElementById('svgBild');
|
const plan = document.getElementById('svgPlan');
|
||||||
bild.src = 'data:image/svg+xml;charset=utf-8,' + encodeURIComponent(svgText);
|
plan.innerHTML = svgText.replace(/<\?xml[^>]*\?>/, ''); // XML-Prolog raus
|
||||||
bild.style.display = 'block';
|
gruppeInteraktion(plan.querySelector('svg'));
|
||||||
} catch (e) { /* SVG optional — Tabellen stehen schon da */ }
|
} catch (e) { /* SVG optional — Tabellen stehen schon da */ }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function escHtml(s) {
|
||||||
|
return (s || '').replace(/[&<>"]/g, c =>
|
||||||
|
({ '&': '&', '<': '<', '>': '>', '"': '"' }[c]));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Hover ueber einen Personenkreis: alle Kreise derselben Gruppe hervorheben
|
||||||
|
// und einen Kasten mit der Namensliste dieser Gruppe zeigen. Die Namen kommen
|
||||||
|
// direkt aus den data-name/data-gruppe-Attributen der SVG (vom Kern erzeugt).
|
||||||
|
function gruppeInteraktion(svg) {
|
||||||
|
if (!svg) return;
|
||||||
|
const box = document.getElementById('gruppeBox');
|
||||||
|
let markiert = null;
|
||||||
|
svg.querySelectorAll('.person').forEach(kreis => {
|
||||||
|
kreis.addEventListener('mouseenter', () => {
|
||||||
|
const gruppe = kreis.dataset.gruppe || '';
|
||||||
|
const gleiche = svg.querySelectorAll(
|
||||||
|
'.person[data-gruppe="' + (window.CSS ? CSS.escape(gruppe) : gruppe) + '"]');
|
||||||
|
gleiche.forEach(k => k.classList.add('aktiv'));
|
||||||
|
markiert = gleiche;
|
||||||
|
const namen = [...gleiche].map(k => k.dataset.name || '');
|
||||||
|
box.innerHTML = '<b>' + escHtml(gruppe) + ' (' + namen.length + ')</b>' +
|
||||||
|
namen.map(escHtml).join('<br>');
|
||||||
|
box.style.display = 'block';
|
||||||
|
});
|
||||||
|
kreis.addEventListener('mouseleave', () => {
|
||||||
|
if (markiert) markiert.forEach(k => k.classList.remove('aktiv'));
|
||||||
|
markiert = null;
|
||||||
|
box.style.display = 'none';
|
||||||
|
});
|
||||||
|
});
|
||||||
|
svg.addEventListener('mousemove', e => {
|
||||||
|
box.style.left = (e.clientX + 14) + 'px';
|
||||||
|
box.style.top = (e.clientY + 14) + 'px';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/* ------------------------------------------------ Start */
|
/* ------------------------------------------------ Start */
|
||||||
window.addEventListener('DOMContentLoaded', async () => {
|
window.addEventListener('DOMContentLoaded', async () => {
|
||||||
document.getElementById('csvText').value = beispielCSV;
|
document.getElementById('csvText').value = beispielCSV;
|
||||||
|
|||||||
@@ -1,120 +1,120 @@
|
|||||||
Aksoy, Rainer, = Hof 1, Tisch 1, Nummer 8
|
Aksoy, Rainer, = Hof 1, Tisch 14, Nummer 3
|
||||||
Aksoy, Renate, = Hof 1, Tisch 1, Nummer 4
|
Aksoy, Renate, = Hof 1, Tisch 14, Nummer 4
|
||||||
Aydin, Horst, = Hof 1, Tisch 15, Nummer 5
|
Aydin, Horst, = Hof 1, Tisch 6, Nummer 2
|
||||||
Aydin, Ursula, = Hof 1, Tisch 15, Nummer 6
|
Aydin, Ursula, = Hof 1, Tisch 6, Nummer 3
|
||||||
Barth, Hannelore, = Hof 1, Tisch 9, Nummer 3
|
Barth, Hannelore, = Hof 1, Tisch 8, Nummer 3
|
||||||
Berger, Sergej, = Hof 1, Tisch 8, Nummer 8
|
Berger, Sergej, = Hof 1, Tisch 1, Nummer 11
|
||||||
Brandt, Andreas, = Hof 1, Tisch 14, Nummer 2
|
Brandt, Andreas, = Hof 1, Tisch 15, Nummer 2
|
||||||
Brandt, Anja, = Hof 1, Tisch 14, Nummer 8
|
Brandt, Anja, = Hof 1, Tisch 15, Nummer 6
|
||||||
Brandt, Anton, = Hof 1, Tisch 16, Nummer 10
|
Brandt, Anton, = Hof 1, Tisch 16, Nummer 9
|
||||||
Brandt, Ben, = Hof 1, Tisch 17, Nummer 6
|
Brandt, Ben, = Hof 1, Tisch 17, Nummer 2
|
||||||
Brandt, Daniel, = Hof 1, Tisch 11, Nummer 5
|
Brandt, Daniel, = Hof 1, Tisch 12, Nummer 8
|
||||||
Brandt, Felix, = Hof 1, Tisch 16, Nummer 12
|
Brandt, Felix, = Hof 1, Tisch 16, Nummer 7
|
||||||
Brandt, Frieda, = Hof 1, Tisch 16, Nummer 7
|
Brandt, Frieda, = Hof 1, Tisch 16, Nummer 10
|
||||||
Brandt, Greta, = Hof 1, Tisch 16, Nummer 8
|
Brandt, Greta, = Hof 1, Tisch 16, Nummer 12
|
||||||
Brandt, Helga, = Hof 1, Tisch 1, Nummer 6
|
Brandt, Helga, = Hof 1, Tisch 1, Nummer 5
|
||||||
Brandt, Julia, = Hof 1, Tisch 1, Nummer 10
|
Brandt, Julia, = Hof 1, Tisch 1, Nummer 2
|
||||||
Brandt, Kathrin, = Hof 1, Tisch 11, Nummer 2
|
Brandt, Kathrin, = Hof 1, Tisch 12, Nummer 9
|
||||||
Brandt, Lena, = Hof 1, Tisch 14, Nummer 4
|
Brandt, Lena, = Hof 1, Tisch 15, Nummer 3
|
||||||
Brandt, Milan, = Hof 1, Tisch 14, Nummer 7
|
Brandt, Milan, = Hof 1, Tisch 15, Nummer 5
|
||||||
Brandt, Paul, = Hof 1, Tisch 17, Nummer 4
|
Brandt, Paul, = Hof 1, Tisch 17, Nummer 3
|
||||||
Brandt, Sofia, = Hof 1, Tisch 14, Nummer 9
|
Brandt, Sofia, = Hof 1, Tisch 15, Nummer 7
|
||||||
Brandt, Theo, = Hof 1, Tisch 14, Nummer 3
|
Brandt, Theo, = Hof 1, Tisch 15, Nummer 4
|
||||||
Brandt, Werner, = Hof 1, Tisch 1, Nummer 5
|
Brandt, Werner, = Hof 1, Tisch 1, Nummer 4
|
||||||
Busch, Stefanie, = Hof 1, Tisch 8, Nummer 3
|
Busch, Stefanie, = Hof 1, Tisch 3, Nummer 7
|
||||||
Demir, Elif, = Hof 1, Tisch 10, Nummer 3
|
Demir, Elif, = Hof 1, Tisch 10, Nummer 2
|
||||||
Demir, Hannelore, = Hof 1, Tisch 13, Nummer 2
|
Demir, Hannelore, = Hof 1, Tisch 3, Nummer 4
|
||||||
Demir, Ingrid, = Hof 1, Tisch 13, Nummer 8
|
Demir, Ingrid, = Hof 1, Tisch 3, Nummer 2
|
||||||
Demir, Monika, = Hof 1, Tisch 13, Nummer 5
|
Demir, Monika, = Hof 1, Tisch 3, Nummer 3
|
||||||
Dietrich, Jennifer, = Hof 1, Tisch 2, Nummer 9
|
Dietrich, Jennifer, = Hof 1, Tisch 13, Nummer 2
|
||||||
Dietrich, Nicole, = Hof 1, Tisch 12, Nummer 2
|
Dietrich, Nicole, = Hof 1, Tisch 12, Nummer 7
|
||||||
Erdem, Erika, = Hof 1, Tisch 14, Nummer 5
|
Erdem, Erika, = Hof 1, Tisch 2, Nummer 7
|
||||||
Erdem, Gerhard, = Hof 1, Tisch 9, Nummer 4
|
Erdem, Gerhard, = Hof 1, Tisch 8, Nummer 5
|
||||||
Erdem, Rainer, = Hof 1, Tisch 9, Nummer 9
|
Erdem, Rainer, = Hof 1, Tisch 8, Nummer 6
|
||||||
Esposito, Christian, = Hof 1, Tisch 12, Nummer 3
|
Esposito, Christian, = Hof 1, Tisch 12, Nummer 4
|
||||||
Esposito, Gisela, = Hof 1, Tisch 9, Nummer 8
|
Esposito, Gisela, = Hof 1, Tisch 8, Nummer 7
|
||||||
Esposito, Julia, = Hof 1, Tisch 8, Nummer 9
|
Esposito, Julia, = Hof 1, Tisch 3, Nummer 9
|
||||||
Fischer, Heinz, = Hof 1, Tisch 15, Nummer 9
|
Fischer, Heinz, = Hof 1, Tisch 2, Nummer 4
|
||||||
Fischer, Helga, = Hof 1, Tisch 15, Nummer 2
|
Fischer, Helga, = Hof 1, Tisch 2, Nummer 5
|
||||||
Fischer, Nicole, = Hof 1, Tisch 12, Nummer 6
|
Fischer, Nicole, = Hof 1, Tisch 12, Nummer 2
|
||||||
Fischer, Sven, = Hof 1, Tisch 4, Nummer 3
|
Fischer, Sven, = Hof 1, Tisch 4, Nummer 9
|
||||||
Frank, Erika, = Hof 1, Tisch 9, Nummer 2
|
Frank, Erika, = Hof 1, Tisch 8, Nummer 4
|
||||||
Frank, Nadine, = Hof 1, Tisch 11, Nummer 8
|
Frank, Nadine, = Hof 1, Tisch 11, Nummer 2
|
||||||
Frank, Timo, = Hof 1, Tisch 10, Nummer 7
|
Frank, Timo, = Hof 1, Tisch 10, Nummer 6
|
||||||
Frank, Tobias, = Hof 1, Tisch 1, Nummer 7
|
Frank, Tobias, = Hof 1, Tisch 1, Nummer 9
|
||||||
Franke, Brigitte, = Hof 1, Tisch 9, Nummer 5
|
Franke, Brigitte, = Hof 1, Tisch 8, Nummer 8
|
||||||
Hansen, Olga, = Hof 1, Tisch 11, Nummer 4
|
Hansen, Olga, = Hof 1, Tisch 11, Nummer 5
|
||||||
Hansen, Wolfgang, = Hof 1, Tisch 9, Nummer 6
|
Hansen, Wolfgang, = Hof 1, Tisch 8, Nummer 2
|
||||||
Hoffmann, Lena, = Hof 1, Tisch 12, Nummer 5
|
Hoffmann, Lena, = Hof 1, Tisch 12, Nummer 5
|
||||||
Horn, Daniel, = Hof 1, Tisch 11, Nummer 3
|
Horn, Daniel, = Hof 1, Tisch 11, Nummer 6
|
||||||
Horn, Svenja, = Hof 1, Tisch 2, Nummer 8
|
Horn, Svenja, = Hof 1, Tisch 13, Nummer 4
|
||||||
Klein, Stefan, = Hof 1, Tisch 10, Nummer 8
|
Klein, Stefan, = Hof 1, Tisch 10, Nummer 5
|
||||||
Koch, Andreas, = Hof 1, Tisch 8, Nummer 5
|
Koch, Andreas, = Hof 1, Tisch 3, Nummer 6
|
||||||
Koch, Giovanna, = Hof 1, Tisch 8, Nummer 6
|
Koch, Giovanna, = Hof 1, Tisch 3, Nummer 8
|
||||||
Kovac, Giovanna, = Hof 1, Tisch 2, Nummer 3
|
Kovac, Giovanna, = Hof 1, Tisch 1, Nummer 10
|
||||||
Kraus, Dennis, = Hof 1, Tisch 12, Nummer 8
|
Kraus, Dennis, = Hof 1, Tisch 5, Nummer 8
|
||||||
Kraus, Matteo, = Hof 1, Tisch 16, Nummer 3
|
Kraus, Matteo, = Hof 1, Tisch 16, Nummer 8
|
||||||
Kraus, Melanie, = Hof 1, Tisch 12, Nummer 4
|
Kraus, Melanie, = Hof 1, Tisch 5, Nummer 9
|
||||||
Kuhn, Leni, = Hof 1, Tisch 16, Nummer 9
|
Kuhn, Leni, = Hof 1, Tisch 16, Nummer 2
|
||||||
Kuhn, Sarah, = Hof 1, Tisch 15, Nummer 3
|
Kuhn, Sarah, = Hof 1, Tisch 15, Nummer 9
|
||||||
Kuhn, Stefan, = Hof 1, Tisch 2, Nummer 5
|
Kuhn, Stefan, = Hof 1, Tisch 13, Nummer 6
|
||||||
Kuhn, Timo, = Hof 1, Tisch 15, Nummer 8
|
Kuhn, Timo, = Hof 1, Tisch 15, Nummer 8
|
||||||
Lange, Milan, = Hof 1, Tisch 11, Nummer 7
|
Lange, Milan, = Hof 1, Tisch 11, Nummer 7
|
||||||
Meyer, Anton, = Hof 1, Tisch 17, Nummer 2
|
Meyer, Anton, = Hof 1, Tisch 17, Nummer 4
|
||||||
Meyer, Christian, = Hof 1, Tisch 2, Nummer 7
|
Meyer, Christian, = Hof 1, Tisch 13, Nummer 3
|
||||||
Meyer, Ida, = Hof 1, Tisch 17, Nummer 3
|
Meyer, Ida, = Hof 1, Tisch 17, Nummer 5
|
||||||
Meyer, Marco, = Hof 1, Tisch 5, Nummer 6
|
Meyer, Marco, = Hof 1, Tisch 14, Nummer 6
|
||||||
Meyer, Mila, = Hof 1, Tisch 16, Nummer 13
|
Meyer, Mila, = Hof 1, Tisch 16, Nummer 11
|
||||||
Meyer, Sandra, = Hof 1, Tisch 5, Nummer 4
|
Meyer, Sandra, = Hof 1, Tisch 14, Nummer 7
|
||||||
Meyer, Wolfgang, = Hof 1, Tisch 9, Nummer 7
|
Meyer, Wolfgang, = Hof 1, Tisch 8, 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 4
|
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 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 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 7
|
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 7
|
||||||
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 8
|
Peters, Melanie, = Hof 1, Tisch 11, Nummer 9
|
||||||
Musikverein, Gast, = Hof 1, Tisch 5, Nummer 9
|
Peters, Yusuf, = Hof 1, Tisch 11, Nummer 8
|
||||||
Peters, Melanie, = Hof 1, Tisch 8, Nummer 7
|
Polat, Matthias, = Hof 1, Tisch 12, Nummer 3
|
||||||
Peters, Yusuf, = Hof 1, Tisch 8, Nummer 2
|
Roth, Stefanie, = Hof 1, Tisch 13, Nummer 5
|
||||||
Polat, Matthias, = Hof 1, Tisch 12, Nummer 7
|
Schmidt, Dennis, = Hof 1, Tisch 1, Nummer 12
|
||||||
Roth, Stefanie, = Hof 1, Tisch 2, Nummer 6
|
Schmitt, Markus, = Hof 1, Tisch 11, Nummer 3
|
||||||
Schmidt, Dennis, = Hof 1, Tisch 2, Nummer 2
|
Schwarz, Elias, = Hof 1, Tisch 16, Nummer 6
|
||||||
Schmitt, Markus, = Hof 1, Tisch 11, Nummer 6
|
Schwarz, Guenter, = Hof 1, Tisch 14, Nummer 2
|
||||||
Schwarz, Elias, = Hof 1, Tisch 16, Nummer 4
|
|
||||||
Schwarz, Guenter, = Hof 1, Tisch 1, Nummer 9
|
|
||||||
Schwarz, Liam, = Hof 1, Tisch 16, Nummer 5
|
Schwarz, Liam, = Hof 1, Tisch 16, Nummer 5
|
||||||
Schwarz, Sarah, = Hof 1, Tisch 3, Nummer 2
|
Schwarz, Sarah, = Hof 1, Tisch 2, Nummer 3
|
||||||
Schwarz, Yusuf, = Hof 1, Tisch 3, Nummer 3
|
Schwarz, Yusuf, = Hof 1, Tisch 2, Nummer 2
|
||||||
Simon, Jennifer, = Hof 1, Tisch 10, Nummer 2
|
Simon, Jennifer, = Hof 1, Tisch 10, Nummer 3
|
||||||
Simon, Patrick, = Hof 1, Tisch 2, Nummer 4
|
Simon, Patrick, = Hof 1, Tisch 1, Nummer 13
|
||||||
Simon, Stefanie, = Hof 1, Tisch 10, Nummer 5
|
Simon, Stefanie, = Hof 1, Tisch 10, Nummer 8
|
||||||
Sommer, Daniel, = Hof 1, Tisch 1, Nummer 2
|
Sommer, Daniel, = Hof 1, Tisch 1, Nummer 3
|
||||||
Sommer, Dennis, = Hof 1, Tisch 13, Nummer 4
|
Sommer, Dennis, = Hof 1, Tisch 13, Nummer 7
|
||||||
Sommer, Dennis, = Hof 1, Tisch 15, Nummer 4
|
Sommer, Dennis, = Hof 1, Tisch 2, Nummer 8
|
||||||
Sommer, Dieter, = Hof 1, Tisch 1, Nummer 11
|
Sommer, Dieter, = Hof 1, Tisch 1, Nummer 6
|
||||||
Sommer, Emil, = Hof 1, Tisch 16, Nummer 14
|
Sommer, Emil, = Hof 1, Tisch 16, Nummer 3
|
||||||
Sommer, Ida, = Hof 1, Tisch 16, Nummer 6
|
Sommer, Ida, = Hof 1, Tisch 16, Nummer 4
|
||||||
Sommer, Jennifer, = Hof 1, Tisch 15, Nummer 7
|
Sommer, Jennifer, = Hof 1, Tisch 2, Nummer 9
|
||||||
Sommer, Lina, = Hof 1, Tisch 13, Nummer 9
|
Sommer, Lina, = Hof 1, Tisch 13, Nummer 9
|
||||||
Sommer, Max, = Hof 1, Tisch 16, Nummer 2
|
Sommer, Max, = Hof 1, Tisch 16, Nummer 14
|
||||||
Sommer, Nicole, = Hof 1, Tisch 13, Nummer 3
|
Sommer, Nicole, = Hof 1, Tisch 13, Nummer 8
|
||||||
Sommer, Renate, = Hof 1, Tisch 1, Nummer 13
|
Sommer, Renate, = Hof 1, Tisch 1, Nummer 7
|
||||||
Sommer, Theo, = Hof 1, Tisch 16, Nummer 11
|
Sommer, Theo, = Hof 1, Tisch 16, Nummer 13
|
||||||
Stein, Andreas, = Hof 1, Tisch 10, Nummer 4
|
Stein, Andreas, = Hof 1, Tisch 10, Nummer 4
|
||||||
Stein, Werner, = Hof 1, Tisch 1, Nummer 3
|
Stein, Werner, = Hof 1, Tisch 14, Nummer 5
|
||||||
Tran, Heinz, = Hof 1, Tisch 14, Nummer 6
|
Tran, Heinz, = Hof 1, Tisch 2, Nummer 6
|
||||||
Vogel, Anton, = Hof 1, Tisch 17, Nummer 5
|
Vogel, Anton, = Hof 1, Tisch 17, Nummer 6
|
||||||
Vogel, Max, = Hof 1, Tisch 17, Nummer 7
|
Vogel, Max, = Hof 1, Tisch 17, Nummer 7
|
||||||
Vogel, Sandra, = Hof 1, Tisch 13, Nummer 7
|
Vogel, Sandra, = Hof 1, Tisch 14, Nummer 9
|
||||||
Vogel, Svenja, = Hof 1, Tisch 8, Nummer 4
|
Vogel, Svenja, = Hof 1, Tisch 3, Nummer 5
|
||||||
Vogel, Yusuf, = Hof 1, Tisch 13, Nummer 6
|
Vogel, Yusuf, = Hof 1, Tisch 14, Nummer 8
|
||||||
Wagner, Daniel, = Hof 1, Tisch 10, Nummer 6
|
Wagner, Daniel, = Hof 1, Tisch 10, Nummer 7
|
||||||
Wagner, Timo, = Hof 1, Tisch 12, Nummer 9
|
Wagner, Timo, = Hof 1, Tisch 12, Nummer 6
|
||||||
Winkler, Sarah, = Hof 1, Tisch 1, Nummer 12
|
Winkler, Sarah, = Hof 1, Tisch 1, Nummer 8
|
||||||
Yilmaz, Olga, = Hof 1, Tisch 11, Nummer 9
|
Yilmaz, Olga, = Hof 1, Tisch 11, Nummer 4
|
||||||
|
|||||||
|
@@ -1,177 +1,194 @@
|
|||||||
<?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="106.785,231.844 255.537,417.47" fill="none" stroke="#4363d8" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
<polyline points="239.695,263.249 374.577,76.1153" fill="none" stroke="#bfef45" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
||||||
<polyline points="412.302,254.956 574.352,245.723" fill="none" stroke="#911eb4" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
<polyline points="419.271,254.956 589.915,255.537" fill="none" stroke="#fabed4" 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"/>
|
<ellipse cx="87.1573" cy="415.786" rx="12" ry="15.6" 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="410.986" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">7</text>
|
||||||
<circle cx="251.472" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<text x="87.1573" y="424.186" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</text>
|
||||||
<circle cx="251.472" cy="216.979" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="251.472" cy="285.965" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
|
||||||
<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>
|
|
||||||
<circle cx="908.73" cy="415.786" r="48.4" fill="white" stroke="black" stroke-width="1.5"/>
|
|
||||||
<circle cx="908.73" cy="389.386" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="931.593" cy="402.586" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="931.593" cy="428.986" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="908.73" cy="442.186" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="885.867" cy="428.986" 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"/>
|
|
||||||
<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="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
|
||||||
<circle cx="580.101" cy="381.293" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="607.069" cy="394.28" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="613.729" cy="423.462" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="595.067" cy="446.864" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="565.135" cy="446.864" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="546.472" cy="423.462" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="553.133" cy="394.28" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
|
||||||
<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>
|
|
||||||
<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="111.548" cy="227.081" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="121.651" cy="251.472" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="111.548" cy="275.862" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="87.1573" cy="285.965" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="62.7669" cy="275.862" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="52.664" cy="251.472" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="62.7669" cy="227.081" 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="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="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="440.177" cy="227.081" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="450.28" cy="251.472" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="440.177" cy="275.862" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="415.786" cy="285.965" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="391.396" cy="275.862" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="381.293" cy="251.472" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="391.396" cy="227.081" r="12" fill="#911eb4" 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="216.979" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="604.491" cy="227.081" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="614.594" cy="251.472" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="604.491" cy="275.862" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="580.101" cy="285.965" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="555.711" cy="275.862" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="545.608" cy="251.472" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="555.711" cy="227.081" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
|
||||||
<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>
|
|
||||||
<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="#bfef45" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="275.862" cy="391.396" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="285.965" cy="415.786" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="275.862" cy="440.177" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="251.472" cy="450.28" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="227.081" cy="440.177" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="216.979" cy="415.786" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="227.081" cy="391.396" r="12" fill="#4363d8" 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="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="#fabed4" stroke="black" stroke-width="1"/>
|
<ellipse cx="415.786" cy="415.786" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<circle cx="440.177" cy="391.396" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<text x="415.786" y="410.986" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">9</text>
|
||||||
<circle cx="450.28" cy="415.786" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<text x="415.786" y="424.186" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</text>
|
||||||
<circle cx="440.177" cy="440.177" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle cx="744.415" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="415.786" cy="450.28" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="12" data-gruppe="Onkel und Tante (Braut-Seite)" data-name="Horst Aydin" cx="744.415" cy="216.979" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Horst Aydin — Onkel und Tante (Braut-Seite)</title></circle>
|
||||||
<circle cx="391.396" cy="440.177" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="12" data-gruppe="Onkel und Tante (Braut-Seite)" data-name="Ursula Aydin" cx="744.415" cy="285.965" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Ursula Aydin — Onkel und Tante (Braut-Seite)</title></circle>
|
||||||
<circle cx="381.293" cy="415.786" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<ellipse cx="744.415" cy="251.472" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<circle cx="391.396" cy="391.396" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<text x="744.415" y="246.672" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">6</text>
|
||||||
<circle cx="415.786" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
<text x="744.415" y="259.872" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</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="908.73" cy="415.786" r="48.4" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Ben Brandt" cx="908.73" cy="389.386" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Ben Brandt — VIP / feste Platzierung</title></circle>
|
||||||
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Paul Brandt" cx="931.593" cy="402.586" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Paul Brandt — VIP / feste Platzierung</title></circle>
|
||||||
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Anton Meyer" cx="931.593" cy="428.986" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Anton Meyer — VIP / feste Platzierung</title></circle>
|
||||||
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Ida Meyer" cx="908.73" cy="442.186" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Ida Meyer — VIP / feste Platzierung</title></circle>
|
||||||
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Anton Vogel" cx="885.867" cy="428.986" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Anton Vogel — VIP / feste Platzierung</title></circle>
|
||||||
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Max Vogel" cx="885.867" cy="402.586" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Max Vogel — VIP / feste Platzierung</title></circle>
|
||||||
|
<ellipse cx="908.73" cy="415.786" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
|
<text x="908.73" y="410.986" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">17</text>
|
||||||
|
<text x="908.73" y="424.186" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">6 Pl.</text>
|
||||||
|
<circle cx="580.101" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
|
<circle class="person" data-gid="18" data-gruppe="Arbeitskolleginnen der Braut" data-name="Elif Demir" cx="580.101" cy="381.293" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Elif Demir — Arbeitskolleginnen der Braut</title></circle>
|
||||||
|
<circle class="person" data-gid="18" data-gruppe="Arbeitskolleginnen der Braut" data-name="Jennifer Simon" cx="607.069" cy="394.28" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Jennifer Simon — Arbeitskolleginnen der Braut</title></circle>
|
||||||
|
<circle class="person" data-gid="18" data-gruppe="Arbeitskolleginnen der Braut" data-name="Andreas Stein" cx="613.729" cy="423.462" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Andreas Stein — Arbeitskolleginnen der Braut</title></circle>
|
||||||
|
<circle class="person" data-gid="18" data-gruppe="Arbeitskolleginnen der Braut" data-name="Stefan Klein" cx="595.067" cy="446.864" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Stefan Klein — Arbeitskolleginnen der Braut</title></circle>
|
||||||
|
<circle class="person" data-gid="18" data-gruppe="Arbeitskolleginnen der Braut" data-name="Timo Frank" cx="565.135" cy="446.864" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Timo Frank — Arbeitskolleginnen der Braut</title></circle>
|
||||||
|
<circle class="person" data-gid="18" data-gruppe="Arbeitskolleginnen der Braut" data-name="Daniel Wagner" cx="546.472" cy="423.462" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Daniel Wagner — Arbeitskolleginnen der Braut</title></circle>
|
||||||
|
<circle class="person" data-gid="18" data-gruppe="Arbeitskolleginnen der Braut" data-name="Stefanie Simon" cx="553.133" cy="394.28" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Stefanie Simon — Arbeitskolleginnen der Braut</title></circle>
|
||||||
|
<ellipse cx="580.101" cy="415.786" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
|
<text x="580.101" y="410.986" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">10</text>
|
||||||
|
<text x="580.101" y="424.186" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</text>
|
||||||
|
<circle cx="87.1573" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
|
<circle class="person" data-gid="11" data-gruppe="Familie Schwarz (Braeutigam-Seite, Geschwister Sarah): Liam (8 J.) am Kindertisch; Elias (8 J.) am Kindertisch" data-name="Yusuf Schwarz" cx="87.1573" cy="216.979" r="12" fill="#4363d8" stroke="black" stroke-width="1"><title>Yusuf Schwarz — Familie Schwarz (Braeutigam-Seite, Geschwister Sarah): Liam (8 J.) am Kindertisch; Elias (8 J.) am Kindertisch</title></circle>
|
||||||
|
<circle class="person" data-gid="11" data-gruppe="Familie Schwarz (Braeutigam-Seite, Geschwister Sarah): Liam (8 J.) am Kindertisch; Elias (8 J.) am Kindertisch" data-name="Sarah Schwarz" cx="111.548" cy="227.081" r="12" fill="#4363d8" stroke="black" stroke-width="1"><title>Sarah Schwarz — Familie Schwarz (Braeutigam-Seite, Geschwister Sarah): Liam (8 J.) am Kindertisch; Elias (8 J.) am Kindertisch</title></circle>
|
||||||
|
<circle class="person" data-gid="14" data-gruppe="Onkel und Tante (Braeutigam-Seite)" data-name="Heinz Fischer" cx="121.651" cy="251.472" r="12" fill="#f58231" stroke="black" stroke-width="1"><title>Heinz Fischer — Onkel und Tante (Braeutigam-Seite)</title></circle>
|
||||||
|
<circle class="person" data-gid="14" data-gruppe="Onkel und Tante (Braeutigam-Seite)" data-name="Helga Fischer" cx="111.548" cy="275.862" r="12" fill="#f58231" stroke="black" stroke-width="1"><title>Helga Fischer — Onkel und Tante (Braeutigam-Seite)</title></circle>
|
||||||
|
<circle class="person" data-gid="15" data-gruppe="Grosstante mit Begleitung" data-name="Heinz Tran" cx="87.1573" cy="285.965" r="12" fill="#911eb4" stroke="black" stroke-width="1"><title>Heinz Tran — Grosstante mit Begleitung</title></circle>
|
||||||
|
<circle class="person" data-gid="15" data-gruppe="Grosstante mit Begleitung" data-name="Erika Erdem" cx="62.7669" cy="275.862" r="12" fill="#911eb4" stroke="black" stroke-width="1"><title>Erika Erdem — Grosstante mit Begleitung</title></circle>
|
||||||
|
<circle class="person" data-gid="10" data-gruppe="Familie Sommer (Braeutigam-Seite, Geschwister Dennis): Emil (8 J.) am Kindertisch; Ida (8 J.) am Kindertisch" data-name="Dennis Sommer" cx="52.664" cy="251.472" r="12" fill="#42d4f4" stroke="black" stroke-width="1"><title>Dennis Sommer — Familie Sommer (Braeutigam-Seite, Geschwister Dennis): Emil (8 J.) am Kindertisch; Ida (8 J.) am Kindertisch</title></circle>
|
||||||
|
<circle class="person" data-gid="10" data-gruppe="Familie Sommer (Braeutigam-Seite, Geschwister Dennis): Emil (8 J.) am Kindertisch; Ida (8 J.) am Kindertisch" data-name="Jennifer Sommer" cx="62.7669" cy="227.081" r="12" fill="#42d4f4" stroke="black" stroke-width="1"><title>Jennifer Sommer — Familie Sommer (Braeutigam-Seite, Geschwister Dennis): Emil (8 J.) am Kindertisch; Ida (8 J.) am Kindertisch</title></circle>
|
||||||
|
<ellipse cx="87.1573" cy="251.472" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
|
<text x="87.1573" y="246.672" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">2</text>
|
||||||
|
<text x="87.1573" y="259.872" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</text>
|
||||||
|
<circle cx="251.472" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
|
<circle class="person" data-gid="13" data-gruppe="Onkel und Tante mit Cousine (Braut-Seite)" data-name="Ingrid Demir" cx="251.472" cy="216.979" r="12" fill="#f032e6" stroke="black" stroke-width="1"><title>Ingrid Demir — Onkel und Tante mit Cousine (Braut-Seite)</title></circle>
|
||||||
|
<circle class="person" data-gid="13" data-gruppe="Onkel und Tante mit Cousine (Braut-Seite)" data-name="Monika Demir" cx="275.862" cy="227.081" r="12" fill="#f032e6" stroke="black" stroke-width="1"><title>Monika Demir — Onkel und Tante mit Cousine (Braut-Seite)</title></circle>
|
||||||
|
<circle class="person" data-gid="13" data-gruppe="Onkel und Tante mit Cousine (Braut-Seite)" data-name="Hannelore Demir" cx="285.965" cy="251.472" r="12" fill="#f032e6" stroke="black" stroke-width="1"><title>Hannelore Demir — Onkel und Tante mit Cousine (Braut-Seite)</title></circle>
|
||||||
|
<circle class="person" data-gid="21" data-gruppe="Fussballverein des Braeutigams" data-name="Svenja Vogel" cx="275.862" cy="275.862" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Svenja Vogel — Fussballverein des Braeutigams</title></circle>
|
||||||
|
<circle class="person" data-gid="21" data-gruppe="Fussballverein des Braeutigams" data-name="Andreas Koch" cx="251.472" cy="285.965" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Andreas Koch — Fussballverein des Braeutigams</title></circle>
|
||||||
|
<circle class="person" data-gid="21" data-gruppe="Fussballverein des Braeutigams" data-name="Stefanie Busch" cx="227.081" cy="275.862" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Stefanie Busch — Fussballverein des Braeutigams</title></circle>
|
||||||
|
<circle class="person" data-gid="21" data-gruppe="Fussballverein des Braeutigams" data-name="Giovanna Koch" cx="216.979" cy="251.472" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Giovanna Koch — Fussballverein des Braeutigams</title></circle>
|
||||||
|
<circle class="person" data-gid="21" data-gruppe="Fussballverein des Braeutigams" data-name="Julia Esposito" cx="227.081" cy="227.081" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Julia Esposito — Fussballverein des Braeutigams</title></circle>
|
||||||
|
<ellipse cx="251.472" cy="251.472" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
|
<text x="251.472" y="246.672" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">3</text>
|
||||||
|
<text x="251.472" y="259.872" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</text>
|
||||||
|
<circle cx="415.786" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="415.786" cy="216.979" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="440.177" cy="227.081" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="450.28" cy="251.472" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="440.177" cy="275.862" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="415.786" cy="285.965" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="391.396" cy="275.862" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="381.293" cy="251.472" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="24" data-gruppe="alleinreisender Gast" data-name="Sven Fischer" cx="391.396" cy="227.081" r="12" fill="#469990" stroke="black" stroke-width="1"><title>Sven Fischer — alleinreisender Gast</title></circle>
|
||||||
|
<ellipse cx="415.786" cy="251.472" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
|
<text x="415.786" y="246.672" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">4</text>
|
||||||
|
<text x="415.786" y="259.872" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</text>
|
||||||
|
<circle cx="580.101" cy="251.472" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="580.101" cy="216.979" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="604.491" cy="227.081" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="614.594" cy="251.472" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="604.491" cy="275.862" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="580.101" cy="285.965" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="23" data-gruppe="Musikverein (anonyme Sammelbuchung, 13 Karten)" data-name="Gast Musikverein" cx="555.711" cy="275.862" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Gast Musikverein — Musikverein (anonyme Sammelbuchung, 13 Karten)</title></circle>
|
||||||
|
<circle class="person" data-gid="3" data-gruppe="Familie Kraus (Braut-Seite, Geschwister Melanie): Matteo (9 J.) am Kindertisch" data-name="Dennis Kraus" cx="545.608" cy="251.472" r="12" fill="#dcbeff" stroke="black" stroke-width="1"><title>Dennis Kraus — Familie Kraus (Braut-Seite, Geschwister Melanie): Matteo (9 J.) am Kindertisch</title></circle>
|
||||||
|
<circle class="person" data-gid="3" data-gruppe="Familie Kraus (Braut-Seite, Geschwister Melanie): Matteo (9 J.) am Kindertisch" data-name="Melanie Kraus" cx="555.711" cy="227.081" r="12" fill="#dcbeff" stroke="black" stroke-width="1"><title>Melanie Kraus — Familie Kraus (Braut-Seite, Geschwister Melanie): Matteo (9 J.) am Kindertisch</title></circle>
|
||||||
|
<ellipse cx="580.101" cy="251.472" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
|
<text x="580.101" y="246.672" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">5</text>
|
||||||
|
<text x="580.101" y="259.872" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</text>
|
||||||
|
<circle cx="251.472" cy="415.786" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
|
<circle class="person" data-gid="17" data-gruppe="Kegelclub des Brautvaters" data-name="Wolfgang Hansen" cx="251.472" cy="381.293" r="12" fill="#9a6324" stroke="black" stroke-width="1"><title>Wolfgang Hansen — Kegelclub des Brautvaters</title></circle>
|
||||||
|
<circle class="person" data-gid="17" data-gruppe="Kegelclub des Brautvaters" data-name="Hannelore Barth" cx="275.862" cy="391.396" r="12" fill="#9a6324" stroke="black" stroke-width="1"><title>Hannelore Barth — Kegelclub des Brautvaters</title></circle>
|
||||||
|
<circle class="person" data-gid="17" data-gruppe="Kegelclub des Brautvaters" data-name="Erika Frank" cx="285.965" cy="415.786" r="12" fill="#9a6324" stroke="black" stroke-width="1"><title>Erika Frank — Kegelclub des Brautvaters</title></circle>
|
||||||
|
<circle class="person" data-gid="17" data-gruppe="Kegelclub des Brautvaters" data-name="Gerhard Erdem" cx="275.862" cy="440.177" r="12" fill="#9a6324" stroke="black" stroke-width="1"><title>Gerhard Erdem — Kegelclub des Brautvaters</title></circle>
|
||||||
|
<circle class="person" data-gid="17" data-gruppe="Kegelclub des Brautvaters" data-name="Rainer Erdem" cx="251.472" cy="450.28" r="12" fill="#9a6324" stroke="black" stroke-width="1"><title>Rainer Erdem — Kegelclub des Brautvaters</title></circle>
|
||||||
|
<circle class="person" data-gid="17" data-gruppe="Kegelclub des Brautvaters" data-name="Gisela Esposito" cx="227.081" cy="440.177" r="12" fill="#9a6324" stroke="black" stroke-width="1"><title>Gisela Esposito — Kegelclub des Brautvaters</title></circle>
|
||||||
|
<circle class="person" data-gid="17" data-gruppe="Kegelclub des Brautvaters" data-name="Brigitte Franke" cx="216.979" cy="415.786" r="12" fill="#9a6324" stroke="black" stroke-width="1"><title>Brigitte Franke — Kegelclub des Brautvaters</title></circle>
|
||||||
|
<circle class="person" data-gid="17" data-gruppe="Kegelclub des Brautvaters" data-name="Wolfgang Meyer" cx="227.081" cy="391.396" r="12" fill="#9a6324" stroke="black" stroke-width="1"><title>Wolfgang Meyer — Kegelclub des Brautvaters</title></circle>
|
||||||
|
<ellipse cx="251.472" cy="415.786" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
|
<text x="251.472" y="410.986" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">8</text>
|
||||||
|
<text x="251.472" y="424.186" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</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="#469990" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="19" data-gruppe="Arbeitskollegen des Braeutigams" data-name="Nadine Frank" cx="744.415" cy="381.293" r="12" fill="#800000" stroke="black" stroke-width="1"><title>Nadine Frank — Arbeitskollegen des Braeutigams</title></circle>
|
||||||
<circle cx="768.806" cy="391.396" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="19" data-gruppe="Arbeitskollegen des Braeutigams" data-name="Markus Schmitt" cx="768.806" cy="391.396" r="12" fill="#800000" stroke="black" stroke-width="1"><title>Markus Schmitt — Arbeitskollegen des Braeutigams</title></circle>
|
||||||
<circle cx="778.909" cy="415.786" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="19" data-gruppe="Arbeitskollegen des Braeutigams" data-name="Olga Yilmaz" cx="778.909" cy="415.786" r="12" fill="#800000" stroke="black" stroke-width="1"><title>Olga Yilmaz — Arbeitskollegen des Braeutigams</title></circle>
|
||||||
<circle cx="768.806" cy="440.177" r="12" fill="#469990" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="19" data-gruppe="Arbeitskollegen des Braeutigams" data-name="Olga Hansen" cx="768.806" cy="440.177" r="12" fill="#800000" stroke="black" stroke-width="1"><title>Olga Hansen — Arbeitskollegen des Braeutigams</title></circle>
|
||||||
<circle cx="744.415" cy="450.28" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="19" data-gruppe="Arbeitskollegen des Braeutigams" data-name="Daniel Horn" cx="744.415" cy="450.28" r="12" fill="#800000" stroke="black" stroke-width="1"><title>Daniel Horn — Arbeitskollegen des Braeutigams</title></circle>
|
||||||
<circle cx="720.025" cy="440.177" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="19" data-gruppe="Arbeitskollegen des Braeutigams" data-name="Milan Lange" cx="720.025" cy="440.177" r="12" fill="#800000" stroke="black" stroke-width="1"><title>Milan Lange — Arbeitskollegen des Braeutigams</title></circle>
|
||||||
<circle cx="709.922" cy="415.786" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="1" data-gruppe="Familie Peters (Braut-Seite, Geschwister Melanie)" data-name="Yusuf Peters" cx="709.922" cy="415.786" r="12" fill="#aaffc3" stroke="black" stroke-width="1"><title>Yusuf Peters — Familie Peters (Braut-Seite, Geschwister Melanie)</title></circle>
|
||||||
<circle cx="720.025" cy="391.396" r="12" fill="#dcbeff" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="1" data-gruppe="Familie Peters (Braut-Seite, Geschwister Melanie)" data-name="Melanie Peters" cx="720.025" cy="391.396" r="12" fill="#aaffc3" stroke="black" stroke-width="1"><title>Melanie Peters — Familie Peters (Braut-Seite, Geschwister Melanie)</title></circle>
|
||||||
<circle cx="744.415" cy="415.786" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="744.415" cy="415.786" rx="12" ry="15.6" 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="410.986" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">11</text>
|
||||||
|
<text x="744.415" y="424.186" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</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="#9a6324" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="16" data-gruppe="Studienfreunde der Braut" data-name="Nicole Fischer" cx="87.1573" cy="545.608" r="12" fill="#000075" stroke="black" stroke-width="1"><title>Nicole Fischer — Studienfreunde der Braut</title></circle>
|
||||||
<circle cx="111.548" cy="555.711" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="16" data-gruppe="Studienfreunde der Braut" data-name="Matthias Polat" cx="111.548" cy="555.711" r="12" fill="#000075" stroke="black" stroke-width="1"><title>Matthias Polat — Studienfreunde der Braut</title></circle>
|
||||||
<circle cx="121.651" cy="580.101" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="16" data-gruppe="Studienfreunde der Braut" data-name="Christian Esposito" cx="121.651" cy="580.101" r="12" fill="#000075" stroke="black" stroke-width="1"><title>Christian Esposito — Studienfreunde der Braut</title></circle>
|
||||||
<circle cx="111.548" cy="604.491" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="16" data-gruppe="Studienfreunde der Braut" data-name="Lena Hoffmann" cx="111.548" cy="604.491" r="12" fill="#000075" stroke="black" stroke-width="1"><title>Lena Hoffmann — Studienfreunde der Braut</title></circle>
|
||||||
<circle cx="87.1573" cy="614.594" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="16" data-gruppe="Studienfreunde der Braut" data-name="Timo Wagner" cx="87.1573" cy="614.594" r="12" fill="#000075" stroke="black" stroke-width="1"><title>Timo Wagner — Studienfreunde der Braut</title></circle>
|
||||||
<circle cx="62.7669" cy="604.491" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="16" data-gruppe="Studienfreunde der Braut" data-name="Nicole Dietrich" cx="62.7669" cy="604.491" r="12" fill="#000075" stroke="black" stroke-width="1"><title>Nicole Dietrich — Studienfreunde der Braut</title></circle>
|
||||||
<circle cx="52.664" cy="580.101" r="12" fill="#800000" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="2" data-gruppe="Familie Brandt (Braut-Seite, Geschwister Daniel): Felix (12 J.) am Kindertisch; Ben (13 J.) am Teenager-Tisch" data-name="Daniel Brandt" cx="52.664" cy="580.101" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Daniel Brandt — Familie Brandt (Braut-Seite, Geschwister Daniel): Felix (12 J.) am Kindertisch; Ben (13 J.) am Teenager-Tisch</title></circle>
|
||||||
<circle cx="62.7669" cy="555.711" r="12" fill="#9a6324" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="2" data-gruppe="Familie Brandt (Braut-Seite, Geschwister Daniel): Felix (12 J.) am Kindertisch; Ben (13 J.) am Teenager-Tisch" data-name="Kathrin Brandt" cx="62.7669" cy="555.711" r="12" fill="#e6194b" stroke="black" stroke-width="1"><title>Kathrin Brandt — Familie Brandt (Braut-Seite, Geschwister Daniel): Felix (12 J.) am Kindertisch; Ben (13 J.) am Teenager-Tisch</title></circle>
|
||||||
<circle cx="87.1573" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="87.1573" cy="580.101" rx="12" ry="15.6" 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="575.301" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">12</text>
|
||||||
|
<text x="87.1573" y="588.501" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</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="#aaffc3" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="22" data-gruppe="Freundinnen aus der Schulzeit" data-name="Jennifer Dietrich" cx="251.472" cy="545.608" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Jennifer Dietrich — Freundinnen aus der Schulzeit</title></circle>
|
||||||
<circle cx="275.862" cy="555.711" r="12" fill="#000075" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="22" data-gruppe="Freundinnen aus der Schulzeit" data-name="Christian Meyer" cx="275.862" cy="555.711" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Christian Meyer — Freundinnen aus der Schulzeit</title></circle>
|
||||||
<circle cx="285.965" cy="580.101" r="12" fill="#000075" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="22" data-gruppe="Freundinnen aus der Schulzeit" data-name="Svenja Horn" cx="285.965" cy="580.101" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Svenja Horn — Freundinnen aus der Schulzeit</title></circle>
|
||||||
<circle cx="275.862" cy="604.491" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="22" data-gruppe="Freundinnen aus der Schulzeit" data-name="Stefanie Roth" cx="275.862" cy="604.491" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Stefanie Roth — Freundinnen aus der Schulzeit</title></circle>
|
||||||
<circle cx="251.472" cy="614.594" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="22" data-gruppe="Freundinnen aus der Schulzeit" data-name="Stefan Kuhn" cx="251.472" cy="614.594" r="12" fill="#3cb44b" stroke="black" stroke-width="1"><title>Stefan Kuhn — Freundinnen aus der Schulzeit</title></circle>
|
||||||
<circle cx="227.081" cy="604.491" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="8" data-gruppe="Familie Sommer (Braeutigam-Seite, Geschwister Dennis): Lina (3 J.) sitzt bei den Eltern; Theo (8 J.) am Kindertisch; Max (12 J.) am Kindertisch" data-name="Dennis Sommer" cx="227.081" cy="604.491" r="12" fill="#4363d8" stroke="black" stroke-width="1"><title>Dennis Sommer — Familie Sommer (Braeutigam-Seite, Geschwister Dennis): Lina (3 J.) sitzt bei den Eltern; Theo (8 J.) am Kindertisch; Max (12 J.) am Kindertisch</title></circle>
|
||||||
<circle cx="216.979" cy="580.101" r="12" fill="#aaffc3" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="8" data-gruppe="Familie Sommer (Braeutigam-Seite, Geschwister Dennis): Lina (3 J.) sitzt bei den Eltern; Theo (8 J.) am Kindertisch; Max (12 J.) am Kindertisch" data-name="Nicole Sommer" cx="216.979" cy="580.101" r="12" fill="#4363d8" stroke="black" stroke-width="1"><title>Nicole Sommer — Familie Sommer (Braeutigam-Seite, Geschwister Dennis): Lina (3 J.) sitzt bei den Eltern; Theo (8 J.) am Kindertisch; Max (12 J.) am Kindertisch</title></circle>
|
||||||
<circle cx="227.081" cy="555.711" r="12" fill="#000075" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="8" data-gruppe="Familie Sommer (Braeutigam-Seite, Geschwister Dennis): Lina (3 J.) sitzt bei den Eltern; Theo (8 J.) am Kindertisch; Max (12 J.) am Kindertisch" data-name="Lina Sommer" cx="227.081" cy="555.711" r="12" fill="#4363d8" stroke="black" stroke-width="1"><title>Lina Sommer — Familie Sommer (Braeutigam-Seite, Geschwister Dennis): Lina (3 J.) sitzt bei den Eltern; Theo (8 J.) am Kindertisch; Max (12 J.) am Kindertisch</title></circle>
|
||||||
<circle cx="251.472" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="251.472" cy="580.101" rx="12" ry="15.6" 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="575.301" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">13</text>
|
||||||
|
<text x="251.472" y="588.501" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</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="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="20" data-gruppe="Nachbarn der Brauteltern" data-name="Guenter Schwarz" cx="415.786" cy="545.608" r="12" fill="#f58231" stroke="black" stroke-width="1"><title>Guenter Schwarz — Nachbarn der Brauteltern</title></circle>
|
||||||
<circle cx="440.177" cy="555.711" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="20" data-gruppe="Nachbarn der Brauteltern" data-name="Rainer Aksoy" cx="440.177" cy="555.711" r="12" fill="#f58231" stroke="black" stroke-width="1"><title>Rainer Aksoy — Nachbarn der Brauteltern</title></circle>
|
||||||
<circle cx="450.28" cy="580.101" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="20" data-gruppe="Nachbarn der Brauteltern" data-name="Renate Aksoy" cx="450.28" cy="580.101" r="12" fill="#f58231" stroke="black" stroke-width="1"><title>Renate Aksoy — Nachbarn der Brauteltern</title></circle>
|
||||||
<circle cx="440.177" cy="604.491" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="20" data-gruppe="Nachbarn der Brauteltern" data-name="Werner Stein" cx="440.177" cy="604.491" r="12" fill="#f58231" stroke="black" stroke-width="1"><title>Werner Stein — Nachbarn der Brauteltern</title></circle>
|
||||||
<circle cx="415.786" cy="614.594" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="5" data-gruppe="Familie Meyer (Braut-Seite, Geschwister Sandra): Mila (10 J.) am Kindertisch; Anton (16 J.) am Teenager-Tisch; Ida (16 J.) am Teenager-Tisch" data-name="Marco Meyer" cx="415.786" cy="614.594" r="12" fill="#911eb4" stroke="black" stroke-width="1"><title>Marco Meyer — Familie Meyer (Braut-Seite, Geschwister Sandra): Mila (10 J.) am Kindertisch; Anton (16 J.) am Teenager-Tisch; Ida (16 J.) am Teenager-Tisch</title></circle>
|
||||||
<circle cx="391.396" cy="604.491" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="5" data-gruppe="Familie Meyer (Braut-Seite, Geschwister Sandra): Mila (10 J.) am Kindertisch; Anton (16 J.) am Teenager-Tisch; Ida (16 J.) am Teenager-Tisch" data-name="Sandra Meyer" cx="391.396" cy="604.491" r="12" fill="#911eb4" stroke="black" stroke-width="1"><title>Sandra Meyer — Familie Meyer (Braut-Seite, Geschwister Sandra): Mila (10 J.) am Kindertisch; Anton (16 J.) am Teenager-Tisch; Ida (16 J.) am Teenager-Tisch</title></circle>
|
||||||
<circle cx="381.293" cy="580.101" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="7" data-gruppe="Familie Vogel (Braut-Seite, Geschwister Sandra): Anton (14 J.) am Teenager-Tisch; Max (15 J.) am Teenager-Tisch" data-name="Yusuf Vogel" cx="381.293" cy="580.101" r="12" fill="#42d4f4" stroke="black" stroke-width="1"><title>Yusuf Vogel — Familie Vogel (Braut-Seite, Geschwister Sandra): Anton (14 J.) am Teenager-Tisch; Max (15 J.) am Teenager-Tisch</title></circle>
|
||||||
<circle cx="391.396" cy="555.711" r="12" fill="#f58231" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="7" data-gruppe="Familie Vogel (Braut-Seite, Geschwister Sandra): Anton (14 J.) am Teenager-Tisch; Max (15 J.) am Teenager-Tisch" data-name="Sandra Vogel" cx="391.396" cy="555.711" r="12" fill="#42d4f4" stroke="black" stroke-width="1"><title>Sandra Vogel — Familie Vogel (Braut-Seite, Geschwister Sandra): Anton (14 J.) am Teenager-Tisch; Max (15 J.) am Teenager-Tisch</title></circle>
|
||||||
<circle cx="415.786" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="415.786" cy="580.101" rx="12" ry="15.6" 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="575.301" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">14</text>
|
||||||
|
<text x="415.786" y="588.501" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</text>
|
||||||
<circle cx="580.101" cy="580.101" r="56.4933" fill="white" stroke="black" stroke-width="1.5"/>
|
<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 class="person" data-gid="4" data-gruppe="Familie Brandt (Braut-Seite, Geschwister Andreas): Theo (3 J.) sitzt bei den Eltern; Anton (10 J.) am Kindertisch; Frieda (12 J.) am Kindertisch; Paul (19 J.) am Teenager-Tisch" data-name="Andreas Brandt" cx="580.101" cy="545.608" r="12" fill="#f032e6" stroke="black" stroke-width="1"><title>Andreas Brandt — Familie Brandt (Braut-Seite, Geschwister Andreas): Theo (3 J.) sitzt bei den Eltern; Anton (10 J.) am Kindertisch; Frieda (12 J.) am Kindertisch; Paul (19 J.) am Teenager-Tisch</title></circle>
|
||||||
<circle cx="604.491" cy="555.711" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="4" data-gruppe="Familie Brandt (Braut-Seite, Geschwister Andreas): Theo (3 J.) sitzt bei den Eltern; Anton (10 J.) am Kindertisch; Frieda (12 J.) am Kindertisch; Paul (19 J.) am Teenager-Tisch" data-name="Lena Brandt" cx="604.491" cy="555.711" r="12" fill="#f032e6" stroke="black" stroke-width="1"><title>Lena Brandt — Familie Brandt (Braut-Seite, Geschwister Andreas): Theo (3 J.) sitzt bei den Eltern; Anton (10 J.) am Kindertisch; Frieda (12 J.) am Kindertisch; Paul (19 J.) am Teenager-Tisch</title></circle>
|
||||||
<circle cx="614.594" cy="580.101" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="4" data-gruppe="Familie Brandt (Braut-Seite, Geschwister Andreas): Theo (3 J.) sitzt bei den Eltern; Anton (10 J.) am Kindertisch; Frieda (12 J.) am Kindertisch; Paul (19 J.) am Teenager-Tisch" data-name="Theo Brandt" cx="614.594" cy="580.101" r="12" fill="#f032e6" stroke="black" stroke-width="1"><title>Theo Brandt — Familie Brandt (Braut-Seite, Geschwister Andreas): Theo (3 J.) sitzt bei den Eltern; Anton (10 J.) am Kindertisch; Frieda (12 J.) am Kindertisch; Paul (19 J.) am Teenager-Tisch</title></circle>
|
||||||
<circle cx="604.491" cy="604.491" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="6" data-gruppe="Familie Brandt (Braut-Seite, Geschwister Milan): Sofia (2 J.) sitzt bei den Eltern; Greta (7 J.) am Kindertisch" data-name="Milan Brandt" cx="604.491" cy="604.491" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Milan Brandt — Familie Brandt (Braut-Seite, Geschwister Milan): Sofia (2 J.) sitzt bei den Eltern; Greta (7 J.) am Kindertisch</title></circle>
|
||||||
<circle cx="580.101" cy="614.594" r="12" fill="#bfef45" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="6" data-gruppe="Familie Brandt (Braut-Seite, Geschwister Milan): Sofia (2 J.) sitzt bei den Eltern; Greta (7 J.) am Kindertisch" data-name="Anja Brandt" cx="580.101" cy="614.594" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Anja Brandt — Familie Brandt (Braut-Seite, Geschwister Milan): Sofia (2 J.) sitzt bei den Eltern; Greta (7 J.) am Kindertisch</title></circle>
|
||||||
<circle cx="555.711" cy="604.491" r="12" fill="#f032e6" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="6" data-gruppe="Familie Brandt (Braut-Seite, Geschwister Milan): Sofia (2 J.) sitzt bei den Eltern; Greta (7 J.) am Kindertisch" data-name="Sofia Brandt" cx="555.711" cy="604.491" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Sofia Brandt — Familie Brandt (Braut-Seite, Geschwister Milan): Sofia (2 J.) sitzt bei den Eltern; Greta (7 J.) am Kindertisch</title></circle>
|
||||||
<circle cx="545.608" cy="580.101" r="12" fill="#42d4f4" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="9" data-gruppe="Familie Kuhn (Braeutigam-Seite, Geschwister Sarah): Leni (10 J.) am Kindertisch" data-name="Timo Kuhn" cx="545.608" cy="580.101" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Timo Kuhn — Familie Kuhn (Braeutigam-Seite, Geschwister Sarah): Leni (10 J.) am Kindertisch</title></circle>
|
||||||
<circle cx="555.711" cy="555.711" r="12" fill="#911eb4" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="9" data-gruppe="Familie Kuhn (Braeutigam-Seite, Geschwister Sarah): Leni (10 J.) am Kindertisch" data-name="Sarah Kuhn" cx="555.711" cy="555.711" r="12" fill="#fabed4" stroke="black" stroke-width="1"><title>Sarah Kuhn — Familie Kuhn (Braeutigam-Seite, Geschwister Sarah): Leni (10 J.) am Kindertisch</title></circle>
|
||||||
<circle cx="580.101" cy="580.101" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="580.101" cy="580.101" rx="12" ry="15.6" 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>
|
<text x="580.101" y="575.301" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">15</text>
|
||||||
|
<text x="580.101" y="588.501" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">8 Pl.</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="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Julia Brandt" cx="415.786" cy="36.1564" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Julia Brandt — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="441.287" cy="42.9892" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Daniel Sommer" cx="441.287" cy="42.9892" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Daniel Sommer — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="459.954" cy="61.6568" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Werner Brandt" cx="459.954" cy="61.6568" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Werner Brandt — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="466.787" cy="87.1573" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Helga Brandt" cx="466.787" cy="87.1573" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Helga Brandt — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="459.954" cy="112.658" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Dieter Sommer" cx="459.954" cy="112.658" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Dieter Sommer — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="441.287" cy="131.325" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Renate Sommer" cx="441.287" cy="131.325" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Renate Sommer — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="415.786" cy="138.158" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Sarah Winkler" cx="415.786" cy="138.158" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Sarah Winkler — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="390.286" cy="131.325" r="12" fill="#fabed4" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Tobias Frank" cx="390.286" cy="131.325" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Tobias Frank — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="371.618" cy="112.658" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="21" data-gruppe="Fussballverein des Braeutigams" data-name="Giovanna Kovac" cx="371.618" cy="112.658" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Giovanna Kovac — Fussballverein des Braeutigams</title></circle>
|
||||||
<circle cx="364.785" cy="87.1573" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="21" data-gruppe="Fussballverein des Braeutigams" data-name="Sergej Berger" cx="364.785" cy="87.1573" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Sergej Berger — Fussballverein des Braeutigams</title></circle>
|
||||||
<circle cx="371.618" cy="61.6568" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="21" data-gruppe="Fussballverein des Braeutigams" data-name="Dennis Schmidt" cx="371.618" cy="61.6568" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Dennis Schmidt — Fussballverein des Braeutigams</title></circle>
|
||||||
<circle cx="390.286" cy="42.9892" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="21" data-gruppe="Fussballverein des Braeutigams" data-name="Patrick Simon" cx="390.286" cy="42.9892" r="12" fill="#bfef45" stroke="black" stroke-width="1"><title>Patrick Simon — Fussballverein des Braeutigams</title></circle>
|
||||||
<circle cx="415.786" cy="87.1573" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="415.786" cy="87.1573" rx="12" ry="15.6" 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="82.3573" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">1</text>
|
||||||
|
<text x="415.786" y="95.5573" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">12 Pl.</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"/>
|
||||||
<circle cx="908.73" cy="196.315" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Leni Kuhn" cx="908.73" cy="196.315" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Leni Kuhn — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="934.363" cy="202.632" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Emil Sommer" cx="934.363" cy="202.632" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Emil Sommer — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="954.124" cy="220.139" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Ida Sommer" cx="954.124" cy="220.139" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Ida Sommer — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="963.485" cy="244.823" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Liam Schwarz" cx="963.485" cy="244.823" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Liam Schwarz — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="960.303" cy="271.031" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Elias Schwarz" cx="960.303" cy="271.031" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Elias Schwarz — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="945.306" cy="292.758" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Felix Brandt" cx="945.306" cy="292.758" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Felix Brandt — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="921.93" cy="305.026" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Matteo Kraus" cx="921.93" cy="305.026" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Matteo Kraus — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="895.53" cy="305.026" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Anton Brandt" cx="895.53" cy="305.026" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Anton Brandt — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="872.154" cy="292.758" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Frieda Brandt" cx="872.154" cy="292.758" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Frieda Brandt — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="857.157" cy="271.031" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Mila Meyer" cx="857.157" cy="271.031" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Mila Meyer — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="853.975" cy="244.823" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Greta Brandt" cx="853.975" cy="244.823" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Greta Brandt — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="863.336" cy="220.139" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Theo Sommer" cx="863.336" cy="220.139" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Theo Sommer — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="883.097" cy="202.632" r="12" fill="#888888" stroke="black" stroke-width="1"/>
|
<circle class="person" data-gid="-1" data-gruppe="VIP / feste Platzierung" data-name="Max Sommer" cx="883.097" cy="202.632" r="12" fill="#888888" stroke="black" stroke-width="1"><title>Max Sommer — VIP / feste Platzierung</title></circle>
|
||||||
<circle cx="908.73" cy="251.472" r="12" fill="white" fill-opacity="0.75"/>
|
<ellipse cx="908.73" cy="251.472" rx="12" ry="15.6" fill="white" fill-opacity="0.75"/>
|
||||||
<text x="908.73" y="251.472" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">16</text>
|
<text x="908.73" y="246.672" text-anchor="middle" dominant-baseline="central" font-size="13.2" font-weight="bold" fill="black">16</text>
|
||||||
|
<text x="908.73" y="259.872" text-anchor="middle" dominant-baseline="central" font-size="7.44" fill="#333">13 Pl.</text>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 42 KiB |
@@ -1,154 +1,154 @@
|
|||||||
[1]
|
[1]
|
||||||
Daniel Sommer = Hof 1, Tisch 1, Nummer 1
|
Julia Brandt = Hof 1, Tisch 1, Nummer 1
|
||||||
Werner Stein = Hof 1, Tisch 1, Nummer 2
|
Daniel Sommer = Hof 1, Tisch 1, Nummer 2
|
||||||
Renate Aksoy = Hof 1, Tisch 1, Nummer 3
|
Werner Brandt = Hof 1, Tisch 1, Nummer 3
|
||||||
Werner Brandt = Hof 1, Tisch 1, Nummer 4
|
Helga Brandt = Hof 1, Tisch 1, Nummer 4
|
||||||
Helga Brandt = Hof 1, Tisch 1, Nummer 5
|
Dieter Sommer = Hof 1, Tisch 1, Nummer 5
|
||||||
Tobias Frank = Hof 1, Tisch 1, Nummer 6
|
Renate Sommer = Hof 1, Tisch 1, Nummer 6
|
||||||
Rainer Aksoy = Hof 1, Tisch 1, Nummer 7
|
Sarah Winkler = Hof 1, Tisch 1, Nummer 7
|
||||||
Guenter Schwarz = Hof 1, Tisch 1, Nummer 8
|
Tobias Frank = Hof 1, Tisch 1, Nummer 8
|
||||||
Julia Brandt = Hof 1, Tisch 1, Nummer 9
|
Giovanna Kovac = Hof 1, Tisch 1, Nummer 9
|
||||||
Dieter Sommer = Hof 1, Tisch 1, Nummer 10
|
Sergej Berger = Hof 1, Tisch 1, Nummer 10
|
||||||
Sarah Winkler = Hof 1, Tisch 1, Nummer 11
|
Dennis Schmidt = Hof 1, Tisch 1, Nummer 11
|
||||||
Renate Sommer = Hof 1, Tisch 1, Nummer 12
|
Patrick Simon = Hof 1, Tisch 1, Nummer 12
|
||||||
|
|
||||||
[2]
|
[2]
|
||||||
Dennis Schmidt = Hof 1, Tisch 2, Nummer 1
|
Yusuf Schwarz = Hof 1, Tisch 2, Nummer 1
|
||||||
Giovanna Kovac = Hof 1, Tisch 2, Nummer 2
|
Sarah Schwarz = Hof 1, Tisch 2, Nummer 2
|
||||||
Patrick Simon = Hof 1, Tisch 2, Nummer 3
|
Heinz Fischer = Hof 1, Tisch 2, Nummer 3
|
||||||
Stefan Kuhn = Hof 1, Tisch 2, Nummer 4
|
Helga Fischer = Hof 1, Tisch 2, Nummer 4
|
||||||
Stefanie Roth = Hof 1, Tisch 2, Nummer 5
|
Heinz Tran = Hof 1, Tisch 2, Nummer 5
|
||||||
Christian Meyer = Hof 1, Tisch 2, Nummer 6
|
Erika Erdem = Hof 1, Tisch 2, Nummer 6
|
||||||
Svenja Horn = Hof 1, Tisch 2, Nummer 7
|
Dennis Sommer = Hof 1, Tisch 2, Nummer 7
|
||||||
Jennifer Dietrich = Hof 1, Tisch 2, Nummer 8
|
Jennifer Sommer = Hof 1, Tisch 2, Nummer 8
|
||||||
|
|
||||||
[3]
|
[3]
|
||||||
Sarah Schwarz = Hof 1, Tisch 3, Nummer 1
|
Ingrid Demir = Hof 1, Tisch 3, Nummer 1
|
||||||
Yusuf Schwarz = Hof 1, Tisch 3, Nummer 2
|
Monika Demir = Hof 1, Tisch 3, Nummer 2
|
||||||
|
Hannelore Demir = Hof 1, Tisch 3, Nummer 3
|
||||||
|
Svenja Vogel = Hof 1, Tisch 3, Nummer 4
|
||||||
|
Andreas Koch = Hof 1, Tisch 3, Nummer 5
|
||||||
|
Stefanie Busch = Hof 1, Tisch 3, Nummer 6
|
||||||
|
Giovanna Koch = Hof 1, Tisch 3, Nummer 7
|
||||||
|
Julia Esposito = Hof 1, Tisch 3, Nummer 8
|
||||||
|
|
||||||
[4]
|
[4]
|
||||||
Gast Musikverein = Hof 1, Tisch 4, Nummer 1
|
Gast Musikverein = Hof 1, Tisch 4, Nummer 1
|
||||||
Sven Fischer = Hof 1, Tisch 4, Nummer 2
|
Gast Musikverein = Hof 1, Tisch 4, Nummer 2
|
||||||
Gast Musikverein = 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
|
||||||
Gast Musikverein = 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
|
||||||
Gast Musikverein = Hof 1, Tisch 4, Nummer 8
|
Sven Fischer = 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
|
Gast Musikverein = Hof 1, Tisch 5, Nummer 2
|
||||||
Sandra Meyer = Hof 1, Tisch 5, Nummer 3
|
Gast Musikverein = Hof 1, Tisch 5, Nummer 3
|
||||||
Gast Musikverein = Hof 1, Tisch 5, Nummer 4
|
Gast Musikverein = Hof 1, Tisch 5, Nummer 4
|
||||||
Marco Meyer = 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
|
Dennis Kraus = Hof 1, Tisch 5, Nummer 7
|
||||||
Gast Musikverein = Hof 1, Tisch 5, Nummer 8
|
Melanie Kraus = Hof 1, Tisch 5, Nummer 8
|
||||||
|
|
||||||
[6]
|
[6]
|
||||||
|
Horst Aydin = Hof 1, Tisch 6, Nummer 1
|
||||||
|
Ursula Aydin = Hof 1, Tisch 6, Nummer 2
|
||||||
|
|
||||||
[7]
|
[7]
|
||||||
|
|
||||||
[8]
|
[8]
|
||||||
Yusuf Peters = Hof 1, Tisch 8, Nummer 1
|
Wolfgang Hansen = Hof 1, Tisch 8, Nummer 1
|
||||||
Stefanie Busch = Hof 1, Tisch 8, Nummer 2
|
Hannelore Barth = Hof 1, Tisch 8, Nummer 2
|
||||||
Svenja Vogel = Hof 1, Tisch 8, Nummer 3
|
Erika Frank = Hof 1, Tisch 8, Nummer 3
|
||||||
Andreas Koch = Hof 1, Tisch 8, Nummer 4
|
Gerhard Erdem = Hof 1, Tisch 8, Nummer 4
|
||||||
Giovanna Koch = Hof 1, Tisch 8, Nummer 5
|
Rainer Erdem = Hof 1, Tisch 8, Nummer 5
|
||||||
Melanie Peters = Hof 1, Tisch 8, Nummer 6
|
Gisela Esposito = Hof 1, Tisch 8, Nummer 6
|
||||||
Sergej Berger = Hof 1, Tisch 8, Nummer 7
|
Brigitte Franke = Hof 1, Tisch 8, Nummer 7
|
||||||
Julia Esposito = Hof 1, Tisch 8, Nummer 8
|
Wolfgang Meyer = Hof 1, Tisch 8, Nummer 8
|
||||||
|
|
||||||
[9]
|
[9]
|
||||||
Erika Frank = Hof 1, Tisch 9, Nummer 1
|
|
||||||
Hannelore Barth = Hof 1, Tisch 9, Nummer 2
|
|
||||||
Gerhard Erdem = Hof 1, Tisch 9, Nummer 3
|
|
||||||
Brigitte Franke = Hof 1, Tisch 9, Nummer 4
|
|
||||||
Wolfgang Hansen = Hof 1, Tisch 9, Nummer 5
|
|
||||||
Wolfgang Meyer = Hof 1, Tisch 9, Nummer 6
|
|
||||||
Gisela Esposito = Hof 1, Tisch 9, Nummer 7
|
|
||||||
Rainer Erdem = Hof 1, Tisch 9, Nummer 8
|
|
||||||
|
|
||||||
[10]
|
[10]
|
||||||
Jennifer Simon = Hof 1, Tisch 10, Nummer 1
|
Elif Demir = Hof 1, Tisch 10, Nummer 1
|
||||||
Elif Demir = Hof 1, Tisch 10, Nummer 2
|
Jennifer Simon = Hof 1, Tisch 10, Nummer 2
|
||||||
Andreas Stein = Hof 1, Tisch 10, Nummer 3
|
Andreas Stein = Hof 1, Tisch 10, Nummer 3
|
||||||
Stefanie Simon = Hof 1, Tisch 10, Nummer 4
|
Stefan Klein = Hof 1, Tisch 10, Nummer 4
|
||||||
Daniel Wagner = Hof 1, Tisch 10, Nummer 5
|
Timo Frank = Hof 1, Tisch 10, Nummer 5
|
||||||
Timo Frank = Hof 1, Tisch 10, Nummer 6
|
Daniel Wagner = Hof 1, Tisch 10, Nummer 6
|
||||||
Stefan Klein = Hof 1, Tisch 10, Nummer 7
|
Stefanie Simon = Hof 1, Tisch 10, Nummer 7
|
||||||
|
|
||||||
[11]
|
[11]
|
||||||
Kathrin Brandt = Hof 1, Tisch 11, Nummer 1
|
Nadine Frank = Hof 1, Tisch 11, Nummer 1
|
||||||
Daniel Horn = Hof 1, Tisch 11, Nummer 2
|
Markus Schmitt = Hof 1, Tisch 11, Nummer 2
|
||||||
Olga Hansen = Hof 1, Tisch 11, Nummer 3
|
Olga Yilmaz = Hof 1, Tisch 11, Nummer 3
|
||||||
Daniel Brandt = Hof 1, Tisch 11, Nummer 4
|
Olga Hansen = Hof 1, Tisch 11, Nummer 4
|
||||||
Markus Schmitt = Hof 1, Tisch 11, Nummer 5
|
Daniel Horn = Hof 1, Tisch 11, Nummer 5
|
||||||
Milan Lange = Hof 1, Tisch 11, Nummer 6
|
Milan Lange = Hof 1, Tisch 11, Nummer 6
|
||||||
Nadine Frank = Hof 1, Tisch 11, Nummer 7
|
Yusuf Peters = Hof 1, Tisch 11, Nummer 7
|
||||||
Olga Yilmaz = Hof 1, Tisch 11, Nummer 8
|
Melanie Peters = Hof 1, Tisch 11, Nummer 8
|
||||||
|
|
||||||
[12]
|
[12]
|
||||||
Nicole Dietrich = Hof 1, Tisch 12, Nummer 1
|
Nicole Fischer = Hof 1, Tisch 12, Nummer 1
|
||||||
Christian Esposito = Hof 1, Tisch 12, Nummer 2
|
Matthias Polat = Hof 1, Tisch 12, Nummer 2
|
||||||
Melanie Kraus = Hof 1, Tisch 12, Nummer 3
|
Christian Esposito = Hof 1, Tisch 12, Nummer 3
|
||||||
Lena Hoffmann = Hof 1, Tisch 12, Nummer 4
|
Lena Hoffmann = Hof 1, Tisch 12, Nummer 4
|
||||||
Nicole Fischer = Hof 1, Tisch 12, Nummer 5
|
Timo Wagner = Hof 1, Tisch 12, Nummer 5
|
||||||
Matthias Polat = Hof 1, Tisch 12, Nummer 6
|
Nicole Dietrich = Hof 1, Tisch 12, Nummer 6
|
||||||
Dennis Kraus = Hof 1, Tisch 12, Nummer 7
|
Daniel Brandt = Hof 1, Tisch 12, Nummer 7
|
||||||
Timo Wagner = Hof 1, Tisch 12, Nummer 8
|
Kathrin Brandt = Hof 1, Tisch 12, Nummer 8
|
||||||
|
|
||||||
[13]
|
[13]
|
||||||
Hannelore Demir = Hof 1, Tisch 13, Nummer 1
|
Jennifer Dietrich = Hof 1, Tisch 13, Nummer 1
|
||||||
Nicole Sommer = Hof 1, Tisch 13, Nummer 2
|
Christian Meyer = Hof 1, Tisch 13, Nummer 2
|
||||||
Dennis Sommer = Hof 1, Tisch 13, Nummer 3
|
Svenja Horn = Hof 1, Tisch 13, Nummer 3
|
||||||
Monika Demir = Hof 1, Tisch 13, Nummer 4
|
Stefanie Roth = Hof 1, Tisch 13, Nummer 4
|
||||||
Yusuf Vogel = Hof 1, Tisch 13, Nummer 5
|
Stefan Kuhn = Hof 1, Tisch 13, Nummer 5
|
||||||
Sandra Vogel = Hof 1, Tisch 13, Nummer 6
|
Dennis Sommer = Hof 1, Tisch 13, Nummer 6
|
||||||
Ingrid Demir = Hof 1, Tisch 13, Nummer 7
|
Nicole Sommer = Hof 1, Tisch 13, Nummer 7
|
||||||
Lina Sommer = Hof 1, Tisch 13, Nummer 8
|
Lina Sommer = Hof 1, Tisch 13, Nummer 8
|
||||||
|
|
||||||
[14]
|
[14]
|
||||||
Andreas Brandt = Hof 1, Tisch 14, Nummer 1
|
Guenter Schwarz = Hof 1, Tisch 14, Nummer 1
|
||||||
Theo Brandt = Hof 1, Tisch 14, Nummer 2
|
Rainer Aksoy = Hof 1, Tisch 14, Nummer 2
|
||||||
Lena Brandt = Hof 1, Tisch 14, Nummer 3
|
Renate Aksoy = Hof 1, Tisch 14, Nummer 3
|
||||||
Erika Erdem = Hof 1, Tisch 14, Nummer 4
|
Werner Stein = Hof 1, Tisch 14, Nummer 4
|
||||||
Heinz Tran = Hof 1, Tisch 14, Nummer 5
|
Marco Meyer = Hof 1, Tisch 14, Nummer 5
|
||||||
Milan Brandt = Hof 1, Tisch 14, Nummer 6
|
Sandra Meyer = Hof 1, Tisch 14, Nummer 6
|
||||||
Anja Brandt = Hof 1, Tisch 14, Nummer 7
|
Yusuf Vogel = Hof 1, Tisch 14, Nummer 7
|
||||||
Sofia Brandt = Hof 1, Tisch 14, Nummer 8
|
Sandra Vogel = Hof 1, Tisch 14, Nummer 8
|
||||||
|
|
||||||
[15]
|
[15]
|
||||||
Helga Fischer = Hof 1, Tisch 15, Nummer 1
|
Andreas Brandt = Hof 1, Tisch 15, Nummer 1
|
||||||
Sarah Kuhn = Hof 1, Tisch 15, Nummer 2
|
Lena Brandt = Hof 1, Tisch 15, Nummer 2
|
||||||
Dennis Sommer = Hof 1, Tisch 15, Nummer 3
|
Theo Brandt = Hof 1, Tisch 15, Nummer 3
|
||||||
Horst Aydin = Hof 1, Tisch 15, Nummer 4
|
Milan Brandt = Hof 1, Tisch 15, Nummer 4
|
||||||
Ursula Aydin = Hof 1, Tisch 15, Nummer 5
|
Anja Brandt = Hof 1, Tisch 15, Nummer 5
|
||||||
Jennifer Sommer = Hof 1, Tisch 15, Nummer 6
|
Sofia Brandt = Hof 1, Tisch 15, Nummer 6
|
||||||
Timo Kuhn = Hof 1, Tisch 15, Nummer 7
|
Timo Kuhn = Hof 1, Tisch 15, Nummer 7
|
||||||
Heinz Fischer = Hof 1, Tisch 15, Nummer 8
|
Sarah Kuhn = Hof 1, Tisch 15, Nummer 8
|
||||||
|
|
||||||
[16]
|
[16]
|
||||||
Max Sommer = Hof 1, Tisch 16, Nummer 1
|
Leni Kuhn = Hof 1, Tisch 16, Nummer 1
|
||||||
Matteo Kraus = Hof 1, Tisch 16, Nummer 2
|
Emil Sommer = Hof 1, Tisch 16, Nummer 2
|
||||||
Elias Schwarz = Hof 1, Tisch 16, Nummer 3
|
Ida Sommer = Hof 1, Tisch 16, Nummer 3
|
||||||
Liam Schwarz = Hof 1, Tisch 16, Nummer 4
|
Liam Schwarz = Hof 1, Tisch 16, Nummer 4
|
||||||
Ida Sommer = Hof 1, Tisch 16, Nummer 5
|
Elias Schwarz = Hof 1, Tisch 16, Nummer 5
|
||||||
Frieda Brandt = Hof 1, Tisch 16, Nummer 6
|
Felix Brandt = Hof 1, Tisch 16, Nummer 6
|
||||||
Greta Brandt = Hof 1, Tisch 16, Nummer 7
|
Matteo Kraus = Hof 1, Tisch 16, Nummer 7
|
||||||
Leni Kuhn = Hof 1, Tisch 16, Nummer 8
|
Anton Brandt = Hof 1, Tisch 16, Nummer 8
|
||||||
Anton Brandt = Hof 1, Tisch 16, Nummer 9
|
Frieda Brandt = Hof 1, Tisch 16, Nummer 9
|
||||||
Theo Sommer = Hof 1, Tisch 16, Nummer 10
|
Mila Meyer = Hof 1, Tisch 16, Nummer 10
|
||||||
Felix Brandt = Hof 1, Tisch 16, Nummer 11
|
Greta Brandt = Hof 1, Tisch 16, Nummer 11
|
||||||
Mila Meyer = Hof 1, Tisch 16, Nummer 12
|
Theo Sommer = Hof 1, Tisch 16, Nummer 12
|
||||||
Emil Sommer = Hof 1, Tisch 16, Nummer 13
|
Max Sommer = Hof 1, Tisch 16, Nummer 13
|
||||||
|
|
||||||
[17]
|
[17]
|
||||||
Anton Meyer = Hof 1, Tisch 17, Nummer 1
|
Ben Brandt = Hof 1, Tisch 17, Nummer 1
|
||||||
Ida Meyer = Hof 1, Tisch 17, Nummer 2
|
Paul Brandt = Hof 1, Tisch 17, Nummer 2
|
||||||
Paul Brandt = Hof 1, Tisch 17, Nummer 3
|
Anton Meyer = Hof 1, Tisch 17, Nummer 3
|
||||||
Anton Vogel = Hof 1, Tisch 17, Nummer 4
|
Ida Meyer = Hof 1, Tisch 17, Nummer 4
|
||||||
Ben Brandt = Hof 1, Tisch 17, Nummer 5
|
Anton Vogel = Hof 1, Tisch 17, Nummer 5
|
||||||
Max Vogel = Hof 1, Tisch 17, Nummer 6
|
Max Vogel = Hof 1, Tisch 17, Nummer 6
|
||||||
|
|
||||||
|
|||||||
@@ -1,300 +1,300 @@
|
|||||||
Aksoy, Luca, = Hof 1, Tisch 44, Nummer 3
|
Aksoy, Luca, = Hof 1, Tisch 33, Nummer 2
|
||||||
Aksoy, Marie, = Hof 1, Tisch 37, Nummer 4
|
Aksoy, Marie, = Hof 1, Tisch 25, Nummer 4
|
||||||
Aksoy, Marija, = Hof 2, Tisch 53, Nummer 3
|
Aksoy, Marija, = Hof 2, Tisch 59, Nummer 5
|
||||||
Aksoy, Michael, Dr. = Hof 1, Tisch 40, Nummer 5
|
Aksoy, Michael, Dr. = Hof 2, Tisch 53, Nummer 3
|
||||||
Aksoy, Nadine, = Hof 1, Tisch 44, Nummer 2
|
Aksoy, Nadine, = Hof 1, Tisch 25, Nummer 2
|
||||||
Aksoy, Nicole, = Hof 2, Tisch 54, Nummer 2
|
Aksoy, Nicole, = Hof 2, Tisch 57, Nummer 4
|
||||||
Aksoy, Sergej, = Hof 1, Tisch 37, Nummer 2
|
Aksoy, Sergej, = Hof 1, Tisch 33, Nummer 4
|
||||||
Aksoy, Sofia, = Hof 1, Tisch 37, Nummer 5
|
Aksoy, Sofia, = Hof 1, Tisch 33, Nummer 3
|
||||||
Aksoy, Thomas, = Hof 1, Tisch 37, Nummer 3
|
Aksoy, Thomas, = Hof 1, Tisch 25, Nummer 3
|
||||||
Albrecht, Andreas, = Hof 1, Tisch 12, Nummer 4
|
Albrecht, Andreas, = Hof 1, Tisch 12, Nummer 4
|
||||||
Albrecht, Emre, Prof. Dr. = Hof 1, Tisch 36, Nummer 4
|
Albrecht, Emre, Prof. Dr. = Hof 2, Tisch 82, Nummer 3
|
||||||
Albrecht, Sarah, = Hof 1, Tisch 12, Nummer 5
|
Albrecht, Sarah, = Hof 1, Tisch 12, Nummer 3
|
||||||
Albrecht, Yusuf, Prof. Dr. = Hof 1, Tisch 10, Nummer 4
|
Albrecht, Yusuf, Prof. Dr. = Hof 1, Tisch 13, Nummer 2
|
||||||
Arnold, Christian, = Hof 2, Tisch 51, Nummer 4
|
Arnold, Christian, = Hof 1, Tisch 35, Nummer 3
|
||||||
Arnold, Jennifer, = Hof 2, Tisch 51, Nummer 2
|
Arnold, Jennifer, = Hof 1, Tisch 43, Nummer 2
|
||||||
Arnold, Jennifer, Dr. = Hof 1, Tisch 36, Nummer 3
|
Arnold, Jennifer, Dr. = Hof 2, Tisch 88, Nummer 3
|
||||||
Arnold, Leni, = Hof 2, Tisch 52, Nummer 4
|
Arnold, Leni, = Hof 1, Tisch 35, Nummer 2
|
||||||
Arnold, Mila, = Hof 2, Tisch 52, Nummer 2
|
Arnold, Mila, = Hof 1, Tisch 35, Nummer 4
|
||||||
Arnold, Nadine, = Hof 2, Tisch 60, Nummer 3
|
Arnold, Nadine, = Hof 2, Tisch 65, Nummer 2
|
||||||
Arnold, Patrick, = Hof 2, Tisch 52, Nummer 3
|
Arnold, Patrick, = Hof 1, Tisch 43, Nummer 3
|
||||||
Barth, Lina, = Hof 1, Tisch 14, Nummer 5
|
Barth, Lina, = Hof 2, Tisch 74, Nummer 5
|
||||||
Barth, Markus, = Hof 1, Tisch 35, Nummer 5
|
Barth, Markus, = Hof 1, Tisch 39, Nummer 2
|
||||||
Barth, Nadine, = Hof 1, Tisch 14, Nummer 3
|
Barth, Nadine, = Hof 2, Tisch 74, Nummer 3
|
||||||
Barth, Patrick, = Hof 1, Tisch 14, Nummer 4
|
Barth, Patrick, = Hof 2, Tisch 74, Nummer 2
|
||||||
Barth, Timo, = Hof 1, Tisch 14, Nummer 2
|
Barth, Timo, = Hof 2, Tisch 74, Nummer 4
|
||||||
Bauer, Dragana, = Hof 2, Tisch 48, Nummer 2
|
Bauer, Dragana, = Hof 1, Tisch 45, Nummer 4
|
||||||
Bauer, Yusuf, = Hof 1, Tisch 3, Nummer 5
|
Bauer, Yusuf, = Hof 1, Tisch 4, Nummer 4
|
||||||
Becker, Jan, = Hof 2, Tisch 65, Nummer 3
|
Becker, Jan, = Hof 1, Tisch 14, Nummer 3
|
||||||
Becker, Marija, = Hof 2, Tisch 49, Nummer 4
|
Becker, Marija, = Hof 2, Tisch 76, Nummer 3
|
||||||
Becker, Nicole, = Hof 2, Tisch 65, Nummer 2
|
Becker, Nicole, = Hof 1, Tisch 14, Nummer 2
|
||||||
Becker, Sandra, = Hof 2, Tisch 65, Nummer 4
|
Becker, Sandra, = Hof 1, Tisch 14, Nummer 4
|
||||||
Berger, Andreas, = Hof 1, Tisch 27, Nummer 3
|
Berger, Andreas, = Hof 1, Tisch 24, Nummer 2
|
||||||
Berger, Anton, = Hof 1, Tisch 26, Nummer 2
|
Berger, Anton, = Hof 1, Tisch 32, Nummer 3
|
||||||
Berger, Jennifer, = Hof 1, Tisch 26, Nummer 3
|
Berger, Jennifer, = Hof 1, Tisch 32, Nummer 2
|
||||||
Berger, Layla, = Hof 1, Tisch 26, Nummer 5
|
Berger, Layla, = Hof 1, Tisch 32, Nummer 4
|
||||||
Berger, Nadine, Dr. = Hof 2, Tisch 81, Nummer 4
|
Berger, Nadine, Dr. = Hof 1, Tisch 26, Nummer 3
|
||||||
Berger, Stefan, = Hof 1, Tisch 27, Nummer 5
|
Berger, Stefan, = Hof 1, Tisch 32, Nummer 5
|
||||||
Berger, Svenja, = Hof 1, Tisch 26, Nummer 4
|
Berger, Svenja, = Hof 1, Tisch 24, Nummer 5
|
||||||
Bianchi, Jan, Dr. = Hof 1, Tisch 4, Nummer 3
|
Bianchi, Jan, Dr. = Hof 1, Tisch 4, Nummer 5
|
||||||
Bianchi, Mia, = Hof 1, Tisch 43, Nummer 2
|
Bianchi, Mia, = Hof 2, Tisch 54, Nummer 4
|
||||||
Bianchi, Sandra, = Hof 1, Tisch 43, Nummer 4
|
Bianchi, Sandra, = Hof 2, Tisch 54, Nummer 2
|
||||||
Bianchi, Thomas, = Hof 1, Tisch 35, Nummer 4
|
Bianchi, Thomas, = Hof 2, Tisch 54, Nummer 3
|
||||||
Bianchi, Thomas, = Hof 1, Tisch 43, Nummer 3
|
Bianchi, Thomas, = Hof 2, Tisch 82, Nummer 4
|
||||||
Braun, Christian, = Hof 1, Tisch 19, Nummer 3
|
Braun, Christian, = Hof 1, Tisch 42, Nummer 4
|
||||||
Braun, Dragana, = Hof 1, Tisch 19, Nummer 4
|
Braun, Dragana, = Hof 1, Tisch 42, Nummer 3
|
||||||
Braun, Jan, = Hof 1, Tisch 20, Nummer 3
|
Braun, Jan, = Hof 1, Tisch 42, Nummer 2
|
||||||
Braun, Julia, = Hof 1, Tisch 19, Nummer 5
|
Braun, Julia, = Hof 1, Tisch 41, Nummer 2
|
||||||
Braun, Milan, = Hof 1, Tisch 20, Nummer 2
|
Braun, Milan, = Hof 1, Tisch 41, Nummer 3
|
||||||
Braun, Nadine, = Hof 1, Tisch 19, Nummer 2
|
Braun, Nadine, = Hof 1, Tisch 41, Nummer 4
|
||||||
Busch, Emre, = Hof 2, Tisch 55, Nummer 4
|
Busch, Emre, = Hof 2, Tisch 56, Nummer 3
|
||||||
Busch, Marie, = Hof 2, Tisch 55, Nummer 3
|
Busch, Marie, = Hof 2, Tisch 56, Nummer 4
|
||||||
Busch, Michael, = Hof 2, Tisch 55, Nummer 2
|
Busch, Michael, = Hof 2, Tisch 56, Nummer 5
|
||||||
Busch, Olga, = Hof 2, Tisch 55, Nummer 5
|
Busch, Olga, = Hof 2, Tisch 56, Nummer 2
|
||||||
Busch, Patrick, = Hof 1, Tisch 40, Nummer 3
|
Busch, Patrick, = Hof 2, Tisch 64, Nummer 3
|
||||||
Celik, Elif, = Hof 1, Tisch 22, Nummer 3
|
Celik, Elif, = Hof 1, Tisch 24, Nummer 4
|
||||||
Celik, Patrick, = Hof 1, Tisch 22, Nummer 4
|
Celik, Patrick, = Hof 1, Tisch 24, Nummer 3
|
||||||
Dallmann, Charlotte, = Hof 1, Tisch 7, Nummer 5
|
Dallmann, Charlotte, = Hof 1, Tisch 7, Nummer 5
|
||||||
Dallmann, Heinrich, = Hof 1, Tisch 7, Nummer 2
|
Dallmann, Heinrich, = Hof 1, Tisch 7, Nummer 2
|
||||||
Dallmann, Margarete, = Hof 1, Tisch 7, Nummer 4
|
Dallmann, Margarete, = Hof 1, Tisch 7, Nummer 3
|
||||||
Dallmann, Maximilian, = Hof 1, Tisch 7, Nummer 3
|
Dallmann, Maximilian, = Hof 1, Tisch 7, Nummer 4
|
||||||
Demir, Sandra, Dr. = Hof 1, Tisch 22, Nummer 2
|
Demir, Sandra, Dr. = Hof 1, Tisch 28, Nummer 3
|
||||||
Dietrich, Dragana, Prof. Dr. = Hof 1, Tisch 40, Nummer 2
|
Dietrich, Dragana, Prof. Dr. = Hof 2, Tisch 53, Nummer 2
|
||||||
Dietrich, Jennifer, = Hof 1, Tisch 1, Nummer 3
|
Dietrich, Jennifer, = Hof 1, Tisch 27, Nummer 2
|
||||||
Dietrich, Marco, = Hof 1, Tisch 1, Nummer 4
|
Dietrich, Marco, = Hof 1, Tisch 27, Nummer 3
|
||||||
Dietrich, Sofia, = Hof 1, Tisch 1, Nummer 2
|
Dietrich, Sofia, = Hof 1, Tisch 27, Nummer 4
|
||||||
Engel, Anja, = Hof 1, Tisch 25, Nummer 4
|
Engel, Anja, = Hof 1, Tisch 21, Nummer 3
|
||||||
Engel, Anton, = Hof 1, Tisch 25, Nummer 3
|
Engel, Anton, = Hof 1, Tisch 20, Nummer 5
|
||||||
Engel, Julia, = Hof 1, Tisch 24, Nummer 4
|
Engel, Julia, = Hof 1, Tisch 20, Nummer 4
|
||||||
Engel, Nicole, = Hof 1, Tisch 25, Nummer 2
|
Engel, Nicole, = Hof 1, Tisch 21, Nummer 2
|
||||||
Engel, Yusuf, = Hof 1, Tisch 24, Nummer 2
|
Engel, Yusuf, = Hof 1, Tisch 21, Nummer 4
|
||||||
Esposito, Jan, Dr. = Hof 1, Tisch 16, Nummer 4
|
Esposito, Jan, Dr. = Hof 1, Tisch 17, Nummer 3
|
||||||
Esposito, Yusuf, Prof. Dr. = Hof 2, Tisch 49, Nummer 3
|
Esposito, Yusuf, Prof. Dr. = Hof 2, Tisch 76, Nummer 2
|
||||||
Frank, Dennis, = Hof 1, Tisch 33, Nummer 4
|
Frank, Dennis, = Hof 2, Tisch 88, Nummer 5
|
||||||
Frank, Finn, = Hof 1, Tisch 33, Nummer 3
|
Frank, Finn, = Hof 2, Tisch 87, Nummer 4
|
||||||
Frank, Lena, = Hof 1, Tisch 24, Nummer 3
|
Frank, Lena, = Hof 2, Tisch 87, Nummer 2
|
||||||
Frank, Marie, = Hof 1, Tisch 33, Nummer 2
|
Frank, Marie, = Hof 2, Tisch 87, Nummer 3
|
||||||
Frank, Nadine, = Hof 1, Tisch 24, Nummer 5
|
Frank, Nadine, = Hof 2, Tisch 88, Nummer 4
|
||||||
Franke, Amira, = Hof 2, Tisch 76, Nummer 2
|
Franke, Amira, = Hof 2, Tisch 69, Nummer 3
|
||||||
Franke, Julia, = Hof 2, Tisch 76, Nummer 4
|
Franke, Julia, = Hof 2, Tisch 78, Nummer 5
|
||||||
Franke, Marco, = Hof 2, Tisch 77, Nummer 2
|
Franke, Marco, = Hof 2, Tisch 69, Nummer 4
|
||||||
Franke, Michael, = Hof 2, Tisch 76, Nummer 3
|
Franke, Michael, = Hof 2, Tisch 78, Nummer 4
|
||||||
Franke, Olga, = Hof 2, Tisch 77, Nummer 5
|
Franke, Olga, = Hof 2, Tisch 69, Nummer 2
|
||||||
Freifrau von Waldeck, Antonia, = Hof 1, Tisch 6, Nummer 3
|
Freifrau von Waldeck, Antonia, = Hof 1, Tisch 6, Nummer 4
|
||||||
Freiherr von Waldeck, Konstantin, Dr. = Hof 1, Tisch 6, Nummer 4
|
Freiherr von Waldeck, Konstantin, Dr. = Hof 1, Tisch 6, Nummer 3
|
||||||
Grothe, Alexander, Dr. h.c. = Hof 1, Tisch 5, Nummer 3
|
Grothe, Alexander, Dr. h.c. = Hof 1, Tisch 5, Nummer 2
|
||||||
Grothe, Beate, = Hof 1, Tisch 5, Nummer 2
|
Grothe, Beate, = Hof 1, Tisch 5, Nummer 3
|
||||||
Haas, Jennifer, Dr. = Hof 1, Tisch 34, Nummer 4
|
Haas, Jennifer, Dr. = Hof 1, Tisch 31, Nummer 3
|
||||||
Haas, Patrick, = Hof 2, Tisch 48, Nummer 4
|
Haas, Patrick, = Hof 1, Tisch 45, Nummer 2
|
||||||
Hansen, Giovanna, = Hof 1, Tisch 29, Nummer 4
|
Hansen, Giovanna, = Hof 1, Tisch 8, Nummer 2
|
||||||
Hansen, Markus, = Hof 1, Tisch 29, Nummer 3
|
Hansen, Markus, = Hof 1, Tisch 8, Nummer 3
|
||||||
Hansen, Nicole, Dr. = Hof 2, Tisch 47, Nummer 3
|
Hansen, Nicole, Dr. = Hof 1, Tisch 38, Nummer 2
|
||||||
Hansen, Olga, = Hof 1, Tisch 29, Nummer 2
|
Hansen, Olga, = Hof 1, Tisch 8, Nummer 4
|
||||||
Hansen, Thomas, = Hof 1, Tisch 16, Nummer 2
|
Hansen, Thomas, = Hof 1, Tisch 16, Nummer 2
|
||||||
Hartmann, Deniz, = Hof 2, Tisch 88, Nummer 4
|
Hartmann, Deniz, = Hof 2, Tisch 78, Nummer 2
|
||||||
Hartmann, Marija, = Hof 2, Tisch 87, Nummer 2
|
Hartmann, Marija, = Hof 2, Tisch 84, Nummer 2
|
||||||
Hartmann, Nadine, = Hof 2, Tisch 87, Nummer 4
|
Hartmann, Nadine, = Hof 2, Tisch 78, Nummer 3
|
||||||
Hartmann, Olga, = Hof 2, Tisch 88, Nummer 3
|
Hartmann, Olga, = Hof 2, Tisch 84, Nummer 4
|
||||||
Hartmann, Thomas, = Hof 2, Tisch 87, Nummer 3
|
Hartmann, Thomas, = Hof 2, Tisch 84, Nummer 3
|
||||||
Hoffmann, Emre, = Hof 1, Tisch 40, Nummer 4
|
Hoffmann, Emre, = Hof 2, Tisch 64, Nummer 4
|
||||||
Hoffmann, Patrick, Prof. Dr. = Hof 2, Tisch 60, Nummer 5
|
Hoffmann, Patrick, Prof. Dr. = Hof 2, Tisch 65, Nummer 4
|
||||||
Hoffmann, Thomas, Dr. = Hof 2, Tisch 46, Nummer 3
|
Hoffmann, Thomas, Dr. = Hof 2, Tisch 51, Nummer 3
|
||||||
Horn, Kathrin, = Hof 2, Tisch 72, Nummer 5
|
Horn, Kathrin, = Hof 2, Tisch 79, Nummer 2
|
||||||
Horn, Layla, = Hof 2, Tisch 72, Nummer 2
|
Horn, Layla, = Hof 2, Tisch 79, Nummer 4
|
||||||
Horn, Leon, = Hof 2, Tisch 72, Nummer 4
|
Horn, Leon, = Hof 2, Tisch 79, Nummer 5
|
||||||
Horn, Michael, = Hof 2, Tisch 72, Nummer 3
|
Horn, Michael, = Hof 2, Tisch 79, Nummer 3
|
||||||
Kaya, Christina, = Hof 2, Tisch 56, Nummer 3
|
Kaya, Christina, = Hof 2, Tisch 77, Nummer 3
|
||||||
Kaya, Luca, = Hof 2, Tisch 56, Nummer 2
|
Kaya, Luca, = Hof 2, Tisch 77, Nummer 2
|
||||||
Kaya, Nicole, = Hof 2, Tisch 56, Nummer 4
|
Kaya, Nicole, = Hof 2, Tisch 77, Nummer 4
|
||||||
Kaya, Patrick, Dr. = Hof 1, Tisch 3, Nummer 3
|
Kaya, Patrick, Dr. = Hof 1, Tisch 3, Nummer 3
|
||||||
Kaya, Timo, Prof. Dr. = Hof 1, Tisch 22, Nummer 5
|
Kaya, Timo, Prof. Dr. = Hof 1, Tisch 28, Nummer 2
|
||||||
Kessler, Ferdinand, Dr. = Hof 1, Tisch 5, Nummer 4
|
Kessler, Ferdinand, Dr. = Hof 1, Tisch 5, Nummer 4
|
||||||
Kessler, Viktoria, = Hof 1, Tisch 5, Nummer 5
|
Kessler, Viktoria, = Hof 1, Tisch 5, Nummer 5
|
||||||
Klein, Emre, = Hof 1, Tisch 4, Nummer 2
|
Klein, Emre, = Hof 1, Tisch 3, Nummer 2
|
||||||
Klein, Lina, = Hof 2, Tisch 78, Nummer 4
|
Klein, Lina, = Hof 1, Tisch 18, Nummer 4
|
||||||
Klein, Markus, = Hof 2, Tisch 54, Nummer 5
|
Klein, Markus, = Hof 2, Tisch 57, Nummer 5
|
||||||
Klein, Milan, = Hof 2, Tisch 78, Nummer 2
|
Klein, Milan, = Hof 1, Tisch 18, Nummer 3
|
||||||
Klein, Olga, Dr. = Hof 1, Tisch 36, Nummer 2
|
Klein, Olga, Dr. = Hof 2, Tisch 88, Nummer 2
|
||||||
Klein, Stefanie, = Hof 2, Tisch 78, Nummer 3
|
Klein, Stefanie, = Hof 1, Tisch 18, Nummer 2
|
||||||
Koch, Emil, = Hof 1, Tisch 42, Nummer 5
|
Koch, Emil, = Hof 2, Tisch 48, Nummer 3
|
||||||
Koch, Jan, = Hof 1, Tisch 42, Nummer 3
|
Koch, Jan, = Hof 2, Tisch 49, Nummer 3
|
||||||
Koch, Kathrin, Dr. = Hof 2, Tisch 68, Nummer 4
|
Koch, Kathrin, Dr. = Hof 2, Tisch 52, Nummer 4
|
||||||
Koch, Marie, = Hof 1, Tisch 41, Nummer 2
|
Koch, Marie, = Hof 2, Tisch 49, Nummer 4
|
||||||
Koch, Michael, = Hof 1, Tisch 42, Nummer 2
|
Koch, Michael, = Hof 2, Tisch 48, Nummer 2
|
||||||
Koch, Olga, = Hof 1, Tisch 41, Nummer 3
|
Koch, Olga, = Hof 2, Tisch 48, Nummer 4
|
||||||
Koch, Sarah, = Hof 1, Tisch 42, Nummer 4
|
Koch, Sarah, = Hof 2, Tisch 49, Nummer 2
|
||||||
Kovac, Anja, = Hof 1, Tisch 18, Nummer 3
|
Kovac, Anja, = Hof 1, Tisch 36, Nummer 3
|
||||||
Kovac, Henry, = Hof 1, Tisch 18, Nummer 2
|
Kovac, Henry, = Hof 1, Tisch 36, Nummer 4
|
||||||
Kovac, Lena, = Hof 1, Tisch 18, Nummer 5
|
Kovac, Lena, = Hof 1, Tisch 28, Nummer 4
|
||||||
Kovac, Luca, = Hof 2, Tisch 71, Nummer 4
|
Kovac, Luca, = Hof 2, Tisch 62, Nummer 2
|
||||||
Kovac, Marco, = Hof 1, Tisch 18, Nummer 4
|
Kovac, Marco, = Hof 1, Tisch 36, Nummer 2
|
||||||
Kovac, Marija, = Hof 1, Tisch 27, Nummer 2
|
Kovac, Marija, = Hof 1, Tisch 36, Nummer 5
|
||||||
Kovac, Matthias, = Hof 2, Tisch 49, Nummer 2
|
Kovac, Matthias, = Hof 2, Tisch 76, Nummer 4
|
||||||
Kovac, Tobias, = Hof 1, Tisch 27, Nummer 4
|
Kovac, Tobias, = Hof 1, Tisch 28, Nummer 5
|
||||||
Kraus, Markus, = Hof 1, Tisch 8, Nummer 2
|
Kraus, Markus, = Hof 1, Tisch 11, Nummer 4
|
||||||
Kraus, Patrick, Dr. = Hof 2, Tisch 70, Nummer 3
|
Kraus, Patrick, Dr. = Hof 2, Tisch 67, Nummer 3
|
||||||
Krause, Andreas, = Hof 1, Tisch 13, Nummer 2
|
Krause, Andreas, = Hof 2, Tisch 63, Nummer 2
|
||||||
Krause, Arda, = Hof 1, Tisch 13, Nummer 5
|
Krause, Arda, = Hof 2, Tisch 63, Nummer 4
|
||||||
Krause, Christina, Dr. = Hof 1, Tisch 3, Nummer 2
|
Krause, Christina, Dr. = Hof 1, Tisch 3, Nummer 4
|
||||||
Krause, Daniel, = Hof 2, Tisch 54, Nummer 3
|
Krause, Daniel, = Hof 2, Tisch 57, Nummer 3
|
||||||
Krause, Dragana, Dr. = Hof 2, Tisch 71, Nummer 3
|
Krause, Dragana, Dr. = Hof 2, Tisch 62, Nummer 3
|
||||||
Krause, Emma, = Hof 1, Tisch 13, Nummer 3
|
Krause, Emma, = Hof 2, Tisch 63, Nummer 3
|
||||||
Krause, Julia, = Hof 1, Tisch 13, Nummer 4
|
Krause, Julia, = Hof 2, Tisch 63, Nummer 5
|
||||||
Krause, Matthias, = Hof 2, Tisch 70, Nummer 5
|
Krause, Matthias, = Hof 2, Tisch 58, Nummer 3
|
||||||
Krause, Thomas, = Hof 2, Tisch 47, Nummer 2
|
Krause, Thomas, = Hof 1, Tisch 38, Nummer 3
|
||||||
Kuhn, Julia, Dr. = Hof 2, Tisch 69, Nummer 4
|
Kuhn, Julia, Dr. = Hof 2, Tisch 52, Nummer 5
|
||||||
Lange, Dragana, = Hof 1, Tisch 23, Nummer 4
|
Lange, Dragana, = Hof 1, Tisch 43, Nummer 4
|
||||||
Lange, Jan, = Hof 1, Tisch 23, Nummer 3
|
Lange, Jan, = Hof 1, Tisch 44, Nummer 2
|
||||||
Lange, Michael, = Hof 1, Tisch 31, Nummer 3
|
Lange, Michael, = Hof 1, Tisch 43, Nummer 5
|
||||||
Lange, Sergej, = Hof 1, Tisch 39, Nummer 4
|
Lange, Sergej, = Hof 2, Tisch 64, Nummer 5
|
||||||
Lange, Sofia, = Hof 1, Tisch 31, Nummer 5
|
Lange, Sofia, = Hof 1, Tisch 44, Nummer 4
|
||||||
Lange, Svenja, = Hof 1, Tisch 23, Nummer 2
|
Lange, Svenja, = Hof 1, Tisch 44, Nummer 3
|
||||||
Lehmann, Giovanna, = Hof 1, Tisch 21, Nummer 5
|
Lehmann, Giovanna, = Hof 1, Tisch 13, Nummer 3
|
||||||
Lehmann, Layla, = Hof 1, Tisch 21, Nummer 3
|
Lehmann, Layla, = Hof 1, Tisch 2, Nummer 2
|
||||||
Lehmann, Markus, = Hof 1, Tisch 10, Nummer 3
|
Lehmann, Markus, = Hof 1, Tisch 2, Nummer 5
|
||||||
Lehmann, Milan, = Hof 1, Tisch 10, Nummer 2
|
Lehmann, Milan, = Hof 1, Tisch 13, Nummer 4
|
||||||
Lehmann, Nicole, = Hof 1, Tisch 21, Nummer 4
|
Lehmann, Nicole, = Hof 1, Tisch 2, Nummer 4
|
||||||
Lehmann, Patrick, = Hof 2, Tisch 81, Nummer 3
|
Lehmann, Patrick, = Hof 1, Tisch 26, Nummer 4
|
||||||
Lehmann, Thomas, = Hof 1, Tisch 21, Nummer 2
|
Lehmann, Thomas, = Hof 1, Tisch 2, Nummer 3
|
||||||
Ludwig, Aylin, Dr. = Hof 2, Tisch 70, Nummer 4
|
Ludwig, Aylin, Dr. = Hof 2, Tisch 67, Nummer 4
|
||||||
Ludwig, Elias, = Hof 2, Tisch 64, Nummer 5
|
Ludwig, Elias, = Hof 1, Tisch 9, Nummer 5
|
||||||
Ludwig, Elif, = Hof 2, Tisch 64, Nummer 2
|
Ludwig, Elif, = Hof 1, Tisch 9, Nummer 4
|
||||||
Ludwig, Emre, = Hof 2, Tisch 64, Nummer 3
|
Ludwig, Emre, = Hof 1, Tisch 9, Nummer 3
|
||||||
Ludwig, Emre, Prof. Dr. = Hof 2, Tisch 54, Nummer 4
|
Ludwig, Emre, Prof. Dr. = Hof 2, Tisch 57, Nummer 2
|
||||||
Ludwig, Giovanna, = Hof 2, Tisch 64, Nummer 4
|
Ludwig, Giovanna, = Hof 1, Tisch 9, Nummer 2
|
||||||
Maier, Arda, = Hof 2, Tisch 66, Nummer 4
|
Maier, Arda, = Hof 2, Tisch 61, Nummer 5
|
||||||
Maier, Christian, = Hof 2, Tisch 66, Nummer 2
|
Maier, Christian, = Hof 2, Tisch 61, Nummer 3
|
||||||
Maier, Olga, = Hof 2, Tisch 66, Nummer 5
|
Maier, Olga, = Hof 2, Tisch 61, Nummer 4
|
||||||
Maier, Sarah, = Hof 2, Tisch 66, Nummer 3
|
Maier, Sarah, = Hof 2, Tisch 61, Nummer 2
|
||||||
Neumann, Jennifer, = Hof 2, Tisch 73, Nummer 2
|
Neumann, Jennifer, = Hof 2, Tisch 73, Nummer 2
|
||||||
Neumann, Lina, = Hof 2, Tisch 73, Nummer 4
|
Neumann, Lina, = Hof 2, Tisch 73, Nummer 4
|
||||||
Neumann, Matteo, = Hof 2, Tisch 73, Nummer 3
|
Neumann, Matteo, = Hof 2, Tisch 73, Nummer 5
|
||||||
Neumann, Thomas, = Hof 2, Tisch 73, Nummer 5
|
Neumann, Thomas, = Hof 2, Tisch 73, Nummer 3
|
||||||
Nguyen, Anja, = Hof 2, Tisch 62, Nummer 3
|
Nguyen, Anja, = Hof 1, Tisch 15, Nummer 2
|
||||||
Nguyen, Daniel, = Hof 2, Tisch 62, Nummer 4
|
Nguyen, Daniel, = Hof 1, Tisch 15, Nummer 3
|
||||||
Nguyen, Julia, = Hof 1, Tisch 17, Nummer 2
|
Nguyen, Julia, = Hof 1, Tisch 16, Nummer 4
|
||||||
Nguyen, Sofia, = Hof 2, Tisch 62, Nummer 2
|
Nguyen, Sofia, = Hof 1, Tisch 15, Nummer 4
|
||||||
Nowak, Aylin, = Hof 1, Tisch 38, Nummer 3
|
Nowak, Aylin, = Hof 1, Tisch 37, Nummer 2
|
||||||
Nowak, Felix, = Hof 1, Tisch 38, Nummer 2
|
Nowak, Felix, = Hof 1, Tisch 29, Nummer 2
|
||||||
Nowak, Kathrin, = Hof 1, Tisch 38, Nummer 4
|
Nowak, Kathrin, = Hof 1, Tisch 29, Nummer 5
|
||||||
Nowak, Lina, = Hof 1, Tisch 45, Nummer 2
|
Nowak, Lina, = Hof 1, Tisch 37, Nummer 4
|
||||||
Nowak, Markus, = Hof 1, Tisch 45, Nummer 3
|
Nowak, Markus, = Hof 1, Tisch 37, Nummer 3
|
||||||
Nowak, Noah, = Hof 1, Tisch 45, Nummer 4
|
Nowak, Noah, = Hof 1, Tisch 37, Nummer 5
|
||||||
Ott, Daniel, = Hof 2, Tisch 88, Nummer 5
|
Ott, Daniel, = Hof 2, Tisch 80, Nummer 5
|
||||||
Ott, Hannah, = Hof 2, Tisch 82, Nummer 4
|
Ott, Hannah, = Hof 2, Tisch 72, Nummer 3
|
||||||
Ott, Luca, = Hof 2, Tisch 61, Nummer 2
|
Ott, Luca, = Hof 2, Tisch 71, Nummer 2
|
||||||
Ott, Matthias, = Hof 2, Tisch 82, Nummer 2
|
Ott, Matthias, = Hof 2, Tisch 72, Nummer 2
|
||||||
Ott, Melanie, = Hof 2, Tisch 82, Nummer 3
|
Ott, Melanie, = Hof 2, Tisch 80, Nummer 4
|
||||||
Ott, Olga, = Hof 2, Tisch 88, Nummer 2
|
Ott, Olga, = Hof 2, Tisch 72, Nummer 4
|
||||||
Ott, Sergej, Prof. Dr. = Hof 2, Tisch 47, Nummer 4
|
Ott, Sergej, Prof. Dr. = Hof 1, Tisch 45, Nummer 3
|
||||||
Ott, Yusuf, Prof. Dr. = Hof 2, Tisch 81, Nummer 2
|
Ott, Yusuf, Prof. Dr. = Hof 1, Tisch 26, Nummer 2
|
||||||
Peters, Christian, = Hof 1, Tisch 8, Nummer 5
|
Peters, Christian, = Hof 1, Tisch 10, Nummer 5
|
||||||
Peters, Nicole, = Hof 2, Tisch 48, Nummer 3
|
Peters, Nicole, = Hof 1, Tisch 45, Nummer 5
|
||||||
Petrov, Giovanna, = Hof 1, Tisch 8, Nummer 4
|
Petrov, Giovanna, = Hof 1, Tisch 10, Nummer 2
|
||||||
Petrov, Kathrin, = Hof 1, Tisch 39, Nummer 3
|
Petrov, Kathrin, = Hof 1, Tisch 38, Nummer 4
|
||||||
Petrov, Kathrin, Prof. Dr. = Hof 1, Tisch 9, Nummer 4
|
Petrov, Kathrin, Prof. Dr. = Hof 1, Tisch 11, Nummer 2
|
||||||
Petrov, Matthias, = Hof 1, Tisch 35, Nummer 2
|
Petrov, Matthias, = Hof 1, Tisch 39, Nummer 3
|
||||||
Petrov, Milan, = Hof 1, Tisch 39, Nummer 2
|
Petrov, Milan, = Hof 1, Tisch 38, Nummer 5
|
||||||
Petrov, Sergej, = Hof 2, Tisch 53, Nummer 5
|
Petrov, Sergej, = Hof 2, Tisch 59, Nummer 3
|
||||||
Pohl, Dragana, = Hof 2, Tisch 85, Nummer 2
|
Pohl, Dragana, = Hof 2, Tisch 75, Nummer 2
|
||||||
Pohl, Emre, = Hof 2, Tisch 85, Nummer 5
|
Pohl, Emre, = Hof 2, Tisch 75, Nummer 3
|
||||||
Pohl, Mia, = Hof 2, Tisch 85, Nummer 4
|
Pohl, Mia, = Hof 2, Tisch 75, Nummer 4
|
||||||
Pohl, Theo, = Hof 2, Tisch 85, Nummer 3
|
Pohl, Theo, = Hof 2, Tisch 75, Nummer 5
|
||||||
Polat, Kathrin, = Hof 2, Tisch 53, Nummer 4
|
Polat, Kathrin, = Hof 2, Tisch 59, Nummer 4
|
||||||
Polat, Katrin, = Hof 2, Tisch 84, Nummer 3
|
Polat, Katrin, = Hof 2, Tisch 81, Nummer 4
|
||||||
Polat, Marija, = Hof 2, Tisch 60, Nummer 2
|
Polat, Marija, = Hof 2, Tisch 65, Nummer 5
|
||||||
Polat, Markus, = Hof 2, Tisch 77, Nummer 3
|
Polat, Markus, = Hof 2, Tisch 81, Nummer 3
|
||||||
Polat, Sarah, = Hof 2, Tisch 77, Nummer 4
|
Polat, Sarah, = Hof 2, Tisch 81, Nummer 2
|
||||||
Polat, Stefan, = Hof 2, Tisch 84, Nummer 4
|
Polat, Stefan, = Hof 2, Tisch 80, Nummer 3
|
||||||
Polat, Stefanie, = Hof 2, Tisch 84, Nummer 2
|
Polat, Stefanie, = Hof 2, Tisch 80, Nummer 2
|
||||||
Popescu, Matthias, = Hof 1, Tisch 12, Nummer 3
|
Popescu, Matthias, = Hof 1, Tisch 12, Nummer 2
|
||||||
Richter, Anja, = Hof 1, Tisch 30, Nummer 4
|
Richter, Anja, = Hof 2, Tisch 50, Nummer 2
|
||||||
Richter, Anja, Prof. Dr. = Hof 2, Tisch 80, Nummer 2
|
Richter, Anja, Prof. Dr. = Hof 1, Tisch 22, Nummer 2
|
||||||
Richter, Anton, = Hof 1, Tisch 30, Nummer 5
|
Richter, Anton, = Hof 2, Tisch 50, Nummer 5
|
||||||
Richter, Greta, = Hof 1, Tisch 30, Nummer 3
|
Richter, Greta, = Hof 2, Tisch 50, Nummer 4
|
||||||
Richter, Julia, Prof. Dr. = Hof 1, Tisch 34, Nummer 3
|
Richter, Julia, Prof. Dr. = Hof 1, Tisch 31, Nummer 2
|
||||||
Richter, Marco, = Hof 2, Tisch 60, Nummer 4
|
Richter, Marco, = Hof 2, Tisch 65, Nummer 3
|
||||||
Richter, Matthias, = Hof 1, Tisch 30, Nummer 2
|
Richter, Matthias, = Hof 2, Tisch 50, Nummer 3
|
||||||
Richter, Stefan, = Hof 2, Tisch 71, Nummer 2
|
Richter, Stefan, = Hof 2, Tisch 71, Nummer 4
|
||||||
Rossi, Emilia, = Hof 1, Tisch 28, Nummer 4
|
Rossi, Emilia, = Hof 1, Tisch 40, Nummer 4
|
||||||
Rossi, Luca, = Hof 1, Tisch 28, Nummer 2
|
Rossi, Luca, = Hof 1, Tisch 40, Nummer 3
|
||||||
Rossi, Melanie, = Hof 1, Tisch 28, Nummer 3
|
Rossi, Melanie, = Hof 1, Tisch 40, Nummer 2
|
||||||
Roth, Christian, = Hof 2, Tisch 79, Nummer 4
|
Roth, Christian, = Hof 1, Tisch 23, Nummer 3
|
||||||
Roth, Julia, Prof. Dr. = Hof 1, Tisch 17, Nummer 5
|
Roth, Julia, Prof. Dr. = Hof 1, Tisch 17, Nummer 4
|
||||||
Roth, Olga, = Hof 1, Tisch 35, Nummer 3
|
Roth, Olga, = Hof 2, Tisch 82, Nummer 2
|
||||||
Roth, Sarah, = Hof 2, Tisch 79, Nummer 3
|
Roth, Sarah, = Hof 1, Tisch 23, Nummer 2
|
||||||
Roth, Sofia, = Hof 2, Tisch 79, Nummer 2
|
Roth, Sofia, = Hof 1, Tisch 23, Nummer 4
|
||||||
Sahin, Kathrin, = Hof 1, Tisch 11, Nummer 5
|
Sahin, Kathrin, = Hof 2, Tisch 60, Nummer 4
|
||||||
Sahin, Markus, = Hof 1, Tisch 11, Nummer 2
|
Sahin, Markus, = Hof 2, Tisch 60, Nummer 3
|
||||||
Sahin, Nicole, = Hof 1, Tisch 11, Nummer 3
|
Sahin, Nicole, = Hof 2, Tisch 60, Nummer 2
|
||||||
Sahin, Patrick, = Hof 1, Tisch 11, Nummer 4
|
Sahin, Patrick, = Hof 2, Tisch 60, Nummer 5
|
||||||
Sahin, Thomas, = Hof 2, Tisch 80, Nummer 3
|
Sahin, Thomas, = Hof 1, Tisch 22, Nummer 4
|
||||||
Schmidt, Giovanna, = Hof 2, Tisch 57, Nummer 3
|
Schmidt, Giovanna, = Hof 2, Tisch 85, Nummer 4
|
||||||
Schmidt, Marie, = Hof 2, Tisch 57, Nummer 4
|
Schmidt, Marie, = Hof 2, Tisch 85, Nummer 3
|
||||||
Schmidt, Matthias, = Hof 2, Tisch 57, Nummer 2
|
Schmidt, Matthias, = Hof 2, Tisch 85, Nummer 2
|
||||||
Schmidt, Nicole, = Hof 1, Tisch 17, Nummer 4
|
Schmidt, Nicole, = Hof 1, Tisch 16, Nummer 3
|
||||||
Schmitt, Dennis, Prof. Dr. = Hof 2, Tisch 71, Nummer 5
|
Schmitt, Dennis, Prof. Dr. = Hof 2, Tisch 62, Nummer 4
|
||||||
Schmitt, Markus, = Hof 1, Tisch 15, Nummer 4
|
Schmitt, Markus, = Hof 1, Tisch 10, Nummer 4
|
||||||
Schmitt, Markus, = Hof 1, Tisch 9, Nummer 3
|
Schmitt, Markus, = Hof 2, Tisch 47, Nummer 3
|
||||||
Schmitt, Sarah, = Hof 1, Tisch 15, Nummer 2
|
Schmitt, Sarah, = Hof 2, Tisch 47, Nummer 2
|
||||||
Schmitt, Sofia, = Hof 1, Tisch 15, Nummer 3
|
Schmitt, Sofia, = Hof 2, Tisch 47, Nummer 4
|
||||||
Schmitt, Stefan, Prof. Dr. = Hof 2, Tisch 69, Nummer 3
|
Schmitt, Stefan, Prof. Dr. = Hof 2, Tisch 52, Nummer 2
|
||||||
Schwarz, Giovanna, = Hof 2, Tisch 61, Nummer 5
|
Schwarz, Giovanna, = Hof 2, Tisch 58, Nummer 4
|
||||||
Seidel, Anja, Dr. = Hof 2, Tisch 46, Nummer 2
|
Seidel, Anja, Dr. = Hof 2, Tisch 51, Nummer 5
|
||||||
Seidel, Markus, Dr. = Hof 1, Tisch 9, Nummer 2
|
Seidel, Markus, Dr. = Hof 1, Tisch 11, Nummer 3
|
||||||
Seidel, Yusuf, Prof. Dr. = Hof 1, Tisch 3, Nummer 4
|
Seidel, Yusuf, Prof. Dr. = Hof 1, Tisch 4, Nummer 3
|
||||||
Seifert, Elif, = Hof 2, Tisch 50, Nummer 3
|
Seifert, Elif, = Hof 1, Tisch 20, Nummer 3
|
||||||
Seifert, Leni, = Hof 2, Tisch 50, Nummer 2
|
Seifert, Leni, = Hof 1, Tisch 19, Nummer 4
|
||||||
Seifert, Marco, Prof. Dr. = Hof 2, Tisch 70, Nummer 2
|
Seifert, Marco, Prof. Dr. = Hof 2, Tisch 58, Nummer 2
|
||||||
Seifert, Nicole, = Hof 2, Tisch 51, Nummer 3
|
Seifert, Nicole, = Hof 1, Tisch 19, Nummer 2
|
||||||
Seifert, Stefanie, Dr. = Hof 1, Tisch 17, Nummer 3
|
Seifert, Stefanie, Dr. = Hof 1, Tisch 16, Nummer 5
|
||||||
Seifert, Timo, = Hof 2, Tisch 51, Nummer 5
|
Seifert, Timo, = Hof 1, Tisch 20, Nummer 2
|
||||||
Seifert, Yusuf, = Hof 2, Tisch 50, Nummer 4
|
Seifert, Yusuf, = Hof 1, Tisch 19, Nummer 3
|
||||||
Simon, Andreas, = Hof 2, Tisch 75, Nummer 2
|
Simon, Andreas, = Hof 2, Tisch 66, Nummer 5
|
||||||
Simon, Emma, = Hof 2, Tisch 75, Nummer 3
|
Simon, Emma, = Hof 2, Tisch 66, Nummer 4
|
||||||
Simon, Lena, = Hof 2, Tisch 75, Nummer 5
|
Simon, Lena, = Hof 2, Tisch 66, Nummer 2
|
||||||
Simon, Markus, = Hof 2, Tisch 75, Nummer 4
|
Simon, Markus, = Hof 2, Tisch 66, Nummer 3
|
||||||
Simon, Svenja, = Hof 1, Tisch 10, Nummer 5
|
Simon, Svenja, = Hof 1, Tisch 13, Nummer 5
|
||||||
Stein, Ben, = Hof 2, Tisch 83, Nummer 2
|
Stein, Ben, = Hof 2, Tisch 86, Nummer 4
|
||||||
Stein, Emilia, = Hof 2, Tisch 83, Nummer 4
|
Stein, Emilia, = Hof 2, Tisch 86, Nummer 3
|
||||||
Stein, Giovanna, = Hof 2, Tisch 83, Nummer 3
|
Stein, Giovanna, = Hof 2, Tisch 86, Nummer 5
|
||||||
Stein, Markus, Prof. Dr. = Hof 1, Tisch 12, Nummer 2
|
Stein, Markus, Prof. Dr. = Hof 1, Tisch 12, Nummer 5
|
||||||
Stein, Nadine, Dr. = Hof 1, Tisch 8, Nummer 3
|
Stein, Nadine, Dr. = Hof 1, Tisch 10, Nummer 3
|
||||||
Stein, Thomas, = Hof 2, Tisch 83, Nummer 5
|
Stein, Thomas, = Hof 2, Tisch 86, Nummer 2
|
||||||
Steinbach, Elisabeth, = Hof 1, Tisch 6, Nummer 5
|
Steinbach, Elisabeth, = Hof 1, Tisch 6, Nummer 2
|
||||||
Steinbach, Georg, = Hof 1, Tisch 6, Nummer 2
|
Steinbach, Georg, = Hof 1, Tisch 6, Nummer 5
|
||||||
Thiel, Christina, = Hof 1, Tisch 2, Nummer 3
|
Thiel, Christina, = Hof 2, Tisch 46, Nummer 3
|
||||||
Thiel, Jan, Dr. = Hof 2, Tisch 80, Nummer 4
|
Thiel, Jan, Dr. = Hof 1, Tisch 22, Nummer 3
|
||||||
Thiel, Julia, = Hof 1, Tisch 2, Nummer 2
|
Thiel, Julia, = Hof 2, Tisch 46, Nummer 4
|
||||||
Thiel, Yusuf, = Hof 1, Tisch 2, Nummer 4
|
Thiel, Yusuf, = Hof 2, Tisch 46, Nummer 2
|
||||||
Tran, Marija, = Hof 2, Tisch 68, Nummer 2
|
Tran, Marija, = Hof 2, Tisch 52, Nummer 3
|
||||||
Tran, Olga, = Hof 2, Tisch 46, Nummer 4
|
Tran, Olga, = Hof 2, Tisch 51, Nummer 4
|
||||||
Tran, Thomas, Prof. Dr. = Hof 2, Tisch 53, Nummer 2
|
Tran, Thomas, Prof. Dr. = Hof 2, Tisch 59, Nummer 2
|
||||||
Wagner, Henry, = Hof 2, Tisch 63, Nummer 3
|
Wagner, Henry, = Hof 2, Tisch 68, Nummer 5
|
||||||
Wagner, Marco, = Hof 2, Tisch 63, Nummer 5
|
Wagner, Marco, = Hof 2, Tisch 68, Nummer 3
|
||||||
Wagner, Nicole, = Hof 2, Tisch 63, Nummer 2
|
Wagner, Nicole, = Hof 2, Tisch 68, Nummer 2
|
||||||
Wagner, Sarah, = Hof 2, Tisch 63, Nummer 4
|
Wagner, Sarah, = Hof 2, Tisch 68, Nummer 4
|
||||||
Weber, Andreas, = Hof 1, Tisch 34, Nummer 2
|
Weber, Andreas, = Hof 1, Tisch 39, Nummer 4
|
||||||
Weber, Julia, = Hof 1, Tisch 4, Nummer 5
|
Weber, Julia, = Hof 1, Tisch 3, Nummer 5
|
||||||
Weber, Katrin, = Hof 2, Tisch 69, Nummer 2
|
Weber, Katrin, = Hof 2, Tisch 53, Nummer 4
|
||||||
Weber, Yusuf, = Hof 2, Tisch 61, Nummer 4
|
Weber, Yusuf, = Hof 2, Tisch 67, Nummer 2
|
||||||
Werner, Andreas, = Hof 2, Tisch 59, Nummer 2
|
Werner, Andreas, = Hof 2, Tisch 55, Nummer 3
|
||||||
Werner, Dennis, Prof. Dr. = Hof 2, Tisch 46, Nummer 5
|
Werner, Dennis, Prof. Dr. = Hof 2, Tisch 51, Nummer 2
|
||||||
Werner, Katrin, = Hof 1, Tisch 39, Nummer 5
|
Werner, Katrin, = Hof 2, Tisch 64, Nummer 2
|
||||||
Werner, Luca, = Hof 2, Tisch 68, Nummer 3
|
Werner, Luca, = Hof 2, Tisch 53, Nummer 5
|
||||||
Werner, Marco, = Hof 2, Tisch 59, Nummer 4
|
Werner, Marco, = Hof 2, Tisch 55, Nummer 5
|
||||||
Werner, Nadine, = Hof 2, Tisch 59, Nummer 3
|
Werner, Nadine, = Hof 2, Tisch 55, Nummer 4
|
||||||
Werner, Sandra, = Hof 2, Tisch 59, Nummer 5
|
Werner, Sandra, = Hof 2, Tisch 55, Nummer 2
|
||||||
Winkler, Lena, = Hof 1, Tisch 31, Nummer 4
|
Winkler, Lena, = Hof 1, Tisch 29, Nummer 3
|
||||||
Winkler, Marco, = Hof 1, Tisch 4, Nummer 4
|
Winkler, Marco, = Hof 1, Tisch 4, Nummer 2
|
||||||
Winkler, Patrick, = Hof 1, Tisch 31, Nummer 2
|
Winkler, Patrick, = Hof 1, Tisch 29, Nummer 4
|
||||||
Winkler, Thomas, = Hof 1, Tisch 16, Nummer 3
|
Winkler, Thomas, = Hof 1, Tisch 17, Nummer 2
|
||||||
Wolf, Ben, = Hof 2, Tisch 74, Nummer 4
|
Wolf, Ben, = Hof 2, Tisch 83, Nummer 3
|
||||||
Wolf, Emma, = Hof 2, Tisch 74, Nummer 2
|
Wolf, Emma, = Hof 2, Tisch 83, Nummer 2
|
||||||
Wolf, Julia, = Hof 2, Tisch 74, Nummer 3
|
Wolf, Julia, = Hof 2, Tisch 83, Nummer 4
|
||||||
Wolf, Thomas, = Hof 2, Tisch 74, Nummer 5
|
Wolf, Thomas, = Hof 2, Tisch 83, Nummer 5
|
||||||
Zimmermann, Jan, = Hof 2, Tisch 67, Nummer 5
|
Zimmermann, Jan, = Hof 2, Tisch 70, Nummer 3
|
||||||
Zimmermann, Markus, = Hof 2, Tisch 67, Nummer 4
|
Zimmermann, Markus, = Hof 2, Tisch 70, Nummer 5
|
||||||
Zimmermann, Mia, = Hof 2, Tisch 67, Nummer 3
|
Zimmermann, Mia, = Hof 2, Tisch 70, Nummer 4
|
||||||
Zimmermann, Patrick, = Hof 2, Tisch 61, Nummer 3
|
Zimmermann, Patrick, = Hof 2, Tisch 71, Nummer 3
|
||||||
Zimmermann, Svenja, = Hof 2, Tisch 67, Nummer 2
|
Zimmermann, Svenja, = Hof 2, Tisch 70, Nummer 2
|
||||||
|
|||||||
|
|
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 122 KiB |
@@ -1,476 +1,476 @@
|
|||||||
[1]
|
[1]
|
||||||
Sofia Dietrich = Hof 1, Tisch 1, Nummer 1
|
|
||||||
Jennifer Dietrich = Hof 1, Tisch 1, Nummer 2
|
|
||||||
Marco Dietrich = Hof 1, Tisch 1, Nummer 3
|
|
||||||
|
|
||||||
[2]
|
[2]
|
||||||
Julia Thiel = Hof 1, Tisch 2, Nummer 1
|
Layla Lehmann = Hof 1, Tisch 2, Nummer 1
|
||||||
Christina Thiel = Hof 1, Tisch 2, Nummer 2
|
Thomas Lehmann = Hof 1, Tisch 2, Nummer 2
|
||||||
Yusuf Thiel = Hof 1, Tisch 2, Nummer 3
|
Nicole Lehmann = Hof 1, Tisch 2, Nummer 3
|
||||||
|
Markus Lehmann = Hof 1, Tisch 2, Nummer 4
|
||||||
|
|
||||||
[3]
|
[3]
|
||||||
Dr. Christina Krause = Hof 1, Tisch 3, Nummer 1
|
Emre Klein = Hof 1, Tisch 3, Nummer 1
|
||||||
Dr. Patrick Kaya = Hof 1, Tisch 3, Nummer 2
|
Dr. Patrick Kaya = Hof 1, Tisch 3, Nummer 2
|
||||||
Prof. Dr. Yusuf Seidel = Hof 1, Tisch 3, Nummer 3
|
Dr. Christina Krause = Hof 1, Tisch 3, Nummer 3
|
||||||
Yusuf Bauer = Hof 1, Tisch 3, Nummer 4
|
Julia Weber = Hof 1, Tisch 3, Nummer 4
|
||||||
|
|
||||||
[4]
|
[4]
|
||||||
Emre Klein = Hof 1, Tisch 4, Nummer 1
|
Marco Winkler = Hof 1, Tisch 4, Nummer 1
|
||||||
Dr. Jan Bianchi = Hof 1, Tisch 4, Nummer 2
|
Prof. Dr. Yusuf Seidel = Hof 1, Tisch 4, Nummer 2
|
||||||
Marco Winkler = Hof 1, Tisch 4, Nummer 3
|
Yusuf Bauer = Hof 1, Tisch 4, Nummer 3
|
||||||
Julia Weber = Hof 1, Tisch 4, Nummer 4
|
Dr. Jan Bianchi = Hof 1, Tisch 4, Nummer 4
|
||||||
|
|
||||||
[5]
|
[5]
|
||||||
Beate Grothe = Hof 1, Tisch 5, Nummer 1
|
Dr. h.c. Alexander Grothe = Hof 1, Tisch 5, Nummer 1
|
||||||
Dr. h.c. Alexander Grothe = Hof 1, Tisch 5, Nummer 2
|
Beate Grothe = Hof 1, Tisch 5, Nummer 2
|
||||||
Dr. Ferdinand Kessler = Hof 1, Tisch 5, Nummer 3
|
Dr. Ferdinand Kessler = Hof 1, Tisch 5, Nummer 3
|
||||||
Viktoria Kessler = Hof 1, Tisch 5, Nummer 4
|
Viktoria Kessler = Hof 1, Tisch 5, Nummer 4
|
||||||
|
|
||||||
[6]
|
[6]
|
||||||
Georg Steinbach = Hof 1, Tisch 6, Nummer 1
|
Elisabeth Steinbach = Hof 1, Tisch 6, Nummer 1
|
||||||
Antonia Freifrau von Waldeck = Hof 1, Tisch 6, Nummer 2
|
Dr. Konstantin Freiherr von Waldeck = Hof 1, Tisch 6, Nummer 2
|
||||||
Dr. Konstantin Freiherr von Waldeck = Hof 1, Tisch 6, Nummer 3
|
Antonia Freifrau von Waldeck = Hof 1, Tisch 6, Nummer 3
|
||||||
Elisabeth Steinbach = Hof 1, Tisch 6, Nummer 4
|
Georg Steinbach = Hof 1, Tisch 6, Nummer 4
|
||||||
|
|
||||||
[7]
|
[7]
|
||||||
Heinrich Dallmann = Hof 1, Tisch 7, Nummer 1
|
Heinrich Dallmann = Hof 1, Tisch 7, Nummer 1
|
||||||
Maximilian Dallmann = Hof 1, Tisch 7, Nummer 2
|
Margarete Dallmann = Hof 1, Tisch 7, Nummer 2
|
||||||
Margarete Dallmann = Hof 1, Tisch 7, Nummer 3
|
Maximilian Dallmann = Hof 1, Tisch 7, Nummer 3
|
||||||
Charlotte Dallmann = Hof 1, Tisch 7, Nummer 4
|
Charlotte Dallmann = Hof 1, Tisch 7, Nummer 4
|
||||||
|
|
||||||
[8]
|
[8]
|
||||||
Markus Kraus = Hof 1, Tisch 8, Nummer 1
|
Giovanna Hansen = Hof 1, Tisch 8, Nummer 1
|
||||||
Dr. Nadine Stein = Hof 1, Tisch 8, Nummer 2
|
Markus Hansen = Hof 1, Tisch 8, Nummer 2
|
||||||
Giovanna Petrov = Hof 1, Tisch 8, Nummer 3
|
Olga Hansen = Hof 1, Tisch 8, Nummer 3
|
||||||
Christian Peters = Hof 1, Tisch 8, Nummer 4
|
|
||||||
|
|
||||||
[9]
|
[9]
|
||||||
Dr. Markus Seidel = Hof 1, Tisch 9, Nummer 1
|
Giovanna Ludwig = Hof 1, Tisch 9, Nummer 1
|
||||||
Markus Schmitt = Hof 1, Tisch 9, Nummer 2
|
Emre Ludwig = Hof 1, Tisch 9, Nummer 2
|
||||||
Prof. Dr. Kathrin Petrov = Hof 1, Tisch 9, Nummer 3
|
Elif Ludwig = Hof 1, Tisch 9, Nummer 3
|
||||||
|
Elias Ludwig = Hof 1, Tisch 9, Nummer 4
|
||||||
|
|
||||||
[10]
|
[10]
|
||||||
Milan Lehmann = Hof 1, Tisch 10, Nummer 1
|
Giovanna Petrov = Hof 1, Tisch 10, Nummer 1
|
||||||
Markus Lehmann = Hof 1, Tisch 10, Nummer 2
|
Dr. Nadine Stein = Hof 1, Tisch 10, Nummer 2
|
||||||
Prof. Dr. Yusuf Albrecht = Hof 1, Tisch 10, Nummer 3
|
Markus Schmitt = Hof 1, Tisch 10, Nummer 3
|
||||||
Svenja Simon = Hof 1, Tisch 10, Nummer 4
|
Christian Peters = Hof 1, Tisch 10, Nummer 4
|
||||||
|
|
||||||
[11]
|
[11]
|
||||||
Markus Sahin = Hof 1, Tisch 11, Nummer 1
|
Prof. Dr. Kathrin Petrov = Hof 1, Tisch 11, Nummer 1
|
||||||
Nicole Sahin = Hof 1, Tisch 11, Nummer 2
|
Dr. Markus Seidel = Hof 1, Tisch 11, Nummer 2
|
||||||
Patrick Sahin = Hof 1, Tisch 11, Nummer 3
|
Markus Kraus = Hof 1, Tisch 11, Nummer 3
|
||||||
Kathrin Sahin = Hof 1, Tisch 11, Nummer 4
|
|
||||||
|
|
||||||
[12]
|
[12]
|
||||||
Prof. Dr. Markus Stein = Hof 1, Tisch 12, Nummer 1
|
Matthias Popescu = Hof 1, Tisch 12, Nummer 1
|
||||||
Matthias Popescu = Hof 1, Tisch 12, Nummer 2
|
Sarah Albrecht = Hof 1, Tisch 12, Nummer 2
|
||||||
Andreas Albrecht = Hof 1, Tisch 12, Nummer 3
|
Andreas Albrecht = Hof 1, Tisch 12, Nummer 3
|
||||||
Sarah Albrecht = Hof 1, Tisch 12, Nummer 4
|
Prof. Dr. Markus Stein = Hof 1, Tisch 12, Nummer 4
|
||||||
|
|
||||||
[13]
|
[13]
|
||||||
Andreas Krause = Hof 1, Tisch 13, Nummer 1
|
Prof. Dr. Yusuf Albrecht = Hof 1, Tisch 13, Nummer 1
|
||||||
Emma Krause = Hof 1, Tisch 13, Nummer 2
|
Giovanna Lehmann = Hof 1, Tisch 13, Nummer 2
|
||||||
Julia Krause = Hof 1, Tisch 13, Nummer 3
|
Milan Lehmann = Hof 1, Tisch 13, Nummer 3
|
||||||
Arda Krause = Hof 1, Tisch 13, Nummer 4
|
Svenja Simon = Hof 1, Tisch 13, Nummer 4
|
||||||
|
|
||||||
[14]
|
[14]
|
||||||
Timo Barth = Hof 1, Tisch 14, Nummer 1
|
Nicole Becker = Hof 1, Tisch 14, Nummer 1
|
||||||
Nadine Barth = Hof 1, Tisch 14, Nummer 2
|
Jan Becker = Hof 1, Tisch 14, Nummer 2
|
||||||
Patrick Barth = Hof 1, Tisch 14, Nummer 3
|
Sandra Becker = Hof 1, Tisch 14, Nummer 3
|
||||||
Lina Barth = Hof 1, Tisch 14, Nummer 4
|
|
||||||
|
|
||||||
[15]
|
[15]
|
||||||
Sarah Schmitt = Hof 1, Tisch 15, Nummer 1
|
Anja Nguyen = Hof 1, Tisch 15, Nummer 1
|
||||||
Sofia Schmitt = Hof 1, Tisch 15, Nummer 2
|
Daniel Nguyen = Hof 1, Tisch 15, Nummer 2
|
||||||
Markus Schmitt = Hof 1, Tisch 15, Nummer 3
|
Sofia Nguyen = Hof 1, Tisch 15, Nummer 3
|
||||||
|
|
||||||
[16]
|
[16]
|
||||||
Thomas Hansen = Hof 1, Tisch 16, Nummer 1
|
Thomas Hansen = Hof 1, Tisch 16, Nummer 1
|
||||||
Thomas Winkler = Hof 1, Tisch 16, Nummer 2
|
Nicole Schmidt = Hof 1, Tisch 16, Nummer 2
|
||||||
Dr. Jan Esposito = Hof 1, Tisch 16, Nummer 3
|
Julia Nguyen = Hof 1, Tisch 16, Nummer 3
|
||||||
|
Dr. Stefanie Seifert = Hof 1, Tisch 16, Nummer 4
|
||||||
|
|
||||||
[17]
|
[17]
|
||||||
Julia Nguyen = Hof 1, Tisch 17, Nummer 1
|
Thomas Winkler = Hof 1, Tisch 17, Nummer 1
|
||||||
Dr. Stefanie Seifert = Hof 1, Tisch 17, Nummer 2
|
Dr. Jan Esposito = Hof 1, Tisch 17, Nummer 2
|
||||||
Nicole Schmidt = Hof 1, Tisch 17, Nummer 3
|
Prof. Dr. Julia Roth = Hof 1, Tisch 17, Nummer 3
|
||||||
Prof. Dr. Julia Roth = Hof 1, Tisch 17, Nummer 4
|
|
||||||
|
|
||||||
[18]
|
[18]
|
||||||
Henry Kovac = Hof 1, Tisch 18, Nummer 1
|
Stefanie Klein = Hof 1, Tisch 18, Nummer 1
|
||||||
Anja Kovac = Hof 1, Tisch 18, Nummer 2
|
Milan Klein = Hof 1, Tisch 18, Nummer 2
|
||||||
Marco Kovac = Hof 1, Tisch 18, Nummer 3
|
Lina Klein = Hof 1, Tisch 18, Nummer 3
|
||||||
Lena Kovac = Hof 1, Tisch 18, Nummer 4
|
|
||||||
|
|
||||||
[19]
|
[19]
|
||||||
Nadine Braun = Hof 1, Tisch 19, Nummer 1
|
Nicole Seifert = Hof 1, Tisch 19, Nummer 1
|
||||||
Christian Braun = Hof 1, Tisch 19, Nummer 2
|
Yusuf Seifert = Hof 1, Tisch 19, Nummer 2
|
||||||
Dragana Braun = Hof 1, Tisch 19, Nummer 3
|
Leni Seifert = Hof 1, Tisch 19, Nummer 3
|
||||||
Julia Braun = Hof 1, Tisch 19, Nummer 4
|
|
||||||
|
|
||||||
[20]
|
[20]
|
||||||
Milan Braun = Hof 1, Tisch 20, Nummer 1
|
Timo Seifert = Hof 1, Tisch 20, Nummer 1
|
||||||
Jan Braun = Hof 1, Tisch 20, Nummer 2
|
Elif Seifert = Hof 1, Tisch 20, Nummer 2
|
||||||
|
Julia Engel = Hof 1, Tisch 20, Nummer 3
|
||||||
|
Anton Engel = Hof 1, Tisch 20, Nummer 4
|
||||||
|
|
||||||
[21]
|
[21]
|
||||||
Thomas Lehmann = Hof 1, Tisch 21, Nummer 1
|
Nicole Engel = Hof 1, Tisch 21, Nummer 1
|
||||||
Layla Lehmann = Hof 1, Tisch 21, Nummer 2
|
Anja Engel = Hof 1, Tisch 21, Nummer 2
|
||||||
Nicole Lehmann = Hof 1, Tisch 21, Nummer 3
|
Yusuf Engel = Hof 1, Tisch 21, Nummer 3
|
||||||
Giovanna Lehmann = Hof 1, Tisch 21, Nummer 4
|
|
||||||
|
|
||||||
[22]
|
[22]
|
||||||
Dr. Sandra Demir = Hof 1, Tisch 22, Nummer 1
|
Prof. Dr. Anja Richter = Hof 1, Tisch 22, Nummer 1
|
||||||
Elif Celik = Hof 1, Tisch 22, Nummer 2
|
Dr. Jan Thiel = Hof 1, Tisch 22, Nummer 2
|
||||||
Patrick Celik = Hof 1, Tisch 22, Nummer 3
|
Thomas Sahin = Hof 1, Tisch 22, Nummer 3
|
||||||
Prof. Dr. Timo Kaya = Hof 1, Tisch 22, Nummer 4
|
|
||||||
|
|
||||||
[23]
|
[23]
|
||||||
Svenja Lange = Hof 1, Tisch 23, Nummer 1
|
Sarah Roth = Hof 1, Tisch 23, Nummer 1
|
||||||
Jan Lange = Hof 1, Tisch 23, Nummer 2
|
Christian Roth = Hof 1, Tisch 23, Nummer 2
|
||||||
Dragana Lange = Hof 1, Tisch 23, Nummer 3
|
Sofia Roth = Hof 1, Tisch 23, Nummer 3
|
||||||
|
|
||||||
[24]
|
[24]
|
||||||
Yusuf Engel = Hof 1, Tisch 24, Nummer 1
|
Andreas Berger = Hof 1, Tisch 24, Nummer 1
|
||||||
Lena Frank = Hof 1, Tisch 24, Nummer 2
|
Patrick Celik = Hof 1, Tisch 24, Nummer 2
|
||||||
Julia Engel = Hof 1, Tisch 24, Nummer 3
|
Elif Celik = Hof 1, Tisch 24, Nummer 3
|
||||||
Nadine Frank = Hof 1, Tisch 24, Nummer 4
|
Svenja Berger = Hof 1, Tisch 24, Nummer 4
|
||||||
|
|
||||||
[25]
|
[25]
|
||||||
Nicole Engel = Hof 1, Tisch 25, Nummer 1
|
Nadine Aksoy = Hof 1, Tisch 25, Nummer 1
|
||||||
Anton Engel = Hof 1, Tisch 25, Nummer 2
|
Thomas Aksoy = Hof 1, Tisch 25, Nummer 2
|
||||||
Anja Engel = Hof 1, Tisch 25, Nummer 3
|
Marie Aksoy = Hof 1, Tisch 25, Nummer 3
|
||||||
|
|
||||||
[26]
|
[26]
|
||||||
Anton Berger = Hof 1, Tisch 26, Nummer 1
|
Prof. Dr. Yusuf Ott = Hof 1, Tisch 26, Nummer 1
|
||||||
Jennifer Berger = Hof 1, Tisch 26, Nummer 2
|
Dr. Nadine Berger = Hof 1, Tisch 26, Nummer 2
|
||||||
Svenja Berger = Hof 1, Tisch 26, Nummer 3
|
Patrick Lehmann = Hof 1, Tisch 26, Nummer 3
|
||||||
Layla Berger = Hof 1, Tisch 26, Nummer 4
|
|
||||||
|
|
||||||
[27]
|
[27]
|
||||||
Marija Kovac = Hof 1, Tisch 27, Nummer 1
|
Jennifer Dietrich = Hof 1, Tisch 27, Nummer 1
|
||||||
Andreas Berger = Hof 1, Tisch 27, Nummer 2
|
Marco Dietrich = Hof 1, Tisch 27, Nummer 2
|
||||||
Tobias Kovac = Hof 1, Tisch 27, Nummer 3
|
Sofia Dietrich = Hof 1, Tisch 27, Nummer 3
|
||||||
Stefan Berger = Hof 1, Tisch 27, Nummer 4
|
|
||||||
|
|
||||||
[28]
|
[28]
|
||||||
Luca Rossi = Hof 1, Tisch 28, Nummer 1
|
Prof. Dr. Timo Kaya = Hof 1, Tisch 28, Nummer 1
|
||||||
Melanie Rossi = Hof 1, Tisch 28, Nummer 2
|
Dr. Sandra Demir = Hof 1, Tisch 28, Nummer 2
|
||||||
Emilia Rossi = Hof 1, Tisch 28, Nummer 3
|
Lena Kovac = Hof 1, Tisch 28, Nummer 3
|
||||||
|
Tobias Kovac = Hof 1, Tisch 28, Nummer 4
|
||||||
|
|
||||||
[29]
|
[29]
|
||||||
Olga Hansen = Hof 1, Tisch 29, Nummer 1
|
Felix Nowak = Hof 1, Tisch 29, Nummer 1
|
||||||
Markus Hansen = Hof 1, Tisch 29, Nummer 2
|
Lena Winkler = Hof 1, Tisch 29, Nummer 2
|
||||||
Giovanna Hansen = Hof 1, Tisch 29, Nummer 3
|
Patrick Winkler = Hof 1, Tisch 29, Nummer 3
|
||||||
|
Kathrin Nowak = Hof 1, Tisch 29, Nummer 4
|
||||||
|
|
||||||
[30]
|
[30]
|
||||||
Matthias Richter = Hof 1, Tisch 30, Nummer 1
|
|
||||||
Greta Richter = Hof 1, Tisch 30, Nummer 2
|
|
||||||
Anja Richter = Hof 1, Tisch 30, Nummer 3
|
|
||||||
Anton Richter = Hof 1, Tisch 30, Nummer 4
|
|
||||||
|
|
||||||
[31]
|
[31]
|
||||||
Patrick Winkler = Hof 1, Tisch 31, Nummer 1
|
Prof. Dr. Julia Richter = Hof 1, Tisch 31, Nummer 1
|
||||||
Michael Lange = Hof 1, Tisch 31, Nummer 2
|
Dr. Jennifer Haas = Hof 1, Tisch 31, Nummer 2
|
||||||
Lena Winkler = Hof 1, Tisch 31, Nummer 3
|
|
||||||
Sofia Lange = Hof 1, Tisch 31, Nummer 4
|
|
||||||
|
|
||||||
[32]
|
[32]
|
||||||
|
Jennifer Berger = Hof 1, Tisch 32, Nummer 1
|
||||||
|
Anton Berger = Hof 1, Tisch 32, Nummer 2
|
||||||
|
Layla Berger = Hof 1, Tisch 32, Nummer 3
|
||||||
|
Stefan Berger = Hof 1, Tisch 32, Nummer 4
|
||||||
|
|
||||||
[33]
|
[33]
|
||||||
Marie Frank = Hof 1, Tisch 33, Nummer 1
|
Luca Aksoy = Hof 1, Tisch 33, Nummer 1
|
||||||
Finn Frank = Hof 1, Tisch 33, Nummer 2
|
Sofia Aksoy = Hof 1, Tisch 33, Nummer 2
|
||||||
Dennis Frank = Hof 1, Tisch 33, Nummer 3
|
Sergej Aksoy = Hof 1, Tisch 33, Nummer 3
|
||||||
|
|
||||||
[34]
|
[34]
|
||||||
Andreas Weber = Hof 1, Tisch 34, Nummer 1
|
|
||||||
Prof. Dr. Julia Richter = Hof 1, Tisch 34, Nummer 2
|
|
||||||
Dr. Jennifer Haas = Hof 1, Tisch 34, Nummer 3
|
|
||||||
|
|
||||||
[35]
|
[35]
|
||||||
Matthias Petrov = Hof 1, Tisch 35, Nummer 1
|
Leni Arnold = Hof 1, Tisch 35, Nummer 1
|
||||||
Olga Roth = Hof 1, Tisch 35, Nummer 2
|
Christian Arnold = Hof 1, Tisch 35, Nummer 2
|
||||||
Thomas Bianchi = Hof 1, Tisch 35, Nummer 3
|
Mila Arnold = Hof 1, Tisch 35, Nummer 3
|
||||||
Markus Barth = Hof 1, Tisch 35, Nummer 4
|
|
||||||
|
|
||||||
[36]
|
[36]
|
||||||
Dr. Olga Klein = Hof 1, Tisch 36, Nummer 1
|
Marco Kovac = Hof 1, Tisch 36, Nummer 1
|
||||||
Dr. Jennifer Arnold = Hof 1, Tisch 36, Nummer 2
|
Anja Kovac = Hof 1, Tisch 36, Nummer 2
|
||||||
Prof. Dr. Emre Albrecht = Hof 1, Tisch 36, Nummer 3
|
Henry Kovac = Hof 1, Tisch 36, Nummer 3
|
||||||
|
Marija Kovac = Hof 1, Tisch 36, Nummer 4
|
||||||
|
|
||||||
[37]
|
[37]
|
||||||
Sergej Aksoy = Hof 1, Tisch 37, Nummer 1
|
Aylin Nowak = Hof 1, Tisch 37, Nummer 1
|
||||||
Thomas Aksoy = Hof 1, Tisch 37, Nummer 2
|
Markus Nowak = Hof 1, Tisch 37, Nummer 2
|
||||||
Marie Aksoy = Hof 1, Tisch 37, Nummer 3
|
Lina Nowak = Hof 1, Tisch 37, Nummer 3
|
||||||
Sofia Aksoy = Hof 1, Tisch 37, Nummer 4
|
Noah Nowak = Hof 1, Tisch 37, Nummer 4
|
||||||
|
|
||||||
[38]
|
[38]
|
||||||
Felix Nowak = Hof 1, Tisch 38, Nummer 1
|
Dr. Nicole Hansen = Hof 1, Tisch 38, Nummer 1
|
||||||
Aylin Nowak = Hof 1, Tisch 38, Nummer 2
|
Thomas Krause = Hof 1, Tisch 38, Nummer 2
|
||||||
Kathrin Nowak = Hof 1, Tisch 38, Nummer 3
|
Kathrin Petrov = Hof 1, Tisch 38, Nummer 3
|
||||||
|
Milan Petrov = Hof 1, Tisch 38, Nummer 4
|
||||||
|
|
||||||
[39]
|
[39]
|
||||||
Milan Petrov = Hof 1, Tisch 39, Nummer 1
|
Markus Barth = Hof 1, Tisch 39, Nummer 1
|
||||||
Kathrin Petrov = Hof 1, Tisch 39, Nummer 2
|
Matthias Petrov = Hof 1, Tisch 39, Nummer 2
|
||||||
Sergej Lange = Hof 1, Tisch 39, Nummer 3
|
Andreas Weber = Hof 1, Tisch 39, Nummer 3
|
||||||
Katrin Werner = Hof 1, Tisch 39, Nummer 4
|
|
||||||
|
|
||||||
[40]
|
[40]
|
||||||
Prof. Dr. Dragana Dietrich = Hof 1, Tisch 40, Nummer 1
|
Melanie Rossi = Hof 1, Tisch 40, Nummer 1
|
||||||
Patrick Busch = Hof 1, Tisch 40, Nummer 2
|
Luca Rossi = Hof 1, Tisch 40, Nummer 2
|
||||||
Emre Hoffmann = Hof 1, Tisch 40, Nummer 3
|
Emilia Rossi = Hof 1, Tisch 40, Nummer 3
|
||||||
Dr. Michael Aksoy = Hof 1, Tisch 40, Nummer 4
|
|
||||||
|
|
||||||
[41]
|
[41]
|
||||||
Marie Koch = Hof 1, Tisch 41, Nummer 1
|
Julia Braun = Hof 1, Tisch 41, Nummer 1
|
||||||
Olga Koch = Hof 1, Tisch 41, Nummer 2
|
Milan Braun = Hof 1, Tisch 41, Nummer 2
|
||||||
|
Nadine Braun = Hof 1, Tisch 41, Nummer 3
|
||||||
|
|
||||||
[42]
|
[42]
|
||||||
Michael Koch = Hof 1, Tisch 42, Nummer 1
|
Jan Braun = Hof 1, Tisch 42, Nummer 1
|
||||||
Jan Koch = Hof 1, Tisch 42, Nummer 2
|
Dragana Braun = Hof 1, Tisch 42, Nummer 2
|
||||||
Sarah Koch = Hof 1, Tisch 42, Nummer 3
|
Christian Braun = Hof 1, Tisch 42, Nummer 3
|
||||||
Emil Koch = Hof 1, Tisch 42, Nummer 4
|
|
||||||
|
|
||||||
[43]
|
[43]
|
||||||
Mia Bianchi = Hof 1, Tisch 43, Nummer 1
|
Jennifer Arnold = Hof 1, Tisch 43, Nummer 1
|
||||||
Thomas Bianchi = Hof 1, Tisch 43, Nummer 2
|
Patrick Arnold = Hof 1, Tisch 43, Nummer 2
|
||||||
Sandra Bianchi = Hof 1, Tisch 43, Nummer 3
|
Dragana Lange = Hof 1, Tisch 43, Nummer 3
|
||||||
|
Michael Lange = Hof 1, Tisch 43, Nummer 4
|
||||||
|
|
||||||
[44]
|
[44]
|
||||||
Nadine Aksoy = Hof 1, Tisch 44, Nummer 1
|
Jan Lange = Hof 1, Tisch 44, Nummer 1
|
||||||
Luca Aksoy = Hof 1, Tisch 44, Nummer 2
|
Svenja Lange = Hof 1, Tisch 44, Nummer 2
|
||||||
|
Sofia Lange = Hof 1, Tisch 44, Nummer 3
|
||||||
|
|
||||||
[45]
|
[45]
|
||||||
Lina Nowak = Hof 1, Tisch 45, Nummer 1
|
Patrick Haas = Hof 1, Tisch 45, Nummer 1
|
||||||
Markus Nowak = Hof 1, Tisch 45, Nummer 2
|
Prof. Dr. Sergej Ott = Hof 1, Tisch 45, Nummer 2
|
||||||
Noah Nowak = Hof 1, Tisch 45, Nummer 3
|
Dragana Bauer = Hof 1, Tisch 45, Nummer 3
|
||||||
|
Nicole Peters = Hof 1, Tisch 45, Nummer 4
|
||||||
|
|
||||||
[46]
|
[46]
|
||||||
Dr. Anja Seidel = Hof 2, Tisch 46, Nummer 1
|
Yusuf Thiel = Hof 2, Tisch 46, Nummer 1
|
||||||
Dr. Thomas Hoffmann = Hof 2, Tisch 46, Nummer 2
|
Christina Thiel = Hof 2, Tisch 46, Nummer 2
|
||||||
Olga Tran = Hof 2, Tisch 46, Nummer 3
|
Julia Thiel = Hof 2, Tisch 46, Nummer 3
|
||||||
Prof. Dr. Dennis Werner = Hof 2, Tisch 46, Nummer 4
|
|
||||||
|
|
||||||
[47]
|
[47]
|
||||||
Thomas Krause = Hof 2, Tisch 47, Nummer 1
|
Sarah Schmitt = Hof 2, Tisch 47, Nummer 1
|
||||||
Dr. Nicole Hansen = Hof 2, Tisch 47, Nummer 2
|
Markus Schmitt = Hof 2, Tisch 47, Nummer 2
|
||||||
Prof. Dr. Sergej Ott = Hof 2, Tisch 47, Nummer 3
|
Sofia Schmitt = Hof 2, Tisch 47, Nummer 3
|
||||||
|
|
||||||
[48]
|
[48]
|
||||||
Dragana Bauer = Hof 2, Tisch 48, Nummer 1
|
Michael Koch = Hof 2, Tisch 48, Nummer 1
|
||||||
Nicole Peters = Hof 2, Tisch 48, Nummer 2
|
Emil Koch = Hof 2, Tisch 48, Nummer 2
|
||||||
Patrick Haas = Hof 2, Tisch 48, Nummer 3
|
Olga Koch = Hof 2, Tisch 48, Nummer 3
|
||||||
|
|
||||||
[49]
|
[49]
|
||||||
Matthias Kovac = Hof 2, Tisch 49, Nummer 1
|
Sarah Koch = Hof 2, Tisch 49, Nummer 1
|
||||||
Prof. Dr. Yusuf Esposito = Hof 2, Tisch 49, Nummer 2
|
Jan Koch = Hof 2, Tisch 49, Nummer 2
|
||||||
Marija Becker = Hof 2, Tisch 49, Nummer 3
|
Marie Koch = Hof 2, Tisch 49, Nummer 3
|
||||||
|
|
||||||
[50]
|
[50]
|
||||||
Leni Seifert = Hof 2, Tisch 50, Nummer 1
|
Anja Richter = Hof 2, Tisch 50, Nummer 1
|
||||||
Elif Seifert = Hof 2, Tisch 50, Nummer 2
|
Matthias Richter = Hof 2, Tisch 50, Nummer 2
|
||||||
Yusuf Seifert = Hof 2, Tisch 50, Nummer 3
|
Greta Richter = Hof 2, Tisch 50, Nummer 3
|
||||||
|
Anton Richter = Hof 2, Tisch 50, Nummer 4
|
||||||
|
|
||||||
[51]
|
[51]
|
||||||
Jennifer Arnold = Hof 2, Tisch 51, Nummer 1
|
Prof. Dr. Dennis Werner = Hof 2, Tisch 51, Nummer 1
|
||||||
Nicole Seifert = Hof 2, Tisch 51, Nummer 2
|
Dr. Thomas Hoffmann = Hof 2, Tisch 51, Nummer 2
|
||||||
Christian Arnold = Hof 2, Tisch 51, Nummer 3
|
Olga Tran = Hof 2, Tisch 51, Nummer 3
|
||||||
Timo Seifert = Hof 2, Tisch 51, Nummer 4
|
Dr. Anja Seidel = Hof 2, Tisch 51, Nummer 4
|
||||||
|
|
||||||
[52]
|
[52]
|
||||||
Mila Arnold = Hof 2, Tisch 52, Nummer 1
|
Prof. Dr. Stefan Schmitt = Hof 2, Tisch 52, Nummer 1
|
||||||
Patrick Arnold = Hof 2, Tisch 52, Nummer 2
|
Marija Tran = Hof 2, Tisch 52, Nummer 2
|
||||||
Leni Arnold = Hof 2, Tisch 52, Nummer 3
|
Dr. Kathrin Koch = Hof 2, Tisch 52, Nummer 3
|
||||||
|
Dr. Julia Kuhn = Hof 2, Tisch 52, Nummer 4
|
||||||
|
|
||||||
[53]
|
[53]
|
||||||
Prof. Dr. Thomas Tran = Hof 2, Tisch 53, Nummer 1
|
Prof. Dr. Dragana Dietrich = Hof 2, Tisch 53, Nummer 1
|
||||||
Marija Aksoy = Hof 2, Tisch 53, Nummer 2
|
Dr. Michael Aksoy = Hof 2, Tisch 53, Nummer 2
|
||||||
Kathrin Polat = Hof 2, Tisch 53, Nummer 3
|
Katrin Weber = Hof 2, Tisch 53, Nummer 3
|
||||||
Sergej Petrov = Hof 2, Tisch 53, Nummer 4
|
Luca Werner = Hof 2, Tisch 53, Nummer 4
|
||||||
|
|
||||||
[54]
|
[54]
|
||||||
Nicole Aksoy = Hof 2, Tisch 54, Nummer 1
|
Sandra Bianchi = Hof 2, Tisch 54, Nummer 1
|
||||||
Daniel Krause = Hof 2, Tisch 54, Nummer 2
|
Thomas Bianchi = Hof 2, Tisch 54, Nummer 2
|
||||||
Prof. Dr. Emre Ludwig = Hof 2, Tisch 54, Nummer 3
|
Mia Bianchi = Hof 2, Tisch 54, Nummer 3
|
||||||
Markus Klein = Hof 2, Tisch 54, Nummer 4
|
|
||||||
|
|
||||||
[55]
|
[55]
|
||||||
Michael Busch = Hof 2, Tisch 55, Nummer 1
|
Sandra Werner = Hof 2, Tisch 55, Nummer 1
|
||||||
Marie Busch = Hof 2, Tisch 55, Nummer 2
|
Andreas Werner = Hof 2, Tisch 55, Nummer 2
|
||||||
Emre Busch = Hof 2, Tisch 55, Nummer 3
|
Nadine Werner = Hof 2, Tisch 55, Nummer 3
|
||||||
Olga Busch = Hof 2, Tisch 55, Nummer 4
|
Marco Werner = Hof 2, Tisch 55, Nummer 4
|
||||||
|
|
||||||
[56]
|
[56]
|
||||||
Luca Kaya = Hof 2, Tisch 56, Nummer 1
|
Olga Busch = Hof 2, Tisch 56, Nummer 1
|
||||||
Christina Kaya = Hof 2, Tisch 56, Nummer 2
|
Emre Busch = Hof 2, Tisch 56, Nummer 2
|
||||||
Nicole Kaya = Hof 2, Tisch 56, Nummer 3
|
Marie Busch = Hof 2, Tisch 56, Nummer 3
|
||||||
|
Michael Busch = Hof 2, Tisch 56, Nummer 4
|
||||||
|
|
||||||
[57]
|
[57]
|
||||||
Matthias Schmidt = Hof 2, Tisch 57, Nummer 1
|
Prof. Dr. Emre Ludwig = Hof 2, Tisch 57, Nummer 1
|
||||||
Giovanna Schmidt = Hof 2, Tisch 57, Nummer 2
|
Daniel Krause = Hof 2, Tisch 57, Nummer 2
|
||||||
Marie Schmidt = Hof 2, Tisch 57, Nummer 3
|
Nicole Aksoy = Hof 2, Tisch 57, Nummer 3
|
||||||
|
Markus Klein = Hof 2, Tisch 57, Nummer 4
|
||||||
|
|
||||||
[58]
|
[58]
|
||||||
|
Prof. Dr. Marco Seifert = Hof 2, Tisch 58, Nummer 1
|
||||||
|
Matthias Krause = Hof 2, Tisch 58, Nummer 2
|
||||||
|
Giovanna Schwarz = Hof 2, Tisch 58, Nummer 3
|
||||||
|
|
||||||
[59]
|
[59]
|
||||||
Andreas Werner = Hof 2, Tisch 59, Nummer 1
|
Prof. Dr. Thomas Tran = Hof 2, Tisch 59, Nummer 1
|
||||||
Nadine Werner = Hof 2, Tisch 59, Nummer 2
|
Sergej Petrov = Hof 2, Tisch 59, Nummer 2
|
||||||
Marco Werner = Hof 2, Tisch 59, Nummer 3
|
Kathrin Polat = Hof 2, Tisch 59, Nummer 3
|
||||||
Sandra Werner = Hof 2, Tisch 59, Nummer 4
|
Marija Aksoy = Hof 2, Tisch 59, Nummer 4
|
||||||
|
|
||||||
[60]
|
[60]
|
||||||
Marija Polat = Hof 2, Tisch 60, Nummer 1
|
Nicole Sahin = Hof 2, Tisch 60, Nummer 1
|
||||||
Nadine Arnold = Hof 2, Tisch 60, Nummer 2
|
Markus Sahin = Hof 2, Tisch 60, Nummer 2
|
||||||
Marco Richter = Hof 2, Tisch 60, Nummer 3
|
Kathrin Sahin = Hof 2, Tisch 60, Nummer 3
|
||||||
Prof. Dr. Patrick Hoffmann = Hof 2, Tisch 60, Nummer 4
|
Patrick Sahin = Hof 2, Tisch 60, Nummer 4
|
||||||
|
|
||||||
[61]
|
[61]
|
||||||
Luca Ott = Hof 2, Tisch 61, Nummer 1
|
Sarah Maier = Hof 2, Tisch 61, Nummer 1
|
||||||
Patrick Zimmermann = Hof 2, Tisch 61, Nummer 2
|
Christian Maier = Hof 2, Tisch 61, Nummer 2
|
||||||
Yusuf Weber = Hof 2, Tisch 61, Nummer 3
|
Olga Maier = Hof 2, Tisch 61, Nummer 3
|
||||||
Giovanna Schwarz = Hof 2, Tisch 61, Nummer 4
|
Arda Maier = Hof 2, Tisch 61, Nummer 4
|
||||||
|
|
||||||
[62]
|
[62]
|
||||||
Sofia Nguyen = Hof 2, Tisch 62, Nummer 1
|
Luca Kovac = Hof 2, Tisch 62, Nummer 1
|
||||||
Anja Nguyen = Hof 2, Tisch 62, Nummer 2
|
Dr. Dragana Krause = Hof 2, Tisch 62, Nummer 2
|
||||||
Daniel Nguyen = Hof 2, Tisch 62, Nummer 3
|
Prof. Dr. Dennis Schmitt = Hof 2, Tisch 62, Nummer 3
|
||||||
|
|
||||||
[63]
|
[63]
|
||||||
Nicole Wagner = Hof 2, Tisch 63, Nummer 1
|
Andreas Krause = Hof 2, Tisch 63, Nummer 1
|
||||||
Henry Wagner = Hof 2, Tisch 63, Nummer 2
|
Emma Krause = Hof 2, Tisch 63, Nummer 2
|
||||||
Sarah Wagner = Hof 2, Tisch 63, Nummer 3
|
Arda Krause = Hof 2, Tisch 63, Nummer 3
|
||||||
Marco Wagner = Hof 2, Tisch 63, Nummer 4
|
Julia Krause = Hof 2, Tisch 63, Nummer 4
|
||||||
|
|
||||||
[64]
|
[64]
|
||||||
Elif Ludwig = Hof 2, Tisch 64, Nummer 1
|
Katrin Werner = Hof 2, Tisch 64, Nummer 1
|
||||||
Emre Ludwig = Hof 2, Tisch 64, Nummer 2
|
Patrick Busch = Hof 2, Tisch 64, Nummer 2
|
||||||
Giovanna Ludwig = Hof 2, Tisch 64, Nummer 3
|
Emre Hoffmann = Hof 2, Tisch 64, Nummer 3
|
||||||
Elias Ludwig = Hof 2, Tisch 64, Nummer 4
|
Sergej Lange = Hof 2, Tisch 64, Nummer 4
|
||||||
|
|
||||||
[65]
|
[65]
|
||||||
Nicole Becker = Hof 2, Tisch 65, Nummer 1
|
Nadine Arnold = Hof 2, Tisch 65, Nummer 1
|
||||||
Jan Becker = Hof 2, Tisch 65, Nummer 2
|
Marco Richter = Hof 2, Tisch 65, Nummer 2
|
||||||
Sandra Becker = Hof 2, Tisch 65, Nummer 3
|
Prof. Dr. Patrick Hoffmann = Hof 2, Tisch 65, Nummer 3
|
||||||
|
Marija Polat = Hof 2, Tisch 65, Nummer 4
|
||||||
|
|
||||||
[66]
|
[66]
|
||||||
Christian Maier = Hof 2, Tisch 66, Nummer 1
|
Lena Simon = Hof 2, Tisch 66, Nummer 1
|
||||||
Sarah Maier = Hof 2, Tisch 66, Nummer 2
|
Markus Simon = Hof 2, Tisch 66, Nummer 2
|
||||||
Arda Maier = Hof 2, Tisch 66, Nummer 3
|
Emma Simon = Hof 2, Tisch 66, Nummer 3
|
||||||
Olga Maier = Hof 2, Tisch 66, Nummer 4
|
Andreas Simon = Hof 2, Tisch 66, Nummer 4
|
||||||
|
|
||||||
[67]
|
[67]
|
||||||
Svenja Zimmermann = Hof 2, Tisch 67, Nummer 1
|
Yusuf Weber = Hof 2, Tisch 67, Nummer 1
|
||||||
Mia Zimmermann = Hof 2, Tisch 67, Nummer 2
|
Dr. Patrick Kraus = Hof 2, Tisch 67, Nummer 2
|
||||||
Markus Zimmermann = Hof 2, Tisch 67, Nummer 3
|
Dr. Aylin Ludwig = Hof 2, Tisch 67, Nummer 3
|
||||||
Jan Zimmermann = Hof 2, Tisch 67, Nummer 4
|
|
||||||
|
|
||||||
[68]
|
[68]
|
||||||
Marija Tran = Hof 2, Tisch 68, Nummer 1
|
Nicole Wagner = Hof 2, Tisch 68, Nummer 1
|
||||||
Luca Werner = Hof 2, Tisch 68, Nummer 2
|
Marco Wagner = Hof 2, Tisch 68, Nummer 2
|
||||||
Dr. Kathrin Koch = Hof 2, Tisch 68, Nummer 3
|
Sarah Wagner = Hof 2, Tisch 68, Nummer 3
|
||||||
|
Henry Wagner = Hof 2, Tisch 68, Nummer 4
|
||||||
|
|
||||||
[69]
|
[69]
|
||||||
Katrin Weber = Hof 2, Tisch 69, Nummer 1
|
Olga Franke = Hof 2, Tisch 69, Nummer 1
|
||||||
Prof. Dr. Stefan Schmitt = Hof 2, Tisch 69, Nummer 2
|
Amira Franke = Hof 2, Tisch 69, Nummer 2
|
||||||
Dr. Julia Kuhn = Hof 2, Tisch 69, Nummer 3
|
Marco Franke = Hof 2, Tisch 69, Nummer 3
|
||||||
|
|
||||||
[70]
|
[70]
|
||||||
Prof. Dr. Marco Seifert = Hof 2, Tisch 70, Nummer 1
|
Svenja Zimmermann = Hof 2, Tisch 70, Nummer 1
|
||||||
Dr. Patrick Kraus = Hof 2, Tisch 70, Nummer 2
|
Jan Zimmermann = Hof 2, Tisch 70, Nummer 2
|
||||||
Dr. Aylin Ludwig = Hof 2, Tisch 70, Nummer 3
|
Mia Zimmermann = Hof 2, Tisch 70, Nummer 3
|
||||||
Matthias Krause = Hof 2, Tisch 70, Nummer 4
|
Markus Zimmermann = Hof 2, Tisch 70, Nummer 4
|
||||||
|
|
||||||
[71]
|
[71]
|
||||||
Stefan Richter = Hof 2, Tisch 71, Nummer 1
|
Luca Ott = Hof 2, Tisch 71, Nummer 1
|
||||||
Dr. Dragana Krause = Hof 2, Tisch 71, Nummer 2
|
Patrick Zimmermann = Hof 2, Tisch 71, Nummer 2
|
||||||
Luca Kovac = Hof 2, Tisch 71, Nummer 3
|
Stefan Richter = Hof 2, Tisch 71, Nummer 3
|
||||||
Prof. Dr. Dennis Schmitt = Hof 2, Tisch 71, Nummer 4
|
|
||||||
|
|
||||||
[72]
|
[72]
|
||||||
Layla Horn = Hof 2, Tisch 72, Nummer 1
|
Matthias Ott = Hof 2, Tisch 72, Nummer 1
|
||||||
Michael Horn = Hof 2, Tisch 72, Nummer 2
|
Hannah Ott = Hof 2, Tisch 72, Nummer 2
|
||||||
Leon Horn = Hof 2, Tisch 72, Nummer 3
|
Olga Ott = Hof 2, Tisch 72, Nummer 3
|
||||||
Kathrin Horn = Hof 2, Tisch 72, Nummer 4
|
|
||||||
|
|
||||||
[73]
|
[73]
|
||||||
Jennifer Neumann = Hof 2, Tisch 73, Nummer 1
|
Jennifer Neumann = Hof 2, Tisch 73, Nummer 1
|
||||||
Matteo Neumann = Hof 2, Tisch 73, Nummer 2
|
Thomas Neumann = Hof 2, Tisch 73, Nummer 2
|
||||||
Lina Neumann = Hof 2, Tisch 73, Nummer 3
|
Lina Neumann = Hof 2, Tisch 73, Nummer 3
|
||||||
Thomas Neumann = Hof 2, Tisch 73, Nummer 4
|
Matteo Neumann = Hof 2, Tisch 73, Nummer 4
|
||||||
|
|
||||||
[74]
|
[74]
|
||||||
Emma Wolf = Hof 2, Tisch 74, Nummer 1
|
Patrick Barth = Hof 2, Tisch 74, Nummer 1
|
||||||
Julia Wolf = Hof 2, Tisch 74, Nummer 2
|
Nadine Barth = Hof 2, Tisch 74, Nummer 2
|
||||||
Ben Wolf = Hof 2, Tisch 74, Nummer 3
|
Timo Barth = Hof 2, Tisch 74, Nummer 3
|
||||||
Thomas Wolf = Hof 2, Tisch 74, Nummer 4
|
Lina Barth = Hof 2, Tisch 74, Nummer 4
|
||||||
|
|
||||||
[75]
|
[75]
|
||||||
Andreas Simon = Hof 2, Tisch 75, Nummer 1
|
Dragana Pohl = Hof 2, Tisch 75, Nummer 1
|
||||||
Emma Simon = Hof 2, Tisch 75, Nummer 2
|
Emre Pohl = Hof 2, Tisch 75, Nummer 2
|
||||||
Markus Simon = Hof 2, Tisch 75, Nummer 3
|
Mia Pohl = Hof 2, Tisch 75, Nummer 3
|
||||||
Lena Simon = Hof 2, Tisch 75, Nummer 4
|
Theo Pohl = Hof 2, Tisch 75, Nummer 4
|
||||||
|
|
||||||
[76]
|
[76]
|
||||||
Amira Franke = Hof 2, Tisch 76, Nummer 1
|
Prof. Dr. Yusuf Esposito = Hof 2, Tisch 76, Nummer 1
|
||||||
Michael Franke = Hof 2, Tisch 76, Nummer 2
|
Marija Becker = Hof 2, Tisch 76, Nummer 2
|
||||||
Julia Franke = Hof 2, Tisch 76, Nummer 3
|
Matthias Kovac = Hof 2, Tisch 76, Nummer 3
|
||||||
|
|
||||||
[77]
|
[77]
|
||||||
Marco Franke = Hof 2, Tisch 77, Nummer 1
|
Luca Kaya = Hof 2, Tisch 77, Nummer 1
|
||||||
Markus Polat = Hof 2, Tisch 77, Nummer 2
|
Christina Kaya = Hof 2, Tisch 77, Nummer 2
|
||||||
Sarah Polat = Hof 2, Tisch 77, Nummer 3
|
Nicole Kaya = Hof 2, Tisch 77, Nummer 3
|
||||||
Olga Franke = Hof 2, Tisch 77, Nummer 4
|
|
||||||
|
|
||||||
[78]
|
[78]
|
||||||
Milan Klein = Hof 2, Tisch 78, Nummer 1
|
Deniz Hartmann = Hof 2, Tisch 78, Nummer 1
|
||||||
Stefanie Klein = Hof 2, Tisch 78, Nummer 2
|
Nadine Hartmann = Hof 2, Tisch 78, Nummer 2
|
||||||
Lina Klein = Hof 2, Tisch 78, Nummer 3
|
Michael Franke = Hof 2, Tisch 78, Nummer 3
|
||||||
|
Julia Franke = Hof 2, Tisch 78, Nummer 4
|
||||||
|
|
||||||
[79]
|
[79]
|
||||||
Sofia Roth = Hof 2, Tisch 79, Nummer 1
|
Kathrin Horn = Hof 2, Tisch 79, Nummer 1
|
||||||
Sarah Roth = Hof 2, Tisch 79, Nummer 2
|
Michael Horn = Hof 2, Tisch 79, Nummer 2
|
||||||
Christian Roth = Hof 2, Tisch 79, Nummer 3
|
Layla Horn = Hof 2, Tisch 79, Nummer 3
|
||||||
|
Leon Horn = Hof 2, Tisch 79, Nummer 4
|
||||||
|
|
||||||
[80]
|
[80]
|
||||||
Prof. Dr. Anja Richter = Hof 2, Tisch 80, Nummer 1
|
Stefanie Polat = Hof 2, Tisch 80, Nummer 1
|
||||||
Thomas Sahin = Hof 2, Tisch 80, Nummer 2
|
Stefan Polat = Hof 2, Tisch 80, Nummer 2
|
||||||
Dr. Jan Thiel = Hof 2, Tisch 80, Nummer 3
|
Melanie Ott = Hof 2, Tisch 80, Nummer 3
|
||||||
|
Daniel Ott = Hof 2, Tisch 80, Nummer 4
|
||||||
|
|
||||||
[81]
|
[81]
|
||||||
Prof. Dr. Yusuf Ott = Hof 2, Tisch 81, Nummer 1
|
Sarah Polat = Hof 2, Tisch 81, Nummer 1
|
||||||
Patrick Lehmann = Hof 2, Tisch 81, Nummer 2
|
Markus Polat = Hof 2, Tisch 81, Nummer 2
|
||||||
Dr. Nadine Berger = Hof 2, Tisch 81, Nummer 3
|
Katrin Polat = Hof 2, Tisch 81, Nummer 3
|
||||||
|
|
||||||
[82]
|
[82]
|
||||||
Matthias Ott = Hof 2, Tisch 82, Nummer 1
|
Olga Roth = Hof 2, Tisch 82, Nummer 1
|
||||||
Melanie Ott = Hof 2, Tisch 82, Nummer 2
|
Prof. Dr. Emre Albrecht = Hof 2, Tisch 82, Nummer 2
|
||||||
Hannah Ott = Hof 2, Tisch 82, Nummer 3
|
Thomas Bianchi = Hof 2, Tisch 82, Nummer 3
|
||||||
|
|
||||||
[83]
|
[83]
|
||||||
Ben Stein = Hof 2, Tisch 83, Nummer 1
|
Emma Wolf = Hof 2, Tisch 83, Nummer 1
|
||||||
Giovanna Stein = Hof 2, Tisch 83, Nummer 2
|
Ben Wolf = Hof 2, Tisch 83, Nummer 2
|
||||||
Emilia Stein = Hof 2, Tisch 83, Nummer 3
|
Julia Wolf = Hof 2, Tisch 83, Nummer 3
|
||||||
Thomas Stein = Hof 2, Tisch 83, Nummer 4
|
Thomas Wolf = Hof 2, Tisch 83, Nummer 4
|
||||||
|
|
||||||
[84]
|
[84]
|
||||||
Stefanie Polat = Hof 2, Tisch 84, Nummer 1
|
Marija Hartmann = Hof 2, Tisch 84, Nummer 1
|
||||||
Katrin Polat = Hof 2, Tisch 84, Nummer 2
|
Thomas Hartmann = Hof 2, Tisch 84, Nummer 2
|
||||||
Stefan Polat = Hof 2, Tisch 84, Nummer 3
|
Olga Hartmann = Hof 2, Tisch 84, Nummer 3
|
||||||
|
|
||||||
[85]
|
[85]
|
||||||
Dragana Pohl = Hof 2, Tisch 85, Nummer 1
|
Matthias Schmidt = Hof 2, Tisch 85, Nummer 1
|
||||||
Theo Pohl = Hof 2, Tisch 85, Nummer 2
|
Marie Schmidt = Hof 2, Tisch 85, Nummer 2
|
||||||
Mia Pohl = Hof 2, Tisch 85, Nummer 3
|
Giovanna Schmidt = Hof 2, Tisch 85, Nummer 3
|
||||||
Emre Pohl = Hof 2, Tisch 85, Nummer 4
|
|
||||||
|
|
||||||
[86]
|
[86]
|
||||||
|
Thomas Stein = Hof 2, Tisch 86, Nummer 1
|
||||||
|
Emilia Stein = Hof 2, Tisch 86, Nummer 2
|
||||||
|
Ben Stein = Hof 2, Tisch 86, Nummer 3
|
||||||
|
Giovanna Stein = Hof 2, Tisch 86, Nummer 4
|
||||||
|
|
||||||
[87]
|
[87]
|
||||||
Marija Hartmann = Hof 2, Tisch 87, Nummer 1
|
Lena Frank = Hof 2, Tisch 87, Nummer 1
|
||||||
Thomas Hartmann = Hof 2, Tisch 87, Nummer 2
|
Marie Frank = Hof 2, Tisch 87, Nummer 2
|
||||||
Nadine Hartmann = Hof 2, Tisch 87, Nummer 3
|
Finn Frank = Hof 2, Tisch 87, Nummer 3
|
||||||
|
|
||||||
[88]
|
[88]
|
||||||
Olga Ott = Hof 2, Tisch 88, Nummer 1
|
Dr. Olga Klein = Hof 2, Tisch 88, Nummer 1
|
||||||
Olga Hartmann = Hof 2, Tisch 88, Nummer 2
|
Dr. Jennifer Arnold = Hof 2, Tisch 88, Nummer 2
|
||||||
Deniz Hartmann = Hof 2, Tisch 88, Nummer 3
|
Nadine Frank = Hof 2, Tisch 88, Nummer 3
|
||||||
Daniel Ott = Hof 2, Tisch 88, Nummer 4
|
Dennis Frank = Hof 2, Tisch 88, Nummer 4
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
|
AA, A, Dipl. Ing. = Hof 1, Tisch 1, Nummer 2
|
||||||
|
AA, A, Dipl. Ing. = Hof 1, Tisch 1, Nummer 3
|
||||||
|
AA, A, Dipl. Ing. = Hof 1, Tisch 1, Nummer 4
|
||||||
|
AA, A, Dipl. Ing. = Hof 1, Tisch 1, Nummer 5
|
||||||
|
AA, A, Dipl. Ing. = Hof 1, Tisch 1, Nummer 6
|
||||||
AA, A, Dipl. Ing. = Hof 1, Tisch 2, Nummer 2
|
AA, A, Dipl. Ing. = Hof 1, Tisch 2, Nummer 2
|
||||||
AA, A, Dipl. Ing. = Hof 1, Tisch 2, Nummer 3
|
AA, A, Dipl. Ing. = Hof 1, Tisch 2, Nummer 3
|
||||||
AA, A, Dipl. Ing. = Hof 1, Tisch 2, Nummer 4
|
AA, A, Dipl. Ing. = Hof 1, Tisch 2, Nummer 4
|
||||||
AA, A, Dipl. Ing. = Hof 1, Tisch 2, Nummer 5
|
AA, A, Dipl. Ing. = Hof 1, Tisch 2, Nummer 5
|
||||||
AA, A, Dipl. Ing. = Hof 1, Tisch 2, Nummer 6
|
AA, A, Dipl. Ing. = Hof 1, Tisch 2, Nummer 6
|
||||||
AA, A, Dipl. Ing. = Hof 1, Tisch 3, Nummer 2
|
BB, B, Prof. = Hof 1, Tisch 3, Nummer 2
|
||||||
AA, A, Dipl. Ing. = Hof 1, Tisch 3, Nummer 3
|
BB, B, Prof. = Hof 1, Tisch 3, Nummer 3
|
||||||
AA, A, Dipl. Ing. = Hof 1, Tisch 3, Nummer 4
|
BB, B, Prof. = Hof 1, Tisch 3, Nummer 4
|
||||||
AA, A, Dipl. Ing. = Hof 1, Tisch 3, Nummer 5
|
BB, B, Prof. = Hof 1, Tisch 3, Nummer 5
|
||||||
AA, A, Dipl. Ing. = Hof 1, Tisch 3, Nummer 6
|
|
||||||
BB, B, Prof. = Hof 1, Tisch 1, Nummer 2
|
|
||||||
BB, B, Prof. = Hof 1, Tisch 1, Nummer 3
|
|
||||||
BB, B, Prof. = Hof 1, Tisch 1, Nummer 4
|
|
||||||
BB, B, Prof. = Hof 1, Tisch 1, Nummer 5
|
|
||||||
CC, C, Dr. = Hof 1, Tisch 4, Nummer 2
|
CC, C, Dr. = Hof 1, Tisch 4, Nummer 2
|
||||||
CC, C, Dr. = Hof 1, Tisch 4, Nummer 3
|
CC, C, Dr. = Hof 1, Tisch 4, Nummer 3
|
||||||
CC, C, Dr. = Hof 1, Tisch 4, Nummer 4
|
CC, C, Dr. = Hof 1, Tisch 4, Nummer 4
|
||||||
|
|||||||
|
@@ -1,12 +1,20 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="405.657" height="108.914" viewBox="0 0 405.657 108.914">
|
<svg xmlns="http://www.w3.org/2000/svg" width="405.657" height="108.914" viewBox="0 0 405.657 108.914">
|
||||||
<rect width="100%" height="100%" fill="white"/>
|
<rect width="100%" height="100%" fill="white"/>
|
||||||
<polyline points="153.372,54.4572 252.286,54.4572" fill="none" stroke="#3cb44b" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="0.5"/>
|
<polyline points="54.4572,54.4572 153.372,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="44.4572" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
|
<circle cx="252.286" cy="32" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="274.743" cy="54.4572" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="252.286" cy="76.9144" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="229.829" cy="54.4572" 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="44.4572" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="54.4572" cy="54.4572" r="44.4572" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="54.4572" cy="32" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle cx="54.4572" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="76.9144" cy="54.4572" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle cx="75.8152" cy="47.5175" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="54.4572" cy="76.9144" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle cx="67.6572" cy="72.6254" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="32" cy="54.4572" r="12" fill="#e6194b" stroke="black" stroke-width="1"/>
|
<circle cx="41.2572" cy="72.6254" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
||||||
|
<circle cx="33.0991" cy="47.5175" r="12" fill="#3cb44b" 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="54.4572" r="44.4572" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
@@ -17,14 +25,6 @@
|
|||||||
<circle cx="132.013" cy="47.5175" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
<circle cx="132.013" cy="47.5175" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="153.372" cy="54.4572" r="12" fill="white" fill-opacity="0.75"/>
|
<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>
|
<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="44.4572" fill="white" stroke="black" stroke-width="1.5"/>
|
|
||||||
<circle cx="252.286" cy="32" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="273.644" cy="47.5175" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="265.486" cy="72.6254" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="239.086" cy="72.6254" r="12" fill="#3cb44b" stroke="black" stroke-width="1"/>
|
|
||||||
<circle cx="230.928" cy="47.5175" 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="44.4572" fill="white" stroke="black" stroke-width="1.5"/>
|
<circle cx="351.2" cy="54.4572" r="44.4572" fill="white" stroke="black" stroke-width="1.5"/>
|
||||||
<circle cx="351.2" cy="32" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle cx="351.2" cy="32" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
||||||
<circle cx="372.558" cy="47.5175" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
<circle cx="372.558" cy="47.5175" r="12" fill="#4363d8" stroke="black" stroke-width="1"/>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,8 +1,9 @@
|
|||||||
[1]
|
[1]
|
||||||
Prof. B BB = Hof 1, Tisch 1, Nummer 1
|
Dipl. Ing. A AA = Hof 1, Tisch 1, Nummer 1
|
||||||
Prof. B BB = Hof 1, Tisch 1, Nummer 2
|
Dipl. Ing. A AA = Hof 1, Tisch 1, Nummer 2
|
||||||
Prof. B BB = Hof 1, Tisch 1, Nummer 3
|
Dipl. Ing. A AA = Hof 1, Tisch 1, Nummer 3
|
||||||
Prof. B BB = Hof 1, Tisch 1, Nummer 4
|
Dipl. Ing. A AA = Hof 1, Tisch 1, Nummer 4
|
||||||
|
Dipl. Ing. A AA = Hof 1, Tisch 1, Nummer 5
|
||||||
|
|
||||||
[2]
|
[2]
|
||||||
Dipl. Ing. A AA = Hof 1, Tisch 2, Nummer 1
|
Dipl. Ing. A AA = Hof 1, Tisch 2, Nummer 1
|
||||||
@@ -12,11 +13,10 @@ Dipl. Ing. A AA = Hof 1, Tisch 2, Nummer 4
|
|||||||
Dipl. Ing. A AA = Hof 1, Tisch 2, Nummer 5
|
Dipl. Ing. A AA = Hof 1, Tisch 2, Nummer 5
|
||||||
|
|
||||||
[3]
|
[3]
|
||||||
Dipl. Ing. A AA = Hof 1, Tisch 3, Nummer 1
|
Prof. B BB = Hof 1, Tisch 3, Nummer 1
|
||||||
Dipl. Ing. A AA = Hof 1, Tisch 3, Nummer 2
|
Prof. B BB = Hof 1, Tisch 3, Nummer 2
|
||||||
Dipl. Ing. A AA = Hof 1, Tisch 3, Nummer 3
|
Prof. B BB = Hof 1, Tisch 3, Nummer 3
|
||||||
Dipl. Ing. A AA = Hof 1, Tisch 3, Nummer 4
|
Prof. B BB = Hof 1, Tisch 3, Nummer 4
|
||||||
Dipl. Ing. A AA = Hof 1, Tisch 3, Nummer 5
|
|
||||||
|
|
||||||
[4]
|
[4]
|
||||||
Dr. C CC = Hof 1, Tisch 4, Nummer 1
|
Dr. C CC = Hof 1, Tisch 4, Nummer 1
|
||||||
|
|||||||
@@ -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 2
|
Brandt, Willi, Dr. = Hof 1, Tisch 4, Nummer 5
|
||||||
Bruegge, Heinz, = Hof 1, Tisch 5, Nummer 2
|
Bruegge, Heinz, = Hof 1, Tisch 5, Nummer 2
|
||||||
Dietrich, Marlene, = Hof 1, Tisch 5, Nummer 5
|
Dietrich, Marlene, = Hof 1, Tisch 5, Nummer 5
|
||||||
Emmerlich, Walter, = Hof 1, Tisch 3, Nummer 3
|
Emmerlich, Walter, = Hof 1, Tisch 4, Nummer 3
|
||||||
Frenzen, Heinz Harald, = Hof 1, Tisch 3, Nummer 4
|
Frenzen, Heinz Harald, = Hof 1, Tisch 3, Nummer 4
|
||||||
Hoehn, Bernd Robert, Professor = Hof 1, Tisch 1, Nummer 2
|
Hoehn, Bernd Robert, Professor = Hof 1, Tisch 1, Nummer 4
|
||||||
Junke, Harald, = Hof 1, Tisch 4, Nummer 4
|
Junke, Harald, = Hof 1, Tisch 4, Nummer 4
|
||||||
K, Hubert, = Hof 1, Tisch 5, Nummer 4
|
K, Hubert, = Hof 1, Tisch 5, Nummer 3
|
||||||
Leone, Sergio, = Hof 1, Tisch 3, Nummer 2
|
Leone, Sergio, = Hof 1, Tisch 4, Nummer 2
|
||||||
Mueller, Magnus, Professor = Hof 1, Tisch 1, Nummer 3
|
Mueller, Magnus, Professor = Hof 1, Tisch 1, Nummer 3
|
||||||
Ruehmann, Heinz, = Hof 1, Tisch 5, Nummer 3
|
Ruehmann, Heinz, = Hof 1, Tisch 5, Nummer 4
|
||||||
Schumacher, Michael, = Hof 1, Tisch 4, Nummer 3
|
Schumacher, Michael, = Hof 1, Tisch 3, Nummer 3
|
||||||
Schumacher, Ralf, = Hof 1, Tisch 4, Nummer 5
|
Schumacher, Ralf, = Hof 1, Tisch 3, Nummer 2
|
||||||
Stangl, Michael, Dipl. Ing. = Hof 1, Tisch 1, Nummer 4
|
Stangl, Michael, Dipl. Ing. = Hof 1, Tisch 1, Nummer 2
|
||||||
|
|||||||
|
@@ -29,8 +29,8 @@
|
|||||||
<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="#4363d8" 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="#f58231" 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="#4363d8" 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="#f58231" 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>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,7 +1,7 @@
|
|||||||
[1]
|
[1]
|
||||||
Professor Bernd Robert Hoehn = Hof 1, Tisch 1, Nummer 1
|
Dipl. Ing. Michael Stangl = Hof 1, Tisch 1, Nummer 1
|
||||||
Professor Magnus Mueller = Hof 1, Tisch 1, Nummer 2
|
Professor Magnus Mueller = Hof 1, Tisch 1, Nummer 2
|
||||||
Dipl. Ing. Michael Stangl = 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
|
||||||
@@ -9,19 +9,19 @@ Dipl. Ing. Michael Stangl = Hof 1, Tisch 1, Nummer 3
|
|||||||
Bestelli Bloedkopf = Hof 1, Tisch 2, Nummer 3
|
Bestelli Bloedkopf = Hof 1, Tisch 2, Nummer 3
|
||||||
|
|
||||||
[3]
|
[3]
|
||||||
Sergio Leone = Hof 1, Tisch 3, Nummer 1
|
Ralf Schumacher = Hof 1, Tisch 3, Nummer 1
|
||||||
Walter Emmerlich = Hof 1, Tisch 3, Nummer 2
|
Michael Schumacher = Hof 1, Tisch 3, Nummer 2
|
||||||
Heinz Harald Frenzen = Hof 1, Tisch 3, Nummer 3
|
Heinz Harald Frenzen = Hof 1, Tisch 3, Nummer 3
|
||||||
|
|
||||||
[4]
|
[4]
|
||||||
Dr. Willi Brandt = Hof 1, Tisch 4, Nummer 1
|
Sergio Leone = Hof 1, Tisch 4, Nummer 1
|
||||||
Michael Schumacher = Hof 1, Tisch 4, Nummer 2
|
Walter Emmerlich = Hof 1, Tisch 4, Nummer 2
|
||||||
Harald Junke = Hof 1, Tisch 4, Nummer 3
|
Harald Junke = Hof 1, Tisch 4, Nummer 3
|
||||||
Ralf Schumacher = Hof 1, Tisch 4, Nummer 4
|
Dr. Willi Brandt = Hof 1, Tisch 4, Nummer 4
|
||||||
|
|
||||||
[5]
|
[5]
|
||||||
Heinz Bruegge = Hof 1, Tisch 5, Nummer 1
|
Heinz Bruegge = Hof 1, Tisch 5, Nummer 1
|
||||||
Heinz Ruehmann = Hof 1, Tisch 5, Nummer 2
|
Hubert K = Hof 1, Tisch 5, Nummer 2
|
||||||
Hubert K = Hof 1, Tisch 5, Nummer 3
|
Heinz Ruehmann = Hof 1, Tisch 5, Nummer 3
|
||||||
Marlene Dietrich = Hof 1, Tisch 5, Nummer 4
|
Marlene Dietrich = Hof 1, Tisch 5, Nummer 4
|
||||||
|
|
||||||
|
|||||||