Version 1.4.4
1
v1.4.4/CHANGES
Normal file
|
@ -0,0 +1 @@
|
||||||
|
siehe cd-template/news.txt
|
8
v1.4.4/COMMITTERS
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
Liste aller beteiligten CryptoCD-Entwickler mit (svn-)Schreib-Rechten:
|
||||||
|
age - Henning Rieger
|
||||||
|
io/lars - Lars Kruse
|
||||||
|
jsilence - Rolf Meinecke
|
||||||
|
phear - Mattes Sarcander
|
||||||
|
phil - Steffen Dabbert
|
||||||
|
philonous - Stefan Deser
|
||||||
|
|
181
v1.4.4/Makefile
Normal file
|
@ -0,0 +1,181 @@
|
||||||
|
########## Variablendefinitionen ###########
|
||||||
|
|
||||||
|
# ist subversion verfuegbar?
|
||||||
|
IS_SVN := $(shell test -d .svn && which svn >/dev/null && echo "yes")
|
||||||
|
# Revisions-Variablen
|
||||||
|
REVISIONS_NR := $(shell test "yes" = "$(IS_SVN)" && svn -R info | grep ^Revision | cut -f2 -d " " | sort -n | tail -1)
|
||||||
|
# kein svn vorhanden? also nehmen wir das heutige Datum
|
||||||
|
REVISIONS_NR ?= $(shell date +%Y%m%d)
|
||||||
|
REVISIONS_SUFFIX = _r$(REVISIONS_NR)
|
||||||
|
|
||||||
|
# Verzeichnisse
|
||||||
|
ROOT_DIR := $(shell pwd)
|
||||||
|
|
||||||
|
# Ablage der erstellten zip/iso-Dateien
|
||||||
|
EXPORT_DIR = $(ROOT_DIR)/export
|
||||||
|
# so beginnt das export-Verzeichnis
|
||||||
|
EXPORT_PREFIX := cryptocd
|
||||||
|
# wird an das export-Verzeichnis und die Archiv/iso-Dateien angehaengt
|
||||||
|
EXPORT_FILE_SUFFIX :=
|
||||||
|
EXPORT_FILE = $(EXPORT_DIR)/$(EXPORT_PREFIX)$(REVISIONS_SUFFIX)$(EXPORT_FILE_SUFFIX)
|
||||||
|
|
||||||
|
# Zwischenlagerung
|
||||||
|
TMP_ROOT = $(ROOT_DIR)/tmp
|
||||||
|
CCD_BUILD_DIR ?= $(TMP_ROOT)/$(EXPORT_PREFIX)$(REVISIONS_SUFFIX)$(EXPORT_FILE_SUFFIX)
|
||||||
|
PROGRAMM_DIR = $(CCD_BUILD_DIR)/programme
|
||||||
|
|
||||||
|
# Verzeichnisse, die notfalls erstellt werden muessen
|
||||||
|
CREATE_DIRS = $(TMP_ROOT) $(EXPORT_DIR)
|
||||||
|
|
||||||
|
# Aktionen
|
||||||
|
ERZEUGE_TAR = tar cjhf $(EXPORT_FILE).tar.bz2 -C $(dir $(CCD_BUILD_DIR)) $(notdir $(CCD_BUILD_DIR))
|
||||||
|
ERZEUGE_ZIP = (cd $(dir $(CCD_BUILD_DIR)); zip -9rq - $(notdir $(CCD_BUILD_DIR))) >$(EXPORT_FILE).zip
|
||||||
|
ERZEUGE_ISO = mkisofs -quiet $(ISO_OPTS) -o $(EXPORT_FILE).iso $(CCD_BUILD_DIR) 2>&1 | $(EINRUECKEN)
|
||||||
|
|
||||||
|
# Sonstiges
|
||||||
|
# Optionen fuer mkisofs
|
||||||
|
ISO_OPTS = -iso-level 3 -J -joliet-long -relaxed-filenames -f -r -V $(EXPORT_PREFIX)$(REVISIONS_SUFFIX)
|
||||||
|
# Ausgabe-Filter zum Einruecken
|
||||||
|
EINRUECKEN = sed 's/^/\t/'
|
||||||
|
|
||||||
|
######### Variablen vererben ###########
|
||||||
|
export CCD_BUILD_DIR
|
||||||
|
|
||||||
|
########### Allgemeine targets ###########
|
||||||
|
|
||||||
|
.PHONY : clean clean-dist all documents linkcheck help website release source all cd-template kopiere_programme
|
||||||
|
|
||||||
|
help:
|
||||||
|
@echo "allgemeine Targets:"
|
||||||
|
@echo " help - diese Uebersicht"
|
||||||
|
@echo " doku - das Doku-Verzeichnis erneuern"
|
||||||
|
@echo " clean - unnoetige Dateien loeschen (ohne downloads)"
|
||||||
|
@echo " dist-clean - unnoetige Dateien loeschen (inklusive downloads)"
|
||||||
|
@echo " linkcheck - Pruefung der Links"
|
||||||
|
@echo " validate - Pruefung des html-Codes"
|
||||||
|
@echo
|
||||||
|
@echo "Export-Targets:"
|
||||||
|
@echo " source - die lyx-Quellen und Bilder"
|
||||||
|
@echo " website - fuer die Webseite: mit Programmen"
|
||||||
|
@echo " release - erstellt das iso-Image und das zip-Archiv"
|
||||||
|
@echo " all - erstellt alle Export-Formen"
|
||||||
|
|
||||||
|
|
||||||
|
clean:
|
||||||
|
-make -C documents clean
|
||||||
|
-rm -rf $(TMP_ROOT)/* 2>/dev/null
|
||||||
|
|
||||||
|
|
||||||
|
dist-clean: clean
|
||||||
|
@# runtergeladene Dateien loeschen
|
||||||
|
@downloads/get_files.sh programme clean
|
||||||
|
|
||||||
|
|
||||||
|
linkcheck: doku kopiere_programme
|
||||||
|
@# check if the 'linkchecker' program is available
|
||||||
|
@if which linkchecker >/dev/null ;\
|
||||||
|
then true ;\
|
||||||
|
else echo >&2 ;\
|
||||||
|
echo >&2 "**********************************************************" ;\
|
||||||
|
echo >&2 "* Could not find 'linkchecker'! *" ;\
|
||||||
|
echo >&2 "* Debian users should run 'apt-get install linkchecker'. *" ;\
|
||||||
|
echo >&2 "**********************************************************";\
|
||||||
|
echo >&2 ;\
|
||||||
|
false ;\
|
||||||
|
fi
|
||||||
|
linkchecker -r 8 --ignore-url=^mailto: $(wildcard $(CCD_BUILD_DIR)/*.html)
|
||||||
|
|
||||||
|
|
||||||
|
validate:
|
||||||
|
make -C documents validate
|
||||||
|
|
||||||
|
|
||||||
|
# pruefe, ob alle notwendigen/empfohlenen Verzeichnisse existieren
|
||||||
|
verzeichnisstruktur: $(CREATE_DIRS)
|
||||||
|
$(CREATE_DIRS):
|
||||||
|
@if [ ! -e "$@" ] ;\
|
||||||
|
then echo -e "directory ($@) does not exist - I will create it" ;\
|
||||||
|
mkdir -p "$@" ;\
|
||||||
|
fi
|
||||||
|
|
||||||
|
######## die Werkzeuge #########
|
||||||
|
|
||||||
|
cd-template: verzeichnisstruktur
|
||||||
|
@rm -rf $(CCD_BUILD_DIR)
|
||||||
|
@# export local svn directory OR just copy the directories (for non-svn users)
|
||||||
|
@if test "yes" = "$(IS_SVN)" ;\
|
||||||
|
then svn export cd-template "$(CCD_BUILD_DIR)" ;\
|
||||||
|
else mkdir -p $(dir $(CCD_BUILD_DIR)) ;\
|
||||||
|
cp -r cd-template $(CCD_BUILD_DIR) ;\
|
||||||
|
fi
|
||||||
|
@# check if the 'unix2dos' program is available
|
||||||
|
@if which unix2dos >/dev/null ;\
|
||||||
|
then true ;\
|
||||||
|
else echo >&2 ;\
|
||||||
|
echo >&2 "*******************************************************" ;\
|
||||||
|
echo >&2 "* Could not find 'unix2dos'! *" ;\
|
||||||
|
echo >&2 "* Debian users should run 'apt-get install tofrodos'. *" ;\
|
||||||
|
echo >&2 "*******************************************************";\
|
||||||
|
echo >&2 ;\
|
||||||
|
false ;\
|
||||||
|
fi
|
||||||
|
@# use DOS linebreaks instead of unix-stylish ones - should be easy for everyone
|
||||||
|
@find $(CCD_BUILD_DIR) -type f -name \*.html -exec unix2dos '{}' \;
|
||||||
|
@find $(CCD_BUILD_DIR) -type f -name \*.txt -exec unix2dos '{}' \;
|
||||||
|
@find $(CCD_BUILD_DIR) -type f -name \*.css -exec unix2dos '{}' \;
|
||||||
|
|
||||||
|
|
||||||
|
doku: cd-template
|
||||||
|
@echo "Aktualisiere das Doku-Verzeichnis ..."
|
||||||
|
@make -C documents
|
||||||
|
@#Kopieren der Dateien ins das Abbild-Verzeichnis
|
||||||
|
@make -C documents install
|
||||||
|
|
||||||
|
|
||||||
|
kopiere_programme: cd-template
|
||||||
|
@echo "Kopiere die Programme ..."
|
||||||
|
@downloads/get_files.sh programme download
|
||||||
|
@downloads/get_files.sh programme verify
|
||||||
|
@downloads/get_files.sh programme install "$(PROGRAMM_DIR)"
|
||||||
|
|
||||||
|
|
||||||
|
####### die Ausgabe-Formate ###########
|
||||||
|
website: EXPORT_FILE_SUFFIX := _website
|
||||||
|
website: doku kopiere_programme
|
||||||
|
@echo "Erzeuge Archiv der online-Dateien ..."
|
||||||
|
@# Gruppen-Schreibrecht setzen (fuer eduforge)
|
||||||
|
@chmod -R g+rw $(TMP_ROOT)
|
||||||
|
@$(ERZEUGE_TAR)
|
||||||
|
|
||||||
|
|
||||||
|
source: EXPORT_FILE_SUFFIX := _src
|
||||||
|
source:
|
||||||
|
rm -rf "$(CCD_BUILD_DIR)"
|
||||||
|
@if test "yes" = "$(IS_SVN)" ;\
|
||||||
|
then mkdir -p "$(dir $(CCD_BUILD_DIR))" ;\
|
||||||
|
echo "Exportiere die gewaehlte svn-Revision ($(REVISIONS_NR)) ..." ;\
|
||||||
|
svn export . "$(CCD_BUILD_DIR)" | $(EINRUECKEN) ;\
|
||||||
|
else mkdir -p "$(CCD_BUILD_DIR)" ;\
|
||||||
|
make -C documents clean ;\
|
||||||
|
cp -r $(shell ls | grep -v "$(notdir $(TMP_ROOT))" | grep -v "$(notdir $(EXPORT_DIR))") "$(CCD_BUILD_DIR)" ;\
|
||||||
|
fi
|
||||||
|
@echo "Erzeuge source-Archiv ..."
|
||||||
|
@$(ERZEUGE_TAR)
|
||||||
|
|
||||||
|
|
||||||
|
release: EXPORT_FILE_SUFFIX := _release
|
||||||
|
release: doku kopiere_programme
|
||||||
|
find . -type f -name \*.html -exec unix2dos '{}' \;
|
||||||
|
find . -type f -name \*.txt -exec unix2dos '{}' \;
|
||||||
|
find . -type f -name \*.css -exec unix2dos '{}' \;
|
||||||
|
@echo "Erzeuge iso-Image ..."
|
||||||
|
@$(ERZEUGE_ISO)
|
||||||
|
@echo "Erzeuge zip-Archiv ..."
|
||||||
|
@$(ERZEUGE_ZIP)
|
||||||
|
|
||||||
|
|
||||||
|
all:
|
||||||
|
@make website
|
||||||
|
@make release
|
||||||
|
@make source
|
||||||
|
|
36
v1.4.4/README
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
===== Die CryptoCD =====
|
||||||
|
|
||||||
|
Dies ist ein Entwickler-Archiv der CryptoCD, einer einstiegsfreundlichen
|
||||||
|
Zusammenstellung von Anleitungen und Programmen zur Ver-
|
||||||
|
schluesselung von E-Mails und Chat-Nachrichten unter Linux, Windows
|
||||||
|
2000/XP und Mac OS X.
|
||||||
|
|
||||||
|
Informationen zum Erstellen einer eigenen CryptoCD findest du in der Datei
|
||||||
|
ccd-infos/export_info.txt.
|
||||||
|
|
||||||
|
Falls du die CryptoCD nur verwenden (also nicht weiterentwickeln) möchtest,
|
||||||
|
dann solltest du anstelle dieses Entwickler-Archivs ein zip-Archiv oder ein
|
||||||
|
CD-Image herunterladen.
|
||||||
|
|
||||||
|
Webseite: http://cryptocd.org
|
||||||
|
Subversion-Repository: (mit anonymem Lese-Zugriff)
|
||||||
|
- zum Browsen: https://systemausfall.org/trac/cryptocd/browser/
|
||||||
|
- fuer ein checkout: https://svn.systemausfall.org/svn/cryptocd/trunk
|
||||||
|
|
||||||
|
Kontakt: info@cryptocd.org
|
||||||
|
|
||||||
|
===== Die Verzeichnisstruktur =====
|
||||||
|
|
||||||
|
ccd-infos: Hinweise zur eigenen Erstellung und Modifikation von Inhalten
|
||||||
|
documents: Die Quelltexte und -bilder
|
||||||
|
export: Hier landen die zu veröffentlichen Endresultate eines make-
|
||||||
|
Aufrufes
|
||||||
|
cd-template: Die fixen Daten der CD (CSS-File usw.)
|
||||||
|
downloads: Nach dem entsprechenden make-Aufruf befinden sich hier die
|
||||||
|
heruntergeladenen Programme
|
||||||
|
tmp: das temporäre Verzeichnis, das beim build-Prozess genutzt wird
|
||||||
|
|
||||||
|
===== Lizenz =====
|
||||||
|
|
||||||
|
Alle Inhalte der CD stehen unter einer Creative-Commons-Lizenz.
|
||||||
|
(siehe Verzeichnis cd-template/auslese/cc)
|
2
v1.4.4/TODO
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
siehe: https://systemausfall.org/trac/cryptocd/report/3
|
||||||
|
|
31
v1.4.4/ccd-infos/export_info.txt
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
===== Informationen zur eigenen Erstellung von Releases der CryptoCD =====
|
||||||
|
|
||||||
|
notwendige Programme:
|
||||||
|
- make
|
||||||
|
- lyx
|
||||||
|
- latex2html
|
||||||
|
- python
|
||||||
|
- mkisofs
|
||||||
|
- zip/tar/bzip2
|
||||||
|
- subversion (nur fuer das Erstellen eines "source"-Pakets notwendig)
|
||||||
|
- linkchecker
|
||||||
|
- wdg-html-validator
|
||||||
|
- unix2dos (Debian: im Paket 'tofrodos' enthalten)
|
||||||
|
- gpg (zum Verifizieren der heruntergeladenen Programme)
|
||||||
|
|
||||||
|
|
||||||
|
===== Export eines Releases =====
|
||||||
|
|
||||||
|
Im Hauptverzeichnis (höchstwahrscheinlich trunk/) "make help" eingeben,
|
||||||
|
dies listet die aktuellen Optionen auf.
|
||||||
|
|
||||||
|
Achtung: falls du keine lokale Arbeitskopie des subversion-Repositories
|
||||||
|
verwendest, musst du die Release-Nummer im Makefile per Hand setzen
|
||||||
|
(in den ersten Zeilen).
|
||||||
|
|
||||||
|
|
||||||
|
===== Hinzufuegen eigener Anleitungen =====
|
||||||
|
|
||||||
|
Dies ist detailliert und inklusive Formatierungs-Policy in
|
||||||
|
ccd-infos/policy_formatierung.lyx erläutert.
|
||||||
|
|
823
v1.4.4/ccd-infos/policy_formatierung.lyx
Normal file
|
@ -0,0 +1,823 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language swedish
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Hinweise zur Erstellung von Lyx-Dokumenten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
für Lyx 1.4.x
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset LatexCommand \tableofcontents{}
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Section
|
||||||
|
Dokumenteigenschaften
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Einstellungen für latex2html
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Damit der latex2html-Konverter ein tex-Dokument korrekt umwandelt (inklusive
|
||||||
|
deutscher Übersetzung der Begriffe), muss zuerst in Lyx-Menü
|
||||||
|
\emph on
|
||||||
|
Dokument --> Einstellung --> LaTeX-Vorspann
|
||||||
|
\emph default
|
||||||
|
folgendes eingetragen werden:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
usepackage{html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
usepackage{hyperref}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
usepackage{german}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Sonstiges
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Sprache des Dokumentes auf Deutsch stellen:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Lyx-Menü:
|
||||||
|
\emph on
|
||||||
|
Dokument
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Einstellungen
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Sprache
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Section
|
||||||
|
Dokumentformatierung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Nachfolgend ist beschreiben, wie ein Lyx-Dokument aufgebaut ist.
|
||||||
|
Bitte beachte, dass du die Reihenfolge der Formatierungen beibehältst.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Kopf: Die Titelleiste
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Ein Lyx-Dokument beginnt mit dem Einfügen der Datei
|
||||||
|
\emph on
|
||||||
|
titlebar.inc.
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
Das geht so:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Lyx-Menü:
|
||||||
|
\emph on
|
||||||
|
Einfügen
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Datei
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Unterdokument
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Der Dateiname ist
|
||||||
|
\emph on
|
||||||
|
titlebar.inc
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Eingabefeld darf nur der Dateiname auftauchen - keine Pfadangaben!
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Die Art der Einbindung ist ''Input''
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Beispiel:
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Kopf: Das Menü
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die eingefügte Datei
|
||||||
|
\emph on
|
||||||
|
menue.inc
|
||||||
|
\emph default
|
||||||
|
ist dafür verantwortlich, dass das Menü dargestellt wird.
|
||||||
|
Änderungen am Menü musst du also in dieser Datei vornehmen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Einfügen geht so:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Lyx-Menü: Einfügen -> Datei -> Unterdokument
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Der Dateiname ist
|
||||||
|
\emph on
|
||||||
|
menue.inc
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Eingabefeld darf nur der Dateiname auftauchen - keine Pfadangaben!
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
die Art der Einbindung ist ''Input''
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Beispiel:
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Kopf: css-Tag
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Unterhalb des Menüs kommt ein Abschnitt mit sogenannten
|
||||||
|
\emph on
|
||||||
|
Evil Red Text (ERT)
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
Klicke im Lyx-Menü auf den Button mit den roten Buchstaben
|
||||||
|
\emph on
|
||||||
|
TEX
|
||||||
|
\emph default
|
||||||
|
und füge den folgenden Code ein:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Quotation
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Hauptteil: Titel
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Der Hauptteil beginnt immer mit einem Titel.
|
||||||
|
Denke dir was schönes aus.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Hauptteil: Autor (optional)
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
Die optionale Formatierung
|
||||||
|
\emph on
|
||||||
|
Autor
|
||||||
|
\emph default
|
||||||
|
kannst du für eine weitere Beschreibung des Dokumentes benutzen.
|
||||||
|
Üblich ist es dort den Namen des Hauptdokumentes anzugeben.
|
||||||
|
Ein Beispiel:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Title: Thunderbird installieren
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Autor: Verschlüsselt Mailen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Hauptteil: Inhaltsverzeichnis (optional)
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Bei umfangreichen Dokumenten kannst du nun ein Inhaltsverzeichnis einfügen.
|
||||||
|
Das geht so:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Lyx-Menü:
|
||||||
|
\emph on
|
||||||
|
Einfügen
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Liste / Inhaltsverzeichnis
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Inhaltsverzeichnis
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Überschriften werden nicht in das Inhaltsverzeichnis aufgenommen, wenn sie
|
||||||
|
mit der Sternchen-Variante (bspw:
|
||||||
|
\emph on
|
||||||
|
Unterabschnitt*
|
||||||
|
\emph default
|
||||||
|
) gekennzeichnet wurden.
|
||||||
|
In den html-Dokumenten tauchen die Nummern vor den Überschriften nicht
|
||||||
|
auf.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Hauptteil: sonstiges
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Alle weiteren Überschriften werden als 'Subsection' formatiert
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Zitate werden als 'Quote' formatiert.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Im html wird daraus <blockquote>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Hervorhebungen werden mit '!' markiert
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\emph on
|
||||||
|
Eigennamen usw.
|
||||||
|
am besten mit '!' formatieren.
|
||||||
|
Im html wird daraus <class=
|
||||||
|
\begin_inset Quotes erd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
textit
|
||||||
|
\begin_inset Quotes erd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Bilder zentriert mit Beschreibung darstellen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Bilder werden normalerweise im html-Dokument linksbündig dargestellt.
|
||||||
|
Um dieses Verhalten zu ändern oder um dem Bild eine Beschreibung hinzuzufügen,
|
||||||
|
muss es innerhalb eines
|
||||||
|
\emph on
|
||||||
|
Gleitobjekts
|
||||||
|
\emph default
|
||||||
|
liegen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename /home/phil/daten/sao/svn/cryptocd/trunk/documents/winpt/winpt_systray.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
dies ist eine Beschreibung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Folgende Schritte sind notwendig:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
Im Lyx-Menü:
|
||||||
|
\emph on
|
||||||
|
Einfügen
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Gleitobjekt
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Abbildung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
Hinter
|
||||||
|
\emph on
|
||||||
|
Abbildung #
|
||||||
|
\emph default
|
||||||
|
: die Beschreibung einfügen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
Den Cursor an den Satzanfang der Beschreibung bringen dann 'Enter' - nun
|
||||||
|
ist über der Beschreibung Platz für das Bild
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
Im Lyx-Menü:
|
||||||
|
\emph on
|
||||||
|
Einfügen
|
||||||
|
\emph default
|
||||||
|
->
|
||||||
|
\emph on
|
||||||
|
Grafik...
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Bild wird im html innerhalb einer Tabelle dargestellt - diese ist genauso
|
||||||
|
breit wie das Bild selber.
|
||||||
|
Lange Beschreibungen werden also umgebrochen, was mitunter unschön aussieht.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Screenshots - Nachbearbeitung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
maximale Pixelbreite: 600
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
mit Gimp um den Wert 30 schärfen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Hervorhebungen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
neue Ebene anlegen,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Stelle mit dem Auswahlwerkzeug markieren,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Auswahl mitFüllwerzeug und Farbe rot füllen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Tranzparenz der Ebene auf Wert 30 setzen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
falls ein großer Teil des Randes des Bildes aus weißen Flächen besteht,
|
||||||
|
dann wäre ein schwarzer Rand hilfreich:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
Gimp: Skript-Fu -> Dekoration -> Rand hinzufügen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
vertikal 1px
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
horizontal 1px
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Farbe: schwarz
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
das GTK-Theme für die Linux-Screenshots ist Clearlooks (der Standard ab
|
||||||
|
Gnome 2.12)
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Böser roter Tex
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Bestimmte Formatierungen werden nur umgewandelt, wenn sie dem Konverter
|
||||||
|
direkt übergeben werden.
|
||||||
|
Das erfordert die Eingabe von sogenannten
|
||||||
|
\emph on
|
||||||
|
Evil Red Text (ERT)
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
Dieses Erfolgt über das Menü und den Button
|
||||||
|
\emph on
|
||||||
|
TEX
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Eine Dokumentation zu den latex2html-Befehlen findest du unter
|
||||||
|
\emph on
|
||||||
|
http://www-texdev.mpce.mq.edu.au/l2h/docs/manual/
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Links einfügen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Links werden mit einer
|
||||||
|
\emph on
|
||||||
|
ERT
|
||||||
|
\emph default
|
||||||
|
-Formatierung eingefügt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Beschreibung}{Adresse}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Falls du auf eine Seite auf der CryptoCD verweist, gilt folgendes Schema
|
||||||
|
zur Angabe der Adresse:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
../$VERZEICHNIS/DOKUMENT.LYX
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Jedes Dokument liegt in einem gesonderten Verzeichnis, das genauso bezeichnet
|
||||||
|
ist, wie das Dokument selbst.#
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
E-Mail-Adressen verlinken:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_deeper
|
||||||
|
\begin_layout Itemize
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Adresse}{mailto: Adresse}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_deeper
|
||||||
|
\begin_layout Standard
|
||||||
|
Enthält ein Link ein Prozentzeichen, muss dieses maskiert werden:
|
||||||
|
\backslash
|
||||||
|
% statt %.
|
||||||
|
Angezeigt wird dann ein normales %-Zeichen.
|
||||||
|
Anderfalls wird der Link von latex als Kommentar interpretiert.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Eine horizontale Linie einfügen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Dokumentation enthält zusätzliche Optionen zur Formatierung einer Linie.
|
||||||
|
Ohne Optionen wird sie wie folgt dargestellt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmlrule
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Verweise auf Menüpunkte der Programme
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Falls du im Text auf einen Menüpunkt eines Programmes (z.B.
|
||||||
|
Thunderbird) verweist, wir die entsprechende Stelle wie folgt formatiert:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<span class="kbd">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
$MENÜPUNKT
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</span>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsubsection
|
||||||
|
Fussnoten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Problem: Eine Fussnote fehlt in der Auflistung am Ende der html-Seite -
|
||||||
|
nur das Verweis-Wort aus dem Text ist aufgeführt! Eventuell beinhaltet
|
||||||
|
die Fussnote einen Link mit "%"-Zeichen.
|
||||||
|
Die Lösung findest du im Abschnitt
|
||||||
|
\begin_inset Quotes srd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Links einfügen
|
||||||
|
\begin_inset Quotes erd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Ende: Der Fortschrittsbalken (optional)
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Am Ende der meisten Dokumente erscheint ein Fortschrittsbalken.
|
||||||
|
Er zeigt auf, welche Seiten in der Dokumentation bereits bearbeitet wurden
|
||||||
|
und welche noch folgen.
|
||||||
|
Falls du einen neuen Fortschrittsbalken erstellen willst, nimm die Formatierung
|
||||||
|
eines Bestehenden als Vorlage.
|
||||||
|
Dies ist wichtig, weil bei einem make durch die Datei mod_html_files.py
|
||||||
|
Änderungen vorgenommen werden, die auf der aktuellen Formatierung der Fortschri
|
||||||
|
ttsbalken aufbauen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Einfügen geht so:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Lyx-Menü: Einfügen -> Datei -> Unterdokument
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Der Dateiname ist: $TITEL.inc, der Speicherort ist: progress/
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Im Eingabefeld muss es dann so lauten: progress/$TITEL.inc
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
die Art der Einbindung ist ''Input''
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Beispiel:
|
||||||
|
\begin_inset Include \input{progress/policy_formatierung.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Section
|
||||||
|
Verzeichnisstruktur und Dateinamen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Zum Speichern stehen dir einige Verzeichnisse unterhalb von trunk/documents
|
||||||
|
zur Verfügung:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
common/ -- Hier kommen allgemeine Dokumente rein
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Enumerate
|
||||||
|
windows/, linux/, macos/ -- Hier werden jeweils die betriebssystemspezifischen
|
||||||
|
Anleitungen gespeichert
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
progress/ -- Hier werden die Fortschrittsbalken gespeichert
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Beim Speichern gilt folgendes (dies ist wichtig für die Verlinkung innerhalb
|
||||||
|
der Lyx-Dokumente):
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Lege innerhalb eines der o.g.
|
||||||
|
Verzeichnisse ein neues Verzeichnis an,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
das neue lyx-Dokument in diesem Verzeichnis sollte denselben Namen tragen,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
speichere das Lyx-Dokument ab.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
11
v1.4.4/cd-template/CryptoCD_Start.html
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="refresh" content="0; URL=doku/windows/index/index.html">
|
||||||
|
<title>Die CryptoCD</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
Automatische Weiterleitung zur <a href="doku/windows/index/index.html" title="Dokumentation">Dokumentation</a> ...
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
2
v1.4.4/cd-template/autorun.inf
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[autorun]
|
||||||
|
open=programme\shellopn.exe CryptoCD_Start.html
|
59
v1.4.4/cd-template/copyleft.txt
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
Das Urheberrecht liegt bei den Autorinnen der CryptoCD, vertreten durch:
|
||||||
|
Sense.Lab e.V.
|
||||||
|
Ludwigstrasse 20
|
||||||
|
18055 Rostock
|
||||||
|
|
||||||
|
Die Nutzung ist unter Beachtung der folgenden Lizenz moeglich:
|
||||||
|
Creative-Commons-Lizenz:
|
||||||
|
Namensnennung - Weitergabe unter gleichen Bedingungen 2.0 Deutschland.
|
||||||
|
http://creativecommons.org/licenses/by-sa/2.0/
|
||||||
|
|
||||||
|
Abweichend dazu gelten die folgenden Lizenzen:
|
||||||
|
|
||||||
|
Betriebssystem-Logos
|
||||||
|
Fuer die auf den Bildern pc_linux.png, pc_windows.png, pc_mac.png
|
||||||
|
dargestellten Logos gelten folgende Bedingungen:
|
||||||
|
Penguin
|
||||||
|
The copyright holder of this file allows anyone to use it for any
|
||||||
|
purpose, provided that the copyright holders Larry Ewing, Simon
|
||||||
|
Budig and Anja Gerwinski are mentioned.
|
||||||
|
Windows/Mac OS
|
||||||
|
Beide Logos koennen frei verwendet werden, sind aber
|
||||||
|
wahrscheinlich durch das deutsche Markengesetz oder vergleichbare
|
||||||
|
Gesetze geschuetzt.
|
||||||
|
|
||||||
|
Enigmail (Thunderbird-Erweiterung)
|
||||||
|
http://enigmail.mozdev.org/
|
||||||
|
Mozilla Public License Version 1.1
|
||||||
|
http://www.mozilla.org/MPL/MPL-1.1.html
|
||||||
|
Quellcode: http://enigmail.mozdev.org/source.html
|
||||||
|
|
||||||
|
GnuPG (Verschluesselungs-Programm)
|
||||||
|
http://www.gnupg.org/
|
||||||
|
GNU General Public License
|
||||||
|
http://www.gnu.org/copyleft/gpl.html
|
||||||
|
Quellcode: http://www.gnupg.org/(de)/download/index.html
|
||||||
|
|
||||||
|
Pidgin (Chat-Programm)
|
||||||
|
http://pidgin.im/
|
||||||
|
GNU General Public License
|
||||||
|
http://www.gnu.org/copyleft/gpl.html
|
||||||
|
Quellcode: http://pidgin.im/downloads.php
|
||||||
|
|
||||||
|
Pidgin-Encryption (Pidgin-Plugin)
|
||||||
|
http://gaim-encryption.sourceforge.net/
|
||||||
|
GNU General Public License
|
||||||
|
http://www.gnu.org/copyleft/gpl.html
|
||||||
|
Quellcode: http://sourceforge.net/project/showfiles.php?group_id=57740
|
||||||
|
|
||||||
|
Tango Desktop Project (Icons)
|
||||||
|
http://tango.freedesktop.org/Tango_Desktop_Project
|
||||||
|
Creativ Commons Attribution-ShareAlike 2.5
|
||||||
|
http://creativecommons.org/licenses/by-sa/2.5/
|
||||||
|
|
||||||
|
Thunderbird (E-Mail-Programm)
|
||||||
|
http://www.mozilla.com/thunderbird/
|
||||||
|
Mozilla Public License Version 1.1
|
||||||
|
http://www.mozilla.org/MPL/MPL-1.1.html
|
||||||
|
Quellcode: http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/latest/source/
|
||||||
|
|
BIN
v1.4.4/cd-template/cover/cover_modern.pdf
Normal file
BIN
v1.4.4/cd-template/cover/cover_sw.pdf
Normal file
BIN
v1.4.4/cd-template/doku/cc_logo.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
v1.4.4/cd-template/doku/chat.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
381
v1.4.4/cd-template/doku/cryptocd.css
Normal file
|
@ -0,0 +1,381 @@
|
||||||
|
/*
|
||||||
|
HINWEISE
|
||||||
|
padding,margin Angaben: oben rechts unten links
|
||||||
|
*/
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
font-size: 11pt;
|
||||||
|
font-family: verdana, lucida, arial, helvetica, sans-serif;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
html>body {
|
||||||
|
font-family: verdana, lucida, arial, helvetica, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
h1, h2, h3, h4 {
|
||||||
|
font-family: georgia, times new roman, times, serif;
|
||||||
|
font-weight: normal;
|
||||||
|
background: none;
|
||||||
|
padding: 1.75em 0 0;
|
||||||
|
margin: 0;
|
||||||
|
line-height: 1.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 220%;
|
||||||
|
text-align: center;
|
||||||
|
color: #555753;
|
||||||
|
padding: 0 0 0.5em;
|
||||||
|
margin: 0.75em 0 1.5em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 150%;
|
||||||
|
color: #555753;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 120%;
|
||||||
|
color: #888a85;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Seiten-Untertitel */
|
||||||
|
.author_info {
|
||||||
|
text-align: center;
|
||||||
|
color: #B7B7B7;
|
||||||
|
margin-top: -3.5em;
|
||||||
|
font-size: 110%;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #f57900;
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: #ce5c00;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:active {
|
||||||
|
color: #f57900;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #fcaf3e;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
height: 1px;
|
||||||
|
border: 1px solid silver;
|
||||||
|
border-bottom: none;
|
||||||
|
border-right: none;
|
||||||
|
border-left: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
tt {
|
||||||
|
font-size: 90%;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
sup {
|
||||||
|
font-size: 70%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container hr {
|
||||||
|
width: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#container .externalLink {
|
||||||
|
background: url(externallink.png) center right no-repeat;
|
||||||
|
padding-right: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav {
|
||||||
|
position: absolute;
|
||||||
|
top: 20px;
|
||||||
|
left: 20px;
|
||||||
|
display: inline;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
z-index: 5;
|
||||||
|
font-size: 110%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav li {
|
||||||
|
color: #43598e;
|
||||||
|
float: left;
|
||||||
|
list-style-type: disc;
|
||||||
|
margin-left: 15pt;
|
||||||
|
padding: 5pt 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav li:first-child {
|
||||||
|
padding-left: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav a {
|
||||||
|
color: #f57900;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav a:hover {
|
||||||
|
color: #fcaf3e;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlebar {
|
||||||
|
background-color: #33436a;
|
||||||
|
text-shadow: 2px 2px 3px gray;
|
||||||
|
height: 54px;
|
||||||
|
padding-top: 1px;
|
||||||
|
padding-left: 16px;
|
||||||
|
padding-right: 16px;
|
||||||
|
border-bottom: 6px solid #f57900;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlebar .left {
|
||||||
|
text-align: left;
|
||||||
|
color: #f57900;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlebar .right {
|
||||||
|
text-align: right;
|
||||||
|
color: #ffffff;
|
||||||
|
font-size: 44px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* #### Menue #### */
|
||||||
|
#nav {
|
||||||
|
float: left;
|
||||||
|
background-color: transparent;
|
||||||
|
text-align: left;
|
||||||
|
width: 180px;
|
||||||
|
margin: 1em 0 0.5em 2em;
|
||||||
|
padding: 0.75em;
|
||||||
|
font-size: 90%;
|
||||||
|
border:1px solid #ccc;
|
||||||
|
background-color: #f6f6f6;
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav li {
|
||||||
|
margin: 0 0 0 -2em;
|
||||||
|
list-style-type: square;
|
||||||
|
color: #888a85;
|
||||||
|
padding-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#navtitle {
|
||||||
|
color: #888;
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toclevel-2 {
|
||||||
|
color: #babdb6;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* #### Hauptteil #### */
|
||||||
|
|
||||||
|
#main {
|
||||||
|
margin-left: 28%;
|
||||||
|
margin-right: 5%;
|
||||||
|
padding: 0 1em;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main li {
|
||||||
|
margin: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main ul li {
|
||||||
|
margin: 0.5em;
|
||||||
|
list-style-type: square;
|
||||||
|
list-style-position: inside;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Abstand von Bildern + Bildunterschrift zum folgenden Absatz */
|
||||||
|
#main table caption {
|
||||||
|
margin-bottom: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main img {
|
||||||
|
margin-top: 1em;
|
||||||
|
margin-bottom: 1.5em;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toc {
|
||||||
|
font-size: 90%;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toctitle {
|
||||||
|
color: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* #os_selection: Tabelle mit Computern auf index.html */
|
||||||
|
#os_selection {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#os_selection td {
|
||||||
|
padding: 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ie_center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* #selection: Tabelle mit Buttons auf index2.html*/
|
||||||
|
#selection a {
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#selection td {
|
||||||
|
vertical-align: middle;
|
||||||
|
padding: 0.6em 0.6em 0.9em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#selection img {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Zitate */
|
||||||
|
blockquote {
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bildbeschreibungen*/
|
||||||
|
caption {
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hervorhebungen */
|
||||||
|
.textit {
|
||||||
|
color: #294210;
|
||||||
|
letter-spacing: 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.kbd {
|
||||||
|
font-family: monospace;
|
||||||
|
font-size: 90%;
|
||||||
|
background-color: #eeeeec;
|
||||||
|
margin: 0.1em 0.3em 0.1em 0.1em;
|
||||||
|
padding: 0 0 0 0.7em;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
border-color: #babdb6 #888a85 #888a85 #babdb6;;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hint {
|
||||||
|
background-color: #eeeeec;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progress {
|
||||||
|
background-color: transparent;
|
||||||
|
text-align: left;
|
||||||
|
width: 400px;
|
||||||
|
margin: 3em 0 0.5em 2em;
|
||||||
|
padding: 0.75em;
|
||||||
|
border:1px solid #ccc;
|
||||||
|
background-color: #f6f6f6;
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progresstitle{
|
||||||
|
color: #888a85;
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progress ul li {
|
||||||
|
margin-left: -2.6em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.done, .done a, .done a:visited {
|
||||||
|
color: #888a85;
|
||||||
|
font-size: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.done2, .done2 a, .done2 a:visited {
|
||||||
|
color: #888a85;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next a {
|
||||||
|
font-size: 110%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next a:link {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #f57900;
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next a:visited {
|
||||||
|
color: #ce5c00;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size:110%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next a:active {
|
||||||
|
color: #f57900;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next a:hover {
|
||||||
|
color: #fcaf3e;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footnotes {
|
||||||
|
font-size: 80%;
|
||||||
|
margin-top: 3em;
|
||||||
|
padding-left: 1em;
|
||||||
|
color: #2e3436;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fntitle {
|
||||||
|
color: #888a85;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* #### Footer #### */
|
||||||
|
|
||||||
|
#footer {
|
||||||
|
clear: left;
|
||||||
|
border-top: 3px solid #B7B7B7;
|
||||||
|
background-color: #33436a;
|
||||||
|
margin-top: 30px;
|
||||||
|
padding: 15px 15px 0 15px;
|
||||||
|
color: white;
|
||||||
|
font-size: 90%;
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer .left {
|
||||||
|
text-align: left;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer .right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
BIN
v1.4.4/cd-template/doku/einfuehrung.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
v1.4.4/cd-template/doku/email.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
v1.4.4/cd-template/doku/externallink.png
Normal file
After Width: | Height: | Size: 307 B |
BIN
v1.4.4/cd-template/doku/pc_linux.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
v1.4.4/cd-template/doku/pc_mac.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
v1.4.4/cd-template/doku/pc_windows.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
v1.4.4/cd-template/doku/surfen.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
v1.4.4/cd-template/favicon.ico
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/cc-logo.jpg
Normal file
After Width: | Height: | Size: 33 KiB |
111
v1.4.4/cd-template/lizenz/cc/ccdeed.js
Normal file
|
@ -0,0 +1,111 @@
|
||||||
|
/* Referrer Metadata support for Creative Commons License Deeds */
|
||||||
|
|
||||||
|
function makeRequest(url) {
|
||||||
|
var http_request = false;
|
||||||
|
|
||||||
|
if (window.XMLHttpRequest) { // Mozilla, Safari, ...
|
||||||
|
http_request = new XMLHttpRequest();
|
||||||
|
if (http_request.overrideMimeType) {
|
||||||
|
http_request.overrideMimeType('text/plain');
|
||||||
|
// See note below about this line
|
||||||
|
}
|
||||||
|
} else if (window.ActiveXObject) { // IE
|
||||||
|
try {
|
||||||
|
http_request = new ActiveXObject("Msxml2.XMLHTTP");
|
||||||
|
} catch (e) {
|
||||||
|
try {
|
||||||
|
http_request = new ActiveXObject("Microsoft.XMLHTTP");
|
||||||
|
} catch (e) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!http_request) {
|
||||||
|
//alert('Giving up :( Cannot create an XMLHTTP instance');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
http_request.onreadystatechange = function() {
|
||||||
|
processResponse(http_request);
|
||||||
|
};
|
||||||
|
http_request.open('GET', url, true);
|
||||||
|
http_request.send(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
function processResponse(http_request) {
|
||||||
|
if (http_request.readyState == 4) {
|
||||||
|
if (http_request.status == 200) {
|
||||||
|
injectReferrerMetadata(http_request.responseText);
|
||||||
|
} else {
|
||||||
|
//alert('There was a problem with the request.');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function addQSParameter(url, key, value) {
|
||||||
|
var url_nohash = url;
|
||||||
|
var hash = '';
|
||||||
|
var hash_index = (url.indexOf('#'));
|
||||||
|
if (hash_index != -1) {
|
||||||
|
url_nohash = url.substring(0, hash_index);
|
||||||
|
hash = url.substring(hash_index);
|
||||||
|
}
|
||||||
|
url_nohash += (url.indexOf('?') == -1) ? '?' : '&';
|
||||||
|
url_nohash += key + '=' + value;
|
||||||
|
return url_nohash + hash;
|
||||||
|
}
|
||||||
|
|
||||||
|
function injectReferrerMetadata(response) {
|
||||||
|
|
||||||
|
metadata = eval(response);
|
||||||
|
|
||||||
|
var attributionName = metadata.attributionName;
|
||||||
|
var attributionUrl = metadata.attributionUrl;
|
||||||
|
|
||||||
|
if (attributionName && attributionUrl) {
|
||||||
|
document.getElementById('attribution-container').innerHTML = "You must attribute this work to <strong><a href='" + attributionUrl + "'>" + attributionName + "</a></strong> (with link)."; // <a onclick=\"window.open('/includes/by-popup.html', 'attribution_help', 'width=375,height=300,scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=yes,menubar=no,status=yes');return false;\" href=''>Find out how.</a>";
|
||||||
|
}
|
||||||
|
|
||||||
|
var morePermissionsURL = metadata.morePermissions;
|
||||||
|
var morePermissionsDomain = metadata.morePermissionsDomain;
|
||||||
|
|
||||||
|
morePermissionsURL = addQSParameter(morePermissionsURL, 'cc-referrer', document.referrer);
|
||||||
|
|
||||||
|
var more_perms = '';
|
||||||
|
|
||||||
|
if (morePermissionsURL && morePermissionsDomain) {
|
||||||
|
|
||||||
|
more_perms = "<strong>Permissions beyond</strong> the scope of this public license are available at <strong><a href='";
|
||||||
|
more_perms += morePermissionsURL;
|
||||||
|
more_perms += "'>" + morePermissionsDomain + "</a></strong>.</li>";
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if (metadata.commercialLicense && metadata.morePermissionsAgent) {
|
||||||
|
if (more_perms) more_perms += '<br/>';
|
||||||
|
|
||||||
|
more_perms += '<strong>Commerciële Rechten</strong>. ';
|
||||||
|
more_perms += 'Licenties voor commercieel gebruik zijn via';
|
||||||
|
more_perms += ' <strong><a href="' + metadata.commercialLicense + '">';
|
||||||
|
more_perms += metadata.morePermissionsAgent + '</a></strong> verkrijgbaar.';
|
||||||
|
|
||||||
|
} // commercial license
|
||||||
|
|
||||||
|
// set the more perms / commercial usage statement
|
||||||
|
if (more_perms) {
|
||||||
|
document.getElementById('more-container').innerHTML = more_perms;
|
||||||
|
document.getElementById('more-container').setAttribute("class", "license more");
|
||||||
|
}
|
||||||
|
|
||||||
|
var noncomm_ads = metadata.allowAdvertising;
|
||||||
|
if (document.getElementById('nc-more-container') && noncomm_ads) {
|
||||||
|
// this is a non-comm license
|
||||||
|
document.getElementById('nc-more-container').innerHTML = noncomm_ads;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // injectReferrerMetadata
|
||||||
|
|
||||||
|
function referrerMetadata() {
|
||||||
|
r = document.referrer;
|
||||||
|
if (r.match('^http://')) makeRequest('/apps/scrape?url='+encodeURIComponent(r));
|
||||||
|
}
|
||||||
|
|
BIN
v1.4.4/cd-template/lizenz/cc/de.png
Normal file
After Width: | Height: | Size: 156 B |
317
v1.4.4/cd-template/lizenz/cc/deed.de.html
Normal file
|
@ -0,0 +1,317 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:cc="http://creativecommons.org/ns#"><head><title>Creative Commons Namensnennung-Weitergabe unter gleichen Bedingungen 2.0 Deutschland</title>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
||||||
|
<link rel="stylesheet" type="text/css" href="deed3.css" media="screen">
|
||||||
|
|
||||||
|
<link rel="stylesheet" type="text/css" href="deed3-print.css" media="print"><!--[if lt IE 7]><link rel="stylesheet" type="text/css" href="/includes/deed3-ie.css" media="screen" /><![endif]-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="alternate" type="application/rdf+xml" href="http://creativecommons.org/licenses/by-sa/2.0/de/rdf">
|
||||||
|
|
||||||
|
<script language="javascript">
|
||||||
|
function setCookie(name, value, expires, path, domain, secure) {
|
||||||
|
document.cookie= name + "=" + escape(value) +
|
||||||
|
((expires) ? "; expires=" + expires.toGMTString() : "") +
|
||||||
|
((path) ? "; path=" + path : "") +
|
||||||
|
((domain) ? "; domain=" + domain : "") +
|
||||||
|
((secure) ? "; secure" : "");
|
||||||
|
}
|
||||||
|
var expiry = new Date();
|
||||||
|
expiry.setTime(expiry.getTime()+(5*365*24*60*60*1000));
|
||||||
|
setCookie('lang','de', expiry, '/');
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script type="text/javascript" src="ccdeed.js"></script>
|
||||||
|
<script src="urchin.js" type="text/javascript"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
urchin = new urchin();
|
||||||
|
_uacct="UA-2010376-1"; urchinTracker();
|
||||||
|
</script></head><body onload="referrerMetadata()">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
<rdf:RDF xmlns="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/de/"><permits rdf:resource="http://creativecommons.org/ns#Reproduction"/><permits rdf:resource="http://creativecommons.org/ns#Distribution"/><requires rdf:resource="http://creativecommons.org/ns#Notice"/><requires rdf:resource="http://creativecommons.org/ns#Attribution"/><permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/><requires
|
||||||
|
rdf:resource="http://creativecommons.org/ns#ShareAlike"/></License></rdf:RDF>
|
||||||
|
|
||||||
|
|
||||||
|
-->
|
||||||
|
<div id="header">
|
||||||
|
<p align="center"><a href="http://creativecommons.org/">Creative Commons</a></p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div style="width: 620px; margin-left: auto; margin-right: auto;"><div style="text-align: center;">
|
||||||
|
<span align="" dir="">Diese Seite ist in den folgenden Sprachen verfügbar:</span>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.af" title="Afrikaans" hreflang="af" rel="alternate nofollow" lang="af">Afrikaans</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.bg" title="български" hreflang="bg" rel="alternate nofollow" lang="bg">български</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.ca" title="Català" hreflang="ca" rel="alternate nofollow" lang="ca">Català</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.da" title="Dansk" hreflang="da" rel="alternate nofollow" lang="da">Dansk</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.de" title="Deutsch" hreflang="de" rel="alternate nofollow" lang="de">Deutsch</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.en" title="English" hreflang="en" rel="alternate nofollow" lang="en">English</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.en_CA" title="English (CA)" hreflang="en_CA" rel="alternate nofollow" lang="en_CA">English (CA)</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.en_GB" title="English (GB)" hreflang="en_GB" rel="alternate nofollow" lang="en_GB">English (GB)</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.en_US" title="English (US)" hreflang="en_US" rel="alternate nofollow" lang="en_US">English (US)</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.eo" title="Esperanto" hreflang="eo" rel="alternate nofollow" lang="eo">Esperanto</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.es" title="Castellano" hreflang="es" rel="alternate nofollow" lang="es">Castellano</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.es_AR" title="Spanish (AR)" hreflang="es_AR" rel="alternate nofollow" lang="es_AR">Castellano (AR)</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.es_CL" title="Spanish (CL)" hreflang="es_CL" rel="alternate nofollow" lang="es_CL">Español (CL)</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.es_MX" title="Spanish (MX)" hreflang="es_MX" rel="alternate nofollow" lang="es_MX">Castellano (MX)</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.eu" title="Euskara" hreflang="eu" rel="alternate nofollow" lang="eu">Euskara</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.fi" title="Suomeksi" hreflang="fi" rel="alternate nofollow" lang="fi">Suomeksi</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.fr" title="français" hreflang="fr" rel="alternate nofollow" lang="fr">français</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.fr_CA" title="French (CA)" hreflang="fr_CA" rel="alternate nofollow" lang="fr_CA">français (CA)</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.gl" title="Galego" hreflang="gl" rel="alternate nofollow" lang="gl">Galego</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.he" title="עברית" hreflang="he" rel="alternate nofollow" lang="he">עברית</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.hr" title="hrvatski" hreflang="hr" rel="alternate nofollow" lang="hr">hrvatski</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.hu" title="Magyar" hreflang="hu" rel="alternate nofollow" lang="hu">Magyar</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.it" title="Italiano" hreflang="it" rel="alternate nofollow" lang="it">Italiano</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.ja" title="日本語" hreflang="ja" rel="alternate nofollow" lang="ja">日本語</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.ko" title="한국어" hreflang="ko" rel="alternate nofollow" lang="ko">한국어</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.mk" title="Macedonian" hreflang="mk" rel="alternate nofollow" lang="mk">Macedonian</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.ms" title="Melayu" hreflang="ms" rel="alternate nofollow" lang="ms">Melayu</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.nl" title="Nederlands" hreflang="nl" rel="alternate nofollow" lang="nl">Nederlands</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.nso" title="Sesotho sa Leboa" hreflang="nso" rel="alternate nofollow" lang="nso">Sesotho sa Leboa</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.pl" title="polski" hreflang="pl" rel="alternate nofollow" lang="pl">polski</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.pt" title="Português" hreflang="pt" rel="alternate nofollow" lang="pt">Português</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.pt_PT" hreflang="pt_PT" rel="alternate nofollow" lang="pt_PT">Português (PT)</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.sv" title="svenska" hreflang="sv" rel="alternate nofollow" lang="sv">svenska</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.sl" title="slovenski jezik" hreflang="sl" rel="alternate nofollow" lang="sl">slovenski jezik</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.zh" title="简体中文" hreflang="zh" rel="alternate nofollow" lang="zh">简体中文</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.zh_TW" title="Chinese (Taiwan)" hreflang="zh_TW" rel="alternate nofollow" lang="zh_TW">華語 (台灣)</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="http://creativecommons.org/licenses/by-sa/2.0/de/deed.zu" title="isiZulu" hreflang="zu" rel="alternate nofollow" lang="zu">isiZulu</a>
|
||||||
|
|
||||||
|
|
||||||
|
</div></div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="deed" class="green" dir="" align="">
|
||||||
|
<div id="deed-head">
|
||||||
|
<div id="cc-logo"><img src="cc-logo.jpg" alt="cc logo"></div>
|
||||||
|
<h1><span>Creative Commons License Deed</span></h1>
|
||||||
|
<div id="deed-license">
|
||||||
|
<h2>Namensnennung-Weitergabe unter gleichen Bedingungen 2.0 Deutschland</h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="deed-main" dir="" align="">
|
||||||
|
<div id="deed-main-content">
|
||||||
|
<div id="deed-rights" dir="" align="">
|
||||||
|
<a href="http://creativecommons.org/worldwide/de/"><img src="de.png" border="0"></a>
|
||||||
|
<h3 rel="cc:permits" href="http://creativecommons.org/ns#Reproduction">Sie dürfen:</h3>
|
||||||
|
<ul>
|
||||||
|
<li class="license share" rel="cc:permits" href="http://creativecommons.org/ns#Distribution">das Werk vervielfältigen, verbreiten und öffentlich zugänglich machen</li>
|
||||||
|
<li class="license remix" rel="cc:permits" href="http://creativecommons.org/ns#DerivativeWorks">Bearbeitungen des Werkes anfertigen</li>
|
||||||
|
<span id="devnations-container">
|
||||||
|
</span></ul>
|
||||||
|
</div>
|
||||||
|
<div id="deed-conditions">
|
||||||
|
<h3>Zu den folgenden Bedingungen:</h3>
|
||||||
|
<ul align="" dir="">
|
||||||
|
<li rel="cc:requires" href="http://creativecommons.org/ns#Attribution" class="license by">
|
||||||
|
<p><strong>Namensnennung</strong>.
|
||||||
|
<span id="attribution-container">Sie
|
||||||
|
müssen den Namen des Autors/Rechteinhabers in der von ihm festgelegten
|
||||||
|
Weise nennen (wodurch aber nicht der Eindruck entstehen darf, Sie oder
|
||||||
|
die Nutzung des Werkes durch Sie würden entlohnt).</span>
|
||||||
|
|
||||||
|
<span id="by-more-container"></span></p>
|
||||||
|
</li>
|
||||||
|
<li rel="cc:requires" href="http://creativecommons.org/ns#ShareAlike" class="license sa">
|
||||||
|
<p><strong>Weitergabe unter gleichen Bedingungen</strong>.
|
||||||
|
|
||||||
|
<span>Wenn
|
||||||
|
Sie dieses Werk bearbeiten oder in anderer Weise umgestalten, verändern
|
||||||
|
oder als Grundlage für ein anderes Werk verwenden, dürfen Sie das neu
|
||||||
|
entstandene Werk nur unter Verwendung von Lizenzbedingungen
|
||||||
|
weitergeben, die mit denen dieses Lizenzvertrages identisch oder
|
||||||
|
vergleichbar sind.</span>
|
||||||
|
<span id="sa-more-container"></span></p>
|
||||||
|
</li>
|
||||||
|
<li id="more-container" class="license-hidden">
|
||||||
|
</li><li rel="cc:requires" href="http://creativecommons.org/ns#Notice">Im
|
||||||
|
Falle einer Verbreitung müssen Sie anderen die Lizenzbedingungen, unter
|
||||||
|
welche dieses Werk fällt, mitteilen. Am Einfachsten ist es, einen Link
|
||||||
|
auf diese Seite einzubinden.</li>
|
||||||
|
<li>Jede der vorgenannten Bedingungen kann aufgehoben werden, sofern Sie die Einwilligung des Rechteinhabers dazu erhalten.</li>
|
||||||
|
|
||||||
|
<li>Diese Lizenz lässt die Urheberpersönlichkeitsrechte unberührt.</li>
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<span id="referrer-metadata-container">
|
||||||
|
</span></div>
|
||||||
|
<div id="deed-foot">
|
||||||
|
|
||||||
|
<p id="disclaimer">
|
||||||
|
<a href="http://creativecommons.org/licenses/disclaimer-popup?lang=de" onclick="window.open('/licenses/disclaimer-popup?lang=de', 'characteristic_help', 'width=375,height=300,scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=yes,menubar=no,status=yes'); return false;">Haftungsausschluss</a>
|
||||||
|
<a href="http://creativecommons.org/licenses/disclaimer-popup?lang=de" onclick="window.open('/licenses/disclaimer-popup?lang=de', 'characteristic_help', 'width=375,height=300,scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=yes,menubar=no,status=yes'); return false;">
|
||||||
|
<img src="popup.gif" alt="disclaimer" border="0" height="13" width="15"></a>
|
||||||
|
</p>
|
||||||
|
<p style="margin-top: 40px;" align="center"><strong>Die gesetzlichen Schranken des Urheberrechts bleiben hiervon unberührt.</strong></p>
|
||||||
|
<p align="center">
|
||||||
|
|
||||||
|
Die Commons Deed ist eine Zusammenfassung des <a href="legalcode.html" class="fulltext">Lizenzvertrags</a> in allgemeinverständlicher Sprache.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p id="footer">
|
||||||
|
<a href="http://creativecommons.org/about/licenses">Hier können Sie erfahren, wie Sie Ihr Werk unter Verwendung dieses Lizenzvertrages verbreiten können</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</body></html>
|
140
v1.4.4/cd-template/lizenz/cc/deed3-print.css
Normal file
|
@ -0,0 +1,140 @@
|
||||||
|
/* CC Deed CSS */
|
||||||
|
/* Print */
|
||||||
|
|
||||||
|
body {
|
||||||
|
text-align: center;
|
||||||
|
font: 10pt/12pt Arial, "Trebuchet MS", Verdana, sans-serif;
|
||||||
|
background-color: #fff;
|
||||||
|
color: #000;
|
||||||
|
margin-top: 0.35in;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header, #footer {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cc-logo {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cc-logo img {
|
||||||
|
width: 0.8in;
|
||||||
|
height: 0.8in;
|
||||||
|
padding-top: 0.01in;
|
||||||
|
margin-right: 0.1in;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed {
|
||||||
|
width: 6.5in;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-head h1 {
|
||||||
|
margin-left: 0.9in;
|
||||||
|
font-size: 15pt;
|
||||||
|
padding-top: 0.02in;
|
||||||
|
padding-bottom: 0.06in;
|
||||||
|
border-bottom: 0.05in solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-main, #deed-rights, #deed-conditions, #deed-foot {
|
||||||
|
margin-top: 0.5in;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-main img {
|
||||||
|
float: right;
|
||||||
|
border: 0.01in solid #888;
|
||||||
|
margin-bottom: 0.2in;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-license {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-license h2 {
|
||||||
|
font-size: 13px;
|
||||||
|
display: inline;
|
||||||
|
padding-bottom: 0.024in;
|
||||||
|
border-bottom: 0.02in solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-foot {
|
||||||
|
font-size: 8pt;
|
||||||
|
/*border-top: 0.02in solid #888;*/
|
||||||
|
padding-top: 0.06in;
|
||||||
|
color: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
#disclaimer {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-foot p {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0.01in;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-foot a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-conditions ul {
|
||||||
|
margin-top: 0.66in;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.license {
|
||||||
|
list-style: none;
|
||||||
|
height: 50px;
|
||||||
|
width: 4.5in;
|
||||||
|
|
||||||
|
padding-bottom: 10px;
|
||||||
|
margin-bottom: 0.25in;
|
||||||
|
|
||||||
|
margin-left: 0.33in;
|
||||||
|
|
||||||
|
border: 1px solid #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.license p {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin-top: -0.25in;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.share {
|
||||||
|
list-style-image: url("images/share.png");
|
||||||
|
list-style-position: outside;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.remix {
|
||||||
|
list-style-image: url("images/remix.png");
|
||||||
|
list-style-position: outside;
|
||||||
|
}
|
||||||
|
li.devnations {
|
||||||
|
list-style-image: url("images/devnations.png");
|
||||||
|
list-style-position: outside;
|
||||||
|
}
|
||||||
|
li.by {
|
||||||
|
list-style-image: url("images/by.png");
|
||||||
|
list-style-position: outside;
|
||||||
|
}
|
||||||
|
li.nc {
|
||||||
|
list-style-image: url("images/nc.png");
|
||||||
|
list-style-position: outside;
|
||||||
|
}
|
||||||
|
li.sa {
|
||||||
|
list-style-image: url("images/sa.png");
|
||||||
|
list-style-position: outside;
|
||||||
|
}
|
||||||
|
li.nd {
|
||||||
|
list-style-image: url("images/nd.png");
|
||||||
|
list-style-position: outside;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0.25in 0.1in;
|
||||||
|
font-style: oblique;
|
||||||
|
clear: both;
|
||||||
|
}
|
253
v1.4.4/cd-template/lizenz/cc/deed3.css
Normal file
|
@ -0,0 +1,253 @@
|
||||||
|
/* CC Deed CSS! */
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #2d2d2d;
|
||||||
|
font: 12px/16px arial, verdana, sans-serif;
|
||||||
|
text-align: center;
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 1.45em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cc-logo { display: none; }
|
||||||
|
|
||||||
|
#deed-bg {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed {
|
||||||
|
background: url("images/deed-bg-head.png") 0 0 no-repeat #424242;
|
||||||
|
width: 768px;
|
||||||
|
padding: 10px 0;
|
||||||
|
color: #333;
|
||||||
|
margin: 20px auto;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-head {
|
||||||
|
width: 750px;
|
||||||
|
height: 134px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-head h1 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-head span {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.red #deed-head {
|
||||||
|
background: url("images/deed-head-red.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yellow #deed-head {
|
||||||
|
background: url("images/deed-head-yellow.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.green #deed-head {
|
||||||
|
background: url("images/deed-head-green.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-main {
|
||||||
|
background-color: #fff;
|
||||||
|
|
||||||
|
/* "!important" box-model hack for IE */
|
||||||
|
width: 750px !important;
|
||||||
|
/*width: 780px;*/
|
||||||
|
|
||||||
|
padding: 20px 0;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: left;
|
||||||
|
|
||||||
|
border-bottom: 1px solid #505050;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-main-content {
|
||||||
|
margin: 0 15px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-license {
|
||||||
|
text-align:center;
|
||||||
|
margin-top: 0px;
|
||||||
|
margin-bottom: 50px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
#deed-license h2 {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 1.46em;
|
||||||
|
padding-top: 100px;
|
||||||
|
}
|
||||||
|
#deed-main img {
|
||||||
|
float: right;
|
||||||
|
border: 1px solid #888;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-rights {
|
||||||
|
background: url("images/freedoms-header.png") 0 0 no-repeat;
|
||||||
|
padding: 0 10px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-conditions {
|
||||||
|
background: url("images/limitations-header.png") 0 0 no-repeat;
|
||||||
|
padding: 0 10px;
|
||||||
|
margin-bottom: 33px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-conditions ul {
|
||||||
|
margin-top: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-conditions div.fineprint {
|
||||||
|
padding: 15px;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
color: #111;
|
||||||
|
font-size: 0.92em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-newer {
|
||||||
|
border: 1px solid #e0adad;
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
padding: 15px;
|
||||||
|
margin-top: 25px;
|
||||||
|
}
|
||||||
|
#deed-newer a, #deed-main a {
|
||||||
|
color: #111;
|
||||||
|
text-decoration:underline;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed-foot {
|
||||||
|
width: 750px;
|
||||||
|
padding: 10px 0;
|
||||||
|
padding-bottom: 20px;
|
||||||
|
margin: 0 auto;
|
||||||
|
color: #fff;
|
||||||
|
text-align: left;
|
||||||
|
border-top: 1px solid #555;
|
||||||
|
}
|
||||||
|
#deed-foot p {
|
||||||
|
margin: 0 20px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #fffc09;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.red #deed-foot {
|
||||||
|
background: url("images/deed-foot-red.png") 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yellow #deed-foot {
|
||||||
|
background: url("images/deed-foot-yellow.png") 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.green #deed-foot {
|
||||||
|
background: url("images/deed-foot-green.png") 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#disclaimer {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
li strong {
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
li.license {
|
||||||
|
list-style: none;
|
||||||
|
padding-bottom: 25px;
|
||||||
|
padding-left: 70px;
|
||||||
|
padding-top: 10px;
|
||||||
|
width: 420px;
|
||||||
|
}
|
||||||
|
li.license p {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
li.license-hidden {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.free {
|
||||||
|
background: url("http://mirrors.creativecommons.org/tmp/freedomdefined-50x50.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
li.share {
|
||||||
|
background: url("images/share.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.remix {
|
||||||
|
background: url("images/remix.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.devnations {
|
||||||
|
background: url("images/devnations.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.no-endorse{
|
||||||
|
background: url("images/no-endorse.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
li.by {
|
||||||
|
background: url("images/by.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
li.nc {
|
||||||
|
background: url("images/nc.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
li.nc-jp {
|
||||||
|
background: url("images/nc-jp.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
li.nc-eu {
|
||||||
|
background: url("images/nc-eu.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
li.sa {
|
||||||
|
background: url("images/sa.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
li.nd {
|
||||||
|
background: url("images/nd.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
li.sampling, li.samplingplus{
|
||||||
|
background: url("images/sampling.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
li.more {
|
||||||
|
background: url("images/more.png") 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
li a {
|
||||||
|
color: #0000ff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
#referrer-metadata {
|
||||||
|
padding: 20px;
|
||||||
|
border-style: dotted;
|
||||||
|
}
|
||||||
|
#referrer-metadata a {
|
||||||
|
color: #0000FF;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
padding: 8px;
|
||||||
|
background-color: #eee;
|
||||||
|
margin: 15px 0;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
padding-top: 10px;
|
||||||
|
margin-top: 1.75em;
|
||||||
|
margin-bottom: 0.7em;
|
||||||
|
}
|
54
v1.4.4/cd-template/lizenz/cc/deeds.css
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
body {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
font-family: verdana, arial, helvetica, sans-serif;
|
||||||
|
color: black;
|
||||||
|
background-color: white;
|
||||||
|
text-align: center;
|
||||||
|
font-size:11px;
|
||||||
|
/* part 1 of 2 centering hack */
|
||||||
|
}
|
||||||
|
|
||||||
|
#deed {
|
||||||
|
width: 620px;
|
||||||
|
padding: 15px;
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-left: auto;
|
||||||
|
/* opera does not like 'margin:20px auto' */
|
||||||
|
background: #ffc;
|
||||||
|
border: 3px groove #333;
|
||||||
|
text-align:left;
|
||||||
|
/* part 2 of 2 centering hack */
|
||||||
|
width: 620px; /* ie5win fudge begins */
|
||||||
|
voice-family: "\"}\"";
|
||||||
|
voice-family:inherit;
|
||||||
|
width: 584px;
|
||||||
|
}
|
||||||
|
|
||||||
|
html>body #content {
|
||||||
|
width: 584px; /* ie5win fudge ends */
|
||||||
|
}
|
||||||
|
|
||||||
|
.fineprint {
|
||||||
|
border:1px solid black;
|
||||||
|
padding:8px;
|
||||||
|
background:#ffffff;
|
||||||
|
text-align:justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text, li {
|
||||||
|
font-family:verdana, sans-serif;
|
||||||
|
font-size:11px;
|
||||||
|
margin-left:20px;
|
||||||
|
margin-right:20px;
|
||||||
|
line-height:140%;
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tiny {
|
||||||
|
font-family:verdana, sans-serif;
|
||||||
|
font-size:11px;
|
||||||
|
margin-bottom:10px;
|
||||||
|
}
|
BIN
v1.4.4/cd-template/lizenz/cc/images/by.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/deed-bg-head.png
Normal file
After Width: | Height: | Size: 400 B |
BIN
v1.4.4/cd-template/lizenz/cc/images/deed-foot-green.png
Normal file
After Width: | Height: | Size: 707 B |
BIN
v1.4.4/cd-template/lizenz/cc/images/deed-foot-red.png
Normal file
After Width: | Height: | Size: 728 B |
BIN
v1.4.4/cd-template/lizenz/cc/images/deed-foot-yellow.png
Normal file
After Width: | Height: | Size: 725 B |
BIN
v1.4.4/cd-template/lizenz/cc/images/deed-head-green.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/deed-head-red.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/deed-head-yellow.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/devnations.png
Normal file
After Width: | Height: | Size: 735 B |
BIN
v1.4.4/cd-template/lizenz/cc/images/freedoms-header.png
Normal file
After Width: | Height: | Size: 452 B |
BIN
v1.4.4/cd-template/lizenz/cc/images/limitations-header.png
Normal file
After Width: | Height: | Size: 420 B |
BIN
v1.4.4/cd-template/lizenz/cc/images/more.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/nc-eu.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/nc-jp.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/nc.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/nd.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/no-endorse.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/remix.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/sa.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/sampling.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/images/share.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
284
v1.4.4/cd-template/lizenz/cc/legalcode.html
Normal file
|
@ -0,0 +1,284 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||||
|
<html><head>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta http-equiv="content-type" content="text/html;charset=utf-8"><title>Creative Commons Legal Code</title>
|
||||||
|
|
||||||
|
<link href="deeds.css" type="text/css" rel="stylesheet" media="all">
|
||||||
|
<style type="text/css">
|
||||||
|
li {
|
||||||
|
margin-bottom:12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style></head><body>
|
||||||
|
<p align="center"><a href="http://creativecommons.org/">Creative Commons</a></p>
|
||||||
|
<div id="deed">
|
||||||
|
<div align="center">
|
||||||
|
<img src="logo_code.gif" alt="Creative Commons Legal Code" border="0" height="79" vspace="14" width="280"></div>
|
||||||
|
<p align="center"><strong>Namensnennung — Weitergabe unter gleichen Bedingungen 2.0</strong></p>
|
||||||
|
<div class="text">
|
||||||
|
<div class="fineprint" style="background: transparent none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">
|
||||||
|
<p>CREATIVE
|
||||||
|
COMMONS IST KEINE RECHTSANWALTSGESELLSCHAFT UND LEISTET KEINE
|
||||||
|
RECHTSBERATUNG. DIE WEITERGABE DIESES LIZENZENTWURFES FÜHRT ZU KEINEM
|
||||||
|
MANDATSVERHÄLTNIS. CREATIVE COMMONS ERBRINGT DIESE INFORMATIONEN OHNE
|
||||||
|
GEWÄHR. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE
|
||||||
|
GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE
|
||||||
|
SICH AUS IHREM GEBRAUCH ERGEBEN.</p>
|
||||||
|
</div>
|
||||||
|
<p><em>Lizenzvertrag</em></p>
|
||||||
|
<p>DAS
|
||||||
|
URHEBERRECHTLICH GESCHÜTZTE WERK ODER DER SONSTIGE SCHUTZGEGENSTAND
|
||||||
|
(WIE UNTEN BESCHRIEBEN) WIRD UNTER DEN BEDINGUNGEN DIESER CREATIVE
|
||||||
|
COMMONS PUBLIC LICENSE („CCPL“ ODER „LIZENZVERTRAG“) ZUR VERFÜGUNG
|
||||||
|
GESTELLT. DER SCHUTZGEGENSTAND IST DURCH DAS URHEBERRECHT UND/ODER
|
||||||
|
EINSCHLÄGIGE GESETZE GESCHÜTZT.</p>
|
||||||
|
<p> DURCH DIE AUSÜBUNG EINES
|
||||||
|
DURCH DIESEN LIZENZVERTRAG GEWÄHRTEN RECHTS AN DEM SCHUTZGEGENSTAND
|
||||||
|
ERKLÄREN SIE SICH MIT DEN LIZENZBEDINGUNGEN RECHTSVERBINDLICH
|
||||||
|
EINVERSTANDEN. DER LIZENZGEBER RÄUMT IHNEN DIE HIER BESCHRIEBENEN
|
||||||
|
RECHTE UNTER DER VORAUSSETZUNGEIN, DASS SIE SICH MIT DIESEN
|
||||||
|
VERTRAGSBEDINGUNGEN EINVERSTANDEN ERKLÄREN.</p>
|
||||||
|
<p><strong>1. Definitionen</strong></p>
|
||||||
|
<ol type="a">
|
||||||
|
<li>Unter einer <strong>„Bearbeitung“ </strong>wird
|
||||||
|
eine Übersetzung oder andere Bearbeitung des Werkes verstanden, die
|
||||||
|
Ihre persönliche geistige Schöpfung ist. Eine freie Benutzung des
|
||||||
|
Werkes wird nicht als Bearbeitung angesehen.</li>
|
||||||
|
<li>Unter den <strong>„Lizenzelementen“ </strong>werden
|
||||||
|
die folgenden Lizenzcharakteristika verstanden, die vom Lizenzgeber
|
||||||
|
ausgewählt und in der Bezeichnung der Lizenz genannt
|
||||||
|
werden: „Namensnennung“, „Nicht-kommerziell“, „Weitergabe unter
|
||||||
|
gleichen Bedingungen“.</li>
|
||||||
|
<li>Unter dem <strong>„Lizenzgeber“ </strong>wird die natürliche oder juristische Person verstanden, die den Schutzgegenstand unter den Bedingungen dieser Lizenz anbietet.</li>
|
||||||
|
<li>Unter einem<strong> „Sammelwerk“ </strong>wird
|
||||||
|
eine Sammlung von Werken, Daten oder anderen unabhängigen Elementen
|
||||||
|
verstanden, die aufgrund der Auswahl oder Anordnung der Elemente eine
|
||||||
|
persönliche geistige Schöpfung ist. Darunter fallen auch solche
|
||||||
|
Sammelwerke, deren Elemente systematisch oder methodisch angeordnet und
|
||||||
|
einzeln mit Hilfe elektronischer Mittel oder auf andere Weise
|
||||||
|
zugänglich sind (Datenbankwerke). Ein Sammelwerk wird im Zusammenhang
|
||||||
|
mit dieser Lizenz nicht als Bearbeitung (wie oben beschrieben)
|
||||||
|
angesehen.</li>
|
||||||
|
<li>Mit <strong>„SIE“ </strong>und <strong>„Ihnen“ </strong>ist
|
||||||
|
die natürliche oder juristische Person gemeint, die die durch diese
|
||||||
|
Lizenz gewährten Nutzungsrechte ausübt und die zuvor die Bedingungen
|
||||||
|
dieser Lizenz im Hinblick auf das Werk nicht verletzt hat, oder die die
|
||||||
|
ausdrückliche Erlaubnis des Lizenzgebers erhalten hat, die durch diese
|
||||||
|
Lizenz gewährten Nutzungsrechte trotz einer vorherigen Verletzung
|
||||||
|
auszuüben.</li>
|
||||||
|
<li>Unter dem <strong>„Schutzgegenstand“</strong>wird
|
||||||
|
das Werk oder Sammelwerk oder das Schutzobjekt eines verwandten
|
||||||
|
Schutzrechts, das Ihnen unter den Bedingungen dieser Lizenz angeboten
|
||||||
|
wird, verstanden</li>
|
||||||
|
<li>Unter dem <strong>„Urheber“</strong> wird die natürliche Person verstanden, die das Werk geschaffen hat.</li>
|
||||||
|
<li>Unter einem <strong>„</strong><strong>verwandten Schutzrecht</strong><strong>“</strong><strong> </strong>wird
|
||||||
|
das Recht an einem anderen urheberrechtlichen Schutzgegenstand als
|
||||||
|
einem Werk verstanden, zum Beispiel einer wissenschaftlichen Ausgabe,
|
||||||
|
einem nachgelassenen Werk, einem Lichtbild, einer Datenbank, einem
|
||||||
|
Tonträger, einer Funksendung, einem Laufbild oder einer Darbietung
|
||||||
|
eines ausübenden Künstlers.</li>
|
||||||
|
<li>Unter dem <strong>„Werk“ </strong>wird eine persönliche geistige Schöpfung verstanden, die Ihnen unter den Bedingungen dieser Lizenz angeboten wird.</li></ol>
|
||||||
|
<p><strong>2. Schranken des Urheberrechts. </strong>Diese
|
||||||
|
Lizenz lässt sämtliche Befugnisse unberührt, die sich aus den Schranken
|
||||||
|
des Urheberrechts,aus dem Erschöpfungsgrundsatz oder anderen
|
||||||
|
Beschränkungen der Ausschließlichkeitsrechte des Rechtsinhabers ergeben.</p>
|
||||||
|
<p><strong>3. Lizenzierung. </strong>Unter
|
||||||
|
den Bedingungen dieses Lizenzvertrages räumt Ihnen der Lizenzgeber ein
|
||||||
|
lizenzgebührenfreies, räumlich und zeitlich (für die Dauer des
|
||||||
|
Urheberrechts oder verwandten Schutzrechts) unbeschränktes einfaches
|
||||||
|
Nutzungsrecht ein, den Schutzgegenstand in der folgenden Art und Weise
|
||||||
|
zu nutzen:</p>
|
||||||
|
<ol type="a">
|
||||||
|
<li>den Schutzgegenstand in körperlicher Form zu verwerten, insbesondere zu vervielfältigen, zu verbreiten und auszustellen;</li>
|
||||||
|
<li>den
|
||||||
|
Schutzgegenstand in unkörperlicher Form öffentlich wiederzugeben,
|
||||||
|
insbesondere vorzutragen, aufzuführen und vorzuführen, öffentlich
|
||||||
|
zugänglich zu machen, zu senden, durch Bild- und Tonträger
|
||||||
|
wiederzugeben sowie Funksendungen und öffentliche Zugänglichmachungen
|
||||||
|
wiederzugeben;</li>
|
||||||
|
<li>den Schutzgegenstand auf Bild- oder Tonträger
|
||||||
|
aufzunehmen, Lichtbilder davon herzustellen, weiterzusenden und in dem
|
||||||
|
in a. und b. genannten Umfang zu verwerten;</li>
|
||||||
|
<li>den
|
||||||
|
Schutzgegenstand zu bearbeiten oder in anderer Weise umzugestalten und
|
||||||
|
die Bearbeitungen zu veröffentlichen und in dem in a. bis c. genannten
|
||||||
|
Umfang zu verwerten;</li></ol>
|
||||||
|
<p>Die genannten Nutzungsrechte können
|
||||||
|
für alle bekannten Nutzungsarten ausgeübt werden. Die genannten
|
||||||
|
Nutzungsrechte beinhalten das Recht, solche Veränderungen an dem Werk
|
||||||
|
vorzunehmen, die technisch erforderlich sind, um die Nutzungsrechte für
|
||||||
|
alle Nutzungsarten wahrzunehmen. Insbesondere sind davon die Anpassung
|
||||||
|
an andere Medien und auf andere Dateiformate umfasst.</p>
|
||||||
|
<p><strong>4. Beschränkungen. </strong>Die Einräumung der Nutzungsrechte gemäß Ziffer 3 erfolgt ausdrücklich nur unter den folgenden Bedingungen:</p>
|
||||||
|
<ol type="a">
|
||||||
|
<li>Sie
|
||||||
|
dürfen den Schutzgegenstand ausschließlich unter den Bedingungen dieser
|
||||||
|
Lizenz vervielfältigen, verbreiten oder öffentlich wiedergeben, und Sie
|
||||||
|
müssen stets eine Kopie oder die vollständige Internetadresse in Form
|
||||||
|
des Uniform-Resource-Identifier (URI) dieser Lizenz beifügen, wenn Sie
|
||||||
|
den Schutzgegenstandvervielfältigen, verbreiten oder öffentlich
|
||||||
|
wiedergeben. Sie dürfen keine Vertragsbedingungen anbieten oder
|
||||||
|
fordern, die die Bedingungen dieser Lizenz oder die durch sie gewährten
|
||||||
|
Rechte ändern oder beschränken. Sie dürfen den Schutzgegenstand nicht
|
||||||
|
unterlizenzieren. Sie müssen alle Hinweise unverändert lassen, die auf
|
||||||
|
diese Lizenz und den Haftungsausschluss hinweisen. Sie dürfen den
|
||||||
|
Schutzgegenstand mit keinen technischen Schutzmaßnahmen versehen, die
|
||||||
|
den Zugang oder den Gebrauch des Schutzgegenstandes in einer Weise
|
||||||
|
kontrollieren, die mit den Bedingungen dieser Lizenz im Widerspruch
|
||||||
|
stehen. Die genannten Beschränkungen gelten auch für den Fall, dass der
|
||||||
|
Schutzgegenstand einen Bestandteil eines Sammelwerkes bildet; sie
|
||||||
|
verlangen aber nicht, dass das Sammelwerk insgesamt zum Gegenstand
|
||||||
|
dieser Lizenz gemacht wird. Wenn Sie ein Sammelwerk erstellen, müssen
|
||||||
|
Sie - soweit dies praktikabel ist - auf die Mitteilung eines
|
||||||
|
Lizenzgebers oder Urhebers hin aus dem Sammelwerk jeglichen Hinweis auf
|
||||||
|
diesen Lizenzgeber oder diesen Urheber entfernen. Wenn Sie den
|
||||||
|
Schutzgegenstand bearbeiten, müssen Sie - soweit dies praktikabel ist-
|
||||||
|
auf die Aufforderung eines Rechtsinhabers hin von der Bearbeitung
|
||||||
|
jeglichen Hinweis auf diesen Rechtsinhaber entfernen.</li>
|
||||||
|
<li>Sie
|
||||||
|
dürfen eine Bearbeitung ausschließlich unter den Bedingungen dieser
|
||||||
|
Lizenz, einer späteren Version dieser Lizenz mit denselben
|
||||||
|
Lizenzelementen wie diese Lizenz oder einer Creative Commons iCommons
|
||||||
|
Lizenz, die dieselben Lizenzelemente wie diese Lizenz enthält (z.B.
|
||||||
|
Namensnennung - Nicht-kommerziell - Weitergabe unter gleichen
|
||||||
|
Bedingungen 2.0 Japan), vervielfältigen, verbreiten oder öffentlich
|
||||||
|
wiedergeben. Sie müssen stets eine Kopie oder die Internetadresse in
|
||||||
|
Form des Uniform-Resource-Identifier (URI) dieser Lizenz oder einer
|
||||||
|
anderen Lizenz der im vorhergehenden Satz beschriebenen Art
|
||||||
|
beifügen, wenn Sie die Bearbeitung vervielfältigen, verbreiten oder
|
||||||
|
öffentlich wiedergeben. Sie dürfen keine Vertragsbedingungen anbieten
|
||||||
|
oder fordern, die die Bedingungen dieser Lizenz oder die durch sie
|
||||||
|
gewährten Rechte ändern oder beschränken, und Sie müssen alle Hinweise
|
||||||
|
unverändert lassen, die auf diese Lizenz und den Haftungsausschluss
|
||||||
|
hinweisen. Sie dürfen eine Bearbeitung nicht mit technischen
|
||||||
|
Schutzmaßnahmen versehen, die den Zugang oder den Gebrauch der
|
||||||
|
Bearbeitung in einer Weise kontrollieren, die mit den Bedingungen
|
||||||
|
dieser Lizenz im Widerspruch stehen. Die genannten Beschränkungen
|
||||||
|
gelten auch für eine Bearbeitung als Bestandteil eines Sammelwerkes;
|
||||||
|
sie erfordern aber nicht, dass das Sammelwerk insgesamt zum Gegenstand
|
||||||
|
dieser Lizenz gemacht wird.</li>
|
||||||
|
<li>Wenn Sie den Schutzgegenstand
|
||||||
|
oder eine Bearbeitung oder ein Sammelwerk vervielfältigen, verbreiten
|
||||||
|
oder öffentlich wiedergeben, müssen Sie alle Urhebervermerke für den
|
||||||
|
Schutzgegenstand unverändert lassen und die Urheberschaft oder
|
||||||
|
Rechtsinhaberschaft in einer der von Ihnen vorgenommenen Nutzung
|
||||||
|
angemessenen Form anerkennen, indem Sie den Namen (oder das Pseudonym,
|
||||||
|
falls ein solches verwendet wird) des Urhebers oder Rechteinhabers
|
||||||
|
nennen, wenn dieser angegeben ist. Dies gilt auch für den Titel des
|
||||||
|
Schutzgegenstandes, wenn dieser angeben ist, sowie - in einem
|
||||||
|
vernünftigerweise durchführbaren Umfang - für die mit dem
|
||||||
|
Schutzgegenstand zu verbindende Internetadresse in Form des
|
||||||
|
Uniform-Resource-Identifier (URI), wie sie der Lizenzgeber angegeben
|
||||||
|
hat, sofern dies geschehen ist, es sei denn, diese Internetadresse
|
||||||
|
verweist nicht auf den Urhebervermerk oder die Lizenzinformationen zu
|
||||||
|
dem Schutzgegenstand. Bei einer Bearbeitung ist ein Hinweis
|
||||||
|
darauf aufzuführen, in welcher Form der Schutzgegenstand in die
|
||||||
|
Bearbeitung eingegangen ist (z.B. „Französische Übersetzung des ...
|
||||||
|
(Werk) durch ... (Urheber)“ oder „Das Drehbuch beruht auf dem Werk des
|
||||||
|
... (Urheber)“). Ein solcher Hinweis kann in jeder angemessenen Weise
|
||||||
|
erfolgen, wobei jedoch bei einer Bearbeitung, einer Datenbank oder
|
||||||
|
einem Sammelwerk der Hinweis zumindest an gleicher Stelle und in ebenso
|
||||||
|
auffälliger Weise zu erfolgen hat wie vergleichbare Hinweise auf andere
|
||||||
|
Rechtsinhaber.</li>
|
||||||
|
<li>Obwohl die gemäss Ziffer 3 gewährten Nutzungsrechte in umfassender Weise<br>
|
||||||
|
ausgeübt werden dürfen, findet diese Erlaubnis ihre gesetzliche Grenze in<br>
|
||||||
|
den Persönlichkeitsrechten der Urheber und ausübenden Künstler, deren
|
||||||
|
berechtigte geistige und persönliche Interessen bzw. deren Ansehen oder
|
||||||
|
Ruf nicht dadurch gefährdet werden dürfen, dass ein Schutzgegenstand
|
||||||
|
über das gesetzlich zulässige Maß hinaus beeinträchtigt wird. </li></ol>
|
||||||
|
<p><strong>5. Gewährleistung.</strong>
|
||||||
|
Sofern dies von den Vertragsparteien nicht anderweitig schriftlich
|
||||||
|
vereinbart,, bietet der Lizenzgeber keine Gewährleistung für die
|
||||||
|
erteilten Rechte, außer für den Fall, dass Mängel arglistig
|
||||||
|
verschwiegen wurden. Für Mängel anderer Art, insbesondere bei der
|
||||||
|
mangelhaften Lieferung von Verkörperungen des Schutzgegenstandes,
|
||||||
|
richtet sich die Gewährleistung nach der Regelung, die die Person, die
|
||||||
|
Ihnen den Schutzgegenstand zur Verfügung stellt, mit Ihnen außerhalb
|
||||||
|
dieser Lizenz vereinbart, oder - wenn eine solche Regelung nicht
|
||||||
|
getroffen wurde - nach den gesetzlichen Vorschriften.</p>
|
||||||
|
<p><strong>6. Haftung. </strong>Über die in Ziffer 5 genannte Gewährleistung hinaus haftet Ihnen der Lizenzgeber nur für Vorsatz und grobe Fahrlässigkeit.</p>
|
||||||
|
<p><strong>7. Vertragsende</strong></p>
|
||||||
|
<ol type="a">
|
||||||
|
<li>Dieser
|
||||||
|
Lizenzvertrag und die durch ihn eingeräumten Nutzungsrechte enden
|
||||||
|
automatisch bei jeder Verletzung der Vertragsbedingungen durch Sie. Für
|
||||||
|
natürliche und juristische Personen, die von Ihnen eine Bearbeitung,
|
||||||
|
eine Datenbank oder ein Sammelwerk unter diesen Lizenzbedingungen
|
||||||
|
erhalten haben, gilt die Lizenz jedoch weiter, vorausgesetzt, diese
|
||||||
|
natürlichen oder juristischen Personen erfüllen sämtliche
|
||||||
|
Vertragsbedingungen. Die Ziffern 1, 2, 5, 6, 7 und 8 gelten bei einer
|
||||||
|
Vertragsbeendigung fort.</li>
|
||||||
|
<li>Unter den oben genannten
|
||||||
|
Bedingungen erfolgt die Lizenz auf unbegrenzte Zeit (für die
|
||||||
|
Dauer des Schutzrechts). Dennoch behält sich der Lizenzgeber das Recht
|
||||||
|
vor, den Schutzgegenstand unter anderen Lizenzbedingungen zu nutzen
|
||||||
|
oder die eigene Weitergabe des Schutzgegenstandes jederzeit zu beenden,
|
||||||
|
vorausgesetzt, dass solche Handlungen nicht dem Widerruf dieser Lizenz
|
||||||
|
dienen (oder jeder anderen Lizenzierung, die auf Grundlage dieser
|
||||||
|
Lizenz erfolgt ist oder erfolgen muss) und diese Lizenz wirksam bleibt,
|
||||||
|
bis Sie unter den oben genannten Voraussetzungen endet.</li></ol>
|
||||||
|
<p><strong>8. Schlussbestimmungen</strong></p>
|
||||||
|
<ol type="a">
|
||||||
|
<li>Jedes
|
||||||
|
Mal, wenn Sie den Schutzgegenstand vervielfältigen, verbreiten oder
|
||||||
|
öffentlich wiedergeben, bietet der Lizenzgeber dem Erwerber eine Lizenz
|
||||||
|
für den Schutzgegenstand unter denselben Vertragsbedingungen an, unter
|
||||||
|
denen er Ihnen die Lizenz eingeräumt hat.</li>
|
||||||
|
<li>Jedes Mal, wenn
|
||||||
|
Sie eine Bearbeitung vervielfältigen, verbreiten oder öffentlich
|
||||||
|
wiedergeben, bietet der Lizenzgeber dem Erwerber eine Lizenz für den
|
||||||
|
ursprünglichen Schutzgegenstand unter denselben Vertragsbedingungen an,
|
||||||
|
unter denen er Ihnen die Lizenz eingeräumt hat.</li>
|
||||||
|
<li>Sollte eine
|
||||||
|
Bestimmung dieses Lizenzvertrages unwirksam sein, so wird die
|
||||||
|
Wirksamkeit der übrigen Lizenzbestimmungen dadurch nicht berührt, und
|
||||||
|
an die Stelle der unwirksamen Bestimmung tritt eine Ersatzregelung, die
|
||||||
|
dem mit der unwirksamen Bestimmung angestrebten Zweck am nächsten kommt.</li>
|
||||||
|
<li>Nichts
|
||||||
|
soll dahingehend ausgelegt werden, dass auf eine Bestimmung dieses
|
||||||
|
Lizenzvertrages verzichtet oder einer Vertragsverletzung zugestimmt
|
||||||
|
wird, so lange ein solcher Verzicht oder eine solche Zustimmung nicht
|
||||||
|
schriftlich vorliegen und von der verzichtenden oder zustimmenden
|
||||||
|
Vertragspartei unterschrieben sind</li>
|
||||||
|
<li>Dieser Lizenzvertrag
|
||||||
|
stellt die vollständige Vereinbarung zwischen den Vertragsparteien
|
||||||
|
hinsichtlich des Schutzgegenstandes dar. Es gibt keine weiteren
|
||||||
|
ergänzenden Vereinbarungen oder mündlichen Abreden im Hinblick auf den
|
||||||
|
Schutzgegenstand. Der Lizenzgeber ist an keine zusätzlichen Abreden
|
||||||
|
gebunden, die aus irgendeiner Absprache mit Ihnen entstehen könnten.
|
||||||
|
Der Lizenzvertrag kann nicht ohne eine übereinstimmende schriftliche
|
||||||
|
Vereinbarung zwischen dem Lizenzgeber und Ihnen abgeändert werden.</li>
|
||||||
|
<li>Auf diesen Lizenzvertrag findet das Recht der Bundesrepublik Deutschland Anwendung.</li></ol>
|
||||||
|
<!-- BREAKOUT FOR CC NOTICE. NOT A PART OF THE LICENSE -->
|
||||||
|
<div class="fineprint">
|
||||||
|
<p>CREATIVE
|
||||||
|
COMMONS IST KEINE VERTRAGSPARTEI DIESES LIZENZVERTRAGES UND ÜBERNIMMT
|
||||||
|
KEINERLEI GEWÄHRLEISTUNG FÜR DAS WERK. CREATIVE COMMONS IST IHNEN ODER
|
||||||
|
DRITTEN GEGENÜBER NICHT HAFTBAR FÜR SCHÄDEN JEDWEDER ART. UNGEACHTET
|
||||||
|
DER VORSTEHENDEN ZWEI (2) SÄTZE HAT CREATIVE COMMONS ALL RECHTE UND
|
||||||
|
PFLICHTEN EINES LIZENSGEBERS, WENN SICH CREATIVE COMMONS AUSDRÜCKLICH
|
||||||
|
ALS LIZENZGEBER BEZEICHNET.</p>
|
||||||
|
|
||||||
|
<p>AUSSER FÜR DEN
|
||||||
|
BESCHRÄNKTEN ZWECK EINES HINWEISES AN DIE ÖFFENTLICHKEIT, DASS DAS WERK
|
||||||
|
UNTER DER CCPL LIZENSIERT WIRD, DARF KENIE VERTRAGSPARTEI DIE MARKE
|
||||||
|
“CREATIVE COMMONS” ODER EINE ÄHNLICHE MARKE ODER DAS LOGO VON CREATIVE
|
||||||
|
COMMONS OHNE VORHERIGE GENEHMIGUNG VON CREATIVE COMMONS NUTZEN. JEDE
|
||||||
|
GESTATTETE NUTZUNG HAT IN ÜBREEINSTIMMUNG MIT DEN JEWEILS GÜLTIGEN
|
||||||
|
NUTZUNGSBEDINGUNGEN FÜR MARKEN VON CREATIVE COMMONS ZU ERFOLGEN, WIE
|
||||||
|
SIE AUF DER WEBSITE ODER IN ANDERER WEISE AUF ANFRAGE VON ZEIT ZU ZEIT
|
||||||
|
ZUGÄNGLICH GEMACHT WERDEN.</p>
|
||||||
|
<p>
|
||||||
|
CREATIVE COMMONS KANN UNTER <a href="http://creativecommons.org/">http://creativecommons.org</a> KONTAKTIERT WERDEN.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- END CC NOTICE -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="margin-bottom: 10px;" align="right"><a href="deed.de.html" class="fulltext">« Zurück zu Commons Deed</a></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body></html>
|
BIN
v1.4.4/cd-template/lizenz/cc/logo_code.gif
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
v1.4.4/cd-template/lizenz/cc/popup.gif
Normal file
After Width: | Height: | Size: 74 B |
624
v1.4.4/cd-template/lizenz/cc/urchin.js
Normal file
|
@ -0,0 +1,624 @@
|
||||||
|
//-- Google Analytics Urchin Module
|
||||||
|
//-- Copyright 2007 Google, All Rights Reserved.
|
||||||
|
|
||||||
|
//-- Urchin On Demand Settings ONLY
|
||||||
|
var _uacct=""; // set up the Urchin Account
|
||||||
|
var _userv=1; // service mode (0=local,1=remote,2=both)
|
||||||
|
|
||||||
|
//-- UTM User Settings
|
||||||
|
var _ufsc=1; // set client info flag (1=on|0=off)
|
||||||
|
var _udn="auto"; // (auto|none|domain) set the domain name for cookies
|
||||||
|
var _uhash="on"; // (on|off) unique domain hash for cookies
|
||||||
|
var _utimeout="1800"; // set the inactive session timeout in seconds
|
||||||
|
var _ugifpath="/__utm.gif"; // set the web path to the __utm.gif file
|
||||||
|
var _utsp="|"; // transaction field separator
|
||||||
|
var _uflash=1; // set flash version detect option (1=on|0=off)
|
||||||
|
var _utitle=1; // set the document title detect option (1=on|0=off)
|
||||||
|
var _ulink=0; // enable linker functionality (1=on|0=off)
|
||||||
|
var _uanchor=0; // enable use of anchors for campaign (1=on|0=off)
|
||||||
|
var _utcp="/"; // the cookie path for tracking
|
||||||
|
var _usample=100; // The sampling % of visitors to track (1-100).
|
||||||
|
|
||||||
|
//-- UTM Campaign Tracking Settings
|
||||||
|
var _uctm=1; // set campaign tracking module (1=on|0=off)
|
||||||
|
var _ucto="15768000"; // set timeout in seconds (6 month default)
|
||||||
|
var _uccn="utm_campaign"; // name
|
||||||
|
var _ucmd="utm_medium"; // medium (cpc|cpm|link|email|organic)
|
||||||
|
var _ucsr="utm_source"; // source
|
||||||
|
var _uctr="utm_term"; // term/keyword
|
||||||
|
var _ucct="utm_content"; // content
|
||||||
|
var _ucid="utm_id"; // id number
|
||||||
|
var _ucno="utm_nooverride"; // don't override
|
||||||
|
|
||||||
|
//-- Auto/Organic Sources and Keywords
|
||||||
|
var _uOsr=new Array();
|
||||||
|
var _uOkw=new Array();
|
||||||
|
_uOsr[0]="google"; _uOkw[0]="q";
|
||||||
|
_uOsr[1]="yahoo"; _uOkw[1]="p";
|
||||||
|
_uOsr[2]="msn"; _uOkw[2]="q";
|
||||||
|
_uOsr[3]="aol"; _uOkw[3]="query";
|
||||||
|
_uOsr[4]="aol"; _uOkw[4]="encquery";
|
||||||
|
_uOsr[5]="lycos"; _uOkw[5]="query";
|
||||||
|
_uOsr[6]="ask"; _uOkw[6]="q";
|
||||||
|
_uOsr[7]="altavista"; _uOkw[7]="q";
|
||||||
|
_uOsr[8]="netscape"; _uOkw[8]="s";
|
||||||
|
_uOsr[9]="cnn"; _uOkw[9]="query";
|
||||||
|
_uOsr[10]="looksmart"; _uOkw[10]="qt";
|
||||||
|
_uOsr[11]="about"; _uOkw[11]="terms";
|
||||||
|
_uOsr[12]="mamma"; _uOkw[12]="query";
|
||||||
|
_uOsr[13]="alltheweb"; _uOkw[13]="q";
|
||||||
|
_uOsr[14]="gigablast"; _uOkw[14]="q";
|
||||||
|
_uOsr[15]="voila"; _uOkw[15]="rdata";
|
||||||
|
_uOsr[16]="virgilio"; _uOkw[16]="qs";
|
||||||
|
_uOsr[17]="live"; _uOkw[17]="q";
|
||||||
|
_uOsr[18]="baidu"; _uOkw[18]="wd";
|
||||||
|
_uOsr[19]="alice"; _uOkw[19]="qs";
|
||||||
|
_uOsr[20]="seznam"; _uOkw[20]="w";
|
||||||
|
_uOsr[21]="yandex"; _uOkw[21]="text";
|
||||||
|
_uOsr[22]="najdi"; _uOkw[22]="q";
|
||||||
|
_uOsr[23]="aol"; _uOkw[23]="q";
|
||||||
|
_uOsr[24]="club-internet"; _uOkw[24]="q";
|
||||||
|
_uOsr[25]="mama"; _uOkw[25]="query";
|
||||||
|
_uOsr[26]="seznam"; _uOkw[26]="q";
|
||||||
|
_uOsr[27]="search"; _uOkw[27]="q";
|
||||||
|
|
||||||
|
//-- Auto/Organic Keywords to Ignore
|
||||||
|
var _uOno=new Array();
|
||||||
|
//_uOno[0]="urchin";
|
||||||
|
//_uOno[1]="urchin.com";
|
||||||
|
//_uOno[2]="www.urchin.com";
|
||||||
|
|
||||||
|
//-- Referral domains to Ignore
|
||||||
|
var _uRno=new Array();
|
||||||
|
//_uRno[0]=".urchin.com";
|
||||||
|
|
||||||
|
//-- **** Don't modify below this point ***
|
||||||
|
var _uff,_udh,_udt,_ubl=0,_udo="",_uu,_ufns=0,_uns=0,_ur="-",_ufno=0,_ust=0,_ubd=document,_udl=_ubd.location,_udlh="",_uwv="1";
|
||||||
|
var _ugifpath2="http://www.google-analytics.com/__utm.gif";
|
||||||
|
if (_udl.hash) _udlh=_udl.href.substring(_udl.href.indexOf('#'));
|
||||||
|
if (_udl.protocol=="https:") _ugifpath2="https://ssl.google-analytics.com/__utm.gif";
|
||||||
|
if (!_utcp || _utcp=="") _utcp="/";
|
||||||
|
function urchinTracker(page) {
|
||||||
|
if (_udl.protocol=="file:") return;
|
||||||
|
if (_uff && (!page || page=="")) return;
|
||||||
|
var a,b,c,xx,v,z,k,x="",s="",f=0;
|
||||||
|
var nx=" expires=Sun, 18 Jan 2038 00:00:00 GMT;";
|
||||||
|
var dc=_ubd.cookie;
|
||||||
|
_udh=_uDomain();
|
||||||
|
if (!_uVG()) return;
|
||||||
|
_uu=Math.round(Math.random()*2147483647);
|
||||||
|
_udt=new Date();
|
||||||
|
_ust=Math.round(_udt.getTime()/1000);
|
||||||
|
a=dc.indexOf("__utma="+_udh);
|
||||||
|
b=dc.indexOf("__utmb="+_udh);
|
||||||
|
c=dc.indexOf("__utmc="+_udh);
|
||||||
|
if (_udn && _udn!="") { _udo=" domain="+_udn+";"; }
|
||||||
|
if (_utimeout && _utimeout!="") {
|
||||||
|
x=new Date(_udt.getTime()+(_utimeout*1000));
|
||||||
|
x=" expires="+x.toGMTString()+";";
|
||||||
|
}
|
||||||
|
if (_ulink) {
|
||||||
|
if (_uanchor && _udlh && _udlh!="") s=_udlh+"&";
|
||||||
|
s+=_udl.search;
|
||||||
|
if(s && s!="" && s.indexOf("__utma=")>=0) {
|
||||||
|
if (!(_uIN(a=_uGC(s,"__utma=","&")))) a="-";
|
||||||
|
if (!(_uIN(b=_uGC(s,"__utmb=","&")))) b="-";
|
||||||
|
if (!(_uIN(c=_uGC(s,"__utmc=","&")))) c="-";
|
||||||
|
v=_uGC(s,"__utmv=","&");
|
||||||
|
z=_uGC(s,"__utmz=","&");
|
||||||
|
k=_uGC(s,"__utmk=","&");
|
||||||
|
xx=_uGC(s,"__utmx=","&");
|
||||||
|
if ((k*1) != ((_uHash(a+b+c+xx+z+v)*1)+(_udh*1))) {_ubl=1;a="-";b="-";c="-";xx="-";z="-";v="-";}
|
||||||
|
if (a!="-" && b!="-" && c!="-") f=1;
|
||||||
|
else if(a!="-") f=2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(f==1) {
|
||||||
|
_ubd.cookie="__utma="+a+"; path="+_utcp+";"+nx+_udo;
|
||||||
|
_ubd.cookie="__utmb="+b+"; path="+_utcp+";"+x+_udo;
|
||||||
|
_ubd.cookie="__utmc="+c+"; path="+_utcp+";"+_udo;
|
||||||
|
} else if (f==2) {
|
||||||
|
a=_uFixA(s,"&",_ust);
|
||||||
|
_ubd.cookie="__utma="+a+"; path="+_utcp+";"+nx+_udo;
|
||||||
|
_ubd.cookie="__utmb="+_udh+"; path="+_utcp+";"+x+_udo;
|
||||||
|
_ubd.cookie="__utmc="+_udh+"; path="+_utcp+";"+_udo;
|
||||||
|
_ufns=1;
|
||||||
|
} else if (a>=0 && b>=0 && c>=0) {
|
||||||
|
_ubd.cookie="__utmb="+_udh+"; path="+_utcp+";"+x+_udo;
|
||||||
|
} else {
|
||||||
|
if (a>=0) a=_uFixA(_ubd.cookie,";",_ust);
|
||||||
|
else a=_udh+"."+_uu+"."+_ust+"."+_ust+"."+_ust+".1";
|
||||||
|
_ubd.cookie="__utma="+a+"; path="+_utcp+";"+nx+_udo;
|
||||||
|
_ubd.cookie="__utmb="+_udh+"; path="+_utcp+";"+x+_udo;
|
||||||
|
_ubd.cookie="__utmc="+_udh+"; path="+_utcp+";"+_udo;
|
||||||
|
_ufns=1;
|
||||||
|
}
|
||||||
|
if (_ulink && xx && xx!="" && xx!="-") {
|
||||||
|
xx=_uUES(xx);
|
||||||
|
if (xx.indexOf(";")==-1) _ubd.cookie="__utmx="+xx+"; path="+_utcp+";"+nx+_udo;
|
||||||
|
}
|
||||||
|
if (_ulink && v && v!="" && v!="-") {
|
||||||
|
v=_uUES(v);
|
||||||
|
if (v.indexOf(";")==-1) _ubd.cookie="__utmv="+v+"; path="+_utcp+";"+nx+_udo;
|
||||||
|
}
|
||||||
|
_uInfo(page);
|
||||||
|
_ufns=0;
|
||||||
|
_ufno=0;
|
||||||
|
if (!page || page=="") _uff=1;
|
||||||
|
}
|
||||||
|
function _uInfo(page) {
|
||||||
|
var p,s="",dm="",pg=_udl.pathname+_udl.search;
|
||||||
|
if (page && page!="") pg=_uES(page,1);
|
||||||
|
_ur=_ubd.referrer;
|
||||||
|
if (!_ur || _ur=="") { _ur="-"; }
|
||||||
|
else {
|
||||||
|
dm=_ubd.domain;
|
||||||
|
if(_utcp && _utcp!="/") dm+=_utcp;
|
||||||
|
p=_ur.indexOf(dm);
|
||||||
|
if ((p>=0) && (p<=8)) { _ur="0"; }
|
||||||
|
if (_ur.indexOf("[")==0 && _ur.lastIndexOf("]")==(_ur.length-1)) { _ur="-"; }
|
||||||
|
}
|
||||||
|
s+="&utmn="+_uu;
|
||||||
|
if (_ufsc) s+=_uBInfo();
|
||||||
|
if (_uctm) s+=_uCInfo();
|
||||||
|
if (_utitle && _ubd.title && _ubd.title!="") s+="&utmdt="+_uES(_ubd.title);
|
||||||
|
if (_udl.hostname && _udl.hostname!="") s+="&utmhn="+_uES(_udl.hostname);
|
||||||
|
s+="&utmr="+_ur;
|
||||||
|
s+="&utmp="+pg;
|
||||||
|
if ((_userv==0 || _userv==2) && _uSP()) {
|
||||||
|
var i=new Image(1,1);
|
||||||
|
i.src=_ugifpath+"?"+"utmwv="+_uwv+s;
|
||||||
|
i.onload=function() {_uVoid();}
|
||||||
|
}
|
||||||
|
if ((_userv==1 || _userv==2) && _uSP()) {
|
||||||
|
var i2=new Image(1,1);
|
||||||
|
i2.src=_ugifpath2+"?"+"utmwv="+_uwv+s+"&utmac="+_uacct+"&utmcc="+_uGCS();
|
||||||
|
i2.onload=function() { _uVoid(); }
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
function _uVoid() { return; }
|
||||||
|
function _uCInfo() {
|
||||||
|
if (!_ucto || _ucto=="") { _ucto="15768000"; }
|
||||||
|
if (!_uVG()) return;
|
||||||
|
var c="",t="-",t2="-",t3="-",o=0,cs=0,cn=0,i=0,z="-",s="";
|
||||||
|
if (_uanchor && _udlh && _udlh!="") s=_udlh+"&";
|
||||||
|
s+=_udl.search;
|
||||||
|
var x=new Date(_udt.getTime()+(_ucto*1000));
|
||||||
|
var dc=_ubd.cookie;
|
||||||
|
x=" expires="+x.toGMTString()+";";
|
||||||
|
if (_ulink && !_ubl) {
|
||||||
|
z=_uUES(_uGC(s,"__utmz=","&"));
|
||||||
|
if (z!="-" && z.indexOf(";")==-1) { _ubd.cookie="__utmz="+z+"; path="+_utcp+";"+x+_udo; return ""; }
|
||||||
|
}
|
||||||
|
z=dc.indexOf("__utmz="+_udh);
|
||||||
|
if (z>-1) { z=_uGC(dc,"__utmz="+_udh,";"); }
|
||||||
|
else { z="-"; }
|
||||||
|
t=_uGC(s,_ucid+"=","&");
|
||||||
|
t2=_uGC(s,_ucsr+"=","&");
|
||||||
|
t3=_uGC(s,"gclid=","&");
|
||||||
|
if ((t!="-" && t!="") || (t2!="-" && t2!="") || (t3!="-" && t3!="")) {
|
||||||
|
if (t!="-" && t!="") c+="utmcid="+_uEC(t);
|
||||||
|
if (t2!="-" && t2!="") { if (c != "") c+="|"; c+="utmcsr="+_uEC(t2); }
|
||||||
|
if (t3!="-" && t3!="") { if (c != "") c+="|"; c+="utmgclid="+_uEC(t3); }
|
||||||
|
t=_uGC(s,_uccn+"=","&");
|
||||||
|
if (t!="-" && t!="") c+="|utmccn="+_uEC(t);
|
||||||
|
else c+="|utmccn=(not+set)";
|
||||||
|
t=_uGC(s,_ucmd+"=","&");
|
||||||
|
if (t!="-" && t!="") c+="|utmcmd="+_uEC(t);
|
||||||
|
else c+="|utmcmd=(not+set)";
|
||||||
|
t=_uGC(s,_uctr+"=","&");
|
||||||
|
if (t!="-" && t!="") c+="|utmctr="+_uEC(t);
|
||||||
|
else { t=_uOrg(1); if (t!="-" && t!="") c+="|utmctr="+_uEC(t); }
|
||||||
|
t=_uGC(s,_ucct+"=","&");
|
||||||
|
if (t!="-" && t!="") c+="|utmcct="+_uEC(t);
|
||||||
|
t=_uGC(s,_ucno+"=","&");
|
||||||
|
if (t=="1") o=1;
|
||||||
|
if (z!="-" && o==1) return "";
|
||||||
|
}
|
||||||
|
if (c=="-" || c=="") { c=_uOrg(); if (z!="-" && _ufno==1) return ""; }
|
||||||
|
if (c=="-" || c=="") { if (_ufns==1) c=_uRef(); if (z!="-" && _ufno==1) return ""; }
|
||||||
|
if (c=="-" || c=="") {
|
||||||
|
if (z=="-" && _ufns==1) { c="utmccn=(direct)|utmcsr=(direct)|utmcmd=(none)"; }
|
||||||
|
if (c=="-" || c=="") return "";
|
||||||
|
}
|
||||||
|
if (z!="-") {
|
||||||
|
i=z.indexOf(".");
|
||||||
|
if (i>-1) i=z.indexOf(".",i+1);
|
||||||
|
if (i>-1) i=z.indexOf(".",i+1);
|
||||||
|
if (i>-1) i=z.indexOf(".",i+1);
|
||||||
|
t=z.substring(i+1,z.length);
|
||||||
|
if (t.toLowerCase()==c.toLowerCase()) cs=1;
|
||||||
|
t=z.substring(0,i);
|
||||||
|
if ((i=t.lastIndexOf(".")) > -1) {
|
||||||
|
t=t.substring(i+1,t.length);
|
||||||
|
cn=(t*1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (cs==0 || _ufns==1) {
|
||||||
|
t=_uGC(dc,"__utma="+_udh,";");
|
||||||
|
if ((i=t.lastIndexOf(".")) > 9) {
|
||||||
|
_uns=t.substring(i+1,t.length);
|
||||||
|
_uns=(_uns*1);
|
||||||
|
}
|
||||||
|
cn++;
|
||||||
|
if (_uns==0) _uns=1;
|
||||||
|
_ubd.cookie="__utmz="+_udh+"."+_ust+"."+_uns+"."+cn+"."+c+"; path="+_utcp+"; "+x+_udo;
|
||||||
|
}
|
||||||
|
if (cs==0 || _ufns==1) return "&utmcn=1";
|
||||||
|
else return "&utmcr=1";
|
||||||
|
}
|
||||||
|
function _uRef() {
|
||||||
|
if (_ur=="0" || _ur=="" || _ur=="-") return "";
|
||||||
|
var i=0,h,k,n;
|
||||||
|
if ((i=_ur.indexOf("://"))<0) return "";
|
||||||
|
h=_ur.substring(i+3,_ur.length);
|
||||||
|
if (h.indexOf("/") > -1) {
|
||||||
|
k=h.substring(h.indexOf("/"),h.length);
|
||||||
|
if (k.indexOf("?") > -1) k=k.substring(0,k.indexOf("?"));
|
||||||
|
h=h.substring(0,h.indexOf("/"));
|
||||||
|
}
|
||||||
|
h=h.toLowerCase();
|
||||||
|
n=h;
|
||||||
|
if ((i=n.indexOf(":")) > -1) n=n.substring(0,i);
|
||||||
|
for (var ii=0;ii<_uRno.length;ii++) {
|
||||||
|
if ((i=n.indexOf(_uRno[ii].toLowerCase())) > -1 && n.length==(i+_uRno[ii].length)) { _ufno=1; break; }
|
||||||
|
}
|
||||||
|
if (h.indexOf("www.")==0) h=h.substring(4,h.length);
|
||||||
|
return "utmccn=(referral)|utmcsr="+_uEC(h)+"|"+"utmcct="+_uEC(k)+"|utmcmd=referral";
|
||||||
|
}
|
||||||
|
function _uOrg(t) {
|
||||||
|
if (_ur=="0" || _ur=="" || _ur=="-") return "";
|
||||||
|
var i=0,h,k;
|
||||||
|
if ((i=_ur.indexOf("://")) < 0) return "";
|
||||||
|
h=_ur.substring(i+3,_ur.length);
|
||||||
|
if (h.indexOf("/") > -1) {
|
||||||
|
h=h.substring(0,h.indexOf("/"));
|
||||||
|
}
|
||||||
|
for (var ii=0;ii<_uOsr.length;ii++) {
|
||||||
|
if (h.toLowerCase().indexOf(_uOsr[ii].toLowerCase()) > -1) {
|
||||||
|
if ((i=_ur.indexOf("?"+_uOkw[ii]+"=")) > -1 || (i=_ur.indexOf("&"+_uOkw[ii]+"=")) > -1) {
|
||||||
|
k=_ur.substring(i+_uOkw[ii].length+2,_ur.length);
|
||||||
|
if ((i=k.indexOf("&")) > -1) k=k.substring(0,i);
|
||||||
|
for (var yy=0;yy<_uOno.length;yy++) {
|
||||||
|
if (_uOno[yy].toLowerCase()==k.toLowerCase()) { _ufno=1; break; }
|
||||||
|
}
|
||||||
|
if (t) return _uEC(k);
|
||||||
|
else return "utmccn=(organic)|utmcsr="+_uEC(_uOsr[ii])+"|"+"utmctr="+_uEC(k)+"|utmcmd=organic";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
function _uBInfo() {
|
||||||
|
var sr="-",sc="-",ul="-",fl="-",cs="-",je=1;
|
||||||
|
var n=navigator;
|
||||||
|
if (self.screen) {
|
||||||
|
sr=screen.width+"x"+screen.height;
|
||||||
|
sc=screen.colorDepth+"-bit";
|
||||||
|
} else if (self.java) {
|
||||||
|
var j=java.awt.Toolkit.getDefaultToolkit();
|
||||||
|
var s=j.getScreenSize();
|
||||||
|
sr=s.width+"x"+s.height;
|
||||||
|
}
|
||||||
|
if (n.language) { ul=n.language.toLowerCase(); }
|
||||||
|
else if (n.browserLanguage) { ul=n.browserLanguage.toLowerCase(); }
|
||||||
|
je=n.javaEnabled()?1:0;
|
||||||
|
if (_uflash) fl=_uFlash();
|
||||||
|
if (_ubd.characterSet) cs=_uES(_ubd.characterSet);
|
||||||
|
else if (_ubd.charset) cs=_uES(_ubd.charset);
|
||||||
|
return "&utmcs="+cs+"&utmsr="+sr+"&utmsc="+sc+"&utmul="+ul+"&utmje="+je+"&utmfl="+fl;
|
||||||
|
}
|
||||||
|
function __utmSetTrans() {
|
||||||
|
var e;
|
||||||
|
if (_ubd.getElementById) e=_ubd.getElementById("utmtrans");
|
||||||
|
else if (_ubd.utmform && _ubd.utmform.utmtrans) e=_ubd.utmform.utmtrans;
|
||||||
|
if (!e) return;
|
||||||
|
var l=e.value.split("UTM:");
|
||||||
|
var i,i2,c;
|
||||||
|
if (_userv==0 || _userv==2) i=new Array();
|
||||||
|
if (_userv==1 || _userv==2) { i2=new Array(); c=_uGCS(); }
|
||||||
|
|
||||||
|
for (var ii=0;ii<l.length;ii++) {
|
||||||
|
l[ii]=_uTrim(l[ii]);
|
||||||
|
if (l[ii].charAt(0)!='T' && l[ii].charAt(0)!='I') continue;
|
||||||
|
var r=Math.round(Math.random()*2147483647);
|
||||||
|
if (!_utsp || _utsp=="") _utsp="|";
|
||||||
|
var f=l[ii].split(_utsp),s="";
|
||||||
|
if (f[0].charAt(0)=='T') {
|
||||||
|
s="&utmt=tran"+"&utmn="+r;
|
||||||
|
f[1]=_uTrim(f[1]); if(f[1]&&f[1]!="") s+="&utmtid="+_uES(f[1]);
|
||||||
|
f[2]=_uTrim(f[2]); if(f[2]&&f[2]!="") s+="&utmtst="+_uES(f[2]);
|
||||||
|
f[3]=_uTrim(f[3]); if(f[3]&&f[3]!="") s+="&utmtto="+_uES(f[3]);
|
||||||
|
f[4]=_uTrim(f[4]); if(f[4]&&f[4]!="") s+="&utmttx="+_uES(f[4]);
|
||||||
|
f[5]=_uTrim(f[5]); if(f[5]&&f[5]!="") s+="&utmtsp="+_uES(f[5]);
|
||||||
|
f[6]=_uTrim(f[6]); if(f[6]&&f[6]!="") s+="&utmtci="+_uES(f[6]);
|
||||||
|
f[7]=_uTrim(f[7]); if(f[7]&&f[7]!="") s+="&utmtrg="+_uES(f[7]);
|
||||||
|
f[8]=_uTrim(f[8]); if(f[8]&&f[8]!="") s+="&utmtco="+_uES(f[8]);
|
||||||
|
} else {
|
||||||
|
s="&utmt=item"+"&utmn="+r;
|
||||||
|
f[1]=_uTrim(f[1]); if(f[1]&&f[1]!="") s+="&utmtid="+_uES(f[1]);
|
||||||
|
f[2]=_uTrim(f[2]); if(f[2]&&f[2]!="") s+="&utmipc="+_uES(f[2]);
|
||||||
|
f[3]=_uTrim(f[3]); if(f[3]&&f[3]!="") s+="&utmipn="+_uES(f[3]);
|
||||||
|
f[4]=_uTrim(f[4]); if(f[4]&&f[4]!="") s+="&utmiva="+_uES(f[4]);
|
||||||
|
f[5]=_uTrim(f[5]); if(f[5]&&f[5]!="") s+="&utmipr="+_uES(f[5]);
|
||||||
|
f[6]=_uTrim(f[6]); if(f[6]&&f[6]!="") s+="&utmiqt="+_uES(f[6]);
|
||||||
|
}
|
||||||
|
if ((_userv==0 || _userv==2) && _uSP()) {
|
||||||
|
i[ii]=new Image(1,1);
|
||||||
|
i[ii].src=_ugifpath+"?"+"utmwv="+_uwv+s;
|
||||||
|
i[ii].onload=function() { _uVoid(); }
|
||||||
|
}
|
||||||
|
if ((_userv==1 || _userv==2) && _uSP()) {
|
||||||
|
i2[ii]=new Image(1,1);
|
||||||
|
i2[ii].src=_ugifpath2+"?"+"utmwv="+_uwv+s+"&utmac="+_uacct+"&utmcc="+c;
|
||||||
|
i2[ii].onload=function() { _uVoid(); }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
function _uFlash() {
|
||||||
|
var f="-",n=navigator;
|
||||||
|
if (n.plugins && n.plugins.length) {
|
||||||
|
for (var ii=0;ii<n.plugins.length;ii++) {
|
||||||
|
if (n.plugins[ii].name.indexOf('Shockwave Flash')!=-1) {
|
||||||
|
f=n.plugins[ii].description.split('Shockwave Flash ')[1];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (window.ActiveXObject) {
|
||||||
|
for (var ii=10;ii>=2;ii--) {
|
||||||
|
try {
|
||||||
|
var fl=eval("new ActiveXObject('ShockwaveFlash.ShockwaveFlash."+ii+"');");
|
||||||
|
if (fl) { f=ii + '.0'; break; }
|
||||||
|
}
|
||||||
|
catch(e) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return f;
|
||||||
|
}
|
||||||
|
function __utmLinker(l,h) {
|
||||||
|
if (!_ulink) return;
|
||||||
|
var p,k,a="-",b="-",c="-",x="-",z="-",v="-";
|
||||||
|
var dc=_ubd.cookie;
|
||||||
|
if (!l || l=="") return;
|
||||||
|
var iq = l.indexOf("?");
|
||||||
|
var ih = l.indexOf("#");
|
||||||
|
if (dc) {
|
||||||
|
a=_uES(_uGC(dc,"__utma="+_udh,";"));
|
||||||
|
b=_uES(_uGC(dc,"__utmb="+_udh,";"));
|
||||||
|
c=_uES(_uGC(dc,"__utmc="+_udh,";"));
|
||||||
|
x=_uES(_uGC(dc,"__utmx="+_udh,";"));
|
||||||
|
z=_uES(_uGC(dc,"__utmz="+_udh,";"));
|
||||||
|
v=_uES(_uGC(dc,"__utmv="+_udh,";"));
|
||||||
|
k=(_uHash(a+b+c+x+z+v)*1)+(_udh*1);
|
||||||
|
p="__utma="+a+"&__utmb="+b+"&__utmc="+c+"&__utmx="+x+"&__utmz="+z+"&__utmv="+v+"&__utmk="+k;
|
||||||
|
}
|
||||||
|
if (p) {
|
||||||
|
if (h && ih>-1) return;
|
||||||
|
if (h) { _udl.href=l+"#"+p; }
|
||||||
|
else {
|
||||||
|
if (iq==-1 && ih==-1) _udl.href=l+"?"+p;
|
||||||
|
else if (ih==-1) _udl.href=l+"&"+p;
|
||||||
|
else if (iq==-1) _udl.href=l.substring(0,ih-1)+"?"+p+l.substring(ih);
|
||||||
|
else _udl.href=l.substring(0,ih-1)+"&"+p+l.substring(ih);
|
||||||
|
}
|
||||||
|
} else { _udl.href=l; }
|
||||||
|
}
|
||||||
|
function __utmLinkPost(f,h) {
|
||||||
|
if (!_ulink) return;
|
||||||
|
var p,k,a="-",b="-",c="-",x="-",z="-",v="-";
|
||||||
|
var dc=_ubd.cookie;
|
||||||
|
if (!f || !f.action) return;
|
||||||
|
var iq = f.action.indexOf("?");
|
||||||
|
var ih = f.action.indexOf("#");
|
||||||
|
if (dc) {
|
||||||
|
a=_uES(_uGC(dc,"__utma="+_udh,";"));
|
||||||
|
b=_uES(_uGC(dc,"__utmb="+_udh,";"));
|
||||||
|
c=_uES(_uGC(dc,"__utmc="+_udh,";"));
|
||||||
|
x=_uES(_uGC(dc,"__utmx="+_udh,";"));
|
||||||
|
z=_uES(_uGC(dc,"__utmz="+_udh,";"));
|
||||||
|
v=_uES(_uGC(dc,"__utmv="+_udh,";"));
|
||||||
|
k=(_uHash(a+b+c+x+z+v)*1)+(_udh*1);
|
||||||
|
p="__utma="+a+"&__utmb="+b+"&__utmc="+c+"&__utmx="+x+"&__utmz="+z+"&__utmv="+v+"&__utmk="+k;
|
||||||
|
}
|
||||||
|
if (p) {
|
||||||
|
if (h && ih>-1) return;
|
||||||
|
if (h) { f.action+="#"+p; }
|
||||||
|
else {
|
||||||
|
if (iq==-1 && ih==-1) f.action+="?"+p;
|
||||||
|
else if (ih==-1) f.action+="&"+p;
|
||||||
|
else if (iq==-1) f.action=f.action.substring(0,ih-1)+"?"+p+f.action.substring(ih);
|
||||||
|
else f.action=f.action.substring(0,ih-1)+"&"+p+f.action.substring(ih);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
function __utmSetVar(v) {
|
||||||
|
if (!v || v=="") return;
|
||||||
|
if (!_udo || _udo == "") {
|
||||||
|
_udh=_uDomain();
|
||||||
|
if (_udn && _udn!="") { _udo=" domain="+_udn+";"; }
|
||||||
|
}
|
||||||
|
if (!_uVG()) return;
|
||||||
|
var r=Math.round(Math.random() * 2147483647);
|
||||||
|
_ubd.cookie="__utmv="+_udh+"."+_uES(v)+"; path="+_utcp+"; expires=Sun, 18 Jan 2038 00:00:00 GMT;"+_udo;
|
||||||
|
var s="&utmt=var&utmn="+r;
|
||||||
|
if ((_userv==0 || _userv==2) && _uSP()) {
|
||||||
|
var i=new Image(1,1);
|
||||||
|
i.src=_ugifpath+"?"+"utmwv="+_uwv+s;
|
||||||
|
i.onload=function() { _uVoid(); }
|
||||||
|
}
|
||||||
|
if ((_userv==1 || _userv==2) && _uSP()) {
|
||||||
|
var i2=new Image(1,1);
|
||||||
|
i2.src=_ugifpath2+"?"+"utmwv="+_uwv+s+"&utmac="+_uacct+"&utmcc="+_uGCS();
|
||||||
|
i2.onload=function() { _uVoid(); }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function _uGCS() {
|
||||||
|
var t,c="",dc=_ubd.cookie;
|
||||||
|
if ((t=_uGC(dc,"__utma="+_udh,";"))!="-") c+=_uES("__utma="+t+";+");
|
||||||
|
if ((t=_uGC(dc,"__utmb="+_udh,";"))!="-") c+=_uES("__utmb="+t+";+");
|
||||||
|
if ((t=_uGC(dc,"__utmc="+_udh,";"))!="-") c+=_uES("__utmc="+t+";+");
|
||||||
|
if ((t=_uGC(dc,"__utmx="+_udh,";"))!="-") c+=_uES("__utmx="+t+";+");
|
||||||
|
if ((t=_uGC(dc,"__utmz="+_udh,";"))!="-") c+=_uES("__utmz="+t+";+");
|
||||||
|
if ((t=_uGC(dc,"__utmv="+_udh,";"))!="-") c+=_uES("__utmv="+t+";");
|
||||||
|
if (c.charAt(c.length-1)=="+") c=c.substring(0,c.length-1);
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
function _uGC(l,n,s) {
|
||||||
|
if (!l || l=="" || !n || n=="" || !s || s=="") return "-";
|
||||||
|
var i,i2,i3,c="-";
|
||||||
|
i=l.indexOf(n);
|
||||||
|
i3=n.indexOf("=")+1;
|
||||||
|
if (i > -1) {
|
||||||
|
i2=l.indexOf(s,i); if (i2 < 0) { i2=l.length; }
|
||||||
|
c=l.substring((i+i3),i2);
|
||||||
|
}
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
function _uDomain() {
|
||||||
|
if (!_udn || _udn=="" || _udn=="none") { _udn=""; return 1; }
|
||||||
|
if (_udn=="auto") {
|
||||||
|
var d=_ubd.domain;
|
||||||
|
if (d.substring(0,4)=="www.") {
|
||||||
|
d=d.substring(4,d.length);
|
||||||
|
}
|
||||||
|
_udn=d;
|
||||||
|
}
|
||||||
|
if (_uhash=="off") return 1;
|
||||||
|
return _uHash(_udn);
|
||||||
|
}
|
||||||
|
function _uHash(d) {
|
||||||
|
if (!d || d=="") return 1;
|
||||||
|
var h=0,g=0;
|
||||||
|
for (var i=d.length-1;i>=0;i--) {
|
||||||
|
var c=parseInt(d.charCodeAt(i));
|
||||||
|
h=((h << 6) & 0xfffffff) + c + (c << 14);
|
||||||
|
if ((g=h & 0xfe00000)!=0) h=(h ^ (g >> 21));
|
||||||
|
}
|
||||||
|
return h;
|
||||||
|
}
|
||||||
|
function _uFixA(c,s,t) {
|
||||||
|
if (!c || c=="" || !s || s=="" || !t || t=="") return "-";
|
||||||
|
var a=_uGC(c,"__utma="+_udh,s);
|
||||||
|
var lt=0,i=0;
|
||||||
|
if ((i=a.lastIndexOf(".")) > 9) {
|
||||||
|
_uns=a.substring(i+1,a.length);
|
||||||
|
_uns=(_uns*1)+1;
|
||||||
|
a=a.substring(0,i);
|
||||||
|
if ((i=a.lastIndexOf(".")) > 7) {
|
||||||
|
lt=a.substring(i+1,a.length);
|
||||||
|
a=a.substring(0,i);
|
||||||
|
}
|
||||||
|
if ((i=a.lastIndexOf(".")) > 5) {
|
||||||
|
a=a.substring(0,i);
|
||||||
|
}
|
||||||
|
a+="."+lt+"."+t+"."+_uns;
|
||||||
|
}
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
function _uTrim(s) {
|
||||||
|
if (!s || s=="") return "";
|
||||||
|
while ((s.charAt(0)==' ') || (s.charAt(0)=='\n') || (s.charAt(0,1)=='\r')) s=s.substring(1,s.length);
|
||||||
|
while ((s.charAt(s.length-1)==' ') || (s.charAt(s.length-1)=='\n') || (s.charAt(s.length-1)=='\r')) s=s.substring(0,s.length-1);
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
function _uEC(s) {
|
||||||
|
var n="";
|
||||||
|
if (!s || s=="") return "";
|
||||||
|
for (var i=0;i<s.length;i++) {if (s.charAt(i)==" ") n+="+"; else n+=s.charAt(i);}
|
||||||
|
return n;
|
||||||
|
}
|
||||||
|
function __utmVisitorCode(f) {
|
||||||
|
var r=0,t=0,i=0,i2=0,m=31;
|
||||||
|
var a=_uGC(_ubd.cookie,"__utma="+_udh,";");
|
||||||
|
if ((i=a.indexOf(".",0))<0) return;
|
||||||
|
if ((i2=a.indexOf(".",i+1))>0) r=a.substring(i+1,i2); else return "";
|
||||||
|
if ((i=a.indexOf(".",i2+1))>0) t=a.substring(i2+1,i); else return "";
|
||||||
|
if (f) {
|
||||||
|
return r;
|
||||||
|
} else {
|
||||||
|
var c=new Array('A','B','C','D','E','F','G','H','J','K','L','M','N','P','R','S','T','U','V','W','X','Y','Z','1','2','3','4','5','6','7','8','9');
|
||||||
|
return c[r>>28&m]+c[r>>23&m]+c[r>>18&m]+c[r>>13&m]+"-"+c[r>>8&m]+c[r>>3&m]+c[((r&7)<<2)+(t>>30&3)]+c[t>>25&m]+c[t>>20&m]+"-"+c[t>>15&m]+c[t>>10&m]+c[t>>5&m]+c[t&m];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function _uIN(n) {
|
||||||
|
if (!n) return false;
|
||||||
|
for (var i=0;i<n.length;i++) {
|
||||||
|
var c=n.charAt(i);
|
||||||
|
if ((c<"0" || c>"9") && (c!=".")) return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
function _uES(s,u) {
|
||||||
|
if (typeof(encodeURIComponent) == 'function') {
|
||||||
|
if (u) return encodeURI(s);
|
||||||
|
else return encodeURIComponent(s);
|
||||||
|
} else {
|
||||||
|
return escape(s);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function _uUES(s) {
|
||||||
|
if (typeof(decodeURIComponent) == 'function') {
|
||||||
|
return decodeURIComponent(s);
|
||||||
|
} else {
|
||||||
|
return unescape(s);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function _uVG() {
|
||||||
|
if((_udn.indexOf("www.google.") == 0 || _udn.indexOf(".google.") == 0 || _udn.indexOf("google.") == 0) && _utcp=='/') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
function _uSP() {
|
||||||
|
var s=100;
|
||||||
|
if (_usample) s=_usample;
|
||||||
|
if(s>=100 || s<=0) return true;
|
||||||
|
return ((__utmVisitorCode(1)%10000)<(s*100));
|
||||||
|
}
|
||||||
|
function urchinPathCopy(p){
|
||||||
|
var d=document,nx,tx,sx,i,c,cs,t,h,o;
|
||||||
|
cs=new Array("a","b","c","v","x","z");
|
||||||
|
h=_uDomain(); if (_udn && _udn!="") o=" domain="+_udn+";";
|
||||||
|
nx="Sun, 18 Jan 2038 00:00:00 GMT;";
|
||||||
|
tx=new Date(); tx.setTime(tx.getTime()+(_utimeout*1000));
|
||||||
|
tx=tx.toGMTString()+";";
|
||||||
|
sx=new Date(); sx.setTime(sx.getTime()+(_ucto*1000));
|
||||||
|
sx=sx.toGMTString()+";";
|
||||||
|
for (i=0;i<6;i++){
|
||||||
|
t=" expires=";
|
||||||
|
if (i==1) t+=tx; else if (i==2) t=""; else if (i==5) t+=sx; else t+=nx;
|
||||||
|
c=_uGC(d.cookie,"__utm"+cs[i]+"="+h,";");
|
||||||
|
if (c!="-") d.cookie="__utm"+cs[i]+"="+c+"; path="+p+";"+t+o;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function _uCO() {
|
||||||
|
if (!_utk || _utk=="" || _utk.length<10) return;
|
||||||
|
var d='www.google.com';
|
||||||
|
if (_utk.charAt(0)=='!') d='analytics.corp.google.com';
|
||||||
|
_ubd.cookie="GASO="+_utk+"; path="+_utcp+";"+_udo;
|
||||||
|
var sc=document.createElement('script');
|
||||||
|
sc.type='text/javascript';
|
||||||
|
sc.id="_gasojs";
|
||||||
|
sc.src='https://'+d+'/analytics/reporting/overlay_js?gaso='+_utk+'&'+Math.random();
|
||||||
|
document.getElementsByTagName('head')[0].appendChild(sc);
|
||||||
|
}
|
||||||
|
function _uGT() {
|
||||||
|
var h=location.hash, a;
|
||||||
|
if (h && h!="" && h.indexOf("#gaso=")==0) {
|
||||||
|
a=_uGC(h,"gaso=","&");
|
||||||
|
} else {
|
||||||
|
a=_uGC(_ubd.cookie,"GASO=",";");
|
||||||
|
}
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
var _utk=_uGT();
|
||||||
|
if (_utk && _utk!="" && _utk.length>10) {
|
||||||
|
if (window.addEventListener) {
|
||||||
|
window.addEventListener('load', _uCO, false);
|
||||||
|
} else if (window.attachEvent) {
|
||||||
|
window.attachEvent('onload', _uCO);
|
||||||
|
}
|
||||||
|
}
|
6925
v1.4.4/cd-template/misc/tor_apt.asc
Normal file
121
v1.4.4/cd-template/news.txt
Normal file
|
@ -0,0 +1,121 @@
|
||||||
|
CryptoCD 1.4.4
|
||||||
|
* Aktuelle Firefox-Version (Mac, Windows)
|
||||||
|
* Aktuelle Thunderbird-Version (Windows)
|
||||||
|
* Aktuelle Enigmail-Version (Linux, Windows)
|
||||||
|
* Aktuelle Vidalia-Version (Windows)
|
||||||
|
* Aktuelle Pidgin-Version (Windows)
|
||||||
|
* kleine Korrekturen
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Sa, 05 Jan 02008 13:46
|
||||||
|
|
||||||
|
CryptoCD 1.4.3
|
||||||
|
* Aktuelle Firefox-Version (Mac, Windows)
|
||||||
|
* Aktuelle Thunderbird-Version (Mac, Windows)
|
||||||
|
* Aktuelle Enigmail-Version (Windows)
|
||||||
|
* Aktuelle Vidalia-Verion (Mac, Windows)
|
||||||
|
* Aktuelle Pidgin-Version (Windows)
|
||||||
|
* Neue Creative Commons Lizenz
|
||||||
|
* Kleine Verbesserungen
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> So, 30 Sep 02007 11:34
|
||||||
|
|
||||||
|
CryptoCD 1.4.2
|
||||||
|
* Aktuelle Firefox-Version (Mac, Windows)
|
||||||
|
* Aktuelle Enigmail-Version (Linux, Mac, Windows)
|
||||||
|
* Aktuelle Thunderbird-Version (Mac, Windows)
|
||||||
|
* Aktuelle Vidalia-Version (Mac, Windows)
|
||||||
|
* Neues CD-Cover
|
||||||
|
* Kleine Ergaenzungen
|
||||||
|
- IMAP wird bei der Kontoeinrichtung empfohlen
|
||||||
|
- Neue Vidalia-Screenshots
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Di, 31 Jul 02007 21:53
|
||||||
|
|
||||||
|
CryptoCD 1.4.1
|
||||||
|
* Aktuelle Firefox-Version (Mac, Windows)
|
||||||
|
* Aktuelle Enigmail-Version (Windows)
|
||||||
|
* Thunderbird aktualisiert (Mac, Windows)
|
||||||
|
* Gaim-/Pidgin-Umbenennung (Linux, Windows)
|
||||||
|
* Aktuelle Pidgin- und Pidgin-Encryption-Version (Windows)
|
||||||
|
* Pidgin- und Pidgin-Encryption-Anleitungen ueberarbeitet (Windows)
|
||||||
|
* Kleine Fehler beseitigt
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Thu, 14 Jun 02007 19:35
|
||||||
|
|
||||||
|
CryptoCD 1.4
|
||||||
|
* Neues Thema: Anonymes Surfen
|
||||||
|
* Aktuelle Programm-Versionen
|
||||||
|
* Viele Fehlerbereinigungen
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Su, 29 Apr 02007 16:09
|
||||||
|
|
||||||
|
CryptoCD 1.3.3 "n.n."
|
||||||
|
* Aktuelle Versionen von Thunderbird und GnuPG
|
||||||
|
* Defekte Links korrigiert
|
||||||
|
* Kleinere Fehler behoben
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Mo, 09 Jan 02007 09:45
|
||||||
|
|
||||||
|
CryptoCD 1.3.2 "Von Zauberhand"
|
||||||
|
* Fehler im Menue korrigiert
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Mo, 18 Sep 02006 20:18
|
||||||
|
|
||||||
|
CryptoCD 1.3.1 "Stimme erheben statt Stimme abgeben"
|
||||||
|
* Neue Programm-Versionen
|
||||||
|
- Thunderbird 1.5.0.7
|
||||||
|
- Enigmail 0.94.1
|
||||||
|
- GnuPG 1.4.5 (fuer MacOS >= 10.4)
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Su, 17 Sep 02006 10:25
|
||||||
|
|
||||||
|
CryptoCD 1.3 "Tanze Tango mit mir"
|
||||||
|
* Komplett ueberarbeitetes Design
|
||||||
|
* Steigerung der BenutzerInnenfreunlichkeit
|
||||||
|
* Aktuelle Programm-Versionen
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Su, 13 Aug 02006 10:00:00
|
||||||
|
|
||||||
|
CryptoCD 1.2.2 "Auf in die Verlaengerung"
|
||||||
|
* Bugfix - basierend auf svn-Version r434
|
||||||
|
- Gaim + Plugin sind nun benutzbar
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Sa, 10 Jun 02006 13:24:52
|
||||||
|
|
||||||
|
CryptoCD 1.2.1 "rund und trotzdem kein Fussball"
|
||||||
|
* Neue Version - basierend auf r428
|
||||||
|
* Erste oeffentliche Version seit v1.1
|
||||||
|
* Anleitungen und Programme fuer Linux und Mac OS X hinzugefuegt
|
||||||
|
* Schluesselverwaltung WinPT wurde durch Enigmail ersetzt
|
||||||
|
* Chaosradios entfernt - Iso ist nun > 50 MB
|
||||||
|
* Verschluesselung mit Gaim hinzugefuegt
|
||||||
|
- Vielen Dank an philonous
|
||||||
|
* das Aussehen der Seiten etwas verbessert
|
||||||
|
- besonders im IE
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Fr, 9 Jun 02006 17:56:27
|
||||||
|
|
||||||
|
CryptoCD 1.2.0 "fuehlbar rund"
|
||||||
|
* basierend auf r394
|
||||||
|
- unveroeffentlichte Testversion
|
||||||
|
|
||||||
|
-- Henning Rieger <bagel@systemausfall.org> Fr, 19 Mai 2006 23:59:59
|
||||||
|
|
||||||
|
CryptoCD 1.1.1 "hoerbar neu"
|
||||||
|
* basierend auf r151
|
||||||
|
* Chaosradio 99 hinzugefuegt
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Do, 21 Apr 2005 13:51:13
|
||||||
|
|
||||||
|
CryptoCD 1.1 "weg_mit_den_frames" *
|
||||||
|
* Neues Release - basierend auf r141
|
||||||
|
* Frames entfernt, das Layout basiert jetzt auf css
|
||||||
|
* WinPT Anleitung ueberarbeitet, Installation basiert jetzt auf GnuPT
|
||||||
|
* die CD startet nun automatisch, nachdem sie ins Laufwerk eingelegt
|
||||||
|
wurde
|
||||||
|
* About Seite eingefuegt, Infos zu den Autoren
|
||||||
|
* Copyleft Seite eingefuegt, Infos zur Lizenz
|
||||||
|
* Rechtschreibung und Formatierungen in den Dokumenten korrigiert
|
||||||
|
* favicon hizugefuegt
|
||||||
|
|
||||||
|
-- Steffen Dabbert <phil@systemausfall.org> Mi, 20 Apr 2005 22:20:20
|
911
v1.4.4/cover/cover_faltversion.sla
Normal file
|
@ -0,0 +1,911 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<SCRIBUSUTF8NEW Version="1.3.4" >
|
||||||
|
<DOCUMENT HalfRes="1" MAGMAX="3200" TextPenShade="100" MAJGRID="100.001" ABSTSPALTEN="11" dispX="0.4" ScratchBottom="283465" showBleed="1" AUTOCHECK="0" LANGUAGE="German" DPIn2="" DPgam="0" HCMS="0" UnderlineWidth="-1" TabFill="" DGAP="0" ORIENTATION="0" dispY="0.4" PASPECT="1" WIDTH="1" POLYR="0" SHOWLINK="0" MINWORDLEN="3" DPIn3="" UnderlinePos="-1" VTIEFSC="100" DOCLANGINFO="" COMMENTS="" BleedBottom="0" AutoSaveTime="600000" POLYS="0" GuideRad="10" rulerMode="1" TITLE="" KEYWORDS="" TabWidth="36" DSIZE="12" AUTOSPALTEN="1" PAGESIZE="A4" STIL="1" TextBackGroundShade="100" PEN="Black" POLYC="4" SnapToGuides="1" DISc="1" GROUPC="7" DOCFORMAT="" DOCDATE="" BORDERTOP="68.0315" currentProfile="Postscript" MARGC="#0000ff" EndArrow="0" SHOWBASE="0" SHOWGRID="0" SnapToGrid="0" GUIDELOCK="0" StrikeThruPos="-1" WIDTHLINE="1" TextStrokeShade="100" SHOWLAYERM="0" DPuse="0" DPSo="0" DOCSOURCE="" FIRSTNUM="1" BleedRight="0" GuideC="#000080" BRUSH="Black" StartArrow="0" ScratchRight="28346.5" POLYF="0.707107" SHOWMARGIN="0" DIIm="0" DPbla="1" StrikeThruWidth="-1" VHOCHSC="100" DOCTYPE="" BORDERBOTTOM="68.0315" BRUSHSHADE="100" StrokeText="Black" BASEGRID="14.4" VTIEF="33" DOCCONTRIB="" DOCRELATION="" PICTSCX="1" CPICT="White" PENLINE="Black" AutoSave="0" BASEO="0" DOCIDENT="" BOOK="0" constrain="15" PICTSCY="1" MAGSTEP="200" TextLineColor="None" ScratchTop="28346.5" POLYFD="0" DPSFo="0" AUTOL="20" PUBLISHER="" BleedTop="0" ANZPAGES="2" PSCALE="1" LINESHADE="100" HYCOUNT="2" AUTHOR="" UNITS="4" BleedLeft="0" BORDERRIGHT="82.2047" RANDF="0" MAJORC="#00ff00" PENSHADE="100" PENTEXT="Black" GRAB="4" showcolborders="0" SHOWGUIDES="1" DPInCMYK="" DPPr="" DPMo="" PAGEHEIGHT="841.89" PAGEWIDTH="595.276" BACKG="1" GuideZ="10" TextBackGround="None" MINGRID="20.0013" VHOCH="33" DOCCOVER="" DCOL="1" EmbeddedPath="0" rulerYoffset="0" SHOWPICT="1" SHOWFRAME="1" AUTOMATIC="1" ALAYER="0" DOCRIGHTS="" PICTSHADE="100" ScratchLeft="28346.5" rulerXoffset="0" showrulers="1" DPIn="" VKAPIT="75" DFONT="Nimbus Sans L Bold Condensed" BORDERLEFT="85.0394" PAGEC="#ffffff" BaseC="#c0c0c0" MINORC="#00ff00" MAGMIN="10" STILLINE="1" TextLineShade="100" SHOWControl="0" >
|
||||||
|
<CheckProfile checkTransparency="1" autoCheck="1" maxResolution="4800" minResolution="72" checkOverflow="1" ignoreErrors="0" checkRasterPDF="1" checkResolution="1" checkGlyphs="1" Name="PDF 1.3" checkAnnotations="0" checkPictures="1" checkForGIF="1" ignoreOffLayers="0" checkOrphans="1" />
|
||||||
|
<CheckProfile checkTransparency="0" autoCheck="1" maxResolution="4800" minResolution="72" checkOverflow="1" ignoreErrors="0" checkRasterPDF="1" checkResolution="1" checkGlyphs="1" Name="PDF 1.4" checkAnnotations="0" checkPictures="1" checkForGIF="1" ignoreOffLayers="0" checkOrphans="1" />
|
||||||
|
<CheckProfile checkTransparency="0" autoCheck="1" maxResolution="2400" minResolution="72" checkOverflow="1" ignoreErrors="0" checkRasterPDF="1" checkResolution="1" checkGlyphs="1" Name="PDF 1.5" checkAnnotations="0" checkPictures="1" checkForGIF="1" ignoreOffLayers="0" checkOrphans="1" />
|
||||||
|
<CheckProfile checkTransparency="1" autoCheck="1" maxResolution="4800" minResolution="144" checkOverflow="1" ignoreErrors="0" checkRasterPDF="1" checkResolution="1" checkGlyphs="1" Name="PDF/X-3" checkAnnotations="1" checkPictures="1" checkForGIF="1" ignoreOffLayers="0" checkOrphans="1" />
|
||||||
|
<CheckProfile checkTransparency="1" autoCheck="1" maxResolution="4800" minResolution="72" checkOverflow="1" ignoreErrors="0" checkRasterPDF="1" checkResolution="1" checkGlyphs="1" Name="PostScript" checkAnnotations="0" checkPictures="1" checkForGIF="1" ignoreOffLayers="0" checkOrphans="1" />
|
||||||
|
<CheckProfile checkTransparency="0" autoCheck="0" maxResolution="0" minResolution="0" checkOverflow="0" ignoreErrors="0" checkRasterPDF="0" checkResolution="0" checkGlyphs="0" Name="Postscript" checkAnnotations="0" checkPictures="0" checkForGIF="0" ignoreOffLayers="0" checkOrphans="0" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0f070000" NAME="AliceBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000f2305" NAME="AntiqueWhite" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00102400" NAME="AntiqueWhite1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000f2211" NAME="AntiqueWhite2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000d1d32" NAME="AntiqueWhite3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00081374" NAME="AntiqueWhite4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#80002b00" NAME="Aquamarine" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#80002b00" NAME="Aquamarine1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#78002811" NAME="Aquamarine2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#67002332" NAME="Aquamarine3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#46001774" NAME="Aquamarine4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0f000000" NAME="Azure" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0f000000" NAME="Azure1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0e000011" NAME="Azure2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0c000032" NAME="Azure3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#08000074" NAME="Azure4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000190a" NAME="Beige" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001b3b00" NAME="Bisque" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001b3b00" NAME="Bisque1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00193711" NAME="Bisque2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00162f32" NAME="Bisque3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000e2074" NAME="Bisque4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ff" NAME="Black" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00143200" NAME="BlanchedAlmond" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ffff0000" NAME="Blue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ffff0000" NAME="Blue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#eeee0011" NAME="Blue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cdcd0032" NAME="Blue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b8b0074" NAME="Blue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#58b7001d" NAME="BlueViolet" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007b7b5a" NAME="Brown" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00bfbf00" NAME="Brown1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00b3b311" NAME="Brown2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#009a9a32" NAME="Brown3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00686874" NAME="Brown4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00265721" NAME="Burlywood" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#002c6400" NAME="Burlywood1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00295d11" NAME="Burlywood2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00235032" NAME="Burlywood3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00183674" NAME="Burlywood4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#4102005f" NAME="CadetBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#670a0000" NAME="CadetBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#60090011" NAME="CadetBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#53080032" NAME="CadetBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#38050074" NAME="CadetBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8000ff00" NAME="Chartreuse" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8000ff00" NAME="Chartreuse1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7800ee11" NAME="Chartreuse2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#6700cd32" NAME="Chartreuse3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#46008b74" NAME="Chartreuse4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0069b42d" NAME="Chocolate" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0080db00" NAME="Chocolate1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0078cd11" NAME="Chocolate2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0067b032" NAME="Chocolate3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00467874" NAME="Chocolate4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0080af00" NAME="Coral" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008da900" NAME="Coral1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00849e11" NAME="Coral2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00728832" NAME="Coral3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#004d5c74" NAME="Coral4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#89580012" NAME="CornflowerBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00072300" NAME="Cornsilk" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00072300" NAME="Cornsilk1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00062111" NAME="Cornsilk2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00051c32" NAME="Cornsilk3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00031374" NAME="Cornsilk4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff000000" NAME="Cyan" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff000000" NAME="Cyan1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ee000011" NAME="Cyan2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cd000032" NAME="Cyan3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b000074" NAME="Cyan4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b8b0074" NAME="DarkBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b000074" NAME="DarkCyan" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0032ad47" NAME="DarkGoldenrod" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0046f000" NAME="DarkGoldenrod1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0041e011" NAME="DarkGoldenrod2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0038c132" NAME="DarkGoldenrod3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00268374" NAME="DarkGoldenrod4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#6400649b" NAME="DarkGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000056" NAME="DarkGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00065242" NAME="DarkKhaki" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008b0074" NAME="DarkMagenta" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#16003c94" NAME="DarkOliveGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#35008f00" NAME="DarkOliveGreen1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#32008611" NAME="DarkOliveGreen2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2b007332" NAME="DarkOliveGreen3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1d004e74" NAME="DarkOliveGreen4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0073ff00" NAME="DarkOrange" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0080ff00" NAME="DarkOrange1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0078ee11" NAME="DarkOrange2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0067cd32" NAME="DarkOrange3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00468b74" NAME="DarkOrange4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#339a0033" NAME="DarkOrchid" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#40c10000" NAME="DarkOrchid1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3cb40011" NAME="DarkOrchid2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#339b0032" NAME="DarkOrchid3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#23690074" NAME="DarkOrchid4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008b8b74" NAME="DarkRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00536f16" NAME="DarkSalmon" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2d002d43" NAME="DarkSeaGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3e003e00" NAME="DarkSeaGreen1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3a003a11" NAME="DarkSeaGreen2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#32003232" NAME="DarkSeaGreen3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#22002274" NAME="DarkSeaGreen4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#434e0074" NAME="DarkSlateBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#200000b0" NAME="DarkSlateGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#68000000" NAME="DarkSlateGrey1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#61000011" NAME="DarkSlateGrey2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#54000032" NAME="DarkSlateGrey3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#39000074" NAME="DarkSlateGrey4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#d103002e" NAME="DarkTurquoise" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3fd3002c" NAME="DarkViolet" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00eb6c00" NAME="DeepPink" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00eb6c00" NAME="DeepPink1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00dc6511" NAME="DeepPink2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00bd5732" NAME="DeepPink3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00813b74" NAME="DeepPink4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff400000" NAME="DeepSkyBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff400000" NAME="DeepSkyBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ee3c0011" NAME="DeepSkyBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cd330032" NAME="DeepSkyBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b230074" NAME="DeepSkyBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000096" NAME="DimGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#e16f0000" NAME="DodgerBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#e16f0000" NAME="DodgerBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#d2680011" NAME="DodgerBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#b5590032" NAME="DodgerBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7b3d0074" NAME="DodgerBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0090904d" NAME="Firebrick" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00cfcf00" NAME="Firebrick1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00c2c211" NAME="Firebrick2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00a7a732" NAME="Firebrick3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00717174" NAME="Firebrick4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00050f00" NAME="FloralWhite" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#69006974" NAME="ForestGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000023" NAME="Gainsboro" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#07070000" NAME="GhostWhite" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0028ff00" NAME="Gold" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0028ff00" NAME="Gold1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0025ee11" NAME="Gold2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0020cd32" NAME="Gold3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00168b74" NAME="Gold4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0035ba25" NAME="Goldenrod" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003eda00" NAME="Goldenrod1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003acc11" NAME="Goldenrod2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0032b032" NAME="Goldenrod3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00227774" NAME="Goldenrod4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff00ff00" NAME="Green" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff00ff00" NAME="Green1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ee00ee11" NAME="Green2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cd00cd32" NAME="Green3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b008b74" NAME="Green4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5200d000" NAME="GreenYellow" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000041" NAME="Grey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ff" NAME="Grey0" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000fc" NAME="Grey1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000e5" NAME="Grey10" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000000" NAME="Grey100" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000e3" NAME="Grey11" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000e0" NAME="Grey12" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000de" NAME="Grey13" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000db" NAME="Grey14" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000d9" NAME="Grey15" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000d6" NAME="Grey16" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000d4" NAME="Grey17" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000d1" NAME="Grey18" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000cf" NAME="Grey19" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000fa" NAME="Grey2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000cc" NAME="Grey20" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000c9" NAME="Grey21" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000c7" NAME="Grey22" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000c4" NAME="Grey23" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000c2" NAME="Grey24" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000bf" NAME="Grey25" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000bd" NAME="Grey26" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ba" NAME="Grey27" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000b8" NAME="Grey28" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000b5" NAME="Grey29" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000f7" NAME="Grey3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000b2" NAME="Grey30" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000b0" NAME="Grey31" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ad" NAME="Grey32" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ab" NAME="Grey33" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000a8" NAME="Grey34" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000a6" NAME="Grey35" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000a3" NAME="Grey36" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000a1" NAME="Grey37" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000009e" NAME="Grey38" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000009c" NAME="Grey39" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000f5" NAME="Grey4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000099" NAME="Grey40" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000096" NAME="Grey41" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000094" NAME="Grey42" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000091" NAME="Grey43" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000008f" NAME="Grey44" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000008c" NAME="Grey45" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000008a" NAME="Grey46" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000087" NAME="Grey47" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000085" NAME="Grey48" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000082" NAME="Grey49" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000f2" NAME="Grey5" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000080" NAME="Grey50" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000007d" NAME="Grey51" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000007a" NAME="Grey52" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000078" NAME="Grey53" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000075" NAME="Grey54" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000073" NAME="Grey55" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000070" NAME="Grey56" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000006e" NAME="Grey57" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000006b" NAME="Grey58" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000069" NAME="Grey59" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000f0" NAME="Grey6" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000066" NAME="Grey60" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000063" NAME="Grey61" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000061" NAME="Grey62" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000005e" NAME="Grey63" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000005c" NAME="Grey64" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000059" NAME="Grey65" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000057" NAME="Grey66" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000054" NAME="Grey67" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000052" NAME="Grey68" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000004f" NAME="Grey69" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ed" NAME="Grey7" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000004c" NAME="Grey70" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000004a" NAME="Grey71" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000047" NAME="Grey72" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000045" NAME="Grey73" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000042" NAME="Grey74" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000040" NAME="Grey75" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000003d" NAME="Grey76" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000003b" NAME="Grey77" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000038" NAME="Grey78" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000036" NAME="Grey79" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000eb" NAME="Grey8" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000033" NAME="Grey80" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000030" NAME="Grey81" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000002e" NAME="Grey82" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000002b" NAME="Grey83" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000029" NAME="Grey84" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000026" NAME="Grey85" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000024" NAME="Grey86" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000021" NAME="Grey87" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000001f" NAME="Grey88" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000001c" NAME="Grey89" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000e8" NAME="Grey9" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000001a" NAME="Grey90" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000017" NAME="Grey91" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000014" NAME="Grey92" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000012" NAME="Grey93" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000000f" NAME="Grey94" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000000d" NAME="Grey95" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000000a" NAME="Grey96" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000008" NAME="Grey97" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000005" NAME="Grey98" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000003" NAME="Grey99" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0f000f00" NAME="Honeydew" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0f000f00" NAME="Honeydew1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0e000e11" NAME="Honeydew2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0c000c32" NAME="Honeydew3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#08000874" NAME="Honeydew4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00964b00" NAME="HotPink" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00914b00" NAME="HotPink1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00844711" NAME="HotPink2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006d3d32" NAME="HotPink3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00512974" NAME="HotPink4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00717132" NAME="IndianRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00959500" NAME="IndianRed1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008b8b11" NAME="IndianRed2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00787832" NAME="IndianRed3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00515174" NAME="IndianRed4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000f00" NAME="Ivory" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000f00" NAME="Ivory1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000e11" NAME="Ivory2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000c32" NAME="Ivory3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000874" NAME="Ivory4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000a640f" NAME="Khaki" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00097000" NAME="Khaki1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00086911" NAME="Khaki2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00075a32" NAME="Khaki3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00053d74" NAME="Khaki4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#14140005" NAME="Lavender" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000f0a00" NAME="LavenderBlush" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000f0a00" NAME="LavenderBlush1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000e0911" NAME="LavenderBlush2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000c0832" NAME="LavenderBlush3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00080574" NAME="LavenderBlush4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8000fc03" NAME="LawnGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00053200" NAME="LemonChiffon" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00053200" NAME="LemonChiffon1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00052f11" NAME="LemonChiffon2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00042832" NAME="LemonChiffon3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00021b74" NAME="LemonChiffon4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#390e0019" NAME="LightBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#40100000" NAME="LightBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3c0f0011" NAME="LightBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#330d0032" NAME="LightBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#23080074" NAME="LightBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0070700f" NAME="LightCoral" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1f000000" NAME="LightCyan" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1f000000" NAME="LightCyan1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1d000011" NAME="LightCyan2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#19000032" NAME="LightCyan3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#11000074" NAME="LightCyan4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00116c11" NAME="LightGoldenrod" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00137400" NAME="LightGoldenrod1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00126c11" NAME="LightGoldenrod2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000f5d32" NAME="LightGoldenrod3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000a3f74" NAME="LightGoldenrod4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00002805" NAME="LightGoldenrodYellow" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5e005e11" NAME="LightGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000002c" NAME="LightGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00493e00" NAME="LightPink" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00514600" NAME="LightPink1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#004c4111" NAME="LightPink2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00413832" NAME="LightPink3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#002c2674" NAME="LightPink4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005f8500" NAME="LightSalmon" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005f8500" NAME="LightSalmon1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00597c11" NAME="LightSalmon2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#004c6b32" NAME="LightSalmon3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00344974" NAME="LightSalmon4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#9200084d" NAME="LightSeaGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#732c0005" NAME="LightSkyBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#4f1d0000" NAME="LightSkyBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#4a1b0011" NAME="LightSkyBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#40170032" NAME="LightSkyBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2b100074" NAME="LightSkyBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7b8f0000" NAME="LightSlateBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#22110066" NAME="LightSlateGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2e1a0021" NAME="LightSteelBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#351e0000" NAME="LightSteelBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#321c0011" NAME="LightSteelBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2b180032" NAME="LightSteelBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1d100074" NAME="LightSteelBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00001f00" NAME="LightYellow" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00001f00" NAME="LightYellow1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00001d11" NAME="LightYellow2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00001932" NAME="LightYellow3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00001174" NAME="LightYellow4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#9b009b32" NAME="LimeGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000a1405" NAME="Linen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00ff0000" NAME="Magenta" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00ff0000" NAME="Magenta1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00ee0011" NAME="Magenta2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00cd0032" NAME="Magenta3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008b0074" NAME="Magenta4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0080504f" NAME="Maroon" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00cb4c00" NAME="Maroon1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00be4711" NAME="Maroon2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00a43d32" NAME="Maroon3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006f2974" NAME="Maroon4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#67002332" NAME="MediumAquamarine" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cdcd0032" NAME="MediumBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#197e002c" NAME="MediumOrchid" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1f990000" NAME="MediumOrchid1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1d8f0011" NAME="MediumOrchid2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#197b0032" NAME="MediumOrchid3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#11540074" NAME="MediumOrchid4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#486b0024" NAME="MediumPurple" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#547d0000" NAME="MediumPurple1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#4f750011" NAME="MediumPurple2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#44650032" NAME="MediumPurple3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2e440074" NAME="MediumPurple4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7700424c" NAME="MediumSeaGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#73860011" NAME="MediumSlateBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#fa006005" NAME="MediumSpringGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8900052e" NAME="MediumTurquoise" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00b24238" NAME="MediumVioletRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5757008f" NAME="MidnightBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0a000500" NAME="MintCream" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001b1e00" NAME="MistyRose" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001b1e00" NAME="MistyRose1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00191c11" NAME="MistyRose2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00161832" NAME="MistyRose3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000e1074" NAME="MistyRose4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001b4a00" NAME="Moccasin" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00215200" NAME="NavajoWhite" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00215200" NAME="NavajoWhite1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001f4d11" NAME="NavajoWhite2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001a4232" NAME="NavajoWhite3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00122d74" NAME="NavajoWhite4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8080007f" NAME="NavyBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00081702" NAME="OldLace" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#23006b71" NAME="OliveDrab" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3f00c100" NAME="OliveDrab1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3b00b411" NAME="OliveDrab2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#33009b32" NAME="OliveDrab3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#22006974" NAME="OliveDrab4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005aff00" NAME="Orange" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005aff00" NAME="Orange1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0054ee11" NAME="Orange2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0048cd32" NAME="Orange3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00318b74" NAME="Orange4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00baff00" NAME="OrangeRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00baff00" NAME="OrangeRed1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00aeee11" NAME="OrangeRed2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0096cd32" NAME="OrangeRed3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00668b74" NAME="OrangeRed4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006a0425" NAME="Orchid" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007c0500" NAME="Orchid1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00740511" NAME="Orchid2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00640432" NAME="Orchid3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00440274" NAME="Orchid4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00064411" NAME="PaleGoldenrod" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#63006304" NAME="PaleGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#65006500" NAME="PaleGreen1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5e005e11" NAME="PaleGreen2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#51005132" NAME="PaleGreen3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#37003774" NAME="PaleGreen4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3f000011" NAME="PaleTurquoise" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#44000000" NAME="PaleTurquoise1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#40000011" NAME="PaleTurquoise2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#37000032" NAME="PaleTurquoise3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#25000074" NAME="PaleTurquoise4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006b4824" NAME="PaleVioletRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007d5400" NAME="PaleVioletRed1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00754f11" NAME="PaleVioletRed2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00654432" NAME="PaleVioletRed3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00442e74" NAME="PaleVioletRed4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00102a00" NAME="PapayaWhip" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00254600" NAME="PeachPuff" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00254600" NAME="PeachPuff1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00234111" NAME="PeachPuff2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001e3832" NAME="PeachPuff3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00142674" NAME="PeachPuff4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00488e32" NAME="Peru" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003f3400" NAME="Pink" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#004a3a00" NAME="Pink1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00453611" NAME="Pink2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003c2f32" NAME="Pink3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00281f74" NAME="Pink4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003d0022" NAME="Plum" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00440000" NAME="Plum1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00400011" NAME="Plum2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00370032" NAME="Plum3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00250074" NAME="Plum4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#36060019" NAME="PowderBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#50d0000f" NAME="Purple" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#64cf0000" NAME="Purple1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5dc20011" NAME="Purple2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#50a70032" NAME="Purple3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#36710074" NAME="Purple4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00ffff00" NAME="Red" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00ffff00" NAME="Red1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00eeee11" NAME="Red2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00cdcd32" NAME="Red3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008b8b74" NAME="Red4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#002d2d43" NAME="RosyBrown" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003e3e00" NAME="RosyBrown1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003a3a11" NAME="RosyBrown2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00323232" NAME="RosyBrown3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00222274" NAME="RosyBrown4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#a078001e" NAME="RoyalBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#b7890000" NAME="RoyalBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ab800011" NAME="RoyalBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#936e0032" NAME="RoyalBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#644b0074" NAME="RoyalBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00467874" NAME="SaddleBrown" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007a8805" NAME="Salmon" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00739600" NAME="Salmon1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006c8c11" NAME="Salmon2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005d7932" NAME="Salmon3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003f5274" NAME="Salmon4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0050940b" NAME="SandyBrown" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5d003474" NAME="SeaGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ab006000" NAME="SeaGreen1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#a0005a11" NAME="SeaGreen2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8a004d32" NAME="SeaGreen3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5d003474" NAME="SeaGreen4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000a1100" NAME="Seashell" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000a1100" NAME="Seashell1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00091011" NAME="Seashell2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00080e32" NAME="Seashell3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00050974" NAME="Seashell4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#004e735f" NAME="Sienna" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007db800" NAME="Sienna1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0075ac11" NAME="Sienna2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00659432" NAME="Sienna3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00446574" NAME="Sienna4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#641d0014" NAME="SkyBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#78310000" NAME="SkyBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#702e0011" NAME="SkyBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#61270032" NAME="SkyBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#411b0074" NAME="SkyBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#63730032" NAME="SlateBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7c900000" NAME="SlateBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#74870011" NAME="SlateBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#64740032" NAME="SlateBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#444f0074" NAME="SlateBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2010006f" NAME="SlateGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#391d0000" NAME="SlateGrey1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#351b0011" NAME="SlateGrey2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2e170032" NAME="SlateGrey3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1f100074" NAME="SlateGrey4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00050500" NAME="Snow" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00050500" NAME="Snow1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00050511" NAME="Snow2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00040432" NAME="Snow3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00020274" NAME="Snow4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff008000" NAME="SpringGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff008000" NAME="SpringGreen1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ee007811" NAME="SpringGreen2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cd006732" NAME="SpringGreen3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b004674" NAME="SpringGreen4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#6e32004b" NAME="SteelBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#9c470000" NAME="SteelBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#92420011" NAME="SteelBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7e390032" NAME="SteelBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#55270074" NAME="SteelBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001e462d" NAME="Tan" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005ab000" NAME="Tan1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0054a511" NAME="Tan2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00488e32" NAME="Tan3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00316074" NAME="Tan4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00190027" NAME="Thistle" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001e0000" NAME="Thistle1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001c0011" NAME="Thistle2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00180032" NAME="Thistle3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00100074" NAME="Thistle4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#009cb800" NAME="Tomato" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#009cb800" NAME="Tomato1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0092ac11" NAME="Tomato2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007e9432" NAME="Tomato3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00556574" NAME="Tomato4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#a000101f" NAME="Turquoise" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff0a0000" NAME="Turquoise1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ee090011" NAME="Turquoise2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cd080032" NAME="Turquoise3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b050074" NAME="Turquoise4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006c0011" NAME="Violet" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00b0402f" NAME="VioletRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00c16900" NAME="VioletRed1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00b46211" NAME="VioletRed2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#009b5532" NAME="VioletRed3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00693974" NAME="VioletRed4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0017420a" NAME="Wheat" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00184500" NAME="Wheat1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00164011" NAME="Wheat2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00133732" NAME="Wheat3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000d2574" NAME="Wheat4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000000" NAME="White" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000000a" NAME="WhiteSmoke" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000ff00" NAME="Yellow" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000ff00" NAME="Yellow1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000ee11" NAME="Yellow2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000cd32" NAME="Yellow3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00008b74" NAME="Yellow4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#33009b32" NAME="YellowGreen" />
|
||||||
|
<STYLE ALIGN="0" LINESP="7" VOR="0" DROPLIN="2" RMARGIN="0" PSHORTCUT="" LINESPMode="0" NACH="0" SHORTCUT="" CNAME="" DROPDIST="0" FIRST="0" INDENT="0" NAME="Standard-Absatzstil" DROP="0" />
|
||||||
|
<STYLE ALIGN="2" LINESP="20" VOR="0" DROPLIN="2" RMARGIN="0" PSHORTCUT="" LINESPMode="1" NACH="0" SHORTCUT="" CNAME="" DROPDIST="0" FIRST="0" INDENT="0" NAME="Überschrift" DROP="0" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Standard-Zeichenstil" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (1)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (2)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (3)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (4)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<LAYERS DRUCKEN="1" NUMMER="0" TRANS="1" LAYERC="#000000" EDIT="1" NAME="Hintergrund" FLOW="1" OUTL="0" BLEND="0" SICHTBAR="1" LEVEL="0" />
|
||||||
|
<Printer mirrorH="0" BleedBottom="0" colorMarks="1" cropMarks="0" doOverprint="1" useColor="0" firstUse="1" useICC="1" printerCommand="" BleedRight="0" useSpotColors="1" outputSeparations="0" toFile="0" doGCR="1" registrationMarks="0" doClip="1" markOffset="5.00467e-266" useAltPrintCommand="1" BleedTop="0" printer="" BleedLeft="0" bleedMarks="1" setDevParam="1" separationName="" PSLevel="262245" filename="" mirrorV="0" />
|
||||||
|
<PDF displayThumbs="0" ImagePr="0" fitWindow="0" displayBookmarks="0" doOverprint="0" colorMarks="0" cropMarks="0" BTop="0" UseProfiles="0" BLeft="0" PrintP="" RecalcPic="0" firstUse="0" UseSpotColors="1" ImageP="" SolidP="" PicRes="300" Thumbnails="0" hideToolBar="0" registrationMarks="0" CMethod="0" displayLayers="0" doMultiFile="0" UseLayers="0" Encrypt="0" markOffset="0" BRight="0" Binding="0" Articles="0" useDocBleeds="0" InfoString="" RGBMode="1" Grayscale="0" PresentMode="0" openAction="" displayFullscreen="0" Permissions="-4" bleedMarks="0" Intent="1" Compress="1" hideMenuBar="0" Version="14" Resolution="300" Bookmarks="0" docInfoMarks="0" UseProfiles2="0" RotateDeg="0" Clip="0" MirrorV="0" Quality="0" PageLayout="0" UseLpi="0" PassUser="" BBottom="0" Intent2="0" MirrorH="0" PassOwner="" >
|
||||||
|
<Fonts Name="Arial Regular" />
|
||||||
|
<Fonts Name="Bitstream Vera Sans Roman" />
|
||||||
|
<Fonts Name="Creative Commons Regular" />
|
||||||
|
<Fonts Name="GeosansLight Regular" />
|
||||||
|
<Fonts Name="Labtop Superwide Regular" />
|
||||||
|
<Fonts Name="Nimbus Mono L Bold" />
|
||||||
|
<Fonts Name="Nimbus Mono L Regular" />
|
||||||
|
<Fonts Name="Nimbus Sans L Bold Condensed" />
|
||||||
|
<Fonts Name="Nimbus Sans L Regular" />
|
||||||
|
<Effekte pageViewDuration="1" Di="0" pageEffectDuration="1" effectType="0" Dm="0" M="0" />
|
||||||
|
<Effekte pageViewDuration="1" Di="0" pageEffectDuration="1" effectType="0" Dm="0" M="0" />
|
||||||
|
<LPI Angle="0" Frequency="10" SpotFunction="0" Color="" />
|
||||||
|
<LPI Angle="45" Frequency="75" SpotFunction="2" Color="Black" />
|
||||||
|
<LPI Angle="105" Frequency="75" SpotFunction="2" Color="Cyan" />
|
||||||
|
<LPI Angle="75" Frequency="75" SpotFunction="2" Color="Magenta" />
|
||||||
|
<LPI Angle="90" Frequency="75" SpotFunction="2" Color="Yellow" />
|
||||||
|
<LPI Angle="0" Frequency="10" SpotFunction="0" Color="" />
|
||||||
|
</PDF>
|
||||||
|
<DocItemAttributes/>
|
||||||
|
<TablesOfContents/>
|
||||||
|
<PageSets>
|
||||||
|
<Set Columns="1" GapBelow="28346.5" Rows="1" FirstPage="0" GapHorizontal="0" Name="Single Page" GapVertical="0" />
|
||||||
|
<Set Columns="2" GapBelow="40" Rows="1" FirstPage="1" GapHorizontal="0" Name="Double Sided" GapVertical="0" >
|
||||||
|
<PageNames Name="Left Page" />
|
||||||
|
<PageNames Name="Right Page" />
|
||||||
|
</Set>
|
||||||
|
<Set Columns="3" GapBelow="40" Rows="1" FirstPage="0" GapHorizontal="0" Name="3-Fold" GapVertical="0" >
|
||||||
|
<PageNames Name="Left Page" />
|
||||||
|
<PageNames Name="Middle" />
|
||||||
|
<PageNames Name="Right Page" />
|
||||||
|
</Set>
|
||||||
|
<Set Columns="4" GapBelow="40" Rows="1" FirstPage="0" GapHorizontal="0" Name="4-Fold" GapVertical="0" >
|
||||||
|
<PageNames Name="Left Page" />
|
||||||
|
<PageNames Name="Middle Left" />
|
||||||
|
<PageNames Name="Middle Right" />
|
||||||
|
<PageNames Name="Right Page" />
|
||||||
|
</Set>
|
||||||
|
</PageSets>
|
||||||
|
<Sections>
|
||||||
|
<Section Active="1" Number="0" From="0" Type="Type_1_2_3" To="1" Name="0" Start="1" Reversed="0" />
|
||||||
|
</Sections>
|
||||||
|
<Pattern scaleY="1" width="43" height="39" Name="Pattern_Bild56" scaleX="1" >
|
||||||
|
<PatternItem OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="39" gWidth="43" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="43" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="White" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="2" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="39" DASHOFF="0" PFILE2="" PFILE="../../../../../../../../../tmp/foo.eps" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="0" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 43 0 43 0 43 0 43 0 43 39 43 39 43 39 43 39 0 39 0 39 0 39 0 39 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="1" LAYER="0" BOOKMARK="0" gYpos="0" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="0" DASHS="" IRENDER="0" TEXTFLOW="0" YPOS="57942" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28461" NUMCO="16" POCOOR="0 0 0 0 43 0 43 0 43 0 43 0 43 39 43 39 43 39 43 39 0 39 0 39 0 39 0 39 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PatternItem>
|
||||||
|
</Pattern>
|
||||||
|
<MASTERPAGE AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoGap="0" Size="A4" NUM="0" BORDERTOP="40" NAM="Normal" LEFT="0" BORDERBOTTOM="40" AGSelection="0 0 0 0" Orientation="1" AGverticalAutoGap="0" BORDERRIGHT="40" PAGEHEIGHT="595.28" PAGEWIDTH="841.89" PAGEYPOS="28346.5" AGverticalAutoRefer="0" HorizontalGuides="" MNAM="" PAGEXPOS="28346.5" AGhorizontalAutoRefer="0" VerticalGuides="" BORDERLEFT="40" />
|
||||||
|
<PAGE AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoGap="0" Size="A4" NUM="0" BORDERTOP="40" NAM="" LEFT="0" BORDERBOTTOM="40" AGSelection="0 0 0 0" Orientation="1" AGverticalAutoGap="0" BORDERRIGHT="40" PAGEHEIGHT="595.276" PAGEWIDTH="841.89" PAGEYPOS="28346.5" AGverticalAutoRefer="0" HorizontalGuides="" MNAM="Normal" PAGEXPOS="28346.5" AGhorizontalAutoRefer="0" VerticalGuides="" BORDERLEFT="40" />
|
||||||
|
<PAGE AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoGap="0" Size="A4" NUM="1" BORDERTOP="40" NAM="" LEFT="0" BORDERBOTTOM="40" AGSelection="0 0 0 0" Orientation="1" AGverticalAutoGap="0" BORDERRIGHT="40" PAGEHEIGHT="595.276" PAGEWIDTH="841.89" PAGEYPOS="57288.3" AGverticalAutoRefer="0" HorizontalGuides="" MNAM="Normal" PAGEXPOS="28346.5" AGhorizontalAutoRefer="0" VerticalGuides="" BORDERLEFT="40" />
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="1.00132e-307" gWidth="5.00668e-308" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="694.488" ImageRes="1" GROUPS="" LOCKR="1" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.283465" HEIGHT="342.992" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 694.488 0 694.488 0 694.488 0 694.488 0 694.488 342.992 694.488 342.992 694.488 342.992 694.488 342.992 0 342.992 0 342.992 0 342.992 0 342.992 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="1" LAYER="0" BOOKMARK="0" gYpos="3.22647e-307" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="8.90058e-308" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="57414.1" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28420.2" NUMCO="16" POCOOR="0 0 0 0 694.488 0 694.488 0 694.488 0 694.488 0 694.488 342.992 694.488 342.992 694.488 342.992 694.488 342.992 0 342.992 0 342.992 0 342.992 0 342.992 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="7.29112e-304" gWidth="7.29112e-304" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="0.35101" ROT="0" WIDTH="347.5" ImageRes="0" GROUPS="" LOCKR="0" LOCALSCY="0.366146" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="White" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="0" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="2" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="342.346" DASHOFF="0" PFILE2="" PFILE="cover.jpg" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="0" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 347.5 0 347.5 0 347.5 0 347.5 0 347.5 342.346 347.5 342.346 347.5 342.346 347.5 342.346 0 342.346 0 342.346 0 342.346 0 342.346 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="1" LAYER="0" BOOKMARK="0" gYpos="7.29112e-304" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="7.29112e-304" DASHS="" IRENDER="0" TEXTFLOW="0" YPOS="57414.7" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28767" NUMCO="16" POCOOR="0 0 0 0 347.5 0 347.5 0 347.5 0 347.5 0 347.5 342.346 347.5 342.346 347.5 342.346 347.5 342.346 0 342.346 0 342.346 0 342.346 0 342.346 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="0" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="342.992" gWidth="694.488" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="694.488" ImageRes="1" GROUPS="" LOCKR="1" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="OliveDrab3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.283465" HEIGHT="342.992" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 694.488 0 694.488 0 694.488 0 694.488 0 694.488 342.992 694.488 342.992 694.488 342.992 694.488 342.992 0 342.992 0 342.992 0 342.992 0 342.992 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="1.11538" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="0.499281" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28472.3" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28420.2" NUMCO="16" POCOOR="0 0 0 0 694.488 0 694.488 0 694.488 0 694.488 0 694.488 342.992 694.488 342.992 694.488 342.992 694.488 342.992 0 342.992 0 342.992 0 342.992 0 342.992 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="4.45035e-308" gWidth="8.9007e-308" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="320.2" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="4" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="199.61" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 320.2 0 320.2 0 320.2 0 320.2 0 320.2 199.61 320.2 199.61 320.2 199.61 320.2 199.61 0 199.61 0 199.61 0 199.61 0 199.61 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="1.33509e-307" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="4.45036e-308" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28549.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28433.8" NUMCO="16" POCOOR="0 0 0 0 320.2 0 320.2 0 320.2 0 320.2 0 320.2 199.61 320.2 199.61 320.2 199.61 320.2 199.61 0 199.61 0 199.61 0 199.61 0 199.61 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<ITEXT SCOLOR="Black" TXTSHX="5" TXTSHY="-5" CH="Die CryptoCD ist eine Softwaresammlung (für Windows, Linux und Mac OS X) mit ausführlicher Dokumentation zur sicheren Kommunikation im Internet. Möglichst einstiegsfreundlich geht es dabei um folgende Themen:" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH="E-Mail-Verschlüsselung" FEATURES="inherit smallcaps" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<ITEXT SCOLOR="Black" TXTSHX="5" TXTSHY="-5" CH=" " TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit smallcaps" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH=" Sicheres Chatten" FEATURES="inherit smallcaps" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<ITEXT SCOLOR="Black" TXTSHX="5" TXTSHY="-5" CH=" " TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit smallcaps" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH=" Anonymes Surfen" FEATURES="inherit smallcaps" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para ALIGN="1" LINESP="11.8" FEATURES="inherit smallcaps" PSHORTCUT="" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" NAME="" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para ALIGN="1" LINESP="11.8" FEATURES="inherit smallcaps" PSHORTCUT="" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" NAME="" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para ALIGN="1" LINESP="11.8" FEATURES="inherit smallcaps" PSHORTCUT="" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" NAME="" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<ITEXT CH="Inhalt & Programme:" FEATURES="inherit" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para ALIGN="0" LINESP="11.8" FEATURES="inherit" PSHORTCUT="" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" NAME="" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para ALIGN="0" LINESP="11.8" FEATURES="inherit" PSHORTCUT="" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" NAME="" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<ITEXT CH="• Grundlagen & Funktion von Verschlüsselung" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para ALIGN="0" LINESP="11.8" PSHORTCUT="" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" NAME="" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<ITEXT CH="• Installation & Einrichtung der Programme" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<ITEXT SCOLOR="Black" TXTSHX="5" TXTSHY="-5" CH=" Schritt für Schritt" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH="• E-Mail: Mozilla Thunderbird, Enigmail, GnuPG" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para ALIGN="0" LINESP="11.8" PSHORTCUT="" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" NAME="" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<ITEXT CH="• Chat: Pidgin, Pidgin-Encryption" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para ALIGN="0" LINESP="11.8" PSHORTCUT="" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" NAME="" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<ITEXT CH="• Surfen: Mozilla Firefox, Tor, Vidalia, Torbutton" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para ALIGN="0" LINESP="11.8" PSHORTCUT="" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" NAME="" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="807.698" gWidth="-11.5907" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="345.827" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="4" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="31.2948" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 345.827 0 345.827 0 345.827 0 345.827 0 345.827 31.2948 345.827 31.2948 345.827 31.2948 345.827 31.2948 0 31.2948 0 31.2948 0 31.2948 0 31.2948 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="1.07214" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="-14.5173" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28510.9" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28420.3" NUMCO="16" POCOOR="0 0 0 0 345.827 0 345.827 0 345.827 0 345.827 0 345.827 31.2948 345.827 31.2948 345.827 31.2948 345.827 31.2948 0 31.2948 0 31.2948 0 31.2948 0 31.2948 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<ITEXT CH="Die CryptoCD" SHORTCUT="" CNAME="" FONTSIZE="24" FONT="Labtop Superwide Regular" />
|
||||||
|
<para ALIGN="1" PSHORTCUT="" SHORTCUT="" CNAME="" FONTSIZE="24" NAME="" FONT="Labtop Superwide Regular" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741771 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="OliveDrab" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301115" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="311.702" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.4" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28489.1" NUMCO="16" POCOOR="34.7654 0 34.7654 0 0 0 0 0 0 0 0 0 0 11.1833 0 11.1833 0 11.1833 0 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 0 34.7654 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741771 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Sienna3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301115" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="345.827" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.4" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28455" NUMCO="16" POCOOR="34.7654 0 34.7654 0 0 0 0 0 0 0 0 0 0 11.1833 0 11.1833 0 11.1833 0 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 0 34.7654 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741771 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Chocolate1" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301115" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="277.211" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.4" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28523.6" NUMCO="16" POCOOR="34.7654 0 34.7654 0 0 0 0 0 0 0 0 0 0 11.1833 0 11.1833 0 11.1833 0 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 0 34.7654 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741771 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="CadetBlue3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301115" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="242.446" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.4" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28558.3" NUMCO="16" POCOOR="34.7654 0 34.7654 0 0 0 0 0 0 0 0 0 0 11.1833 0 11.1833 0 11.1833 0 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 0 34.7654 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="119.805" ImageRes="1" GROUPS="-1073741771 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Burlywood3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301115" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 119.805 -2.93428e-14 119.805 -2.93428e-14 119.805 -2.93428e-14 119.805 -2.93428e-14 119.805 11.1833 119.805 11.1833 119.805 11.1833 119.805 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="207.681" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.4" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28678.2" NUMCO="16" POCOOR="119.805 0 119.805 0 0 0 0 0 0 0 0 0 0 11.1833 0 11.1833 0 11.1833 0 11.1833 119.805 11.1833 119.805 11.1833 119.805 11.1833 119.805 11.1833 119.805 0 119.805 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741771 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Coral3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301115" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="172.915" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.4" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28627.9" NUMCO="16" POCOOR="34.7654 0 34.7654 0 0 0 0 0 0 0 0 0 0 11.1833 0 11.1833 0 11.1833 0 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 0 34.7654 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741771 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Goldenrod" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301115" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="138.15" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.4" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28662.6" NUMCO="16" POCOOR="34.7654 0 34.7654 0 0 0 0 0 0 0 0 0 0 11.1833 0 11.1833 0 11.1833 0 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 0 34.7654 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741771 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="OliveDrab" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301115" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="103.385" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.4" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28697.4" NUMCO="16" POCOOR="34.7654 0 34.7654 0 0 0 0 0 0 0 0 0 0 11.1833 0 11.1833 0 11.1833 0 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 0 34.7654 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741771 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="CadetBlue4" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301115" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 -8.51479e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="68.6196" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.4" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28732.2" NUMCO="16" POCOOR="34.7654 0 34.7654 0 0 0 0 0 0 0 0 0 0 11.1833 0 11.1833 0 11.1833 0 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 0 34.7654 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="33.8526" ImageRes="1" GROUPS="-1073741771 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="IndianRed4" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301115" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 33.8526 -8.29123e-15 33.8526 -8.29123e-15 33.8526 -8.29123e-15 33.8526 -8.29123e-15 33.8526 11.1833 33.8526 11.1833 33.8526 11.1833 33.8526 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="33.8526" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.4" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28766" NUMCO="16" POCOOR="33.8526 0 33.8526 0 0 0 0 0 0 0 0 0 0 11.1833 0 11.1833 0 11.1833 0 11.1833 33.8526 11.1833 33.8526 11.1833 33.8526 11.1833 33.8526 11.1833 33.8526 0 33.8526 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="OliveDrab" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301114" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="311.702" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28799.9" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28731.9" NUMCO="16" POCOOR="0 0 0 0 34.7654 0 34.7654 0 34.7654 0 34.7654 0 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 0 11.1833 0 11.1833 0 11.1833 0 11.1833 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Sienna3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301114" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="345.827" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28799.9" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28766" NUMCO="16" POCOOR="0 0 0 0 34.7654 0 34.7654 0 34.7654 0 34.7654 0 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 0 11.1833 0 11.1833 0 11.1833 0 11.1833 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Chocolate1" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301114" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="277.211" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28799.9" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28697.4" NUMCO="16" POCOOR="0 0 0 0 34.7654 0 34.7654 0 34.7654 0 34.7654 0 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 0 11.1833 0 11.1833 0 11.1833 0 11.1833 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="CadetBlue3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301114" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="242.446" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28799.9" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28662.6" NUMCO="16" POCOOR="0 0 0 0 34.7654 0 34.7654 0 34.7654 0 34.7654 0 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 0 11.1833 0 11.1833 0 11.1833 0 11.1833 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="119.805" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Burlywood3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301114" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 119.805 -2.93428e-14 119.805 -2.93428e-14 119.805 -2.93428e-14 119.805 -2.93428e-14 119.805 11.1833 119.805 11.1833 119.805 11.1833 119.805 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="207.681" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28799.9" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28627.9" NUMCO="16" POCOOR="0 0 0 0 119.805 0 119.805 0 119.805 0 119.805 0 119.805 11.1833 119.805 11.1833 119.805 11.1833 119.805 11.1833 0 11.1833 0 11.1833 0 11.1833 0 11.1833 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Coral3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301114" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="172.915" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28799.9" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28593.1" NUMCO="16" POCOOR="0 0 0 0 34.7654 0 34.7654 0 34.7654 0 34.7654 0 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 0 11.1833 0 11.1833 0 11.1833 0 11.1833 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Goldenrod" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301114" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="138.15" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28799.9" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28558.4" NUMCO="16" POCOOR="0 0 0 0 34.7654 0 34.7654 0 34.7654 0 34.7654 0 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 0 11.1833 0 11.1833 0 11.1833 0 11.1833 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="OliveDrab" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301114" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="103.385" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28799.9" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28523.6" NUMCO="16" POCOOR="0 0 0 0 34.7654 0 34.7654 0 34.7654 0 34.7654 0 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 0 11.1833 0 11.1833 0 11.1833 0 11.1833 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="34.7654" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="CadetBlue4" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301114" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 -8.51478e-15 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="68.6206" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28799.9" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28488.8" NUMCO="16" POCOOR="0 0 0 0 34.7654 0 34.7654 0 34.7654 0 34.7654 0 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 34.7654 11.1833 0 11.1833 0 11.1833 0 11.1833 0 11.1833 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.1833" gWidth="345.827" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="33.8526" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="IndianRed4" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0301114" HEIGHT="11.1833" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 33.8526 -8.29122e-15 33.8526 -8.29122e-15 33.8526 -8.29122e-15 33.8526 -8.29122e-15 33.8526 11.1833 33.8526 11.1833 33.8526 11.1833 33.8526 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 2.73904e-15 11.1833 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.1833" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="33.8526" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28799.9" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28454.1" NUMCO="16" POCOOR="0 0 0 0 33.8526 0 33.8526 0 33.8526 0 33.8526 0 33.8526 11.1833 33.8526 11.1833 33.8526 11.1833 33.8526 11.1833 0 11.1833 0 11.1833 0 11.1833 0 11.1833 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.275" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="35.0504" ImageRes="1" GROUPS="-1073741747 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="OliveDrab" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.275" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.275" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="314.258" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28800" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28835.5" NUMCO="16" POCOOR="35.0504 0 35.0504 0 0 0 0 0 0 0 0 0 0 11.275 0 11.275 0 11.275 0 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 0 35.0504 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.275" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="35.0504" ImageRes="1" GROUPS="-1073741747 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Sienna3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.275" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.275" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="348.661" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28800" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28801.1" NUMCO="16" POCOOR="35.0504 0 35.0504 0 0 0 0 0 0 0 0 0 0 11.275 0 11.275 0 11.275 0 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 0 35.0504 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.275" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="35.0504" ImageRes="1" GROUPS="-1073741747 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Chocolate1" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.275" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.275" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="279.483" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28800" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28870.3" NUMCO="16" POCOOR="35.0504 0 35.0504 0 0 0 0 0 0 0 0 0 0 11.275 0 11.275 0 11.275 0 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 0 35.0504 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.275" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="35.0504" ImageRes="1" GROUPS="-1073741747 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="CadetBlue3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.275" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.275" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="244.433" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28800" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28905.3" NUMCO="16" POCOOR="35.0504 0 35.0504 0 0 0 0 0 0 0 0 0 0 11.275 0 11.275 0 11.275 0 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 0 35.0504 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.275" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="120.787" ImageRes="1" GROUPS="-1073741747 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Burlywood3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.275" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -120.787 4.4375e-14 -120.787 4.4375e-14 -120.787 4.4375e-14 -120.787 4.4375e-14 -120.787 -11.275 -120.787 -11.275 -120.787 -11.275 -120.787 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.275" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="209.383" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28800" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="29026.1" NUMCO="16" POCOOR="120.787 0 120.787 0 0 0 0 0 0 0 0 0 0 11.275 0 11.275 0 11.275 0 11.275 120.787 11.275 120.787 11.275 120.787 11.275 120.787 11.275 120.787 0 120.787 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.275" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="35.0504" ImageRes="1" GROUPS="-1073741747 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Coral3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.275" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.275" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="174.333" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28800" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28975.4" NUMCO="16" POCOOR="35.0504 0 35.0504 0 0 0 0 0 0 0 0 0 0 11.275 0 11.275 0 11.275 0 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 0 35.0504 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.275" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="35.0504" ImageRes="1" GROUPS="-1073741747 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Goldenrod" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.275" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.275" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="139.283" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28800" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="29010.5" NUMCO="16" POCOOR="35.0504 0 35.0504 0 0 0 0 0 0 0 0 0 0 11.275 0 11.275 0 11.275 0 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 0 35.0504 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.275" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="35.0504" ImageRes="1" GROUPS="-1073741747 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="OliveDrab" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.275" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.275" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="104.233" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28800" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="29045.5" NUMCO="16" POCOOR="35.0504 0 35.0504 0 0 0 0 0 0 0 0 0 0 11.275 0 11.275 0 11.275 0 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 0 35.0504 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.275" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="35.0504" ImageRes="1" GROUPS="-1073741747 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="CadetBlue4" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.275" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 1.28769e-14 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -35.0504 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.275" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="69.1831" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28800" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="29080.6" NUMCO="16" POCOOR="35.0504 0 35.0504 0 0 0 0 0 0 0 0 0 0 11.275 0 11.275 0 11.275 0 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 11.275 35.0504 0 35.0504 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.275" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="-180" WIDTH="34.1301" ImageRes="1" GROUPS="-1073741747 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="IndianRed4" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.275" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -34.1301 1.25388e-14 -34.1301 1.25388e-14 -34.1301 1.25388e-14 -34.1301 1.25388e-14 -34.1301 -11.275 -34.1301 -11.275 -34.1301 -11.275 -34.1301 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 -4.14223e-15 -11.275 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.275" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="34.1301" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28800" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="29114.7" NUMCO="16" POCOOR="34.1301 0 34.1301 0 0 0 0 0 0 0 0 0 0 11.275 0 11.275 0 11.275 0 11.275 34.1301 11.275 34.1301 11.275 34.1301 11.275 34.1301 11.275 34.1301 0 34.1301 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.2749" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="35.0503" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="OliveDrab" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.2749" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.2749" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="314.257" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="29080.3" NUMCO="16" POCOOR="0 0 0 0 35.0503 0 35.0503 0 35.0503 0 35.0503 0 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 0 11.2749 0 11.2749 0 11.2749 0 11.2749 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.2749" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="35.0503" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Sienna3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.2749" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.2749" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="348.661" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="29114.7" NUMCO="16" POCOOR="0 0 0 0 35.0503 0 35.0503 0 35.0503 0 35.0503 0 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 0 11.2749 0 11.2749 0 11.2749 0 11.2749 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.2749" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="35.0503" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Chocolate1" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.2749" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.2749" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="279.483" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="29045.5" NUMCO="16" POCOOR="0 0 0 0 35.0503 0 35.0503 0 35.0503 0 35.0503 0 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 0 11.2749 0 11.2749 0 11.2749 0 11.2749 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.2749" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="35.0503" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="CadetBlue3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.2749" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.2749" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="244.433" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="29010.5" NUMCO="16" POCOOR="0 0 0 0 35.0503 0 35.0503 0 35.0503 0 35.0503 0 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 0 11.2749 0 11.2749 0 11.2749 0 11.2749 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.2749" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="120.787" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Burlywood3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.2749" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -120.787 4.43749e-14 -120.787 4.43749e-14 -120.787 4.43749e-14 -120.787 4.43749e-14 -120.787 -11.2749 -120.787 -11.2749 -120.787 -11.2749 -120.787 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.2749" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="209.382" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28975.4" NUMCO="16" POCOOR="0 0 0 0 120.787 0 120.787 0 120.787 0 120.787 0 120.787 11.2749 120.787 11.2749 120.787 11.2749 120.787 11.2749 0 11.2749 0 11.2749 0 11.2749 0 11.2749 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.2749" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="35.0503" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Coral3" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.2749" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.2749" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="174.332" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28940.4" NUMCO="16" POCOOR="0 0 0 0 35.0503 0 35.0503 0 35.0503 0 35.0503 0 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 0 11.2749 0 11.2749 0 11.2749 0 11.2749 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.2749" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="35.0503" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="Goldenrod" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.2749" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.2749" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="139.282" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28905.3" NUMCO="16" POCOOR="0 0 0 0 35.0503 0 35.0503 0 35.0503 0 35.0503 0 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 0 11.2749 0 11.2749 0 11.2749 0 11.2749 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.2749" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="35.0503" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="OliveDrab" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.2749" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.2749" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="104.232" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28870.3" NUMCO="16" POCOOR="0 0 0 0 35.0503 0 35.0503 0 35.0503 0 35.0503 0 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 0 11.2749 0 11.2749 0 11.2749 0 11.2749 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.2749" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="35.0503" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="CadetBlue4" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.2749" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 1.28768e-14 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -35.0503 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.2749" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="69.1819" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28835.2" NUMCO="16" POCOOR="0 0 0 0 35.0503 0 35.0503 0 35.0503 0 35.0503 0 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 35.0503 11.2749 0 11.2749 0 11.2749 0 11.2749 0 11.2749 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="11.2749" gWidth="348.661" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="180" WIDTH="34.13" ImageRes="1" GROUPS="-1073741759 " LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="IndianRed4" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="1" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.0303582" HEIGHT="11.2749" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 -34.13 1.25388e-14 -34.13 1.25388e-14 -34.13 1.25388e-14 -34.13 1.25388e-14 -34.13 -11.2749 -34.13 -11.2749 -34.13 -11.2749 -34.13 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 -4.14222e-15 -11.2749 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="11.2749" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="34.13" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28499.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28800.2" NUMCO="16" POCOOR="0 0 0 0 34.13 0 34.13 0 34.13 0 34.13 0 34.13 11.2749 34.13 11.2749 34.13 11.2749 34.13 11.2749 0 11.2749 0 11.2749 0 11.2749 0 11.2749 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="342.992" gWidth="694.488" NUMPO="0" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="90" WIDTH="342.992" ImageRes="1" GROUPS="" LOCKR="1" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="5" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.283465" HEIGHT="1" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="" BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="0.995297" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="348.659" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28472.2" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28766" NUMCO="0" POCOOR="" EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="1.9098e-313" gWidth="1.6976e-313" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="20.5" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="4" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="24" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 20.5 0 20.5 0 20.5 0 20.5 0 20.5 24 20.5 24 20.5 24 20.5 24 0 24 0 24 0 24 0 24 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="1.061e-313" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="1.9098e-313" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28762.6" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28439" NUMCO="16" POCOOR="0 0 0 0 20.5 0 20.5 0 20.5 0 20.5 0 20.5 24 20.5 24 20.5 24 20.5 24 0 24 0 24 0 24 0 24 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<ITEXT CH="C" SHORTCUT="" CNAME="" FONTSIZE="22" FONT="Creative Commons Regular" />
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" FONTSIZE="22" NAME="" FONT="Creative Commons Regular" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="6.36599e-314" gWidth="0" NUMPO="0" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="185.669" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="5" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.283465" HEIGHT="1" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="" BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="2.03712e-314" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="10" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28643.6" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28915.1" NUMCO="0" POCOOR="" EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="685.984" gWidth="-1.77636e-15" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="107.5" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="4" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="21" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 107.5 0 107.5 0 107.5 0 107.5 0 107.5 21 107.5 21 107.5 21 107.5 21 0 21 0 21 0 21 0 21 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="23.616" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="-5.328" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28766" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28462" NUMCO="16" POCOOR="0 0 0 0 107.5 0 107.5 0 107.5 0 107.5 0 107.5 21 107.5 21 107.5 21 107.5 21 0 21 0 21 0 21 0 21 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<ITEXT CH="Initiiert von Sense.Lab e.V." SHORTCUT="" CNAME="" FONTSIZE="7" FONT="Nimbus Sans L Regular" />
|
||||||
|
<para ALIGN="0" PSHORTCUT="" SHORTCUT="" CNAME="" FONTSIZE="7" NAME="" FONT="Nimbus Sans L Regular" />
|
||||||
|
<ITEXT CH="http://cryptocd.org" SHORTCUT="" CNAME="" FONTSIZE="7" FONT="Nimbus Sans L Regular" />
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" FONTSIZE="7" NAME="" FONT="Nimbus Sans L Regular" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="0" gWidth="0" NUMPO="0" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="90" WIDTH="342.992" ImageRes="1" GROUPS="" LOCKR="1" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="5" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.283465" HEIGHT="1" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="" BASEOF="0" PICART="1" COLUMNS="1" OwnPage="1" LAYER="0" BOOKMARK="0" gYpos="0" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="0" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="57414" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28766" NUMCO="0" POCOOR="" EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="-1.45578e+308" gWidth="-8.95322e+307" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="0.335449" ROT="0" WIDTH="343.5" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="0.44401" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="White" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="0" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="2" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="341" DASHOFF="0" PFILE2="" PFILE="logox_grau_hintergrund.png" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="0" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 343.5 0 343.5 0 343.5 0 343.5 0 343.5 341 343.5 341 343.5 341 343.5 341 0 341 0 341 0 341 0 341 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="1" LAYER="0" BOOKMARK="0" gYpos="-8.95322e+307" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="-1.17203e+307" DASHS="" IRENDER="0" TEXTFLOW="0" YPOS="57415" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28421" NUMCO="16" POCOOR="0 0 0 0 343.5 0 343.5 0 343.5 0 343.5 0 343.5 341 343.5 341 343.5 341 343.5 341 0 341 0 341 0 341 0 341 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="0" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="0" gWidth="7.64052e-316" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="226" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="4" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="77" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 226 0 226 0 226 0 226 0 226 77 226 77 226 77 226 77 0 77 0 77 0 77 0 77 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="1" LAYER="0" BOOKMARK="0" gYpos="1.18832e-312" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="1.2732e-313" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="57441" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28779" NUMCO="16" POCOOR="0 0 0 0 226 0 226 0 226 0 226 0 226 77 226 77 226 77 226 77 0 77 0 77 0 77 0 77 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<ITEXT CH="sicher kommunizieren" SHORTCUT="" CNAME="" FONTSIZE="16" FONT="Nimbus Mono L Regular" />
|
||||||
|
<para ALIGN="0" PSHORTCUT="" SHORTCUT="" CNAME="" PARENT="Überschrift" NAME="" />
|
||||||
|
<ITEXT CH="CryptoCD" SHORTCUT="" CNAME="" FONTSIZE="24" FONT="Nimbus Mono L Bold" />
|
||||||
|
<para ALIGN="0" PSHORTCUT="" SHORTCUT="" CNAME="" PARENT="Überschrift" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="-3.31569e-136" gWidth="1.555e-29" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="320.2" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="4" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="199.61" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 320.2 0 320.2 0 320.2 0 320.2 0 320.2 199.61 320.2 199.61 320.2 199.61 320.2 199.61 0 199.61 0 199.61 0 199.61 0 199.61 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="1" LAYER="0" BOOKMARK="0" gYpos="734.2" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="222.552" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="57491.3" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28433.8" NUMCO="16" POCOOR="0 0 0 0 320.2 0 320.2 0 320.2 0 320.2 0 320.2 199.61 320.2 199.61 320.2 199.61 320.2 199.61 0 199.61 0 199.61 0 199.61 0 199.61 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<ITEXT SCOLOR="Black" TXTSHX="5" TXTSHY="-5" CH="Die CryptoCD ist eine Softwaresammlung (für Windows, Linux und Mac OS X) mit ausführlicher Dokumentation zur sicheren Kommunikation im Internet. Möglichst einstiegsfreundlich geht es dabei um folgende Themen:" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH="E-Mail-Verschlüsselung" FEATURES="inherit smallcaps " BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<ITEXT SCOLOR="Black" TXTSHX="5" TXTSHY="-5" CH=" " TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit smallcaps " BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH=" Sicheres Chatten" FEATURES="inherit smallcaps " BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<ITEXT SCOLOR="Black" TXTSHX="5" TXTSHY="-5" CH=" " TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit smallcaps " BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH=" Anonymes Surfen" FEATURES="inherit smallcaps " BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para SCOLOR="Black" ALIGN="1" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit smallcaps " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<para SCOLOR="Black" ALIGN="1" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit smallcaps " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<para SCOLOR="Black" ALIGN="1" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit smallcaps " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH="Inhalt & Programme:" FEATURES="inherit " BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH="• Grundlagen & Funktion von Verschlüsselung" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH="• Installation & Einrichtung der Programme" SHORTCUT="" CNAME="" />
|
||||||
|
<ITEXT SCOLOR="Black" TXTSHX="5" TXTSHY="-5" CH=" Schritt für Schritt" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH="• E-Mail: Mozilla Thunderbird, Enigmail, GnuPG" BASEO="1" SHORTCUT="" CNAME="" FONTSIZE="10" FONT="Bitstream Vera Sans Roman" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH="• Chat: Pidgin, Pidgin-Encryption" SHORTCUT="" CNAME="" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<ITEXT CH="• Surfen: Mozilla Firefox, Tor, Vidalia, Torbutton" SHORTCUT="" CNAME="" />
|
||||||
|
<para SCOLOR="Black" ALIGN="0" TXTSHX="5" LINESP="11.8" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit " PSHORTCUT="" BASEO="1" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="" FONTSIZE="10" NAME="" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Bitstream Vera Sans Roman" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="7.62991e-316" gWidth="0" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="345.827" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="4" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="31.2948" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 345.827 0 345.827 0 345.827 0 345.827 0 345.827 31.2948 345.827 31.2948 345.827 31.2948 345.827 31.2948 0 31.2948 0 31.2948 0 31.2948 0 31.2948 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="1" LAYER="0" BOOKMARK="0" gYpos="2.53195e-264" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="2.25993e-311" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="57432.8" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28420.3" NUMCO="16" POCOOR="0 0 0 0 345.827 0 345.827 0 345.827 0 345.827 0 345.827 31.2948 345.827 31.2948 345.827 31.2948 345.827 31.2948 0 31.2948 0 31.2948 0 31.2948 0 31.2948 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<ITEXT CH="Die CryptoCD" SHORTCUT="" CNAME="" FONTSIZE="24" FONT="Labtop Superwide Regular" />
|
||||||
|
<para ALIGN="1" PSHORTCUT="" SHORTCUT="" CNAME="" FONTSIZE="24" NAME="" FONT="Labtop Superwide Regular" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="-3.31569e-136" gWidth="1.555e-29" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="20.5" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="4" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="24" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 20.5 0 20.5 0 20.5 0 20.5 0 20.5 24 20.5 24 20.5 24 20.5 24 0 24 0 24 0 24 0 24 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="1" LAYER="0" BOOKMARK="0" gYpos="654.2" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="222.552" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="57704.4" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28439" NUMCO="16" POCOOR="0 0 0 0 20.5 0 20.5 0 20.5 0 20.5 0 20.5 24 20.5 24 20.5 24 20.5 24 0 24 0 24 0 24 0 24 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<ITEXT CH="C" SHORTCUT="" CNAME="" FONTSIZE="22" FONT="Creative Commons Regular" />
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" FONTSIZE="22" NAME="" FONT="Creative Commons Regular" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="-1.08211e+94" gWidth="1.555e-29" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="107.5" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="4" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="21" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 107.5 0 107.5 0 107.5 0 107.5 0 107.5 21 107.5 21 107.5 21 107.5 21 0 21 0 21 0 21 0 21 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="1" LAYER="0" BOOKMARK="0" gYpos="-37.248" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="222.552" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="57707.8" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28462" NUMCO="16" POCOOR="0 0 0 0 107.5 0 107.5 0 107.5 0 107.5 0 107.5 21 107.5 21 107.5 21 107.5 21 0 21 0 21 0 21 0 21 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<ITEXT CH="Initiiert von Sense.Lab e.V." SHORTCUT="" CNAME="" FONTSIZE="7" FONT="Nimbus Sans L Regular" />
|
||||||
|
<para ALIGN="0" PSHORTCUT="" SHORTCUT="" CNAME="" FONTSIZE="7" NAME="" FONT="Nimbus Sans L Regular" />
|
||||||
|
<ITEXT CH="http://cryptocd.org" SHORTCUT="" CNAME="" />
|
||||||
|
<para ALIGN="0" PSHORTCUT="" SHORTCUT="" CNAME="" FONTSIZE="7" NAME="" FONT="Nimbus Sans L Regular" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="371.338" gWidth="0.544" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="207" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="4" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="96.5" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 207 0 207 0 207 0 207 0 207 96.5 207 96.5 207 96.5 207 96.5 0 96.5 0 96.5 0 96.5 0 96.5 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="33.456" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="-7.752" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28620" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28895" NUMCO="16" POCOOR="0 0 0 0 207 0 207 0 207 0 207 0 207 96.5 207 96.5 207 96.5 207 96.5 0 96.5 0 96.5 0 96.5 0 96.5 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<ITEXT CH="sicher kommunizieren" SHORTCUT="" CNAME="" FONTSIZE="24" FONT="GeosansLight Regular" />
|
||||||
|
<para ALIGN="2" PSHORTCUT="" SHORTCUT="" CNAME="" PARENT="Überschrift" NAME="" />
|
||||||
|
<ITEXT CH="crypto cd" SHORTCUT="" CNAME="" FONTSIZE="34" FONT="Labtop Superwide Regular" />
|
||||||
|
<para ALIGN="2" PSHORTCUT="" SHORTCUT="" CNAME="" PARENT="Überschrift" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
</DOCUMENT>
|
||||||
|
</SCRIBUSUTF8NEW>
|
640
v1.4.4/cover/cover_inlay_booklet.sla
Normal file
|
@ -0,0 +1,640 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<SCRIBUSUTF8NEW Version="1.3.4" >
|
||||||
|
<DOCUMENT HalfRes="1" MAGMAX="3200" TextPenShade="100" MAJGRID="100.001" ABSTSPALTEN="11" dispX="0.4" ScratchBottom="283465" showBleed="1" AUTOCHECK="0" LANGUAGE="German" DPIn2="" DPgam="0" HCMS="0" UnderlineWidth="-1" TabFill="" DGAP="0" ORIENTATION="0" dispY="0.4" PASPECT="1" WIDTH="1" POLYR="0" SHOWLINK="0" MINWORDLEN="3" DPIn3="" UnderlinePos="-1" VTIEFSC="100" DOCLANGINFO="" COMMENTS="" BleedBottom="0" AutoSaveTime="600000" POLYS="0" GuideRad="10" rulerMode="1" TITLE="" KEYWORDS="" TabWidth="36" DSIZE="12" AUTOSPALTEN="1" PAGESIZE="A4" STIL="1" TextBackGroundShade="100" PEN="Black" POLYC="4" SnapToGuides="1" DISc="1" GROUPC="4" DOCFORMAT="" DOCDATE="" BORDERTOP="68.0315" currentProfile="Postscript" MARGC="#0000ff" EndArrow="0" SHOWBASE="0" SHOWGRID="0" SnapToGrid="0" GUIDELOCK="0" StrikeThruPos="-1" WIDTHLINE="1" TextStrokeShade="100" SHOWLAYERM="0" DPuse="0" DPSo="0" DOCSOURCE="" FIRSTNUM="1" BleedRight="0" GuideC="#000080" BRUSH="Black" StartArrow="0" ScratchRight="28346.5" POLYF="0.707107" SHOWMARGIN="0" DIIm="0" DPbla="1" StrikeThruWidth="-1" VHOCHSC="100" DOCTYPE="" BORDERBOTTOM="68.0315" BRUSHSHADE="100" StrokeText="Black" BASEGRID="14.4" VTIEF="33" DOCCONTRIB="" DOCRELATION="" PICTSCX="1" CPICT="White" PENLINE="Black" AutoSave="0" BASEO="0" DOCIDENT="" BOOK="0" constrain="15" PICTSCY="1" MAGSTEP="200" TextLineColor="None" ScratchTop="28346.5" POLYFD="0" DPSFo="0" AUTOL="20" PUBLISHER="" BleedTop="0" ANZPAGES="1" PSCALE="1" LINESHADE="100" HYCOUNT="2" AUTHOR="" UNITS="4" BleedLeft="0" BORDERRIGHT="82.2047" RANDF="0" MAJORC="#00ff00" PENSHADE="100" PENTEXT="Black" GRAB="4" showcolborders="0" SHOWGUIDES="1" DPInCMYK="" DPPr="" DPMo="" PAGEHEIGHT="841.89" PAGEWIDTH="595.276" BACKG="1" GuideZ="10" TextBackGround="None" MINGRID="20.0013" VHOCH="33" DOCCOVER="" DCOL="1" EmbeddedPath="0" rulerYoffset="0" SHOWPICT="1" SHOWFRAME="1" AUTOMATIC="1" ALAYER="0" DOCRIGHTS="" PICTSHADE="100" ScratchLeft="28346.5" rulerXoffset="0" showrulers="1" DPIn="" VKAPIT="75" DFONT="Nimbus Sans L Bold Condensed" BORDERLEFT="85.0394" PAGEC="#ffffff" BaseC="#c0c0c0" MINORC="#00ff00" MAGMIN="10" STILLINE="1" TextLineShade="100" SHOWControl="0" >
|
||||||
|
<CheckProfile checkTransparency="1" autoCheck="1" maxResolution="4800" minResolution="72" checkOverflow="1" ignoreErrors="0" checkRasterPDF="1" checkResolution="1" checkGlyphs="1" Name="PDF 1.3" checkAnnotations="0" checkPictures="1" checkForGIF="1" ignoreOffLayers="0" checkOrphans="1" />
|
||||||
|
<CheckProfile checkTransparency="0" autoCheck="1" maxResolution="4800" minResolution="72" checkOverflow="1" ignoreErrors="0" checkRasterPDF="1" checkResolution="1" checkGlyphs="1" Name="PDF 1.4" checkAnnotations="0" checkPictures="1" checkForGIF="1" ignoreOffLayers="0" checkOrphans="1" />
|
||||||
|
<CheckProfile checkTransparency="0" autoCheck="1" maxResolution="2400" minResolution="72" checkOverflow="1" ignoreErrors="0" checkRasterPDF="1" checkResolution="1" checkGlyphs="1" Name="PDF 1.5" checkAnnotations="0" checkPictures="1" checkForGIF="1" ignoreOffLayers="0" checkOrphans="1" />
|
||||||
|
<CheckProfile checkTransparency="1" autoCheck="1" maxResolution="4800" minResolution="144" checkOverflow="1" ignoreErrors="0" checkRasterPDF="1" checkResolution="1" checkGlyphs="1" Name="PDF/X-3" checkAnnotations="1" checkPictures="1" checkForGIF="1" ignoreOffLayers="0" checkOrphans="1" />
|
||||||
|
<CheckProfile checkTransparency="1" autoCheck="1" maxResolution="4800" minResolution="72" checkOverflow="1" ignoreErrors="0" checkRasterPDF="1" checkResolution="1" checkGlyphs="1" Name="PostScript" checkAnnotations="0" checkPictures="1" checkForGIF="1" ignoreOffLayers="0" checkOrphans="1" />
|
||||||
|
<CheckProfile checkTransparency="0" autoCheck="0" maxResolution="0" minResolution="0" checkOverflow="0" ignoreErrors="0" checkRasterPDF="0" checkResolution="0" checkGlyphs="0" Name="Postscript" checkAnnotations="0" checkPictures="0" checkForGIF="0" ignoreOffLayers="0" checkOrphans="0" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0f070000" NAME="AliceBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000f2305" NAME="AntiqueWhite" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00102400" NAME="AntiqueWhite1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000f2211" NAME="AntiqueWhite2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000d1d32" NAME="AntiqueWhite3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00081374" NAME="AntiqueWhite4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#80002b00" NAME="Aquamarine" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#80002b00" NAME="Aquamarine1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#78002811" NAME="Aquamarine2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#67002332" NAME="Aquamarine3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#46001774" NAME="Aquamarine4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0f000000" NAME="Azure" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0f000000" NAME="Azure1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0e000011" NAME="Azure2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0c000032" NAME="Azure3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#08000074" NAME="Azure4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000190a" NAME="Beige" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001b3b00" NAME="Bisque" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001b3b00" NAME="Bisque1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00193711" NAME="Bisque2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00162f32" NAME="Bisque3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000e2074" NAME="Bisque4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ff" NAME="Black" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00143200" NAME="BlanchedAlmond" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ffff0000" NAME="Blue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ffff0000" NAME="Blue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#eeee0011" NAME="Blue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cdcd0032" NAME="Blue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b8b0074" NAME="Blue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#58b7001d" NAME="BlueViolet" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007b7b5a" NAME="Brown" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00bfbf00" NAME="Brown1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00b3b311" NAME="Brown2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#009a9a32" NAME="Brown3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00686874" NAME="Brown4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00265721" NAME="Burlywood" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#002c6400" NAME="Burlywood1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00295d11" NAME="Burlywood2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00235032" NAME="Burlywood3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00183674" NAME="Burlywood4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#4102005f" NAME="CadetBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#670a0000" NAME="CadetBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#60090011" NAME="CadetBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#53080032" NAME="CadetBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#38050074" NAME="CadetBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8000ff00" NAME="Chartreuse" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8000ff00" NAME="Chartreuse1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7800ee11" NAME="Chartreuse2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#6700cd32" NAME="Chartreuse3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#46008b74" NAME="Chartreuse4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0069b42d" NAME="Chocolate" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0080db00" NAME="Chocolate1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0078cd11" NAME="Chocolate2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0067b032" NAME="Chocolate3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00467874" NAME="Chocolate4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0080af00" NAME="Coral" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008da900" NAME="Coral1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00849e11" NAME="Coral2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00728832" NAME="Coral3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#004d5c74" NAME="Coral4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#89580012" NAME="CornflowerBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00072300" NAME="Cornsilk" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00072300" NAME="Cornsilk1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00062111" NAME="Cornsilk2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00051c32" NAME="Cornsilk3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00031374" NAME="Cornsilk4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff000000" NAME="Cyan" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff000000" NAME="Cyan1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ee000011" NAME="Cyan2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cd000032" NAME="Cyan3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b000074" NAME="Cyan4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b8b0074" NAME="DarkBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b000074" NAME="DarkCyan" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0032ad47" NAME="DarkGoldenrod" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0046f000" NAME="DarkGoldenrod1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0041e011" NAME="DarkGoldenrod2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0038c132" NAME="DarkGoldenrod3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00268374" NAME="DarkGoldenrod4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#6400649b" NAME="DarkGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000056" NAME="DarkGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00065242" NAME="DarkKhaki" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008b0074" NAME="DarkMagenta" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#16003c94" NAME="DarkOliveGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#35008f00" NAME="DarkOliveGreen1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#32008611" NAME="DarkOliveGreen2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2b007332" NAME="DarkOliveGreen3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1d004e74" NAME="DarkOliveGreen4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0073ff00" NAME="DarkOrange" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0080ff00" NAME="DarkOrange1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0078ee11" NAME="DarkOrange2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0067cd32" NAME="DarkOrange3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00468b74" NAME="DarkOrange4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#339a0033" NAME="DarkOrchid" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#40c10000" NAME="DarkOrchid1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3cb40011" NAME="DarkOrchid2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#339b0032" NAME="DarkOrchid3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#23690074" NAME="DarkOrchid4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008b8b74" NAME="DarkRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00536f16" NAME="DarkSalmon" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2d002d43" NAME="DarkSeaGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3e003e00" NAME="DarkSeaGreen1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3a003a11" NAME="DarkSeaGreen2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#32003232" NAME="DarkSeaGreen3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#22002274" NAME="DarkSeaGreen4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#434e0074" NAME="DarkSlateBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#200000b0" NAME="DarkSlateGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#68000000" NAME="DarkSlateGrey1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#61000011" NAME="DarkSlateGrey2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#54000032" NAME="DarkSlateGrey3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#39000074" NAME="DarkSlateGrey4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#d103002e" NAME="DarkTurquoise" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3fd3002c" NAME="DarkViolet" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00eb6c00" NAME="DeepPink" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00eb6c00" NAME="DeepPink1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00dc6511" NAME="DeepPink2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00bd5732" NAME="DeepPink3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00813b74" NAME="DeepPink4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff400000" NAME="DeepSkyBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff400000" NAME="DeepSkyBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ee3c0011" NAME="DeepSkyBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cd330032" NAME="DeepSkyBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b230074" NAME="DeepSkyBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000096" NAME="DimGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#e16f0000" NAME="DodgerBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#e16f0000" NAME="DodgerBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#d2680011" NAME="DodgerBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#b5590032" NAME="DodgerBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7b3d0074" NAME="DodgerBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0090904d" NAME="Firebrick" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00cfcf00" NAME="Firebrick1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00c2c211" NAME="Firebrick2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00a7a732" NAME="Firebrick3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00717174" NAME="Firebrick4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00050f00" NAME="FloralWhite" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#69006974" NAME="ForestGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000023" NAME="Gainsboro" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#07070000" NAME="GhostWhite" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0028ff00" NAME="Gold" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0028ff00" NAME="Gold1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0025ee11" NAME="Gold2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0020cd32" NAME="Gold3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00168b74" NAME="Gold4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0035ba25" NAME="Goldenrod" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003eda00" NAME="Goldenrod1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003acc11" NAME="Goldenrod2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0032b032" NAME="Goldenrod3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00227774" NAME="Goldenrod4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff00ff00" NAME="Green" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff00ff00" NAME="Green1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ee00ee11" NAME="Green2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cd00cd32" NAME="Green3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b008b74" NAME="Green4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5200d000" NAME="GreenYellow" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000041" NAME="Grey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ff" NAME="Grey0" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000fc" NAME="Grey1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000e5" NAME="Grey10" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000000" NAME="Grey100" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000e3" NAME="Grey11" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000e0" NAME="Grey12" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000de" NAME="Grey13" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000db" NAME="Grey14" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000d9" NAME="Grey15" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000d6" NAME="Grey16" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000d4" NAME="Grey17" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000d1" NAME="Grey18" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000cf" NAME="Grey19" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000fa" NAME="Grey2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000cc" NAME="Grey20" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000c9" NAME="Grey21" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000c7" NAME="Grey22" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000c4" NAME="Grey23" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000c2" NAME="Grey24" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000bf" NAME="Grey25" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000bd" NAME="Grey26" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ba" NAME="Grey27" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000b8" NAME="Grey28" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000b5" NAME="Grey29" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000f7" NAME="Grey3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000b2" NAME="Grey30" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000b0" NAME="Grey31" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ad" NAME="Grey32" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ab" NAME="Grey33" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000a8" NAME="Grey34" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000a6" NAME="Grey35" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000a3" NAME="Grey36" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000a1" NAME="Grey37" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000009e" NAME="Grey38" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000009c" NAME="Grey39" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000f5" NAME="Grey4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000099" NAME="Grey40" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000096" NAME="Grey41" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000094" NAME="Grey42" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000091" NAME="Grey43" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000008f" NAME="Grey44" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000008c" NAME="Grey45" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000008a" NAME="Grey46" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000087" NAME="Grey47" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000085" NAME="Grey48" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000082" NAME="Grey49" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000f2" NAME="Grey5" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000080" NAME="Grey50" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000007d" NAME="Grey51" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000007a" NAME="Grey52" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000078" NAME="Grey53" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000075" NAME="Grey54" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000073" NAME="Grey55" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000070" NAME="Grey56" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000006e" NAME="Grey57" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000006b" NAME="Grey58" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000069" NAME="Grey59" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000f0" NAME="Grey6" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000066" NAME="Grey60" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000063" NAME="Grey61" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000061" NAME="Grey62" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000005e" NAME="Grey63" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000005c" NAME="Grey64" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000059" NAME="Grey65" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000057" NAME="Grey66" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000054" NAME="Grey67" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000052" NAME="Grey68" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000004f" NAME="Grey69" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000ed" NAME="Grey7" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000004c" NAME="Grey70" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000004a" NAME="Grey71" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000047" NAME="Grey72" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000045" NAME="Grey73" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000042" NAME="Grey74" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000040" NAME="Grey75" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000003d" NAME="Grey76" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000003b" NAME="Grey77" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000038" NAME="Grey78" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000036" NAME="Grey79" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000eb" NAME="Grey8" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000033" NAME="Grey80" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000030" NAME="Grey81" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000002e" NAME="Grey82" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000002b" NAME="Grey83" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000029" NAME="Grey84" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000026" NAME="Grey85" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000024" NAME="Grey86" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000021" NAME="Grey87" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000001f" NAME="Grey88" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000001c" NAME="Grey89" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000000e8" NAME="Grey9" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000001a" NAME="Grey90" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000017" NAME="Grey91" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000014" NAME="Grey92" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000012" NAME="Grey93" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000000f" NAME="Grey94" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000000d" NAME="Grey95" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000000a" NAME="Grey96" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000008" NAME="Grey97" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000005" NAME="Grey98" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000003" NAME="Grey99" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0f000f00" NAME="Honeydew" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0f000f00" NAME="Honeydew1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0e000e11" NAME="Honeydew2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0c000c32" NAME="Honeydew3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#08000874" NAME="Honeydew4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00964b00" NAME="HotPink" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00914b00" NAME="HotPink1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00844711" NAME="HotPink2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006d3d32" NAME="HotPink3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00512974" NAME="HotPink4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00717132" NAME="IndianRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00959500" NAME="IndianRed1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008b8b11" NAME="IndianRed2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00787832" NAME="IndianRed3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00515174" NAME="IndianRed4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000f00" NAME="Ivory" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000f00" NAME="Ivory1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000e11" NAME="Ivory2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000c32" NAME="Ivory3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000874" NAME="Ivory4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000a640f" NAME="Khaki" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00097000" NAME="Khaki1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00086911" NAME="Khaki2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00075a32" NAME="Khaki3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00053d74" NAME="Khaki4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#14140005" NAME="Lavender" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000f0a00" NAME="LavenderBlush" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000f0a00" NAME="LavenderBlush1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000e0911" NAME="LavenderBlush2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000c0832" NAME="LavenderBlush3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00080574" NAME="LavenderBlush4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8000fc03" NAME="LawnGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00053200" NAME="LemonChiffon" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00053200" NAME="LemonChiffon1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00052f11" NAME="LemonChiffon2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00042832" NAME="LemonChiffon3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00021b74" NAME="LemonChiffon4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#390e0019" NAME="LightBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#40100000" NAME="LightBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3c0f0011" NAME="LightBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#330d0032" NAME="LightBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#23080074" NAME="LightBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0070700f" NAME="LightCoral" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1f000000" NAME="LightCyan" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1f000000" NAME="LightCyan1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1d000011" NAME="LightCyan2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#19000032" NAME="LightCyan3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#11000074" NAME="LightCyan4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00116c11" NAME="LightGoldenrod" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00137400" NAME="LightGoldenrod1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00126c11" NAME="LightGoldenrod2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000f5d32" NAME="LightGoldenrod3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000a3f74" NAME="LightGoldenrod4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00002805" NAME="LightGoldenrodYellow" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5e005e11" NAME="LightGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000002c" NAME="LightGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00493e00" NAME="LightPink" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00514600" NAME="LightPink1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#004c4111" NAME="LightPink2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00413832" NAME="LightPink3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#002c2674" NAME="LightPink4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005f8500" NAME="LightSalmon" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005f8500" NAME="LightSalmon1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00597c11" NAME="LightSalmon2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#004c6b32" NAME="LightSalmon3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00344974" NAME="LightSalmon4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#9200084d" NAME="LightSeaGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#732c0005" NAME="LightSkyBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#4f1d0000" NAME="LightSkyBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#4a1b0011" NAME="LightSkyBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#40170032" NAME="LightSkyBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2b100074" NAME="LightSkyBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7b8f0000" NAME="LightSlateBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#22110066" NAME="LightSlateGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2e1a0021" NAME="LightSteelBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#351e0000" NAME="LightSteelBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#321c0011" NAME="LightSteelBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2b180032" NAME="LightSteelBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1d100074" NAME="LightSteelBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00001f00" NAME="LightYellow" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00001f00" NAME="LightYellow1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00001d11" NAME="LightYellow2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00001932" NAME="LightYellow3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00001174" NAME="LightYellow4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#9b009b32" NAME="LimeGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000a1405" NAME="Linen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00ff0000" NAME="Magenta" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00ff0000" NAME="Magenta1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00ee0011" NAME="Magenta2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00cd0032" NAME="Magenta3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008b0074" NAME="Magenta4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0080504f" NAME="Maroon" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00cb4c00" NAME="Maroon1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00be4711" NAME="Maroon2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00a43d32" NAME="Maroon3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006f2974" NAME="Maroon4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#67002332" NAME="MediumAquamarine" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cdcd0032" NAME="MediumBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#197e002c" NAME="MediumOrchid" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1f990000" NAME="MediumOrchid1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1d8f0011" NAME="MediumOrchid2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#197b0032" NAME="MediumOrchid3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#11540074" NAME="MediumOrchid4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#486b0024" NAME="MediumPurple" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#547d0000" NAME="MediumPurple1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#4f750011" NAME="MediumPurple2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#44650032" NAME="MediumPurple3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2e440074" NAME="MediumPurple4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7700424c" NAME="MediumSeaGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#73860011" NAME="MediumSlateBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#fa006005" NAME="MediumSpringGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8900052e" NAME="MediumTurquoise" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00b24238" NAME="MediumVioletRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5757008f" NAME="MidnightBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0a000500" NAME="MintCream" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001b1e00" NAME="MistyRose" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001b1e00" NAME="MistyRose1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00191c11" NAME="MistyRose2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00161832" NAME="MistyRose3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000e1074" NAME="MistyRose4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001b4a00" NAME="Moccasin" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00215200" NAME="NavajoWhite" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00215200" NAME="NavajoWhite1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001f4d11" NAME="NavajoWhite2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001a4232" NAME="NavajoWhite3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00122d74" NAME="NavajoWhite4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8080007f" NAME="NavyBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00081702" NAME="OldLace" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#23006b71" NAME="OliveDrab" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3f00c100" NAME="OliveDrab1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3b00b411" NAME="OliveDrab2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#33009b32" NAME="OliveDrab3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#22006974" NAME="OliveDrab4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005aff00" NAME="Orange" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005aff00" NAME="Orange1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0054ee11" NAME="Orange2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0048cd32" NAME="Orange3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00318b74" NAME="Orange4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00baff00" NAME="OrangeRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00baff00" NAME="OrangeRed1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00aeee11" NAME="OrangeRed2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0096cd32" NAME="OrangeRed3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00668b74" NAME="OrangeRed4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006a0425" NAME="Orchid" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007c0500" NAME="Orchid1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00740511" NAME="Orchid2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00640432" NAME="Orchid3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00440274" NAME="Orchid4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00064411" NAME="PaleGoldenrod" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#63006304" NAME="PaleGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#65006500" NAME="PaleGreen1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5e005e11" NAME="PaleGreen2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#51005132" NAME="PaleGreen3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#37003774" NAME="PaleGreen4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#3f000011" NAME="PaleTurquoise" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#44000000" NAME="PaleTurquoise1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#40000011" NAME="PaleTurquoise2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#37000032" NAME="PaleTurquoise3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#25000074" NAME="PaleTurquoise4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006b4824" NAME="PaleVioletRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007d5400" NAME="PaleVioletRed1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00754f11" NAME="PaleVioletRed2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00654432" NAME="PaleVioletRed3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00442e74" NAME="PaleVioletRed4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00102a00" NAME="PapayaWhip" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00254600" NAME="PeachPuff" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00254600" NAME="PeachPuff1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00234111" NAME="PeachPuff2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001e3832" NAME="PeachPuff3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00142674" NAME="PeachPuff4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00488e32" NAME="Peru" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003f3400" NAME="Pink" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#004a3a00" NAME="Pink1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00453611" NAME="Pink2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003c2f32" NAME="Pink3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00281f74" NAME="Pink4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003d0022" NAME="Plum" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00440000" NAME="Plum1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00400011" NAME="Plum2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00370032" NAME="Plum3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00250074" NAME="Plum4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#36060019" NAME="PowderBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#50d0000f" NAME="Purple" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#64cf0000" NAME="Purple1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5dc20011" NAME="Purple2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#50a70032" NAME="Purple3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#36710074" NAME="Purple4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00ffff00" NAME="Red" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00ffff00" NAME="Red1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00eeee11" NAME="Red2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00cdcd32" NAME="Red3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#008b8b74" NAME="Red4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#002d2d43" NAME="RosyBrown" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003e3e00" NAME="RosyBrown1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003a3a11" NAME="RosyBrown2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00323232" NAME="RosyBrown3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00222274" NAME="RosyBrown4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#a078001e" NAME="RoyalBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#b7890000" NAME="RoyalBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ab800011" NAME="RoyalBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#936e0032" NAME="RoyalBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#644b0074" NAME="RoyalBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00467874" NAME="SaddleBrown" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007a8805" NAME="Salmon" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00739600" NAME="Salmon1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006c8c11" NAME="Salmon2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005d7932" NAME="Salmon3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#003f5274" NAME="Salmon4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0050940b" NAME="SandyBrown" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5d003474" NAME="SeaGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ab006000" NAME="SeaGreen1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#a0005a11" NAME="SeaGreen2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8a004d32" NAME="SeaGreen3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#5d003474" NAME="SeaGreen4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000a1100" NAME="Seashell" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000a1100" NAME="Seashell1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00091011" NAME="Seashell2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00080e32" NAME="Seashell3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00050974" NAME="Seashell4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#004e735f" NAME="Sienna" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007db800" NAME="Sienna1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0075ac11" NAME="Sienna2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00659432" NAME="Sienna3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00446574" NAME="Sienna4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#641d0014" NAME="SkyBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#78310000" NAME="SkyBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#702e0011" NAME="SkyBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#61270032" NAME="SkyBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#411b0074" NAME="SkyBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#63730032" NAME="SlateBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7c900000" NAME="SlateBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#74870011" NAME="SlateBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#64740032" NAME="SlateBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#444f0074" NAME="SlateBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2010006f" NAME="SlateGrey" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#391d0000" NAME="SlateGrey1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#351b0011" NAME="SlateGrey2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#2e170032" NAME="SlateGrey3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#1f100074" NAME="SlateGrey4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00050500" NAME="Snow" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00050500" NAME="Snow1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00050511" NAME="Snow2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00040432" NAME="Snow3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00020274" NAME="Snow4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff008000" NAME="SpringGreen" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff008000" NAME="SpringGreen1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ee007811" NAME="SpringGreen2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cd006732" NAME="SpringGreen3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b004674" NAME="SpringGreen4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#6e32004b" NAME="SteelBlue" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#9c470000" NAME="SteelBlue1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#92420011" NAME="SteelBlue2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#7e390032" NAME="SteelBlue3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#55270074" NAME="SteelBlue4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001e462d" NAME="Tan" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#005ab000" NAME="Tan1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0054a511" NAME="Tan2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00488e32" NAME="Tan3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00316074" NAME="Tan4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00190027" NAME="Thistle" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001e0000" NAME="Thistle1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#001c0011" NAME="Thistle2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00180032" NAME="Thistle3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00100074" NAME="Thistle4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#009cb800" NAME="Tomato" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#009cb800" NAME="Tomato1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0092ac11" NAME="Tomato2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#007e9432" NAME="Tomato3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00556574" NAME="Tomato4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#a000101f" NAME="Turquoise" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ff0a0000" NAME="Turquoise1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#ee090011" NAME="Turquoise2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#cd080032" NAME="Turquoise3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#8b050074" NAME="Turquoise4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#006c0011" NAME="Violet" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00b0402f" NAME="VioletRed" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00c16900" NAME="VioletRed1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00b46211" NAME="VioletRed2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#009b5532" NAME="VioletRed3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00693974" NAME="VioletRed4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0017420a" NAME="Wheat" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00184500" NAME="Wheat1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00164011" NAME="Wheat2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00133732" NAME="Wheat3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#000d2574" NAME="Wheat4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00000000" NAME="White" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000000a" NAME="WhiteSmoke" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000ff00" NAME="Yellow" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000ff00" NAME="Yellow1" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000ee11" NAME="Yellow2" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#0000cd32" NAME="Yellow3" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#00008b74" NAME="Yellow4" />
|
||||||
|
<COLOR Register="0" Spot="0" CMYK="#33009b32" NAME="YellowGreen" />
|
||||||
|
<STYLE ALIGN="0" LINESP="15" VOR="0" DROPLIN="2" RMARGIN="0" PSHORTCUT="" LINESPMode="0" NACH="0" SHORTCUT="" CNAME="" DROPDIST="0" FIRST="0" INDENT="0" NAME="Standard-Absatzstil" DROP="0" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Standard-Zeichenstil" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (1)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (2)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (3)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (4)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (5)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (6)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (7)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (8)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (9)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (10)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (11)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (12)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (13)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<CHARSTYLE SCOLOR="Black" TXTSHX="5" TXTSHY="-5" TXTSTW="-0.1" KERN="0" FSHADE="100" FEATURES="inherit" BASEO="0" TXTULP="-0.1" SSHADE="100" SHORTCUT="" SCALEV="100" CNAME="Kopie von Standard-Zeichenstil (14)" FONTSIZE="12" FCOLOR="Black" SCALEH="100" TXTOUT="1" FONT="Nimbus Sans L Bold Condensed" TXTSTP="-0.1" TXTULW="-0.1" />
|
||||||
|
<LAYERS DRUCKEN="1" NUMMER="0" TRANS="1" LAYERC="#000000" EDIT="1" NAME="Hintergrund" FLOW="1" OUTL="0" BLEND="0" SICHTBAR="1" LEVEL="0" />
|
||||||
|
<Printer mirrorH="0" BleedBottom="0" colorMarks="1" cropMarks="0" doOverprint="1" useColor="0" firstUse="1" useICC="1" printerCommand="" BleedRight="0" useSpotColors="1" outputSeparations="0" toFile="0" doGCR="1" registrationMarks="0" doClip="1" markOffset="5.00467e-266" useAltPrintCommand="1" BleedTop="0" printer="" BleedLeft="0" bleedMarks="1" setDevParam="1" separationName="" PSLevel="262245" filename="" mirrorV="0" />
|
||||||
|
<PDF displayThumbs="0" ImagePr="0" fitWindow="0" displayBookmarks="0" doOverprint="0" colorMarks="0" cropMarks="0" BTop="0" UseProfiles="0" BLeft="0" PrintP="" RecalcPic="0" firstUse="0" UseSpotColors="1" ImageP="" SolidP="" PicRes="300" Thumbnails="0" hideToolBar="0" registrationMarks="0" CMethod="0" displayLayers="0" doMultiFile="0" UseLayers="0" Encrypt="0" markOffset="0" BRight="0" Binding="0" Articles="0" useDocBleeds="0" InfoString="" RGBMode="1" Grayscale="0" PresentMode="0" openAction="" displayFullscreen="0" Permissions="-4" bleedMarks="0" Intent="1" Compress="1" hideMenuBar="0" Version="14" Resolution="300" Bookmarks="0" docInfoMarks="0" UseProfiles2="0" RotateDeg="0" Clip="0" MirrorV="0" Quality="0" PageLayout="0" UseLpi="0" PassUser="" BBottom="0" Intent2="0" MirrorH="0" PassOwner="" >
|
||||||
|
<Fonts Name="Arial Regular" />
|
||||||
|
<Fonts Name="Bitstream Charter Regular" />
|
||||||
|
<Fonts Name="Bitstream Vera Sans Roman" />
|
||||||
|
<Fonts Name="Creative Commons Regular" />
|
||||||
|
<Fonts Name="GeosansLight Regular" />
|
||||||
|
<Fonts Name="Labtop Superwide Regular" />
|
||||||
|
<Fonts Name="Nimbus Sans L Bold Condensed" />
|
||||||
|
<Effekte pageViewDuration="1" Di="0" pageEffectDuration="1" effectType="0" Dm="0" M="0" />
|
||||||
|
<Effekte pageViewDuration="1" Di="0" pageEffectDuration="1" effectType="0" Dm="0" M="0" />
|
||||||
|
<LPI Angle="0" Frequency="10" SpotFunction="0" Color="" />
|
||||||
|
<LPI Angle="45" Frequency="75" SpotFunction="2" Color="Black" />
|
||||||
|
<LPI Angle="105" Frequency="75" SpotFunction="2" Color="Cyan" />
|
||||||
|
<LPI Angle="75" Frequency="75" SpotFunction="2" Color="Magenta" />
|
||||||
|
<LPI Angle="90" Frequency="75" SpotFunction="2" Color="Yellow" />
|
||||||
|
</PDF>
|
||||||
|
<DocItemAttributes/>
|
||||||
|
<TablesOfContents/>
|
||||||
|
<PageSets>
|
||||||
|
<Set Columns="1" GapBelow="28346.5" Rows="1" FirstPage="0" GapHorizontal="0" Name="Single Page" GapVertical="0" />
|
||||||
|
<Set Columns="2" GapBelow="40" Rows="1" FirstPage="1" GapHorizontal="0" Name="Double Sided" GapVertical="0" >
|
||||||
|
<PageNames Name="Left Page" />
|
||||||
|
<PageNames Name="Right Page" />
|
||||||
|
</Set>
|
||||||
|
<Set Columns="3" GapBelow="40" Rows="1" FirstPage="0" GapHorizontal="0" Name="3-Fold" GapVertical="0" >
|
||||||
|
<PageNames Name="Left Page" />
|
||||||
|
<PageNames Name="Middle" />
|
||||||
|
<PageNames Name="Right Page" />
|
||||||
|
</Set>
|
||||||
|
<Set Columns="4" GapBelow="40" Rows="1" FirstPage="0" GapHorizontal="0" Name="4-Fold" GapVertical="0" >
|
||||||
|
<PageNames Name="Left Page" />
|
||||||
|
<PageNames Name="Middle Left" />
|
||||||
|
<PageNames Name="Middle Right" />
|
||||||
|
<PageNames Name="Right Page" />
|
||||||
|
</Set>
|
||||||
|
</PageSets>
|
||||||
|
<Sections>
|
||||||
|
<Section Active="1" Number="0" From="0" Type="Type_1_2_3" To="0" Name="0" Start="1" Reversed="0" />
|
||||||
|
</Sections>
|
||||||
|
<Pattern scaleY="1" width="43" height="39" Name="Pattern_Bild56" scaleX="1" >
|
||||||
|
<PatternItem OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="39" gWidth="43" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="43" ImageRes="1" GROUPS="" LOCKR="0" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="White" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="None" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="2" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="1" HEIGHT="39" DASHOFF="0" PFILE2="" PFILE="../../../../../../../../../tmp/foo.eps" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="0" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 43 0 43 0 43 0 43 0 43 39 43 39 43 39 43 39 0 39 0 39 0 39 0 39 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="1" LAYER="0" BOOKMARK="0" gYpos="0" startArrowIndex="0" TopLine="0" LOCK="0" EPROF="" gXpos="0" DASHS="" IRENDER="0" TEXTFLOW="0" YPOS="57942" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28461" NUMCO="16" POCOOR="0 0 0 0 43 0 43 0 43 0 43 0 43 39 43 39 43 39 43 39 0 39 0 39 0 39 0 39 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PatternItem>
|
||||||
|
</Pattern>
|
||||||
|
<MASTERPAGE AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoGap="0" Size="A4" NUM="0" BORDERTOP="40" NAM="Normal" LEFT="0" BORDERBOTTOM="40" AGSelection="0 0 0 0" Orientation="1" AGverticalAutoGap="0" BORDERRIGHT="40" PAGEHEIGHT="595.28" PAGEWIDTH="841.89" PAGEYPOS="28346.5" AGverticalAutoRefer="0" HorizontalGuides="" MNAM="" PAGEXPOS="28346.5" AGhorizontalAutoRefer="0" VerticalGuides="" BORDERLEFT="40" />
|
||||||
|
<PAGE AGhorizontalAutoCount="0" AGverticalAutoCount="0" AGhorizontalAutoGap="0" Size="A4" NUM="0" BORDERTOP="68.0315" NAM="" LEFT="0" BORDERBOTTOM="68.0315" AGSelection="-2.15417e+306 0 0 0" Orientation="0" AGverticalAutoGap="0" BORDERRIGHT="82.2047" PAGEHEIGHT="841.89" PAGEWIDTH="595.28" PAGEYPOS="28346.5" AGverticalAutoRefer="0" HorizontalGuides="" MNAM="Normal" PAGEXPOS="28346.5" AGhorizontalAutoRefer="0" VerticalGuides="" BORDERLEFT="85.0394" />
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="7.29112e-304" gWidth="7.29112e-304" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="340.157" ImageRes="1" GROUPS="" LOCKR="1" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.283465" HEIGHT="340.157" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 340.157 0 340.157 0 340.157 0 340.157 0 340.157 340.157 340.157 340.157 340.157 340.157 340.157 340.157 0 340.157 0 340.157 0 340.157 0 340.157 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="7.29112e-304" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="7.29112e-304" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28416.5" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28516.5" NUMCO="16" POCOOR="0 0 0 0 340.157 0 340.157 0 340.157 0 340.157 0 340.157 340.157 340.157 340.157 340.157 340.157 340.157 340.157 0 340.157 0 340.157 0 340.157 0 340.157 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="333.071" gWidth="426.614" NUMPO="16" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="0" WIDTH="425.617" ImageRes="1" GROUPS="" LOCKR="1" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="6" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.283465" HEIGHT="331.282" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="1" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="0 0 0 0 425.617 0 425.617 0 425.617 0 425.617 0 425.617 331.282 425.617 331.282 425.617 331.282 425.617 331.282 0 331.282 0 331.282 0 331.282 0 331.282 0 0 0 0 " BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="1.29302" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="0.498831" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28787.1" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28430.6" NUMCO="16" POCOOR="0 0 0 0 425.617 0 425.617 0 425.617 0 425.617 0 425.617 331.282 425.617 331.282 425.617 331.282 425.617 331.282 0 331.282 0 331.282 0 331.282 0 331.282 0 0 0 0 " EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="333.071" gWidth="426.614" NUMPO="0" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="90" WIDTH="331.546" ImageRes="1" GROUPS="" LOCKR="1" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="5" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.283465" HEIGHT="1" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="" BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="0.994627" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="16.4016" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28786.8" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28446.5" NUMCO="0" POCOOR="" EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
<PAGEOBJECT OnMasterPage="" isGroupControl="0" BottomLine="0" REXTRA="0" gHeight="333.071" gWidth="426.614" NUMPO="0" TransBlendS="0" PLINEART="1" doOverprint="0" RightLine="0" LOCALSCX="1" ROT="90" WIDTH="331.546" ImageRes="1" GROUPS="" LOCKR="1" LOCALSCY="1" NAMEDLST="" isInline="0" AUTOTEXT="0" FLIPPEDV="0" PCOLOR="None" RADRECT="0" REVERS="0" PRINTABLE="1" RATIO="1" FLIPPEDH="0" COLGAP="0" PCOLOR2="Black" NEXTITEM="-1" NUMGROUP="0" TransValue="0" textPathFlipped="0" PLINEEND="0" FRTYPE="0" PTYPE="5" ImageClip="" isTableItem="0" TEXTFLOW2="0" SHADE2="100" PWIDTH="0.283465" HEIGHT="1" DASHOFF="0" PFILE2="" PFILE="" TEXTFLOW3="0" textPathType="0" PLTSHOW="0" CLIPEDIT="0" BACKITEM="-1" TransValueS="0" EMBEDDED="1" PFILE3="" ANNAME="" SHADE="100" fillRule="1" COCOOR="" BASEOF="0" PICART="1" COLUMNS="1" OwnPage="0" LAYER="0" BOOKMARK="0" gYpos="0.994627" startArrowIndex="0" TopLine="0" LOCK="1" EPROF="" gXpos="408.363" DASHS="" IRENDER="1" TEXTFLOW="0" YPOS="28786.8" TEXTFLOWMODE="0" ANNOTATION="0" LOCALX="0" GRTYP="0" XPOS="28838.4" NUMCO="0" POCOOR="" EXTRA="0" LOCALY="0" NUMDASH="0" LeftLine="0" PRFILE="" TEXTRA="0" SCALETYPE="1" endArrowIndex="0" TransBlend="0" BEXTRA="0" PLINEJOIN="0" >
|
||||||
|
<para PSHORTCUT="" SHORTCUT="" CNAME="" NAME="" />
|
||||||
|
<PageItemAttributes/>
|
||||||
|
</PAGEOBJECT>
|
||||||
|
</DOCUMENT>
|
||||||
|
</SCRIBUSUTF8NEW>
|
BIN
v1.4.4/cover/satellit.jpg
Executable file
After Width: | Height: | Size: 81 KiB |
BIN
v1.4.4/cover/sl_logo.png
Executable file
After Width: | Height: | Size: 72 KiB |
154
v1.4.4/documents/Makefile
Normal file
|
@ -0,0 +1,154 @@
|
||||||
|
# Validierungswerkzeuge
|
||||||
|
VALIDATE1_BIN := validate
|
||||||
|
VALIDATE1_OPTS :=
|
||||||
|
VALIDATE1_DEB_PACKAGE := wdg-html-validator
|
||||||
|
VALIDATE2_BIN := tidy
|
||||||
|
VALIDATE2_OPTS := -o /dev/null -errors -quiet
|
||||||
|
VALIDATE2_DEB_PACKAGE := tidy
|
||||||
|
# our self written documents
|
||||||
|
LYX_FILES := $(shell find . -name *.lyx -type f)
|
||||||
|
# the tex output of lyx
|
||||||
|
TEX_FILES := $(patsubst %.lyx,%.tex,$(LYX_FILES))
|
||||||
|
# output files of lyx that are already processed by mod_html_files.py
|
||||||
|
EXPORT_DIRS := $(shell for a in $(LYX_FILES); do echo -n "$$a" | sed "s%/\([^/]*\).lyx%/export-%"; echo "$$(basename $${a%.lyx})" ; done)
|
||||||
|
# png files (get converted to eps)
|
||||||
|
PNG_FILES := $(shell find . -name *.png -type f)
|
||||||
|
# converted eps files
|
||||||
|
EPS_FILES := $(patsubst %.png,%.eps,$(PNG_FILES))
|
||||||
|
# menue and footer files
|
||||||
|
INC_FILES := $(wildcard *.inc) $(wildcard progress/*.inc)
|
||||||
|
# the tex output of include files
|
||||||
|
INC_TEX_FILES := $(patsubst %.inc,%.tex,$(INC_FILES))
|
||||||
|
# look for lyx executable
|
||||||
|
LYX_BIN = $(shell which lyx lyx-qt lyx-xform | head -1)
|
||||||
|
|
||||||
|
|
||||||
|
# output parameters for latex2html
|
||||||
|
LATEX2HTML_OPTS := -no_auto_link -split 0 -no_navigation -no_subdir -info 0 -style ../../cryptocd.css -local_icons -address 0
|
||||||
|
|
||||||
|
|
||||||
|
# virtual targets that have different names than the produced files - they will alway be executed,
|
||||||
|
# if another target depends on them (they do not look for timestamps)
|
||||||
|
.PHONY : clean clean-targets install all
|
||||||
|
|
||||||
|
# clear language environment setting of the shell
|
||||||
|
export LANG=
|
||||||
|
|
||||||
|
|
||||||
|
# default target
|
||||||
|
all: $(EXPORT_DIRS)
|
||||||
|
|
||||||
|
|
||||||
|
# validate the html files
|
||||||
|
validate: $(EXPORT_DIRS)
|
||||||
|
@# Warnung, falls das erste Programm nicht gefunden wird
|
||||||
|
@if which $(VALIDATE1_BIN) >/dev/null ;\
|
||||||
|
then true ;\
|
||||||
|
else echo >&2 ;\
|
||||||
|
echo >&2 "*****************************************************************" ;\
|
||||||
|
echo >&2 "* Could not find the html-checker '$(VALIDATE1_BIN)'! *" ;\
|
||||||
|
echo >&2 "* Debian users should run 'apt-get install $(VALIDATE1_DEB_PACKAGE)'. *" ;\
|
||||||
|
echo >&2 "*****************************************************************";\
|
||||||
|
echo >&2 ;\
|
||||||
|
fi
|
||||||
|
@# Warnung, falls das zweite Programm nicht gefunden wird
|
||||||
|
@if which $(VALIDATE2_BIN) >/dev/null ;\
|
||||||
|
then true ;\
|
||||||
|
else echo >&2 ;\
|
||||||
|
echo >&2 "*****************************************************************" ;\
|
||||||
|
echo >&2 "* Could not find the html-checker '$(VALIDATE2_BIN)'! *" ;\
|
||||||
|
echo >&2 "* Debian users should run 'apt-get install $(VALIDATE2_DEB_PACKAGE)'. *" ;\
|
||||||
|
echo >&2 "*****************************************************************";\
|
||||||
|
echo >&2 ;\
|
||||||
|
fi
|
||||||
|
@# Abbruch, falls beide Programme nicht gefunden werden
|
||||||
|
@if which $(VALIDATE1_BIN) >/dev/null || which $(VALIDATE2_BIN) >/dev/null ;\
|
||||||
|
then true ;\
|
||||||
|
else echo >&2 ;\
|
||||||
|
echo >&2 "None of the html checkers was found!" ;\
|
||||||
|
echo >&2 ;\
|
||||||
|
false ;\
|
||||||
|
fi
|
||||||
|
@find . -name \*.html -type f | while read fname ;\
|
||||||
|
do echo "Validating $$fname" ;\
|
||||||
|
which $(VALIDATE1_BIN) >/dev/null && $(VALIDATE1_BIN) $(VALIDATE1_OPTS) "$$fname" ;\
|
||||||
|
which $(VALIDATE2_BIN) >/dev/null && $(VALIDATE2_BIN) $(VALIDATE2_OPTS) "$$fname" ;\
|
||||||
|
echo ;\
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
# copy the created files to the destination directory (usually outside of this directory tree)
|
||||||
|
install: $(EXPORT_DIRS)
|
||||||
|
echo $(EXPORT_DIRS)
|
||||||
|
@if [ -z "$(CCD_BUILD_DIR)" ] ;\
|
||||||
|
then echo "CCD_BUILD_DIR must be defined! (this should be done by the parent Makefile)" >&2 ;\
|
||||||
|
false ;\
|
||||||
|
fi
|
||||||
|
@if [ ! -e "$(CCD_BUILD_DIR)" ] ;\
|
||||||
|
then echo "CCD_BUILD_DIR ($(CCD_BUILD_DIR)) does not exist!" ;\
|
||||||
|
false ;\
|
||||||
|
fi
|
||||||
|
mkdir -p "$(CCD_BUILD_DIR)/doku/macos"
|
||||||
|
mkdir -p "$(CCD_BUILD_DIR)/doku/linux"
|
||||||
|
mkdir -p "$(CCD_BUILD_DIR)/doku/windows"
|
||||||
|
@# copy os-independent stuff
|
||||||
|
for a in $(EXPORT_DIRS) ;\
|
||||||
|
do if echo "$$(dirname $$a)" | grep -q "/common/" ;\
|
||||||
|
then DIRNAME_MAC="$(CCD_BUILD_DIR)/doku/macos/$$(basename $$(dirname $$a))" ;\
|
||||||
|
DIRNAME_LIN="$(CCD_BUILD_DIR)/doku/linux/$$(basename $$(dirname $$a))" ;\
|
||||||
|
DIRNAME_WIN="$(CCD_BUILD_DIR)/doku/windows/$$(basename $$(dirname $$a))" ;\
|
||||||
|
mkdir -p "$$DIRNAME_MAC" "$$DIRNAME_LIN" "$$DIRNAME_WIN" ;\
|
||||||
|
cp -r "$$a/"* "$$DIRNAME_MAC" ;\
|
||||||
|
cp -r "$$a/"* "$$DIRNAME_LIN" ;\
|
||||||
|
cp -r "$$a/"* "$$DIRNAME_WIN" ;\
|
||||||
|
fi ;\
|
||||||
|
done
|
||||||
|
@# copy os-specific stuff
|
||||||
|
for a in $(EXPORT_DIRS) ;\
|
||||||
|
do if echo "$$(dirname $$a)" | grep -q "/common/" ;\
|
||||||
|
then true ;\
|
||||||
|
else mkdir -p "$(CCD_BUILD_DIR)/doku/$$(dirname $$a)" ;\
|
||||||
|
cp -r "$$a/"* "$(CCD_BUILD_DIR)/doku/$$(dirname $$a)" ;\
|
||||||
|
fi ;\
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
clean-targets:
|
||||||
|
-rm -r $(EXPORT_DIRS) 2>/dev/null
|
||||||
|
|
||||||
|
|
||||||
|
# create tex files from lyx
|
||||||
|
$(TEX_FILES): $(LYX_FILES)
|
||||||
|
@if test -z $(LYX_BIN) ;\
|
||||||
|
then echo >&2 ;\
|
||||||
|
echo >&2 "**************************************************" ;\
|
||||||
|
echo >&2 "* Could not find 'lyx'! *" ;\
|
||||||
|
echo >&2 "* Debian users should run 'apt-get install lyx'. *" ;\
|
||||||
|
echo >&2 "**************************************************";\
|
||||||
|
echo >&2 ;\
|
||||||
|
false ;\
|
||||||
|
fi
|
||||||
|
$(LYX_BIN) -e latex $*.lyx
|
||||||
|
|
||||||
|
|
||||||
|
# original html-files, as they are created by lyx
|
||||||
|
$(EXPORT_DIRS): $(TEX_FILES) $(INC_FILES) footer.asc mod_html_files.py
|
||||||
|
-test -d "$@" && rm -rf "$@"
|
||||||
|
mkdir -p "$@"
|
||||||
|
latex2html $(LATEX2HTML_OPTS) -dir "$@" $(dir $@)/$(patsubst export-%,%.tex,$(notdir $@))
|
||||||
|
@# die html-Datei wurde jetzt erstellt (inklusive Bilder)
|
||||||
|
-#rm $(dir $@)WARNINGS $(dir $@)labels.pl $(dir $@)internals.pl $*.log 2>/dev/null
|
||||||
|
-rm $@/$(patsubst export-%,%.css,$(notdir $@)) 2>/dev/null
|
||||||
|
-rm $@/images.aux $@/images.log $@/images.out $@/images.pl $@/images.tex $@/missfont.log $@/WARNINGS $@/labels.pl 2>/dev/null
|
||||||
|
python mod_html_files.py $@/$(patsubst export-%,%.html,$(notdir $@))
|
||||||
|
@# add footer
|
||||||
|
cat footer.asc >>$@/$(patsubst export-%,%.html,$(notdir $@))
|
||||||
|
@# replace unix-like linebreaks with their DOS counterparts
|
||||||
|
unix2dos $@/$(patsubst export-%,%.html,$(notdir $@))
|
||||||
|
|
||||||
|
|
||||||
|
clean: clean-targets
|
||||||
|
-rm $(TEX_FILES) 2>/dev/null
|
||||||
|
-rm $(INC_TEX_FILES) 2>/dev/null
|
||||||
|
-rm $(EPS_FILES) 2>/dev/null
|
||||||
|
|
20
v1.4.4/documents/README.make
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
Hier findest du Hinweise, zur Generierung der html-Dateien aus den Text-Quellen (geschrieben in LyX).
|
||||||
|
Dies ist nur notwendig, falls du die CD mit veraenderten Texten weitergeben willst.
|
||||||
|
|
||||||
|
Benoetigte Programme:
|
||||||
|
- lyx
|
||||||
|
- make
|
||||||
|
- latex
|
||||||
|
- latex2html
|
||||||
|
- zip
|
||||||
|
(da fehlen bestimmt noch ein paar tex-Pakete ...)
|
||||||
|
|
||||||
|
----
|
||||||
|
Q: Wie generiere ich die Seiten, wenn alles nach meinen Wuenschen veraendert wurde?
|
||||||
|
A: cd doku && make
|
||||||
|
|
||||||
|
----
|
||||||
|
Q: Wie raeum ich die ganzen Files auf, damit das Repository nicht so zugemuellt wird?
|
||||||
|
A: cd doku && make clean
|
||||||
|
|
||||||
|
----
|
350
v1.4.4/documents/common/about/about.lyx
Normal file
|
@ -0,0 +1,350 @@
|
||||||
|
#LyX 1.4.4 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Über die CryptoCD
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Wir wollen mit dieser CD möglichst vielen Menschen ermöglichen, mit einem
|
||||||
|
Maximum an Privatsphäre öffentliche Netzwerke (wie das Internet) benutzen
|
||||||
|
zu können.
|
||||||
|
Der Einstieg in das Thema und die einzelnen Anleitungen sind deshalb bewusst
|
||||||
|
einstiegsfreundlich gehalten.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Großen Wert legen wir darauf, Menschen mit verschiedensten Betriebssystemen
|
||||||
|
zu erreichen.
|
||||||
|
So wirken wir einer marktdominierten Ausgrenzung entgegen.
|
||||||
|
Momentan beziehen sich die Anleitungen auf Linux, Mac OS X und Windows.
|
||||||
|
Nebenbei bemerkt verwenden wir nur
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Freie Software}{http://www.fsf-europe.org/documents/freesoftware.
|
||||||
|
de.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
, anders wäre eine solche CD wohl auch nicht realisierbar.
|
||||||
|
Deswegen an dieser Stelle einen großen Dank an alle EntwicklerInnen der
|
||||||
|
verwendeten Programme.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Weiterentwicklung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Wir sind ständig bemüht, die CryptoCD weiter zu entwickeln.
|
||||||
|
Dazu zählt die Aktualisierung der verwendeten Software und vor allem eine
|
||||||
|
stetig verbesserte Benutzbarkeit.
|
||||||
|
Das geht natürlich nicht ohne die Rückmeldungen unserer NutzerInnen.
|
||||||
|
Deshalb freuen wir uns über dein Feedback.
|
||||||
|
Schicke eine E-Mail an info@cryptocd.org
|
||||||
|
\emph on
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
oder schau auf unsere
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Projektseite}{http://cryptocd.org/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
Dort kannst du deine Kritik und Fragen loswerden.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Während der Arbeit an einer neuen Version fallen ganz vielfältige Aufgaben
|
||||||
|
an, z.B.
|
||||||
|
das Verfassen neuer Installationsanleitungen, die Integration weiterer
|
||||||
|
Themengebiete, sowie das Korrekturlesen bestehender Inhalte.
|
||||||
|
Fühl dich frei, einen Teil zur CryptoCD beizutragen.
|
||||||
|
Wir freuen uns über jede Partizipation.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Die AutorInnen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die CryptoCD wurde initiiert von
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Sense.Lab e.V.}{http://senselab.org}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
Darüber hinaus haben sich weitere Menschen an der Entwicklung beteiligt
|
||||||
|
und so einen wesentlichen Teil zur jetzigen Form beigetragen.
|
||||||
|
In ungeordneter Reihenfolge waren und sind beteiligt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Stefan Deser
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Rolf Meinecke
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Ralf Kreutzmann
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Micha Reiser
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="lizenz"></div>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Lizenz
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Texte der CryptoCD unterliegen einer
|
||||||
|
\emph on
|
||||||
|
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Creative-Commons-Lizenz}{../../../lizenz/cc/deed.de.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
:
|
||||||
|
\emph on
|
||||||
|
Namensnennung - Weitergabe unter gleichen Bedingungen 2.0 Deutschland
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
Durch diese Lizenz kannst du die CryptoCD:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
frei verwenden,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
beliebig verändern und
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
verändert weiter geben.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Alle Programme unterliegen entweder der
|
||||||
|
\emph on
|
||||||
|
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{GNU Public License}{http://www.gnu.de/gpl-ger.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
oder der
|
||||||
|
\emph on
|
||||||
|
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Mozilla Public License}{http://www.mozilla.org/MPL/MPL-1.1.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
, die dir ähnlich umfassende Freiheiten sichern.
|
||||||
|
Den Quellcode der verwendeten Programme kannst du über die jeweilige Projektsei
|
||||||
|
te beziehen.
|
||||||
|
Die verwendeten Icons und Symbole sind Originale oder modifizierte Versionen
|
||||||
|
des
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Tango Desktop Project}{http://tango.freedesktop.org/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
183
v1.4.4/documents/common/chat/chat.lyx
Normal file
|
@ -0,0 +1,183 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Verschlüsselt Chatten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
In diesem Kapitel erfährst du, wie du mit dem Programm Gaim bzw.
|
||||||
|
Pidgin
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Programm Gaim wurde vor kurzem in Pidgin umbenannt.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
verschlüsselt chatten kannst.
|
||||||
|
Dabei wird beispielhaft der Dienst ICQ benutzt - die Verschlüsselung klappt
|
||||||
|
natürlich auch mit anderen von Gaim/Pidgin unterstützten Diensten (wie
|
||||||
|
Jabber, MSN, Yahoo, usw.).
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Ähnlich wie bei der E-Mail-Verschlüsselung wird ein asymmetrisches Verfahren
|
||||||
|
mit öffentlichem und geheimen Schlüssel verwendet, um deine Gespräche geheim
|
||||||
|
zu halten.
|
||||||
|
Eine Beschreibung der Funktionsweise des asymmetrischen Verschlüsselungsverfahr
|
||||||
|
ens findest du im Abschnitt
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Wie Verschlüsselung funktioniert}{../verschluesselung_funktion/v
|
||||||
|
erschluesselung_funktion.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Voraussetzungen:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Du brauchst ein Konto bei einem Chat-Dienst (wie Jabber, ICQ, MSN, Yahoo,
|
||||||
|
usw.) mit den dazugehörigen Zugangsdaten,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
knapp 20 MB Festplattenspeicher,
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
etwas Zeit und
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
eine Chat-Partnerin die ebenfalls Gaim/Pidgin benutzt und es für Verschlüsselung
|
||||||
|
anhand dieser Anleitung eingerichtet hat.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Anleitungen sind so aufgebaut, dass du sie der Reihe nach durchgehen
|
||||||
|
kannst und zum Schluss ein komplett eingerichtetes Gaim/Pidgin inklusive
|
||||||
|
der Möglichkeit zur Verschlüsselung vorfindest.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/chat.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
BIN
v1.4.4/documents/common/chat_anwendung/bilder/gaim_plugin_03.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
BIN
v1.4.4/documents/common/chat_anwendung/bilder/gaim_plugin_04.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
v1.4.4/documents/common/chat_anwendung/bilder/gaim_plugin_05.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
265
v1.4.4/documents/common/chat_anwendung/chat_anwendung.lyx
Normal file
|
@ -0,0 +1,265 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Verschlüsselt Chatten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Der letzte Schritt zeigt dir, wie du tatsächlich Nachrichten verschlüsseln
|
||||||
|
kannst.
|
||||||
|
Dazu wählst du aus der Liste einen Kontakt aus, der oder die ebenfalls
|
||||||
|
Gaim-/Pidgin-Encryption installiert hat.
|
||||||
|
Klicke nun mit der rechten Maustaste auf diesen Kontakt und aktiviere im
|
||||||
|
daraufhin erscheinenden Menü den Punkt
|
||||||
|
\emph on
|
||||||
|
Automatisches verschlüsseln aktivieren
|
||||||
|
\emph default
|
||||||
|
.
|
||||||
|
Ab jetzt kann niemand außer dir und deinem Gegenüber eure Unterhaltung
|
||||||
|
mitlesen:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/gaim_plugin_03.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Automatisches Verschlüsseln aktivieren
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Verschlüsselung kann auch jederzeit im Nachrichtenfenster bequem ein-
|
||||||
|
und ausgestellt werden.
|
||||||
|
Dazu ist lediglich ein Klick auf das Schloss-Symbol im Chatfenster notwendig:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/gaim_plugin_04.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Hinweise
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Eine Nachricht zu versenden, wenn der Gegenüber offline ist, führt zu Problemen:
|
||||||
|
Die Nachricht kann gar nicht übertragen werden.
|
||||||
|
Soll also eine Offline-Nachricht verschickt werden, muss die Verschlüsselung
|
||||||
|
deaktiviert werden.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Itemize
|
||||||
|
Wichtig ist, die Schlüsselfingerabdrücke auf sicherem Übertragungsweg zu
|
||||||
|
vergleichen (werden über das Buddy-Listen-Menü
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<span class="kbd">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Werkzeuge -> Plugins -> Gaim-/Pidgin-Encryption
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
</span>
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
angezeigt).
|
||||||
|
Das brauchst du mit jedem deiner Kontakte nur einmal tun.
|
||||||
|
Ändert sich der Fingerabdruck später (es erscheint ein Hinweis von Gaim/Pidgin)
|
||||||
|
, frage auf gesichertem Weg nach, ob dein Gegenüber wirklich einen neuen
|
||||||
|
Schlüssel benutzt.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/chat_anwendung.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
173
v1.4.4/documents/common/chat_programme/chat_programme.lyx
Normal file
|
@ -0,0 +1,173 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Benötigte Programme
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
Verschlüsselt Chatten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Voraussetzung für das verschlüsselte Chatten ist die korrekte Installation
|
||||||
|
und Einrichtung der benötigten Programme.
|
||||||
|
Falls du die Möglichkeit hast, lade dir die aktuelle Version von der entspreche
|
||||||
|
nden Projektseite herunter.
|
||||||
|
Im Einzelnen handelt es sich um die folgenden Komponenten:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Das Chat-Programm: Gaim/Pidgin
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Als Chat-Programm wird
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Gaim/Pidgin}{http://pidgin.im}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
benutzt.
|
||||||
|
Es bietet den Vorteil, dass es nahezu alle verfügbaren Dienste (Jabber,
|
||||||
|
ICQ, MSN, Yahoo, usw.) unterstützt, für viele Betriebssysteme verfügbar
|
||||||
|
ist und obendrein eine einfache Bedienbarkeit aufweist.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Das Verschlüsselungsprogramm: Gaim- bzw.
|
||||||
|
Pidgin-Encryption
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Gaim-/Pidgin-Encryption}{http://pidgin-encrypt.sourceforge.net/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
ist ein Plugin für Gaim/Pidgin das es ermöglicht, Chat-Nachrichten zu ver-
|
||||||
|
und entschlüsseln.
|
||||||
|
Es ist einfach zu bedienen und sicher.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/chat_programme.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
BIN
v1.4.4/documents/common/einfuehrung/bilder/netzschema.png
Normal file
After Width: | Height: | Size: 39 KiB |
7927
v1.4.4/documents/common/einfuehrung/bilder/netzschema.svg
Normal file
After Width: | Height: | Size: 337 KiB |
875
v1.4.4/documents/common/einfuehrung/einfuehrung.lyx
Normal file
|
@ -0,0 +1,875 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language swedish
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Warum soll ich überhaupt meine Privatsphäre schützen?
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
Einführung in das Thema
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Quote
|
||||||
|
\begin_inset Quotes sld
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Die Sicherheit von elektronischer Post, die über das Internet verschickt
|
||||||
|
wurde, kann mit genau drei Worten beschrieben werden: es gibt keine.
|
||||||
|
\begin_inset Quotes srd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
-- Matt Bishop
|
||||||
|
\begin_inset Note Note
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
"The security of electronic mail sent through the Internet may be described
|
||||||
|
in exact three words: there is none."
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Du fragst dich vielleicht, warum gerade
|
||||||
|
\emph on
|
||||||
|
du
|
||||||
|
\emph default
|
||||||
|
dir die Mühe machen sollst, dich durch diese CD zu arbeiten? Gedanken wie:
|
||||||
|
|
||||||
|
\emph on
|
||||||
|
|
||||||
|
\begin_inset Quotes srd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Ich hab doch nichts zu verbergen! Wer sollte sich denn für mich interessieren?
|
||||||
|
\begin_inset Quotes srd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
gehen dir beim Thema Überwachung / Verschlüsselung durch den Kopf? Und überhaupt
|
||||||
|
ist dir das alles viel zu wissenschaftlich, abgehoben und paranoid?
|
||||||
|
\newline
|
||||||
|
Dann
|
||||||
|
solltest du dir die Zeit nehmen, den folgenden Text zu lesen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection*
|
||||||
|
Neue Medien - neue Möglichkeiten
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Kommunikation in Zeiten der neuen Medien unterscheidet sich in mehreren
|
||||||
|
Punkten grundlegend von Medien wie klassischer Briefpost.
|
||||||
|
Ein wesentlicher Unterschied ist die Tatsache, dass sie komplett digital
|
||||||
|
verläuft.
|
||||||
|
Somit ist es sehr einfach, zehntausende von Nachrichten automatisch nach
|
||||||
|
bestimmten Kriterien durchsuchen zu lassen.
|
||||||
|
Dazu reicht ein einziger Mensch mit den entsprechenden Kenntnissen.
|
||||||
|
Dieser Mensch kann an vielen Stellen sitzen, da im Internet Daten über
|
||||||
|
ein Netz von Stationen weitergereicht werden, bis sie ihr Ziel erreichen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/netzschema.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Viele Wege führen durch das Netz
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Mitlesen und Nachverfolgen von E-Mails ist prinzipiell an jedem Knoten
|
||||||
|
möglich, und das geschieht nicht selten
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
weitere Informationen:
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Abh
|
||||||
|
\backslash
|
||||||
|
"oren im Jahr 2000}{http://www.heise.de/tp/deutsch/inhalt/te/2833/1.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
und
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Open your eyes, open your mind}{http://hp.kairaven.de/miniwahr/i
|
||||||
|
ndex.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
: Seit dem 1.
|
||||||
|
Januar 2005 sind beispielsweise alle E-Mail-Provider mit mehr als 1000
|
||||||
|
KundInnen verpflichtet, technische Lösungen vorzuhalten, die staatlichen
|
||||||
|
Institutionen den Zugriff auf den gesamten E-Mailverkehr der KundInnen
|
||||||
|
ermöglichen.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Neben den staatlich organisierten Aktionen gibt es eine Reihe anderer Schnüffler.
|
||||||
|
Hierbei spielen wirtschaftliche Interessen oft eine große Rolle.
|
||||||
|
So schnüffeln bezahlte Cracker, analysebetreibende Firmen oder auch gelangweilt
|
||||||
|
e Administratoren in deinen Netzspuren.
|
||||||
|
Und, auch das ist ein Unterschied zur klassischen Post: an der E-Mail ist
|
||||||
|
- im Gegensatz zu einem geöffneten Brief - nicht erkennbar, dass sie abgefangen
|
||||||
|
und gelesen wurde.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection*
|
||||||
|
SIE beobachten dich...
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Wer sich überwacht glaubt, der handelt eher im Rahmen der sozialen Erwünschtheit
|
||||||
|
und ist somit nicht bloß kontrollierbar (im Falle einer tatsächlichen Überwachu
|
||||||
|
ng), sondern indirekt auch schon einer Manipulation erlegen.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Tatsächlich setzen z.B.
|
||||||
|
viele öffentliche Kameras in Einkaufszentren und anderen Einrichtungen
|
||||||
|
auf gerade diesen Effekt.
|
||||||
|
Indem die Kameras auffällig platziert werden, überlegen sich die Menschen
|
||||||
|
in ihrem Blickfeld zweimal, ob sie aus der Rolle fallen, in der sie sich
|
||||||
|
gesellschaftlich befinden (sollen).
|
||||||
|
Es entsteht ein Normierungsdruck
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Ein lesenswerter Text zu dieser Thematik ist
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Rundum sicher}{http://www.citycrimecontrol.net/texte/rundum.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
von Christian V
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"a
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
hling.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
, der die eigene Entscheidungsfreiheit einschränken kann.
|
||||||
|
Verschlüsselte und anonymisierte Kommunikation befreit die Kommunikationspartne
|
||||||
|
rInnen aus dieser Situation.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Es muss dich nicht wirklich jemand überwachen.
|
||||||
|
Der bloße Verdacht, dass es so sein könnte, reicht schon aus, um dein Verhalten
|
||||||
|
zu beeinflussen.
|
||||||
|
Das hat 1983 schon das Bundesverfassungsgericht im so genannten Volkszählungsur
|
||||||
|
teil
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Mit diesem
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Urteil}{http://de.wikipedia.org/wiki/Volksz
|
||||||
|
\backslash
|
||||||
|
%C3
|
||||||
|
\backslash
|
||||||
|
%A4hlungsurteil}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
wurde u.a.
|
||||||
|
das Grundrecht der informationellen Selbstbestimmung geschaffen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
erklärt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Quotation
|
||||||
|
\begin_inset Quotes sld
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Wer unsicher ist, ob abweichende Verhaltensweisen jederzeit notiert und
|
||||||
|
als Information dauerhaft gespeichert, verwendet oder weitergegeben werden,
|
||||||
|
wird versuchen, nicht durch solche Verhaltensweisen aufzufallen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Quotation
|
||||||
|
Wer damit rechnet, dass etwa die Teilnahme an einer Versammlung oder einer
|
||||||
|
Bürgerinitiative behördlich registriert wird und dass ihm/ihr dadurch Risiken
|
||||||
|
entstehen können, wird möglicherweise auf eine Ausübung seiner entsprechenden
|
||||||
|
Grundrechte (Art.
|
||||||
|
8, 9 GG) verzichten.
|
||||||
|
Dies würde nicht nur die individuellen Entfaltungschancen des Einzelnen
|
||||||
|
beeinträchtigen, sondern auch das Gemeinwohl, weil Selbstbestimmung eine
|
||||||
|
elementare Funktionsbedingung eines auf Handlungsfähigkeit und Mitwirkungsfähig
|
||||||
|
keit seiner Bürger begründeten freiheitlichen demokratischen Gemeinwesens
|
||||||
|
ist.
|
||||||
|
\begin_inset Quotes srd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection*
|
||||||
|
\begin_inset Quotes sld
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Ich hab nix zu verbergen!
|
||||||
|
\begin_inset Quotes srd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
?
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Auf jedem Menschen liegt ein (mehr oder weniger stark gefühlter) Druck,
|
||||||
|
seiner eigenen Rolle zu entsprechen.
|
||||||
|
Die Tatsache, dass du beobachtet wirst, wird in den meisten Fällen ein
|
||||||
|
Unbehagen in dir hervorrufen und du wirst dein Verhalten ändern.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Ist es für dich nicht auch ein komisches Gefühl, zu wissen, dass irgendein
|
||||||
|
Sicherheitsmensch dir gerade zuschaut, während du in der Nase bohrst? Kennst
|
||||||
|
du das, wenn deine neue Liebe dich in der Kneipe anschaut und du ein möglichst
|
||||||
|
gutes Bild von dir vermitteln möchtest? Magst du die Vorstellung, dass
|
||||||
|
alle in deiner Umgebung wissen, was auf deinem Gehaltsnachweis oder in
|
||||||
|
deiner Krankenakte steht? Warum schließt du die Tür, wenn du auf der Toilette
|
||||||
|
sitzt? Hast du was zu verbergen, Drogenkonsum oder so?!
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Für den Wunsch nach Privatsphäre muss mensch sich nicht rechtfertigen.
|
||||||
|
Ein wichtiges Element in einer Demokratie ist die Unschuld bis zum Beweis
|
||||||
|
des Gegenteils.
|
||||||
|
Eine Gesellschaft kann ohne dieses Prinzip nicht frei sein.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Es gibt immer wieder Menschen, die Verschlüsselung und Anonymisierung mit
|
||||||
|
Kriminalität gleichsetzen.
|
||||||
|
Diese Menschen vergessen, dass die Umkehrung der
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Unschuldsvermutung}{http://de.wikipedia.org/wiki/Unschuldsvermut
|
||||||
|
ung}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
unser Rechtesystem unterwandert und eigentlich als krimineller Akt geahndet
|
||||||
|
werden müsste.
|
||||||
|
Die eingangs erwähnten Beispiele konnten hier hoffentlich für Klarheit
|
||||||
|
sorgen.
|
||||||
|
Für deine persönliche Freiheit und das Recht auf Privatsphäre kannst und
|
||||||
|
solltest du deine Daten, bspw.
|
||||||
|
durch E-Mail-Verschlüsselung schützen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection*
|
||||||
|
Im Anti-Terror-Wahn
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die tägliche Dosis Terror-Meldungen, welche uns aus der ganzen Welt durch
|
||||||
|
die Massenmedien in das Wohnzimmer geschaufelt wird, regt auch PolitikerInnen
|
||||||
|
zu ungeahnter Emsigkeit an.
|
||||||
|
In zahlreichen Gesetzesentwürfen
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
weitere Informationen:
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{H
|
||||||
|
\backslash
|
||||||
|
"ort der Staat bald alles?}{http://www.heise.de/tp/r4/html/result.xhtml?url=/tp/r4/
|
||||||
|
artikel/18/18021/1.html&words=Gesetz
|
||||||
|
\backslash
|
||||||
|
%20
|
||||||
|
\backslash
|
||||||
|
%DCberwachung}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
und
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Die
|
||||||
|
\backslash
|
||||||
|
"Uberwachungsspielr
|
||||||
|
\backslash
|
||||||
|
"aume des Rechtsstaates}{http://hp.kairaven.de/law/index.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
wird ein Ausbau der staatlichen Überwachungs- und Kontrollmöglichkeiten
|
||||||
|
gefordert, um geplante terroristische Aktivitäten bereits in ihrer Planungsphas
|
||||||
|
e aufzuspüren.
|
||||||
|
In diesem Zusammenhang wird auch die zunehmende Verbreitung von E-Mail-Verschlü
|
||||||
|
sselung kritisiert
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Verfassungsschutzbericht von 1996
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
Es ist zu befürchten, dass bald auch Gesetzesvorschläge eingereicht werden,
|
||||||
|
die ein Verbot von starken Verschlüsselungswerkzeugen, wie z.B.
|
||||||
|
in den USA
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
starke Verschl
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
sselung f
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"a
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
llt in den USA unter das Kriegswaffenkontrollgesetz mit den entsprechenden
|
||||||
|
Konsequenzen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
, vorsehen.
|
||||||
|
Dass diese Verbote jedoch ganz andere Personengruppen im "Visier" haben,
|
||||||
|
zeigen folgende Betrachtungen:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Neben kryptographischen Verfahren, wie die hier vorgestellte E-Mail-Verschlüssel
|
||||||
|
ung, existieren auch
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{steganographische}{http://rhlx01.rz.fht-esslingen.de/projects/kry
|
||||||
|
pto/stega/stega.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Verfahren um den Inhalt von Nachrichten zu verschleiern.
|
||||||
|
Hierbei werden die Texte beispielsweise in Bild- oder Ton-Dateien versteckt.
|
||||||
|
Die eingeweihte Empfangsseite kann dann aus dem Bild oder der Tonspur die
|
||||||
|
verborgene Nachricht extrahieren.
|
||||||
|
Diese Art der Nachrichtenübermittlung bietet den Vorteil, dass es für nicht
|
||||||
|
eingeweihte Menschen keine Möglichkeit gibt, zu erkennen, ob ein Bild eine
|
||||||
|
versteckte Nachricht enthält oder eben "nur" ein Bild ist.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Egal wie stark also die Überwachung des E-Mail-Verkehrs ist: solange es
|
||||||
|
möglich ist, Daten von A nach B zu senden, können auch unerkannt Nachrichten
|
||||||
|
transportiert werden.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Potentielle Terroristen sind sich natürlich bewusst, dass sie abgehört werden
|
||||||
|
könnten.
|
||||||
|
Sie werden also entsprechende Sicherheitsvorkehrungen treffen, um dem wachsamen
|
||||||
|
Beobachter zu entgehen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Im Netz der Datenkraken landen dann nur diejenigen, die ihre Privatsphäre
|
||||||
|
nicht schützen wollen oder können.
|
||||||
|
Mit dieser Entwicklung werden elementare Grundrechte
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Art.
|
||||||
|
5 Grundgesetz [Meinungsfreiheit] sowie das Grundrecht auf
|
||||||
|
\begin_inset Quotes erd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
informationelle Selbstbestimmung
|
||||||
|
\begin_inset Quotes erd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
welches auf Art.
|
||||||
|
2 GG [Pers
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"o
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
nlichkeitsrecht] und Art.
|
||||||
|
1 GG [Menschenw
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"u
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
rde; Grundrechtsbindung der staatlichen Gewalt] basiert
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
unserer Verfassung abgeschafft, ohne die das Fortbestehen einer freiheitlichen
|
||||||
|
Gesellschaft nicht möglich ist.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Quote
|
||||||
|
\begin_inset Quotes sld
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Wer die Freiheit aufgibt, um Sicherheit zu gewinnen, wird am Ende beides
|
||||||
|
verlieren.
|
||||||
|
\begin_inset Quotes srd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
-- Benjamin Franklin, 1759
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection*
|
||||||
|
\begin_inset Quotes erd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
Every step you take, every move you make - I'll be watching you!
|
||||||
|
\begin_inset Quotes srd
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Zitat aus dem gleichnamigen Song der Band The Police lässt sich direkt
|
||||||
|
auf das Surfen im Internet übertragen.
|
||||||
|
Letzteres ist schon lange nicht mehr anonym und war es wohl auch noch nie.
|
||||||
|
Jede Datenbewegung im Internet wird an verschiedenen Stellen genau dokumentiert.
|
||||||
|
So weiß beispielsweise der Betreiber eines Online-Shops wer sich seine
|
||||||
|
Seite wann und von wo aus angeschaut hat.
|
||||||
|
Nachzulesen ist dies in den so genannten Logdateien, die ständig beim Datenverk
|
||||||
|
ehr im Internet anfallen.
|
||||||
|
Du fragst dich, wer solche riesigen Datenmengen eigentlich auswerten soll?
|
||||||
|
Da die Daten elektronisch vorliegen ist es auch hier sehr einfach mit Hilfe
|
||||||
|
eines kleinen Programms die Logdateien nach bestimmten Merkmalen zu durchsuchen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Während der Shopbetreiber nur Aussagen über seine Seite machen kann, kennt
|
||||||
|
dein Internetanbieter dein Surfverhalten bis ins Detail.
|
||||||
|
Denn über ihn werden alle deine Daten ins Internet geleitet.
|
||||||
|
Normalerweise werden diese Verbindungsdaten gelöscht, sobald sie nicht
|
||||||
|
mehr benötigt werden.
|
||||||
|
Doch auch das wird sich bald ändern.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Durch die europäische
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Richtlinie über die Vorratsdatenspeicherung}{http://de.wikipedi
|
||||||
|
a.org/wiki/Richtlinie_
|
||||||
|
\backslash
|
||||||
|
%C3
|
||||||
|
\backslash
|
||||||
|
%BCber_die_Vorratsdatenspeicherung}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
werden wahrscheinlich noch im Jahr 2007 alle Telefon- und Internetanbieter
|
||||||
|
gezwungen, anfallende Verbindungsdaten sechs Monate lang zu speichern um
|
||||||
|
sie Behörden für Strafverfolgungszwecke zur Verfügung stellen zu können.
|
||||||
|
Mit diesem Gesetz werden alle InternetnutzerInnen unter Generalverdacht
|
||||||
|
gestellt.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Du schreibst gerade eine Hausarbeit über den Islam und recherchierst dazu
|
||||||
|
auf verschiedenen Seiten und gibst passende Stichworte in eine Suchmaschine
|
||||||
|
ein? Was denkst du welchen Eindruck deine Verbindungsdaten von dir vermitteln?
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
An dieser Stelle sei nochmal darauf hingewiesen, dass der Staat nicht die
|
||||||
|
einzige Instanz ist, die Zugriff auf deine Verbindungsdaten erlangen kann.
|
||||||
|
Geheimdienste, gut bezahlende Unternehmen, böswillige Cracker, dein Arbeitgeber
|
||||||
|
, Freunde von Freunden usw.
|
||||||
|
können sich ebenso Zugang zu diesen Daten verschaffen.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection*
|
||||||
|
Weißes Rauschen im Netz
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Verschlüsselte Kommunikation hat noch einen Nebeneffekt: Es wird dadurch
|
||||||
|
quasi Hintergrundrauschen erzeugt, das es Datenkraken
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Dieser Begriff für Institutionen mit
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"U
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
berwachungszielen (Firmen, Nachrichtendienste, ...) wurde im Umfeld des
|
||||||
|
\begin_inset ERT
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Chaos Computer Club}{http://www.ccc.de}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
gepr
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"a
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
gt.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
erschwert, die gesuchten Informationen (z.B.
|
||||||
|
von politischen AktivistInnen, MenschenrechtlerInnen usw.) herauszufischen.
|
||||||
|
Wenn viele Menschen in ihrem Alltag Dinge wie z.B.
|
||||||
|
Einkaufslisten verschlüsseln, dann sind diese Nachrichten nicht von anderen
|
||||||
|
verschlüsselten zu unterscheiden.
|
||||||
|
Die zu knackenden Datenberge wachsen und mit ihnen steigt der Aufwand überhaupt
|
||||||
|
an relevante Informationen heranzukommen.
|
||||||
|
Kritische Informationen werden so doppelt geschützt: Nicht nur durch die
|
||||||
|
Verschlüsselung (welche, falls überhaupt knackbar, dann nur mit immensem
|
||||||
|
Aufwand), sondern auch durch die Vielzahl an unwichtigen Nachrichten.
|
||||||
|
Darum bieten manche Webseiten ihren Inhalt zwar öffentlich aber verschlüsselt
|
||||||
|
an
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Erkennbar daran, dass die Adresse nicht mit http://, sondern mit https://
|
||||||
|
anf
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
"a
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
ngt.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
: Natürlich kann sie jeder Mensch lesen, der auf die Seite geht, aber was
|
||||||
|
die einzelnen NutzerInnen genau auf der Seite machen, das bleibt im Verborgenen.
|
||||||
|
Gleichzeitig werden Massen an verschlüsselten Daten erzeugt, die es potentielle
|
||||||
|
n ÜberwacherInnen deutlich erschweren, relevante Informationen zu sammeln.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection*
|
||||||
|
Identitätsklau
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Ein Phänomen, das zur Zeit zunehmend auftritt, ist eine Straftat, die
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Identitätsdiebstahl}{http://de.wikipedia.org/wiki/Identit
|
||||||
|
\backslash
|
||||||
|
%C3
|
||||||
|
\backslash
|
||||||
|
%A4tsdiebstahl}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
genannt wird: Das Vorgeben einer falschen Identität bei Kreditkartenbetrug
|
||||||
|
und ähnlichen Straftaten.
|
||||||
|
Die meisten Menschen vertrauen der Absenderangabe einer E-Mail, obwohl
|
||||||
|
sich diese mit einfachsten Mitteln fälschen lässt.
|
||||||
|
Deswegen ist die
|
||||||
|
\emph on
|
||||||
|
digitale Unterschrift
|
||||||
|
\emph default
|
||||||
|
, also das Signieren von Daten ein wichtiger Aspekt bei den Verschlüsselungstech
|
||||||
|
niken.
|
||||||
|
Durch Signaturen kannst du überprüfen, ob eine E-Mail tatsächlich von der
|
||||||
|
Person kommt, die als Absender angegeben ist.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/zur_uebersicht.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
121
v1.4.4/documents/common/email/email.lyx
Normal file
|
@ -0,0 +1,121 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme times
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize a4paper
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
In diesem Kapitel wird dir erklärt, wie du E-Mails verschlüsseln und entschlüsse
|
||||||
|
ln kannst.
|
||||||
|
Es beginnt mit einer beispielhaften Erklärung der Funktionsweise von Verschlüss
|
||||||
|
elung.
|
||||||
|
Die sich anschließenden Anleitungen beschreiben detailliert die Einrichtung
|
||||||
|
der erforderlichen Programme.
|
||||||
|
Der letzte Teil befasst sich dann mit der konkreten Anwendung.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Anleitungen sind so aufgebaut, dass du sie der Reihe nach durchgehen
|
||||||
|
kannst und zum Schluss ein komplett eingerichtetes E-Mail-Programm inklusive
|
||||||
|
der Möglichkeit zur Verschlüsselung vorfindest.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/email.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
125
v1.4.4/documents/common/email_anwendung/email_anwendung.lyx
Normal file
|
@ -0,0 +1,125 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Verschlüsselt Mailen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Nachdem du erfahren hast, wie Schlüssel ausgetauscht werden, beschreibt
|
||||||
|
das kommende Kapitel die konkrete Anwendung von Signatur und Ver- und Entschlüs
|
||||||
|
selung bei E-Mails.
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/email_anwendung.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 15 KiB |
|
@ -0,0 +1,149 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Eine E-Mail entschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Wenn du eine verschlüsselte E-Mail empfangen hast, erkennt Thunderbird dies
|
||||||
|
automatisch und öffnet ein kleines Fenster, in welches du deine Passphrase
|
||||||
|
eintragen musst.
|
||||||
|
Anschließend wird die E-Mail automatisch entschlüsselt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/tb_email_verschluesseln03.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Eingabe der Passphrase
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/email_anwendung.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
239
v1.4.4/documents/common/email_programme/email_programme.lyx
Normal file
|
@ -0,0 +1,239 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Benötigte Programme
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Programme, die du auf der CryptoCD findest, zeichnen sich durch ihre
|
||||||
|
leichte Bedienbarkeit und die Unterstützung aller gängigen Betriebssysteme
|
||||||
|
aus.
|
||||||
|
Falls du die Möglichkeit hast, lade dir die aktuelle Version von der entspreche
|
||||||
|
nden Projektseite herunter.
|
||||||
|
\newline
|
||||||
|
Im Einzelnen handelt es sich um die folgenden
|
||||||
|
Komponenten:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Das E-Mail-Programm: Thunderbird
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Ein E-Mail-Programm unterscheidet sich nicht wesentlich von einer
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Webmail-Oberfläche}{http://de.wikipedia.org/wiki/Webmail}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
, wie du sie sonst vielleicht benutzt, um deine E-Mails zu verwalten.
|
||||||
|
Allerdings sind Webmail-Oberflächen im Allgemeinen nicht zur verschlüsselten
|
||||||
|
Kommunikation geeignet.
|
||||||
|
Der CryptoCD liegt das E-Mail-Programm
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Thunderbird}{http://www.thunderbird-mail.de/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
bei, an dem die Anleitungen ausgerichtet sind.
|
||||||
|
Natürlich ist Verschlüsselung auch mit anderen E-Mail-Programmen möglich
|
||||||
|
- auch in diesem Fall hilft dir die CryptoCD weiter: denn hast du erst
|
||||||
|
verstanden wie E-Mail-Verschlüsselung funktioniert, ist es egal welches
|
||||||
|
Programm du anschließend benutzt.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Das Verschlüsselungsprogamm: GnuPG
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die eigentliche Verschlüsselung übernimmt das Programm
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{GnuPG}{http://www.gnupg.org/(de)/index.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
.
|
||||||
|
Es wird normalerweise durch die Eingabe von Befehlen auf der Kommandozeile
|
||||||
|
gesteuert.
|
||||||
|
Für viele ist das nicht sehr komfortabel - hier kommt Enigmail ins Spiel.
|
||||||
|
Im Vergleich zur kommerziellen Verschlüsselungssoftware
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{PGP}{http://www.pgp.com/de/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
räumt dir GnuPG bei gleichem Funktionsumfang mehr Rechte ein.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Subsection
|
||||||
|
Die Schnittstelle: Enigmail
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Enigmail}{http://www.erweiterungen.de/detail/Enigmail/}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
ist die Schnittstelle zwischen Thunderbird und GnuPG.
|
||||||
|
Es stellt die notwendigen Funktionen bereit, um bequem per Mausklick von
|
||||||
|
Thunderbird aus deine E-Mails zu verschlüsseln.
|
||||||
|
\newline
|
||||||
|
|
||||||
|
\newline
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Sofern du bereits eines oder mehrere der Programme installiert und eingerichtet
|
||||||
|
hast, kannst du den jeweiligen Abschnitt auch überspringen.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/email_programme.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
After Width: | Height: | Size: 95 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 25 KiB |
|
@ -0,0 +1,196 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Signaturen überprüfen
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Die Überprüfung einer Signatur erfolgt durch Thunderbird automatisch, sofern
|
||||||
|
du den öffentlichen Schlüssel des anderen Menschen
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{importiert}{../schluessel_import/schluessel_import.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
hast.
|
||||||
|
Die Informationen zur Signatur zeigt Thunderbird im Kopfbereich einer signierte
|
||||||
|
n E-Mail an.
|
||||||
|
Wie in der folgenden Abbildung zu sehen, ist dieser Bereich farbig (hier
|
||||||
|
hellblau) hinterlegt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/thunderbird_signatur_pruefen01.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Der hellblau hinterlegte Bereich zeigt die Informationen zur Signatur an
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Durch einen Klick auf das Kästchen (rot markiert) vor
|
||||||
|
\emph on
|
||||||
|
OpenPGP
|
||||||
|
\emph default
|
||||||
|
werden weitere Informationen angezeigt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/thunderbird_signatur_pruefen02.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Signierte E-Mail
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/email_signatur_ueberpruefen.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 77 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 15 KiB |
247
v1.4.4/documents/common/email_signieren/email_signieren.lyx
Normal file
|
@ -0,0 +1,247 @@
|
||||||
|
#LyX 1.4.3 created this file. For more info see http://www.lyx.org/
|
||||||
|
\lyxformat 245
|
||||||
|
\begin_document
|
||||||
|
\begin_header
|
||||||
|
\textclass article
|
||||||
|
\begin_preamble
|
||||||
|
\usepackage{html}
|
||||||
|
\usepackage{german}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\end_preamble
|
||||||
|
\language ngerman
|
||||||
|
\inputencoding auto
|
||||||
|
\fontscheme default
|
||||||
|
\graphics default
|
||||||
|
\paperfontsize default
|
||||||
|
\spacing single
|
||||||
|
\papersize default
|
||||||
|
\use_geometry false
|
||||||
|
\use_amsmath 1
|
||||||
|
\cite_engine basic
|
||||||
|
\use_bibtopic false
|
||||||
|
\paperorientation portrait
|
||||||
|
\secnumdepth 3
|
||||||
|
\tocdepth 3
|
||||||
|
\paragraph_separation skip
|
||||||
|
\defskip medskip
|
||||||
|
\quotes_language english
|
||||||
|
\papercolumns 1
|
||||||
|
\papersides 1
|
||||||
|
\paperpagestyle default
|
||||||
|
\tracking_changes false
|
||||||
|
\output_changes true
|
||||||
|
\end_header
|
||||||
|
|
||||||
|
\begin_body
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{titlebar.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{menue.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
begin{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<!-- main starts here -->
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
<div id="main">
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
end{rawhtml}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Title
|
||||||
|
Eine E-Mail signieren
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Author
|
||||||
|
E-Mails verschlüsseln
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Mit Signatur wird eine digitale Unterschrift bezeichnet.
|
||||||
|
Damit kann sichergestellt werden, dass mit deiner Signatur versehene E-Mails
|
||||||
|
auch wirklich von dir stammen und auf dem Weg zum Empfänger/zur Empfängerin
|
||||||
|
nicht verändert wurden.
|
||||||
|
Und das ist nicht nur für geschäftliche Kommunikation wichtig.
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Das Signieren funktioniert so: Verfasse wie gewohnt eine neue E-Mail.
|
||||||
|
Klicke anschließend im Nachrichtenfenster auf die Schaltfläche
|
||||||
|
\emph on
|
||||||
|
OpenPGP
|
||||||
|
\emph default
|
||||||
|
und wähle nun die Optionen
|
||||||
|
\emph on
|
||||||
|
Nachricht unterschreiben
|
||||||
|
\emph default
|
||||||
|
und
|
||||||
|
\emph on
|
||||||
|
PGP/MIME verwenden
|
||||||
|
\begin_inset Foot
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset ERT
|
||||||
|
status collapsed
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
|
||||||
|
|
||||||
|
\backslash
|
||||||
|
htmladdnormallink{Was ist PGP/MIME?}{../pgp_mime/pgp_mime.html}
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\emph default
|
||||||
|
aus:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/tb_email_verschluesseln01.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Auswahl von Signatur und Verschlüsselung
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Der grüne Stift am unteren Rand des Nachrichtenfensters symbolisiert, dass
|
||||||
|
diese E-Mail signiert verschickt wird:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/tb_email_verschluesseln02.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Signatur und Verschlüsselung sind aktiv
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
Beim anschließenden Versand der Nachricht, wirst du nach deiner Passphrase
|
||||||
|
gefragt:
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Float figure
|
||||||
|
wide false
|
||||||
|
sideways false
|
||||||
|
status open
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Graphics
|
||||||
|
filename bilder/tb_email_verschluesseln03.png
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Caption
|
||||||
|
Eingabe der Passphrase
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\begin_layout Standard
|
||||||
|
\begin_inset Include \input{progress/email_anwendung.inc}
|
||||||
|
preview false
|
||||||
|
|
||||||
|
\end_inset
|
||||||
|
|
||||||
|
|
||||||
|
\end_layout
|
||||||
|
|
||||||
|
\end_body
|
||||||
|
\end_document
|
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 77 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 15 KiB |