- finished to implement the new events API

- cleaned some things up
- removed unnecessary files
This commit is contained in:
Dorian Zedler 2019-01-19 22:44:48 +01:00
parent c8f165910b
commit b23e564e97
36 changed files with 148 additions and 2721 deletions

View file

@ -22,9 +22,6 @@ public:
QList<QStringList> readFilters();
void writeFilters(QList<QStringList> list);
Q_INVOKABLE QStringList readFiltersQml();
Q_INVOKABLE void writeFiltersQml(QStringList);
QSettings *settingsManager;
QFile * filtersFile;

View file

@ -27,8 +27,6 @@ public:
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
QHash<int, QByteArray> roleNames() const;
Q_INVOKABLE QStringList getHeader();
Q_INVOKABLE QVariantMap get(int row) const;
private:

View file

@ -37,13 +37,11 @@ private:
QNetworkAccessManager *networkManager;
QNetworkAccessManager *refreshNetworkManager;
QTimer *checkConnTimer;
float progress;
int authErrorCount;
ReturnData_t senddata(QUrl serviceUrl, QUrlQuery postData);
private slots:
void updateProgress(qint64 read, qint64 total);
void setState(QString state);
@ -55,7 +53,6 @@ public slots:
Q_INVOKABLE int login(QString username, QString password, bool permanent);
Q_INVOKABLE int logout();
Q_INVOKABLE int checkConn();
Q_INVOKABLE float getProgress();
Q_INVOKABLE int getFoodPlan();
Q_INVOKABLE int getEvents(QString day);
@ -67,8 +64,6 @@ signals:
public:
QList<QList<QString>> m_weekplan;
QList<QStringList> m_events;
QStringList m_eventHeader;
};
extern ServerConn * pGlobalServConn;

View file

@ -5,35 +5,16 @@ import "../Components"
Page {
id: root
//anchors.fill: parent
property string day
title: qsTr("Vertretungsplan")
property string icon: "qrc:/graphics/FannyLogo_small.png"
property string link: "http://www.fanny-leicht.de/j34"
property int status: -1
signal opened()
onOpened: {
}
// Image{
// source: "qrc:/graphics/chat_background.jpg";
// height: parent.height
// width: parent.width
// fillMode: Image.Tile
// horizontalAlignment: Image.AlignLeft
// verticalAlignment: Image.AlignTop
// }
// LinearGradient {
// anchors.fill: parent
// start: Qt.point(0, 0)
// end: Qt.point(0, parent.height)
// gradient: Gradient {
// GradientStop { position: 0.0; color: "#4db2b3" }
// GradientStop { position: 1.0; color: "#8f4dae" }
// }
// }
onOpened: {}
Loader {
id: pageLoader

View file

@ -14,9 +14,7 @@ Page {
signal opened()
onOpened: {
console.log("Filter Form opened")
}
onOpened: {}
Dialog {
id: filterDialog

View file

@ -5,36 +5,14 @@ import "../Components"
Page {
id:root
//anchors.fill: parent
property bool cookplanChanged
title: qsTr("Speiseplan")
property string icon: "qrc:/graphics/images/TreffpunktFannyLogo.png"
property string link: "http://www.treffpunkt-fanny.de"
property int status: -1
signal opened()
onOpened: {
console.warn("foodplan opened")
}
// Image{
// source: "qrc:/graphics/chat_background.jpg";
// height: parent.height
// width: parent.width
// fillMode: Image.Tile
// horizontalAlignment: Image.AlignLeft
// verticalAlignment: Image.AlignTop
// }
// LinearGradient {
// anchors.fill: parent
// start: Qt.point(0, 0)
// end: Qt.point(0, parent.height)
// gradient: Gradient {
// GradientStop { position: 0.0; color: "#4db2b3" }
// GradientStop { position: 1.0; color: "#8f4dae" }
// }
// }
onOpened: {}
Loader {
id: pageLoader

View file

@ -8,9 +8,7 @@ Page {
signal opened()
onOpened: {
console.log("Home Form opened")
}
onOpened: {}
Column {
id: mainMenu
@ -32,7 +30,7 @@ Page {
FancyButton {
id: todayButton
image: "qrc:/graphics/sheute.png"
image: "qrc:/graphics/icons/sheute.png"
width: mainMenu.buttonWidth
height: mainMenu.buttonHeight
@ -45,7 +43,7 @@ Page {
FancyButton {
id: tomorrowButton
image: "qrc:/graphics/smorgen.png"
image: "qrc:/graphics/icons/smorgen.png"
width: mainMenu.buttonWidth
height: mainMenu.buttonHeight
@ -178,7 +176,6 @@ Page {
}
onAccepted: {
serverConn.logout()
app.state = "notLoggedIn"
}
}
}

View file

@ -10,11 +10,7 @@ Page {
signal opened()
onOpened: {
console.log("Settings Form opened")
var filters = _cppAppSettings.readFiltersQml()
}
onOpened: {}
Column {
id: settingsCol

View file

@ -25,7 +25,7 @@ ApplicationWindow {
property string backgroundColor: "white"
property string toolbarColor: "#312f38"
state: "loggedIn"
state: serverConn.state
states: [
State {
@ -118,6 +118,11 @@ ApplicationWindow {
errorString = "Alte Daten"
errorDescription = "Es konnte keine Verbindung zum Server hergestellt werden, aber es sind noch alte Daten gespeichert."
break
case 903:
infoLevel = 1
errorString = "Ungültiger Aufruf"
errorDescription = "Die aufgerufene Funktion ist momentan nicht verfügbar, bitte versuche es später erneut."
break
default:
infoLevel = 2
errorString = "Unerwarteter Fehler ("+errorCode+")"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 117 KiB

View file

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

View file

@ -0,0 +1 @@
{"result":200,"version":"0.01.14","targetDate":"Klasse 21.1. / Montag Woche-A","stewardingClass":"Ordnungsdienst: Klasse 5a","additionalHeaderData":[],"events":[["Kl.","Std.","Vertr.","Fach","Rau","nach","Vertretungs-Text"],["5a","1","Hl","E","---","Mi-23.1. / 2",""],["5a","5","Ni","BK","126","",""],["5b","3-4","Sg","E","114","",""],["6c","5","Gg","G","121","He / Aufgaben",""],["6d","1","Gw","D","---","Entfall",""],["6d","2","Ki","D","210","Mc / Aufgaben",""],["7b","1-2","Tri","E","414","",""],["7bd","8-9","Rs","inf","---","Entfall",""],["7c","8-9","Klr","Bio","415","Raum!",""],["8b","10","Tri","G","312","",""],["8b","11","He","Gk","323","",""],["9c","3-4","An","E","220","Entfall fu00fcr Lehrer",""],["11","3-4","Tb","D4","313","Entfall fu00fcr Lehrer",""],["11","6","Bz","410","Schule trifft Beruf","",""]],"rawHeader":["D-70563 FANNY-LEICHT-GYMN. Schuljahr 2018/19 - 2. Halbjahr Untis 2017","STUTTGART, F.-LEICHT-STR. 13 gu00fcltig ab 04. Februar 2019 18.1.2019 17:50","Klasse 21.1. / Montag Woche-A","Ordnungsdienst: Klasse 5a"],"rawData":["Kl. Std. Vertr. Fach Rau nach Vertretungs-Text","5a 1 Hl E --- Mi-23.1. / 2","5a 5 Ni BK 126","5b 3-4 Sg E 114","6c 5 Gg G 121 He / Aufgaben","6d 1 Gw D --- Entfall","6d 2 Ki D 210 Mc / Aufgaben","7b 1-2 Tri E 414","7bd 8-9 Rs inf --- Entfall","7c 8-9 Klr Bio 415 Raum!","8b 10 Tri G 312","8b 11 He Gk 323","9c 3-4 An E 220 Entfall fu00fcr Lehrer","11 3-4 Tb D4 313 Entfall fu00fcr Lehrer","11 6 Bz 410 Schule trifft Beruf"]}

View file

@ -1,485 +0,0 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<title>Download File-html.html</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<br/>
<style type="text/css">
<!--
p {margin: 0; padding: 0;} .ft10{font-size:17px;font-family:Times;color:#000000;}
.ft11{font-size:16px;font-family:Times;color:#000000;}
.ft12{font-size:25px;font-family:Times;color:#000000;}
.ft13{font-size:14px;font-family:Times;color:#000000;}
.ft14{font-size:16px;font-family:Times;color:#000000;}
.ft15{font-size:16px;line-height:23px;font-family:Times;color:#000000;}
-->
</style>
</head>
<body bgcolor="#A0A0A0" vlink="blue" link="blue">
<div id="page1-div" style="position:relative;width:893px;height:1262px;">
<p style="position:absolute;top:10px;left:3px;white-space:nowrap" class="ft10"><b>D-70563&#160;FANNY-LEICHT-GYMN.</b></p>
<p style="position:absolute;top:32px;left:3px;white-space:nowrap" class="ft11">STUTTGART,&#160;F.-LEICHT-STR.&#160;13</p>
<p style="position:absolute;top:9px;left:332px;white-space:nowrap" class="ft15">Schuljahr&#160;2018/19&#160;-&#160;1.&#160;Halbjahr<br/>gültig&#160;ab&#160;10. September&#160;2018</p>
<p style="position:absolute;top:10px;left:708px;white-space:nowrap" class="ft10"><b>Untis&#160;2017</b></p>
<p style="position:absolute;top:32px;left:671px;white-space:nowrap" class="ft11">13.12.2018&#160;&#160;9:04</p>
<p style="position:absolute;top:64px;left:3px;white-space:nowrap" class="ft12"><b>Klasse&#160;&#160;13.12.&#160;/&#160;Donnerstag&#160;Woche-A</b></p>
<p style="position:absolute;top:111px;left:3px;white-space:nowrap" class="ft13">Ordnungsdienst: Klasse&#160;10a</p>
<p style="position:absolute;top:172px;left:3px;white-space:nowrap" class="ft11">Kl.</p>
<p style="position:absolute;top:172px;left:55px;white-space:nowrap" class="ft11">Std.</p>
<p style="position:absolute;top:172px;left:123px;white-space:nowrap" class="ft11">Vertr.&#160;Fach&#160;Rau&#160;nach</p>
<p style="position:absolute;top:172px;left:391px;white-space:nowrap" class="ft11">Vertretungs-Text</p>
<p style="position:absolute;top:194px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:194px;left:55px;white-space:nowrap" class="ft11">1</p>
<p style="position:absolute;top:194px;left:123px;white-space:nowrap" class="ft14"><i>Hei</i></p>
<p style="position:absolute;top:194px;left:178px;white-space:nowrap" class="ft14"><i>D</i></p>
<p style="position:absolute;top:194px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:194px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:217px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:217px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:217px;left:123px;white-space:nowrap" class="ft11">Fu</p>
<p style="position:absolute;top:217px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:217px;left:233px;white-space:nowrap" class="ft11">114</p>
<p style="position:absolute;top:217px;left:391px;white-space:nowrap" class="ft11">Hei&#160;/&#160;Aufgaben,&#160;Arbeitsheft!</p>
<p style="position:absolute;top:240px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:240px;left:55px;white-space:nowrap" class="ft11">3</p>
<p style="position:absolute;top:240px;left:123px;white-space:nowrap" class="ft11">Oe</p>
<p style="position:absolute;top:240px;left:178px;white-space:nowrap" class="ft11">M</p>
<p style="position:absolute;top:240px;left:233px;white-space:nowrap" class="ft11">114</p>
<p style="position:absolute;top:240px;left:391px;white-space:nowrap" class="ft11">Ei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:263px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:263px;left:55px;white-space:nowrap" class="ft11">4</p>
<p style="position:absolute;top:263px;left:123px;white-space:nowrap" class="ft11">Rm</p>
<p style="position:absolute;top:263px;left:178px;white-space:nowrap" class="ft11">M</p>
<p style="position:absolute;top:263px;left:233px;white-space:nowrap" class="ft11">114</p>
<p style="position:absolute;top:263px;left:391px;white-space:nowrap" class="ft11">Ei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:285px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:285px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:285px;left:123px;white-space:nowrap" class="ft11">Sf</p>
<p style="position:absolute;top:285px;left:178px;white-space:nowrap" class="ft11">EvR</p>
<p style="position:absolute;top:285px;left:233px;white-space:nowrap" class="ft11">321</p>
<p style="position:absolute;top:285px;left:391px;white-space:nowrap" class="ft11">&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:306px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:306px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:306px;left:123px;white-space:nowrap" class="ft11">Dk</p>
<p style="position:absolute;top:306px;left:178px;white-space:nowrap" class="ft11">KR</p>
<p style="position:absolute;top:306px;left:233px;white-space:nowrap" class="ft11">121</p>
<p style="position:absolute;top:306px;left:391px;white-space:nowrap" class="ft11">We&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:328px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:328px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:328px;left:123px;white-space:nowrap" class="ft14"><i></i></p>
<p style="position:absolute;top:328px;left:178px;white-space:nowrap" class="ft14"><i>EvR</i></p>
<p style="position:absolute;top:328px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:328px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:349px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:349px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:349px;left:123px;white-space:nowrap" class="ft14"><i>We</i></p>
<p style="position:absolute;top:349px;left:178px;white-space:nowrap" class="ft14"><i>KR</i></p>
<p style="position:absolute;top:349px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:349px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:372px;left:3px;white-space:nowrap" class="ft11">6d</p>
<p style="position:absolute;top:372px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:371px;left:123px;white-space:nowrap" class="ft14"><i>Ku</i></p>
<p style="position:absolute;top:371px;left:178px;white-space:nowrap" class="ft14"><i>Ek</i></p>
<p style="position:absolute;top:372px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:372px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:394px;left:3px;white-space:nowrap" class="ft11">7b</p>
<p style="position:absolute;top:394px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:394px;left:123px;white-space:nowrap" class="ft11">Ga</p>
<p style="position:absolute;top:394px;left:178px;white-space:nowrap" class="ft11">G</p>
<p style="position:absolute;top:394px;left:233px;white-space:nowrap" class="ft11">414</p>
<p style="position:absolute;top:394px;left:391px;white-space:nowrap" class="ft11">KA&#160;Fkr</p>
<p style="position:absolute;top:417px;left:3px;white-space:nowrap" class="ft11">7b</p>
<p style="position:absolute;top:417px;left:55px;white-space:nowrap" class="ft11">8</p>
<p style="position:absolute;top:417px;left:123px;white-space:nowrap" class="ft14"><i>Gg</i></p>
<p style="position:absolute;top:417px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:417px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:417px;left:275px;white-space:nowrap" class="ft11">Mi-12.12.&#160;/&#160;1</p>
<p style="position:absolute;top:440px;left:3px;white-space:nowrap" class="ft11">7b</p>
<p style="position:absolute;top:440px;left:55px;white-space:nowrap" class="ft11">9</p>
<p style="position:absolute;top:439px;left:123px;white-space:nowrap" class="ft14"><i>Gg</i></p>
<p style="position:absolute;top:439px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:440px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:440px;left:275px;white-space:nowrap" class="ft11">Mi-12.12.&#160;/&#160;2</p>
<p style="position:absolute;top:462px;left:3px;white-space:nowrap" class="ft11">7c</p>
<p style="position:absolute;top:462px;left:55px;white-space:nowrap" class="ft11">8&#160;-&#160;9</p>
<p style="position:absolute;top:462px;left:123px;white-space:nowrap" class="ft14"><i>Gw</i></p>
<p style="position:absolute;top:462px;left:178px;white-space:nowrap" class="ft14"><i>G</i></p>
<p style="position:absolute;top:462px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:462px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:485px;left:3px;white-space:nowrap" class="ft11">7d</p>
<p style="position:absolute;top:485px;left:55px;white-space:nowrap" class="ft11">1</p>
<p style="position:absolute;top:485px;left:123px;white-space:nowrap" class="ft14"><i>Ku</i></p>
<p style="position:absolute;top:485px;left:178px;white-space:nowrap" class="ft14"><i>D</i></p>
<p style="position:absolute;top:485px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:485px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:508px;left:3px;white-space:nowrap" class="ft11">7d</p>
<p style="position:absolute;top:508px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:508px;left:123px;white-space:nowrap" class="ft11">Oz</p>
<p style="position:absolute;top:508px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:508px;left:233px;white-space:nowrap" class="ft11">416</p>
<p style="position:absolute;top:508px;left:391px;white-space:nowrap" class="ft11">Ku&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:530px;left:3px;white-space:nowrap" class="ft11">8a</p>
<p style="position:absolute;top:530px;left:55px;white-space:nowrap" class="ft11">1&#160;-&#160;2</p>
<p style="position:absolute;top:530px;left:123px;white-space:nowrap" class="ft14"><i>Ei</i></p>
<p style="position:absolute;top:530px;left:178px;white-space:nowrap" class="ft14"><i>Ch</i></p>
<p style="position:absolute;top:530px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:530px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:530px;left:391px;white-space:nowrap" class="ft11">KEINE&#160;KA</p>
<p style="position:absolute;top:553px;left:3px;white-space:nowrap" class="ft11">9ac</p>
<p style="position:absolute;top:553px;left:55px;white-space:nowrap" class="ft11">8&#160;-&#160;9</p>
<p style="position:absolute;top:553px;left:123px;white-space:nowrap" class="ft14"><i>Lk</i></p>
<p style="position:absolute;top:553px;left:178px;white-space:nowrap" class="ft14"><i>SpJ</i></p>
<p style="position:absolute;top:553px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:553px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:576px;left:3px;white-space:nowrap" class="ft11">9c</p>
<p style="position:absolute;top:576px;left:55px;white-space:nowrap" class="ft11">1&#160;-&#160;2</p>
<p style="position:absolute;top:576px;left:123px;white-space:nowrap" class="ft11">Jw</p>
<p style="position:absolute;top:576px;left:178px;white-space:nowrap" class="ft11">Gk</p>
<p style="position:absolute;top:576px;left:233px;white-space:nowrap" class="ft11">322</p>
<p style="position:absolute;top:576px;left:391px;white-space:nowrap" class="ft11">Raum!</p>
<p style="position:absolute;top:599px;left:3px;white-space:nowrap" class="ft11">9c</p>
<p style="position:absolute;top:599px;left:55px;white-space:nowrap" class="ft11">3</p>
<p style="position:absolute;top:599px;left:123px;white-space:nowrap" class="ft11">Hf</p>
<p style="position:absolute;top:599px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:599px;left:233px;white-space:nowrap" class="ft11">220</p>
<p style="position:absolute;top:599px;left:391px;white-space:nowrap" class="ft11">Hei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:621px;left:3px;white-space:nowrap" class="ft11">9c</p>
<p style="position:absolute;top:621px;left:55px;white-space:nowrap" class="ft11">4</p>
<p style="position:absolute;top:621px;left:123px;white-space:nowrap" class="ft11">Bkn</p>
<p style="position:absolute;top:621px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:621px;left:233px;white-space:nowrap" class="ft11">220</p>
<p style="position:absolute;top:621px;left:391px;white-space:nowrap" class="ft11">Hei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:644px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:644px;left:55px;white-space:nowrap" class="ft11">1</p>
<p style="position:absolute;top:644px;left:123px;white-space:nowrap" class="ft14"><i>Rt</i></p>
<p style="position:absolute;top:644px;left:178px;white-space:nowrap" class="ft14"><i>Gk</i></p>
<p style="position:absolute;top:644px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:644px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;3</p>
<p style="position:absolute;top:667px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:667px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:666px;left:123px;white-space:nowrap" class="ft14"><i>Rt</i></p>
<p style="position:absolute;top:666px;left:178px;white-space:nowrap" class="ft14"><i>Gk</i></p>
<p style="position:absolute;top:667px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:667px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;4</p>
<p style="position:absolute;top:689px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:689px;left:55px;white-space:nowrap" class="ft11">3</p>
<p style="position:absolute;top:689px;left:123px;white-space:nowrap" class="ft11">Rt</p>
<p style="position:absolute;top:689px;left:178px;white-space:nowrap" class="ft11">Gk</p>
<p style="position:absolute;top:689px;left:233px;white-space:nowrap" class="ft11">218</p>
<p style="position:absolute;top:712px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:712px;left:55px;white-space:nowrap" class="ft11">4</p>
<p style="position:absolute;top:712px;left:123px;white-space:nowrap" class="ft11">Rt</p>
<p style="position:absolute;top:712px;left:178px;white-space:nowrap" class="ft11">Gk</p>
<p style="position:absolute;top:712px;left:233px;white-space:nowrap" class="ft11">218</p>
<p style="position:absolute;top:735px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:735px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:735px;left:123px;white-space:nowrap" class="ft11">Ni</p>
<p style="position:absolute;top:735px;left:178px;white-space:nowrap" class="ft11">BK</p>
<p style="position:absolute;top:735px;left:233px;white-space:nowrap" class="ft11">126</p>
<p style="position:absolute;top:757px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:757px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:757px;left:123px;white-space:nowrap" class="ft11">Ni</p>
<p style="position:absolute;top:757px;left:178px;white-space:nowrap" class="ft11">BK</p>
<p style="position:absolute;top:757px;left:233px;white-space:nowrap" class="ft11">126</p>
<p style="position:absolute;top:780px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:780px;left:55px;white-space:nowrap" class="ft11">8</p>
<p style="position:absolute;top:780px;left:123px;white-space:nowrap" class="ft14"><i>Ni</i></p>
<p style="position:absolute;top:780px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:780px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:780px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;5</p>
<p style="position:absolute;top:803px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:803px;left:55px;white-space:nowrap" class="ft11">9</p>
<p style="position:absolute;top:802px;left:123px;white-space:nowrap" class="ft14"><i>Ni</i></p>
<p style="position:absolute;top:802px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:803px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:803px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;6</p>
<p style="position:absolute;top:825px;left:3px;white-space:nowrap" class="ft11">10b</p>
<p style="position:absolute;top:825px;left:55px;white-space:nowrap" class="ft11">10&#160;-&#160;11</p>
<p style="position:absolute;top:825px;left:123px;white-space:nowrap" class="ft14"><i>Fe</i></p>
<p style="position:absolute;top:825px;left:178px;white-space:nowrap" class="ft14"><i>Ph</i></p>
<p style="position:absolute;top:825px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:825px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:848px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:848px;left:55px;white-space:nowrap" class="ft11">3&#160;-&#160;4</p>
<p style="position:absolute;top:848px;left:123px;white-space:nowrap" class="ft14"><i>Ft</i></p>
<p style="position:absolute;top:848px;left:178px;white-space:nowrap" class="ft14"><i>g4</i></p>
<p style="position:absolute;top:848px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:848px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:871px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:871px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:870px;left:123px;white-space:nowrap" class="ft14"><i>Ei</i></p>
<p style="position:absolute;top:870px;left:178px;white-space:nowrap" class="ft14"><i>M1</i></p>
<p style="position:absolute;top:871px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:871px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:893px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:893px;left:55px;white-space:nowrap" class="ft11">7</p>
<p style="position:absolute;top:893px;left:123px;white-space:nowrap" class="ft11">Gt</p>
<p style="position:absolute;top:893px;left:178px;white-space:nowrap" class="ft11">sem1&#160;324</p>
<p style="position:absolute;top:893px;left:391px;white-space:nowrap" class="ft11">geteilte&#160;Gruppen&#160;Schwimmen&#160;/&#160;</p>
<p style="position:absolute;top:916px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:916px;left:55px;white-space:nowrap" class="ft11">8&#160;-&#160;9</p>
<p style="position:absolute;top:916px;left:123px;white-space:nowrap" class="ft11">Ro</p>
<p style="position:absolute;top:916px;left:178px;white-space:nowrap" class="ft11">sem1&#160;???</p>
<p style="position:absolute;top:939px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:939px;left:55px;white-space:nowrap" class="ft11">10&#160;-&#160;11</p>
<p style="position:absolute;top:939px;left:123px;white-space:nowrap" class="ft14"><i>Lk</i></p>
<p style="position:absolute;top:939px;left:178px;white-space:nowrap" class="ft14"><i>sp3</i></p>
<p style="position:absolute;top:939px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:939px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:962px;left:3px;white-space:nowrap" class="ft11">12</p>
<p style="position:absolute;top:962px;left:55px;white-space:nowrap" class="ft11">1&#160;-&#160;2</p>
<p style="position:absolute;top:962px;left:123px;white-space:nowrap" class="ft11">Ni</p>
<p style="position:absolute;top:962px;left:178px;white-space:nowrap" class="ft11">bk1</p>
<p style="position:absolute;top:962px;left:233px;white-space:nowrap" class="ft11">412</p>
<p style="position:absolute;top:962px;left:391px;white-space:nowrap" class="ft11">Raum!</p>
<p style="position:absolute;top:984px;left:3px;white-space:nowrap" class="ft11">12</p>
<p style="position:absolute;top:984px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:984px;left:123px;white-space:nowrap" class="ft14"><i>Ku</i></p>
<p style="position:absolute;top:984px;left:178px;white-space:nowrap" class="ft14"><i>D2</i></p>
<p style="position:absolute;top:984px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:984px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:1007px;left:3px;white-space:nowrap" class="ft11">1112&#160;8&#160;-&#160;9</p>
<p style="position:absolute;top:1007px;left:123px;white-space:nowrap" class="ft14"><i>Fe</i></p>
<p style="position:absolute;top:1007px;left:178px;white-space:nowrap" class="ft14"><i>vma</i></p>
<p style="position:absolute;top:1007px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:1007px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
</div>
</body>
</html>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<title>Download File-html.html</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<br/>
<style type="text/css">
<!--
p {margin: 0; padding: 0;} .ft20{font-size:17px;font-family:Times;color:#000000;}
.ft21{font-size:16px;font-family:Times;color:#000000;}
.ft22{font-size:25px;font-family:Times;color:#000000;}
.ft23{font-size:14px;font-family:Times;color:#000000;}
.ft24{font-size:16px;font-family:Times;color:#000000;}
.ft25{font-size:16px;line-height:23px;font-family:Times;color:#000000;}
-->
</style>
</head>
<body bgcolor="#A0A0A0" vlink="blue" link="blue">
<div id="page2-div" style="position:relative;width:893px;height:1262px;">
<p style="position:absolute;top:10px;left:3px;white-space:nowrap" class="ft20"><b>D-70563&#160;FANNY-LEICHT-GYMN.</b></p>
<p style="position:absolute;top:32px;left:3px;white-space:nowrap" class="ft21">STUTTGART,&#160;F.-LEICHT-STR.&#160;13</p>
<p style="position:absolute;top:9px;left:332px;white-space:nowrap" class="ft25">Schuljahr&#160;2018/19&#160;-&#160;1.&#160;Halbjahr<br/>gültig&#160;ab&#160;10. September&#160;2018</p>
<p style="position:absolute;top:10px;left:708px;white-space:nowrap" class="ft20"><b>Untis&#160;2017</b></p>
<p style="position:absolute;top:32px;left:671px;white-space:nowrap" class="ft21">13.12.2018&#160;&#160;8:11</p>
<p style="position:absolute;top:64px;left:3px;white-space:nowrap" class="ft22"><b>Klasse&#160;&#160;14.12.&#160;/&#160;Freitag&#160;Woche-A</b></p>
<p style="position:absolute;top:111px;left:3px;white-space:nowrap" class="ft23">Ordnungsdienst: Klasse&#160;10a</p>
<p style="position:absolute;top:172px;left:3px;white-space:nowrap" class="ft21">Kl.</p>
<p style="position:absolute;top:172px;left:55px;white-space:nowrap" class="ft21">Std.&#160;Vertr.&#160;Fach&#160;Rau&#160;nach</p>
<p style="position:absolute;top:172px;left:398px;white-space:nowrap" class="ft21">Vertretungs-Text</p>
<p style="position:absolute;top:194px;left:3px;white-space:nowrap" class="ft21">5abc&#160;1</p>
<p style="position:absolute;top:194px;left:102px;white-space:nowrap" class="ft24"><i>We</i></p>
<p style="position:absolute;top:194px;left:157px;white-space:nowrap" class="ft24"><i>KR</i></p>
<p style="position:absolute;top:194px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:194px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:215px;left:3px;white-space:nowrap" class="ft21">5a</p>
<p style="position:absolute;top:215px;left:55px;white-space:nowrap" class="ft21">1</p>
<p style="position:absolute;top:215px;left:102px;white-space:nowrap" class="ft24"><i></i></p>
<p style="position:absolute;top:215px;left:157px;white-space:nowrap" class="ft24"><i>EvR</i></p>
<p style="position:absolute;top:215px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:215px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:238px;left:3px;white-space:nowrap" class="ft21">5abc&#160;2</p>
<p style="position:absolute;top:238px;left:102px;white-space:nowrap" class="ft21">Jw</p>
<p style="position:absolute;top:238px;left:157px;white-space:nowrap" class="ft21">KR</p>
<p style="position:absolute;top:238px;left:209px;white-space:nowrap" class="ft21">123</p>
<p style="position:absolute;top:238px;left:398px;white-space:nowrap" class="ft21">We&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:258px;left:3px;white-space:nowrap" class="ft21">5a</p>
<p style="position:absolute;top:258px;left:55px;white-space:nowrap" class="ft21">2</p>
<p style="position:absolute;top:258px;left:102px;white-space:nowrap" class="ft21">Ng</p>
<p style="position:absolute;top:258px;left:157px;white-space:nowrap" class="ft21">EvR</p>
<p style="position:absolute;top:258px;left:209px;white-space:nowrap" class="ft21">321</p>
<p style="position:absolute;top:258px;left:398px;white-space:nowrap" class="ft21">&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:281px;left:3px;white-space:nowrap" class="ft21">5d</p>
<p style="position:absolute;top:281px;left:55px;white-space:nowrap" class="ft21">3</p>
<p style="position:absolute;top:281px;left:102px;white-space:nowrap" class="ft21">Lo</p>
<p style="position:absolute;top:281px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:281px;left:209px;white-space:nowrap" class="ft21">122</p>
<p style="position:absolute;top:281px;left:398px;white-space:nowrap" class="ft21">anstatt&#160;17.12.,&#160;1.&#160;Std.</p>
<p style="position:absolute;top:304px;left:3px;white-space:nowrap" class="ft21">5d</p>
<p style="position:absolute;top:304px;left:55px;white-space:nowrap" class="ft21">4</p>
<p style="position:absolute;top:304px;left:102px;white-space:nowrap" class="ft21">Lo</p>
<p style="position:absolute;top:304px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:304px;left:209px;white-space:nowrap" class="ft21">122</p>
<p style="position:absolute;top:304px;left:398px;white-space:nowrap" class="ft21">anstatt&#160;19.12.,&#160;1&#160;Std.</p>
<p style="position:absolute;top:326px;left:3px;white-space:nowrap" class="ft21">6a</p>
<p style="position:absolute;top:326px;left:55px;white-space:nowrap" class="ft21">6</p>
<p style="position:absolute;top:326px;left:102px;white-space:nowrap" class="ft24"><i>He</i></p>
<p style="position:absolute;top:326px;left:157px;white-space:nowrap" class="ft24"><i>E</i></p>
<p style="position:absolute;top:326px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:326px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:349px;left:3px;white-space:nowrap" class="ft21">6acd&#160;7</p>
<p style="position:absolute;top:349px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:349px;left:157px;white-space:nowrap" class="ft24"><i>MF</i></p>
<p style="position:absolute;top:349px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:349px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:372px;left:3px;white-space:nowrap" class="ft21">6c</p>
<p style="position:absolute;top:372px;left:55px;white-space:nowrap" class="ft21">1</p>
<p style="position:absolute;top:371px;left:102px;white-space:nowrap" class="ft24"><i>Ku</i></p>
<p style="position:absolute;top:371px;left:157px;white-space:nowrap" class="ft24"><i>D</i></p>
<p style="position:absolute;top:372px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:372px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:394px;left:3px;white-space:nowrap" class="ft21">6c</p>
<p style="position:absolute;top:394px;left:55px;white-space:nowrap" class="ft21">2</p>
<p style="position:absolute;top:394px;left:102px;white-space:nowrap" class="ft21">Sl</p>
<p style="position:absolute;top:394px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:394px;left:209px;white-space:nowrap" class="ft21">121</p>
<p style="position:absolute;top:394px;left:398px;white-space:nowrap" class="ft21">Ku&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:417px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:417px;left:55px;white-space:nowrap" class="ft21">3</p>
<p style="position:absolute;top:417px;left:102px;white-space:nowrap" class="ft21">Di</p>
<p style="position:absolute;top:417px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:417px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:417px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:440px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:440px;left:55px;white-space:nowrap" class="ft21">4</p>
<p style="position:absolute;top:440px;left:102px;white-space:nowrap" class="ft21">Hhn</p>
<p style="position:absolute;top:440px;left:157px;white-space:nowrap" class="ft21">M</p>
<p style="position:absolute;top:440px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:462px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:462px;left:55px;white-space:nowrap" class="ft21">5</p>
<p style="position:absolute;top:462px;left:102px;white-space:nowrap" class="ft21">Hhn</p>
<p style="position:absolute;top:462px;left:157px;white-space:nowrap" class="ft21">M</p>
<p style="position:absolute;top:462px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:485px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:485px;left:55px;white-space:nowrap" class="ft21">6</p>
<p style="position:absolute;top:485px;left:102px;white-space:nowrap" class="ft21">Hhn</p>
<p style="position:absolute;top:485px;left:157px;white-space:nowrap" class="ft21">M</p>
<p style="position:absolute;top:485px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:485px;left:398px;white-space:nowrap" class="ft21">findet&#160;statt!</p>
<p style="position:absolute;top:508px;left:3px;white-space:nowrap" class="ft21">7b</p>
<p style="position:absolute;top:508px;left:55px;white-space:nowrap" class="ft21">6</p>
<p style="position:absolute;top:507px;left:102px;white-space:nowrap" class="ft24"><i>Rt</i></p>
<p style="position:absolute;top:507px;left:157px;white-space:nowrap" class="ft24"><i>D</i></p>
<p style="position:absolute;top:508px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:508px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:530px;left:3px;white-space:nowrap" class="ft21">8a</p>
<p style="position:absolute;top:530px;left:55px;white-space:nowrap" class="ft21">1</p>
<p style="position:absolute;top:530px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:530px;left:157px;white-space:nowrap" class="ft24"><i>M</i></p>
<p style="position:absolute;top:530px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:530px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:553px;left:3px;white-space:nowrap" class="ft21">8a</p>
<p style="position:absolute;top:553px;left:55px;white-space:nowrap" class="ft21">2</p>
<p style="position:absolute;top:553px;left:102px;white-space:nowrap" class="ft21">Li</p>
<p style="position:absolute;top:553px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:553px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:553px;left:398px;white-space:nowrap" class="ft21">statt&#160;18.12.</p>
<p style="position:absolute;top:576px;left:3px;white-space:nowrap" class="ft21">9c</p>
<p style="position:absolute;top:576px;left:55px;white-space:nowrap" class="ft21">5&#160;-&#160;6</p>
<p style="position:absolute;top:576px;left:102px;white-space:nowrap" class="ft24"><i>Hei</i></p>
<p style="position:absolute;top:576px;left:157px;white-space:nowrap" class="ft24"><i>D</i></p>
<p style="position:absolute;top:576px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:576px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:599px;left:3px;white-space:nowrap" class="ft21">9d</p>
<p style="position:absolute;top:599px;left:55px;white-space:nowrap" class="ft21">1&#160;-&#160;2&#160;Rm</p>
<p style="position:absolute;top:599px;left:157px;white-space:nowrap" class="ft21">NWT&#160;412</p>
<p style="position:absolute;top:599px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:621px;left:3px;white-space:nowrap" class="ft21">9d</p>
<p style="position:absolute;top:621px;left:55px;white-space:nowrap" class="ft21">5&#160;-&#160;6</p>
<p style="position:absolute;top:621px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:621px;left:157px;white-space:nowrap" class="ft24"><i>M</i></p>
<p style="position:absolute;top:621px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:621px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:644px;left:3px;white-space:nowrap" class="ft21">10a</p>
<p style="position:absolute;top:644px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Smr</p>
<p style="position:absolute;top:644px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:644px;left:209px;white-space:nowrap" class="ft21">413</p>
<p style="position:absolute;top:644px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:664px;left:3px;white-space:nowrap" class="ft21">10ad&#160;3</p>
<p style="position:absolute;top:664px;left:102px;white-space:nowrap" class="ft21">Ro</p>
<p style="position:absolute;top:664px;left:157px;white-space:nowrap" class="ft21">EvR</p>
<p style="position:absolute;top:664px;left:209px;white-space:nowrap" class="ft21">SH</p>
<p style="position:absolute;top:664px;left:398px;white-space:nowrap" class="ft21">Sport!</p>
<p style="position:absolute;top:685px;left:3px;white-space:nowrap" class="ft21">10ad&#160;3&#160;-&#160;4</p>
<p style="position:absolute;top:685px;left:102px;white-space:nowrap" class="ft24"><i>We</i></p>
<p style="position:absolute;top:685px;left:157px;white-space:nowrap" class="ft24"><i>KR</i></p>
<p style="position:absolute;top:685px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:685px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:708px;left:3px;white-space:nowrap" class="ft21">10ad&#160;4</p>
<p style="position:absolute;top:708px;left:102px;white-space:nowrap" class="ft21">Lk</p>
<p style="position:absolute;top:708px;left:157px;white-space:nowrap" class="ft21">EvR</p>
<p style="position:absolute;top:708px;left:209px;white-space:nowrap" class="ft21">SH</p>
<p style="position:absolute;top:708px;left:398px;white-space:nowrap" class="ft21">Sport!</p>
<p style="position:absolute;top:730px;left:3px;white-space:nowrap" class="ft21">10b</p>
<p style="position:absolute;top:730px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Ki</p>
<p style="position:absolute;top:730px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:730px;left:209px;white-space:nowrap" class="ft21">414</p>
<p style="position:absolute;top:730px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:751px;left:3px;white-space:nowrap" class="ft21">10b</p>
<p style="position:absolute;top:751px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4</p>
<p style="position:absolute;top:751px;left:102px;white-space:nowrap" class="ft24"><i>He</i></p>
<p style="position:absolute;top:751px;left:157px;white-space:nowrap" class="ft24"><i>Gk</i></p>
<p style="position:absolute;top:751px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:751px;left:251px;white-space:nowrap" class="ft21">Entfall&#160;für&#160;Lehrer</p>
<p style="position:absolute;top:774px;left:3px;white-space:nowrap" class="ft21">10bc&#160;5&#160;-&#160;6</p>
<p style="position:absolute;top:773px;left:102px;white-space:nowrap" class="ft24"><i>We</i></p>
<p style="position:absolute;top:773px;left:157px;white-space:nowrap" class="ft24"><i>KR</i></p>
<p style="position:absolute;top:774px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:774px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:796px;left:3px;white-space:nowrap" class="ft21">10c</p>
<p style="position:absolute;top:796px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4</p>
<p style="position:absolute;top:796px;left:102px;white-space:nowrap" class="ft24"><i>Ran</i></p>
<p style="position:absolute;top:796px;left:157px;white-space:nowrap" class="ft24"><i>M</i></p>
<p style="position:absolute;top:796px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:796px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:796px;left:398px;white-space:nowrap" class="ft21">alle bei&#160;Oe</p>
<p style="position:absolute;top:817px;left:3px;white-space:nowrap" class="ft21">10c</p>
<p style="position:absolute;top:817px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Oe</p>
<p style="position:absolute;top:817px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:817px;left:209px;white-space:nowrap" class="ft21">422</p>
<p style="position:absolute;top:817px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:839px;left:3px;white-space:nowrap" class="ft21">10d</p>
<p style="position:absolute;top:839px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Wd</p>
<p style="position:absolute;top:839px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:839px;left:209px;white-space:nowrap" class="ft21">416</p>
<p style="position:absolute;top:839px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:862px;left:3px;white-space:nowrap" class="ft21">11</p>
<p style="position:absolute;top:862px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;At</p>
<p style="position:absolute;top:862px;left:157px;white-space:nowrap" class="ft21">D3</p>
<p style="position:absolute;top:862px;left:209px;white-space:nowrap" class="ft21">121</p>
<p style="position:absolute;top:862px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:883px;left:3px;white-space:nowrap" class="ft21">11</p>
<p style="position:absolute;top:883px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Sl</p>
<p style="position:absolute;top:883px;left:157px;white-space:nowrap" class="ft21">D2</p>
<p style="position:absolute;top:883px;left:209px;white-space:nowrap" class="ft21">415</p>
<p style="position:absolute;top:883px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:905px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:905px;left:55px;white-space:nowrap" class="ft21">1&#160;-&#160;2&#160;Lo</p>
<p style="position:absolute;top:905px;left:157px;white-space:nowrap" class="ft21">Sp1</p>
<p style="position:absolute;top:905px;left:209px;white-space:nowrap" class="ft21">222</p>
<p style="position:absolute;top:905px;left:398px;white-space:nowrap" class="ft21">Theorie</p>
<p style="position:absolute;top:928px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:928px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Mf</p>
<p style="position:absolute;top:928px;left:157px;white-space:nowrap" class="ft21">E2</p>
<p style="position:absolute;top:928px;left:209px;white-space:nowrap" class="ft21">218</p>
<p style="position:absolute;top:928px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:949px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:949px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Sf</p>
<p style="position:absolute;top:949px;left:157px;white-space:nowrap" class="ft21">M3</p>
<p style="position:absolute;top:949px;left:209px;white-space:nowrap" class="ft21">322</p>
<p style="position:absolute;top:949px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:969px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:969px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4</p>
<p style="position:absolute;top:969px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:969px;left:157px;white-space:nowrap" class="ft24"><i>M2</i></p>
<p style="position:absolute;top:969px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:969px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:992px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:992px;left:55px;white-space:nowrap" class="ft21">5&#160;-&#160;6</p>
<p style="position:absolute;top:991px;left:102px;white-space:nowrap" class="ft24"><i>Ku</i></p>
<p style="position:absolute;top:991px;left:157px;white-space:nowrap" class="ft24"><i>ek1</i></p>
<p style="position:absolute;top:992px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:992px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
</div>
</body>
</html>

View file

@ -1,871 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>MergedFile</title>
<meta name="Producer" content="3-Heights(TM) PDF Merge Split API 4.9.17.0 (http://www.pdf-tools.com)"/>
<meta name="CreationDate" content=""/>
</head>
<body>
<doc>
<page width="595.440000" height="841.680000">
<flow>
<block xMin="2.155223" yMin="6.712403" xMax="200.369021" yMax="19.097534">
<line xMin="2.155223" yMin="6.712403" xMax="200.369021" yMax="19.097534">
<word xMin="2.155223" yMin="6.712403" xMax="52.636293" yMax="19.097534">D-70563</word>
<word xMin="56.214732" yMin="6.712403" xMax="200.369021" yMax="19.097534">FANNY-LEICHT-GYMN.</word>
</line>
</block>
<block xMin="2.155223" yMin="21.630261" xMax="185.638722" yMax="32.889471">
<line xMin="2.155223" yMin="21.630261" xMax="185.638722" yMax="32.889471">
<word xMin="2.155223" yMin="21.630261" xMax="77.697366" yMax="32.889471">STUTTGART,</word>
<word xMin="80.698405" yMin="21.630261" xMax="169.433114" yMax="32.889471">F.-LEICHT-STR.</word>
<word xMin="172.290102" yMin="21.630261" xMax="185.638722" yMax="32.889471">13</word>
</line>
</block>
</flow>
<flow>
<block xMin="221.269518" yMin="5.785731" xMax="386.482695" yMax="32.889471">
<line xMin="221.269518" yMin="5.785731" xMax="386.482695" yMax="17.044941">
<word xMin="221.269518" yMin="5.785731" xMax="271.290830" yMax="17.044941">Schuljahr</word>
<word xMin="274.639989" yMin="5.785731" xMax="318.010998" yMax="17.044941">2018/19</word>
<word xMin="321.456191" yMin="5.785731" xMax="325.453574" yMax="17.044941">-</word>
<word xMin="328.634675" yMin="5.785731" xMax="338.634136" yMax="17.044941">1.</word>
<word xMin="341.923274" yMin="5.785731" xMax="386.482695" yMax="17.044941">Halbjahr</word>
</line>
<line xMin="221.269518" yMin="21.630261" xMax="378.559953" yMax="32.889471">
<word xMin="221.269518" yMin="21.630261" xMax="249.947443" yMax="32.889471">gültig</word>
<word xMin="253.080527" yMin="21.630261" xMax="266.429147" yMax="32.889471">ab</word>
<word xMin="269.730290" yMin="21.630261" xMax="286.404060" yMax="32.889471">10.</word>
<word xMin="289.729211" yMin="21.630261" xMax="348.561571" yMax="32.889471">September</word>
<word xMin="351.862714" yMin="21.630261" xMax="378.559953" yMax="32.889471">2018</word>
</line>
</block>
</flow>
<flow>
<block xMin="2.155223" yMin="42.828303" xMax="317.498329" yMax="59.717116">
<line xMin="2.155223" yMin="42.828303" xMax="317.498329" yMax="59.717116">
<word xMin="2.155223" yMin="42.828303" xMax="60.009240" yMax="59.717116">Klasse</word>
<word xMin="69.876654" yMin="42.828303" xMax="119.681886" yMax="59.717116">13.12.</word>
<word xMin="124.705624" yMin="42.828303" xMax="129.693350" yMax="59.717116">/</word>
<word xMin="134.771107" yMin="42.828303" xMax="234.525621" yMax="59.717116">Donnerstag</word>
<word xMin="239.531353" yMin="42.828303" xMax="317.498329" yMax="59.717116">Woche-A</word>
</line>
</block>
<block xMin="2.155223" yMin="73.878753" xMax="137.504463" yMax="84.012042">
<line xMin="2.155223" yMin="73.878753" xMax="137.504463" yMax="84.012042">
<word xMin="2.155223" yMin="73.878753" xMax="81.173768" yMax="84.012042">Ordnungsdienst:</word>
<word xMin="84.166404" yMin="73.878753" xMax="116.577621" yMax="84.012042">Klasse</word>
<word xMin="119.483826" yMin="73.878753" xMax="137.504463" yMax="84.012042">10a</word>
</line>
</block>
</flow>
<flow>
<block xMin="2.155223" yMin="114.536755" xMax="28.696408" yMax="682.514662">
<line xMin="2.155223" yMin="114.536755" xMax="16.140063" yMax="125.795965">
<word xMin="2.155223" yMin="114.536755" xMax="16.140063" yMax="125.795965">Kl.</word>
</line>
<line xMin="2.155223" yMin="129.661077" xMax="15.503842" yMax="140.920287">
<word xMin="2.155223" yMin="129.661077" xMax="15.503842" yMax="140.920287">5b</word>
</line>
<line xMin="2.155223" yMin="144.785399" xMax="15.503842" yMax="156.044609">
<word xMin="2.155223" yMin="144.785399" xMax="15.503842" yMax="156.044609">5b</word>
</line>
<line xMin="2.155223" yMin="159.909659" xMax="15.503842" yMax="171.168869">
<word xMin="2.155223" yMin="159.909659" xMax="15.503842" yMax="171.168869">5b</word>
</line>
<line xMin="2.155223" yMin="175.033981" xMax="15.503842" yMax="186.293190">
<word xMin="2.155223" yMin="175.033981" xMax="15.503842" yMax="186.293190">5b</word>
</line>
<line xMin="2.155223" yMin="190.158302" xMax="21.505920" yMax="201.417512">
<word xMin="2.155223" yMin="190.158302" xMax="21.505920" yMax="201.417512">6bc</word>
</line>
<line xMin="2.155223" yMin="203.842207" xMax="21.505920" yMax="215.101417">
<word xMin="2.155223" yMin="203.842207" xMax="21.505920" yMax="215.101417">6bc</word>
</line>
<line xMin="2.155223" yMin="218.966528" xMax="21.505920" yMax="230.225738">
<word xMin="2.155223" yMin="218.966528" xMax="21.505920" yMax="230.225738">6bc</word>
</line>
<line xMin="2.155223" yMin="232.650432" xMax="21.505920" yMax="243.909642">
<word xMin="2.155223" yMin="232.650432" xMax="21.505920" yMax="243.909642">6bc</word>
</line>
<line xMin="2.155223" yMin="247.774692" xMax="15.503842" yMax="259.033902">
<word xMin="2.155223" yMin="247.774692" xMax="15.503842" yMax="259.033902">6d</word>
</line>
<line xMin="2.155223" yMin="262.899014" xMax="15.503842" yMax="274.158224">
<word xMin="2.155223" yMin="262.899014" xMax="15.503842" yMax="274.158224">7b</word>
</line>
<line xMin="2.155223" yMin="278.023335" xMax="15.503842" yMax="289.282545">
<word xMin="2.155223" yMin="278.023335" xMax="15.503842" yMax="289.282545">7b</word>
</line>
<line xMin="2.155223" yMin="293.147658" xMax="15.503842" yMax="304.406867">
<word xMin="2.155223" yMin="293.147658" xMax="15.503842" yMax="304.406867">7b</word>
</line>
<line xMin="2.155223" yMin="308.271979" xMax="14.831610" yMax="319.531189">
<word xMin="2.155223" yMin="308.271979" xMax="14.831610" yMax="319.531189">7c</word>
</line>
<line xMin="2.155223" yMin="323.396269" xMax="15.503842" yMax="334.655479">
<word xMin="2.155223" yMin="323.396269" xMax="15.503842" yMax="334.655479">7d</word>
</line>
<line xMin="2.155223" yMin="338.520561" xMax="15.503842" yMax="349.779771">
<word xMin="2.155223" yMin="338.520561" xMax="15.503842" yMax="349.779771">7d</word>
</line>
<line xMin="2.155223" yMin="353.644882" xMax="15.503842" yMax="364.904092">
<word xMin="2.155223" yMin="353.644882" xMax="15.503842" yMax="364.904092">8a</word>
</line>
<line xMin="2.155223" yMin="368.769203" xMax="21.505920" yMax="380.028413">
<word xMin="2.155223" yMin="368.769203" xMax="21.505920" yMax="380.028413">9ac</word>
</line>
<line xMin="2.155223" yMin="383.893495" xMax="14.831610" yMax="395.152705">
<word xMin="2.155223" yMin="383.893495" xMax="14.831610" yMax="395.152705">9c</word>
</line>
<line xMin="2.155223" yMin="399.017816" xMax="14.831610" yMax="410.277026">
<word xMin="2.155223" yMin="399.017816" xMax="14.831610" yMax="410.277026">9c</word>
</line>
<line xMin="2.155223" yMin="414.142138" xMax="14.831610" yMax="425.401348">
<word xMin="2.155223" yMin="414.142138" xMax="14.831610" yMax="425.401348">9c</word>
</line>
<line xMin="2.155223" yMin="429.266460" xMax="15.503842" yMax="440.525670">
<word xMin="2.155223" yMin="429.266460" xMax="15.503842" yMax="440.525670">9d</word>
</line>
<line xMin="2.155223" yMin="444.390750" xMax="15.503842" yMax="455.649960">
<word xMin="2.155223" yMin="444.390750" xMax="15.503842" yMax="455.649960">9d</word>
</line>
<line xMin="2.155223" yMin="459.515072" xMax="15.503842" yMax="470.774282">
<word xMin="2.155223" yMin="459.515072" xMax="15.503842" yMax="470.774282">9d</word>
</line>
<line xMin="2.155223" yMin="474.639394" xMax="15.503842" yMax="485.898604">
<word xMin="2.155223" yMin="474.639394" xMax="15.503842" yMax="485.898604">9d</word>
</line>
<line xMin="2.155223" yMin="489.763685" xMax="15.503842" yMax="501.022894">
<word xMin="2.155223" yMin="489.763685" xMax="15.503842" yMax="501.022894">9d</word>
</line>
<line xMin="2.155223" yMin="504.887976" xMax="15.503842" yMax="516.147186">
<word xMin="2.155223" yMin="504.887976" xMax="15.503842" yMax="516.147186">9d</word>
</line>
<line xMin="2.155223" yMin="520.012297" xMax="15.503842" yMax="531.271507">
<word xMin="2.155223" yMin="520.012297" xMax="15.503842" yMax="531.271507">9d</word>
</line>
<line xMin="2.155223" yMin="535.136619" xMax="15.503842" yMax="546.395829">
<word xMin="2.155223" yMin="535.136619" xMax="15.503842" yMax="546.395829">9d</word>
</line>
<line xMin="2.155223" yMin="550.260940" xMax="22.178152" yMax="561.520150">
<word xMin="2.155223" yMin="550.260940" xMax="22.178152" yMax="561.520150">10b</word>
</line>
<line xMin="2.155223" yMin="565.385262" xMax="15.503842" yMax="576.644471">
<word xMin="2.155223" yMin="565.385262" xMax="15.503842" yMax="576.644471">11</word>
</line>
<line xMin="2.155223" yMin="580.509523" xMax="15.503842" yMax="591.768733">
<word xMin="2.155223" yMin="580.509523" xMax="15.503842" yMax="591.768733">11</word>
</line>
<line xMin="2.155223" yMin="595.633844" xMax="15.503842" yMax="606.893054">
<word xMin="2.155223" yMin="595.633844" xMax="15.503842" yMax="606.893054">11</word>
</line>
<line xMin="2.155223" yMin="610.758166" xMax="15.503842" yMax="622.017376">
<word xMin="2.155223" yMin="610.758166" xMax="15.503842" yMax="622.017376">11</word>
</line>
<line xMin="2.155223" yMin="625.882487" xMax="15.503842" yMax="637.141697">
<word xMin="2.155223" yMin="625.882487" xMax="15.503842" yMax="637.141697">11</word>
</line>
<line xMin="2.155223" yMin="641.006809" xMax="15.503842" yMax="652.266018">
<word xMin="2.155223" yMin="641.006809" xMax="15.503842" yMax="652.266018">12</word>
</line>
<line xMin="2.155223" yMin="656.131130" xMax="15.503842" yMax="667.390340">
<word xMin="2.155223" yMin="656.131130" xMax="15.503842" yMax="667.390340">12</word>
</line>
<line xMin="2.155223" yMin="671.255452" xMax="28.696408" yMax="682.514662">
<word xMin="2.155223" yMin="671.255452" xMax="28.696408" yMax="682.514662">1112</word>
</line>
</block>
</flow>
<flow>
<block xMin="36.638783" yMin="114.536755" xMax="73.899678" yMax="682.514662">
<line xMin="36.638783" yMin="114.536755" xMax="57.958161" yMax="125.795965">
<word xMin="36.638783" yMin="114.536755" xMax="57.958161" yMax="125.795965">Std.</word>
</line>
<line xMin="36.638783" yMin="129.661077" xMax="43.313093" yMax="140.920287">
<word xMin="36.638783" yMin="129.661077" xMax="43.313093" yMax="140.920287">1</word>
</line>
<line xMin="36.638783" yMin="144.785399" xMax="43.313093" yMax="156.044609">
<word xMin="36.638783" yMin="144.785399" xMax="43.313093" yMax="156.044609">2</word>
</line>
<line xMin="36.638783" yMin="159.909659" xMax="43.313093" yMax="171.168869">
<word xMin="36.638783" yMin="159.909659" xMax="43.313093" yMax="171.168869">3</word>
</line>
<line xMin="36.638783" yMin="175.033981" xMax="43.313093" yMax="186.293190">
<word xMin="36.638783" yMin="175.033981" xMax="43.313093" yMax="186.293190">4</word>
</line>
<line xMin="36.638783" yMin="190.158302" xMax="43.313093" yMax="201.417512">
<word xMin="36.638783" yMin="190.158302" xMax="43.313093" yMax="201.417512">5</word>
</line>
<line xMin="36.638783" yMin="203.842207" xMax="43.313093" yMax="215.101417">
<word xMin="36.638783" yMin="203.842207" xMax="43.313093" yMax="215.101417">5</word>
</line>
<line xMin="36.638783" yMin="218.966528" xMax="43.313093" yMax="230.225738">
<word xMin="36.638783" yMin="218.966528" xMax="43.313093" yMax="230.225738">6</word>
</line>
<line xMin="36.638783" yMin="232.650432" xMax="43.313093" yMax="243.909642">
<word xMin="36.638783" yMin="232.650432" xMax="43.313093" yMax="243.909642">6</word>
</line>
<line xMin="36.638783" yMin="247.774692" xMax="43.313093" yMax="259.033902">
<word xMin="36.638783" yMin="247.774692" xMax="43.313093" yMax="259.033902">6</word>
</line>
<line xMin="36.638783" yMin="262.899014" xMax="43.313093" yMax="274.158224">
<word xMin="36.638783" yMin="262.899014" xMax="43.313093" yMax="274.158224">2</word>
</line>
<line xMin="36.638783" yMin="278.023335" xMax="43.313093" yMax="289.282545">
<word xMin="36.638783" yMin="278.023335" xMax="43.313093" yMax="289.282545">8</word>
</line>
<line xMin="36.638783" yMin="293.147658" xMax="43.313093" yMax="304.406867">
<word xMin="36.638783" yMin="293.147658" xMax="43.313093" yMax="304.406867">9</word>
</line>
<line xMin="36.638783" yMin="308.271979" xMax="60.647091" yMax="319.531189">
<word xMin="36.638783" yMin="308.271979" xMax="43.313093" yMax="319.531189">8</word>
<word xMin="46.662252" yMin="308.271979" xMax="50.659635" yMax="319.531189">-</word>
<word xMin="53.972782" yMin="308.271979" xMax="60.647091" yMax="319.531189">9</word>
</line>
<line xMin="36.638783" yMin="323.396269" xMax="43.313093" yMax="334.655479">
<word xMin="36.638783" yMin="323.396269" xMax="43.313093" yMax="334.655479">1</word>
</line>
<line xMin="36.638783" yMin="338.520561" xMax="43.313093" yMax="349.779771">
<word xMin="36.638783" yMin="338.520561" xMax="43.313093" yMax="349.779771">2</word>
</line>
<line xMin="36.638783" yMin="353.644882" xMax="60.647091" yMax="364.904092">
<word xMin="36.638783" yMin="353.644882" xMax="43.313093" yMax="364.904092">1</word>
<word xMin="46.662252" yMin="353.644882" xMax="50.659635" yMax="364.904092">-</word>
<word xMin="53.972782" yMin="353.644882" xMax="60.647091" yMax="364.904092">2</word>
</line>
<line xMin="36.638783" yMin="368.769203" xMax="60.647091" yMax="380.028413">
<word xMin="36.638783" yMin="368.769203" xMax="43.313093" yMax="380.028413">8</word>
<word xMin="46.662252" yMin="368.769203" xMax="50.659635" yMax="380.028413">-</word>
<word xMin="53.972782" yMin="368.769203" xMax="60.647091" yMax="380.028413">9</word>
</line>
<line xMin="36.638783" yMin="383.893495" xMax="60.647091" yMax="395.152705">
<word xMin="36.638783" yMin="383.893495" xMax="43.313093" yMax="395.152705">1</word>
<word xMin="46.662252" yMin="383.893495" xMax="50.659635" yMax="395.152705">-</word>
<word xMin="53.972782" yMin="383.893495" xMax="60.647091" yMax="395.152705">2</word>
</line>
<line xMin="36.638783" yMin="399.017816" xMax="43.313093" yMax="410.277026">
<word xMin="36.638783" yMin="399.017816" xMax="43.313093" yMax="410.277026">3</word>
</line>
<line xMin="36.638783" yMin="414.142138" xMax="43.313093" yMax="425.401348">
<word xMin="36.638783" yMin="414.142138" xMax="43.313093" yMax="425.401348">4</word>
</line>
<line xMin="36.638783" yMin="429.266460" xMax="43.313093" yMax="440.525670">
<word xMin="36.638783" yMin="429.266460" xMax="43.313093" yMax="440.525670">1</word>
</line>
<line xMin="36.638783" yMin="444.390750" xMax="43.313093" yMax="455.649960">
<word xMin="36.638783" yMin="444.390750" xMax="43.313093" yMax="455.649960">2</word>
</line>
<line xMin="36.638783" yMin="459.515072" xMax="43.313093" yMax="470.774282">
<word xMin="36.638783" yMin="459.515072" xMax="43.313093" yMax="470.774282">3</word>
</line>
<line xMin="36.638783" yMin="474.639394" xMax="43.313093" yMax="485.898604">
<word xMin="36.638783" yMin="474.639394" xMax="43.313093" yMax="485.898604">4</word>
</line>
<line xMin="36.638783" yMin="489.763685" xMax="43.313093" yMax="501.022894">
<word xMin="36.638783" yMin="489.763685" xMax="43.313093" yMax="501.022894">5</word>
</line>
<line xMin="36.638783" yMin="504.887976" xMax="43.313093" yMax="516.147186">
<word xMin="36.638783" yMin="504.887976" xMax="43.313093" yMax="516.147186">6</word>
</line>
<line xMin="36.638783" yMin="520.012297" xMax="43.313093" yMax="531.271507">
<word xMin="36.638783" yMin="520.012297" xMax="43.313093" yMax="531.271507">8</word>
</line>
<line xMin="36.638783" yMin="535.136619" xMax="43.313093" yMax="546.395829">
<word xMin="36.638783" yMin="535.136619" xMax="43.313093" yMax="546.395829">9</word>
</line>
<line xMin="36.638783" yMin="550.260940" xMax="73.899678" yMax="561.520150">
<word xMin="36.638783" yMin="550.260940" xMax="49.987402" yMax="561.520150">10</word>
<word xMin="53.372574" yMin="550.260940" xMax="57.369957" yMax="561.520150">-</word>
<word xMin="60.551058" yMin="550.260940" xMax="73.899678" yMax="561.520150">11</word>
</line>
<line xMin="36.638783" yMin="565.385262" xMax="60.647091" yMax="576.644471">
<word xMin="36.638783" yMin="565.385262" xMax="43.313093" yMax="576.644471">3</word>
<word xMin="46.662252" yMin="565.385262" xMax="50.659635" yMax="576.644471">-</word>
<word xMin="53.972782" yMin="565.385262" xMax="60.647091" yMax="576.644471">4</word>
</line>
<line xMin="36.638783" yMin="580.509523" xMax="43.313093" yMax="591.768733">
<word xMin="36.638783" yMin="580.509523" xMax="43.313093" yMax="591.768733">5</word>
</line>
<line xMin="36.638783" yMin="595.633844" xMax="43.313093" yMax="606.893054">
<word xMin="36.638783" yMin="595.633844" xMax="43.313093" yMax="606.893054">7</word>
</line>
<line xMin="36.638783" yMin="610.758166" xMax="60.647091" yMax="622.017376">
<word xMin="36.638783" yMin="610.758166" xMax="43.313093" yMax="622.017376">8</word>
<word xMin="46.662252" yMin="610.758166" xMax="50.659635" yMax="622.017376">-</word>
<word xMin="53.972782" yMin="610.758166" xMax="60.647091" yMax="622.017376">9</word>
</line>
<line xMin="36.638783" yMin="625.882487" xMax="73.899678" yMax="637.141697">
<word xMin="36.638783" yMin="625.882487" xMax="49.987402" yMax="637.141697">10</word>
<word xMin="53.372574" yMin="625.882487" xMax="57.369957" yMax="637.141697">-</word>
<word xMin="60.551058" yMin="625.882487" xMax="73.899678" yMax="637.141697">11</word>
</line>
<line xMin="36.638783" yMin="641.006809" xMax="60.647091" yMax="652.266018">
<word xMin="36.638783" yMin="641.006809" xMax="43.313093" yMax="652.266018">1</word>
<word xMin="46.662252" yMin="641.006809" xMax="50.659635" yMax="652.266018">-</word>
<word xMin="53.972782" yMin="641.006809" xMax="60.647091" yMax="652.266018">2</word>
</line>
<line xMin="36.638783" yMin="656.131130" xMax="43.313093" yMax="667.390340">
<word xMin="36.638783" yMin="656.131130" xMax="43.313093" yMax="667.390340">5</word>
</line>
<line xMin="36.638783" yMin="671.255452" xMax="60.647091" yMax="682.514662">
<word xMin="36.638783" yMin="671.255452" xMax="43.313093" yMax="682.514662">8</word>
<word xMin="46.662252" yMin="671.255452" xMax="50.659635" yMax="682.514662">-</word>
<word xMin="53.972782" yMin="671.255452" xMax="60.647091" yMax="682.514662">9</word>
</line>
</block>
</flow>
<flow>
<block xMin="81.898452" yMin="114.536755" xMax="111.080551" yMax="682.545121">
<line xMin="81.898452" yMin="114.536755" xMax="111.080551" yMax="125.795965">
<word xMin="81.898452" yMin="114.536755" xMax="111.080551" yMax="125.795965">Vertr.</word>
</line>
<line xMin="81.898452" yMin="129.470449" xMax="99.904683" yMax="140.950745">
<word xMin="81.898452" yMin="129.470449" xMax="99.904683" yMax="140.950745">Hei</word>
</line>
<line xMin="81.898452" yMin="144.785399" xMax="95.895296" yMax="156.044609">
<word xMin="81.898452" yMin="144.785399" xMax="95.895296" yMax="156.044609">Fu</word>
</line>
<line xMin="81.898452" yMin="159.909659" xMax="97.899990" yMax="171.168869">
<word xMin="81.898452" yMin="159.909659" xMax="97.899990" yMax="171.168869">Oe</word>
</line>
<line xMin="81.898452" yMin="175.033981" xMax="100.396854" yMax="186.293190">
<word xMin="81.898452" yMin="175.033981" xMax="100.396854" yMax="186.293190">Rm</word>
</line>
<line xMin="81.898452" yMin="190.158302" xMax="93.002295" yMax="201.417512">
<word xMin="81.898452" yMin="190.158302" xMax="93.002295" yMax="201.417512">Sf</word>
</line>
<line xMin="81.898452" yMin="203.842207" xMax="96.567528" yMax="215.101417">
<word xMin="81.898452" yMin="203.842207" xMax="96.567528" yMax="215.101417">Dk</word>
</line>
<line xMin="81.898452" yMin="218.775900" xMax="96.567528" yMax="230.256196">
<word xMin="81.898452" yMin="218.775900" xMax="96.567528" yMax="230.256196"></word>
</line>
<line xMin="81.898452" yMin="232.459804" xMax="99.892679" yMax="243.940100">
<word xMin="81.898452" yMin="232.459804" xMax="99.892679" yMax="243.940100">We</word>
</line>
<line xMin="81.898452" yMin="247.584064" xMax="96.567528" yMax="259.064360">
<word xMin="81.898452" yMin="247.584064" xMax="96.567528" yMax="259.064360">Ku</word>
</line>
<line xMin="81.898452" yMin="262.899014" xMax="97.899990" yMax="274.158224">
<word xMin="81.898452" yMin="262.899014" xMax="97.899990" yMax="274.158224">Ga</word>
</line>
<line xMin="81.898452" yMin="277.832707" xMax="97.899990" yMax="289.313003">
<word xMin="81.898452" yMin="277.832707" xMax="97.899990" yMax="289.313003">Gg</word>
</line>
<line xMin="81.898452" yMin="292.957030" xMax="97.899990" yMax="304.437326">
<word xMin="81.898452" yMin="292.957030" xMax="97.899990" yMax="304.437326">Gg</word>
</line>
<line xMin="81.898452" yMin="308.081351" xMax="99.892679" yMax="319.561647">
<word xMin="81.898452" yMin="308.081351" xMax="99.892679" yMax="319.561647">Gw</word>
</line>
<line xMin="81.898452" yMin="323.205641" xMax="96.567528" yMax="334.685937">
<word xMin="81.898452" yMin="323.205641" xMax="96.567528" yMax="334.685937">Ku</word>
</line>
<line xMin="81.898452" yMin="338.520561" xMax="97.227757" yMax="349.779771">
<word xMin="81.898452" yMin="338.520561" xMax="97.227757" yMax="349.779771">Oz</word>
</line>
<line xMin="81.898452" yMin="353.454254" xMax="92.558141" yMax="364.934550">
<word xMin="81.898452" yMin="353.454254" xMax="92.558141" yMax="364.934550">Ei</word>
</line>
<line xMin="81.898452" yMin="368.578576" xMax="94.574839" yMax="380.058872">
<word xMin="81.898452" yMin="368.578576" xMax="94.574839" yMax="380.058872">Lk</word>
</line>
<line xMin="81.898452" yMin="383.893495" xMax="96.567528" yMax="395.152705">
<word xMin="81.898452" yMin="383.893495" xMax="96.567528" yMax="395.152705">Jw</word>
</line>
<line xMin="81.898452" yMin="399.017816" xMax="93.722544" yMax="410.277026">
<word xMin="81.898452" yMin="399.017816" xMax="93.722544" yMax="410.277026">Hf</word>
</line>
<line xMin="81.898452" yMin="414.142138" xMax="102.569606" yMax="425.401348">
<word xMin="81.898452" yMin="414.142138" xMax="102.569606" yMax="425.401348">Bkn</word>
</line>
<line xMin="81.898452" yMin="429.075832" xMax="93.890602" yMax="440.556128">
<word xMin="81.898452" yMin="429.075832" xMax="93.890602" yMax="440.556128">Rt</word>
</line>
<line xMin="81.898452" yMin="444.200122" xMax="93.890602" yMax="455.680419">
<word xMin="81.898452" yMin="444.200122" xMax="93.890602" yMax="455.680419">Rt</word>
</line>
<line xMin="81.898452" yMin="459.515072" xMax="93.890602" yMax="470.774282">
<word xMin="81.898452" yMin="459.515072" xMax="93.890602" yMax="470.774282">Rt</word>
</line>
<line xMin="81.898452" yMin="474.639394" xMax="93.890602" yMax="485.898604">
<word xMin="81.898452" yMin="474.639394" xMax="93.890602" yMax="485.898604">Rt</word>
</line>
<line xMin="81.898452" yMin="489.763685" xMax="93.230373" yMax="501.022894">
<word xMin="81.898452" yMin="489.763685" xMax="93.230373" yMax="501.022894">Ni</word>
</line>
<line xMin="81.898452" yMin="504.887976" xMax="93.230373" yMax="516.147186">
<word xMin="81.898452" yMin="504.887976" xMax="93.230373" yMax="516.147186">Ni</word>
</line>
<line xMin="81.898452" yMin="519.821669" xMax="93.230373" yMax="531.301966">
<word xMin="81.898452" yMin="519.821669" xMax="93.230373" yMax="531.301966">Ni</word>
</line>
<line xMin="81.898452" yMin="534.945991" xMax="93.230373" yMax="546.426287">
<word xMin="81.898452" yMin="534.945991" xMax="93.230373" yMax="546.426287">Ni</word>
</line>
<line xMin="81.898452" yMin="550.070312" xMax="95.895296" yMax="561.550608">
<word xMin="81.898452" yMin="550.070312" xMax="95.895296" yMax="561.550608">Fe</word>
</line>
<line xMin="81.898452" yMin="565.194634" xMax="92.546137" yMax="576.674930">
<word xMin="81.898452" yMin="565.194634" xMax="92.546137" yMax="576.674930">Ft</word>
</line>
<line xMin="81.898452" yMin="580.318895" xMax="92.558141" yMax="591.799191">
<word xMin="81.898452" yMin="580.318895" xMax="92.558141" yMax="591.799191">Ei</word>
</line>
<line xMin="81.898452" yMin="595.633844" xMax="94.550830" yMax="606.893054">
<word xMin="81.898452" yMin="595.633844" xMax="94.550830" yMax="606.893054">Gt</word>
</line>
<line xMin="81.898452" yMin="610.758166" xMax="97.239761" yMax="622.017376">
<word xMin="81.898452" yMin="610.758166" xMax="97.239761" yMax="622.017376">Ro</word>
</line>
<line xMin="81.898452" yMin="625.691859" xMax="94.574839" yMax="637.172155">
<word xMin="81.898452" yMin="625.691859" xMax="94.574839" yMax="637.172155">Lk</word>
</line>
<line xMin="81.898452" yMin="641.006809" xMax="93.230373" yMax="652.266018">
<word xMin="81.898452" yMin="641.006809" xMax="93.230373" yMax="652.266018">Ni</word>
</line>
<line xMin="81.898452" yMin="655.940502" xMax="96.567528" yMax="667.420798">
<word xMin="81.898452" yMin="655.940502" xMax="96.567528" yMax="667.420798">Ku</word>
</line>
<line xMin="81.898452" yMin="671.064824" xMax="95.895296" yMax="682.545121">
<word xMin="81.898452" yMin="671.064824" xMax="95.895296" yMax="682.545121">Fe</word>
</line>
</block>
</flow>
<flow>
<block xMin="118.537239" yMin="114.536755" xMax="147.719338" yMax="682.545121">
<line xMin="118.537239" yMin="114.536755" xMax="145.078424" yMax="125.795965">
<word xMin="118.537239" yMin="114.536755" xMax="145.078424" yMax="125.795965">Fach</word>
</line>
<line xMin="118.537239" yMin="129.470449" xMax="127.204238" yMax="140.950745">
<word xMin="118.537239" yMin="129.470449" xMax="127.204238" yMax="140.950745">D</word>
</line>
<line xMin="118.537239" yMin="144.785399" xMax="127.204238" yMax="156.044609">
<word xMin="118.537239" yMin="144.785399" xMax="127.204238" yMax="156.044609">D</word>
</line>
<line xMin="118.537239" yMin="159.909659" xMax="128.536699" yMax="171.168869">
<word xMin="118.537239" yMin="159.909659" xMax="128.536699" yMax="171.168869">M</word>
</line>
<line xMin="118.537239" yMin="175.033981" xMax="128.536699" yMax="186.293190">
<word xMin="118.537239" yMin="175.033981" xMax="128.536699" yMax="186.293190">M</word>
</line>
<line xMin="118.537239" yMin="190.158302" xMax="141.201082" yMax="201.417512">
<word xMin="118.537239" yMin="190.158302" xMax="141.201082" yMax="201.417512">EvR</word>
</line>
<line xMin="118.537239" yMin="203.842207" xMax="135.199005" yMax="215.101417">
<word xMin="118.537239" yMin="203.842207" xMax="135.199005" yMax="215.101417">KR</word>
</line>
<line xMin="118.537239" yMin="218.775900" xMax="141.201082" yMax="230.256196">
<word xMin="118.537239" yMin="218.775900" xMax="141.201082" yMax="230.256196">EvR</word>
</line>
<line xMin="118.537239" yMin="232.459804" xMax="135.199005" yMax="243.940100">
<word xMin="118.537239" yMin="232.459804" xMax="135.199005" yMax="243.940100">KR</word>
</line>
<line xMin="118.537239" yMin="247.584064" xMax="132.534082" yMax="259.064360">
<word xMin="118.537239" yMin="247.584064" xMax="132.534082" yMax="259.064360">Ek</word>
</line>
<line xMin="118.537239" yMin="262.899014" xMax="127.864466" yMax="274.158224">
<word xMin="118.537239" yMin="262.899014" xMax="127.864466" yMax="274.158224">G</word>
</line>
<line xMin="118.537239" yMin="277.832707" xMax="134.526772" yMax="289.313003">
<word xMin="118.537239" yMin="277.832707" xMax="134.526772" yMax="289.313003">BK</word>
</line>
<line xMin="118.537239" yMin="292.957030" xMax="134.526772" yMax="304.437326">
<word xMin="118.537239" yMin="292.957030" xMax="134.526772" yMax="304.437326">BK</word>
</line>
<line xMin="118.537239" yMin="308.081351" xMax="127.864466" yMax="319.561647">
<word xMin="118.537239" yMin="308.081351" xMax="127.864466" yMax="319.561647">G</word>
</line>
<line xMin="118.537239" yMin="323.205641" xMax="127.204238" yMax="334.685937">
<word xMin="118.537239" yMin="323.205641" xMax="127.204238" yMax="334.685937">D</word>
</line>
<line xMin="118.537239" yMin="338.520561" xMax="127.204238" yMax="349.779771">
<word xMin="118.537239" yMin="338.520561" xMax="127.204238" yMax="349.779771">D</word>
</line>
<line xMin="118.537239" yMin="353.454254" xMax="133.878548" yMax="364.934550">
<word xMin="118.537239" yMin="353.454254" xMax="133.878548" yMax="364.934550">Ch</word>
</line>
<line xMin="118.537239" yMin="368.578576" xMax="139.208392" yMax="380.058872">
<word xMin="118.537239" yMin="368.578576" xMax="139.208392" yMax="380.058872">SpJ</word>
</line>
<line xMin="118.537239" yMin="383.893495" xMax="133.866544" yMax="395.152705">
<word xMin="118.537239" yMin="383.893495" xMax="133.866544" yMax="395.152705">Gk</word>
</line>
<line xMin="118.537239" yMin="399.017816" xMax="127.204238" yMax="410.277026">
<word xMin="118.537239" yMin="399.017816" xMax="127.204238" yMax="410.277026">D</word>
</line>
<line xMin="118.537239" yMin="414.142138" xMax="127.204238" yMax="425.401348">
<word xMin="118.537239" yMin="414.142138" xMax="127.204238" yMax="425.401348">D</word>
</line>
<line xMin="118.537239" yMin="429.075832" xMax="133.866544" yMax="440.556128">
<word xMin="118.537239" yMin="429.075832" xMax="133.866544" yMax="440.556128">Gk</word>
</line>
<line xMin="118.537239" yMin="444.200122" xMax="133.866544" yMax="455.680419">
<word xMin="118.537239" yMin="444.200122" xMax="133.866544" yMax="455.680419">Gk</word>
</line>
<line xMin="118.537239" yMin="459.515072" xMax="133.866544" yMax="470.774282">
<word xMin="118.537239" yMin="459.515072" xMax="133.866544" yMax="470.774282">Gk</word>
</line>
<line xMin="118.537239" yMin="474.639394" xMax="133.866544" yMax="485.898604">
<word xMin="118.537239" yMin="474.639394" xMax="133.866544" yMax="485.898604">Gk</word>
</line>
<line xMin="118.537239" yMin="489.763685" xMax="134.526772" yMax="501.022894">
<word xMin="118.537239" yMin="489.763685" xMax="134.526772" yMax="501.022894">BK</word>
</line>
<line xMin="118.537239" yMin="504.887976" xMax="134.526772" yMax="516.147186">
<word xMin="118.537239" yMin="504.887976" xMax="134.526772" yMax="516.147186">BK</word>
</line>
<line xMin="118.537239" yMin="519.821669" xMax="134.526772" yMax="531.301966">
<word xMin="118.537239" yMin="519.821669" xMax="134.526772" yMax="531.301966">BK</word>
</line>
<line xMin="118.537239" yMin="534.945991" xMax="134.526772" yMax="546.426287">
<word xMin="118.537239" yMin="534.945991" xMax="134.526772" yMax="546.426287">BK</word>
</line>
<line xMin="118.537239" yMin="550.070312" xMax="133.206315" yMax="561.550608">
<word xMin="118.537239" yMin="550.070312" xMax="133.206315" yMax="561.550608">Ph</word>
</line>
<line xMin="118.537239" yMin="565.194634" xMax="131.885858" yMax="576.674930">
<word xMin="118.537239" yMin="565.194634" xMax="131.885858" yMax="576.674930">g4</word>
</line>
<line xMin="118.537239" yMin="580.318895" xMax="135.211009" yMax="591.799191">
<word xMin="118.537239" yMin="580.318895" xMax="135.211009" yMax="591.799191">M1</word>
</line>
<line xMin="118.537239" yMin="595.633844" xMax="147.719338" yMax="606.893054">
<word xMin="118.537239" yMin="595.633844" xMax="147.719338" yMax="606.893054">sem1</word>
</line>
<line xMin="118.537239" yMin="610.758166" xMax="147.719338" yMax="622.017376">
<word xMin="118.537239" yMin="610.758166" xMax="147.719338" yMax="622.017376">sem1</word>
</line>
<line xMin="118.537239" yMin="625.691859" xMax="137.887935" yMax="637.172155">
<word xMin="118.537239" yMin="625.691859" xMax="137.887935" yMax="637.172155">sp3</word>
</line>
<line xMin="118.537239" yMin="641.006809" xMax="137.887935" yMax="652.266018">
<word xMin="118.537239" yMin="641.006809" xMax="137.887935" yMax="652.266018">bk1</word>
</line>
<line xMin="118.537239" yMin="655.940502" xMax="133.878548" yMax="667.420798">
<word xMin="118.537239" yMin="655.940502" xMax="133.878548" yMax="667.420798">D2</word>
</line>
<line xMin="118.537239" yMin="671.064824" xMax="141.009015" yMax="682.545121">
<word xMin="118.537239" yMin="671.064824" xMax="141.009015" yMax="682.545121">vma</word>
</line>
</block>
</flow>
<flow>
<block xMin="155.176025" yMin="114.536755" xMax="177.047595" yMax="682.514662">
<line xMin="155.176025" yMin="114.536755" xMax="177.047595" yMax="125.795965">
<word xMin="155.176025" yMin="114.536755" xMax="177.047595" yMax="125.795965">Rau</word>
</line>
<line xMin="155.176025" yMin="129.661077" xMax="167.168175" yMax="140.920287">
<word xMin="155.176025" yMin="129.661077" xMax="167.168175" yMax="140.920287">---</word>
</line>
<line xMin="155.176025" yMin="144.785399" xMax="175.198955" yMax="156.044609">
<word xMin="155.176025" yMin="144.785399" xMax="175.198955" yMax="156.044609">114</word>
</line>
<line xMin="155.176025" yMin="159.909659" xMax="175.198955" yMax="171.168869">
<word xMin="155.176025" yMin="159.909659" xMax="175.198955" yMax="171.168869">114</word>
</line>
<line xMin="155.176025" yMin="175.033981" xMax="175.198955" yMax="186.293190">
<word xMin="155.176025" yMin="175.033981" xMax="175.198955" yMax="186.293190">114</word>
</line>
<line xMin="155.176025" yMin="190.158302" xMax="175.198955" yMax="201.417512">
<word xMin="155.176025" yMin="190.158302" xMax="175.198955" yMax="201.417512">321</word>
</line>
<line xMin="155.176025" yMin="203.842207" xMax="175.198955" yMax="215.101417">
<word xMin="155.176025" yMin="203.842207" xMax="175.198955" yMax="215.101417">121</word>
</line>
<line xMin="155.176025" yMin="218.966528" xMax="167.168175" yMax="230.225738">
<word xMin="155.176025" yMin="218.966528" xMax="167.168175" yMax="230.225738">---</word>
</line>
<line xMin="155.176025" yMin="232.650432" xMax="167.168175" yMax="243.909642">
<word xMin="155.176025" yMin="232.650432" xMax="167.168175" yMax="243.909642">---</word>
</line>
<line xMin="155.176025" yMin="247.774692" xMax="167.168175" yMax="259.033902">
<word xMin="155.176025" yMin="247.774692" xMax="167.168175" yMax="259.033902">---</word>
</line>
<line xMin="155.176025" yMin="262.899014" xMax="175.198955" yMax="274.158224">
<word xMin="155.176025" yMin="262.899014" xMax="175.198955" yMax="274.158224">414</word>
</line>
<line xMin="155.176025" yMin="278.023335" xMax="167.168175" yMax="289.282545">
<word xMin="155.176025" yMin="278.023335" xMax="167.168175" yMax="289.282545">---</word>
</line>
<line xMin="155.176025" yMin="293.147658" xMax="167.168175" yMax="304.406867">
<word xMin="155.176025" yMin="293.147658" xMax="167.168175" yMax="304.406867">---</word>
</line>
<line xMin="155.176025" yMin="308.271979" xMax="167.168175" yMax="319.531189">
<word xMin="155.176025" yMin="308.271979" xMax="167.168175" yMax="319.531189">---</word>
</line>
<line xMin="155.176025" yMin="323.396269" xMax="167.168175" yMax="334.655479">
<word xMin="155.176025" yMin="323.396269" xMax="167.168175" yMax="334.655479">---</word>
</line>
<line xMin="155.176025" yMin="338.520561" xMax="175.198955" yMax="349.779771">
<word xMin="155.176025" yMin="338.520561" xMax="175.198955" yMax="349.779771">416</word>
</line>
<line xMin="155.176025" yMin="353.644882" xMax="167.168175" yMax="364.904092">
<word xMin="155.176025" yMin="353.644882" xMax="167.168175" yMax="364.904092">---</word>
</line>
<line xMin="155.176025" yMin="368.769203" xMax="167.168175" yMax="380.028413">
<word xMin="155.176025" yMin="368.769203" xMax="167.168175" yMax="380.028413">---</word>
</line>
<line xMin="155.176025" yMin="383.893495" xMax="175.198955" yMax="395.152705">
<word xMin="155.176025" yMin="383.893495" xMax="175.198955" yMax="395.152705">322</word>
</line>
<line xMin="155.176025" yMin="399.017816" xMax="175.198955" yMax="410.277026">
<word xMin="155.176025" yMin="399.017816" xMax="175.198955" yMax="410.277026">220</word>
</line>
<line xMin="155.176025" yMin="414.142138" xMax="175.198955" yMax="425.401348">
<word xMin="155.176025" yMin="414.142138" xMax="175.198955" yMax="425.401348">220</word>
</line>
<line xMin="155.176025" yMin="429.266460" xMax="167.168175" yMax="440.525670">
<word xMin="155.176025" yMin="429.266460" xMax="167.168175" yMax="440.525670">---</word>
</line>
<line xMin="155.176025" yMin="444.390750" xMax="167.168175" yMax="455.649960">
<word xMin="155.176025" yMin="444.390750" xMax="167.168175" yMax="455.649960">---</word>
</line>
<line xMin="155.176025" yMin="459.515072" xMax="175.198955" yMax="470.774282">
<word xMin="155.176025" yMin="459.515072" xMax="175.198955" yMax="470.774282">218</word>
</line>
<line xMin="155.176025" yMin="474.639394" xMax="175.198955" yMax="485.898604">
<word xMin="155.176025" yMin="474.639394" xMax="175.198955" yMax="485.898604">218</word>
</line>
<line xMin="155.176025" yMin="489.763685" xMax="175.198955" yMax="501.022894">
<word xMin="155.176025" yMin="489.763685" xMax="175.198955" yMax="501.022894">126</word>
</line>
<line xMin="155.176025" yMin="504.887976" xMax="175.198955" yMax="516.147186">
<word xMin="155.176025" yMin="504.887976" xMax="175.198955" yMax="516.147186">126</word>
</line>
<line xMin="155.176025" yMin="520.012297" xMax="167.168175" yMax="531.271507">
<word xMin="155.176025" yMin="520.012297" xMax="167.168175" yMax="531.271507">---</word>
</line>
<line xMin="155.176025" yMin="535.136619" xMax="167.168175" yMax="546.395829">
<word xMin="155.176025" yMin="535.136619" xMax="167.168175" yMax="546.395829">---</word>
</line>
<line xMin="155.176025" yMin="550.260940" xMax="167.168175" yMax="561.520150">
<word xMin="155.176025" yMin="550.260940" xMax="167.168175" yMax="561.520150">---</word>
</line>
<line xMin="155.176025" yMin="565.385262" xMax="167.168175" yMax="576.644471">
<word xMin="155.176025" yMin="565.385262" xMax="167.168175" yMax="576.644471">---</word>
</line>
<line xMin="155.176025" yMin="580.509523" xMax="167.168175" yMax="591.768733">
<word xMin="155.176025" yMin="580.509523" xMax="167.168175" yMax="591.768733">---</word>
</line>
<line xMin="155.176025" yMin="595.633844" xMax="175.198955" yMax="606.893054">
<word xMin="155.176025" yMin="595.633844" xMax="175.198955" yMax="606.893054">324</word>
</line>
<line xMin="155.176025" yMin="610.758166" xMax="175.198955" yMax="622.017376">
<word xMin="155.176025" yMin="610.758166" xMax="175.198955" yMax="622.017376">???</word>
</line>
<line xMin="155.176025" yMin="625.882487" xMax="167.168175" yMax="637.141697">
<word xMin="155.176025" yMin="625.882487" xMax="167.168175" yMax="637.141697">---</word>
</line>
<line xMin="155.176025" yMin="641.006809" xMax="175.198955" yMax="652.266018">
<word xMin="155.176025" yMin="641.006809" xMax="175.198955" yMax="652.266018">412</word>
</line>
<line xMin="155.176025" yMin="656.131130" xMax="167.168175" yMax="667.390340">
<word xMin="155.176025" yMin="656.131130" xMax="167.168175" yMax="667.390340">---</word>
</line>
<line xMin="155.176025" yMin="671.255452" xMax="167.168175" yMax="682.514662">
<word xMin="155.176025" yMin="671.255452" xMax="167.168175" yMax="682.514662">---</word>
</line>
</block>
</flow>
<flow>
<block xMin="183.193911" yMin="114.536755" xMax="216.505439" yMax="140.920287">
<line xMin="183.193911" yMin="114.536755" xMax="209.218917" yMax="125.795965">
<word xMin="183.193911" yMin="114.536755" xMax="209.218917" yMax="125.795965">nach</word>
</line>
<line xMin="183.193911" yMin="129.661077" xMax="216.505439" yMax="140.920287">
<word xMin="183.193911" yMin="129.661077" xMax="216.505439" yMax="140.920287">Entfall</word>
</line>
</block>
</flow>
<flow>
<block xMin="260.781924" yMin="114.536755" xMax="349.948782" yMax="125.795965">
<line xMin="260.781924" yMin="114.536755" xMax="349.948782" yMax="125.795965">
<word xMin="260.781924" yMin="114.536755" xMax="349.948782" yMax="125.795965">Vertretungs-Text</word>
</line>
</block>
<block xMin="260.781924" yMin="144.785399" xMax="407.280624" yMax="215.101417">
<line xMin="260.781924" yMin="144.785399" xMax="407.280624" yMax="156.044609">
<word xMin="260.781924" yMin="144.785399" xMax="278.788155" yMax="156.044609">Hei</word>
<word xMin="281.849215" yMin="144.785399" xMax="285.174366" yMax="156.044609">/</word>
<word xMin="288.319454" yMin="144.785399" xMax="343.214452" yMax="156.044609">Aufgaben,</word>
<word xMin="346.383549" yMin="144.785399" xMax="407.280624" yMax="156.044609">Arbeitsheft!</word>
</line>
<line xMin="260.781924" yMin="159.909659" xMax="332.578771" yMax="171.168869">
<word xMin="260.781924" yMin="159.909659" xMax="271.441613" yMax="171.168869">Ei</word>
<word xMin="274.550689" yMin="159.909659" xMax="277.875840" yMax="171.168869">/</word>
<word xMin="281.008924" yMin="159.909659" xMax="332.578771" yMax="171.168869">Aufgaben</word>
</line>
<line xMin="260.781924" yMin="175.033981" xMax="332.578771" yMax="186.293190">
<word xMin="260.781924" yMin="175.033981" xMax="271.441613" yMax="186.293190">Ei</word>
<word xMin="274.550689" yMin="175.033981" xMax="277.875840" yMax="186.293190">/</word>
<word xMin="281.008924" yMin="175.033981" xMax="332.578771" yMax="186.293190">Aufgaben</word>
</line>
<line xMin="260.781924" yMin="190.158302" xMax="336.648179" yMax="201.417512">
<word xMin="260.781924" yMin="190.158302" xMax="275.451001" yMax="201.417512"></word>
<word xMin="278.620097" yMin="190.158302" xMax="281.945248" yMax="201.417512">/</word>
<word xMin="285.078332" yMin="190.158302" xMax="336.648179" yMax="201.417512">Aufgaben</word>
</line>
<line xMin="260.781924" yMin="203.842207" xMax="340.009343" yMax="215.101417">
<word xMin="260.781924" yMin="203.842207" xMax="279.304334" yMax="215.101417">We</word>
<word xMin="282.209339" yMin="203.842207" xMax="285.534490" yMax="215.101417">/</word>
<word xMin="288.439496" yMin="203.842207" xMax="340.009343" yMax="215.101417">Aufgaben</word>
</line>
</block>
</flow>
<flow>
<block xMin="183.193911" yMin="218.966528" xMax="216.505439" yMax="259.033902">
<line xMin="183.193911" yMin="218.966528" xMax="216.505439" yMax="230.225738">
<word xMin="183.193911" yMin="218.966528" xMax="216.505439" yMax="230.225738">Entfall</word>
</line>
<line xMin="183.193911" yMin="232.650432" xMax="216.505439" yMax="243.909642">
<word xMin="183.193911" yMin="232.650432" xMax="216.505439" yMax="243.909642">Entfall</word>
</line>
<line xMin="183.193911" yMin="247.774692" xMax="216.505439" yMax="259.033902">
<word xMin="183.193911" yMin="247.774692" xMax="216.505439" yMax="259.033902">Entfall</word>
</line>
</block>
<block xMin="260.781924" yMin="262.899014" xMax="297.466620" yMax="274.158224">
<line xMin="260.781924" yMin="262.899014" xMax="297.466620" yMax="274.158224">
<word xMin="260.781924" yMin="262.899014" xMax="276.771458" yMax="274.158224">KA</word>
<word xMin="280.144625" yMin="262.899014" xMax="297.466620" yMax="274.158224">Fkr</word>
</line>
</block>
<block xMin="183.193911" yMin="278.023335" xMax="249.816967" yMax="334.655479">
<line xMin="183.193911" yMin="278.023335" xMax="249.816967" yMax="289.282545">
<word xMin="183.193911" yMin="278.023335" xMax="233.179210" yMax="289.282545">Mi-12.12.</word>
<word xMin="236.564381" yMin="278.023335" xMax="239.889532" yMax="289.282545">/</word>
<word xMin="243.142658" yMin="278.023335" xMax="249.816967" yMax="289.282545">1</word>
</line>
<line xMin="183.193911" yMin="293.147658" xMax="249.816967" yMax="304.406867">
<word xMin="183.193911" yMin="293.147658" xMax="233.179210" yMax="304.406867">Mi-12.12.</word>
<word xMin="236.564381" yMin="293.147658" xMax="239.889532" yMax="304.406867">/</word>
<word xMin="243.142658" yMin="293.147658" xMax="249.816967" yMax="304.406867">2</word>
</line>
<line xMin="183.193911" yMin="308.271979" xMax="216.505439" yMax="319.531189">
<word xMin="183.193911" yMin="308.271979" xMax="216.505439" yMax="319.531189">Entfall</word>
</line>
<line xMin="183.193911" yMin="323.396269" xMax="216.505439" yMax="334.655479">
<word xMin="183.193911" yMin="323.396269" xMax="216.505439" yMax="334.655479">Entfall</word>
</line>
</block>
<block xMin="183.193911" yMin="353.644882" xMax="216.505439" yMax="380.028413">
<line xMin="183.193911" yMin="353.644882" xMax="216.505439" yMax="364.904092">
<word xMin="183.193911" yMin="353.644882" xMax="216.505439" yMax="364.904092">Entfall</word>
</line>
<line xMin="183.193911" yMin="368.769203" xMax="216.505439" yMax="380.028413">
<word xMin="183.193911" yMin="368.769203" xMax="216.505439" yMax="380.028413">Entfall</word>
</line>
</block>
</flow>
<flow>
<block xMin="260.781924" yMin="338.520561" xMax="336.648179" yMax="364.904092">
<line xMin="260.781924" yMin="338.520561" xMax="336.648179" yMax="349.779771">
<word xMin="260.781924" yMin="338.520561" xMax="275.451001" yMax="349.779771">Ku</word>
<word xMin="278.620097" yMin="338.520561" xMax="281.945248" yMax="349.779771">/</word>
<word xMin="285.078332" yMin="338.520561" xMax="336.648179" yMax="349.779771">Aufgaben</word>
</line>
<line xMin="260.781924" yMin="353.644882" xMax="315.917005" yMax="364.904092">
<word xMin="260.781924" yMin="353.644882" xMax="296.758375" yMax="364.904092">KEINE</word>
<word xMin="299.927471" yMin="353.644882" xMax="315.917005" yMax="364.904092">KA</word>
</line>
</block>
<block xMin="260.781924" yMin="383.893495" xMax="339.889301" yMax="425.401348">
<line xMin="260.781924" yMin="383.893495" xMax="295.954096" yMax="395.152705">
<word xMin="260.781924" yMin="383.893495" xMax="295.954096" yMax="395.152705">Raum!</word>
</line>
<line xMin="260.781924" yMin="399.017816" xMax="339.889301" yMax="410.277026">
<word xMin="260.781924" yMin="399.017816" xMax="278.788155" yMax="410.277026">Hei</word>
<word xMin="281.849215" yMin="399.017816" xMax="285.174366" yMax="410.277026">/</word>
<word xMin="288.319454" yMin="399.017816" xMax="339.889301" yMax="410.277026">Aufgaben</word>
</line>
<line xMin="260.781924" yMin="414.142138" xMax="339.889301" yMax="425.401348">
<word xMin="260.781924" yMin="414.142138" xMax="278.788155" yMax="425.401348">Hei</word>
<word xMin="281.849215" yMin="414.142138" xMax="285.174366" yMax="425.401348">/</word>
<word xMin="288.319454" yMin="414.142138" xMax="339.889301" yMax="425.401348">Aufgaben</word>
</line>
</block>
</flow>
<flow>
<block xMin="183.193911" yMin="429.266460" xMax="252.577923" yMax="455.649960">
<line xMin="183.193911" yMin="429.266460" xMax="252.577923" yMax="440.525670">
<word xMin="183.193911" yMin="429.266460" xMax="235.880144" yMax="440.525670">Do-13.12.</word>
<word xMin="239.313332" yMin="429.266460" xMax="242.638483" yMax="440.525670">/</word>
<word xMin="245.903613" yMin="429.266460" xMax="252.577923" yMax="440.525670">3</word>
</line>
<line xMin="183.193911" yMin="444.390750" xMax="252.577923" yMax="455.649960">
<word xMin="183.193911" yMin="444.390750" xMax="235.880144" yMax="455.649960">Do-13.12.</word>
<word xMin="239.313332" yMin="444.390750" xMax="242.638483" yMax="455.649960">/</word>
<word xMin="245.903613" yMin="444.390750" xMax="252.577923" yMax="455.649960">4</word>
</line>
</block>
</flow>
<flow>
<block xMin="183.193911" yMin="520.012297" xMax="252.577923" yMax="591.768733">
<line xMin="183.193911" yMin="520.012297" xMax="252.577923" yMax="531.271507">
<word xMin="183.193911" yMin="520.012297" xMax="235.880144" yMax="531.271507">Do-13.12.</word>
<word xMin="239.313332" yMin="520.012297" xMax="242.638483" yMax="531.271507">/</word>
<word xMin="245.903613" yMin="520.012297" xMax="252.577923" yMax="531.271507">5</word>
</line>
<line xMin="183.193911" yMin="535.136619" xMax="252.577923" yMax="546.395829">
<word xMin="183.193911" yMin="535.136619" xMax="235.880144" yMax="546.395829">Do-13.12.</word>
<word xMin="239.313332" yMin="535.136619" xMax="242.638483" yMax="546.395829">/</word>
<word xMin="245.903613" yMin="535.136619" xMax="252.577923" yMax="546.395829">6</word>
</line>
<line xMin="183.193911" yMin="550.260940" xMax="216.505439" yMax="561.520150">
<word xMin="183.193911" yMin="550.260940" xMax="216.505439" yMax="561.520150">Entfall</word>
</line>
<line xMin="183.193911" yMin="565.385262" xMax="216.505439" yMax="576.644471">
<word xMin="183.193911" yMin="565.385262" xMax="216.505439" yMax="576.644471">Entfall</word>
</line>
<line xMin="183.193911" yMin="580.509523" xMax="216.505439" yMax="591.768733">
<word xMin="183.193911" yMin="580.509523" xMax="216.505439" yMax="591.768733">Entfall</word>
</line>
</block>
<block xMin="260.781924" yMin="595.633844" xMax="424.302514" yMax="606.893054">
<line xMin="260.781924" yMin="595.633844" xMax="424.302514" yMax="606.893054">
<word xMin="260.781924" yMin="595.633844" xMax="299.459309" yMax="606.893054">geteilte</word>
<word xMin="302.568385" yMin="595.633844" xMax="349.264546" yMax="606.893054">Gruppen</word>
<word xMin="352.493663" yMin="595.633844" xMax="417.724238" yMax="606.893054">Schwimmen</word>
<word xMin="420.977364" yMin="595.633844" xMax="424.302514" yMax="606.893054">/</word>
</line>
</block>
<block xMin="183.193911" yMin="625.882487" xMax="216.505439" yMax="637.141697">
<line xMin="183.193911" yMin="625.882487" xMax="216.505439" yMax="637.141697">
<word xMin="183.193911" yMin="625.882487" xMax="216.505439" yMax="637.141697">Entfall</word>
</line>
</block>
<block xMin="260.781924" yMin="641.006809" xMax="295.954096" yMax="652.266018">
<line xMin="260.781924" yMin="641.006809" xMax="295.954096" yMax="652.266018">
<word xMin="260.781924" yMin="641.006809" xMax="295.954096" yMax="652.266018">Raum!</word>
</line>
</block>
<block xMin="183.193911" yMin="656.131130" xMax="216.505439" yMax="682.514662">
<line xMin="183.193911" yMin="656.131130" xMax="216.505439" yMax="667.390340">
<word xMin="183.193911" yMin="656.131130" xMax="216.505439" yMax="667.390340">Entfall</word>
</line>
<line xMin="183.193911" yMin="671.255452" xMax="216.505439" yMax="682.514662">
<word xMin="183.193911" yMin="671.255452" xMax="216.505439" yMax="682.514662">Entfall</word>
</line>
</block>
</flow>
<flow>
<block xMin="471.993720" yMin="6.712403" xMax="537.937342" yMax="19.097534">
<line xMin="471.993720" yMin="6.712403" xMax="537.937342" yMax="19.097534">
<word xMin="471.993720" yMin="6.712403" xMax="504.978736" yMax="19.097534">Untis</word>
<word xMin="508.570379" yMin="6.712403" xMax="537.937342" yMax="19.097534">2017</word>
</line>
</block>
<block xMin="447.567867" yMin="21.630261" xMax="537.238900" yMax="32.889471">
<line xMin="447.567867" yMin="21.630261" xMax="537.238900" yMax="32.889471">
<word xMin="447.567867" yMin="21.630261" xMax="507.876739" yMax="32.889471">13.12.2018</word>
<word xMin="513.890820" yMin="21.630261" xMax="537.238900" yMax="32.889471">9:04</word>
</line>
</block>
</flow>
</page>
<page width="595.440000" height="841.680000">
</page>
</doc>
</body>
</html>

View file

@ -1,455 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pdf2xml SYSTEM "pdf2xml.dtd">
<pdf2xml producer="poppler" version="0.68.0">
<page number="1" position="absolute" top="0" left="0" height="1262" width="893">
<fontspec id="0" size="17" family="Times" color="#000000"/>
<fontspec id="1" size="16" family="Times" color="#000000"/>
<fontspec id="2" size="25" family="Times" color="#000000"/>
<fontspec id="3" size="14" family="Times" color="#000000"/>
<fontspec id="4" size="16" family="Times" color="#000000"/>
<text top="10" left="3" width="297" height="19" font="0"><b>D-70563 FANNY-LEICHT-GYMN.</b></text>
<text top="32" left="3" width="275" height="17" font="1">STUTTGART, F.-LEICHT-STR. 13</text>
<text top="9" left="332" width="248" height="17" font="1">Schuljahr 2018/19 - 1. Halbjahr</text>
<text top="32" left="332" width="236" height="17" font="1">gültig ab 10. September 2018</text>
<text top="10" left="708" width="99" height="19" font="0"><b>Untis 2017</b></text>
<text top="32" left="671" width="135" height="17" font="1">13.12.2018 9:04</text>
<text top="64" left="3" width="473" height="25" font="2"><b>Klasse 13.12. / Donnerstag Woche-A</b></text>
<text top="111" left="3" width="203" height="15" font="3">Ordnungsdienst: Klasse 10a</text>
<text top="172" left="3" width="21" height="17" font="1">Kl.</text>
<text top="172" left="55" width="32" height="17" font="1">Std.</text>
<text top="172" left="123" width="191" height="17" font="1">Vertr. Fach Rau nach</text>
<text top="172" left="391" width="134" height="17" font="1">Vertretungs-Text</text>
<text top="194" left="3" width="20" height="17" font="1">5b</text>
<text top="194" left="55" width="10" height="17" font="1">1</text>
<text top="194" left="123" width="27" height="17" font="4"><i>Hei</i></text>
<text top="194" left="178" width="13" height="17" font="4"><i>D</i></text>
<text top="194" left="233" width="18" height="17" font="1">---</text>
<text top="194" left="275" width="50" height="17" font="1">Entfall</text>
<text top="217" left="3" width="20" height="17" font="1">5b</text>
<text top="217" left="55" width="10" height="17" font="1">2</text>
<text top="217" left="123" width="21" height="17" font="1">Fu</text>
<text top="217" left="178" width="13" height="17" font="1">D</text>
<text top="217" left="233" width="30" height="17" font="1">114</text>
<text top="217" left="391" width="220" height="17" font="1">Hei / Aufgaben, Arbeitsheft!</text>
<text top="240" left="3" width="20" height="17" font="1">5b</text>
<text top="240" left="55" width="10" height="17" font="1">3</text>
<text top="240" left="123" width="24" height="17" font="1">Oe</text>
<text top="240" left="178" width="15" height="17" font="1">M</text>
<text top="240" left="233" width="30" height="17" font="1">114</text>
<text top="240" left="391" width="108" height="17" font="1">Ei / Aufgaben</text>
<text top="263" left="3" width="20" height="17" font="1">5b</text>
<text top="263" left="55" width="10" height="17" font="1">4</text>
<text top="263" left="123" width="28" height="17" font="1">Rm</text>
<text top="263" left="178" width="15" height="17" font="1">M</text>
<text top="263" left="233" width="30" height="17" font="1">114</text>
<text top="263" left="391" width="108" height="17" font="1">Ei / Aufgaben</text>
<text top="285" left="3" width="29" height="17" font="1">6bc</text>
<text top="285" left="55" width="10" height="17" font="1">5</text>
<text top="285" left="123" width="17" height="17" font="1">Sf</text>
<text top="285" left="178" width="34" height="17" font="1">EvR</text>
<text top="285" left="233" width="30" height="17" font="1">321</text>
<text top="285" left="391" width="114" height="17" font="1">Bü / Aufgaben</text>
<text top="306" left="3" width="29" height="17" font="1">6bc</text>
<text top="306" left="55" width="10" height="17" font="1">5</text>
<text top="306" left="123" width="22" height="17" font="1">Dk</text>
<text top="306" left="178" width="25" height="17" font="1">KR</text>
<text top="306" left="233" width="30" height="17" font="1">121</text>
<text top="306" left="391" width="119" height="17" font="1">We / Aufgaben</text>
<text top="328" left="3" width="29" height="17" font="1">6bc</text>
<text top="328" left="55" width="10" height="17" font="1">6</text>
<text top="328" left="123" width="22" height="17" font="4"><i></i></text>
<text top="328" left="178" width="34" height="17" font="4"><i>EvR</i></text>
<text top="328" left="233" width="18" height="17" font="1">---</text>
<text top="328" left="275" width="50" height="17" font="1">Entfall</text>
<text top="349" left="3" width="29" height="17" font="1">6bc</text>
<text top="349" left="55" width="10" height="17" font="1">6</text>
<text top="349" left="123" width="27" height="17" font="4"><i>We</i></text>
<text top="349" left="178" width="25" height="17" font="4"><i>KR</i></text>
<text top="349" left="233" width="18" height="17" font="1">---</text>
<text top="349" left="275" width="50" height="17" font="1">Entfall</text>
<text top="372" left="3" width="20" height="17" font="1">6d</text>
<text top="372" left="55" width="10" height="17" font="1">6</text>
<text top="371" left="123" width="22" height="17" font="4"><i>Ku</i></text>
<text top="371" left="178" width="21" height="17" font="4"><i>Ek</i></text>
<text top="372" left="233" width="18" height="17" font="1">---</text>
<text top="372" left="275" width="50" height="17" font="1">Entfall</text>
<text top="394" left="3" width="20" height="17" font="1">7b</text>
<text top="394" left="55" width="10" height="17" font="1">2</text>
<text top="394" left="123" width="24" height="17" font="1">Ga</text>
<text top="394" left="178" width="14" height="17" font="1">G</text>
<text top="394" left="233" width="30" height="17" font="1">414</text>
<text top="394" left="391" width="55" height="17" font="1">KA Fkr</text>
<text top="417" left="3" width="20" height="17" font="1">7b</text>
<text top="417" left="55" width="10" height="17" font="1">8</text>
<text top="417" left="123" width="24" height="17" font="4"><i>Gg</i></text>
<text top="417" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="417" left="233" width="18" height="17" font="1">---</text>
<text top="417" left="275" width="100" height="17" font="1">Mi-12.12. / 1</text>
<text top="440" left="3" width="20" height="17" font="1">7b</text>
<text top="440" left="55" width="10" height="17" font="1">9</text>
<text top="439" left="123" width="24" height="17" font="4"><i>Gg</i></text>
<text top="439" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="440" left="233" width="18" height="17" font="1">---</text>
<text top="440" left="275" width="100" height="17" font="1">Mi-12.12. / 2</text>
<text top="462" left="3" width="19" height="17" font="1">7c</text>
<text top="462" left="55" width="36" height="17" font="1">8 - 9</text>
<text top="462" left="123" width="27" height="17" font="4"><i>Gw</i></text>
<text top="462" left="178" width="14" height="17" font="4"><i>G</i></text>
<text top="462" left="233" width="18" height="17" font="1">---</text>
<text top="462" left="275" width="50" height="17" font="1">Entfall</text>
<text top="485" left="3" width="20" height="17" font="1">7d</text>
<text top="485" left="55" width="10" height="17" font="1">1</text>
<text top="485" left="123" width="22" height="17" font="4"><i>Ku</i></text>
<text top="485" left="178" width="13" height="17" font="4"><i>D</i></text>
<text top="485" left="233" width="18" height="17" font="1">---</text>
<text top="485" left="275" width="50" height="17" font="1">Entfall</text>
<text top="508" left="3" width="20" height="17" font="1">7d</text>
<text top="508" left="55" width="10" height="17" font="1">2</text>
<text top="508" left="123" width="23" height="17" font="1">Oz</text>
<text top="508" left="178" width="13" height="17" font="1">D</text>
<text top="508" left="233" width="30" height="17" font="1">416</text>
<text top="508" left="391" width="114" height="17" font="1">Ku / Aufgaben</text>
<text top="530" left="3" width="20" height="17" font="1">8a</text>
<text top="530" left="55" width="36" height="17" font="1">1 - 2</text>
<text top="530" left="123" width="16" height="17" font="4"><i>Ei</i></text>
<text top="530" left="178" width="23" height="17" font="4"><i>Ch</i></text>
<text top="530" left="233" width="18" height="17" font="1">---</text>
<text top="530" left="275" width="50" height="17" font="1">Entfall</text>
<text top="530" left="391" width="83" height="17" font="1">KEINE KA</text>
<text top="553" left="3" width="29" height="17" font="1">9ac</text>
<text top="553" left="55" width="36" height="17" font="1">8 - 9</text>
<text top="553" left="123" width="19" height="17" font="4"><i>Lk</i></text>
<text top="553" left="178" width="31" height="17" font="4"><i>SpJ</i></text>
<text top="553" left="233" width="18" height="17" font="1">---</text>
<text top="553" left="275" width="50" height="17" font="1">Entfall</text>
<text top="576" left="3" width="19" height="17" font="1">9c</text>
<text top="576" left="55" width="36" height="17" font="1">1 - 2</text>
<text top="576" left="123" width="22" height="17" font="1">Jw</text>
<text top="576" left="178" width="23" height="17" font="1">Gk</text>
<text top="576" left="233" width="30" height="17" font="1">322</text>
<text top="576" left="391" width="53" height="17" font="1">Raum!</text>
<text top="599" left="3" width="19" height="17" font="1">9c</text>
<text top="599" left="55" width="10" height="17" font="1">3</text>
<text top="599" left="123" width="18" height="17" font="1">Hf</text>
<text top="599" left="178" width="13" height="17" font="1">D</text>
<text top="599" left="233" width="30" height="17" font="1">220</text>
<text top="599" left="391" width="119" height="17" font="1">Hei / Aufgaben</text>
<text top="621" left="3" width="19" height="17" font="1">9c</text>
<text top="621" left="55" width="10" height="17" font="1">4</text>
<text top="621" left="123" width="31" height="17" font="1">Bkn</text>
<text top="621" left="178" width="13" height="17" font="1">D</text>
<text top="621" left="233" width="30" height="17" font="1">220</text>
<text top="621" left="391" width="119" height="17" font="1">Hei / Aufgaben</text>
<text top="644" left="3" width="20" height="17" font="1">9d</text>
<text top="644" left="55" width="10" height="17" font="1">1</text>
<text top="644" left="123" width="18" height="17" font="4"><i>Rt</i></text>
<text top="644" left="178" width="23" height="17" font="4"><i>Gk</i></text>
<text top="644" left="233" width="18" height="17" font="1">---</text>
<text top="644" left="275" width="104" height="17" font="1">Do-13.12. / 3</text>
<text top="667" left="3" width="20" height="17" font="1">9d</text>
<text top="667" left="55" width="10" height="17" font="1">2</text>
<text top="666" left="123" width="18" height="17" font="4"><i>Rt</i></text>
<text top="666" left="178" width="23" height="17" font="4"><i>Gk</i></text>
<text top="667" left="233" width="18" height="17" font="1">---</text>
<text top="667" left="275" width="104" height="17" font="1">Do-13.12. / 4</text>
<text top="689" left="3" width="20" height="17" font="1">9d</text>
<text top="689" left="55" width="10" height="17" font="1">3</text>
<text top="689" left="123" width="18" height="17" font="1">Rt</text>
<text top="689" left="178" width="23" height="17" font="1">Gk</text>
<text top="689" left="233" width="30" height="17" font="1">218</text>
<text top="712" left="3" width="20" height="17" font="1">9d</text>
<text top="712" left="55" width="10" height="17" font="1">4</text>
<text top="712" left="123" width="18" height="17" font="1">Rt</text>
<text top="712" left="178" width="23" height="17" font="1">Gk</text>
<text top="712" left="233" width="30" height="17" font="1">218</text>
<text top="735" left="3" width="20" height="17" font="1">9d</text>
<text top="735" left="55" width="10" height="17" font="1">5</text>
<text top="735" left="123" width="17" height="17" font="1">Ni</text>
<text top="735" left="178" width="24" height="17" font="1">BK</text>
<text top="735" left="233" width="30" height="17" font="1">126</text>
<text top="757" left="3" width="20" height="17" font="1">9d</text>
<text top="757" left="55" width="10" height="17" font="1">6</text>
<text top="757" left="123" width="17" height="17" font="1">Ni</text>
<text top="757" left="178" width="24" height="17" font="1">BK</text>
<text top="757" left="233" width="30" height="17" font="1">126</text>
<text top="780" left="3" width="20" height="17" font="1">9d</text>
<text top="780" left="55" width="10" height="17" font="1">8</text>
<text top="780" left="123" width="17" height="17" font="4"><i>Ni</i></text>
<text top="780" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="780" left="233" width="18" height="17" font="1">---</text>
<text top="780" left="275" width="104" height="17" font="1">Do-13.12. / 5</text>
<text top="803" left="3" width="20" height="17" font="1">9d</text>
<text top="803" left="55" width="10" height="17" font="1">9</text>
<text top="802" left="123" width="17" height="17" font="4"><i>Ni</i></text>
<text top="802" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="803" left="233" width="18" height="17" font="1">---</text>
<text top="803" left="275" width="104" height="17" font="1">Do-13.12. / 6</text>
<text top="825" left="3" width="30" height="17" font="1">10b</text>
<text top="825" left="55" width="56" height="17" font="1">10 - 11</text>
<text top="825" left="123" width="21" height="17" font="4"><i>Fe</i></text>
<text top="825" left="178" width="22" height="17" font="4"><i>Ph</i></text>
<text top="825" left="233" width="18" height="17" font="1">---</text>
<text top="825" left="275" width="50" height="17" font="1">Entfall</text>
<text top="848" left="3" width="20" height="17" font="1">11</text>
<text top="848" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="848" left="123" width="16" height="17" font="4"><i>Ft</i></text>
<text top="848" left="178" width="20" height="17" font="4"><i>g4</i></text>
<text top="848" left="233" width="18" height="17" font="1">---</text>
<text top="848" left="275" width="50" height="17" font="1">Entfall</text>
<text top="871" left="3" width="20" height="17" font="1">11</text>
<text top="871" left="55" width="10" height="17" font="1">5</text>
<text top="870" left="123" width="16" height="17" font="4"><i>Ei</i></text>
<text top="870" left="178" width="25" height="17" font="4"><i>M1</i></text>
<text top="871" left="233" width="18" height="17" font="1">---</text>
<text top="871" left="275" width="50" height="17" font="1">Entfall</text>
<text top="893" left="3" width="20" height="17" font="1">11</text>
<text top="893" left="55" width="10" height="17" font="1">7</text>
<text top="893" left="123" width="19" height="17" font="1">Gt</text>
<text top="893" left="178" width="85" height="17" font="1">sem1 324</text>
<text top="893" left="391" width="250" height="17" font="1">geteilte Gruppen Schwimmen / </text>
<text top="916" left="3" width="20" height="17" font="1">11</text>
<text top="916" left="55" width="36" height="17" font="1">8 - 9</text>
<text top="916" left="123" width="23" height="17" font="1">Ro</text>
<text top="916" left="178" width="85" height="17" font="1">sem1 ???</text>
<text top="939" left="3" width="20" height="17" font="1">11</text>
<text top="939" left="55" width="56" height="17" font="1">10 - 11</text>
<text top="939" left="123" width="19" height="17" font="4"><i>Lk</i></text>
<text top="939" left="178" width="29" height="17" font="4"><i>sp3</i></text>
<text top="939" left="233" width="18" height="17" font="1">---</text>
<text top="939" left="275" width="50" height="17" font="1">Entfall</text>
<text top="962" left="3" width="20" height="17" font="1">12</text>
<text top="962" left="55" width="36" height="17" font="1">1 - 2</text>
<text top="962" left="123" width="17" height="17" font="1">Ni</text>
<text top="962" left="178" width="29" height="17" font="1">bk1</text>
<text top="962" left="233" width="30" height="17" font="1">412</text>
<text top="962" left="391" width="53" height="17" font="1">Raum!</text>
<text top="984" left="3" width="20" height="17" font="1">12</text>
<text top="984" left="55" width="10" height="17" font="1">5</text>
<text top="984" left="123" width="22" height="17" font="4"><i>Ku</i></text>
<text top="984" left="178" width="23" height="17" font="4"><i>D2</i></text>
<text top="984" left="233" width="18" height="17" font="1">---</text>
<text top="984" left="275" width="50" height="17" font="1">Entfall</text>
<text top="1007" left="3" width="88" height="17" font="1">1112 8 - 9</text>
<text top="1007" left="123" width="21" height="17" font="4"><i>Fe</i></text>
<text top="1007" left="178" width="34" height="17" font="4"><i>vma</i></text>
<text top="1007" left="233" width="18" height="17" font="1">---</text>
<text top="1007" left="275" width="50" height="17" font="1">Entfall</text>
</page>
<page number="2" position="absolute" top="0" left="0" height="1262" width="893">
<text top="10" left="3" width="297" height="19" font="0"><b>D-70563 FANNY-LEICHT-GYMN.</b></text>
<text top="32" left="3" width="275" height="17" font="1">STUTTGART, F.-LEICHT-STR. 13</text>
<text top="9" left="332" width="248" height="17" font="1">Schuljahr 2018/19 - 1. Halbjahr</text>
<text top="32" left="332" width="236" height="17" font="1">gültig ab 10. September 2018</text>
<text top="10" left="708" width="99" height="19" font="0"><b>Untis 2017</b></text>
<text top="32" left="671" width="135" height="17" font="1">13.12.2018 8:11</text>
<text top="64" left="3" width="413" height="25" font="2"><b>Klasse 14.12. / Freitag Woche-A</b></text>
<text top="111" left="3" width="203" height="15" font="3">Ordnungsdienst: Klasse 10a</text>
<text top="172" left="3" width="21" height="17" font="1">Kl.</text>
<text top="172" left="55" width="235" height="17" font="1">Std. Vertr. Fach Rau nach</text>
<text top="172" left="398" width="134" height="17" font="1">Vertretungs-Text</text>
<text top="194" left="3" width="62" height="17" font="1">5abc 1</text>
<text top="194" left="102" width="27" height="17" font="4"><i>We</i></text>
<text top="194" left="157" width="25" height="17" font="4"><i>KR</i></text>
<text top="194" left="209" width="18" height="17" font="1">---</text>
<text top="194" left="251" width="50" height="17" font="1">Entfall</text>
<text top="215" left="3" width="20" height="17" font="1">5a</text>
<text top="215" left="55" width="10" height="17" font="1">1</text>
<text top="215" left="102" width="22" height="17" font="4"><i></i></text>
<text top="215" left="157" width="34" height="17" font="4"><i>EvR</i></text>
<text top="215" left="209" width="18" height="17" font="1">---</text>
<text top="215" left="251" width="50" height="17" font="1">Entfall</text>
<text top="238" left="3" width="62" height="17" font="1">5abc 2</text>
<text top="238" left="102" width="22" height="17" font="1">Jw</text>
<text top="238" left="157" width="25" height="17" font="1">KR</text>
<text top="238" left="209" width="30" height="17" font="1">123</text>
<text top="238" left="398" width="119" height="17" font="1">We / Aufgaben</text>
<text top="258" left="3" width="20" height="17" font="1">5a</text>
<text top="258" left="55" width="10" height="17" font="1">2</text>
<text top="258" left="102" width="23" height="17" font="1">Ng</text>
<text top="258" left="157" width="34" height="17" font="1">EvR</text>
<text top="258" left="209" width="30" height="17" font="1">321</text>
<text top="258" left="398" width="114" height="17" font="1">Bü / Aufgaben</text>
<text top="281" left="3" width="20" height="17" font="1">5d</text>
<text top="281" left="55" width="10" height="17" font="1">3</text>
<text top="281" left="102" width="20" height="17" font="1">Lo</text>
<text top="281" left="157" width="13" height="17" font="1">D</text>
<text top="281" left="209" width="30" height="17" font="1">122</text>
<text top="281" left="398" width="171" height="17" font="1">anstatt 17.12., 1. Std.</text>
<text top="304" left="3" width="20" height="17" font="1">5d</text>
<text top="304" left="55" width="10" height="17" font="1">4</text>
<text top="304" left="102" width="20" height="17" font="1">Lo</text>
<text top="304" left="157" width="13" height="17" font="1">D</text>
<text top="304" left="209" width="30" height="17" font="1">122</text>
<text top="304" left="398" width="166" height="17" font="1">anstatt 19.12., 1 Std.</text>
<text top="326" left="3" width="20" height="17" font="1">6a</text>
<text top="326" left="55" width="10" height="17" font="1">6</text>
<text top="326" left="102" width="23" height="17" font="4"><i>He</i></text>
<text top="326" left="157" width="12" height="17" font="4"><i>E</i></text>
<text top="326" left="209" width="18" height="17" font="1">---</text>
<text top="326" left="251" width="50" height="17" font="1">Entfall</text>
<text top="349" left="3" width="62" height="17" font="1">6acd 7</text>
<text top="349" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="349" left="157" width="26" height="17" font="4"><i>MF</i></text>
<text top="349" left="209" width="18" height="17" font="1">---</text>
<text top="349" left="251" width="50" height="17" font="1">Entfall</text>
<text top="372" left="3" width="19" height="17" font="1">6c</text>
<text top="372" left="55" width="10" height="17" font="1">1</text>
<text top="371" left="102" width="22" height="17" font="4"><i>Ku</i></text>
<text top="371" left="157" width="13" height="17" font="4"><i>D</i></text>
<text top="372" left="209" width="18" height="17" font="1">---</text>
<text top="372" left="251" width="50" height="17" font="1">Entfall</text>
<text top="394" left="3" width="19" height="17" font="1">6c</text>
<text top="394" left="55" width="10" height="17" font="1">2</text>
<text top="394" left="102" width="16" height="17" font="1">Sl</text>
<text top="394" left="157" width="13" height="17" font="1">D</text>
<text top="394" left="209" width="30" height="17" font="1">121</text>
<text top="394" left="398" width="114" height="17" font="1">Ku / Aufgaben</text>
<text top="417" left="3" width="20" height="17" font="1">7a</text>
<text top="417" left="55" width="10" height="17" font="1">3</text>
<text top="417" left="102" width="17" height="17" font="1">Di</text>
<text top="417" left="157" width="13" height="17" font="1">D</text>
<text top="417" left="209" width="30" height="17" font="1">323</text>
<text top="417" left="398" width="48" height="17" font="1">Raum</text>
<text top="440" left="3" width="20" height="17" font="1">7a</text>
<text top="440" left="55" width="10" height="17" font="1">4</text>
<text top="440" left="102" width="33" height="17" font="1">Hhn</text>
<text top="440" left="157" width="15" height="17" font="1">M</text>
<text top="440" left="209" width="30" height="17" font="1">323</text>
<text top="462" left="3" width="20" height="17" font="1">7a</text>
<text top="462" left="55" width="10" height="17" font="1">5</text>
<text top="462" left="102" width="33" height="17" font="1">Hhn</text>
<text top="462" left="157" width="15" height="17" font="1">M</text>
<text top="462" left="209" width="30" height="17" font="1">323</text>
<text top="485" left="3" width="20" height="17" font="1">7a</text>
<text top="485" left="55" width="10" height="17" font="1">6</text>
<text top="485" left="102" width="33" height="17" font="1">Hhn</text>
<text top="485" left="157" width="15" height="17" font="1">M</text>
<text top="485" left="209" width="30" height="17" font="1">323</text>
<text top="485" left="398" width="88" height="17" font="1">findet statt!</text>
<text top="508" left="3" width="20" height="17" font="1">7b</text>
<text top="508" left="55" width="10" height="17" font="1">6</text>
<text top="507" left="102" width="18" height="17" font="4"><i>Rt</i></text>
<text top="507" left="157" width="13" height="17" font="4"><i>D</i></text>
<text top="508" left="209" width="18" height="17" font="1">---</text>
<text top="508" left="251" width="50" height="17" font="1">Entfall</text>
<text top="530" left="3" width="20" height="17" font="1">8a</text>
<text top="530" left="55" width="10" height="17" font="1">1</text>
<text top="530" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="530" left="157" width="15" height="17" font="4"><i>M</i></text>
<text top="530" left="209" width="18" height="17" font="1">---</text>
<text top="530" left="251" width="50" height="17" font="1">Entfall</text>
<text top="553" left="3" width="20" height="17" font="1">8a</text>
<text top="553" left="55" width="10" height="17" font="1">2</text>
<text top="553" left="102" width="14" height="17" font="1">Li</text>
<text top="553" left="157" width="12" height="17" font="1">E</text>
<text top="553" left="209" width="30" height="17" font="1">323</text>
<text top="553" left="398" width="89" height="17" font="1">statt 18.12.</text>
<text top="576" left="3" width="19" height="17" font="1">9c</text>
<text top="576" left="55" width="36" height="17" font="1">5 - 6</text>
<text top="576" left="102" width="27" height="17" font="4"><i>Hei</i></text>
<text top="576" left="157" width="13" height="17" font="4"><i>D</i></text>
<text top="576" left="209" width="18" height="17" font="1">---</text>
<text top="576" left="251" width="50" height="17" font="1">Entfall</text>
<text top="599" left="3" width="20" height="17" font="1">9d</text>
<text top="599" left="55" width="75" height="17" font="1">1 - 2 Rm</text>
<text top="599" left="157" width="82" height="17" font="1">NWT 412</text>
<text top="599" left="398" width="48" height="17" font="1">Raum</text>
<text top="621" left="3" width="20" height="17" font="1">9d</text>
<text top="621" left="55" width="36" height="17" font="1">5 - 6</text>
<text top="621" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="621" left="157" width="15" height="17" font="4"><i>M</i></text>
<text top="621" left="209" width="18" height="17" font="1">---</text>
<text top="621" left="251" width="50" height="17" font="1">Entfall</text>
<text top="644" left="3" width="30" height="17" font="1">10a</text>
<text top="644" left="55" width="80" height="17" font="1">3 - 4 Smr</text>
<text top="644" left="157" width="12" height="17" font="1">E</text>
<text top="644" left="209" width="30" height="17" font="1">413</text>
<text top="644" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="664" left="3" width="62" height="17" font="1">10ad 3</text>
<text top="664" left="102" width="23" height="17" font="1">Ro</text>
<text top="664" left="157" width="34" height="17" font="1">EvR</text>
<text top="664" left="209" width="25" height="17" font="1">SH</text>
<text top="664" left="398" width="48" height="17" font="1">Sport!</text>
<text top="685" left="3" width="88" height="17" font="1">10ad 3 - 4</text>
<text top="685" left="102" width="27" height="17" font="4"><i>We</i></text>
<text top="685" left="157" width="25" height="17" font="4"><i>KR</i></text>
<text top="685" left="209" width="18" height="17" font="1">---</text>
<text top="685" left="251" width="50" height="17" font="1">Entfall</text>
<text top="708" left="3" width="62" height="17" font="1">10ad 4</text>
<text top="708" left="102" width="19" height="17" font="1">Lk</text>
<text top="708" left="157" width="34" height="17" font="1">EvR</text>
<text top="708" left="209" width="25" height="17" font="1">SH</text>
<text top="708" left="398" width="48" height="17" font="1">Sport!</text>
<text top="730" left="3" width="30" height="17" font="1">10b</text>
<text top="730" left="55" width="63" height="17" font="1">3 - 4 Ki</text>
<text top="730" left="157" width="12" height="17" font="1">E</text>
<text top="730" left="209" width="30" height="17" font="1">414</text>
<text top="730" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="751" left="3" width="30" height="17" font="1">10b</text>
<text top="751" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="751" left="102" width="23" height="17" font="4"><i>He</i></text>
<text top="751" left="157" width="23" height="17" font="4"><i>Gk</i></text>
<text top="751" left="209" width="18" height="17" font="1">---</text>
<text top="751" left="251" width="133" height="17" font="1">Entfall für Lehrer</text>
<text top="774" left="3" width="88" height="17" font="1">10bc 5 - 6</text>
<text top="773" left="102" width="27" height="17" font="4"><i>We</i></text>
<text top="773" left="157" width="25" height="17" font="4"><i>KR</i></text>
<text top="774" left="209" width="18" height="17" font="1">---</text>
<text top="774" left="251" width="50" height="17" font="1">Entfall</text>
<text top="796" left="3" width="29" height="17" font="1">10c</text>
<text top="796" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="796" left="102" width="33" height="17" font="4"><i>Ran</i></text>
<text top="796" left="157" width="15" height="17" font="4"><i>M</i></text>
<text top="796" left="209" width="18" height="17" font="1">---</text>
<text top="796" left="251" width="50" height="17" font="1">Entfall</text>
<text top="796" left="398" width="86" height="17" font="1">alle bei Oe</text>
<text top="817" left="3" width="29" height="17" font="1">10c</text>
<text top="817" left="55" width="71" height="17" font="1">3 - 4 Oe</text>
<text top="817" left="157" width="12" height="17" font="1">E</text>
<text top="817" left="209" width="30" height="17" font="1">422</text>
<text top="817" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="839" left="3" width="30" height="17" font="1">10d</text>
<text top="839" left="55" width="74" height="17" font="1">3 - 4 Wd</text>
<text top="839" left="157" width="12" height="17" font="1">E</text>
<text top="839" left="209" width="30" height="17" font="1">416</text>
<text top="839" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="862" left="3" width="20" height="17" font="1">11</text>
<text top="862" left="55" width="64" height="17" font="1">3 - 4 At</text>
<text top="862" left="157" width="23" height="17" font="1">D3</text>
<text top="862" left="209" width="30" height="17" font="1">121</text>
<text top="862" left="398" width="48" height="17" font="1">Raum</text>
<text top="883" left="3" width="20" height="17" font="1">11</text>
<text top="883" left="55" width="63" height="17" font="1">3 - 4 Sl</text>
<text top="883" left="157" width="23" height="17" font="1">D2</text>
<text top="883" left="209" width="30" height="17" font="1">415</text>
<text top="883" left="398" width="48" height="17" font="1">Raum</text>
<text top="905" left="3" width="20" height="17" font="1">12</text>
<text top="905" left="55" width="67" height="17" font="1">1 - 2 Lo</text>
<text top="905" left="157" width="32" height="17" font="1">Sp1</text>
<text top="905" left="209" width="30" height="17" font="1">222</text>
<text top="905" left="398" width="61" height="17" font="1">Theorie</text>
<text top="928" left="3" width="20" height="17" font="1">12</text>
<text top="928" left="55" width="67" height="17" font="1">3 - 4 Mf</text>
<text top="928" left="157" width="22" height="17" font="1">E2</text>
<text top="928" left="209" width="30" height="17" font="1">218</text>
<text top="928" left="398" width="48" height="17" font="1">Raum</text>
<text top="949" left="3" width="20" height="17" font="1">12</text>
<text top="949" left="55" width="64" height="17" font="1">3 - 4 Sf</text>
<text top="949" left="157" width="25" height="17" font="1">M3</text>
<text top="949" left="209" width="30" height="17" font="1">322</text>
<text top="949" left="398" width="48" height="17" font="1">Raum</text>
<text top="969" left="3" width="20" height="17" font="1">12</text>
<text top="969" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="969" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="969" left="157" width="25" height="17" font="4"><i>M2</i></text>
<text top="969" left="209" width="18" height="17" font="1">---</text>
<text top="969" left="251" width="50" height="17" font="1">Entfall</text>
<text top="992" left="3" width="20" height="17" font="1">12</text>
<text top="992" left="55" width="36" height="17" font="1">5 - 6</text>
<text top="991" left="102" width="22" height="17" font="4"><i>Ku</i></text>
<text top="991" left="157" width="29" height="17" font="4"><i>ek1</i></text>
<text top="992" left="209" width="18" height="17" font="1">---</text>
<text top="992" left="251" width="50" height="17" font="1">Entfall</text>
</page>
</pdf2xml>

View file

@ -1,455 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pdf2xml SYSTEM "pdf2xml.dtd">
<pdf2xml producer="poppler" version="0.68.0">
<page number="1" position="absolute" top="0" left="0" height="1262" width="893">
<fontspec id="0" size="17" family="Times" color="#000000"/>
<fontspec id="1" size="16" family="Times" color="#000000"/>
<fontspec id="2" size="25" family="Times" color="#000000"/>
<fontspec id="3" size="14" family="Times" color="#000000"/>
<fontspec id="4" size="16" family="Times" color="#000000"/>
<text top="10" left="3" width="297" height="19" font="0"><b>D-70563 FANNY-LEICHT-GYMN.</b></text>
<text top="32" left="3" width="275" height="17" font="1">STUTTGART, F.-LEICHT-STR. 13</text>
<text top="9" left="332" width="248" height="17" font="1">Schuljahr 2018/19 - 1. Halbjahr</text>
<text top="32" left="332" width="236" height="17" font="1">gültig ab 10. September 2018</text>
<text top="10" left="708" width="99" height="19" font="0"><b>Untis 2017</b></text>
<text top="32" left="671" width="135" height="17" font="1">13.12.2018 9:04</text>
<text top="64" left="3" width="473" height="25" font="2"><b>Klasse 13.12. / Donnerstag Woche-A</b></text>
<text top="111" left="3" width="203" height="15" font="3">Ordnungsdienst: Klasse 10a</text>
<text top="172" left="3" width="21" height="17" font="1">Kl.</text>
<text top="172" left="55" width="32" height="17" font="1">Std.</text>
<text top="172" left="123" width="191" height="17" font="1">Vertr. Fach Rau nach</text>
<text top="172" left="391" width="134" height="17" font="1">Vertretungs-Text</text>
<text top="194" left="3" width="20" height="17" font="1">5b</text>
<text top="194" left="55" width="10" height="17" font="1">1</text>
<text top="194" left="123" width="27" height="17" font="4"><i>Hei</i></text>
<text top="194" left="178" width="13" height="17" font="4"><i>D</i></text>
<text top="194" left="233" width="18" height="17" font="1">---</text>
<text top="194" left="275" width="50" height="17" font="1">Entfall</text>
<text top="217" left="3" width="20" height="17" font="1">5b</text>
<text top="217" left="55" width="10" height="17" font="1">2</text>
<text top="217" left="123" width="21" height="17" font="1">Fu</text>
<text top="217" left="178" width="13" height="17" font="1">D</text>
<text top="217" left="233" width="30" height="17" font="1">114</text>
<text top="217" left="391" width="220" height="17" font="1">Hei / Aufgaben, Arbeitsheft!</text>
<text top="240" left="3" width="20" height="17" font="1">5b</text>
<text top="240" left="55" width="10" height="17" font="1">3</text>
<text top="240" left="123" width="24" height="17" font="1">Oe</text>
<text top="240" left="178" width="15" height="17" font="1">M</text>
<text top="240" left="233" width="30" height="17" font="1">114</text>
<text top="240" left="391" width="108" height="17" font="1">Ei / Aufgaben</text>
<text top="263" left="3" width="20" height="17" font="1">5b</text>
<text top="263" left="55" width="10" height="17" font="1">4</text>
<text top="263" left="123" width="28" height="17" font="1">Rm</text>
<text top="263" left="178" width="15" height="17" font="1">M</text>
<text top="263" left="233" width="30" height="17" font="1">114</text>
<text top="263" left="391" width="108" height="17" font="1">Ei / Aufgaben</text>
<text top="285" left="3" width="29" height="17" font="1">6bc</text>
<text top="285" left="55" width="10" height="17" font="1">5</text>
<text top="285" left="123" width="17" height="17" font="1">Sf</text>
<text top="285" left="178" width="34" height="17" font="1">EvR</text>
<text top="285" left="233" width="30" height="17" font="1">321</text>
<text top="285" left="391" width="114" height="17" font="1">Bü / Aufgaben</text>
<text top="306" left="3" width="29" height="17" font="1">6bc</text>
<text top="306" left="55" width="10" height="17" font="1">5</text>
<text top="306" left="123" width="22" height="17" font="1">Dk</text>
<text top="306" left="178" width="25" height="17" font="1">KR</text>
<text top="306" left="233" width="30" height="17" font="1">121</text>
<text top="306" left="391" width="119" height="17" font="1">We / Aufgaben</text>
<text top="328" left="3" width="29" height="17" font="1">6bc</text>
<text top="328" left="55" width="10" height="17" font="1">6</text>
<text top="328" left="123" width="22" height="17" font="4"><i></i></text>
<text top="328" left="178" width="34" height="17" font="4"><i>EvR</i></text>
<text top="328" left="233" width="18" height="17" font="1">---</text>
<text top="328" left="275" width="50" height="17" font="1">Entfall</text>
<text top="349" left="3" width="29" height="17" font="1">6bc</text>
<text top="349" left="55" width="10" height="17" font="1">6</text>
<text top="349" left="123" width="27" height="17" font="4"><i>We</i></text>
<text top="349" left="178" width="25" height="17" font="4"><i>KR</i></text>
<text top="349" left="233" width="18" height="17" font="1">---</text>
<text top="349" left="275" width="50" height="17" font="1">Entfall</text>
<text top="372" left="3" width="20" height="17" font="1">6d</text>
<text top="372" left="55" width="10" height="17" font="1">6</text>
<text top="371" left="123" width="22" height="17" font="4"><i>Ku</i></text>
<text top="371" left="178" width="21" height="17" font="4"><i>Ek</i></text>
<text top="372" left="233" width="18" height="17" font="1">---</text>
<text top="372" left="275" width="50" height="17" font="1">Entfall</text>
<text top="394" left="3" width="20" height="17" font="1">7b</text>
<text top="394" left="55" width="10" height="17" font="1">2</text>
<text top="394" left="123" width="24" height="17" font="1">Ga</text>
<text top="394" left="178" width="14" height="17" font="1">G</text>
<text top="394" left="233" width="30" height="17" font="1">414</text>
<text top="394" left="391" width="55" height="17" font="1">KA Fkr</text>
<text top="417" left="3" width="20" height="17" font="1">7b</text>
<text top="417" left="55" width="10" height="17" font="1">8</text>
<text top="417" left="123" width="24" height="17" font="4"><i>Gg</i></text>
<text top="417" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="417" left="233" width="18" height="17" font="1">---</text>
<text top="417" left="275" width="100" height="17" font="1">Mi-12.12. / 1</text>
<text top="440" left="3" width="20" height="17" font="1">7b</text>
<text top="440" left="55" width="10" height="17" font="1">9</text>
<text top="439" left="123" width="24" height="17" font="4"><i>Gg</i></text>
<text top="439" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="440" left="233" width="18" height="17" font="1">---</text>
<text top="440" left="275" width="100" height="17" font="1">Mi-12.12. / 2</text>
<text top="462" left="3" width="19" height="17" font="1">7c</text>
<text top="462" left="55" width="36" height="17" font="1">8 - 9</text>
<text top="462" left="123" width="27" height="17" font="4"><i>Gw</i></text>
<text top="462" left="178" width="14" height="17" font="4"><i>G</i></text>
<text top="462" left="233" width="18" height="17" font="1">---</text>
<text top="462" left="275" width="50" height="17" font="1">Entfall</text>
<text top="485" left="3" width="20" height="17" font="1">7d</text>
<text top="485" left="55" width="10" height="17" font="1">1</text>
<text top="485" left="123" width="22" height="17" font="4"><i>Ku</i></text>
<text top="485" left="178" width="13" height="17" font="4"><i>D</i></text>
<text top="485" left="233" width="18" height="17" font="1">---</text>
<text top="485" left="275" width="50" height="17" font="1">Entfall</text>
<text top="508" left="3" width="20" height="17" font="1">7d</text>
<text top="508" left="55" width="10" height="17" font="1">2</text>
<text top="508" left="123" width="23" height="17" font="1">Oz</text>
<text top="508" left="178" width="13" height="17" font="1">D</text>
<text top="508" left="233" width="30" height="17" font="1">416</text>
<text top="508" left="391" width="114" height="17" font="1">Ku / Aufgaben</text>
<text top="530" left="3" width="20" height="17" font="1">8a</text>
<text top="530" left="55" width="36" height="17" font="1">1 - 2</text>
<text top="530" left="123" width="16" height="17" font="4"><i>Ei</i></text>
<text top="530" left="178" width="23" height="17" font="4"><i>Ch</i></text>
<text top="530" left="233" width="18" height="17" font="1">---</text>
<text top="530" left="275" width="50" height="17" font="1">Entfall</text>
<text top="530" left="391" width="83" height="17" font="1">KEINE KA</text>
<text top="553" left="3" width="29" height="17" font="1">9ac</text>
<text top="553" left="55" width="36" height="17" font="1">8 - 9</text>
<text top="553" left="123" width="19" height="17" font="4"><i>Lk</i></text>
<text top="553" left="178" width="31" height="17" font="4"><i>SpJ</i></text>
<text top="553" left="233" width="18" height="17" font="1">---</text>
<text top="553" left="275" width="50" height="17" font="1">Entfall</text>
<text top="576" left="3" width="19" height="17" font="1">9c</text>
<text top="576" left="55" width="36" height="17" font="1">1 - 2</text>
<text top="576" left="123" width="22" height="17" font="1">Jw</text>
<text top="576" left="178" width="23" height="17" font="1">Gk</text>
<text top="576" left="233" width="30" height="17" font="1">322</text>
<text top="576" left="391" width="53" height="17" font="1">Raum!</text>
<text top="599" left="3" width="19" height="17" font="1">9c</text>
<text top="599" left="55" width="10" height="17" font="1">3</text>
<text top="599" left="123" width="18" height="17" font="1">Hf</text>
<text top="599" left="178" width="13" height="17" font="1">D</text>
<text top="599" left="233" width="30" height="17" font="1">220</text>
<text top="599" left="391" width="119" height="17" font="1">Hei / Aufgaben</text>
<text top="621" left="3" width="19" height="17" font="1">9c</text>
<text top="621" left="55" width="10" height="17" font="1">4</text>
<text top="621" left="123" width="31" height="17" font="1">Bkn</text>
<text top="621" left="178" width="13" height="17" font="1">D</text>
<text top="621" left="233" width="30" height="17" font="1">220</text>
<text top="621" left="391" width="119" height="17" font="1">Hei / Aufgaben</text>
<text top="644" left="3" width="20" height="17" font="1">9d</text>
<text top="644" left="55" width="10" height="17" font="1">1</text>
<text top="644" left="123" width="18" height="17" font="4"><i>Rt</i></text>
<text top="644" left="178" width="23" height="17" font="4"><i>Gk</i></text>
<text top="644" left="233" width="18" height="17" font="1">---</text>
<text top="644" left="275" width="104" height="17" font="1">Do-13.12. / 3</text>
<text top="667" left="3" width="20" height="17" font="1">9d</text>
<text top="667" left="55" width="10" height="17" font="1">2</text>
<text top="666" left="123" width="18" height="17" font="4"><i>Rt</i></text>
<text top="666" left="178" width="23" height="17" font="4"><i>Gk</i></text>
<text top="667" left="233" width="18" height="17" font="1">---</text>
<text top="667" left="275" width="104" height="17" font="1">Do-13.12. / 4</text>
<text top="689" left="3" width="20" height="17" font="1">9d</text>
<text top="689" left="55" width="10" height="17" font="1">3</text>
<text top="689" left="123" width="18" height="17" font="1">Rt</text>
<text top="689" left="178" width="23" height="17" font="1">Gk</text>
<text top="689" left="233" width="30" height="17" font="1">218</text>
<text top="712" left="3" width="20" height="17" font="1">9d</text>
<text top="712" left="55" width="10" height="17" font="1">4</text>
<text top="712" left="123" width="18" height="17" font="1">Rt</text>
<text top="712" left="178" width="23" height="17" font="1">Gk</text>
<text top="712" left="233" width="30" height="17" font="1">218</text>
<text top="735" left="3" width="20" height="17" font="1">9d</text>
<text top="735" left="55" width="10" height="17" font="1">5</text>
<text top="735" left="123" width="17" height="17" font="1">Ni</text>
<text top="735" left="178" width="24" height="17" font="1">BK</text>
<text top="735" left="233" width="30" height="17" font="1">126</text>
<text top="757" left="3" width="20" height="17" font="1">9d</text>
<text top="757" left="55" width="10" height="17" font="1">6</text>
<text top="757" left="123" width="17" height="17" font="1">Ni</text>
<text top="757" left="178" width="24" height="17" font="1">BK</text>
<text top="757" left="233" width="30" height="17" font="1">126</text>
<text top="780" left="3" width="20" height="17" font="1">9d</text>
<text top="780" left="55" width="10" height="17" font="1">8</text>
<text top="780" left="123" width="17" height="17" font="4"><i>Ni</i></text>
<text top="780" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="780" left="233" width="18" height="17" font="1">---</text>
<text top="780" left="275" width="104" height="17" font="1">Do-13.12. / 5</text>
<text top="803" left="3" width="20" height="17" font="1">9d</text>
<text top="803" left="55" width="10" height="17" font="1">9</text>
<text top="802" left="123" width="17" height="17" font="4"><i>Ni</i></text>
<text top="802" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="803" left="233" width="18" height="17" font="1">---</text>
<text top="803" left="275" width="104" height="17" font="1">Do-13.12. / 6</text>
<text top="825" left="3" width="30" height="17" font="1">10b</text>
<text top="825" left="55" width="56" height="17" font="1">10 - 11</text>
<text top="825" left="123" width="21" height="17" font="4"><i>Fe</i></text>
<text top="825" left="178" width="22" height="17" font="4"><i>Ph</i></text>
<text top="825" left="233" width="18" height="17" font="1">---</text>
<text top="825" left="275" width="50" height="17" font="1">Entfall</text>
<text top="848" left="3" width="20" height="17" font="1">11</text>
<text top="848" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="848" left="123" width="16" height="17" font="4"><i>Ft</i></text>
<text top="848" left="178" width="20" height="17" font="4"><i>g4</i></text>
<text top="848" left="233" width="18" height="17" font="1">---</text>
<text top="848" left="275" width="50" height="17" font="1">Entfall</text>
<text top="871" left="3" width="20" height="17" font="1">11</text>
<text top="871" left="55" width="10" height="17" font="1">5</text>
<text top="870" left="123" width="16" height="17" font="4"><i>Ei</i></text>
<text top="870" left="178" width="25" height="17" font="4"><i>M1</i></text>
<text top="871" left="233" width="18" height="17" font="1">---</text>
<text top="871" left="275" width="50" height="17" font="1">Entfall</text>
<text top="893" left="3" width="20" height="17" font="1">11</text>
<text top="893" left="55" width="10" height="17" font="1">7</text>
<text top="893" left="123" width="19" height="17" font="1">Gt</text>
<text top="893" left="178" width="85" height="17" font="1">sem1 324</text>
<text top="893" left="391" width="250" height="17" font="1">geteilte Gruppen Schwimmen / </text>
<text top="916" left="3" width="20" height="17" font="1">11</text>
<text top="916" left="55" width="36" height="17" font="1">8 - 9</text>
<text top="916" left="123" width="23" height="17" font="1">Ro</text>
<text top="916" left="178" width="85" height="17" font="1">sem1 ???</text>
<text top="939" left="3" width="20" height="17" font="1">11</text>
<text top="939" left="55" width="56" height="17" font="1">10 - 11</text>
<text top="939" left="123" width="19" height="17" font="4"><i>Lk</i></text>
<text top="939" left="178" width="29" height="17" font="4"><i>sp3</i></text>
<text top="939" left="233" width="18" height="17" font="1">---</text>
<text top="939" left="275" width="50" height="17" font="1">Entfall</text>
<text top="962" left="3" width="20" height="17" font="1">12</text>
<text top="962" left="55" width="36" height="17" font="1">1 - 2</text>
<text top="962" left="123" width="17" height="17" font="1">Ni</text>
<text top="962" left="178" width="29" height="17" font="1">bk1</text>
<text top="962" left="233" width="30" height="17" font="1">412</text>
<text top="962" left="391" width="53" height="17" font="1">Raum!</text>
<text top="984" left="3" width="20" height="17" font="1">12</text>
<text top="984" left="55" width="10" height="17" font="1">5</text>
<text top="984" left="123" width="22" height="17" font="4"><i>Ku</i></text>
<text top="984" left="178" width="23" height="17" font="4"><i>D2</i></text>
<text top="984" left="233" width="18" height="17" font="1">---</text>
<text top="984" left="275" width="50" height="17" font="1">Entfall</text>
<text top="1007" left="3" width="88" height="17" font="1">1112 8 - 9</text>
<text top="1007" left="123" width="21" height="17" font="4"><i>Fe</i></text>
<text top="1007" left="178" width="34" height="17" font="4"><i>vma</i></text>
<text top="1007" left="233" width="18" height="17" font="1">---</text>
<text top="1007" left="275" width="50" height="17" font="1">Entfall</text>
</page>
<page number="2" position="absolute" top="0" left="0" height="1262" width="893">
<text top="10" left="3" width="297" height="19" font="0"><b>D-70563 FANNY-LEICHT-GYMN.</b></text>
<text top="32" left="3" width="275" height="17" font="1">STUTTGART, F.-LEICHT-STR. 13</text>
<text top="9" left="332" width="248" height="17" font="1">Schuljahr 2018/19 - 1. Halbjahr</text>
<text top="32" left="332" width="236" height="17" font="1">gültig ab 10. September 2018</text>
<text top="10" left="708" width="99" height="19" font="0"><b>Untis 2017</b></text>
<text top="32" left="671" width="135" height="17" font="1">13.12.2018 8:11</text>
<text top="64" left="3" width="413" height="25" font="2"><b>Klasse 14.12. / Freitag Woche-A</b></text>
<text top="111" left="3" width="203" height="15" font="3">Ordnungsdienst: Klasse 10a</text>
<text top="172" left="3" width="21" height="17" font="1">Kl.</text>
<text top="172" left="55" width="235" height="17" font="1">Std. Vertr. Fach Rau nach</text>
<text top="172" left="398" width="134" height="17" font="1">Vertretungs-Text</text>
<text top="194" left="3" width="62" height="17" font="1">5abc 1</text>
<text top="194" left="102" width="27" height="17" font="4"><i>We</i></text>
<text top="194" left="157" width="25" height="17" font="4"><i>KR</i></text>
<text top="194" left="209" width="18" height="17" font="1">---</text>
<text top="194" left="251" width="50" height="17" font="1">Entfall</text>
<text top="215" left="3" width="20" height="17" font="1">5a</text>
<text top="215" left="55" width="10" height="17" font="1">1</text>
<text top="215" left="102" width="22" height="17" font="4"><i></i></text>
<text top="215" left="157" width="34" height="17" font="4"><i>EvR</i></text>
<text top="215" left="209" width="18" height="17" font="1">---</text>
<text top="215" left="251" width="50" height="17" font="1">Entfall</text>
<text top="238" left="3" width="62" height="17" font="1">5abc 2</text>
<text top="238" left="102" width="22" height="17" font="1">Jw</text>
<text top="238" left="157" width="25" height="17" font="1">KR</text>
<text top="238" left="209" width="30" height="17" font="1">123</text>
<text top="238" left="398" width="119" height="17" font="1">We / Aufgaben</text>
<text top="258" left="3" width="20" height="17" font="1">5a</text>
<text top="258" left="55" width="10" height="17" font="1">2</text>
<text top="258" left="102" width="23" height="17" font="1">Ng</text>
<text top="258" left="157" width="34" height="17" font="1">EvR</text>
<text top="258" left="209" width="30" height="17" font="1">321</text>
<text top="258" left="398" width="114" height="17" font="1">Bü / Aufgaben</text>
<text top="281" left="3" width="20" height="17" font="1">5d</text>
<text top="281" left="55" width="10" height="17" font="1">3</text>
<text top="281" left="102" width="20" height="17" font="1">Lo</text>
<text top="281" left="157" width="13" height="17" font="1">D</text>
<text top="281" left="209" width="30" height="17" font="1">122</text>
<text top="281" left="398" width="171" height="17" font="1">anstatt 17.12., 1. Std.</text>
<text top="304" left="3" width="20" height="17" font="1">5d</text>
<text top="304" left="55" width="10" height="17" font="1">4</text>
<text top="304" left="102" width="20" height="17" font="1">Lo</text>
<text top="304" left="157" width="13" height="17" font="1">D</text>
<text top="304" left="209" width="30" height="17" font="1">122</text>
<text top="304" left="398" width="166" height="17" font="1">anstatt 19.12., 1 Std.</text>
<text top="326" left="3" width="20" height="17" font="1">6a</text>
<text top="326" left="55" width="10" height="17" font="1">6</text>
<text top="326" left="102" width="23" height="17" font="4"><i>He</i></text>
<text top="326" left="157" width="12" height="17" font="4"><i>E</i></text>
<text top="326" left="209" width="18" height="17" font="1">---</text>
<text top="326" left="251" width="50" height="17" font="1">Entfall</text>
<text top="349" left="3" width="62" height="17" font="1">6acd 7</text>
<text top="349" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="349" left="157" width="26" height="17" font="4"><i>MF</i></text>
<text top="349" left="209" width="18" height="17" font="1">---</text>
<text top="349" left="251" width="50" height="17" font="1">Entfall</text>
<text top="372" left="3" width="19" height="17" font="1">6c</text>
<text top="372" left="55" width="10" height="17" font="1">1</text>
<text top="371" left="102" width="22" height="17" font="4"><i>Ku</i></text>
<text top="371" left="157" width="13" height="17" font="4"><i>D</i></text>
<text top="372" left="209" width="18" height="17" font="1">---</text>
<text top="372" left="251" width="50" height="17" font="1">Entfall</text>
<text top="394" left="3" width="19" height="17" font="1">6c</text>
<text top="394" left="55" width="10" height="17" font="1">2</text>
<text top="394" left="102" width="16" height="17" font="1">Sl</text>
<text top="394" left="157" width="13" height="17" font="1">D</text>
<text top="394" left="209" width="30" height="17" font="1">121</text>
<text top="394" left="398" width="114" height="17" font="1">Ku / Aufgaben</text>
<text top="417" left="3" width="20" height="17" font="1">7a</text>
<text top="417" left="55" width="10" height="17" font="1">3</text>
<text top="417" left="102" width="17" height="17" font="1">Di</text>
<text top="417" left="157" width="13" height="17" font="1">D</text>
<text top="417" left="209" width="30" height="17" font="1">323</text>
<text top="417" left="398" width="48" height="17" font="1">Raum</text>
<text top="440" left="3" width="20" height="17" font="1">7a</text>
<text top="440" left="55" width="10" height="17" font="1">4</text>
<text top="440" left="102" width="33" height="17" font="1">Hhn</text>
<text top="440" left="157" width="15" height="17" font="1">M</text>
<text top="440" left="209" width="30" height="17" font="1">323</text>
<text top="462" left="3" width="20" height="17" font="1">7a</text>
<text top="462" left="55" width="10" height="17" font="1">5</text>
<text top="462" left="102" width="33" height="17" font="1">Hhn</text>
<text top="462" left="157" width="15" height="17" font="1">M</text>
<text top="462" left="209" width="30" height="17" font="1">323</text>
<text top="485" left="3" width="20" height="17" font="1">7a</text>
<text top="485" left="55" width="10" height="17" font="1">6</text>
<text top="485" left="102" width="33" height="17" font="1">Hhn</text>
<text top="485" left="157" width="15" height="17" font="1">M</text>
<text top="485" left="209" width="30" height="17" font="1">323</text>
<text top="485" left="398" width="88" height="17" font="1">findet statt!</text>
<text top="508" left="3" width="20" height="17" font="1">7b</text>
<text top="508" left="55" width="10" height="17" font="1">6</text>
<text top="507" left="102" width="18" height="17" font="4"><i>Rt</i></text>
<text top="507" left="157" width="13" height="17" font="4"><i>D</i></text>
<text top="508" left="209" width="18" height="17" font="1">---</text>
<text top="508" left="251" width="50" height="17" font="1">Entfall</text>
<text top="530" left="3" width="20" height="17" font="1">8a</text>
<text top="530" left="55" width="10" height="17" font="1">1</text>
<text top="530" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="530" left="157" width="15" height="17" font="4"><i>M</i></text>
<text top="530" left="209" width="18" height="17" font="1">---</text>
<text top="530" left="251" width="50" height="17" font="1">Entfall</text>
<text top="553" left="3" width="20" height="17" font="1">8a</text>
<text top="553" left="55" width="10" height="17" font="1">2</text>
<text top="553" left="102" width="14" height="17" font="1">Li</text>
<text top="553" left="157" width="12" height="17" font="1">E</text>
<text top="553" left="209" width="30" height="17" font="1">323</text>
<text top="553" left="398" width="89" height="17" font="1">statt 18.12.</text>
<text top="576" left="3" width="19" height="17" font="1">9c</text>
<text top="576" left="55" width="36" height="17" font="1">5 - 6</text>
<text top="576" left="102" width="27" height="17" font="4"><i>Hei</i></text>
<text top="576" left="157" width="13" height="17" font="4"><i>D</i></text>
<text top="576" left="209" width="18" height="17" font="1">---</text>
<text top="576" left="251" width="50" height="17" font="1">Entfall</text>
<text top="599" left="3" width="20" height="17" font="1">9d</text>
<text top="599" left="55" width="75" height="17" font="1">1 - 2 Rm</text>
<text top="599" left="157" width="82" height="17" font="1">NWT 412</text>
<text top="599" left="398" width="48" height="17" font="1">Raum</text>
<text top="621" left="3" width="20" height="17" font="1">9d</text>
<text top="621" left="55" width="36" height="17" font="1">5 - 6</text>
<text top="621" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="621" left="157" width="15" height="17" font="4"><i>M</i></text>
<text top="621" left="209" width="18" height="17" font="1">---</text>
<text top="621" left="251" width="50" height="17" font="1">Entfall</text>
<text top="644" left="3" width="30" height="17" font="1">10a</text>
<text top="644" left="55" width="80" height="17" font="1">3 - 4 Smr</text>
<text top="644" left="157" width="12" height="17" font="1">E</text>
<text top="644" left="209" width="30" height="17" font="1">413</text>
<text top="644" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="664" left="3" width="62" height="17" font="1">10ad 3</text>
<text top="664" left="102" width="23" height="17" font="1">Ro</text>
<text top="664" left="157" width="34" height="17" font="1">EvR</text>
<text top="664" left="209" width="25" height="17" font="1">SH</text>
<text top="664" left="398" width="48" height="17" font="1">Sport!</text>
<text top="685" left="3" width="88" height="17" font="1">10ad 3 - 4</text>
<text top="685" left="102" width="27" height="17" font="4"><i>We</i></text>
<text top="685" left="157" width="25" height="17" font="4"><i>KR</i></text>
<text top="685" left="209" width="18" height="17" font="1">---</text>
<text top="685" left="251" width="50" height="17" font="1">Entfall</text>
<text top="708" left="3" width="62" height="17" font="1">10ad 4</text>
<text top="708" left="102" width="19" height="17" font="1">Lk</text>
<text top="708" left="157" width="34" height="17" font="1">EvR</text>
<text top="708" left="209" width="25" height="17" font="1">SH</text>
<text top="708" left="398" width="48" height="17" font="1">Sport!</text>
<text top="730" left="3" width="30" height="17" font="1">10b</text>
<text top="730" left="55" width="63" height="17" font="1">3 - 4 Ki</text>
<text top="730" left="157" width="12" height="17" font="1">E</text>
<text top="730" left="209" width="30" height="17" font="1">414</text>
<text top="730" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="751" left="3" width="30" height="17" font="1">10b</text>
<text top="751" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="751" left="102" width="23" height="17" font="4"><i>He</i></text>
<text top="751" left="157" width="23" height="17" font="4"><i>Gk</i></text>
<text top="751" left="209" width="18" height="17" font="1">---</text>
<text top="751" left="251" width="133" height="17" font="1">Entfall für Lehrer</text>
<text top="774" left="3" width="88" height="17" font="1">10bc 5 - 6</text>
<text top="773" left="102" width="27" height="17" font="4"><i>We</i></text>
<text top="773" left="157" width="25" height="17" font="4"><i>KR</i></text>
<text top="774" left="209" width="18" height="17" font="1">---</text>
<text top="774" left="251" width="50" height="17" font="1">Entfall</text>
<text top="796" left="3" width="29" height="17" font="1">10c</text>
<text top="796" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="796" left="102" width="33" height="17" font="4"><i>Ran</i></text>
<text top="796" left="157" width="15" height="17" font="4"><i>M</i></text>
<text top="796" left="209" width="18" height="17" font="1">---</text>
<text top="796" left="251" width="50" height="17" font="1">Entfall</text>
<text top="796" left="398" width="86" height="17" font="1">alle bei Oe</text>
<text top="817" left="3" width="29" height="17" font="1">10c</text>
<text top="817" left="55" width="71" height="17" font="1">3 - 4 Oe</text>
<text top="817" left="157" width="12" height="17" font="1">E</text>
<text top="817" left="209" width="30" height="17" font="1">422</text>
<text top="817" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="839" left="3" width="30" height="17" font="1">10d</text>
<text top="839" left="55" width="74" height="17" font="1">3 - 4 Wd</text>
<text top="839" left="157" width="12" height="17" font="1">E</text>
<text top="839" left="209" width="30" height="17" font="1">416</text>
<text top="839" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="862" left="3" width="20" height="17" font="1">11</text>
<text top="862" left="55" width="64" height="17" font="1">3 - 4 At</text>
<text top="862" left="157" width="23" height="17" font="1">D3</text>
<text top="862" left="209" width="30" height="17" font="1">121</text>
<text top="862" left="398" width="48" height="17" font="1">Raum</text>
<text top="883" left="3" width="20" height="17" font="1">11</text>
<text top="883" left="55" width="63" height="17" font="1">3 - 4 Sl</text>
<text top="883" left="157" width="23" height="17" font="1">D2</text>
<text top="883" left="209" width="30" height="17" font="1">415</text>
<text top="883" left="398" width="48" height="17" font="1">Raum</text>
<text top="905" left="3" width="20" height="17" font="1">12</text>
<text top="905" left="55" width="67" height="17" font="1">1 - 2 Lo</text>
<text top="905" left="157" width="32" height="17" font="1">Sp1</text>
<text top="905" left="209" width="30" height="17" font="1">222</text>
<text top="905" left="398" width="61" height="17" font="1">Theorie</text>
<text top="928" left="3" width="20" height="17" font="1">12</text>
<text top="928" left="55" width="67" height="17" font="1">3 - 4 Mf</text>
<text top="928" left="157" width="22" height="17" font="1">E2</text>
<text top="928" left="209" width="30" height="17" font="1">218</text>
<text top="928" left="398" width="48" height="17" font="1">Raum</text>
<text top="949" left="3" width="20" height="17" font="1">12</text>
<text top="949" left="55" width="64" height="17" font="1">3 - 4 Sf</text>
<text top="949" left="157" width="25" height="17" font="1">M3</text>
<text top="949" left="209" width="30" height="17" font="1">322</text>
<text top="949" left="398" width="48" height="17" font="1">Raum</text>
<text top="969" left="3" width="20" height="17" font="1">12</text>
<text top="969" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="969" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="969" left="157" width="25" height="17" font="4"><i>M2</i></text>
<text top="969" left="209" width="18" height="17" font="1">---</text>
<text top="969" left="251" width="50" height="17" font="1">Entfall</text>
<text top="992" left="3" width="20" height="17" font="1">12</text>
<text top="992" left="55" width="36" height="17" font="1">5 - 6</text>
<text top="991" left="102" width="22" height="17" font="4"><i>Ku</i></text>
<text top="991" left="157" width="29" height="17" font="4"><i>ek1</i></text>
<text top="992" left="209" width="18" height="17" font="1">---</text>
<text top="992" left="251" width="50" height="17" font="1">Entfall</text>
</page>
</pdf2xml>

View file

@ -1,19 +1,12 @@
<RCC>
<qresource prefix="/">
<file>favicon.png</file>
<file>graphics/sheute.png</file>
<file>graphics/smorgen.png</file>
<file>graphics/chat_background.jpg</file>
<file>graphics/icons/sheute.png</file>
<file>graphics/icons/smorgen.png</file>
<file>graphics/icons/back.png</file>
<file>graphics/icons/drawer.png</file>
<file>graphics/icons/menu.png</file>
<file>graphics/icons/hide.png</file>
<file>graphics/icons/view.png</file>
<file>samplehtml/Download File-html.html</file>
<file>samplehtml/Download File.html</file>
<file>samplehtml/Download File.pdf</file>
<file>samplehtml/Download File.xml</file>
<file>circle.png</file>
<file>graphics/images/FannyLogoDark.jpg</file>
<file>graphics/images/FannyLogoLight.png</file>
<file>graphics/images/FannyLogoLightSmall.png</file>
@ -23,7 +16,9 @@
<file>graphics/icons/logoutRed.png</file>
<file>graphics/icons/settingsBlack.png</file>
<file>graphics/icons/backDark.png</file>
<file>samplehtml/Download File.txt</file>
<file>graphics/icons/delete.png</file>
<file>sampleEventData/sample.pdf</file>
<file>sampleEventData/sample.txt</file>
<file>sampleEventData/sample.json</file>
</qresource>
</RCC>

View file

@ -5,12 +5,12 @@ AppSettings * pGlobalAppSettings = nullptr;
AppSettings::AppSettings(QObject* parent)
:QObject(parent)
{
qDebug("+----- AppSettings konstruktor -----");
qDebug() << "+----- AppSettings konstruktor -----+";
pGlobalAppSettings = this;
QString path = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
qDebug() << "+----- Settings Path:" << path;
qDebug() << "+----- Settings Path:" << path << " -----+";
this->settingsManager = new QSettings(path+"/fannyapp/settings.ini", QSettings::IniFormat);
@ -22,11 +22,6 @@ AppSettings::AppSettings(QObject* parent)
}
this->filtersFile = new QFile(path + "/fannyapp/filters.json");
//QList<QStringList> filters = {{"5", "d"}, {"6", "c"}, {"11", ""}};
//writeFilters(filters);
//qDebug() << readFilters();
}
QString AppSettings::loadSetting(const QString &key)
@ -128,23 +123,9 @@ void AppSettings::writeFilters(QList<QStringList> list) {
this->filtersFile->close();
}
QStringList AppSettings::readFiltersQml() {
QStringList filtersList;
foreach(QStringList filterList, this->readFilters()){
filtersList.append(filterList[0]+"|"+filterList[1]);
}
return(filtersList);
}
void AppSettings::writeFiltersQml(QStringList) {
}
AppSettings::~AppSettings()
{
qDebug("+----- AppSettings destruktor -----+");
delete settingsManager;
}

View file

@ -55,11 +55,6 @@ QVariantMap EventModel::get(int row) const
return { {"grade", foodPlan.grade}, {"hour", foodPlan.hour}, {"replace", foodPlan.replace}, {"subject", foodPlan.subject}, {"room", foodPlan.room}, {"to", foodPlan.to}, {"text", foodPlan.text} };
}
QStringList EventModel::getHeader()
{
return(pGlobalServConn->m_eventHeader);
}
EventModel::~EventModel()
{

View file

@ -4,18 +4,17 @@ ServerConn * pGlobalServConn = nullptr;
ServerConn::ServerConn(QObject *parent) : QObject(parent)
{
qDebug("+----- serverconn konstruktor -----+");
qDebug("+----- ServerConn konstruktor -----+");
pGlobalServConn = this;
this->networkManager = new QNetworkAccessManager();
this->refreshNetworkManager = new QNetworkAccessManager();
// check login state
int perm = pGlobalAppSettings->loadSetting("permanent").toInt();
qDebug() << "+-- login state: " << perm;
qDebug() << "+----- login state: " << perm << " -----+";
if(perm == 1){
// permanent login
// restore login
// permanent login -> restore login
this->username = pGlobalAppSettings->loadSetting("username");
this->password = pGlobalAppSettings->loadSetting("password");
@ -30,52 +29,21 @@ ServerConn::ServerConn(QObject *parent) : QObject(parent)
this->checkConnTimer->setSingleShot(true);
connect(checkConnTimer, SIGNAL(timeout()), this, SLOT(checkConn()));
this->checkConnTimer->start();
}
int ServerConn::login(QString username, QString password, bool permanent)
{
// QUrlQuery pdata;
// ReturnData_t ret = this->senddata(QUrl("http://www.fanny-leicht.de/static15/http.intern/sheute.pdf"), pdata);
// qDebug() << ret.text;
// Create network request
QNetworkRequest request;
// call a non-existent file to be fast
request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/logintest" ) );
// add the data to the request
QUrlQuery pdata;
pdata.addQueryItem("username", username);
pdata.addQueryItem("password", password);
// pack the credentials into a string
QString credentialsString = username + ":" + password;
// convert it to a byte array
QByteArray data = credentialsString.toLocal8Bit().toBase64();
// put it into a string
QString headerData = "Basic " + data;
// and finally write it into the request header
request.setRawHeader( "Authorization", headerData.toLocal8Bit() );
// send the request
ReturnData_t ret = this->senddata(QUrl("http://www.fanny-leicht.de/j34/templates/g5_helium/intern/events.php"), pdata);
// Send GET request to fanny server
QNetworkReply*reply = networkManager->get( request );
// loop to wait until the request has finished before processing the data
QEventLoop loop;
// timer to cancel the request after 3 seconds
QTimer timer;
timer.setSingleShot(true);
// quit the loop when the request finised
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
// or the timer timed out
loop.connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
// start the timer
timer.start(2000);
// start the loop
loop.exec();
// get the status code from the request
int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
// 404 is a success because a non existent file was called and not 401 was returned -> user data was correct
if(status_code == 404){
if(ret.status_code == 200){
// if not 200 was returned -> user data was correct
// store username and password in the class variables
this->username = username;
this->password = password;
@ -87,15 +55,18 @@ int ServerConn::login(QString username, QString password, bool permanent)
pGlobalAppSettings->writeSetting("password", password);
}
// set state to loggedIn
this->setState("loggedIn");
qDebug() << "+----- logged in -----+";
// return success
return(200);
}
else {
// if not 404 was returned -> error -> return the return code
// if not 200 was returned -> error -> return the return code
this->setState("notLoggedIn");
return(status_code);
return(ret.status_code);
}
}
@ -104,147 +75,69 @@ int ServerConn::logout()
// reset the data stored in the class
this->username = "";
this->password = "";
// reset the data stored in the settings
pGlobalAppSettings->writeSetting("permanent", "0");
pGlobalAppSettings->writeSetting("username", "");
pGlobalAppSettings->writeSetting("password", "");
this->setState("notLoggedIn");
qDebug() << "+----- logout -----+";
// return success
return(200);
}
int ServerConn::checkConn()
{
// Create request
QNetworkRequest request;
request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/" ) );
// Pack in credentials
// e.g. ZedlerDo:LxyJQB (yes, these do actually work ;)
QString concatenatedCredentials = this->username + ":" + this->password;
QByteArray data = concatenatedCredentials.toLocal8Bit().toBase64();
QString headerData = "Basic " + data;
request.setRawHeader( "Authorization", headerData.toLocal8Bit() );
if(this->state == "notLoggedIn"){
return(903);
}
// add the data to the request
QUrlQuery pdata;
// Send request and connect all possible signals
QNetworkReply*reply = this->refreshNetworkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
//QNetworkReply*reply = networkManager->get( request );
pdata.addQueryItem("username", this->username);
pdata.addQueryItem("password", this->password);
QTimer timer;
timer.start(3000);
// send the request
ReturnData_t ret = this->senddata(QUrl("http://www.fanny-leicht.de/j34/templates/g5_helium/intern/events.php"), pdata);
QEventLoop loop;
loop.connect(this->refreshNetworkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
loop.connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
loop.exec();
int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
if(status_code == 401){
if(ret.status_code == 401){
// if the stats code is 401 -> userdata is incorrect
authErrorCount ++;
if(authErrorCount > 3){
qDebug() << "+----- checkconn: user data is incorrect -----+";
logout();
}
}
this->checkConnTimer->start();
return(status_code);
return(ret.status_code);
}
void ServerConn::updateProgress(qint64 read, qint64 total)
int ServerConn::getEvents(QString day)
{
int read_int = int(read);
int total_int = int(total);
float percent = (float(read_int) / float(total_int));
this->progress = percent;
percent = int(percent);
if(this->state != "loggedIn"){
return(401);
}
// qDebug() << read << total << percent << "%";
}
float ServerConn::getProgress()
{
return(this->progress);
}
int ServerConn::getEvents(QString day){
// Create request
QNetworkRequest request;
request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/" + day + ".txt" ) );
// Pack in credentials
QString concatenatedCredentials = this->username + ":" + this->password;
QByteArray data = concatenatedCredentials.toLocal8Bit().toBase64();
QString headerData = "Basic " + data;
request.setRawHeader("Authorization", headerData.toLocal8Bit());
// add the data to the request
QUrlQuery pdata;
pdata.addQueryItem("username", this->username);
pdata.addQueryItem("password", this->password);
pdata.addQueryItem("day", day);
// send the request
QNetworkReply*reply = networkManager->get(request);
ReturnData_t ret = this->senddata(QUrl("http://www.fanny-leicht.de/j34/templates/g5_helium/intern/events.php"), pdata);
// loop to wait until the request has finished before processing the data
QEventLoop loop;
// timer to cancel the request after 3 seconds
QTimer timer;
timer.setSingleShot(true);
// quit the loop when the request finised
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
// or the timer timed out
loop.connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
// start the timer
timer.start(2000);
// start the loop
loop.exec();
// get the status code
int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
if(status_code != 200){
if(ret.status_code != 200){
// if the request didn't result in a success, clear the old events, as they are probaply incorrect and return the error code
this->m_events.clear();
return(status_code);
return(ret.status_code);
}
QString eventString = reply->readAll();
// qDebug() << "reading text file";
// QFile * textFile = new QFile(":/samplehtml/Download File.txt");
// if (!textFile->open(QIODevice::ReadOnly | QIODevice::Text)) {
// qDebug() << "Load XML File Problem Couldn't open xmlfile.xml to load settings for download";
// return 900;
// }
// eventString = textFile->readAll();
// separate all lines into a list
QStringList events = eventString.split("\n");
// a line (one element of the list) looks like this:
// class hour replace subject room to text
// 8a 1-2 Ei Ch --- Entfall KEINE KA
// [ ] <-- at least two spaces between two blocks
// 'to' and 'text' can be blank
for(int i = 0; i < events.length(); i++){
if(events[i] == ""){
events.removeAt(i);
}
}
// all pages of the original Event document have a similar header that gets removed by this command
// (only the first one remains)
events.removeDuplicates();
// temporary list to store the events for the given day
QList<QStringList> tmpEvents;
// temporary list to store the header information
QStringList tmpEventHeader;
// get the filers list for later usage
QList<QStringList> filtersList = pGlobalAppSettings->readFilters();
@ -253,158 +146,69 @@ int ServerConn::getEvents(QString day){
for(int i = 0; i < filtersList.length(); i++){
QStringList filterList = filtersList[i];
if( !(pGlobalAppSettings->loadSetting("teacherMode") == "true" ? filterList[2] == "t":filterList[2] == "s") ){
filtersList.removeAt(i);
i = i-1;
filtersList.removeAt(i);
i = i-1;
}
}
// go through the list and process every single row
for(int x = 0; x < events.length(); x++){
// store the event string
QString event = events[x];
// list to be returned
QList<QStringList> tmpEvents;
QStringList tmpEventHeader;
// value to count spaces between text
int spaceCount = 0;
//qDebug() << jsonString;
QJsonDocument jsonFilters = QJsonDocument::fromJson(ret.text.toUtf8());
// array with all filters in it
QJsonObject dataArray = jsonFilters.object();
// temporary list to store the data of one day
QStringList eventList;
// get the version of the json format
QString version = dataArray.value("version").toString();
// temporary dtring to store the data of one block
QString tmpString;
// get the header data
tmpEventHeader.append(dataArray.value("targetDate").toString());
tmpEventHeader.append(dataArray.value("stewardingClass").toString());
// processing works like:
// go through the line char by char
for(int i = 0;i < event.length(); i++){
// store the char temporarly
QCharRef tmpChar = event[i];
// expand the length of the header list to seven to prevent list out of range errors
while (tmpEventHeader.length() < 7) {
tmpEventHeader.append("");
}
// check if the char is a space
if(tmpChar == " "){
// if so, increase the spaceCount by one
spaceCount ++;
}
else {
// if not -> new block or part of a block started
// could be : 8a 1 - 2 OR 8a 1 - 2
// here->| OR here->|
// in the first case, the space counter is higer than one
// in the second case, the space counter is exactly one
if(spaceCount == 1){
// -> append a space to the temp string
tmpString.append(" ");
}
// append the header to the temporyry event list
tmpEvents.append(tmpEventHeader);
// reset the space counter
spaceCount = 0;
// get the event data
QJsonArray eventsArray = dataArray.value("events").toArray();
// append the current character
tmpString.append(tmpChar);
}
for(int i=0; i<eventsArray.count(); i++){
// get the current event-list out of the array
QJsonArray eventArray = eventsArray[i].toArray();
// check if the space count is 2
if(spaceCount == 2){
// if so -> break between two blocks
// could be: 8a 1 - 2
// here ->|
// lst to store the current event
QStringList tmpEventList;
// -> append the current tmpString to the eventList
eventList.append(tmpString);
// and clear the tmpString
tmpString = "";
}
//qDebug() << "char= " << tmpChar << " string= " << tmpString << " list= " << eventList;
// extract values from array
foreach(const QJsonValue & key, eventArray){
// and append them to the temporyry list
tmpEventList.append(key.toString());
}
// append the remaining tmpString to the eventList
eventList.append(tmpString);
// fill up the eventList with blanks until it reaches the defined length
while (eventList.length() < 7) {
eventList.append("");
while (tmpEventList.length() < 7) {
// enshure that the list contains at least seven items (to prevent getting list out of range errors)
tmpEventList.append("");
}
if(x < 6){
// if the event is in the header
// the header could look like this:
//
// D-70563 FANNY-LEICHT-GYMN. Schuljahr 2018/19 - 1. Halbjahr Untis 2017
// STUTTGART, F.-LEICHT-STR. 13 gültig ab 10. September 2018 (13.12.2018 9:04)
//
//[Klasse 13.12. / Donnerstag Woche-A]
//{Ordnungsdienst: Klasse 10a}
//
// important data:
// () = date and time the document has been created
// [] = date the document is made for
// {} = class that has to clean up the scool :D
// (brackets are not present in the document)
// line 0 and 4 don't contain imporant information -> skip
if (x == 1) {
// the second line contains the creation date
// the creation date is the third block of the line
tmpEventHeader.append(eventList[2]);
}
else if (x == 2) {
// the third line contains the target date of the document
// the target date is the first block of the line
tmpEventHeader.append(eventList[0]);
}
else if (x == 3) {
// the third line contains the cleaning class
// the cleaning class is the first block of the line
tmpEventHeader.append(eventList[0]);
}
else if (x == 4) {
// if the fourth line is reached
// fill the event header
while (tmpEventHeader.length() < 7) {
tmpEventHeader.append("");
}
// check if the header is valid
// variable to count filled blocks
int blocksOK = 0;
foreach(QString block, tmpEventHeader){
if(block != ""){
blocksOK ++;
}
}
if(blocksOK != 3) {
// if there are more or less than 3 filled blocks, the data is invalid
this->m_events.clear();
return(900);
}
// swap creation and target date
tmpEventHeader.swap(0,1);
// and append it to the events list
tmpEvents.append(tmpEventHeader);
}
else if (x == 5) {
// the fifth row contains the labels for the different filds
// -> append it to the events list
tmpEvents.append(eventList);
}
}
else if(filtersList.isEmpty()){
if(filtersList.isEmpty()){
// if there are no filters append the event immideatly
tmpEvents.append(eventList);
tmpEvents.append(tmpEventList);
}
else {
// if there is at least one filter, check if the event matches it
foreach(QStringList filter, filtersList){
// go through all filters and check if one of them matches the event
// always append the first row, as it is the legend
if((eventList[0].contains(filter[0]) && eventList[0].contains(filter[1]))){
if((tmpEventList[0].contains(filter[0]) && tmpEventList[0].contains(filter[1])) || i == 0){
// append the eventList to the temporary event list
tmpEvents.append(eventList);
tmpEvents.append(tmpEventList);
// terminate the loop
break;
}
@ -412,69 +216,33 @@ int ServerConn::getEvents(QString day){
}
}
// store the new events into the class variable
this->m_events = tmpEvents;
qDebug() << tmpEvents;
// check if there is any valid data
if(this->m_events.length() < 3){
// remove the last (in this case the second) element, as it is unnecessary
m_events.takeLast();
// return no data
return(901);
if(tmpEvents.length() < 3){
// remove the last (in this case the second) element, as it is unnecessary (it is the legend -> not needed when there is no data)
tmpEvents.takeLast();
// set return code to 'no data' (901)
ret.status_code = 901;
}
// return success
return(200);
this->m_events = tmpEvents;
return(ret.status_code);
}
int ServerConn::getFoodPlan()
{
// set the progress to 0
this->progress = 0;
QUrlQuery pdata;
ReturnData_t ret = this->senddata(QUrl("http://www.treffpunkt-fanny.de/fuer-schueler-und-lehrer/speiseplan.html"), pdata);
// Call the webservice
QNetworkRequest request(QUrl("http://www.treffpunkt-fanny.de/fuer-schueler-und-lehrer/speiseplan.html"));
request.setHeader(QNetworkRequest::ContentTypeHeader,
"application/x-www-form-urlencoded");
// send a GET request to the treffpunkt fanny server
QNetworkReply* reply;
reply = this->networkManager->get(request);
// update the progress during the request
connect(reply, SIGNAL(downloadProgress(qint64, qint64)),
this, SLOT(updateProgress(qint64, qint64)));
// loop to wait until the request has finished before processing the data
QEventLoop loop;
// timer to cancel the request after 3 seconds
QTimer timer;
timer.setSingleShot(true);
// quit the loop when the request finised
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
// or the timer timed out
loop.connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
// start the timer
timer.start(2000);
// start the loop
loop.exec();
// get the status code
QVariant status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute);
// set the progress to 1
this->progress = 1;
if(status_code != 200){
if(ret.status_code != 200){
// if the request didn't result in a success, return the error code
// if the request failed but there is still old data available
if(!this->m_weekplan.isEmpty()){
// set the status code to 902 (old data)
status_code = 902;
ret.status_code = 902;
}
return(status_code.toInt());
return(ret.status_code);
}
// initialize the weekplan to store information to it
@ -483,7 +251,7 @@ int ServerConn::getFoodPlan()
// m_weekplan is a list, that contains a list for each day, which contains: cookteam, date, main dish, vagi main dish, garnish(Beilage) and Dessert.
// read the whole website
QString returnedData = QString::fromUtf8(reply->readAll());
QString returnedData = ret.text;
// remove unnecessary stuff
returnedData.replace("\n","");
@ -660,13 +428,10 @@ int ServerConn::getFoodPlan()
ReturnData_t ServerConn::senddata(QUrl serviceUrl, QUrlQuery pdata)
{
ReturnData_t ret; //this is a custom type to store the returned data
// Call the webservice
ReturnData_t ret; //this is a custom type to store the return-data
// Create network request
QNetworkRequest request(serviceUrl);
QAuthenticator authenticator;
authenticator.setUser("ZedlerDo");
authenticator.setPassword("LxyJQB");
request.setHeader(QNetworkRequest::ContentTypeHeader,
"application/x-www-form-urlencoded");
@ -676,42 +441,53 @@ ReturnData_t ServerConn::senddata(QUrl serviceUrl, QUrlQuery pdata)
reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
//wait until the request has finished
// loop to wait until the request has finished before processing the data
QEventLoop loop;
// timer to cancel the request after 3 seconds
QTimer timer;
timer.setSingleShot(true);
// quit the loop when the request finised
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
// or the timer timed out
loop.connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
// start the timer
timer.start(4000);
// start the loop
loop.exec();
//get the status code
QVariant status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute);
ret.status_code = status_code.toInt();
if(ret.status_code == 0){ //if tehstatus code is zero, the connecion to the server was not possible
ret.status_code = 444;
}
//get the full text response
ret.text = QString::fromUtf8(reply->readAll());
if(reply->isOpen()){
delete reply;
}
//return the data
return(ret);
}
QString ServerConn::getState() {
return(this->state);
}
void ServerConn::setState(QString state) {
this->state = state;
this->stateChanged(this->state);
if(state != this->state){
qDebug() << "+----- serverconn has new state: " + state + " -----+";
this->state = state;
this->stateChanged(this->state);
}
}
ServerConn::~ServerConn()
{
qDebug("serverconn destruktor");
qDebug("+----- ServerConn destruktor -----+");
delete this->networkManager;
delete this->refreshNetworkManager;
QString path = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);
QDir dir(path + "/.fannyapp-tmp");
dir.removeRecursively();
}