mirror of
https://github.com/nelsbrock/NateMan.git
synced 2026-08-14 21:36:49 +02:00
Koopschulentabelle durch koop-Boolean ersetzt
This commit is contained in:
+2
-3
@@ -33,7 +33,7 @@ from werkzeug.utils import find_modules, import_string
|
||||
from . import util
|
||||
from .config_manager import config_file_exists, create_config_file, config
|
||||
from .config_manager import read_config_file
|
||||
from .models import Klausur, Klausurteilnahme, Koopschule, Lehrer, Schueler, Stufe, db
|
||||
from .models import Klausur, Klausurteilnahme, Lehrer, Schueler, Stufe, db
|
||||
|
||||
|
||||
def create_app() -> Flask:
|
||||
@@ -134,8 +134,7 @@ def configure_jinja(app: Flask):
|
||||
Stufe=Stufe,
|
||||
Schueler=Schueler,
|
||||
Lehrer=Lehrer,
|
||||
Klausur=Klausur,
|
||||
Koopschule=Koopschule
|
||||
Klausur=Klausur
|
||||
)
|
||||
app.jinja_env.trim_blocks = True
|
||||
app.jinja_env.lstrip_blocks = True
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ from typing import List
|
||||
|
||||
def iscoopLk(kurs: List):
|
||||
for k in kurs:
|
||||
if k.schueler.stammschule is not None:
|
||||
if k.schueler.koop:
|
||||
return True
|
||||
return False
|
||||
|
||||
|
||||
@@ -160,4 +160,4 @@ def _del_plan(stufe: Stufe):
|
||||
|
||||
def _del_koopschueler():
|
||||
"""Löscht alle Koopschüler"""
|
||||
Schueler.query.filter(Schueler.stammschule != None).delete()
|
||||
Schueler.query.filter(Schueler.koop).delete()
|
||||
|
||||
@@ -25,7 +25,7 @@ from flask import Blueprint, abort, current_app, flash, g, redirect, render_temp
|
||||
|
||||
from .auth import login_required, beratungslehrer_required
|
||||
from ..config_manager import config
|
||||
from ..models import Klausur, Klausurteilnahme, Koopschule, Lehrer, Schueler, db, \
|
||||
from ..models import Klausur, Klausurteilnahme, Lehrer, Schueler, db, \
|
||||
get_next_new_schueler_id, Stufe
|
||||
|
||||
bp = Blueprint("klausuren", __name__, url_prefix="/klausuren")
|
||||
@@ -270,15 +270,7 @@ def edit(klausur_id):
|
||||
is_new = True
|
||||
new_schueler_nachname = request.form["new-schueler-nachname"].strip()
|
||||
new_schueler_vorname = request.form["new-schueler-vorname"].strip()
|
||||
new_schueler_stammschule_kuerzel = request.form.get("new-schueler-stammschule", None)
|
||||
|
||||
stammschule = None
|
||||
if new_schueler_stammschule_kuerzel:
|
||||
stammschule = Koopschule.query.filter_by(kuerzel=new_schueler_stammschule_kuerzel).first()
|
||||
|
||||
if stammschule is None:
|
||||
abort(400)
|
||||
return
|
||||
new_schueler_koop = ("new-schueler-koop" in request.form)
|
||||
|
||||
if not new_schueler_nachname or not new_schueler_vorname:
|
||||
flash("Bitte geben Sie einen vollständigen Namen für den neuen Schüler an.", "error")
|
||||
@@ -286,7 +278,7 @@ def edit(klausur_id):
|
||||
|
||||
schueler = Schueler(id=get_next_new_schueler_id(), nachname=new_schueler_nachname,
|
||||
vorname=new_schueler_vorname, stufe=klausur.stufe,
|
||||
stammschule=stammschule)
|
||||
koop=new_schueler_koop)
|
||||
db.session.add(schueler)
|
||||
|
||||
else:
|
||||
|
||||
+1
-43
@@ -25,7 +25,7 @@ from flask.cli import with_appcontext
|
||||
from nateman.exporter import excelexport
|
||||
from nateman.importer import excelimport, KoopSchuelerImportError
|
||||
from . import emails, util, assigner
|
||||
from .models import Koopschule, Lehrer, Stufe, db, Session
|
||||
from .models import Lehrer, Stufe, db, Session
|
||||
from .config_manager import config
|
||||
|
||||
|
||||
@@ -121,46 +121,6 @@ def remove_stufe_command(name, yes):
|
||||
return 0
|
||||
|
||||
|
||||
@click.command("add-koopschule")
|
||||
@click.argument("kuerzel", type=click.STRING)
|
||||
@click.argument("name", type=click.STRING)
|
||||
@with_appcontext
|
||||
def add_koopschule_command(kuerzel, name):
|
||||
"""Fügt eine Koop-Schule zur Datenbank hinzu."""
|
||||
koop_schule = Koopschule.query.filter_by(name=name).first()
|
||||
|
||||
if koop_schule is not None:
|
||||
click.echo(f"Fehler: Eine Koop-Schule mit dem Kürzel {kuerzel} existiert bereits.", err=True)
|
||||
return 1
|
||||
|
||||
new_koop_schule = Koopschule(kuerzel=kuerzel, name=name)
|
||||
db.session.add(new_koop_schule)
|
||||
|
||||
db.session.commit()
|
||||
|
||||
click.echo("Die Koop-Schule wurde erfolgreich hinzugefügt.")
|
||||
return 0
|
||||
|
||||
|
||||
@click.command("remove-koopschule")
|
||||
@click.argument("kuerzel", type=click.STRING)
|
||||
@with_appcontext
|
||||
def remove_koopschule_command(kuerzel):
|
||||
"""Entfernt eine Koop-Schule und alle mit ihr verknüpften Daten von der Datenbank."""
|
||||
|
||||
koop_schule = Koopschule.query.filter_by(kuerzel=kuerzel).first()
|
||||
|
||||
if koop_schule is None:
|
||||
click.echo(f"Fehler: Eine Koop-Schule mit dem Kürzel {kuerzel} existiert nicht.", err=True)
|
||||
return 1
|
||||
|
||||
db.session.delete(koop_schule)
|
||||
db.session.commit()
|
||||
|
||||
click.echo("Die Koop-Schule wurde erfolgreich entfernt.")
|
||||
return 0
|
||||
|
||||
|
||||
@click.command("make-admin")
|
||||
@click.argument("kuerzel")
|
||||
@with_appcontext
|
||||
@@ -250,8 +210,6 @@ def init_commands():
|
||||
cli.add_command(take_admin_command)
|
||||
cli.add_command(add_stufe_command)
|
||||
cli.add_command(remove_stufe_command)
|
||||
cli.add_command(add_koopschule_command)
|
||||
cli.add_command(remove_koopschule_command)
|
||||
cli.add_command(send_reminder_mails_command)
|
||||
cli.add_command(apply_email_format_command)
|
||||
cli.add_command(cleanup_command)
|
||||
|
||||
+6
-13
@@ -29,7 +29,7 @@ from xml.dom import minidom
|
||||
|
||||
from . import util
|
||||
from .config_manager import config
|
||||
from .models import Klausur, Klausurteilnahme, Lehrer, Schueler, Stufe, db, get_next_new_schueler_id, Koopschule
|
||||
from .models import Klausur, Klausurteilnahme, Lehrer, Schueler, Stufe, db, get_next_new_schueler_id
|
||||
|
||||
|
||||
class KlausurplanImportError(Exception):
|
||||
@@ -198,18 +198,11 @@ def excelimport(filepath: str):
|
||||
klausuren.pop(i)
|
||||
if len(klausuren) > 0:
|
||||
schueler_entity = Schueler(id=get_next_new_schueler_id(), nachname=s[0], vorname=s[1],
|
||||
stufe=klausuren[0].stufe)
|
||||
schule_entity = Koopschule.query.filter_by(kuerzel=s[4]).first()
|
||||
if schule_entity is not None:
|
||||
schueler_entity.stammschule = schule_entity
|
||||
for klausur in klausuren:
|
||||
teilnahme_entity = Klausurteilnahme(klausur=klausur, schueler=schueler_entity)
|
||||
db.session.add(schueler_entity)
|
||||
db.session.add(teilnahme_entity)
|
||||
else:
|
||||
raise KoopSchuelerImportError("Für den Schüler " + s[0] + ", " + s[1]
|
||||
+ "konnte keine Koopschule mit dem Kürzel " + s[4]
|
||||
+ " gefunden werden.")
|
||||
stufe=klausuren[0].stufe, koop=True)
|
||||
for klausur in klausuren:
|
||||
teilnahme_entity = Klausurteilnahme(klausur=klausur, schueler=schueler_entity)
|
||||
db.session.add(schueler_entity)
|
||||
db.session.add(teilnahme_entity)
|
||||
else:
|
||||
exceptions.append(s)
|
||||
|
||||
|
||||
+1
-8
@@ -58,11 +58,9 @@ class Schueler(db.Model):
|
||||
vorname = db.Column(db.String(collation="NOCASE"), nullable=False)
|
||||
stufe_name = db.Column(db.String(), db.ForeignKey("stufe.name", onupdate="CASCADE", ondelete="CASCADE"),
|
||||
nullable=False)
|
||||
stammschule_name = db.Column(db.String(),
|
||||
db.ForeignKey("koopschule.kuerzel", onupdate="CASCADE", ondelete="CASCADE"))
|
||||
koop = db.Column(db.Boolean, default=False, nullable=False)
|
||||
|
||||
stufe = db.relationship("Stufe", lazy="select")
|
||||
stammschule = db.relationship("Koopschule", lazy="select")
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.nachname}, {self.vorname} ({self.stufe.name}, ID:{self.id})"
|
||||
@@ -189,11 +187,6 @@ class Klausur(db.Model):
|
||||
return self.date <= datetime.now().date()
|
||||
|
||||
|
||||
class Koopschule(db.Model):
|
||||
kuerzel = db.Column(db.String(), primary_key=True)
|
||||
name = db.Column(db.String())
|
||||
|
||||
|
||||
class Session(db.Model):
|
||||
key = db.Column(db.String(), primary_key=True)
|
||||
expiry = db.Column(db.DateTime, nullable=False)
|
||||
|
||||
+298
-338
@@ -1,57 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.2" width="297mm" height="175mm" viewBox="0 0 29700 17500" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<svg version="1.2" width="269mm" height="142mm" viewBox="0 0 26900 14200" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
|
||||
<defs class="ClipPathGroup">
|
||||
<clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
|
||||
<rect x="0" y="0" width="29700" height="17500"/>
|
||||
<rect x="0" y="0" width="26900" height="14200"/>
|
||||
</clipPath>
|
||||
<clipPath id="presentation_clip_path_shrink" clipPathUnits="userSpaceOnUse">
|
||||
<rect x="29" y="17" width="29641" height="17465"/>
|
||||
<rect x="26" y="14" width="26847" height="14172"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<defs>
|
||||
<font id="EmbeddedFont_1" horiz-adv-x="2048">
|
||||
<font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
|
||||
<missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
|
||||
<glyph unicode="ö" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 490,-20 422,-9 363,14 304,37 254,71 213,118 172,165 140,223 119,294 97,364 86,447 86,542 86,915 248,1102 571,1102 655,1102 728,1090 789,1067 850,1044 900,1009 939,962 978,915 1006,857 1025,787 1044,717 1053,635 1053,542 Z M 864,542 C 864,626 858,695 845,750 832,805 813,848 788,881 763,914 732,937 696,950 660,963 619,969 574,969 528,969 487,962 450,949 413,935 381,912 355,879 329,846 309,802 296,747 282,692 275,624 275,542 275,458 282,389 297,334 312,279 332,235 358,202 383,169 414,146 449,133 484,120 522,113 563,113 609,113 651,120 688,133 725,146 757,168 783,201 809,234 829,278 843,333 857,388 864,458 864,542 Z M 689,1219 L 689,1403 852,1403 852,1219 689,1219 Z M 295,1219 L 295,1403 460,1403 460,1219 295,1219 Z"/>
|
||||
<glyph unicode="ä" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,373 101,432 128,478 155,523 190,559 234,585 277,611 327,629 383,639 439,649 496,655 554,656 L 797,660 797,719 C 797,764 792,802 783,833 774,864 759,890 740,909 721,928 697,943 668,952 639,961 604,965 565,965 530,965 499,963 471,958 443,953 419,944 398,931 377,918 361,900 348,878 335,855 327,827 323,793 L 135,810 C 142,853 154,892 173,928 192,963 218,994 253,1020 287,1046 330,1066 382,1081 433,1095 496,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1090,111 1100,112 1110,113 1120,114 1130,116 1139,118 L 1139,6 C 1116,1 1094,-3 1072,-6 1049,-9 1025,-10 1000,-10 966,-10 937,-5 913,4 888,13 868,26 853,45 838,63 826,86 818,113 810,140 805,171 803,207 L 797,207 C 778,172 757,141 734,113 711,85 684,61 653,42 622,22 588,7 549,-4 510,-15 465,-20 414,-20 Z M 455,115 C 512,115 563,126 606,147 649,168 684,194 713,227 741,260 762,295 776,334 790,373 797,410 797,445 L 797,534 600,530 C 556,529 514,526 475,521 435,515 400,504 370,487 340,470 316,447 299,417 281,387 272,348 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z M 674,1219 L 674,1403 837,1403 837,1219 674,1219 Z M 280,1219 L 280,1403 445,1403 445,1219 280,1219 Z"/>
|
||||
<glyph unicode="z" horiz-adv-x="928" d="M 49,0 L 49,137 710,943 89,943 89,1082 913,1082 913,945 251,139 950,139 950,0 49,0 Z"/>
|
||||
<glyph unicode="y" horiz-adv-x="1033" d="M 604,0 C 579,-65 553,-124 527,-177 500,-229 471,-273 438,-311 405,-347 369,-376 329,-396 289,-415 243,-425 191,-425 168,-425 147,-424 128,-423 109,-422 88,-419 67,-414 L 67,-279 C 80,-282 94,-284 110,-284 126,-284 140,-284 151,-284 204,-284 253,-264 298,-225 343,-186 383,-124 417,-38 L 434,5 5,1082 197,1082 425,484 C 432,466 440,442 451,412 461,382 471,352 482,322 492,292 501,265 509,241 517,217 522,202 523,196 525,203 530,218 538,240 545,261 554,285 564,312 573,339 583,366 593,393 603,420 611,444 618,464 L 830,1082 1020,1082 604,0 Z"/>
|
||||
<glyph unicode="ö" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z M 689,1219 L 689,1403 852,1403 852,1219 689,1219 Z M 295,1219 L 295,1403 460,1403 460,1219 295,1219 Z"/>
|
||||
<glyph unicode="ä" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z M 674,1219 L 674,1403 837,1403 837,1219 674,1219 Z M 280,1219 L 280,1403 445,1403 445,1219 280,1219 Z"/>
|
||||
<glyph unicode="z" horiz-adv-x="848" d="M 83,0 L 83,137 688,943 117,943 117,1082 901,1082 901,945 295,139 922,139 922,0 83,0 Z"/>
|
||||
<glyph unicode="y" horiz-adv-x="1033" d="M 191,-425 C 142,-425 100,-421 67,-414 L 67,-279 C 92,-283 120,-285 151,-285 263,-285 352,-203 417,-38 L 434,5 5,1082 197,1082 425,484 C 428,475 432,464 437,451 442,438 457,394 482,320 507,246 521,205 523,196 L 593,393 830,1082 1020,1082 604,0 C 559,-115 518,-201 479,-258 440,-314 398,-356 351,-384 304,-411 250,-425 191,-425 Z"/>
|
||||
<glyph unicode="x" horiz-adv-x="1006" d="M 801,0 L 510,444 217,0 23,0 408,556 41,1082 240,1082 510,661 778,1082 979,1082 612,558 1002,0 801,0 Z"/>
|
||||
<glyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 792,698 C 787,716 781,738 776,765 770,792 764,818 759,843 752,872 746,903 740,934 734,904 728,874 721,845 716,820 710,793 704,766 697,739 691,715 686,694 L 508,0 300,0 -3,1082 175,1082 358,347 C 363,332 367,313 372,291 377,268 381,246 386,225 391,200 396,175 401,149 406,174 412,199 418,223 423,244 429,265 434,286 439,307 444,325 448,339 L 644,1082 837,1082 1026,339 C 1031,322 1036,302 1041,280 1046,258 1051,237 1056,218 1061,195 1067,172 1072,149 1077,174 1083,199 1088,223 1093,244 1098,265 1103,288 1108,310 1112,330 1117,347 L 1308,1082 1484,1082 1174,0 Z"/>
|
||||
<glyph unicode="v" horiz-adv-x="1033" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 442,363 447,346 454,325 460,304 466,282 473,259 480,236 486,215 492,194 497,173 502,155 506,141 510,155 515,173 522,194 528,215 534,236 541,258 548,280 555,302 562,323 569,344 575,361 580,376 L 826,1082 1017,1082 613,0 Z"/>
|
||||
<glyph unicode="u" horiz-adv-x="874" d="M 314,1082 L 314,396 C 314,343 318,299 326,264 333,229 346,200 363,179 380,157 403,142 432,133 460,124 495,119 537,119 580,119 618,127 653,142 687,157 716,178 741,207 765,235 784,270 797,312 810,353 817,401 817,455 L 817,1082 997,1082 997,231 C 997,208 997,185 998,160 998,135 998,111 999,89 1000,66 1000,47 1001,31 1002,15 1002,5 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 827,116 826,136 825,155 825,172 825,185 L 822,185 C 805,154 786,125 765,100 744,75 720,53 693,36 666,18 634,4 599,-6 564,-15 523,-20 476,-20 416,-20 364,-13 321,2 278,17 242,39 214,70 186,101 166,140 153,188 140,236 133,294 133,361 L 133,1082 314,1082 Z"/>
|
||||
<glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 527,1 499,-5 471,-10 442,-14 409,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 467,127 484,128 501,131 517,134 535,137 554,141 L 554,8 Z"/>
|
||||
<glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,248 940,203 921,164 901,124 872,91 835,64 798,37 752,16 698,2 643,-13 581,-20 511,-20 448,-20 392,-15 342,-6 291,4 247,20 209,41 171,62 139,91 114,126 88,161 69,203 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 550,117 585,120 618,125 650,130 678,140 701,153 724,166 743,183 756,205 769,226 775,253 775,285 775,318 767,345 752,366 737,387 715,404 688,418 661,432 628,444 589,455 550,465 507,476 460,489 417,500 374,513 331,527 288,541 250,560 216,583 181,606 153,634 132,668 111,702 100,745 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 763,842 752,866 736,885 720,904 701,919 678,931 655,942 630,951 602,956 573,961 544,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,785 282,761 297,742 311,723 331,707 357,694 382,681 413,669 449,660 485,650 525,640 568,629 597,622 626,614 656,606 686,597 715,587 744,576 772,564 799,550 824,535 849,519 870,500 889,478 908,456 923,430 934,401 945,372 950,338 950,299 Z"/>
|
||||
<glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,853 142,876 142,900 141,923 141,946 140,968 139,990 139,1011 138,1030 137,1049 137,1067 136,1082 L 306,1082 C 307,1067 308,1049 309,1030 310,1010 311,990 312,969 313,948 313,929 314,910 314,891 314,874 314,861 L 318,861 C 331,902 344,938 359,969 373,999 390,1024 409,1044 428,1063 451,1078 478,1088 505,1097 537,1102 575,1102 590,1102 604,1101 617,1099 630,1096 641,1094 648,1092 L 648,927 C 636,930 622,933 606,935 590,936 572,937 552,937 511,937 476,928 447,909 418,890 394,865 376,832 357,799 344,759 335,714 326,668 322,618 322,564 L 322,0 142,0 Z"/>
|
||||
<glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,464 1046,388 1033,319 1020,250 998,190 967,140 936,90 895,51 844,23 793,-6 730,-20 655,-20 578,-20 510,-5 452,24 394,53 350,101 319,168 L 314,168 C 315,167 315,161 316,150 316,139 316,126 317,110 317,94 317,76 318,57 318,37 318,17 318,-2 L 318,-425 138,-425 138,861 C 138,887 138,912 138,936 137,960 137,982 136,1002 135,1021 135,1038 134,1052 133,1066 133,1076 132,1082 L 306,1082 C 307,1080 308,1073 309,1061 310,1049 311,1035 312,1018 313,1001 314,982 315,963 316,944 316,925 316,908 L 320,908 C 337,943 356,972 377,997 398,1021 423,1041 450,1057 477,1072 508,1084 542,1091 575,1098 613,1101 655,1101 730,1101 793,1088 844,1061 895,1034 936,997 967,949 998,900 1020,842 1033,774 1046,705 1053,629 1053,546 Z M 864,542 C 864,609 860,668 852,720 844,772 830,816 811,852 791,888 765,915 732,934 699,953 658,962 609,962 569,962 531,956 496,945 461,934 430,912 404,880 377,848 356,804 341,748 326,691 318,618 318,528 318,451 324,387 337,334 350,281 368,238 393,205 417,172 447,149 483,135 519,120 560,113 607,113 657,113 699,123 732,142 765,161 791,189 811,226 830,263 844,308 852,361 860,414 864,474 864,542 Z"/>
|
||||
<glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 490,-20 422,-9 363,14 304,37 254,71 213,118 172,165 140,223 119,294 97,364 86,447 86,542 86,915 248,1102 571,1102 655,1102 728,1090 789,1067 850,1044 900,1009 939,962 978,915 1006,857 1025,787 1044,717 1053,635 1053,542 Z M 864,542 C 864,626 858,695 845,750 832,805 813,848 788,881 763,914 732,937 696,950 660,963 619,969 574,969 528,969 487,962 450,949 413,935 381,912 355,879 329,846 309,802 296,747 282,692 275,624 275,542 275,458 282,389 297,334 312,279 332,235 358,202 383,169 414,146 449,133 484,120 522,113 563,113 609,113 651,120 688,133 725,146 757,168 783,201 809,234 829,278 843,333 857,388 864,458 864,542 Z"/>
|
||||
<glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,739 821,783 814,818 806,853 793,882 776,904 759,925 736,941 708,950 679,959 644,963 602,963 559,963 521,956 487,941 452,926 423,904 399,876 374,847 355,812 342,771 329,729 322,681 322,627 L 322,0 142,0 142,851 C 142,874 142,898 142,923 141,948 141,971 140,994 139,1016 139,1035 138,1051 137,1067 137,1077 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 312,966 313,947 314,927 314,910 314,897 L 317,897 C 334,928 353,957 374,982 395,1007 419,1029 446,1047 473,1064 505,1078 540,1088 575,1097 616,1102 663,1102 723,1102 775,1095 818,1080 861,1065 897,1043 925,1012 953,981 974,942 987,894 1000,845 1006,788 1006,721 L 1006,0 825,0 Z"/>
|
||||
<glyph unicode="m" horiz-adv-x="1457" d="M 768,0 L 768,686 C 768,739 765,783 758,818 751,853 740,882 725,904 709,925 688,941 663,950 638,959 607,963 570,963 532,963 498,956 467,941 436,926 410,904 389,876 367,847 350,812 339,771 327,729 321,681 321,627 L 321,0 142,0 142,851 C 142,874 142,898 142,923 141,948 141,971 140,994 139,1016 139,1035 138,1051 137,1067 137,1077 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 312,966 313,947 314,927 314,910 314,897 L 317,897 C 333,928 350,957 369,982 388,1007 410,1029 435,1047 460,1064 488,1078 521,1088 553,1097 590,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 946,928 964,957 984,982 1004,1007 1027,1029 1054,1047 1081,1064 1111,1078 1144,1088 1177,1097 1215,1102 1258,1102 1313,1102 1360,1095 1400,1080 1439,1065 1472,1043 1497,1012 1522,981 1541,942 1553,894 1565,845 1571,788 1571,721 L 1571,0 1393,0 1393,686 C 1393,739 1390,783 1383,818 1376,853 1365,882 1350,904 1334,925 1313,941 1288,950 1263,959 1232,963 1195,963 1157,963 1123,956 1092,942 1061,927 1035,906 1014,878 992,850 975,815 964,773 952,731 946,682 946,627 L 946,0 768,0 Z"/>
|
||||
<glyph unicode="w" horiz-adv-x="1509" d="M 1174,0 L 965,0 776,765 740,934 C 734,904 725,861 712,805 699,748 631,480 508,0 L 300,0 -3,1082 175,1082 358,347 C 363,331 377,265 401,149 L 418,223 644,1082 837,1082 1026,339 1072,149 1103,288 1308,1082 1484,1082 1174,0 Z"/>
|
||||
<glyph unicode="v" horiz-adv-x="1033" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 446,351 469,272 506,141 L 541,258 580,376 826,1082 1017,1082 613,0 Z"/>
|
||||
<glyph unicode="u" horiz-adv-x="874" d="M 314,1082 L 314,396 C 314,325 321,269 335,230 349,191 371,162 402,145 433,128 478,119 537,119 624,119 692,149 742,208 792,267 817,350 817,455 L 817,1082 997,1082 997,231 C 997,105 999,28 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 826,132 825,185 L 822,185 C 781,110 733,58 679,27 624,-4 557,-20 476,-20 357,-20 271,10 216,69 161,128 133,225 133,361 L 133,1082 314,1082 Z"/>
|
||||
<glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 495,-8 434,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 474,127 509,132 554,141 L 554,8 Z"/>
|
||||
<glyph unicode="s" horiz-adv-x="901" d="M 950,299 C 950,197 912,118 835,63 758,8 650,-20 511,-20 376,-20 273,2 200,47 127,91 79,160 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 602,117 669,131 712,159 754,187 775,229 775,285 775,328 760,362 731,389 702,416 654,438 589,455 L 460,489 C 357,516 283,542 240,568 196,593 162,624 137,661 112,698 100,743 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 759,862 732,899 689,925 645,950 586,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,783 283,758 299,738 315,718 339,701 370,687 401,673 467,654 568,629 663,605 732,583 774,563 816,542 849,520 874,495 898,470 917,442 930,410 943,377 950,340 950,299 Z"/>
|
||||
<glyph unicode="r" horiz-adv-x="530" d="M 142,0 L 142,830 C 142,906 140,990 136,1082 L 306,1082 C 311,959 314,886 314,861 L 318,861 C 347,954 380,1017 417,1051 454,1085 507,1102 575,1102 599,1102 623,1099 648,1092 L 648,927 C 624,934 592,937 552,937 477,937 420,905 381,841 342,776 322,684 322,564 L 322,0 142,0 Z"/>
|
||||
<glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 488,-20 376,43 319,168 L 314,168 C 317,163 318,106 318,-2 L 318,-425 138,-425 138,861 C 138,972 136,1046 132,1082 L 306,1082 C 307,1079 308,1070 309,1054 310,1037 312,1012 314,978 315,944 316,921 316,908 L 320,908 C 352,975 394,1024 447,1055 500,1086 569,1101 655,1101 788,1101 888,1056 954,967 1020,878 1053,737 1053,546 Z M 864,542 C 864,693 844,800 803,865 762,930 698,962 609,962 538,962 482,947 442,917 401,887 371,840 350,777 329,713 318,630 318,528 318,386 341,281 386,214 431,147 505,113 607,113 696,113 762,146 803,212 844,277 864,387 864,542 Z"/>
|
||||
<glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 407,-20 288,28 207,125 126,221 86,360 86,542 86,915 248,1102 571,1102 736,1102 858,1057 936,966 1014,875 1053,733 1053,542 Z M 864,542 C 864,691 842,800 798,868 753,935 679,969 574,969 469,969 393,935 346,866 299,797 275,689 275,542 275,399 298,292 345,221 391,149 464,113 563,113 671,113 748,148 795,217 841,286 864,395 864,542 Z"/>
|
||||
<glyph unicode="n" horiz-adv-x="874" d="M 825,0 L 825,686 C 825,757 818,813 804,852 790,891 768,920 737,937 706,954 661,963 602,963 515,963 447,933 397,874 347,815 322,732 322,627 L 322,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 358,972 406,1025 461,1056 515,1087 582,1102 663,1102 782,1102 869,1073 924,1014 979,955 1006,857 1006,721 L 1006,0 825,0 Z"/>
|
||||
<glyph unicode="m" horiz-adv-x="1457" d="M 768,0 L 768,686 C 768,791 754,863 725,903 696,943 645,963 570,963 493,963 433,934 388,875 343,816 321,734 321,627 L 321,0 142,0 142,851 C 142,977 140,1054 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 313,950 314,897 L 317,897 C 356,974 400,1027 450,1057 500,1087 561,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 967,970 1013,1022 1066,1054 1119,1086 1183,1102 1258,1102 1367,1102 1447,1072 1497,1013 1546,954 1571,856 1571,721 L 1571,0 1393,0 1393,686 C 1393,791 1379,863 1350,903 1321,943 1270,963 1195,963 1116,963 1055,934 1012,876 968,817 946,734 946,627 L 946,0 768,0 Z"/>
|
||||
<glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
|
||||
<glyph unicode="k" horiz-adv-x="901" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
|
||||
<glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
|
||||
<glyph unicode="h" horiz-adv-x="874" d="M 317,897 C 337,934 359,965 382,991 405,1016 431,1037 459,1054 487,1071 518,1083 551,1091 584,1098 622,1102 663,1102 732,1102 789,1093 834,1074 878,1055 913,1029 939,996 964,962 982,922 992,875 1001,828 1006,777 1006,721 L 1006,0 825,0 825,686 C 825,732 822,772 817,807 811,842 800,871 784,894 768,917 745,934 716,946 687,957 649,963 602,963 559,963 521,955 487,940 452,925 423,903 399,875 374,847 355,813 342,773 329,733 322,688 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1076 322,1054 321,1032 320,1010 320,990 319,971 318,952 317,937 316,924 315,911 315,902 314,897 L 317,897 Z"/>
|
||||
<glyph unicode="g" horiz-adv-x="927" d="M 548,-425 C 486,-425 431,-419 383,-406 335,-393 294,-375 260,-352 226,-328 198,-300 177,-267 156,-234 140,-198 131,-158 L 312,-132 C 324,-182 351,-220 392,-248 433,-274 486,-288 553,-288 594,-288 631,-282 664,-271 697,-260 726,-241 749,-217 772,-191 790,-159 803,-119 816,-79 822,-30 822,27 L 822,201 820,201 C 807,174 790,148 771,123 751,98 727,75 699,56 670,37 637,21 600,10 563,-2 520,-8 472,-8 403,-8 345,4 296,27 247,50 207,84 176,130 145,176 122,233 108,302 93,370 86,449 86,539 86,626 93,704 108,773 122,842 145,901 178,950 210,998 252,1035 304,1061 355,1086 418,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,914 825,933 826,953 827,974 828,994 829,1012 830,1031 831,1046 832,1060 833,1073 835,1080 836,1080 L 1007,1080 C 1006,1074 1006,1064 1005,1050 1004,1035 1004,1018 1003,998 1002,978 1002,956 1002,932 1001,907 1001,882 1001,856 L 1001,30 C 1001,-121 964,-234 890,-311 815,-387 701,-425 548,-425 Z M 822,541 C 822,616 814,681 798,735 781,788 760,832 733,866 706,900 676,925 642,941 607,957 572,965 536,965 490,965 451,957 418,941 385,925 357,900 336,866 314,831 298,787 288,734 277,680 272,616 272,541 272,463 277,398 288,345 298,292 314,249 335,216 356,183 383,160 416,146 449,132 488,125 533,125 569,125 604,133 639,148 673,163 704,188 731,221 758,254 780,297 797,350 814,403 822,466 822,541 Z"/>
|
||||
<glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1243 185,1280 192,1314 199,1347 213,1377 233,1402 252,1427 279,1446 313,1461 347,1475 391,1482 445,1482 466,1482 489,1481 512,1479 535,1477 555,1474 572,1470 L 572,1333 C 561,1335 548,1337 533,1339 518,1340 504,1341 492,1341 465,1341 444,1337 427,1330 410,1323 396,1312 387,1299 377,1285 370,1268 367,1248 363,1228 361,1205 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
|
||||
<glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,446 282,394 294,347 305,299 323,258 348,224 372,189 403,163 441,144 479,125 525,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 1008,206 992,176 972,146 951,115 924,88 890,64 856,39 814,19 763,4 712,-12 650,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,649 100,735 125,806 150,876 185,933 229,977 273,1021 324,1053 383,1073 442,1092 504,1102 571,1102 662,1102 738,1087 799,1058 860,1029 909,988 946,937 983,885 1009,824 1025,754 1040,684 1048,608 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 538,969 507,964 474,955 441,945 410,928 382,903 354,878 330,845 311,803 292,760 281,706 278,641 L 862,641 Z"/>
|
||||
<glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 C 823,921 823,931 823,946 822,960 822,975 822,991 821,1006 821,1021 821,1035 821,1049 821,1059 821,1065 L 821,1484 1001,1484 1001,223 C 1001,197 1001,172 1002,148 1002,124 1002,102 1003,82 1004,62 1004,45 1005,31 1006,16 1006,6 1007,0 L 835,0 C 834,7 833,16 832,29 831,41 830,55 829,71 828,87 827,104 826,122 825,139 825,157 825,174 L 821,174 Z M 275,542 C 275,467 280,403 289,350 298,297 313,253 334,219 355,184 381,159 413,143 445,127 484,119 530,119 577,119 619,127 656,142 692,157 722,182 747,217 771,251 789,296 802,351 815,406 821,474 821,554 821,631 815,696 802,749 789,802 771,844 746,877 721,910 691,933 656,948 620,962 579,969 532,969 488,969 450,961 418,946 386,931 359,906 338,872 317,838 301,794 291,740 280,685 275,619 275,542 Z"/>
|
||||
<glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,484 280,427 289,375 298,323 313,278 334,241 355,203 384,174 419,153 454,132 497,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 964,277 951,234 931,193 911,152 884,115 850,84 815,53 773,28 724,9 675,-10 618,-20 553,-20 468,-20 396,-6 337,23 278,52 230,91 193,142 156,192 129,251 112,320 95,388 87,462 87,542 87,615 93,679 105,735 117,790 134,839 156,881 177,922 203,957 232,986 261,1014 293,1037 328,1054 362,1071 398,1083 436,1091 474,1098 512,1102 551,1102 612,1102 666,1094 713,1077 760,1060 801,1038 836,1009 870,980 898,945 919,906 940,867 955,824 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 495,961 452,953 418,936 383,919 355,893 334,859 313,824 298,781 289,729 280,677 275,616 275,546 Z"/>
|
||||
<glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,151 316,133 315,114 314,95 313,78 312,62 311,46 310,32 309,21 308,10 307,3 306,0 L 132,0 C 133,6 133,16 134,31 135,45 135,62 136,82 137,102 137,124 138,148 138,172 138,197 138,223 L 138,1484 318,1484 318,1061 C 318,1041 318,1022 318,1004 317,985 317,969 316,955 315,938 315,923 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,615 859,679 850,732 841,785 826,829 805,864 784,898 758,923 726,939 694,955 655,963 609,963 562,963 520,955 484,940 447,925 417,900 393,866 368,832 350,787 337,732 324,677 318,609 318,529 318,452 324,387 337,334 350,281 368,239 393,206 417,173 447,149 483,135 519,120 560,113 607,113 651,113 689,121 721,136 753,151 780,176 801,210 822,244 838,288 849,343 859,397 864,463 864,540 Z"/>
|
||||
<glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,373 101,432 128,478 155,523 190,559 234,585 277,611 327,629 383,639 439,649 496,655 554,656 L 797,660 797,719 C 797,764 792,802 783,833 774,864 759,890 740,909 721,928 697,943 668,952 639,961 604,965 565,965 530,965 499,963 471,958 443,953 419,944 398,931 377,918 361,900 348,878 335,855 327,827 323,793 L 135,810 C 142,853 154,892 173,928 192,963 218,994 253,1020 287,1046 330,1066 382,1081 433,1095 496,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1090,111 1100,112 1110,113 1120,114 1130,116 1139,118 L 1139,6 C 1116,1 1094,-3 1072,-6 1049,-9 1025,-10 1000,-10 966,-10 937,-5 913,4 888,13 868,26 853,45 838,63 826,86 818,113 810,140 805,171 803,207 L 797,207 C 778,172 757,141 734,113 711,85 684,61 653,42 622,22 588,7 549,-4 510,-15 465,-20 414,-20 Z M 455,115 C 512,115 563,126 606,147 649,168 684,194 713,227 741,260 762,295 776,334 790,373 797,410 797,445 L 797,534 600,530 C 556,529 514,526 475,521 435,515 400,504 370,487 340,470 316,447 299,417 281,387 272,348 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
|
||||
<glyph unicode="h" horiz-adv-x="874" d="M 317,897 C 356,968 402,1020 457,1053 511,1086 580,1102 663,1102 780,1102 867,1073 923,1015 978,956 1006,858 1006,721 L 1006,0 825,0 825,686 C 825,762 818,819 804,856 790,893 767,920 735,937 703,954 659,963 602,963 517,963 450,934 399,875 348,816 322,737 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1057 321,1015 319,972 316,929 315,904 314,897 L 317,897 Z"/>
|
||||
<glyph unicode="g" horiz-adv-x="927" d="M 548,-425 C 430,-425 336,-402 266,-356 196,-309 151,-243 131,-158 L 312,-132 C 324,-182 351,-220 392,-248 433,-274 486,-288 553,-288 732,-288 822,-183 822,27 L 822,201 820,201 C 786,132 739,80 680,45 621,10 551,-8 472,-8 339,-8 242,36 180,124 117,212 86,350 86,539 86,730 120,872 187,963 254,1054 355,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,917 825,952 828,1001 831,1050 833,1077 836,1082 L 1007,1082 C 1003,1046 1001,971 1001,858 L 1001,31 C 1001,-273 850,-425 548,-425 Z M 822,541 C 822,629 810,705 786,769 762,832 728,881 685,915 641,948 591,965 536,965 444,965 377,932 335,865 293,798 272,690 272,541 272,393 292,287 331,222 370,157 438,125 533,125 590,125 640,142 684,175 728,208 762,256 786,319 810,381 822,455 822,541 Z"/>
|
||||
<glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1303 203,1374 246,1417 289,1460 356,1482 445,1482 495,1482 537,1478 572,1470 L 572,1333 C 542,1338 515,1341 492,1341 446,1341 413,1329 392,1306 371,1283 361,1240 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
|
||||
<glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,379 302,283 353,216 404,149 479,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 954,65 807,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,727 129,864 213,959 296,1054 416,1102 571,1102 889,1102 1048,910 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 481,969 412,940 361,882 310,823 282,743 278,641 L 862,641 Z"/>
|
||||
<glyph unicode="d" horiz-adv-x="927" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 821,1035 821,1484 1001,1484 1001,223 C 1001,110 1003,36 1007,0 L 835,0 C 833,11 831,35 829,74 826,113 825,146 825,174 L 821,174 Z M 275,542 C 275,391 295,282 335,217 375,152 440,119 530,119 632,119 706,154 752,225 798,296 821,405 821,554 821,697 798,802 752,869 706,936 633,969 532,969 441,969 376,936 336,869 295,802 275,693 275,542 Z"/>
|
||||
<glyph unicode="c" horiz-adv-x="901" d="M 275,546 C 275,402 298,295 343,226 388,157 457,122 548,122 612,122 666,139 709,174 752,209 778,262 788,334 L 970,322 C 956,218 912,135 837,73 762,11 668,-20 553,-20 402,-20 286,28 207,124 127,219 87,359 87,542 87,724 127,863 207,959 287,1054 402,1102 551,1102 662,1102 754,1073 827,1016 900,959 945,880 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 451,961 382,929 339,866 296,803 275,696 275,546 Z"/>
|
||||
<glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,147 315,116 312,74 309,31 307,7 306,0 L 132,0 C 136,36 138,110 138,223 L 138,1484 318,1484 318,1061 C 318,1018 317,967 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,691 844,800 804,865 764,930 699,963 609,963 508,963 434,928 388,859 341,790 318,680 318,529 318,387 341,282 386,215 431,147 505,113 607,113 698,113 763,147 804,214 844,281 864,389 864,540 Z"/>
|
||||
<glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,123 87,202 87,302 87,414 124,500 198,560 271,620 390,652 554,656 L 797,660 797,719 C 797,807 778,870 741,908 704,946 645,965 565,965 484,965 426,951 389,924 352,897 330,853 323,793 L 135,810 C 166,1005 310,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1097,111 1117,113 1139,118 L 1139,6 C 1094,-5 1047,-10 1000,-10 933,-10 885,8 855,43 824,78 807,132 803,207 L 797,207 C 751,124 698,66 637,32 576,-3 501,-20 414,-20 Z M 455,115 C 521,115 580,130 631,160 682,190 723,231 753,284 782,336 797,390 797,445 L 797,534 600,530 C 515,529 451,520 408,504 364,488 330,463 307,430 284,397 272,353 272,299 272,240 288,195 320,163 351,131 396,115 455,115 Z"/>
|
||||
<glyph unicode="_" horiz-adv-x="1218" d="M -31,-407 L -31,-277 1162,-277 1162,-407 -31,-407 Z"/>
|
||||
<glyph unicode="T" horiz-adv-x="1192" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
|
||||
<glyph unicode="S" horiz-adv-x="1192" d="M 1272,389 C 1272,330 1261,275 1238,225 1215,175 1179,132 1131,96 1083,59 1023,31 950,11 877,-10 790,-20 690,-20 515,-20 378,11 280,72 182,133 120,222 93,338 L 278,375 C 287,338 302,305 321,275 340,245 367,219 400,198 433,176 473,159 522,147 571,135 629,129 697,129 754,129 806,134 853,144 900,153 941,168 975,188 1009,208 1036,234 1055,266 1074,297 1083,335 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 613,659 573,668 534,679 494,689 456,701 420,716 383,730 349,747 317,766 285,785 257,809 234,836 211,863 192,894 179,930 166,965 159,1006 159,1053 159,1120 173,1177 200,1225 227,1272 264,1311 312,1342 360,1373 417,1395 482,1409 547,1423 618,1430 694,1430 781,1430 856,1423 918,1410 980,1396 1032,1375 1075,1348 1118,1321 1152,1287 1178,1247 1203,1206 1224,1159 1239,1106 L 1051,1073 C 1042,1107 1028,1137 1011,1164 993,1191 970,1213 941,1231 912,1249 878,1263 837,1272 796,1281 747,1286 692,1286 627,1286 572,1280 528,1269 483,1257 448,1241 421,1221 394,1201 374,1178 363,1151 351,1124 345,1094 345,1063 345,1021 356,987 377,960 398,933 426,910 462,892 498,874 540,859 587,847 634,835 685,823 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
|
||||
<glyph unicode="S" horiz-adv-x="1192" d="M 1272,389 C 1272,259 1221,158 1120,87 1018,16 875,-20 690,-20 347,-20 148,99 93,338 L 278,375 C 299,290 345,228 414,189 483,149 578,129 697,129 820,129 916,150 983,193 1050,235 1083,297 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 541,675 456,699 399,724 341,749 295,776 262,807 229,837 203,872 186,913 168,954 159,1000 159,1053 159,1174 205,1267 298,1332 390,1397 522,1430 694,1430 854,1430 976,1406 1061,1357 1146,1308 1205,1224 1239,1106 L 1051,1073 C 1030,1148 991,1202 933,1236 875,1269 795,1286 692,1286 579,1286 493,1267 434,1230 375,1193 345,1137 345,1063 345,1020 357,984 380,956 403,927 436,903 479,884 522,864 609,840 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
|
||||
<glyph unicode="L" horiz-adv-x="927" d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"/>
|
||||
<glyph unicode="K" horiz-adv-x="1191" d="M 1106,0 L 543,680 359,540 359,0 168,0 168,1409 359,1409 359,703 1038,1409 1263,1409 663,797 1343,0 1106,0 Z"/>
|
||||
<glyph unicode="1" horiz-adv-x="927" d="M 156,0 L 156,153 515,153 515,1237 197,1010 197,1180 530,1409 696,1409 696,153 1039,153 1039,0 156,0 Z"/>
|
||||
<glyph unicode="." horiz-adv-x="213" d="M 187,0 L 187,219 382,219 382,0 187,0 Z"/>
|
||||
<glyph unicode="," horiz-adv-x="239" d="M 385,219 L 385,51 C 385,16 384,-16 381,-46 378,-74 373,-101 366,-127 359,-151 351,-175 342,-197 332,-219 320,-241 307,-262 L 184,-262 C 214,-219 237,-175 254,-131 270,-87 278,-43 278,0 L 190,0 190,219 385,219 Z"/>
|
||||
<glyph unicode="," horiz-adv-x="239" d="M 385,219 L 385,51 C 385,-20 379,-79 366,-126 353,-173 334,-219 307,-262 L 184,-262 C 247,-171 278,-84 278,0 L 190,0 190,219 385,219 Z"/>
|
||||
<glyph unicode=" " horiz-adv-x="556"/>
|
||||
</font>
|
||||
</defs>
|
||||
<defs class="TextShapeIndex">
|
||||
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47 id48 id49 id50 id51 id52 id53 id54 id55 id56 id57 id58 id59 id60 id61 id62 id63 id64 id65 id66 id67 id68 id69 id70 id71 id72 id73 id74 id75 id76 id77 id78 id79 id80 id81 id82 id83 id84 id85 id86 id87 id88 id89 id90 id91"/>
|
||||
<g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47 id48 id49 id50 id51 id52 id53 id54 id55 id56 id57 id58 id59 id60 id61 id62 id63 id64 id65 id66 id67 id68 id69 id70 id71 id72 id73 id74 id75 id76 id77 id78 id79 id80 id81 id82 id83 id84 id85"/>
|
||||
</defs>
|
||||
<defs class="EmbeddedBulletChars">
|
||||
<g id="bullet-char-template-57356" transform="scale(0.00048828125,-0.00048828125)">
|
||||
@@ -98,612 +98,572 @@
|
||||
<g class="Page">
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id3">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="6002" y="9031" width="4292" height="2261"/>
|
||||
<path fill="rgb(114,159,207)" stroke="none" d="M 8148,11290 L 6003,11290 6003,9032 10292,9032 10292,11290 8148,11290 Z"/>
|
||||
<path fill="none" stroke="rgb(52,101,164)" d="M 8148,11290 L 6003,11290 6003,9032 10292,9032 10292,11290 8148,11290 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="716px" font-weight="400"><tspan class="TextPosition" x="7115" y="10409"><tspan fill="rgb(0,0,0)" stroke="none">Lehrer</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5199" y="6799" width="4003" height="2003"/>
|
||||
<path fill="rgb(114,159,207)" stroke="none" d="M 7200,8800 L 5200,8800 5200,6800 9200,6800 9200,8800 7200,8800 Z"/>
|
||||
<path fill="none" stroke="rgb(52,101,164)" d="M 7200,8800 L 5200,8800 5200,6800 9200,6800 9200,8800 7200,8800 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="6286" y="8021"><tspan fill="rgb(0,0,0)" stroke="none">Lehrer</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id4">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="426" y="4062" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 4181,4628 C 4181,4727 4094,4825 3930,4911 3765,4996 3528,5068 3243,5117 2957,5167 2633,5193 2304,5193 1975,5193 1651,5167 1366,5117 1080,5068 843,4996 678,4911 514,4825 427,4727 427,4628 427,4529 514,4431 678,4346 843,4260 1080,4188 1365,4139 1651,4089 1975,4063 2304,4063 2633,4063 2957,4089 3242,4139 3528,4188 3765,4260 3930,4345 4094,4431 4181,4529 4181,4628 L 4181,4628 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,4628 C 4181,4727 4094,4825 3930,4911 3765,4996 3528,5068 3243,5117 2957,5167 2633,5193 2304,5193 1975,5193 1651,5167 1366,5117 1080,5068 843,4996 678,4911 514,4825 427,4727 427,4628 427,4529 514,4431 678,4346 843,4260 1080,4188 1365,4139 1651,4089 1975,4063 2304,4063 2633,4063 2957,4089 3242,4139 3528,4188 3765,4260 3930,4345 4094,4431 4181,4529 4181,4628 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="2139" y="4776"><tspan fill="rgb(0,0,0)" stroke="none">id</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="-1" y="2399" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 3501,2901 C 3501,2988 3420,3075 3266,3151 3113,3227 2892,3290 2626,3334 2360,3378 2058,3401 1751,3401 1443,3401 1141,3378 875,3334 609,3290 388,3227 235,3151 81,3075 0,2988 0,2901 0,2813 81,2726 235,2650 388,2574 609,2511 875,2467 1141,2423 1443,2400 1750,2400 2058,2400 2360,2423 2626,2467 2892,2511 3113,2574 3266,2650 3420,2726 3501,2813 3501,2900 L 3501,2901 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3501,2901 C 3501,2988 3420,3075 3266,3151 3113,3227 2892,3290 2626,3334 2360,3378 2058,3401 1751,3401 1443,3401 1141,3378 875,3334 609,3290 388,3227 235,3151 81,3075 0,2988 0,2901 0,2813 81,2726 235,2650 388,2574 609,2511 875,2467 1141,2423 1443,2400 1750,2400 2058,2400 2360,2423 2626,2467 2892,2511 3113,2574 3266,2650 3420,2726 3501,2813 3501,2900 L 3501,2901 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="1585" y="3048"><tspan fill="rgb(0,0,0)" stroke="none">id</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id5">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="426" y="5304" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 4181,5870 C 4181,5969 4094,6067 3930,6153 3765,6238 3528,6310 3243,6359 2957,6409 2633,6435 2304,6435 1975,6435 1651,6409 1366,6359 1080,6310 843,6238 678,6153 514,6067 427,5969 427,5870 427,5771 514,5673 678,5588 843,5502 1080,5430 1365,5381 1651,5331 1975,5305 2304,5305 2633,5305 2957,5331 3242,5381 3528,5430 3765,5502 3930,5587 4094,5673 4181,5771 4181,5870 L 4181,5870 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,5870 C 4181,5969 4094,6067 3930,6153 3765,6238 3528,6310 3243,6359 2957,6409 2633,6435 2304,6435 1975,6435 1651,6409 1366,6359 1080,6310 843,6238 678,6153 514,6067 427,5969 427,5870 427,5771 514,5673 678,5588 843,5502 1080,5430 1365,5381 1651,5331 1975,5305 2304,5305 2633,5305 2957,5331 3242,5381 3528,5430 3765,5502 3930,5587 4094,5673 4181,5771 4181,5870 L 4181,5870 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="1620" y="6018"><tspan fill="rgb(0,0,0)" stroke="none">kuerzel</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="-1" y="3499" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 3501,4001 C 3501,4088 3420,4175 3266,4251 3113,4327 2892,4390 2626,4434 2360,4478 2058,4501 1751,4501 1443,4501 1141,4478 875,4434 609,4390 388,4327 235,4251 81,4175 0,4088 0,4001 0,3913 81,3826 235,3750 388,3674 609,3611 875,3567 1141,3523 1443,3500 1750,3500 2058,3500 2360,3523 2626,3567 2892,3611 3113,3674 3266,3750 3420,3826 3501,3913 3501,4000 L 3501,4001 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3501,4001 C 3501,4088 3420,4175 3266,4251 3113,4327 2892,4390 2626,4434 2360,4478 2058,4501 1751,4501 1443,4501 1141,4478 875,4434 609,4390 388,4327 235,4251 81,4175 0,4088 0,4001 0,3913 81,3826 235,3750 388,3674 609,3611 875,3567 1141,3523 1443,3500 1750,3500 2058,3500 2360,3523 2626,3567 2892,3611 3113,3674 3266,3750 3420,3826 3501,3913 3501,4000 L 3501,4001 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="1067" y="4148"><tspan fill="rgb(0,0,0)" stroke="none">kuerzel</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id6">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="426" y="6546" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 4181,7112 C 4181,7211 4094,7309 3930,7395 3765,7480 3528,7552 3243,7601 2957,7651 2633,7677 2304,7677 1975,7677 1651,7651 1366,7601 1080,7552 843,7480 678,7395 514,7309 427,7211 427,7112 427,7013 514,6915 678,6830 843,6744 1080,6672 1365,6623 1651,6573 1975,6547 2304,6547 2633,6547 2957,6573 3242,6623 3528,6672 3765,6744 3930,6829 4094,6915 4181,7013 4181,7112 L 4181,7112 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,7112 C 4181,7211 4094,7309 3930,7395 3765,7480 3528,7552 3243,7601 2957,7651 2633,7677 2304,7677 1975,7677 1651,7651 1366,7601 1080,7552 843,7480 678,7395 514,7309 427,7211 427,7112 427,7013 514,6915 678,6830 843,6744 1080,6672 1365,6623 1651,6573 1975,6547 2304,6547 2633,6547 2957,6573 3242,6623 3528,6672 3765,6744 3930,6829 4094,6915 4181,7013 4181,7112 L 4181,7112 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="1798" y="7260"><tspan fill="rgb(0,0,0)" stroke="none">email</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="-1" y="4599" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 3501,5101 C 3501,5188 3420,5275 3266,5351 3113,5427 2892,5490 2626,5534 2360,5578 2058,5601 1751,5601 1443,5601 1141,5578 875,5534 609,5490 388,5427 235,5351 81,5275 0,5188 0,5101 0,5013 81,4926 235,4850 388,4774 609,4711 875,4667 1141,4623 1443,4600 1750,4600 2058,4600 2360,4623 2626,4667 2892,4711 3113,4774 3266,4850 3420,4926 3501,5013 3501,5100 L 3501,5101 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3501,5101 C 3501,5188 3420,5275 3266,5351 3113,5427 2892,5490 2626,5534 2360,5578 2058,5601 1751,5601 1443,5601 1141,5578 875,5534 609,5490 388,5427 235,5351 81,5275 0,5188 0,5101 0,5013 81,4926 235,4850 388,4774 609,4711 875,4667 1141,4623 1443,4600 1750,4600 2058,4600 2360,4623 2626,4667 2892,4711 3113,4774 3266,4850 3420,4926 3501,5013 3501,5100 L 3501,5101 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="1244" y="5248"><tspan fill="rgb(0,0,0)" stroke="none">email</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id7">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="426" y="7788" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 4181,8354 C 4181,8453 4094,8551 3930,8637 3765,8722 3528,8794 3243,8843 2957,8893 2633,8919 2304,8919 1975,8919 1651,8893 1366,8843 1080,8794 843,8722 678,8637 514,8551 427,8453 427,8354 427,8255 514,8157 678,8072 843,7986 1080,7914 1365,7865 1651,7815 1975,7789 2304,7789 2633,7789 2957,7815 3242,7865 3528,7914 3765,7986 3930,8071 4094,8157 4181,8255 4181,8354 L 4181,8354 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,8354 C 4181,8453 4094,8551 3930,8637 3765,8722 3528,8794 3243,8843 2957,8893 2633,8919 2304,8919 1975,8919 1651,8893 1366,8843 1080,8794 843,8722 678,8637 514,8551 427,8453 427,8354 427,8255 514,8157 678,8072 843,7986 1080,7914 1365,7865 1651,7815 1975,7789 2304,7789 2633,7789 2957,7815 3242,7865 3528,7914 3765,7986 3930,8071 4094,8157 4181,8255 4181,8354 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="1101" y="8502"><tspan fill="rgb(0,0,0)" stroke="none">is_confirmed</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="-1" y="5699" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 3501,6201 C 3501,6288 3420,6375 3266,6451 3113,6527 2892,6590 2626,6634 2360,6678 2058,6701 1751,6701 1443,6701 1141,6678 875,6634 609,6590 388,6527 235,6451 81,6375 0,6288 0,6201 0,6113 81,6026 235,5950 388,5874 609,5811 875,5767 1141,5723 1443,5700 1750,5700 2058,5700 2360,5723 2626,5767 2892,5811 3113,5874 3266,5950 3420,6026 3501,6113 3501,6200 L 3501,6201 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3501,6201 C 3501,6288 3420,6375 3266,6451 3113,6527 2892,6590 2626,6634 2360,6678 2058,6701 1751,6701 1443,6701 1141,6678 875,6634 609,6590 388,6527 235,6451 81,6375 0,6288 0,6201 0,6113 81,6026 235,5950 388,5874 609,5811 875,5767 1141,5723 1443,5700 1750,5700 2058,5700 2360,5723 2626,5767 2892,5811 3113,5874 3266,5950 3420,6026 3501,6113 3501,6200 L 3501,6201 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="547" y="6348"><tspan fill="rgb(0,0,0)" stroke="none">is_confirmed</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id8">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="426" y="9030" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 4181,9596 C 4181,9695 4094,9793 3930,9879 3765,9964 3528,10036 3243,10085 2957,10135 2633,10161 2304,10161 1975,10161 1651,10135 1366,10085 1080,10036 843,9964 678,9879 514,9793 427,9695 427,9596 427,9497 514,9399 678,9314 843,9228 1080,9156 1365,9107 1651,9057 1975,9031 2304,9031 2633,9031 2957,9057 3242,9107 3528,9156 3765,9228 3930,9314 4094,9399 4181,9497 4181,9596 L 4181,9596 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,9596 C 4181,9695 4094,9793 3930,9879 3765,9964 3528,10036 3243,10085 2957,10135 2633,10161 2304,10161 1975,10161 1651,10135 1366,10085 1080,10036 843,9964 678,9879 514,9793 427,9695 427,9596 427,9497 514,9399 678,9314 843,9228 1080,9156 1365,9107 1651,9057 1975,9031 2304,9031 2633,9031 2957,9057 3242,9107 3528,9156 3765,9228 3930,9314 4094,9399 4181,9497 4181,9596 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="1334" y="9744"><tspan fill="rgb(0,0,0)" stroke="none">pwd_hash</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="-1" y="6799" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 3501,7301 C 3501,7388 3420,7475 3266,7551 3113,7627 2892,7690 2626,7734 2360,7778 2058,7801 1751,7801 1443,7801 1141,7778 875,7734 609,7690 388,7627 235,7551 81,7475 0,7388 0,7301 0,7213 81,7126 235,7050 388,6974 609,6911 875,6867 1141,6823 1443,6800 1750,6800 2058,6800 2360,6823 2626,6867 2892,6911 3113,6974 3266,7050 3420,7126 3501,7213 3501,7300 L 3501,7301 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3501,7301 C 3501,7388 3420,7475 3266,7551 3113,7627 2892,7690 2626,7734 2360,7778 2058,7801 1751,7801 1443,7801 1141,7778 875,7734 609,7690 388,7627 235,7551 81,7475 0,7388 0,7301 0,7213 81,7126 235,7050 388,6974 609,6911 875,6867 1141,6823 1443,6800 1750,6800 2058,6800 2360,6823 2626,6867 2892,6911 3113,6974 3266,7050 3420,7126 3501,7213 3501,7300 L 3501,7301 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="781" y="7448"><tspan fill="rgb(0,0,0)" stroke="none">pwd_hash</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id9">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="426" y="10272" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 4181,10838 C 4181,10937 4094,11035 3930,11121 3765,11206 3528,11278 3243,11327 2957,11377 2633,11403 2304,11403 1975,11403 1651,11377 1366,11327 1080,11278 843,11206 678,11121 514,11035 427,10937 427,10838 427,10739 514,10641 678,10556 843,10470 1080,10398 1365,10349 1651,10299 1975,10273 2304,10273 2633,10273 2957,10299 3242,10349 3528,10398 3765,10470 3930,10556 4094,10641 4181,10739 4181,10838 L 4181,10838 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,10838 C 4181,10937 4094,11035 3930,11121 3765,11206 3528,11278 3243,11327 2957,11377 2633,11403 2304,11403 1975,11403 1651,11377 1366,11327 1080,11278 843,11206 678,11121 514,11035 427,10937 427,10838 427,10739 514,10641 678,10556 843,10470 1080,10398 1365,10349 1651,10299 1975,10273 2304,10273 2633,10273 2957,10299 3242,10349 3528,10398 3765,10470 3930,10556 4094,10641 4181,10739 4181,10838 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="1455" y="10986"><tspan fill="rgb(0,0,0)" stroke="none">is_admin</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="-1" y="7899" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 3501,8401 C 3501,8488 3420,8575 3266,8651 3113,8727 2892,8790 2626,8834 2360,8878 2058,8901 1751,8901 1443,8901 1141,8878 875,8834 609,8790 388,8727 235,8651 81,8575 0,8488 0,8401 0,8313 81,8226 235,8150 388,8074 609,8011 875,7967 1141,7923 1443,7900 1750,7900 2058,7900 2360,7923 2626,7967 2892,8011 3113,8074 3266,8150 3420,8226 3501,8313 3501,8401 L 3501,8401 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3501,8401 C 3501,8488 3420,8575 3266,8651 3113,8727 2892,8790 2626,8834 2360,8878 2058,8901 1751,8901 1443,8901 1141,8878 875,8834 609,8790 388,8727 235,8651 81,8575 0,8488 0,8401 0,8313 81,8226 235,8150 388,8074 609,8011 875,7967 1141,7923 1443,7900 1750,7900 2058,7900 2360,7923 2626,7967 2892,8011 3113,8074 3266,8150 3420,8226 3501,8313 3501,8401 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="901" y="8548"><tspan fill="rgb(0,0,0)" stroke="none">is_admin</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id10">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="4180" y="4628" width="1826" height="5535"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,4629 L 6004,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="3499" y="2899" width="1703" height="4903"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3500,2900 L 5200,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id11">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="4180" y="5870" width="1826" height="4293"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,5871 L 6004,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="3499" y="3999" width="1703" height="3803"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3500,4000 L 5200,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id12">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="4180" y="7112" width="1826" height="3051"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,7113 L 6004,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="3499" y="5099" width="1703" height="2703"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3500,5100 L 5200,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id13">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="4180" y="8354" width="1826" height="1809"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,8355 L 6004,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="3499" y="6199" width="1703" height="1603"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3500,6200 L 5200,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id14">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="4180" y="9596" width="1826" height="567"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,9597 L 6004,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="3499" y="7299" width="1703" height="503"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3500,7300 L 5200,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id15">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="4180" y="10160" width="1826" height="681"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,10839 L 6004,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="3499" y="7799" width="1703" height="603"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3500,8400 L 5200,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id16">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="426" y="11514" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 4181,12080 C 4181,12179 4094,12277 3930,12363 3765,12448 3528,12520 3243,12569 2957,12619 2633,12645 2304,12645 1975,12645 1651,12619 1366,12569 1080,12520 843,12448 678,12363 514,12277 427,12179 427,12080 427,11981 514,11883 678,11798 843,11712 1080,11640 1365,11591 1651,11541 1975,11515 2304,11515 2633,11515 2957,11541 3242,11591 3528,11640 3765,11712 3930,11798 4094,11883 4181,11981 4181,12080 L 4181,12080 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,12080 C 4181,12179 4094,12277 3930,12363 3765,12448 3528,12520 3243,12569 2957,12619 2633,12645 2304,12645 1975,12645 1651,12619 1366,12569 1080,12520 843,12448 678,12363 514,12277 427,12179 427,12080 427,11981 514,11883 678,11798 843,11712 1080,11640 1365,11591 1651,11541 1975,11515 2304,11515 2633,11515 2957,11541 3242,11591 3528,11640 3765,11712 3930,11798 4094,11883 4181,11981 4181,12080 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="978" y="12228"><tspan fill="rgb(0,0,0)" stroke="none">pwd_changed</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="-1" y="8999" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 3501,9501 C 3501,9588 3420,9675 3266,9751 3113,9827 2892,9890 2626,9934 2360,9978 2058,10001 1751,10001 1443,10001 1141,9978 875,9934 609,9890 388,9827 235,9751 81,9675 0,9588 0,9501 0,9413 81,9326 235,9250 388,9174 609,9111 875,9067 1141,9023 1443,9000 1750,9000 2058,9000 2360,9023 2626,9067 2892,9111 3113,9174 3266,9250 3420,9326 3501,9413 3501,9501 L 3501,9501 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3501,9501 C 3501,9588 3420,9675 3266,9751 3113,9827 2892,9890 2626,9934 2360,9978 2058,10001 1751,10001 1443,10001 1141,9978 875,9934 609,9890 388,9827 235,9751 81,9675 0,9588 0,9501 0,9413 81,9326 235,9250 388,9174 609,9111 875,9067 1141,9023 1443,9000 1750,9000 2058,9000 2360,9023 2626,9067 2892,9111 3113,9174 3266,9250 3420,9326 3501,9413 3501,9501 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="425" y="9648"><tspan fill="rgb(0,0,0)" stroke="none">pwd_changed</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id17">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="426" y="12755" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 4181,13321 C 4181,13420 4094,13518 3930,13604 3765,13689 3528,13761 3243,13810 2957,13860 2633,13886 2304,13886 1975,13886 1651,13860 1366,13810 1080,13761 843,13689 678,13604 514,13518 427,13420 427,13321 427,13222 514,13124 678,13039 843,12953 1080,12881 1365,12832 1651,12782 1975,12756 2304,12756 2633,12756 2957,12782 3242,12832 3528,12881 3765,12953 3930,13039 4094,13124 4181,13222 4181,13321 L 4181,13321 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,13321 C 4181,13420 4094,13518 3930,13604 3765,13689 3528,13761 3243,13810 2957,13860 2633,13886 2304,13886 1975,13886 1651,13860 1366,13810 1080,13761 843,13689 678,13604 514,13518 427,13420 427,13321 427,13222 514,13124 678,13039 843,12953 1080,12881 1365,12832 1651,12782 1975,12756 2304,12756 2633,12756 2957,12782 3242,12832 3528,12881 3765,12953 3930,13039 4094,13124 4181,13222 4181,13321 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="1105" y="13420"><tspan fill="rgb(0,0,0)" stroke="none">confirmation_token</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="-1" y="10099" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 3501,10601 C 3501,10688 3420,10775 3266,10851 3113,10927 2892,10990 2626,11034 2360,11078 2058,11101 1751,11101 1443,11101 1141,11078 875,11034 609,10990 388,10927 235,10851 81,10775 0,10688 0,10601 0,10513 81,10426 235,10350 388,10274 609,10211 875,10167 1141,10123 1443,10100 1750,10100 2058,10100 2360,10123 2626,10167 2892,10211 3113,10274 3266,10350 3420,10426 3501,10513 3501,10601 L 3501,10601 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3501,10601 C 3501,10688 3420,10775 3266,10851 3113,10927 2892,10990 2626,11034 2360,11078 2058,11101 1751,11101 1443,11101 1141,11078 875,11034 609,10990 388,10927 235,10851 81,10775 0,10688 0,10601 0,10513 81,10426 235,10350 388,10274 609,10211 875,10167 1141,10123 1443,10100 1750,10100 2058,10100 2360,10123 2626,10167 2892,10211 3113,10274 3266,10350 3420,10426 3501,10513 3501,10601 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="552" y="10699"><tspan fill="rgb(0,0,0)" stroke="none">confirmation_token</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id18">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="426" y="13997" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 4181,14563 C 4181,14662 4094,14760 3930,14846 3765,14931 3528,15003 3243,15052 2957,15102 2633,15128 2304,15128 1975,15128 1651,15102 1366,15052 1080,15003 843,14931 678,14846 514,14760 427,14662 427,14563 427,14464 514,14366 678,14281 843,14195 1080,14123 1365,14074 1651,14024 1975,13998 2304,13998 2633,13998 2957,14024 3242,14074 3528,14123 3765,14195 3930,14281 4094,14366 4181,14464 4181,14563 L 4181,14563 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,14563 C 4181,14662 4094,14760 3930,14846 3765,14931 3528,15003 3243,15052 2957,15102 2633,15128 2304,15128 1975,15128 1651,15102 1366,15052 1080,15003 843,14931 678,14846 514,14760 427,14662 427,14563 427,14464 514,14366 678,14281 843,14195 1080,14123 1365,14074 1651,14024 1975,13998 2304,13998 2633,13998 2957,14024 3242,14074 3528,14123 3765,14195 3930,14281 4094,14366 4181,14464 4181,14563 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="879" y="14662"><tspan fill="rgb(0,0,0)" stroke="none">password_reset_token</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="-1" y="11199" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 3501,11701 C 3501,11788 3420,11875 3266,11951 3113,12027 2892,12090 2626,12134 2360,12178 2058,12201 1751,12201 1443,12201 1141,12178 875,12134 609,12090 388,12027 235,11951 81,11875 0,11788 0,11701 0,11613 81,11526 235,11450 388,11374 609,11311 875,11267 1141,11223 1443,11200 1750,11200 2058,11200 2360,11223 2626,11267 2892,11311 3113,11374 3266,11450 3420,11526 3501,11613 3501,11701 L 3501,11701 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3501,11701 C 3501,11788 3420,11875 3266,11951 3113,12027 2892,12090 2626,12134 2360,12178 2058,12201 1751,12201 1443,12201 1141,12178 875,12134 609,12090 388,12027 235,11951 81,11875 0,11788 0,11701 0,11613 81,11526 235,11450 388,11374 609,11311 875,11267 1141,11223 1443,11200 1750,11200 2058,11200 2360,11223 2626,11267 2892,11311 3113,11374 3266,11450 3420,11526 3501,11613 3501,11701 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="325" y="11799"><tspan fill="rgb(0,0,0)" stroke="none">password_reset_token</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id19">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="426" y="15239" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 4181,15805 C 4181,15904 4094,16002 3930,16088 3765,16173 3528,16245 3243,16294 2957,16344 2633,16370 2304,16370 1975,16370 1651,16344 1366,16294 1080,16245 843,16173 678,16088 514,16002 427,15904 427,15805 427,15706 514,15608 678,15523 843,15437 1080,15365 1365,15316 1651,15266 1975,15240 2304,15240 2633,15240 2957,15266 3242,15316 3528,15365 3765,15437 3930,15523 4094,15608 4181,15706 4181,15805 L 4181,15805 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,15805 C 4181,15904 4094,16002 3930,16088 3765,16173 3528,16245 3243,16294 2957,16344 2633,16370 2304,16370 1975,16370 1651,16344 1366,16294 1080,16245 843,16173 678,16088 514,16002 427,15904 427,15805 427,15706 514,15608 678,15523 843,15437 1080,15365 1365,15316 1651,15266 1975,15240 2304,15240 2633,15240 2957,15266 3242,15316 3528,15365 3765,15437 3930,15523 4094,15608 4181,15706 4181,15805 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="847" y="15904"><tspan fill="rgb(0,0,0)" stroke="none">password_reset_expiry</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="-1" y="12299" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 3501,12801 C 3501,12888 3420,12975 3266,13051 3113,13127 2892,13190 2626,13234 2360,13278 2058,13301 1751,13301 1443,13301 1141,13278 875,13234 609,13190 388,13127 235,13051 81,12975 0,12888 0,12801 0,12713 81,12626 235,12550 388,12474 609,12411 875,12367 1141,12323 1443,12300 1750,12300 2058,12300 2360,12323 2626,12367 2892,12411 3113,12474 3266,12550 3420,12626 3501,12713 3501,12801 L 3501,12801 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3501,12801 C 3501,12888 3420,12975 3266,13051 3113,13127 2892,13190 2626,13234 2360,13278 2058,13301 1751,13301 1443,13301 1141,13278 875,13234 609,13190 388,13127 235,13051 81,12975 0,12888 0,12801 0,12713 81,12626 235,12550 388,12474 609,12411 875,12367 1141,12323 1443,12300 1750,12300 2058,12300 2360,12323 2626,12367 2892,12411 3113,12474 3266,12550 3420,12626 3501,12713 3501,12801 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="293" y="12899"><tspan fill="rgb(0,0,0)" stroke="none">password_reset_expiry</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id20">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="4180" y="10160" width="1826" height="1923"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,12081 L 6004,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="3499" y="7799" width="1703" height="1703"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3500,9500 L 5200,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id21">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="4180" y="10160" width="1826" height="3164"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,13322 L 6004,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="3499" y="7799" width="1703" height="2803"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3500,10600 L 5200,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id22">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="4180" y="10160" width="1826" height="4406"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,14564 L 6004,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="3499" y="7799" width="1703" height="3903"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3500,11700 L 5200,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id23">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="4180" y="10160" width="1826" height="5648"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 4181,15806 L 6004,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="3499" y="7799" width="1703" height="5003"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 3500,12800 L 5200,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id24">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="19619" y="9031" width="4292" height="2261"/>
|
||||
<path fill="rgb(114,159,207)" stroke="none" d="M 21765,11290 L 19620,11290 19620,9032 23909,9032 23909,11290 21765,11290 Z"/>
|
||||
<path fill="none" stroke="rgb(52,101,164)" d="M 21765,11290 L 19620,11290 19620,9032 23909,9032 23909,11290 21765,11290 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="716px" font-weight="400"><tspan class="TextPosition" x="20550" y="10409"><tspan fill="rgb(0,0,0)" stroke="none">Klausur</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="17899" y="6799" width="4003" height="2003"/>
|
||||
<path fill="rgb(114,159,207)" stroke="none" d="M 19900,8800 L 17900,8800 17900,6800 21900,6800 21900,8800 19900,8800 Z"/>
|
||||
<path fill="none" stroke="rgb(52,101,164)" d="M 19900,8800 L 17900,8800 17900,6800 21900,6800 21900,8800 19900,8800 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="18827" y="8021"><tspan fill="rgb(0,0,0)" stroke="none">Klausur</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id25">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="25516" y="5868" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 29271,6434 C 29271,6533 29184,6631 29020,6717 28855,6802 28618,6874 28332,6923 28047,6973 27723,6999 27394,6999 27065,6999 26741,6973 26455,6923 26170,6874 25933,6802 25768,6717 25604,6631 25517,6533 25517,6434 25517,6335 25604,6237 25768,6152 25933,6066 26170,5994 26455,5945 26741,5895 27065,5869 27394,5869 27723,5869 28047,5895 28332,5945 28618,5994 28855,6066 29020,6151 29184,6237 29271,6335 29271,6434 L 29271,6434 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 29271,6434 C 29271,6533 29184,6631 29020,6717 28855,6802 28618,6874 28332,6923 28047,6973 27723,6999 27394,6999 27065,6999 26741,6973 26455,6923 26170,6874 25933,6802 25768,6717 25604,6631 25517,6533 25517,6434 25517,6335 25604,6237 25768,6152 25933,6066 26170,5994 26455,5945 26741,5895 27065,5869 27394,5869 27723,5869 28047,5895 28332,5945 28618,5994 28855,6066 29020,6151 29184,6237 29271,6335 29271,6434 L 29271,6434 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="27229" y="6582"><tspan fill="rgb(0,0,0)" stroke="none">id</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23399" y="3499" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 26901,4001 C 26901,4088 26820,4175 26666,4251 26513,4327 26292,4390 26026,4434 25760,4478 25458,4501 25151,4501 24843,4501 24541,4478 24275,4434 24009,4390 23788,4327 23635,4251 23481,4175 23400,4088 23400,4001 23400,3913 23481,3826 23635,3750 23788,3674 24009,3611 24275,3567 24541,3523 24843,3500 25151,3500 25458,3500 25760,3523 26026,3567 26292,3611 26513,3674 26666,3750 26820,3826 26901,3913 26901,4000 L 26901,4001 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 26901,4001 C 26901,4088 26820,4175 26666,4251 26513,4327 26292,4390 26026,4434 25760,4478 25458,4501 25151,4501 24843,4501 24541,4478 24275,4434 24009,4390 23788,4327 23635,4251 23481,4175 23400,4088 23400,4001 23400,3913 23481,3826 23635,3750 23788,3674 24009,3611 24275,3567 24541,3523 24843,3500 25151,3500 25458,3500 25760,3523 26026,3567 26292,3611 26513,3674 26666,3750 26820,3826 26901,3913 26901,4000 L 26901,4001 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="24985" y="4148"><tspan fill="rgb(0,0,0)" stroke="none">id</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id26">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="25516" y="7110" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 29271,7676 C 29271,7775 29184,7873 29020,7959 28855,8044 28618,8116 28332,8165 28047,8215 27723,8241 27394,8241 27065,8241 26741,8215 26455,8165 26170,8116 25933,8044 25768,7959 25604,7873 25517,7775 25517,7676 25517,7577 25604,7479 25768,7394 25933,7308 26170,7236 26455,7187 26741,7137 27065,7111 27394,7111 27723,7111 28047,7137 28332,7187 28618,7236 28855,7308 29020,7393 29184,7479 29271,7577 29271,7676 L 29271,7676 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 29271,7676 C 29271,7775 29184,7873 29020,7959 28855,8044 28618,8116 28332,8165 28047,8215 27723,8241 27394,8241 27065,8241 26741,8215 26455,8165 26170,8116 25933,8044 25768,7959 25604,7873 25517,7775 25517,7676 25517,7577 25604,7479 25768,7394 25933,7308 26170,7236 26455,7187 26741,7137 27065,7111 27394,7111 27723,7111 28047,7137 28332,7187 28618,7236 28855,7308 29020,7393 29184,7479 29271,7577 29271,7676 L 29271,7676 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="26462" y="7824"><tspan fill="rgb(0,0,0)" stroke="none">kursname</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23399" y="4599" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 26901,5101 C 26901,5188 26820,5275 26666,5351 26513,5427 26292,5490 26026,5534 25760,5578 25458,5601 25151,5601 24843,5601 24541,5578 24275,5534 24009,5490 23788,5427 23635,5351 23481,5275 23400,5188 23400,5101 23400,5013 23481,4926 23635,4850 23788,4774 24009,4711 24275,4667 24541,4623 24843,4600 25151,4600 25458,4600 25760,4623 26026,4667 26292,4711 26513,4774 26666,4850 26820,4926 26901,5013 26901,5100 L 26901,5101 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 26901,5101 C 26901,5188 26820,5275 26666,5351 26513,5427 26292,5490 26026,5534 25760,5578 25458,5601 25151,5601 24843,5601 24541,5578 24275,5534 24009,5490 23788,5427 23635,5351 23481,5275 23400,5188 23400,5101 23400,5013 23481,4926 23635,4850 23788,4774 24009,4711 24275,4667 24541,4623 24843,4600 25151,4600 25458,4600 25760,4623 26026,4667 26292,4711 26513,4774 26666,4850 26820,4926 26901,5013 26901,5100 L 26901,5101 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="24219" y="5248"><tspan fill="rgb(0,0,0)" stroke="none">kursname</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id27">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="25516" y="8352" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 29271,8918 C 29271,9017 29184,9115 29020,9201 28855,9286 28618,9358 28332,9407 28047,9457 27723,9483 27394,9483 27065,9483 26741,9457 26455,9407 26170,9358 25933,9286 25768,9201 25604,9115 25517,9017 25517,8918 25517,8819 25604,8721 25768,8636 25933,8550 26170,8478 26455,8429 26741,8379 27065,8353 27394,8353 27723,8353 28047,8379 28332,8429 28618,8478 28855,8550 29020,8636 29184,8721 29271,8819 29271,8918 L 29271,8918 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 29271,8918 C 29271,9017 29184,9115 29020,9201 28855,9286 28618,9358 28332,9407 28047,9457 27723,9483 27394,9483 27065,9483 26741,9457 26455,9407 26170,9358 25933,9286 25768,9201 25604,9115 25517,9017 25517,8918 25517,8819 25604,8721 25768,8636 25933,8550 26170,8478 26455,8429 26741,8379 27065,8353 27394,8353 27723,8353 28047,8379 28332,8429 28618,8478 28855,8550 29020,8636 29184,8721 29271,8819 29271,8918 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="26755" y="9066"><tspan fill="rgb(0,0,0)" stroke="none">laenge</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23399" y="8999" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 26901,9501 C 26901,9588 26820,9675 26666,9751 26513,9827 26292,9890 26026,9934 25760,9978 25458,10001 25151,10001 24843,10001 24541,9978 24275,9934 24009,9890 23788,9827 23635,9751 23481,9675 23400,9588 23400,9501 23400,9413 23481,9326 23635,9250 23788,9174 24009,9111 24275,9067 24541,9023 24843,9000 25151,9000 25458,9000 25760,9023 26026,9067 26292,9111 26513,9174 26666,9250 26820,9326 26901,9413 26901,9501 L 26901,9501 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 26901,9501 C 26901,9588 26820,9675 26666,9751 26513,9827 26292,9890 26026,9934 25760,9978 25458,10001 25151,10001 24843,10001 24541,9978 24275,9934 24009,9890 23788,9827 23635,9751 23481,9675 23400,9588 23400,9501 23400,9413 23481,9326 23635,9250 23788,9174 24009,9111 24275,9067 24541,9023 24843,9000 25151,9000 25458,9000 25760,9023 26026,9067 26292,9111 26513,9174 26666,9250 26820,9326 26901,9413 26901,9501 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="24511" y="9648"><tspan fill="rgb(0,0,0)" stroke="none">laenge</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id28">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="25516" y="9594" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 29271,10160 C 29271,10259 29184,10357 29020,10443 28855,10528 28618,10600 28332,10649 28047,10699 27723,10725 27394,10725 27065,10725 26741,10699 26455,10649 26170,10600 25933,10528 25768,10443 25604,10357 25517,10259 25517,10160 25517,10061 25604,9963 25768,9878 25933,9792 26170,9720 26455,9671 26741,9621 27065,9595 27394,9595 27723,9595 28047,9621 28332,9671 28618,9720 28855,9792 29020,9878 29184,9963 29271,10061 29271,10160 L 29271,10160 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 29271,10160 C 29271,10259 29184,10357 29020,10443 28855,10528 28618,10600 28332,10649 28047,10699 27723,10725 27394,10725 27065,10725 26741,10699 26455,10649 26170,10600 25933,10528 25768,10443 25604,10357 25517,10259 25517,10160 25517,10061 25604,9963 25768,9878 25933,9792 26170,9720 26455,9671 26741,9621 27065,9595 27394,9595 27723,9595 28047,9621 28332,9671 28618,9720 28855,9792 29020,9878 29184,9963 29271,10061 29271,10160 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="26814" y="10308"><tspan fill="rgb(0,0,0)" stroke="none">edited</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23399" y="10099" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 26901,10601 C 26901,10688 26820,10775 26666,10851 26513,10927 26292,10990 26026,11034 25760,11078 25458,11101 25151,11101 24843,11101 24541,11078 24275,11034 24009,10990 23788,10927 23635,10851 23481,10775 23400,10688 23400,10601 23400,10513 23481,10426 23635,10350 23788,10274 24009,10211 24275,10167 24541,10123 24843,10100 25151,10100 25458,10100 25760,10123 26026,10167 26292,10211 26513,10274 26666,10350 26820,10426 26901,10513 26901,10601 L 26901,10601 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 26901,10601 C 26901,10688 26820,10775 26666,10851 26513,10927 26292,10990 26026,11034 25760,11078 25458,11101 25151,11101 24843,11101 24541,11078 24275,11034 24009,10990 23788,10927 23635,10851 23481,10775 23400,10688 23400,10601 23400,10513 23481,10426 23635,10350 23788,10274 24009,10211 24275,10167 24541,10123 24843,10100 25151,10100 25458,10100 25760,10123 26026,10167 26292,10211 26513,10274 26666,10350 26820,10426 26901,10513 26901,10601 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="24570" y="10748"><tspan fill="rgb(0,0,0)" stroke="none">edited</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id29">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="12864" y="13885" width="4292" height="2261"/>
|
||||
<path fill="rgb(114,159,207)" stroke="none" d="M 15010,16144 L 12865,16144 12865,13886 17154,13886 17154,16144 15010,16144 Z"/>
|
||||
<path fill="none" stroke="rgb(52,101,164)" d="M 15010,16144 L 12865,16144 12865,13886 17154,13886 17154,16144 15010,16144 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="716px" font-weight="400"><tspan class="TextPosition" x="14174" y="15263"><tspan fill="rgb(0,0,0)" stroke="none">Stufe</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="11599" y="11099" width="4003" height="2003"/>
|
||||
<path fill="rgb(114,159,207)" stroke="none" d="M 13600,13100 L 11600,13100 11600,11100 15600,11100 15600,13100 13600,13100 Z"/>
|
||||
<path fill="none" stroke="rgb(52,101,164)" d="M 13600,13100 L 11600,13100 11600,11100 15600,11100 15600,13100 13600,13100 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="12859" y="12321"><tspan fill="rgb(0,0,0)" stroke="none">Stufe</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id30">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="6002" y="13884" width="4293" height="2273"/>
|
||||
<path fill="rgb(234,117,0)" stroke="none" d="M 8148,13885 L 10293,15020 8148,16155 6003,15020 8148,13885 8148,13885 Z"/>
|
||||
<path fill="none" stroke="rgb(75,34,4)" d="M 8148,13885 L 10293,15020 8148,16155 6003,15020 8148,13885 8148,13885 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="7582" y="15032"><tspan fill="rgb(0,0,0)" stroke="none">berät</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="6875" y="15396"><tspan fill="rgb(0,0,0)" stroke="none">Lehrer.beraet_name</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5199" y="11099" width="4003" height="2014"/>
|
||||
<path fill="rgb(234,117,0)" stroke="none" d="M 7200,11100 L 9200,12105 7200,13111 5200,12105 7200,11100 7200,11100 Z"/>
|
||||
<path fill="none" stroke="rgb(75,34,4)" d="M 7200,11100 L 9200,12105 7200,13111 5200,12105 7200,11100 7200,11100 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="6635" y="12118"><tspan fill="rgb(0,0,0)" stroke="none">berät</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="5928" y="12482"><tspan fill="rgb(0,0,0)" stroke="none">Lehrer.beraet_name</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id31">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10292" y="15014" width="2576" height="9"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 10293,15021 L 11579,15021 11579,15015 12866,15015"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="9199" y="12099" width="2403" height="8"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 9200,12105 L 10400,12105 10400,12100 11600,12100"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id32">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="8147" y="11289" width="4" height="2599"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 8149,13886 L 8149,12588 8148,12588 8148,11290"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="7199" y="8799" width="3" height="2303"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 7200,11100 L 7200,8800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id33">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="19619" y="13884" width="4293" height="2273"/>
|
||||
<path fill="rgb(234,117,0)" stroke="none" d="M 21765,13885 L 23910,15020 21765,16155 19620,15020 21765,13885 21765,13885 Z"/>
|
||||
<path fill="none" stroke="rgb(75,34,4)" d="M 21765,13885 L 23910,15020 21765,16155 19620,15020 21765,13885 21765,13885 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="20729" y="14873"><tspan fill="rgb(0,0,0)" stroke="none">gehört zu</tspan></tspan><tspan class="TextPosition" x="20509" y="15237"><tspan font-size="282px" fill="rgb(0,0,0)" stroke="none">Klausur.stufe_name</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="17899" y="11099" width="4003" height="2014"/>
|
||||
<path fill="rgb(234,117,0)" stroke="none" d="M 19900,11100 L 21900,12105 19900,13111 17900,12105 19900,11100 19900,11100 Z"/>
|
||||
<path fill="none" stroke="rgb(75,34,4)" d="M 19900,11100 L 21900,12105 19900,13111 17900,12105 19900,11100 19900,11100 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="18865" y="11959"><tspan fill="rgb(0,0,0)" stroke="none">gehört zu</tspan></tspan><tspan class="TextPosition" x="18645" y="12323"><tspan font-size="282px" fill="rgb(0,0,0)" stroke="none">Klausur.stufe_name</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id34">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="17154" y="15014" width="2469" height="9"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 17155,15015 L 18387,15015 18387,15021 19621,15021"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="15599" y="12099" width="2303" height="8"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 15600,12100 L 16750,12100 16750,12105 17900,12105"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id35">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="14687" y="9030" width="4293" height="2273"/>
|
||||
<path fill="rgb(234,117,0)" stroke="none" d="M 16833,9031 L 18978,10166 16833,11301 14688,10166 16833,9031 16833,9031 Z"/>
|
||||
<path fill="none" stroke="rgb(75,34,4)" d="M 16833,9031 L 18978,10166 16833,11301 14688,10166 16833,9031 16833,9031 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="15537" y="10178"><tspan fill="rgb(0,0,0)" stroke="none">wird betreut</tspan></tspan><tspan class="TextPosition" x="15770" y="10542"><tspan font-size="282px" fill="rgb(0,0,0)" stroke="none">Klausur.lehrer_id</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="13299" y="6799" width="4003" height="2014"/>
|
||||
<path fill="rgb(234,117,0)" stroke="none" d="M 15300,6800 L 17300,7805 15300,8811 13300,7805 15300,6800 15300,6800 Z"/>
|
||||
<path fill="none" stroke="rgb(75,34,4)" d="M 15300,6800 L 17300,7805 15300,8811 13300,7805 15300,6800 15300,6800 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="14004" y="7818"><tspan fill="rgb(0,0,0)" stroke="none">wird betreut</tspan></tspan><tspan class="TextPosition" x="14237" y="8182"><tspan font-size="282px" fill="rgb(0,0,0)" stroke="none">Klausur.lehrer_id</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id36">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10292" y="10160" width="4399" height="9"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 14689,10167 L 12490,10167 12490,10161 10293,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="9199" y="7799" width="4103" height="8"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 13300,7805 L 11250,7805 11250,7800 9200,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id37">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="18977" y="10160" width="646" height="9"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 18978,10167 L 19299,10167 19299,10161 19621,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="17299" y="7799" width="603" height="8"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 17300,7805 L 17600,7805 17600,7800 17900,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id38">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21764" y="11289" width="4" height="2599"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 21766,13886 L 21766,12588 21765,12588 21765,11290"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="19899" y="8799" width="3" height="2303"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 19900,11100 L 19900,8800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id39">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="12864" y="4627" width="4292" height="2261"/>
|
||||
<path fill="rgb(114,159,207)" stroke="none" d="M 15010,6886 L 12865,6886 12865,4628 17154,4628 17154,6886 15010,6886 Z"/>
|
||||
<path fill="none" stroke="rgb(52,101,164)" d="M 15010,6886 L 12865,6886 12865,4628 17154,4628 17154,6886 15010,6886 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="716px" font-weight="400"><tspan class="TextPosition" x="13596" y="6005"><tspan fill="rgb(0,0,0)" stroke="none">Schueler</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="11599" y="2899" width="4003" height="2003"/>
|
||||
<path fill="rgb(114,159,207)" stroke="none" d="M 13600,4900 L 11600,4900 11600,2900 15600,2900 15600,4900 13600,4900 Z"/>
|
||||
<path fill="none" stroke="rgb(52,101,164)" d="M 13600,4900 L 11600,4900 11600,2900 15600,2900 15600,4900 13600,4900 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="635px" font-weight="400"><tspan class="TextPosition" x="12351" y="4121"><tspan fill="rgb(0,0,0)" stroke="none">Schueler</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id40">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="19619" y="4062" width="4293" height="3391"/>
|
||||
<path fill="rgb(234,117,0)" stroke="none" d="M 21765,4063 L 23910,5757 21765,7451 19620,5757 21765,4063 21765,4063 Z"/>
|
||||
<path fill="none" stroke="rgb(75,34,4)" d="M 21765,4063 L 23910,5757 21765,7451 19620,5757 21765,4063 21765,4063 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="20655" y="5452"><tspan fill="rgb(0,0,0)" stroke="none">nimmt Teil</tspan></tspan><tspan class="TextPosition" x="20670" y="5816"><tspan font-size="282px" fill="rgb(0,0,0)" stroke="none">Klausurteilnahme</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="20960" y="6134"><tspan text-decoration="none" fill="rgb(0,0,0)" stroke="none">.</tspan><tspan fill="rgb(0,0,0)" stroke="none">schueler_id</tspan><tspan text-decoration="none" fill="rgb(0,0,0)" stroke="none">,</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="21079" y="6452"><tspan text-decoration="none" fill="rgb(0,0,0)" stroke="none">.</tspan><tspan fill="rgb(0,0,0)" stroke="none">klausur_id</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="17899" y="2399" width="4003" height="3004"/>
|
||||
<path fill="rgb(234,117,0)" stroke="none" d="M 19900,2400 L 21900,3900 19900,5401 17900,3900 19900,2400 19900,2400 Z"/>
|
||||
<path fill="none" stroke="rgb(75,34,4)" d="M 19900,2400 L 21900,3900 19900,5401 17900,3900 19900,2400 19900,2400 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="18791" y="3595"><tspan fill="rgb(0,0,0)" stroke="none">nimmt Teil</tspan></tspan><tspan class="TextPosition" x="18806" y="3959"><tspan font-size="282px" fill="rgb(0,0,0)" stroke="none">Klausurteilnahme</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="19096" y="4277"><tspan text-decoration="none" fill="rgb(0,0,0)" stroke="none">.</tspan><tspan fill="rgb(0,0,0)" stroke="none">schueler_id</tspan><tspan text-decoration="none" fill="rgb(0,0,0)" stroke="none">,</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="19215" y="4595"><tspan text-decoration="none" fill="rgb(0,0,0)" stroke="none">.</tspan><tspan fill="rgb(0,0,0)" stroke="none">klausur_id</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id41">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="17154" y="5756" width="2469" height="4"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 19621,5758 L 18387,5758 18387,5757 17155,5757"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="15599" y="3899" width="2303" height="3"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 17900,3900 L 15600,3900"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id42">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21764" y="7450" width="4" height="1584"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 21766,7451 L 21766,8242 21765,8242 21765,9032"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="19899" y="5399" width="3" height="1403"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 19900,5400 L 19900,6800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id43">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="19512" y="110" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 23267,676 C 23267,775 23180,873 23016,959 22851,1044 22614,1116 22329,1165 22043,1215 21719,1241 21390,1241 21061,1241 20737,1215 20452,1165 20166,1116 19929,1044 19764,959 19600,873 19513,775 19513,676 19513,577 19600,479 19764,394 19929,308 20166,236 20452,187 20737,137 21061,111 21390,111 21719,111 22043,137 22329,187 22614,236 22851,308 23016,393 23180,479 23267,577 23267,676 L 23267,676 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 23267,676 C 23267,775 23180,873 23016,959 22851,1044 22614,1116 22329,1165 22043,1215 21719,1241 21390,1241 21061,1241 20737,1215 20452,1165 20166,1116 19929,1044 19764,959 19600,873 19513,775 19513,676 19513,577 19600,479 19764,394 19929,308 20166,236 20452,187 20737,137 21061,111 21390,111 21719,111 22043,137 22329,187 22614,236 22851,308 23016,393 23180,479 23267,577 23267,676 L 23267,676 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="20399" y="824"><tspan fill="rgb(0,0,0)" stroke="none">versaeumt</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="15999" y="1099" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 19501,1601 C 19501,1688 19420,1775 19266,1851 19113,1927 18892,1990 18626,2034 18360,2078 18058,2101 17751,2101 17443,2101 17141,2078 16875,2034 16609,1990 16388,1927 16235,1851 16081,1775 16000,1688 16000,1601 16000,1513 16081,1426 16235,1350 16388,1274 16609,1211 16875,1167 17141,1123 17443,1100 17751,1100 18058,1100 18360,1123 18626,1167 18892,1211 19113,1274 19266,1350 19420,1426 19501,1513 19501,1600 L 19501,1601 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 19501,1601 C 19501,1688 19420,1775 19266,1851 19113,1927 18892,1990 18626,2034 18360,2078 18058,2101 17751,2101 17443,2101 17141,2078 16875,2034 16609,1990 16388,1927 16235,1851 16081,1775 16000,1688 16000,1601 16000,1513 16081,1426 16235,1350 16388,1274 16609,1211 16875,1167 17141,1123 17443,1100 17751,1100 18058,1100 18360,1123 18626,1167 18892,1211 19113,1274 19266,1350 19420,1426 19501,1513 19501,1600 L 19501,1601 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="16759" y="1748"><tspan fill="rgb(0,0,0)" stroke="none">versaeumt</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id44">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="20691" y="1352" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 24446,1918 C 24446,2017 24359,2115 24195,2201 24030,2286 23793,2358 23508,2407 23222,2457 22898,2483 22569,2483 22240,2483 21916,2457 21631,2407 21345,2358 21108,2286 20943,2201 20779,2115 20692,2017 20692,1918 20692,1819 20779,1721 20943,1636 21108,1550 21345,1478 21631,1429 21916,1379 22240,1353 22569,1353 22898,1353 23222,1379 23508,1429 23793,1478 24030,1550 24195,1635 24359,1721 24446,1819 24446,1918 L 24446,1918 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 24446,1918 C 24446,2017 24359,2115 24195,2201 24030,2286 23793,2358 23508,2407 23222,2457 22898,2483 22569,2483 22240,2483 21916,2457 21631,2407 21345,2358 21108,2286 20943,2201 20779,2115 20692,2017 20692,1918 20692,1819 20779,1721 20943,1636 21108,1550 21345,1478 21631,1429 21916,1379 22240,1353 22569,1353 22898,1353 23222,1379 23508,1429 23793,1478 24030,1550 24195,1635 24359,1721 24446,1819 24446,1918 L 24446,1918 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="21754" y="2066"><tspan fill="rgb(0,0,0)" stroke="none">attestiert</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="18899" y="-1" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 22401,501 C 22401,588 22320,675 22166,751 22013,827 21792,890 21526,934 21260,978 20958,1001 20651,1001 20343,1001 20041,978 19775,934 19509,890 19288,827 19135,751 18981,675 18900,588 18900,501 18900,413 18981,326 19135,250 19288,174 19509,111 19775,67 20041,23 20343,0 20651,0 20958,0 21260,23 21526,67 21792,111 22013,174 22166,250 22320,326 22401,413 22401,500 L 22401,501 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 22401,501 C 22401,588 22320,675 22166,751 22013,827 21792,890 21526,934 21260,978 20958,1001 20651,1001 20343,1001 20041,978 19775,934 19509,890 19288,827 19135,751 18981,675 18900,588 18900,501 18900,413 18981,326 19135,250 19288,174 19509,111 19775,67 20041,23 20343,0 20651,0 20958,0 21260,23 21526,67 21792,111 22013,174 22166,250 22320,326 22401,413 22401,500 L 22401,501 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="19835" y="648"><tspan fill="rgb(0,0,0)" stroke="none">attestiert</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id45">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23909" y="6434" width="1611" height="3729"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 23910,10161 L 25518,6435"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21899" y="3999" width="1503" height="3803"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 21900,7800 L 23400,4000"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id46">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23909" y="7676" width="1611" height="2487"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 23910,10161 L 25518,7677"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21899" y="5099" width="1503" height="2703"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 21900,7800 L 23400,5100"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id47">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23909" y="8918" width="1611" height="1245"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 23910,10161 L 25518,8919"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21899" y="7799" width="1503" height="1703"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 21900,7800 L 23400,9500"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id48">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23909" y="10160" width="1611" height="3"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 23910,10161 L 25518,10161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21899" y="7799" width="1503" height="2803"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 21900,7800 L 23400,10600"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id49">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="11363" y="10723" width="4293" height="2273"/>
|
||||
<path fill="rgb(234,117,0)" stroke="none" d="M 13509,10724 L 15654,11859 13509,12994 11364,11859 13509,10724 13509,10724 Z"/>
|
||||
<path fill="none" stroke="rgb(75,34,4)" d="M 13509,10724 L 15654,11859 13509,12994 11364,11859 13509,10724 13509,10724 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="12997" y="11712"><tspan fill="rgb(0,0,0)" stroke="none">ist in</tspan></tspan><tspan class="TextPosition" x="12175" y="12076"><tspan font-size="282px" fill="rgb(0,0,0)" stroke="none">Schueler.stufe_name</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10199" y="8299" width="4003" height="2014"/>
|
||||
<path fill="rgb(234,117,0)" stroke="none" d="M 12200,8300 L 14200,9305 12200,10311 10200,9305 12200,8300 12200,8300 Z"/>
|
||||
<path fill="none" stroke="rgb(75,34,4)" d="M 12200,8300 L 14200,9305 12200,10311 10200,9305 12200,8300 12200,8300 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="11688" y="9159"><tspan fill="rgb(0,0,0)" stroke="none">ist in</tspan></tspan><tspan class="TextPosition" x="10866" y="9523"><tspan font-size="282px" fill="rgb(0,0,0)" stroke="none">Schueler.stufe_name</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id50">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="13509" y="6885" width="1503" height="3842"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 15010,6886 L 15010,8805 13510,8805 13510,10725"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="12199" y="4899" width="1403" height="3403"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 13600,4900 L 13600,6600 12200,6600 12200,8300"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id51">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="13509" y="12993" width="1503" height="895"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 13510,12994 L 13510,13440 15010,13440 15010,13886"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="12199" y="10309" width="1403" height="793"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 12200,10310 L 12200,10706 13600,10706 13600,11100"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id52">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="12649" y="110" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 16404,676 C 16404,775 16317,873 16153,959 15988,1044 15751,1116 15465,1165 15180,1215 14856,1241 14527,1241 14198,1241 13874,1215 13589,1165 13303,1116 13066,1044 12901,959 12737,873 12650,775 12650,676 12650,577 12737,479 12901,394 13066,308 13303,236 13588,187 13874,137 14198,111 14527,111 14856,111 15180,137 15465,187 15751,236 15988,308 16153,393 16317,479 16404,577 16404,676 L 16404,676 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 16404,676 C 16404,775 16317,873 16153,959 15988,1044 15751,1116 15465,1165 15180,1215 14856,1241 14527,1241 14198,1241 13874,1215 13589,1165 13303,1116 13066,1044 12901,959 12737,873 12650,775 12650,676 12650,577 12737,479 12901,394 13066,308 13303,236 13588,187 13874,137 14198,111 14527,111 14856,111 15180,137 15465,187 15751,236 15988,308 16153,393 16317,479 16404,577 16404,676 L 16404,676 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="14362" y="824"><tspan fill="rgb(0,0,0)" stroke="none">id</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="7499" y="1799" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 11001,2301 C 11001,2388 10920,2475 10766,2551 10613,2627 10392,2690 10126,2734 9860,2778 9558,2801 9251,2801 8943,2801 8641,2778 8375,2734 8109,2690 7888,2627 7735,2551 7581,2475 7500,2388 7500,2301 7500,2213 7581,2126 7735,2050 7888,1974 8109,1911 8375,1867 8641,1823 8943,1800 9250,1800 9558,1800 9860,1823 10126,1867 10392,1911 10613,1974 10766,2050 10920,2126 11001,2213 11001,2300 L 11001,2301 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 11001,2301 C 11001,2388 10920,2475 10766,2551 10613,2627 10392,2690 10126,2734 9860,2778 9558,2801 9251,2801 8943,2801 8641,2778 8375,2734 8109,2690 7888,2627 7735,2551 7581,2475 7500,2388 7500,2301 7500,2213 7581,2126 7735,2050 7888,1974 8109,1911 8375,1867 8641,1823 8943,1800 9250,1800 9558,1800 9860,1823 10126,1867 10392,1911 10613,1974 10766,2050 10920,2126 11001,2213 11001,2300 L 11001,2301 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="9085" y="2448"><tspan fill="rgb(0,0,0)" stroke="none">id</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id53">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="15008" y="2594" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 18763,3160 C 18763,3259 18676,3357 18512,3443 18347,3528 18110,3600 17825,3649 17539,3699 17215,3725 16886,3725 16557,3725 16233,3699 15947,3649 15662,3600 15425,3528 15260,3443 15096,3357 15009,3259 15009,3160 15009,3061 15096,2963 15260,2878 15425,2792 15662,2720 15947,2671 16233,2621 16557,2595 16886,2595 17215,2595 17539,2621 17825,2671 18110,2720 18347,2792 18512,2877 18676,2963 18763,3061 18763,3160 L 18763,3160 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 18763,3160 C 18763,3259 18676,3357 18512,3443 18347,3528 18110,3600 17825,3649 17539,3699 17215,3725 16886,3725 16557,3725 16233,3699 15947,3649 15662,3600 15425,3528 15260,3443 15096,3357 15009,3259 15009,3160 15009,3061 15096,2963 15260,2878 15425,2792 15662,2720 15947,2671 16233,2621 16557,2595 16886,2595 17215,2595 17539,2621 17825,2671 18110,2720 18347,2792 18512,2877 18676,2963 18763,3061 18763,3160 L 18763,3160 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="16060" y="3308"><tspan fill="rgb(0,0,0)" stroke="none">vorname</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="7499" y="3999" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 11001,4501 C 11001,4588 10920,4675 10766,4751 10613,4827 10392,4890 10126,4934 9860,4978 9558,5001 9251,5001 8943,5001 8641,4978 8375,4934 8109,4890 7888,4827 7735,4751 7581,4675 7500,4588 7500,4501 7500,4413 7581,4326 7735,4250 7888,4174 8109,4111 8375,4067 8641,4023 8943,4000 9250,4000 9558,4000 9860,4023 10126,4067 10392,4111 10613,4174 10766,4250 10920,4326 11001,4413 11001,4500 L 11001,4501 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 11001,4501 C 11001,4588 10920,4675 10766,4751 10613,4827 10392,4890 10126,4934 9860,4978 9558,5001 9251,5001 8943,5001 8641,4978 8375,4934 8109,4890 7888,4827 7735,4751 7581,4675 7500,4588 7500,4501 7500,4413 7581,4326 7735,4250 7888,4174 8109,4111 8375,4067 8641,4023 8943,4000 9250,4000 9558,4000 9860,4023 10126,4067 10392,4111 10613,4174 10766,4250 10920,4326 11001,4413 11001,4500 L 11001,4501 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="8425" y="4648"><tspan fill="rgb(0,0,0)" stroke="none">vorname</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id54">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="13829" y="1352" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 17584,1918 C 17584,2017 17497,2115 17333,2201 17168,2286 16931,2358 16646,2407 16360,2457 16036,2483 15707,2483 15378,2483 15054,2457 14769,2407 14483,2358 14246,2286 14081,2201 13917,2115 13830,2017 13830,1918 13830,1819 13917,1721 14081,1636 14246,1550 14483,1478 14768,1429 15054,1379 15378,1353 15707,1353 16036,1353 16360,1379 16646,1429 16931,1478 17168,1550 17333,1635 17497,1721 17584,1819 17584,1918 L 17584,1918 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 17584,1918 C 17584,2017 17497,2115 17333,2201 17168,2286 16931,2358 16646,2407 16360,2457 16036,2483 15707,2483 15378,2483 15054,2457 14769,2407 14483,2358 14246,2286 14081,2201 13917,2115 13830,2017 13830,1918 13830,1819 13917,1721 14081,1636 14246,1550 14483,1478 14768,1429 15054,1379 15378,1353 15707,1353 16036,1353 16360,1379 16646,1429 16931,1478 17168,1550 17333,1635 17497,1721 17584,1819 17584,1918 L 17584,1918 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="14714" y="2066"><tspan fill="rgb(0,0,0)" stroke="none">nachname</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="7499" y="2899" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 11001,3401 C 11001,3488 10920,3575 10766,3651 10613,3727 10392,3790 10126,3834 9860,3878 9558,3901 9251,3901 8943,3901 8641,3878 8375,3834 8109,3790 7888,3727 7735,3651 7581,3575 7500,3488 7500,3401 7500,3313 7581,3226 7735,3150 7888,3074 8109,3011 8375,2967 8641,2923 8943,2900 9250,2900 9558,2900 9860,2923 10126,2967 10392,3011 10613,3074 10766,3150 10920,3226 11001,3313 11001,3400 L 11001,3401 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 11001,3401 C 11001,3488 10920,3575 10766,3651 10613,3727 10392,3790 10126,3834 9860,3878 9558,3901 9251,3901 8943,3901 8641,3878 8375,3834 8109,3790 7888,3727 7735,3651 7581,3575 7500,3488 7500,3401 7500,3313 7581,3226 7735,3150 7888,3074 8109,3011 8375,2967 8641,2923 8943,2900 9250,2900 9558,2900 9860,2923 10126,2967 10392,3011 10613,3074 10766,3150 10920,3226 11001,3313 11001,3400 L 11001,3401 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="8257" y="3548"><tspan fill="rgb(0,0,0)" stroke="none">nachname</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id55">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="6216" y="902" width="4292" height="2261"/>
|
||||
<path fill="rgb(114,159,207)" stroke="none" d="M 8362,3161 L 6217,3161 6217,903 10506,903 10506,3161 8362,3161 Z"/>
|
||||
<path fill="none" stroke="rgb(52,101,164)" d="M 8362,3161 L 6217,3161 6217,903 10506,903 10506,3161 8362,3161 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="716px" font-weight="400"><tspan class="TextPosition" x="6488" y="2280"><tspan fill="rgb(0,0,0)" stroke="none">Koopschule</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="11000" y="11555" width="698" height="646"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="11250" y="11998"><tspan fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id56">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="6216" y="4626" width="4293" height="2273"/>
|
||||
<path fill="rgb(234,117,0)" stroke="none" d="M 8362,4627 L 10507,5762 8362,6897 6217,5762 8362,4627 8362,4627 Z"/>
|
||||
<path fill="none" stroke="rgb(75,34,4)" d="M 8362,4627 L 10507,5762 8362,6897 6217,5762 8362,4627 8362,4627 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="7849" y="5456"><tspan fill="rgb(0,0,0)" stroke="none">ist in</tspan></tspan><tspan class="TextPosition" x="7802" y="5820"><tspan font-size="282px" fill="rgb(0,0,0)" stroke="none">Schueler</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="282px" font-weight="400"><tspan class="TextPosition" x="7051" y="6138"><tspan fill="rgb(0,0,0)" stroke="none">.stammschule_name</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="7103" y="8700" width="698" height="646"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="7353" y="9143"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id57">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10506" y="5756" width="2362" height="9"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 10507,5763 L 11686,5763 11686,5757 12866,5757"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="13503" y="10555" width="698" height="646"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="13753" y="10998"><tspan fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id58">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="8361" y="3160" width="4" height="1470"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 8363,4628 L 8363,3894 8362,3894 8362,3161"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="13503" y="4800" width="698" height="646"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="13753" y="5243"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id59">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1606" y="788" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 5361,1354 C 5361,1453 5274,1551 5110,1637 4945,1722 4708,1794 4423,1843 4137,1893 3813,1919 3484,1919 3155,1919 2831,1893 2546,1843 2260,1794 2023,1722 1858,1637 1694,1551 1607,1453 1607,1354 1607,1255 1694,1157 1858,1072 2023,986 2260,914 2545,865 2831,815 3155,789 3484,789 3813,789 4137,815 4422,865 4708,914 4945,986 5110,1071 5274,1157 5361,1255 5361,1354 L 5361,1354 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 5361,1354 C 5361,1453 5274,1551 5110,1637 4945,1722 4708,1794 4423,1843 4137,1893 3813,1919 3484,1919 3155,1919 2831,1893 2546,1843 2260,1794 2023,1722 1858,1637 1694,1551 1607,1453 1607,1354 1607,1255 1694,1157 1858,1072 2023,986 2260,914 2545,865 2831,815 3155,789 3484,789 3813,789 4137,815 4422,865 4708,914 4945,986 5110,1071 5274,1157 5361,1255 5361,1354 L 5361,1354 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="2800" y="1502"><tspan fill="rgb(0,0,0)" stroke="none">kuerzel</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="17300" y="7255" width="698" height="646"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="17550" y="7698"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id60">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="1606" y="2030" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 5361,2596 C 5361,2695 5274,2793 5110,2879 4945,2964 4708,3036 4423,3085 4137,3135 3813,3161 3484,3161 3155,3161 2831,3135 2546,3085 2260,3036 2023,2964 1858,2879 1694,2793 1607,2695 1607,2596 1607,2497 1694,2399 1858,2314 2023,2228 2260,2156 2545,2107 2831,2057 3155,2031 3484,2031 3813,2031 4137,2057 4422,2107 4708,2156 4945,2228 5110,2313 5274,2399 5361,2497 5361,2596 L 5361,2596 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 5361,2596 C 5361,2695 5274,2793 5110,2879 4945,2964 4708,3036 4423,3085 4137,3135 3813,3161 3484,3161 3155,3161 2831,3135 2546,3085 2260,3036 2023,2964 1858,2879 1694,2793 1607,2695 1607,2596 1607,2497 1694,2399 1858,2314 2023,2228 2260,2156 2545,2107 2831,2057 3155,2031 3484,2031 3813,2031 4137,2057 4422,2107 4708,2156 4945,2228 5110,2313 5274,2399 5361,2497 5361,2596 L 5361,2596 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="2952" y="2744"><tspan fill="rgb(0,0,0)" stroke="none">name</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="9100" y="7255" width="698" height="646"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="9350" y="7698"><tspan fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id61">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5360" y="1354" width="860" height="680"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 5361,1355 L 6218,2032"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="15500" y="3355" width="698" height="646"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="15750" y="3798"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id62">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="5360" y="2031" width="860" height="568"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 5361,2597 L 6218,2032"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="19803" y="6255" width="795" height="646"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="20053" y="6698"><tspan fill="rgb(0,0,0)" stroke="none">m</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id63">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="15009" y="3559" width="552" height="1071"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 15010,4628 L 15559,3560"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="19300" y="8700" width="698" height="646"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="19550" y="9143"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id64">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="14379" y="2317" width="633" height="2313"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 15010,4628 L 14380,2318"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="15503" y="11555" width="698" height="646"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="15753" y="11998"><tspan fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id65">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="9499" y="13199" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 13001,13701 C 13001,13788 12920,13875 12766,13951 12613,14027 12392,14090 12126,14134 11860,14178 11558,14201 11251,14201 10943,14201 10641,14178 10375,14134 10109,14090 9888,14027 9735,13951 9581,13875 9500,13788 9500,13701 9500,13613 9581,13526 9735,13450 9888,13374 10109,13311 10375,13267 10641,13223 10943,13200 11250,13200 11558,13200 11860,13223 12126,13267 12392,13311 12613,13374 12766,13450 12920,13526 13001,13613 13001,13701 L 13001,13701 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 13001,13701 C 13001,13788 12920,13875 12766,13951 12613,14027 12392,14090 12126,14134 11860,14178 11558,14201 11251,14201 10943,14201 10641,14178 10375,14134 10109,14090 9888,14027 9735,13951 9581,13875 9500,13788 9500,13701 9500,13613 9581,13526 9735,13450 9888,13374 10109,13311 10375,13267 10641,13223 10943,13200 11250,13200 11558,13200 11860,13223 12126,13267 12392,13311 12613,13374 12766,13450 12920,13526 13001,13613 13001,13701 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="10719" y="13848"><tspan fill="rgb(0,0,0)" stroke="none">name</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id66">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="14199" y="13199" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 17701,13701 C 17701,13788 17620,13875 17466,13951 17313,14027 17092,14090 16826,14134 16560,14178 16258,14201 15951,14201 15643,14201 15341,14178 15075,14134 14809,14090 14588,14027 14435,13951 14281,13875 14200,13788 14200,13701 14200,13613 14281,13526 14435,13450 14588,13374 14809,13311 15075,13267 15341,13223 15643,13200 15951,13200 16258,13200 16560,13223 16826,13267 17092,13311 17313,13374 17466,13450 17620,13526 17701,13613 17701,13701 L 17701,13701 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 17701,13701 C 17701,13788 17620,13875 17466,13951 17313,14027 17092,14090 16826,14134 16560,14178 16258,14201 15951,14201 15643,14201 15341,14178 15075,14134 14809,14090 14588,14027 14435,13951 14281,13875 14200,13788 14200,13701 14200,13613 14281,13526 14435,13450 14588,13374 14809,13311 15075,13267 15341,13223 15643,13200 15951,13200 16258,13200 16560,13223 16826,13267 17092,13311 17313,13374 17466,13450 17620,13526 17701,13613 17701,13701 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="14828" y="13848"><tspan fill="rgb(0,0,0)" stroke="none">import_date</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id65">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="13199" y="1075" width="1813" height="3555"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 15010,4628 L 13200,1076"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id66">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="8259" y="3048" width="748" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="8509" y="3491"><tspan fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g id="id67">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="12223" y="5142" width="748" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="12473" y="5585"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="12999" y="13099" width="603" height="603"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 13000,13700 L 13600,13100"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id68">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="12223" y="14400" width="748" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="12473" y="14843"><tspan fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="19999" y="1099" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 23501,1601 C 23501,1688 23420,1775 23266,1851 23113,1927 22892,1990 22626,2034 22360,2078 22058,2101 21751,2101 21443,2101 21141,2078 20875,2034 20609,1990 20388,1927 20235,1851 20081,1775 20000,1688 20000,1601 20000,1513 20081,1426 20235,1350 20388,1274 20609,1211 20875,1167 21141,1123 21443,1100 21751,1100 22058,1100 22360,1123 22626,1167 22892,1211 23113,1274 23266,1350 23420,1426 23501,1513 23501,1600 L 23501,1601 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 23501,1601 C 23501,1688 23420,1775 23266,1851 23113,1927 22892,1990 22626,2034 22360,2078 22058,2101 21751,2101 21443,2101 21141,2078 20875,2034 20609,1990 20388,1927 20235,1851 20081,1775 20000,1688 20000,1601 20000,1513 20081,1426 20235,1350 20388,1274 20609,1211 20875,1167 21141,1123 21443,1100 21751,1100 22058,1100 22360,1123 22626,1167 22892,1211 23113,1274 23266,1350 23420,1426 23501,1513 23501,1600 L 23501,1601 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="20130" y="1748"><tspan fill="rgb(0,0,0)" stroke="none">nachgeschrieben</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id69">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="8044" y="11177" width="748" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="8294" y="11620"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="19411" y="853" width="491" height="1549"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 19412,854 L 19900,2400"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id70">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="14906" y="13271" width="748" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="15156" y="13714"><tspan fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="19899" y="1953" width="615" height="449"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 20512,1954 L 19900,2400"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id71">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="14906" y="6774" width="748" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="15156" y="7217"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23399" y="5699" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 26901,6201 C 26901,6288 26820,6375 26666,6451 26513,6527 26292,6590 26026,6634 25760,6678 25458,6701 25151,6701 24843,6701 24541,6678 24275,6634 24009,6590 23788,6527 23635,6451 23481,6375 23400,6288 23400,6201 23400,6113 23481,6026 23635,5950 23788,5874 24009,5811 24275,5767 24541,5723 24843,5700 25151,5700 25458,5700 25760,5723 26026,5767 26292,5811 26513,5874 26666,5950 26820,6026 26901,6113 26901,6200 L 26901,6201 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 26901,6201 C 26901,6288 26820,6375 26666,6451 26513,6527 26292,6590 26026,6634 25760,6678 25458,6701 25151,6701 24843,6701 24541,6678 24275,6634 24009,6590 23788,6527 23635,6451 23481,6375 23400,6288 23400,6201 23400,6113 23481,6026 23635,5950 23788,5874 24009,5811 24275,5767 24541,5723 24843,5700 25151,5700 25458,5700 25760,5723 26026,5767 26292,5811 26513,5874 26666,5950 26820,6026 26901,6113 26901,6200 L 26901,6201 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="24735" y="6348"><tspan fill="rgb(0,0,0)" stroke="none">date</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id72">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="18977" y="9545" width="748" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="19227" y="9988"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21899" y="6199" width="1503" height="1603"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 21900,7800 L 23400,6200"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id73">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10185" y="9545" width="748" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="10435" y="9988"><tspan fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="13599" y="13099" width="603" height="603"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 13600,13100 L 14200,13700"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id74">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="17048" y="5142" width="748" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="17298" y="5585"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23399" y="6799" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 26901,7301 C 26901,7388 26820,7475 26666,7551 26513,7627 26292,7690 26026,7734 25760,7778 25458,7801 25151,7801 24843,7801 24541,7778 24275,7734 24009,7690 23788,7627 23635,7551 23481,7475 23400,7388 23400,7301 23400,7213 23481,7126 23635,7050 23788,6974 24009,6911 24275,6867 24541,6823 24843,6800 25151,6800 25458,6800 25760,6823 26026,6867 26292,6911 26513,6974 26666,7050 26820,7126 26901,7213 26901,7300 L 26901,7301 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 26901,7301 C 26901,7388 26820,7475 26666,7551 26513,7627 26292,7690 26026,7734 25760,7778 25458,7801 25151,7801 24843,7801 24541,7778 24275,7734 24009,7690 23788,7627 23635,7551 23481,7475 23400,7388 23400,7301 23400,7213 23481,7126 23635,7050 23788,6974 24009,6911 24275,6867 24541,6823 24843,6800 25151,6800 25458,6800 25760,6823 26026,6867 26292,6911 26513,6974 26666,7050 26820,7126 26901,7213 26901,7300 L 26901,7301 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="24146" y="7448"><tspan fill="rgb(0,0,0)" stroke="none">startperiod</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id75">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21661" y="8416" width="852" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="21911" y="8859"><tspan fill="rgb(0,0,0)" stroke="none">m</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23399" y="7899" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 26901,8401 C 26901,8488 26820,8575 26666,8651 26513,8727 26292,8790 26026,8834 25760,8878 25458,8901 25151,8901 24843,8901 24541,8878 24275,8834 24009,8790 23788,8727 23635,8651 23481,8575 23400,8488 23400,8401 23400,8313 23481,8226 23635,8150 23788,8074 24009,8011 24275,7967 24541,7923 24843,7900 25151,7900 25458,7900 25760,7923 26026,7967 26292,8011 26513,8074 26666,8150 26820,8226 26901,8313 26901,8401 L 26901,8401 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 26901,8401 C 26901,8488 26820,8575 26666,8651 26513,8727 26292,8790 26026,8834 25760,8878 25458,8901 25151,8901 24843,8901 24541,8878 24275,8834 24009,8790 23788,8727 23635,8651 23481,8575 23400,8488 23400,8401 23400,8313 23481,8226 23635,8150 23788,8074 24009,8011 24275,7967 24541,7923 24843,7900 25151,7900 25458,7900 25760,7923 26026,7967 26292,8011 26513,8074 26666,8150 26820,8226 26901,8313 26901,8401 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="24204" y="8548"><tspan fill="rgb(0,0,0)" stroke="none">endperiod</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id76">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21122" y="11177" width="748" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="21372" y="11620"><tspan fill="rgb(0,0,0)" stroke="none">n</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21899" y="7299" width="1503" height="503"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 21900,7800 L 23400,7300"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.TextShape">
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id77">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="17051" y="14400" width="748" height="729"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="17301" y="14843"><tspan fill="rgb(0,0,0)" stroke="none">1</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21899" y="7799" width="1503" height="603"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 21900,7800 L 23400,8400"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id78">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10612" y="16255" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 14367,16821 C 14367,16920 14280,17018 14116,17103 13951,17189 13714,17261 13429,17310 13143,17360 12819,17386 12490,17386 12161,17386 11837,17360 11552,17310 11266,17261 11029,17189 10864,17103 10700,17018 10613,16920 10613,16821 10613,16722 10700,16624 10864,16538 11029,16453 11266,16381 11551,16332 11837,16282 12161,16256 12490,16256 12819,16256 13143,16282 13429,16332 13714,16381 13951,16453 14116,16538 14280,16624 14367,16722 14367,16821 L 14367,16821 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 14367,16821 C 14367,16920 14280,17018 14116,17103 13951,17189 13714,17261 13429,17310 13143,17360 12819,17386 12490,17386 12161,17386 11837,17360 11552,17310 11266,17261 11029,17189 10864,17103 10700,17018 10613,16920 10613,16821 10613,16722 10700,16624 10864,16538 11029,16453 11266,16381 11551,16332 11837,16282 12161,16256 12490,16256 12819,16256 13143,16282 13429,16332 13714,16381 13951,16453 14116,16538 14280,16624 14367,16722 14367,16821 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400" text-decoration="underline"><tspan class="TextPosition" x="11958" y="16969"><tspan fill="rgb(0,0,0)" stroke="none">name</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10999" y="3399" width="603" height="503"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 11000,3400 L 11600,3900"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id79">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="15652" y="16255" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 19407,16821 C 19407,16920 19320,17018 19156,17103 18991,17189 18754,17261 18469,17310 18183,17360 17859,17386 17530,17386 17201,17386 16877,17360 16592,17310 16306,17261 16069,17189 15904,17103 15740,17018 15653,16920 15653,16821 15653,16722 15740,16624 15904,16538 16069,16453 16306,16381 16592,16332 16877,16282 17201,16256 17530,16256 17859,16256 18183,16282 18469,16332 18754,16381 18991,16453 19156,16538 19320,16624 19407,16722 19407,16821 L 19407,16821 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 19407,16821 C 19407,16920 19320,17018 19156,17103 18991,17189 18754,17261 18469,17310 18183,17360 17859,17386 17530,17386 17201,17386 16877,17360 16592,17310 16306,17261 16069,17189 15904,17103 15740,17018 15653,16920 15653,16821 15653,16722 15740,16624 15904,16538 16069,16453 16306,16381 16592,16332 16877,16282 17201,16256 17530,16256 17859,16256 18183,16282 18469,16332 18754,16381 18991,16453 19156,16538 19320,16624 19407,16722 19407,16821 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="16407" y="16969"><tspan fill="rgb(0,0,0)" stroke="none">import_date</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10999" y="3899" width="603" height="603"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 11000,4500 L 11600,3900"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id80">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="14366" y="16143" width="646" height="681"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 14367,16822 L 15010,16144"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10999" y="2299" width="603" height="1603"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 11000,2300 L 11600,3900"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id81">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21870" y="2594" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 25625,3160 C 25625,3259 25538,3357 25374,3443 25209,3528 24972,3600 24687,3649 24401,3699 24077,3725 23748,3725 23419,3725 23095,3699 22810,3649 22524,3600 22287,3528 22122,3443 21958,3357 21871,3259 21871,3160 21871,3061 21958,2963 22122,2878 22287,2792 22524,2720 22810,2671 23095,2621 23419,2595 23748,2595 24077,2595 24401,2621 24687,2671 24972,2720 25209,2792 25374,2877 25538,2963 25625,3061 25625,3160 L 25625,3160 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 25625,3160 C 25625,3259 25538,3357 25374,3443 25209,3528 24972,3600 24687,3649 24401,3699 24077,3725 23748,3725 23419,3725 23095,3699 22810,3649 22524,3600 22287,3528 22122,3443 21958,3357 21871,3259 21871,3160 21871,3061 21958,2963 22122,2878 22287,2792 22524,2720 22810,2671 23095,2621 23419,2595 23748,2595 24077,2595 24401,2621 24687,2671 24972,2720 25209,2792 25374,2877 25538,2963 25625,3061 25625,3160 L 25625,3160 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="22128" y="3308"><tspan fill="rgb(0,0,0)" stroke="none">nachgeschrieben</tspan></tspan></tspan></text>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="7499" y="5099" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 11001,5601 C 11001,5688 10920,5775 10766,5851 10613,5927 10392,5990 10126,6034 9860,6078 9558,6101 9251,6101 8943,6101 8641,6078 8375,6034 8109,5990 7888,5927 7735,5851 7581,5775 7500,5688 7500,5601 7500,5513 7581,5426 7735,5350 7888,5274 8109,5211 8375,5167 8641,5123 8943,5100 9250,5100 9558,5100 9860,5123 10126,5167 10392,5211 10613,5274 10766,5350 10920,5426 11001,5513 11001,5600 L 11001,5601 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 11001,5601 C 11001,5688 10920,5775 10766,5851 10613,5927 10392,5990 10126,6034 9860,6078 9558,6101 9251,6101 8943,6101 8641,6078 8375,6034 8109,5990 7888,5927 7735,5851 7581,5775 7500,5688 7500,5601 7500,5513 7581,5426 7735,5350 7888,5274 8109,5211 8375,5167 8641,5123 8943,5100 9250,5100 9558,5100 9860,5123 10126,5167 10392,5211 10613,5274 10766,5350 10920,5426 11001,5513 11001,5600 L 11001,5601 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="8789" y="5748"><tspan fill="rgb(0,0,0)" stroke="none">koop</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id82">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="20062" y="1075" width="1706" height="2991"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 20063,1076 L 21766,4064"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="10999" y="3899" width="603" height="1703"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 11000,5600 L 11600,3900"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id83">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21241" y="2317" width="527" height="1749"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 21242,2318 L 21766,4064"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23399" y="11199" width="3504" height="1004"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 26901,11701 C 26901,11788 26820,11875 26666,11951 26513,12027 26292,12090 26026,12134 25760,12178 25458,12201 25151,12201 24843,12201 24541,12178 24275,12134 24009,12090 23788,12027 23635,11951 23481,11875 23400,11788 23400,11701 23400,11613 23481,11526 23635,11450 23788,11374 24009,11311 24275,11267 24541,11223 24843,11200 25151,11200 25458,11200 25760,11223 26026,11267 26292,11311 26513,11374 26666,11450 26820,11526 26901,11613 26901,11701 L 26901,11701 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 26901,11701 C 26901,11788 26820,11875 26666,11951 26513,12027 26292,12090 26026,12134 25760,12178 25458,12201 25151,12201 24843,12201 24541,12178 24275,12134 24009,12090 23788,12027 23635,11951 23481,11875 23400,11788 23400,11701 23400,11613 23481,11526 23635,11450 23788,11374 24009,11311 24275,11267 24541,11223 24843,11200 25151,11200 25458,11200 25760,11223 26026,11267 26292,11311 26513,11374 26666,11450 26820,11526 26901,11613 26901,11701 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="24155" y="11848"><tspan fill="rgb(0,0,0)" stroke="none">annotation</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id84">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21765" y="3559" width="658" height="507"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 22421,3560 L 21766,4064"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="21899" y="7799" width="1503" height="3903"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 23400,11700 L 21900,7800"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id85">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="25516" y="10836" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 29271,11402 C 29271,11501 29184,11599 29020,11685 28855,11770 28618,11842 28332,11891 28047,11941 27723,11967 27394,11967 27065,11967 26741,11941 26455,11891 26170,11842 25933,11770 25768,11685 25604,11599 25517,11501 25517,11402 25517,11303 25604,11205 25768,11120 25933,11034 26170,10962 26455,10913 26741,10863 27065,10837 27394,10837 27723,10837 28047,10863 28332,10913 28618,10962 28855,11034 29020,11120 29184,11205 29271,11303 29271,11402 L 29271,11402 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 29271,11402 C 29271,11501 29184,11599 29020,11685 28855,11770 28618,11842 28332,11891 28047,11941 27723,11967 27394,11967 27065,11967 26741,11941 26455,11891 26170,11842 25933,11770 25768,11685 25604,11599 25517,11501 25517,11402 25517,11303 25604,11205 25768,11120 25933,11034 26170,10962 26455,10913 26741,10863 27065,10837 27394,10837 27723,10837 28047,10863 28332,10913 28618,10962 28855,11034 29020,11120 29184,11205 29271,11303 29271,11402 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="26979" y="11550"><tspan fill="rgb(0,0,0)" stroke="none">date</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id86">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23909" y="10160" width="1611" height="1245"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 23910,10161 L 25518,11403"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id87">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="15009" y="16143" width="647" height="681"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 15010,16144 L 15654,16822"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id88">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="25516" y="12078" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 29271,12644 C 29271,12743 29184,12841 29020,12927 28855,13012 28618,13084 28332,13133 28047,13183 27723,13209 27394,13209 27065,13209 26741,13183 26455,13133 26170,13084 25933,13012 25768,12927 25604,12841 25517,12743 25517,12644 25517,12545 25604,12447 25768,12362 25933,12276 26170,12204 26455,12155 26741,12105 27065,12079 27394,12079 27723,12079 28047,12105 28332,12155 28618,12204 28855,12276 29020,12362 29184,12447 29271,12545 29271,12644 L 29271,12644 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 29271,12644 C 29271,12743 29184,12841 29020,12927 28855,13012 28618,13084 28332,13133 28047,13183 27723,13209 27394,13209 27065,13209 26741,13183 26455,13133 26170,13084 25933,13012 25768,12927 25604,12841 25517,12743 25517,12644 25517,12545 25604,12447 25768,12362 25933,12276 26170,12204 26455,12155 26741,12105 27065,12079 27394,12079 27723,12079 28047,12105 28332,12155 28618,12204 28855,12276 29020,12362 29184,12447 29271,12545 29271,12644 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="26390" y="12792"><tspan fill="rgb(0,0,0)" stroke="none">startperiod</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.CustomShape">
|
||||
<g id="id89">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="25516" y="13320" width="3757" height="1133"/>
|
||||
<path fill="rgb(238,238,238)" stroke="none" d="M 29271,13886 C 29271,13985 29184,14083 29020,14169 28855,14254 28618,14326 28332,14375 28047,14425 27723,14451 27394,14451 27065,14451 26741,14425 26455,14375 26170,14326 25933,14254 25768,14169 25604,14083 25517,13985 25517,13886 25517,13787 25604,13689 25768,13604 25933,13518 26170,13446 26455,13397 26741,13347 27065,13321 27394,13321 27723,13321 28047,13347 28332,13397 28618,13446 28855,13518 29020,13604 29184,13689 29271,13787 29271,13886 L 29271,13886 Z"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 29271,13886 C 29271,13985 29184,14083 29020,14169 28855,14254 28618,14326 28332,14375 28047,14425 27723,14451 27394,14451 27065,14451 26741,14425 26455,14375 26170,14326 25933,14254 25768,14169 25604,14083 25517,13985 25517,13886 25517,13787 25604,13689 25768,13604 25933,13518 26170,13446 26455,13397 26741,13347 27065,13321 27394,13321 27723,13321 28047,13347 28332,13397 28618,13446 28855,13518 29020,13604 29184,13689 29271,13787 29271,13886 Z"/>
|
||||
<text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="423px" font-weight="400"><tspan class="TextPosition" x="26448" y="14034"><tspan fill="rgb(0,0,0)" stroke="none">endperiod</tspan></tspan></tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id90">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23909" y="10160" width="1611" height="2487"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 23910,10161 L 25518,12645"/>
|
||||
</g>
|
||||
</g>
|
||||
<g class="com.sun.star.drawing.ConnectorShape">
|
||||
<g id="id91">
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="23909" y="10160" width="1611" height="3729"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 23910,10161 L 25518,13887"/>
|
||||
<rect class="BoundingBox" stroke="none" fill="none" x="18987" y="1953" width="915" height="449"/>
|
||||
<path fill="none" stroke="rgb(0,0,0)" d="M 18988,1954 L 19900,2400"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
|
||||
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 77 KiB |
@@ -191,10 +191,7 @@
|
||||
<input type="checkbox" name="s_{{ kt.schueler.id }}" id="s_{{ kt.schueler.id }}" class="schueler-cb"
|
||||
{% if kt.versaeumt %} checked {% endif %} {% if no_edit %} disabled {% endif %}>
|
||||
{{ kt.schueler.nachname }}, {{ kt.schueler.vorname }}
|
||||
<span class="detail">
|
||||
({% if kt.schueler.stammschule is not none %}{{ kt.schueler.stammschule.name }},
|
||||
{% endif %}{{ kt.schueler.id }})
|
||||
</span>
|
||||
<span class="detail">({{ kt.schueler.id }}{% if kt.schueler.koop %}, Koop{% endif %})</span>
|
||||
</label>
|
||||
<input type="submit" form="remove-form" name="r_{{ kt.schueler.id }}" class="plain" value="×"
|
||||
title="entfernen" {% if no_edit %} disabled {% endif %}>
|
||||
@@ -237,7 +234,7 @@
|
||||
<option value="new-schueler">Neuen Schüler hinzufügen...</option>
|
||||
{% for schueler in not_in_klausur_list %}
|
||||
<option value="{{ schueler.id }}">{{ schueler.nachname }}, {{ schueler.vorname }}
|
||||
({% if schueler.stammschule is not none %}{{ schueler.stammschule.name }}, {% endif %}{{ schueler.id }})
|
||||
({{ schueler.id }}{% if schueler.koop %}, Koop{% endif %})
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
@@ -254,15 +251,8 @@
|
||||
<div><input type="text" name="new-schueler-vorname" id="new-schueler-vorname-input"></div>
|
||||
</div>
|
||||
<div>
|
||||
<div><label for="new-schueler-stammschule-select">Stammschule:</label></div>
|
||||
<div>
|
||||
<select name="new-schueler-stammschule" id="new-schueler-stammschule-select">
|
||||
<option value="" selected>(kein Koop-Schüler)</option>
|
||||
{% for ks in Koopschule.query.all() %}
|
||||
<option value="{{ ks.kuerzel }}">{{ ks.name }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
<div><label for="new-schueler-koop-cb">Koop-Schüler:</label></div>
|
||||
<div><input type="checkbox" name="new-schueler-koop" id="new-schueler-koop-cb"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -61,8 +61,7 @@
|
||||
{% for kt in versaeumt_list %}
|
||||
<tr class="clickable" tabindex="0" data-href="{{ url_for('klausuren.edit', klausur_id=kt.klausur.id) }}">
|
||||
<td>{{ kt.schueler.nachname }}, {{ kt.schueler.vorname }}
|
||||
<span class="detail">({% if kt.schueler.stammschule is not none %}{{ kt.schueler.stammschule.name }},
|
||||
{% endif %}{{ kt.schueler.id }})</span>
|
||||
<span class="detail">({{ kt.schueler.id }}{% if kt.schueler.koop %}, Koop{% endif %})</span>
|
||||
</td>
|
||||
<td>{{ macros.date(kt.klausur.date) }}</td>
|
||||
<td>{{ kt.klausur.kursname }}</td>
|
||||
|
||||
Reference in New Issue
Block a user