parent
d1f475135c
commit
d2056dc362
@ -0,0 +1,147 @@
|
|||||||
|
\documentclass[11pt]{scrartcl}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage[ngerman]{babel}
|
||||||
|
\usepackage{amsmath}
|
||||||
|
%\usepackage{amssymb}
|
||||||
|
\usepackage{multicol}
|
||||||
|
%\usepackage{booktabs}
|
||||||
|
%\usepackage{pstricks}
|
||||||
|
%\usepackage{pst-node}
|
||||||
|
\usepackage[paper=a4paper,left=30mm,right=20mm,top=20mm,bottom =25mm]{geometry}
|
||||||
|
\usepackage[
|
||||||
|
pdftitle={Uebungsblatt 3: Programmiertechniken - AlgoDS2},
|
||||||
|
pdfsubject={Algorithmen und Datenstrukturen 2; Uebungsblatt 3: Programmiertechniken},
|
||||||
|
pdfauthor={Thomas Battermann},
|
||||||
|
pdfkeywords={Uebungsblatt 3: Programmiertechniken - AlgoDS2},
|
||||||
|
pdfborder={0 0 0}
|
||||||
|
]{hyperref}
|
||||||
|
\usepackage{tabularx}
|
||||||
|
\usepackage{graphicx}
|
||||||
|
\usepackage[usenames,dvipsnames]{color}
|
||||||
|
\usepackage{lastpage}
|
||||||
|
\usepackage{fancyhdr}
|
||||||
|
\setlength{\parindent}{0ex}
|
||||||
|
\setlength{\parskip}{2ex}
|
||||||
|
\setcounter{secnumdepth}{4}
|
||||||
|
\setcounter{tocdepth}{4}
|
||||||
|
\definecolor{darkgreen}{rgb}{0,0.5,0}
|
||||||
|
\definecolor{darkblue}{rgb}{0,0,0.5}
|
||||||
|
|
||||||
|
\pagestyle{fancy} %eigener Seitenstil
|
||||||
|
\fancyhf{} %alle Kopf- und Fußzeilenfelder bereinigen
|
||||||
|
\fancyhead[L]{Übungsblatt 3\\Programmiertechniken} %Kopfzeile links
|
||||||
|
\fancyhead[C]{} %zentrierte Kopfzeile
|
||||||
|
\fancyhead[R]{\textsc{Algorithmen \& Datenstrukturen 2}\\22. Dezember 2011} %Kopfzeile rechts
|
||||||
|
\renewcommand{\headrulewidth}{0.4pt} %obere Trennlinie
|
||||||
|
\fancyfoot[C]{Seite \thepage\ von \pageref{LastPage}}
|
||||||
|
\renewcommand{\footrulewidth}{0.4pt} %untere Trennlinie
|
||||||
|
|
||||||
|
\newcommand{\spa}{\hspace*{4mm}}
|
||||||
|
\newcommand{\defin}{\textcolor{darkgreen}{\textbf{Def.: }}}
|
||||||
|
\newcommand{\rrfloor}{\right\rfloor}
|
||||||
|
\newcommand{\llfloor}{\left\lfloor}
|
||||||
|
|
||||||
|
|
||||||
|
\title{Übung Programmiertechniken -- AlgoDS2}
|
||||||
|
\author{Thomas Battermann}
|
||||||
|
\date{22. Dezember 2011}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\pagestyle{fancy}
|
||||||
|
|
||||||
|
\section*{Aufgabe 1}
|
||||||
|
\addcontentsline{toc}{section}{Aufgabe 1}
|
||||||
|
|
||||||
|
\includegraphics{bilder/aufgabe_1.eps}
|
||||||
|
|
||||||
|
\begin{multicols}{2}
|
||||||
|
1. Sortieren nach aufsteigender Endzeit\\[3mm]
|
||||||
|
\begin{tabular}{c|c|c}
|
||||||
|
$i$ & $s_i$ & $f_i$\\
|
||||||
|
\hline
|
||||||
|
3 & 2 & 3 \\
|
||||||
|
2 & 4 & 5 \\
|
||||||
|
10 & 5 & 7 \\
|
||||||
|
7 & 7 & 9 \\
|
||||||
|
5 & 10 & 12 \\
|
||||||
|
8 & 13 & 14
|
||||||
|
\end{tabular}
|
||||||
|
\columnbreak\\
|
||||||
|
2. Auswahl der Aktivitäten.\\[3mm]
|
||||||
|
\begin{tabular}{c|c|c}
|
||||||
|
$i$ & $s_i$ & $f_i$\\
|
||||||
|
\hline
|
||||||
|
3 & 2 & 3\\
|
||||||
|
2 & 4 & 5\\
|
||||||
|
10 & 5 & 7\\
|
||||||
|
7 & 7 & 9\\
|
||||||
|
5 & 10 & 12\\
|
||||||
|
8 & 13 & 14
|
||||||
|
\end{tabular}
|
||||||
|
\end{multicols}
|
||||||
|
|
||||||
|
\section*{Aufgabe 2}
|
||||||
|
\addcontentsline{toc}{section}{Aufgabe 2}
|
||||||
|
|
||||||
|
\includegraphics{bilder/aufgabe_2.eps}
|
||||||
|
|
||||||
|
\begin{tabular}{c|c|c|c|c|c|c|c}
|
||||||
|
$A_{i}(j)$ & 1 & 2 & 3 & 4 & 5 & 6 & $E$ \\
|
||||||
|
\hline
|
||||||
|
1 & 10 & 13 & 18 & 22 & 25 & 33 & 37 \\
|
||||||
|
\hline
|
||||||
|
2 & 9 & 16 & 22 & 21 & 27 & 30 & 25
|
||||||
|
\end{tabular}
|
||||||
|
|
||||||
|
\begin{tabular}{c|c|c|c|c|c}
|
||||||
|
$j$ & 2 & 3 & 4 & 5 & 6 \\
|
||||||
|
\hline
|
||||||
|
$l_1$ & 1 & 1 & 1 & 1 & 1 \\
|
||||||
|
\hline
|
||||||
|
$l_2$ & 2 & 2 & 1 & 2 & 2
|
||||||
|
\end{tabular}
|
||||||
|
|
||||||
|
\section*{Aufgabe 3}
|
||||||
|
\addcontentsline{toc}{section}{Aufgabe 3}
|
||||||
|
|
||||||
|
\subsection*{a)}
|
||||||
|
\addcontentsline{toc}{subsection}{a)}
|
||||||
|
|
||||||
|
\includegraphics{bilder/aufgabe_3a.eps}\\
|
||||||
|
\begin{align*}
|
||||||
|
& 3 * ( 1000 + 700 + 2100 + 1500 + 1900 + 800 + 2000 )\\
|
||||||
|
=\, & 3 * 10000 = 30000
|
||||||
|
\end{align*}
|
||||||
|
|
||||||
|
\subsection*{b)}
|
||||||
|
\addcontentsline{toc}{subsection}{b)}
|
||||||
|
|
||||||
|
\includegraphics{bilder/aufgabe_3b.eps}\\
|
||||||
|
\begin{align*}
|
||||||
|
& ( 41 * 2 + 25*3+15*4+19*3)*100 = (82+75+60+57)*100\\
|
||||||
|
=\,& 274 * 100 = 27400 \Rightarrow \frac{27400}{30000} \approx 0.9133 = 91.22\%
|
||||||
|
\end{align*}
|
||||||
|
|
||||||
|
\section*{Aufgabe 4}
|
||||||
|
\addcontentsline{toc}{section}{Aufgabe 4}
|
||||||
|
|
||||||
|
\includegraphics{bilder/aufgabe_4.eps}
|
||||||
|
|
||||||
|
\({\bf i=1;\,j=3}\)\\
|
||||||
|
\begin{tabular}{l|lr}
|
||||||
|
1 & \(450\) & $*$\\
|
||||||
|
\hline
|
||||||
|
2 & \(1600\)\\
|
||||||
|
\end{tabular}
|
||||||
|
|
||||||
|
\({\bf i=1;\, j=4}\)\\
|
||||||
|
\begin{tabular}{l|lr}
|
||||||
|
1 & \(0+525+10*5*15=1275\)\\
|
||||||
|
\hline
|
||||||
|
2 & \(1000+900+10*20*15=4900\)\\
|
||||||
|
\hline
|
||||||
|
3 & \(450+0+10*3*15=900\) & $*$
|
||||||
|
\end{tabular}
|
||||||
|
|
||||||
|
|
||||||
|
\end{document}
|
@ -0,0 +1,399 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||||
|
<ipe version="70005" creator="Ipe 7.1.1">
|
||||||
|
<info created="D:20111222141928" modified="D:20111222142645"/>
|
||||||
|
<ipestyle name="basic">
|
||||||
|
<symbol name="arrow/arc(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/farc(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/circle(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
0.4 0 0 0.4 0 0 e
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/disk(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-fill">
|
||||||
|
0.5 0 0 0.5 0 0 e
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
0.4 0 0 0.4 0 0 e
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/box(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
-0.4 -0.4 m
|
||||||
|
0.4 -0.4 l
|
||||||
|
0.4 0.4 l
|
||||||
|
-0.4 0.4 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/square(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-fill">
|
||||||
|
-0.5 -0.5 m
|
||||||
|
0.5 -0.5 l
|
||||||
|
0.5 0.5 l
|
||||||
|
-0.5 0.5 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
-0.4 -0.4 m
|
||||||
|
0.4 -0.4 l
|
||||||
|
0.4 0.4 l
|
||||||
|
-0.4 0.4 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/cross(sx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.43 -0.57 m
|
||||||
|
0.57 0.43 l
|
||||||
|
0.43 0.57 l
|
||||||
|
-0.57 -0.43 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.43 0.57 m
|
||||||
|
0.57 -0.43 l
|
||||||
|
0.43 -0.57 l
|
||||||
|
-0.57 0.43 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fnormal(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/pointed(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-0.8 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fpointed(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-0.8 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/linear(spx)">
|
||||||
|
<path stroke="sym-stroke" pen="sym-pen">
|
||||||
|
-1 0.333 m
|
||||||
|
0 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fdouble(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
-1 0 m
|
||||||
|
-2 0.333 l
|
||||||
|
-2 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/double(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
-1 0 m
|
||||||
|
-2 0.333 l
|
||||||
|
-2 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<pen name="heavier" value="0.8"/>
|
||||||
|
<pen name="fat" value="1.2"/>
|
||||||
|
<pen name="ultrafat" value="2"/>
|
||||||
|
<symbolsize name="large" value="5"/>
|
||||||
|
<symbolsize name="small" value="2"/>
|
||||||
|
<symbolsize name="tiny" value="1.1"/>
|
||||||
|
<arrowsize name="large" value="10"/>
|
||||||
|
<arrowsize name="small" value="5"/>
|
||||||
|
<arrowsize name="tiny" value="3"/>
|
||||||
|
<color name="red" value="1 0 0"/>
|
||||||
|
<color name="green" value="0 1 0"/>
|
||||||
|
<color name="blue" value="0 0 1"/>
|
||||||
|
<color name="yellow" value="1 1 0"/>
|
||||||
|
<color name="orange" value="1 0.647 0"/>
|
||||||
|
<color name="gold" value="1 0.843 0"/>
|
||||||
|
<color name="purple" value="0.627 0.125 0.941"/>
|
||||||
|
<color name="gray" value="0.745"/>
|
||||||
|
<color name="brown" value="0.647 0.165 0.165"/>
|
||||||
|
<color name="navy" value="0 0 0.502"/>
|
||||||
|
<color name="pink" value="1 0.753 0.796"/>
|
||||||
|
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||||
|
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||||
|
<color name="violet" value="0.933 0.51 0.933"/>
|
||||||
|
<color name="darkblue" value="0 0 0.545"/>
|
||||||
|
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||||
|
<color name="darkgray" value="0.663"/>
|
||||||
|
<color name="darkgreen" value="0 0.392 0"/>
|
||||||
|
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||||
|
<color name="darkorange" value="1 0.549 0"/>
|
||||||
|
<color name="darkred" value="0.545 0 0"/>
|
||||||
|
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||||
|
<color name="lightcyan" value="0.878 1 1"/>
|
||||||
|
<color name="lightgray" value="0.827"/>
|
||||||
|
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||||
|
<color name="lightyellow" value="1 1 0.878"/>
|
||||||
|
<dashstyle name="dashed" value="[4] 0"/>
|
||||||
|
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||||
|
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||||
|
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||||
|
<textsize name="large" value="\large"/>
|
||||||
|
<textsize name="Large" value="\Large"/>
|
||||||
|
<textsize name="LARGE" value="\LARGE"/>
|
||||||
|
<textsize name="huge" value="\huge"/>
|
||||||
|
<textsize name="Huge" value="\Huge"/>
|
||||||
|
<textsize name="small" value="\small"/>
|
||||||
|
<textsize name="footnote" value="\footnotesize"/>
|
||||||
|
<textsize name="tiny" value="\tiny"/>
|
||||||
|
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||||
|
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||||
|
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||||
|
<gridsize name="4 pts" value="4"/>
|
||||||
|
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||||
|
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||||
|
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||||
|
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||||
|
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||||
|
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||||
|
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||||
|
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||||
|
<anglesize name="90 deg" value="90"/>
|
||||||
|
<anglesize name="60 deg" value="60"/>
|
||||||
|
<anglesize name="45 deg" value="45"/>
|
||||||
|
<anglesize name="30 deg" value="30"/>
|
||||||
|
<anglesize name="22.5 deg" value="22.5"/>
|
||||||
|
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||||
|
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||||
|
</ipestyle>
|
||||||
|
<page>
|
||||||
|
<layer name="Raster"/>
|
||||||
|
<layer name="alpha"/>
|
||||||
|
<view layers="Raster alpha" active="alpha"/>
|
||||||
|
<path layer="Raster" matrix="1 0 0 1 -64 16" stroke="gray">
|
||||||
|
128 736 m
|
||||||
|
336 736 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="gray">
|
||||||
|
128 720 m
|
||||||
|
336 720 l
|
||||||
|
336 704 l
|
||||||
|
128 704 l
|
||||||
|
128 688 l
|
||||||
|
336 688 l
|
||||||
|
336 672 l
|
||||||
|
128 672 l
|
||||||
|
128 656 l
|
||||||
|
336 656 l
|
||||||
|
336 640 l
|
||||||
|
128 640 l
|
||||||
|
128 624 l
|
||||||
|
336 624 l
|
||||||
|
336 608 l
|
||||||
|
128 608 l
|
||||||
|
128 592 l
|
||||||
|
336 592 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="gray">
|
||||||
|
144 752 m
|
||||||
|
144 576 l
|
||||||
|
160 576 l
|
||||||
|
160 752 l
|
||||||
|
176 752 l
|
||||||
|
176 576 l
|
||||||
|
192 576 l
|
||||||
|
192 752 l
|
||||||
|
208 752 l
|
||||||
|
208 576 l
|
||||||
|
224 576 l
|
||||||
|
224 752 l
|
||||||
|
240 752 l
|
||||||
|
240 576 l
|
||||||
|
256 576 l
|
||||||
|
256 752 l
|
||||||
|
272 752 l
|
||||||
|
272 576 l
|
||||||
|
288 576 l
|
||||||
|
288 752 l
|
||||||
|
304 752 l
|
||||||
|
304 576 l
|
||||||
|
320 576 l
|
||||||
|
320 752 l
|
||||||
|
</path>
|
||||||
|
<text layer="alpha" matrix="1 0 0 1 -64 8" transformations="translations" pos="128 768" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$1$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="144 768" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$2$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="160 768" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="176 768" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$4$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="192 768" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$5$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="208 768" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$6$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="224 768" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$7$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="240 768" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$8$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="256 768" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$9$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="272 768" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$10$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="288 768" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$11$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="304 768" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$12$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="320 768" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$13$</text>
|
||||||
|
<text matrix="1 0 0 1 -64 8" transformations="translations" pos="336 768" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$14$</text>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black" fill="darkblue">
|
||||||
|
144 752 m
|
||||||
|
160 752 l
|
||||||
|
160 736 l
|
||||||
|
144 736 l
|
||||||
|
144 752 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black" fill="blue">
|
||||||
|
128 736 m
|
||||||
|
176 736 l
|
||||||
|
176 720 l
|
||||||
|
128 720 l
|
||||||
|
128 736 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black" fill="turquoise">
|
||||||
|
176 720 m
|
||||||
|
192 720 l
|
||||||
|
192 704 l
|
||||||
|
176 704 l
|
||||||
|
176 720 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black" fill="purple">
|
||||||
|
176 704 m
|
||||||
|
208 704 l
|
||||||
|
208 688 l
|
||||||
|
176 688 l
|
||||||
|
176 704 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black" fill="brown">
|
||||||
|
192 688 m
|
||||||
|
224 688 l
|
||||||
|
224 672 l
|
||||||
|
208 672 l
|
||||||
|
192 672 l
|
||||||
|
192 688 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black" fill="darkred">
|
||||||
|
208 672 m
|
||||||
|
240 672 l
|
||||||
|
240 656 l
|
||||||
|
208 656 l
|
||||||
|
208 672 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black" fill="darkorange">
|
||||||
|
224 656 m
|
||||||
|
256 656 l
|
||||||
|
256 640 l
|
||||||
|
224 640 l
|
||||||
|
224 656 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black" fill="yellow">
|
||||||
|
208 640 m
|
||||||
|
272 640 l
|
||||||
|
272 624 l
|
||||||
|
208 624 l
|
||||||
|
208 640 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black" fill="orange">
|
||||||
|
272 624 m
|
||||||
|
304 624 l
|
||||||
|
304 608 l
|
||||||
|
272 608 l
|
||||||
|
272 624 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black" fill="seagreen">
|
||||||
|
320 608 m
|
||||||
|
256 608 l
|
||||||
|
256 592 l
|
||||||
|
320 592 l
|
||||||
|
320 608 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black" fill="darkgreen">
|
||||||
|
336 592 m
|
||||||
|
320 592 l
|
||||||
|
320 576 l
|
||||||
|
336 576 l
|
||||||
|
336 592 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 -60 20" transformations="translations" pos="116 740" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text matrix="1 0 0 1 -60 20" transformations="translations" pos="116 724" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$1$</text>
|
||||||
|
<text matrix="1 0 0 1 -60 20" transformations="translations" pos="116 708" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$2$</text>
|
||||||
|
<text matrix="1 0 0 1 -60 20" transformations="translations" pos="116 692" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$9$</text>
|
||||||
|
<text matrix="1 0 0 1 -60 20" transformations="translations" pos="116 676" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$10$</text>
|
||||||
|
<text matrix="1 0 0 1 -60 20" transformations="translations" pos="116 660" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$11$</text>
|
||||||
|
<text matrix="1 0 0 1 -60 20" transformations="translations" pos="116 644" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$7$</text>
|
||||||
|
<text matrix="1 0 0 1 -60 20" transformations="translations" pos="116 628" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$6$</text>
|
||||||
|
<text matrix="1 0 0 1 -60 20" transformations="translations" pos="116 612" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$5$</text>
|
||||||
|
<text matrix="1 0 0 1 -60 20" transformations="translations" pos="116 596" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$4$</text>
|
||||||
|
<text matrix="1 0 0 1 -60 20" transformations="translations" pos="116 580" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$8$</text>
|
||||||
|
<path matrix="1 0 0 1 -64 16" stroke="black">
|
||||||
|
128 752 m
|
||||||
|
128 576 l
|
||||||
|
336 576 l
|
||||||
|
336 752 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<text transformations="translations" pos="64 792" stroke="black" type="label" width="17.158" height="6.808" depth="0" valign="baseline">Zeit</text>
|
||||||
|
<text matrix="0 1 -1 0 763.665 687.253" pos="40 720" stroke="black" type="label" width="40.412" height="6.918" depth="0" valign="baseline">Aktivit$\ddot a$t</text>
|
||||||
|
</page>
|
||||||
|
</ipe>
|
@ -0,0 +1,442 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||||
|
<ipe version="70005" creator="Ipe 7.1.1">
|
||||||
|
<info created="D:20111222152526" modified="D:20111222182631"/>
|
||||||
|
<ipestyle name="basic">
|
||||||
|
<symbol name="arrow/arc(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/farc(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/circle(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
0.4 0 0 0.4 0 0 e
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/disk(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-fill">
|
||||||
|
0.5 0 0 0.5 0 0 e
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
0.4 0 0 0.4 0 0 e
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/box(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
-0.4 -0.4 m
|
||||||
|
0.4 -0.4 l
|
||||||
|
0.4 0.4 l
|
||||||
|
-0.4 0.4 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/square(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-fill">
|
||||||
|
-0.5 -0.5 m
|
||||||
|
0.5 -0.5 l
|
||||||
|
0.5 0.5 l
|
||||||
|
-0.5 0.5 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
-0.4 -0.4 m
|
||||||
|
0.4 -0.4 l
|
||||||
|
0.4 0.4 l
|
||||||
|
-0.4 0.4 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/cross(sx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.43 -0.57 m
|
||||||
|
0.57 0.43 l
|
||||||
|
0.43 0.57 l
|
||||||
|
-0.57 -0.43 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.43 0.57 m
|
||||||
|
0.57 -0.43 l
|
||||||
|
0.43 -0.57 l
|
||||||
|
-0.57 0.43 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fnormal(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/pointed(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-0.8 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fpointed(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-0.8 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/linear(spx)">
|
||||||
|
<path stroke="sym-stroke" pen="sym-pen">
|
||||||
|
-1 0.333 m
|
||||||
|
0 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fdouble(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
-1 0 m
|
||||||
|
-2 0.333 l
|
||||||
|
-2 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/double(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
-1 0 m
|
||||||
|
-2 0.333 l
|
||||||
|
-2 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<pen name="heavier" value="0.8"/>
|
||||||
|
<pen name="fat" value="1.2"/>
|
||||||
|
<pen name="ultrafat" value="2"/>
|
||||||
|
<symbolsize name="large" value="5"/>
|
||||||
|
<symbolsize name="small" value="2"/>
|
||||||
|
<symbolsize name="tiny" value="1.1"/>
|
||||||
|
<arrowsize name="large" value="10"/>
|
||||||
|
<arrowsize name="small" value="5"/>
|
||||||
|
<arrowsize name="tiny" value="3"/>
|
||||||
|
<color name="red" value="1 0 0"/>
|
||||||
|
<color name="green" value="0 1 0"/>
|
||||||
|
<color name="blue" value="0 0 1"/>
|
||||||
|
<color name="yellow" value="1 1 0"/>
|
||||||
|
<color name="orange" value="1 0.647 0"/>
|
||||||
|
<color name="gold" value="1 0.843 0"/>
|
||||||
|
<color name="purple" value="0.627 0.125 0.941"/>
|
||||||
|
<color name="gray" value="0.745"/>
|
||||||
|
<color name="brown" value="0.647 0.165 0.165"/>
|
||||||
|
<color name="navy" value="0 0 0.502"/>
|
||||||
|
<color name="pink" value="1 0.753 0.796"/>
|
||||||
|
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||||
|
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||||
|
<color name="violet" value="0.933 0.51 0.933"/>
|
||||||
|
<color name="darkblue" value="0 0 0.545"/>
|
||||||
|
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||||
|
<color name="darkgray" value="0.663"/>
|
||||||
|
<color name="darkgreen" value="0 0.392 0"/>
|
||||||
|
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||||
|
<color name="darkorange" value="1 0.549 0"/>
|
||||||
|
<color name="darkred" value="0.545 0 0"/>
|
||||||
|
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||||
|
<color name="lightcyan" value="0.878 1 1"/>
|
||||||
|
<color name="lightgray" value="0.827"/>
|
||||||
|
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||||
|
<color name="lightyellow" value="1 1 0.878"/>
|
||||||
|
<dashstyle name="dashed" value="[4] 0"/>
|
||||||
|
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||||
|
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||||
|
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||||
|
<textsize name="large" value="\large"/>
|
||||||
|
<textsize name="Large" value="\Large"/>
|
||||||
|
<textsize name="LARGE" value="\LARGE"/>
|
||||||
|
<textsize name="huge" value="\huge"/>
|
||||||
|
<textsize name="Huge" value="\Huge"/>
|
||||||
|
<textsize name="small" value="\small"/>
|
||||||
|
<textsize name="footnote" value="\footnotesize"/>
|
||||||
|
<textsize name="tiny" value="\tiny"/>
|
||||||
|
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||||
|
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||||
|
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||||
|
<gridsize name="4 pts" value="4"/>
|
||||||
|
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||||
|
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||||
|
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||||
|
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||||
|
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||||
|
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||||
|
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||||
|
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||||
|
<anglesize name="90 deg" value="90"/>
|
||||||
|
<anglesize name="60 deg" value="60"/>
|
||||||
|
<anglesize name="45 deg" value="45"/>
|
||||||
|
<anglesize name="30 deg" value="30"/>
|
||||||
|
<anglesize name="22.5 deg" value="22.5"/>
|
||||||
|
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||||
|
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||||
|
</ipestyle>
|
||||||
|
<page>
|
||||||
|
<layer name="alpha"/>
|
||||||
|
<layer name="beta"/>
|
||||||
|
<layer name="gamma"/>
|
||||||
|
<view layers="alpha beta gamma" active="gamma"/>
|
||||||
|
<path layer="alpha" matrix="1 0 0 1 8 -8" stroke="black" fill="lightcyan">
|
||||||
|
52 812 m
|
||||||
|
52 788 l
|
||||||
|
308 788 l
|
||||||
|
308 812 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" fill="lightcyan">
|
||||||
|
52 748 m
|
||||||
|
52 724 l
|
||||||
|
308 724 l
|
||||||
|
308 748 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path layer="beta" matrix="1 0 0 1 8 -8" stroke="black" fill="black">
|
||||||
|
8 0 0 8 32 768 e
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="32 768" stroke="white" type="label" width="7.472" height="6.808" depth="0" halign="center" valign="center">A</text>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 64 800 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 16 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 96 800 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 32 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 128 800 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 48 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 160 800 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 64 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 192 800 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 80 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 224 800 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 64 736 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 16 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 96 736 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 32 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 128 736 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 48 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 160 736 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 64 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 192 736 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 80 -8" stroke="black" fill="lightblue">
|
||||||
|
8 0 0 8 224 736 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="darkorange" arrow="normal/normal">
|
||||||
|
40 776 m
|
||||||
|
56 792 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="darkorange" arrow="normal/normal">
|
||||||
|
72 800 m
|
||||||
|
96 800 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="darkorange" arrow="normal/normal">
|
||||||
|
112 800 m
|
||||||
|
144 800 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
160 800 m
|
||||||
|
192 800 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
208 800 m
|
||||||
|
240 800 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
256 800 m
|
||||||
|
288 800 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
40 760 m
|
||||||
|
56 744 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
72 736 m
|
||||||
|
96 736 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
112 736 m
|
||||||
|
144 736 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
160 736 m
|
||||||
|
192 736 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="darkorange" arrow="normal/normal">
|
||||||
|
208 736 m
|
||||||
|
240 736 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="darkorange" arrow="normal/normal">
|
||||||
|
256 736 m
|
||||||
|
288 736 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
72 744 m
|
||||||
|
96 792 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
72 792 m
|
||||||
|
96 744 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
112 792 m
|
||||||
|
144 744 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
112 744 m
|
||||||
|
144 792 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="darkorange" arrow="normal/normal">
|
||||||
|
160 792 m
|
||||||
|
192 744 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
160 744 m
|
||||||
|
192 792 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
208 792 m
|
||||||
|
240 744 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
208 744 m
|
||||||
|
240 792 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
256 792 m
|
||||||
|
288 744 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" arrow="normal/normal">
|
||||||
|
256 744 m
|
||||||
|
288 792 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" fill="black">
|
||||||
|
8 0 0 8 336 768 e
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="336 768" stroke="white" type="label" width="6.78" height="6.808" depth="0" halign="center" valign="center">E</text>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="black" fill="white" arrow="normal/normal">
|
||||||
|
304 792 m
|
||||||
|
328 776 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 8 -8" stroke="darkorange" fill="white" arrow="normal/normal">
|
||||||
|
304 744 m
|
||||||
|
328 760 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="64 800" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$7$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="104 800" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="152 800" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$5$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="200 800" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$4$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="248 800" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="296 800" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$8$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="64 736" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$4$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="104 736" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$7$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="152 736" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$6$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="200 736" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$2$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="248 736" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$6$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="296 736" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="40 784" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="40 752" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$5$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="320 792" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$4$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="320 744" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$5$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="72 776" stroke="darkred" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$2$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="72 760" stroke="darkred" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$2$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="112 776" stroke="darkred" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="112 760" stroke="darkred" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$4$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="160 776" stroke="darkred" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$1$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="160 760" stroke="darkred" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$4$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="208 776" stroke="darkred" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$2$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="208 760" stroke="darkred" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$2$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="256 776" stroke="darkred" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$2$</text>
|
||||||
|
<text matrix="1 0 0 1 8 -8" transformations="translations" pos="256 760" stroke="darkred" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text layer="gamma" transformations="translations" pos="72 820" stroke="darkred" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$10$</text>
|
||||||
|
<text transformations="translations" pos="112 820" stroke="darkred" type="label" width="9.963" height="6.423" depth="1.99" halign="center" valign="center">$\underline{13}$</text>
|
||||||
|
<text transformations="translations" pos="160 820" stroke="darkred" type="label" width="9.963" height="6.423" depth="1.99" halign="center" valign="center">$\underline{18}$</text>
|
||||||
|
<text transformations="translations" pos="208 820" stroke="darkred" type="label" width="9.963" height="6.423" depth="1.99" halign="center" valign="center">$\underline{22}$</text>
|
||||||
|
<text transformations="translations" pos="256 820" stroke="darkred" type="label" width="9.963" height="6.423" depth="1.99" halign="center" valign="center">$\underline{25}$</text>
|
||||||
|
<text transformations="translations" pos="304 820" stroke="darkred" type="label" width="9.963" height="6.423" depth="1.99" halign="center" valign="center">$\underline{33}$</text>
|
||||||
|
<text transformations="translations" pos="112 708" stroke="darkred" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$19$</text>
|
||||||
|
<text transformations="translations" pos="160 708" stroke="darkred" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$22$</text>
|
||||||
|
<text transformations="translations" pos="208 708" stroke="darkred" type="label" width="9.963" height="6.423" depth="1.99" halign="center" valign="center">$\underline{21}$</text>
|
||||||
|
<text transformations="translations" pos="256 708" stroke="darkred" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$30$</text>
|
||||||
|
<text transformations="translations" pos="304 708" stroke="darkred" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$30$</text>
|
||||||
|
<text transformations="translations" pos="112 812" stroke="darkblue" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$14$</text>
|
||||||
|
<text transformations="translations" pos="112 700" stroke="darkblue" type="label" width="9.963" height="6.423" depth="1.99" halign="center" valign="center">$\underline{16}$</text>
|
||||||
|
<text transformations="translations" pos="72 704" stroke="darkblue" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$9$</text>
|
||||||
|
<text transformations="translations" pos="160 700" stroke="darkblue" type="label" width="9.963" height="6.423" depth="1.99" halign="center" valign="center">$\underline{22}$</text>
|
||||||
|
<text transformations="translations" pos="208 700" stroke="darkblue" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$24$</text>
|
||||||
|
<text transformations="translations" pos="256 700" stroke="darkblue" type="label" width="9.963" height="6.423" depth="1.99" halign="center" valign="center">$\underline{27}$</text>
|
||||||
|
<text transformations="translations" pos="304 700" stroke="darkblue" type="label" width="9.963" height="6.423" depth="1.99" halign="center" valign="center">$\underline{30}$</text>
|
||||||
|
<text transformations="translations" pos="160 812" stroke="darkblue" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$25$</text>
|
||||||
|
<text transformations="translations" pos="208 812" stroke="darkblue" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$30$</text>
|
||||||
|
<text transformations="translations" pos="256 812" stroke="darkblue" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$26$</text>
|
||||||
|
<text transformations="translations" pos="304 812" stroke="darkblue" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$38$</text>
|
||||||
|
<text transformations="translations" pos="360 752" stroke="darkblue" type="label" width="9.963" height="6.423" depth="1.99" halign="center" valign="center">$\underline{35}$</text>
|
||||||
|
<text transformations="translations" pos="360 768" stroke="darkred" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$37$</text>
|
||||||
|
</page>
|
||||||
|
</ipe>
|
@ -0,0 +1,339 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||||
|
<ipe version="70005" creator="Ipe 7.1.1">
|
||||||
|
<info created="D:20111222183859" modified="D:20111222215619"/>
|
||||||
|
<ipestyle name="basic">
|
||||||
|
<symbol name="arrow/arc(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/farc(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/circle(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
0.4 0 0 0.4 0 0 e
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/disk(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-fill">
|
||||||
|
0.5 0 0 0.5 0 0 e
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
0.4 0 0 0.4 0 0 e
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/box(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
-0.4 -0.4 m
|
||||||
|
0.4 -0.4 l
|
||||||
|
0.4 0.4 l
|
||||||
|
-0.4 0.4 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/square(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-fill">
|
||||||
|
-0.5 -0.5 m
|
||||||
|
0.5 -0.5 l
|
||||||
|
0.5 0.5 l
|
||||||
|
-0.5 0.5 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
-0.4 -0.4 m
|
||||||
|
0.4 -0.4 l
|
||||||
|
0.4 0.4 l
|
||||||
|
-0.4 0.4 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/cross(sx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.43 -0.57 m
|
||||||
|
0.57 0.43 l
|
||||||
|
0.43 0.57 l
|
||||||
|
-0.57 -0.43 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.43 0.57 m
|
||||||
|
0.57 -0.43 l
|
||||||
|
0.43 -0.57 l
|
||||||
|
-0.57 0.43 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fnormal(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/pointed(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-0.8 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fpointed(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-0.8 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/linear(spx)">
|
||||||
|
<path stroke="sym-stroke" pen="sym-pen">
|
||||||
|
-1 0.333 m
|
||||||
|
0 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fdouble(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
-1 0 m
|
||||||
|
-2 0.333 l
|
||||||
|
-2 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/double(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
-1 0 m
|
||||||
|
-2 0.333 l
|
||||||
|
-2 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<pen name="heavier" value="0.8"/>
|
||||||
|
<pen name="fat" value="1.2"/>
|
||||||
|
<pen name="ultrafat" value="2"/>
|
||||||
|
<symbolsize name="large" value="5"/>
|
||||||
|
<symbolsize name="small" value="2"/>
|
||||||
|
<symbolsize name="tiny" value="1.1"/>
|
||||||
|
<arrowsize name="large" value="10"/>
|
||||||
|
<arrowsize name="small" value="5"/>
|
||||||
|
<arrowsize name="tiny" value="3"/>
|
||||||
|
<color name="red" value="1 0 0"/>
|
||||||
|
<color name="green" value="0 1 0"/>
|
||||||
|
<color name="blue" value="0 0 1"/>
|
||||||
|
<color name="yellow" value="1 1 0"/>
|
||||||
|
<color name="orange" value="1 0.647 0"/>
|
||||||
|
<color name="gold" value="1 0.843 0"/>
|
||||||
|
<color name="purple" value="0.627 0.125 0.941"/>
|
||||||
|
<color name="gray" value="0.745"/>
|
||||||
|
<color name="brown" value="0.647 0.165 0.165"/>
|
||||||
|
<color name="navy" value="0 0 0.502"/>
|
||||||
|
<color name="pink" value="1 0.753 0.796"/>
|
||||||
|
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||||
|
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||||
|
<color name="violet" value="0.933 0.51 0.933"/>
|
||||||
|
<color name="darkblue" value="0 0 0.545"/>
|
||||||
|
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||||
|
<color name="darkgray" value="0.663"/>
|
||||||
|
<color name="darkgreen" value="0 0.392 0"/>
|
||||||
|
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||||
|
<color name="darkorange" value="1 0.549 0"/>
|
||||||
|
<color name="darkred" value="0.545 0 0"/>
|
||||||
|
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||||
|
<color name="lightcyan" value="0.878 1 1"/>
|
||||||
|
<color name="lightgray" value="0.827"/>
|
||||||
|
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||||
|
<color name="lightyellow" value="1 1 0.878"/>
|
||||||
|
<dashstyle name="dashed" value="[4] 0"/>
|
||||||
|
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||||
|
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||||
|
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||||
|
<textsize name="large" value="\large"/>
|
||||||
|
<textsize name="Large" value="\Large"/>
|
||||||
|
<textsize name="LARGE" value="\LARGE"/>
|
||||||
|
<textsize name="huge" value="\huge"/>
|
||||||
|
<textsize name="Huge" value="\Huge"/>
|
||||||
|
<textsize name="small" value="\small"/>
|
||||||
|
<textsize name="footnote" value="\footnotesize"/>
|
||||||
|
<textsize name="tiny" value="\tiny"/>
|
||||||
|
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||||
|
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||||
|
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||||
|
<gridsize name="4 pts" value="4"/>
|
||||||
|
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||||
|
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||||
|
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||||
|
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||||
|
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||||
|
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||||
|
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||||
|
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||||
|
<anglesize name="90 deg" value="90"/>
|
||||||
|
<anglesize name="60 deg" value="60"/>
|
||||||
|
<anglesize name="45 deg" value="45"/>
|
||||||
|
<anglesize name="30 deg" value="30"/>
|
||||||
|
<anglesize name="22.5 deg" value="22.5"/>
|
||||||
|
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||||
|
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||||
|
</ipestyle>
|
||||||
|
<page>
|
||||||
|
<layer name="alpha"/>
|
||||||
|
<layer name="beta"/>
|
||||||
|
<view layers="alpha beta" active="beta"/>
|
||||||
|
<path layer="alpha" matrix="1 0 0 1 0 -64" stroke="black">
|
||||||
|
8 0 0 8 32 768 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 0 -64" stroke="black">
|
||||||
|
8 0 0 8 64 768 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 0 -64" stroke="black">
|
||||||
|
8 0 0 8 96 768 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 0 -64" stroke="black">
|
||||||
|
8 0 0 8 128 768 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 0 -64" stroke="black">
|
||||||
|
8 0 0 8 160 768 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 0 -64" stroke="black">
|
||||||
|
8 0 0 8 192 768 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 0 -64" stroke="black">
|
||||||
|
8 0 0 8 224 768 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 0 -64" stroke="black">
|
||||||
|
8 0 0 8 48 800 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 0 -64" stroke="black">
|
||||||
|
8 0 0 8 112 800 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 0 -64" stroke="black">
|
||||||
|
8 0 0 8 176 800 e
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 0 -64" stroke="black">
|
||||||
|
8 0 0 8 240 800 e
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
8 0 0 8 80 768 e
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
8 0 0 8 208 768 e
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
8 0 0 8 144 800 e
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
32 712 m
|
||||||
|
48 728 l
|
||||||
|
64 712 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
96 712 m
|
||||||
|
112 728 l
|
||||||
|
128 712 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
48 744 m
|
||||||
|
80 760 l
|
||||||
|
112 744 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
80 776 m
|
||||||
|
144 792 l
|
||||||
|
208 776 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
176 744 m
|
||||||
|
208 760 l
|
||||||
|
240 744 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
160 712 m
|
||||||
|
176 728 l
|
||||||
|
192 712 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
224 712 m
|
||||||
|
240 728 l
|
||||||
|
</path>
|
||||||
|
<text layer="beta" transformations="translations" pos="32 704" stroke="black" type="label" width="4.981" height="4.289" depth="0" halign="center" valign="center">a</text>
|
||||||
|
<text transformations="translations" pos="64 704" stroke="black" type="label" width="5.535" height="6.918" depth="0" halign="center" valign="center">b</text>
|
||||||
|
<text transformations="translations" pos="96 704" stroke="black" type="label" width="4.428" height="4.289" depth="0" halign="center" valign="center">c</text>
|
||||||
|
<text transformations="translations" pos="128 704" stroke="black" type="label" width="5.535" height="6.918" depth="0" halign="center" valign="center">d</text>
|
||||||
|
<text transformations="translations" pos="160 704" stroke="black" type="label" width="4.428" height="4.289" depth="0" halign="center" valign="center">e</text>
|
||||||
|
<text transformations="translations" pos="192 704" stroke="black" type="label" width="3.044" height="6.918" depth="0" halign="center" valign="center">f</text>
|
||||||
|
<text transformations="translations" pos="224 704" stroke="black" type="label" width="4.981" height="4.297" depth="1.93" halign="center" valign="center">g</text>
|
||||||
|
<text transformations="translations" pos="32 688" stroke="darkred" type="label" width="14.944" height="6.42" depth="0" halign="center" valign="center">$000$</text>
|
||||||
|
<text transformations="translations" pos="64 688" stroke="darkred" type="label" width="14.944" height="6.42" depth="0" halign="center" valign="center">$001$</text>
|
||||||
|
<text transformations="translations" pos="96 688" stroke="darkred" type="label" width="14.944" height="6.42" depth="0" halign="center" valign="center">$010$</text>
|
||||||
|
<text transformations="translations" pos="128 688" stroke="darkred" type="label" width="14.944" height="6.42" depth="0" halign="center" valign="center">$011$</text>
|
||||||
|
<text transformations="translations" pos="160 688" stroke="darkred" type="label" width="14.944" height="6.42" depth="0" halign="center" valign="center">$100$</text>
|
||||||
|
<text transformations="translations" pos="192 688" stroke="darkred" type="label" width="14.944" height="6.42" depth="0" halign="center" valign="center">$101$</text>
|
||||||
|
<text transformations="translations" pos="224 688" stroke="darkred" type="label" width="14.944" height="6.42" depth="0" halign="center" valign="center">$110$</text>
|
||||||
|
<text transformations="translations" pos="104 792" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text transformations="translations" pos="56 760" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text transformations="translations" pos="32 728" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text transformations="translations" pos="104 760" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$1$</text>
|
||||||
|
<text matrix="1 0 0 1 0 8" transformations="translations" pos="128 720" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$1$</text>
|
||||||
|
<text transformations="translations" pos="96 728" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text transformations="translations" pos="160 728" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text transformations="translations" pos="192 728" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$1$</text>
|
||||||
|
<text transformations="translations" pos="224 728" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text transformations="translations" pos="184 792" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$1$</text>
|
||||||
|
<text transformations="translations" pos="184 760" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text transformations="translations" pos="232 760" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$1$</text>
|
||||||
|
</page>
|
||||||
|
</ipe>
|
@ -0,0 +1,591 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||||
|
<ipe version="70005" creator="Ipe 7.1.1">
|
||||||
|
<info created="D:20111222184736" modified="D:20111222215055"/>
|
||||||
|
<ipestyle name="basic">
|
||||||
|
<symbol name="arrow/arc(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/farc(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/circle(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
0.4 0 0 0.4 0 0 e
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/disk(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-fill">
|
||||||
|
0.5 0 0 0.5 0 0 e
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
0.4 0 0 0.4 0 0 e
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/box(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
-0.4 -0.4 m
|
||||||
|
0.4 -0.4 l
|
||||||
|
0.4 0.4 l
|
||||||
|
-0.4 0.4 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/square(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-fill">
|
||||||
|
-0.5 -0.5 m
|
||||||
|
0.5 -0.5 l
|
||||||
|
0.5 0.5 l
|
||||||
|
-0.5 0.5 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
-0.4 -0.4 m
|
||||||
|
0.4 -0.4 l
|
||||||
|
0.4 0.4 l
|
||||||
|
-0.4 0.4 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/cross(sx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.43 -0.57 m
|
||||||
|
0.57 0.43 l
|
||||||
|
0.43 0.57 l
|
||||||
|
-0.57 -0.43 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.43 0.57 m
|
||||||
|
0.57 -0.43 l
|
||||||
|
0.43 -0.57 l
|
||||||
|
-0.57 0.43 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fnormal(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/pointed(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-0.8 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fpointed(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-0.8 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/linear(spx)">
|
||||||
|
<path stroke="sym-stroke" pen="sym-pen">
|
||||||
|
-1 0.333 m
|
||||||
|
0 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fdouble(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
-1 0 m
|
||||||
|
-2 0.333 l
|
||||||
|
-2 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/double(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
-1 0 m
|
||||||
|
-2 0.333 l
|
||||||
|
-2 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<pen name="heavier" value="0.8"/>
|
||||||
|
<pen name="fat" value="1.2"/>
|
||||||
|
<pen name="ultrafat" value="2"/>
|
||||||
|
<symbolsize name="large" value="5"/>
|
||||||
|
<symbolsize name="small" value="2"/>
|
||||||
|
<symbolsize name="tiny" value="1.1"/>
|
||||||
|
<arrowsize name="large" value="10"/>
|
||||||
|
<arrowsize name="small" value="5"/>
|
||||||
|
<arrowsize name="tiny" value="3"/>
|
||||||
|
<color name="red" value="1 0 0"/>
|
||||||
|
<color name="green" value="0 1 0"/>
|
||||||
|
<color name="blue" value="0 0 1"/>
|
||||||
|
<color name="yellow" value="1 1 0"/>
|
||||||
|
<color name="orange" value="1 0.647 0"/>
|
||||||
|
<color name="gold" value="1 0.843 0"/>
|
||||||
|
<color name="purple" value="0.627 0.125 0.941"/>
|
||||||
|
<color name="gray" value="0.745"/>
|
||||||
|
<color name="brown" value="0.647 0.165 0.165"/>
|
||||||
|
<color name="navy" value="0 0 0.502"/>
|
||||||
|
<color name="pink" value="1 0.753 0.796"/>
|
||||||
|
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||||
|
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||||
|
<color name="violet" value="0.933 0.51 0.933"/>
|
||||||
|
<color name="darkblue" value="0 0 0.545"/>
|
||||||
|
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||||
|
<color name="darkgray" value="0.663"/>
|
||||||
|
<color name="darkgreen" value="0 0.392 0"/>
|
||||||
|
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||||
|
<color name="darkorange" value="1 0.549 0"/>
|
||||||
|
<color name="darkred" value="0.545 0 0"/>
|
||||||
|
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||||
|
<color name="lightcyan" value="0.878 1 1"/>
|
||||||
|
<color name="lightgray" value="0.827"/>
|
||||||
|
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||||
|
<color name="lightyellow" value="1 1 0.878"/>
|
||||||
|
<dashstyle name="dashed" value="[4] 0"/>
|
||||||
|
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||||
|
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||||
|
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||||
|
<textsize name="large" value="\large"/>
|
||||||
|
<textsize name="Large" value="\Large"/>
|
||||||
|
<textsize name="LARGE" value="\LARGE"/>
|
||||||
|
<textsize name="huge" value="\huge"/>
|
||||||
|
<textsize name="Huge" value="\Huge"/>
|
||||||
|
<textsize name="small" value="\small"/>
|
||||||
|
<textsize name="footnote" value="\footnotesize"/>
|
||||||
|
<textsize name="tiny" value="\tiny"/>
|
||||||
|
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||||
|
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||||
|
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||||
|
<gridsize name="4 pts" value="4"/>
|
||||||
|
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||||
|
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||||
|
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||||
|
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||||
|
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||||
|
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||||
|
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||||
|
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||||
|
<anglesize name="90 deg" value="90"/>
|
||||||
|
<anglesize name="60 deg" value="60"/>
|
||||||
|
<anglesize name="45 deg" value="45"/>
|
||||||
|
<anglesize name="30 deg" value="30"/>
|
||||||
|
<anglesize name="22.5 deg" value="22.5"/>
|
||||||
|
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||||
|
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||||
|
</ipestyle>
|
||||||
|
<page>
|
||||||
|
<layer name="alpha"/>
|
||||||
|
<layer name="beta"/>
|
||||||
|
<view layers="alpha beta" active="beta"/>
|
||||||
|
<text layer="alpha" transformations="translations" pos="64 768" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$7$</text>
|
||||||
|
<text transformations="translations" pos="96 768" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$8$</text>
|
||||||
|
<text transformations="translations" pos="128 768" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$10$</text>
|
||||||
|
<text transformations="translations" pos="160 768" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<text transformations="translations" pos="192 768" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$19$</text>
|
||||||
|
<text transformations="translations" pos="224 768" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$20$</text>
|
||||||
|
<text transformations="translations" pos="256 768" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$21$</text>
|
||||||
|
<text transformations="translations" pos="64 736" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$10$</text>
|
||||||
|
<text transformations="translations" pos="96 736" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<text transformations="translations" pos="128 736" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<text transformations="translations" pos="160 736" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$19$</text>
|
||||||
|
<text transformations="translations" pos="192 736" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$20$</text>
|
||||||
|
<text transformations="translations" pos="224 736" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$21$</text>
|
||||||
|
<text transformations="translations" pos="112 704" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$7$</text>
|
||||||
|
<text transformations="translations" pos="144 704" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$8$</text>
|
||||||
|
<path stroke="black">
|
||||||
|
112 712 m
|
||||||
|
124 728 l
|
||||||
|
124 728 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
132 728 m
|
||||||
|
144 712 l
|
||||||
|
</path>
|
||||||
|
<text transformations="translations" pos="96 672" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<text transformations="translations" pos="80 640" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$7$</text>
|
||||||
|
<text transformations="translations" pos="112 640" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$8$</text>
|
||||||
|
<text transformations="translations" pos="128 672" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$19$</text>
|
||||||
|
<text transformations="translations" pos="160 672" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$20$</text>
|
||||||
|
<text transformations="translations" pos="192 672" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$21$</text>
|
||||||
|
<text transformations="translations" pos="224 672" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$25$</text>
|
||||||
|
<text transformations="translations" pos="208 640" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$10$</text>
|
||||||
|
<text transformations="translations" pos="240 640" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<path stroke="black">
|
||||||
|
92 664 m
|
||||||
|
80 648 l
|
||||||
|
80 648 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
100 664 m
|
||||||
|
112 648 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
208 648 m
|
||||||
|
220 664 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
228 664 m
|
||||||
|
240 648 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 16 0" transformations="translations" pos="80 608" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$20$</text>
|
||||||
|
<text transformations="translations" pos="128 608" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$21$</text>
|
||||||
|
<text transformations="translations" pos="160 608" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$25$</text>
|
||||||
|
<text transformations="translations" pos="144 576" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$10$</text>
|
||||||
|
<text transformations="translations" pos="176 576" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<text transformations="translations" pos="208 576" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<text transformations="translations" pos="224 608" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$34$</text>
|
||||||
|
<text transformations="translations" pos="240 576" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$19$</text>
|
||||||
|
<text transformations="translations" pos="192 544" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$7$</text>
|
||||||
|
<text transformations="translations" pos="224 544" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$8$</text>
|
||||||
|
<path stroke="black">
|
||||||
|
220 600 m
|
||||||
|
208 584 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
228 600 m
|
||||||
|
240 584 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
204 568 m
|
||||||
|
192 552 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
212 568 m
|
||||||
|
224 552 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
144 584 m
|
||||||
|
156 600 l
|
||||||
|
156 600 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
164 600 m
|
||||||
|
176 584 l
|
||||||
|
</path>
|
||||||
|
<text transformations="translations" pos="96 512" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$25$</text>
|
||||||
|
<text transformations="translations" pos="80 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$10$</text>
|
||||||
|
<text transformations="translations" pos="112 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<text transformations="translations" pos="144 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<text transformations="translations" pos="160 512" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$34$</text>
|
||||||
|
<text transformations="translations" pos="176 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$19$</text>
|
||||||
|
<text transformations="translations" pos="128 448" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$7$</text>
|
||||||
|
<text transformations="translations" pos="160 448" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$8$</text>
|
||||||
|
<text transformations="translations" pos="208 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">20</text>
|
||||||
|
<text transformations="translations" pos="240 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">21</text>
|
||||||
|
<text transformations="translations" pos="224 512" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">41</text>
|
||||||
|
<path stroke="black">
|
||||||
|
92 504 m
|
||||||
|
80 488 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
100 504 m
|
||||||
|
112 488 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
144 488 m
|
||||||
|
156 504 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
164 504 m
|
||||||
|
176 488 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
128 456 m
|
||||||
|
140 472 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
148 472 m
|
||||||
|
160 456 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
208 488 m
|
||||||
|
220 504 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
228 504 m
|
||||||
|
240 488 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 96 256" transformations="translations" pos="208 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">20</text>
|
||||||
|
<text matrix="1 0 0 1 96 256" transformations="translations" pos="240 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">21</text>
|
||||||
|
<text matrix="1 0 0 1 96 256" transformations="translations" pos="224 512" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">41</text>
|
||||||
|
<path matrix="1 0 0 1 96 256" stroke="black">
|
||||||
|
208 488 m
|
||||||
|
220 504 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 96 256" stroke="black">
|
||||||
|
228 504 m
|
||||||
|
240 488 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 272 224" transformations="translations" pos="96 512" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$25$</text>
|
||||||
|
<text matrix="1 0 0 1 272 224" transformations="translations" pos="80 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$10$</text>
|
||||||
|
<text matrix="1 0 0 1 272 224" transformations="translations" pos="112 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<path matrix="1 0 0 1 272 224" stroke="black">
|
||||||
|
92 504 m
|
||||||
|
80 488 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 272 224" stroke="black">
|
||||||
|
100 504 m
|
||||||
|
112 488 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 240 352" transformations="translations" pos="160 416" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$59$</text>
|
||||||
|
<text matrix="1 0 0 1 272 224" transformations="translations" pos="144 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<text matrix="1 0 0 1 272 224" transformations="translations" pos="160 512" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$34$</text>
|
||||||
|
<text matrix="1 0 0 1 272 224" transformations="translations" pos="176 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$19$</text>
|
||||||
|
<text matrix="1 0 0 1 272 224" transformations="translations" pos="128 448" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$7$</text>
|
||||||
|
<text matrix="1 0 0 1 272 224" transformations="translations" pos="160 448" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$8$</text>
|
||||||
|
<path matrix="1 0 0 1 272 224" stroke="black">
|
||||||
|
144 488 m
|
||||||
|
156 504 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 272 224" stroke="black">
|
||||||
|
164 504 m
|
||||||
|
176 488 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 272 224" stroke="black">
|
||||||
|
128 456 m
|
||||||
|
140 472 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 272 224" stroke="black">
|
||||||
|
148 472 m
|
||||||
|
160 456 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="black">
|
||||||
|
144 392 m
|
||||||
|
172 408 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="black">
|
||||||
|
180 408 m
|
||||||
|
208 392 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 80 96" transformations="translations" pos="208 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">20</text>
|
||||||
|
<text matrix="1 0 0 1 80 96" transformations="translations" pos="240 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">21</text>
|
||||||
|
<text matrix="1 0 0 1 80 96" transformations="translations" pos="224 512" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">41</text>
|
||||||
|
<path matrix="1 0 0 1 80 96" stroke="black">
|
||||||
|
208 488 m
|
||||||
|
220 504 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 80 96" stroke="black">
|
||||||
|
228 504 m
|
||||||
|
240 488 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 272 64" transformations="translations" pos="96 512" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$25$</text>
|
||||||
|
<text matrix="1 0 0 1 272 64" transformations="translations" pos="80 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$10$</text>
|
||||||
|
<text matrix="1 0 0 1 272 64" transformations="translations" pos="112 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<path matrix="1 0 0 1 272 64" stroke="black">
|
||||||
|
92 504 m
|
||||||
|
80 488 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 272 64" stroke="black">
|
||||||
|
100 504 m
|
||||||
|
112 488 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 256 192" transformations="translations" pos="160 416" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$59$</text>
|
||||||
|
<text matrix="1 0 0 1 288 64" transformations="translations" pos="144 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$15$</text>
|
||||||
|
<text matrix="1 0 0 1 296 64" transformations="translations" pos="160 512" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$34$</text>
|
||||||
|
<text matrix="1 0 0 1 304 64" transformations="translations" pos="176 480" stroke="black" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$19$</text>
|
||||||
|
<text matrix="1 0 0 1 288 64" transformations="translations" pos="128 448" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$7$</text>
|
||||||
|
<text matrix="1 0 0 1 288 64" transformations="translations" pos="160 448" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$8$</text>
|
||||||
|
<path matrix="1 0 0 1 288 64" stroke="black">
|
||||||
|
128 456 m
|
||||||
|
140 472 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 288 64" stroke="black">
|
||||||
|
148 472 m
|
||||||
|
160 456 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="136 288" stroke="black" type="label" width="14.944" height="6.42" depth="0" halign="center" valign="center">$100$</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="108 280" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text matrix="1 0 0 1 208 352" transformations="translations" pos="80 244" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text matrix="1 0 0 1 240 352" transformations="translations" pos="152 248" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="128 212" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text matrix="1 0 0 1 248 352" transformations="translations" pos="192 216" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text matrix="1 0 0 1 240 352" transformations="translations" pos="176 184" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$0$</text>
|
||||||
|
<text matrix="1 0 0 1 208 352" transformations="translations" pos="112 244" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$1$</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="164 280" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$1$</text>
|
||||||
|
<text matrix="1 0 0 1 240 352" transformations="translations" pos="200 248" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$1$</text>
|
||||||
|
<text matrix="1 0 0 1 248 352" transformations="translations" pos="224 216" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$1$</text>
|
||||||
|
<text matrix="1 0 0 1 240 352" transformations="translations" pos="208 184" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$1$</text>
|
||||||
|
<path matrix="1 0 0 1 232 352" stroke="black">
|
||||||
|
136 232 m
|
||||||
|
180 248 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 232 352" stroke="black">
|
||||||
|
188 248 m
|
||||||
|
224 232 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 232 352" stroke="black">
|
||||||
|
200 200 m
|
||||||
|
220 216 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 232 352" stroke="black">
|
||||||
|
228 216 m
|
||||||
|
248 200 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 228 352" stroke="black">
|
||||||
|
76 264 m
|
||||||
|
128 280 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 228 352" stroke="black">
|
||||||
|
136 280 m
|
||||||
|
188 264 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
64 216 m
|
||||||
|
64 144 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
96 216 m
|
||||||
|
96 144 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
128 184 m
|
||||||
|
128 144 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
160 184 m
|
||||||
|
160 144 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
192 152 m
|
||||||
|
192 144 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
224 152 m
|
||||||
|
224 144 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
256 184 m
|
||||||
|
256 144 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="64 140" stroke="darkred" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$00$</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="96 140" stroke="darkred" type="label" width="9.963" height="6.42" depth="0" halign="center" valign="center">$01$</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="128 140" stroke="darkred" type="label" width="14.944" height="6.42" depth="0" halign="center" valign="center">$100$</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="160 140" stroke="darkred" type="label" width="14.944" height="6.42" depth="0" halign="center" valign="center">$101$</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="192 140" stroke="darkred" type="label" width="19.925" height="6.42" depth="0" halign="center" valign="center">$1100$</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="224 140" stroke="darkred" type="label" width="19.925" height="6.42" depth="0" halign="center" valign="center">$1101$</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="256 140" stroke="darkred" type="label" width="14.944" height="6.42" depth="0" halign="center" valign="center">$111$</text>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
64 136 m
|
||||||
|
64 132 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
96 136 m
|
||||||
|
96 132 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
128 136 m
|
||||||
|
128 132 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
160 136 m
|
||||||
|
160 132 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
192 136 m
|
||||||
|
192 132 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
224 136 m
|
||||||
|
224 132 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 352" stroke="gray">
|
||||||
|
256 136 m
|
||||||
|
256 132 l
|
||||||
|
</path>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="64 128" stroke="darkblue" type="label" width="4.981" height="4.297" depth="1.93" halign="center" valign="center">g</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="96 128" stroke="darkblue" type="label" width="4.428" height="4.289" depth="0" halign="center" valign="center">c</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="128 128" stroke="darkblue" type="label" width="4.981" height="4.289" depth="0" halign="center" valign="center">a</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="160 128" stroke="darkblue" type="label" width="5.535" height="6.918" depth="0" halign="center" valign="center">d</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="192 128" stroke="darkblue" type="label" width="5.535" height="6.918" depth="0" halign="center" valign="center">b</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="224 128" stroke="darkblue" type="label" width="3.044" height="6.918" depth="0" halign="center" valign="center">f</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="256 128" stroke="darkblue" type="label" width="4.428" height="4.289" depth="0" halign="center" valign="center">e</text>
|
||||||
|
<text matrix="1 0 0 1 224 352" transformations="translations" pos="160 212" stroke="seagreen" type="label" width="4.234" height="5.136" depth="0" halign="center" valign="center" size="footnote">$1$</text>
|
||||||
|
<path layer="beta" stroke="darkgray">
|
||||||
|
272 784 m
|
||||||
|
272 432 l
|
||||||
|
</path>
|
||||||
|
<path stroke="darkgray">
|
||||||
|
272 752 m
|
||||||
|
48 752 l
|
||||||
|
</path>
|
||||||
|
<path stroke="darkgray">
|
||||||
|
48 688 m
|
||||||
|
272 688 l
|
||||||
|
</path>
|
||||||
|
<path stroke="darkgray">
|
||||||
|
272 624 m
|
||||||
|
48 624 l
|
||||||
|
</path>
|
||||||
|
<path stroke="darkgray">
|
||||||
|
272 528 m
|
||||||
|
48 528 l
|
||||||
|
</path>
|
||||||
|
<path matrix="1 0 0 1 224 -96" stroke="darkgray">
|
||||||
|
272 752 m
|
||||||
|
48 752 l
|
||||||
|
</path>
|
||||||
|
<text transformations="translations" pos="52 780" stroke="darkred" type="label" width="6.088" height="3.741" depth="1.24" halign="center" valign="center" size="tiny">$1)$</text>
|
||||||
|
<text transformations="translations" pos="52 748" stroke="darkred" type="label" width="6.088" height="3.741" depth="1.24" halign="center" valign="center" size="tiny">$2)$</text>
|
||||||
|
<text transformations="translations" pos="52 684" stroke="darkred" type="label" width="6.088" height="3.741" depth="1.24" halign="center" valign="center" size="tiny">$3)$</text>
|
||||||
|
<text transformations="translations" pos="52 620" stroke="darkred" type="label" width="6.088" height="3.741" depth="1.24" halign="center" valign="center" size="tiny">$4)$</text>
|
||||||
|
<text transformations="translations" pos="52 524" stroke="darkred" type="label" width="6.088" height="3.741" depth="1.24" halign="center" valign="center" size="tiny">$5)$</text>
|
||||||
|
<text transformations="translations" pos="276 780" stroke="darkred" type="label" width="6.088" height="3.741" depth="1.24" halign="center" valign="center" size="tiny">$6)$</text>
|
||||||
|
<text transformations="translations" pos="276 652" stroke="darkred" type="label" width="6.088" height="3.741" depth="1.24" halign="center" valign="center" size="tiny">$7)$</text>
|
||||||
|
</page>
|
||||||
|
</ipe>
|
@ -0,0 +1,434 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE ipe SYSTEM "ipe.dtd">
|
||||||
|
<ipe version="70005" creator="Ipe 7.1.1">
|
||||||
|
<info created="D:20111222212521" modified="D:20111222231648"/>
|
||||||
|
<ipestyle name="basic">
|
||||||
|
<symbol name="arrow/arc(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/farc(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/circle(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
0.4 0 0 0.4 0 0 e
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/disk(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/fdisk(sfx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-fill">
|
||||||
|
0.5 0 0 0.5 0 0 e
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
0.6 0 0 0.6 0 0 e
|
||||||
|
0.4 0 0 0.4 0 0 e
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/box(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
-0.4 -0.4 m
|
||||||
|
0.4 -0.4 l
|
||||||
|
0.4 0.4 l
|
||||||
|
-0.4 0.4 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/square(sx)" transformations="translations">
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/fsquare(sfx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-fill">
|
||||||
|
-0.5 -0.5 m
|
||||||
|
0.5 -0.5 l
|
||||||
|
0.5 0.5 l
|
||||||
|
-0.5 0.5 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke" fillrule="eofill">
|
||||||
|
-0.6 -0.6 m
|
||||||
|
0.6 -0.6 l
|
||||||
|
0.6 0.6 l
|
||||||
|
-0.6 0.6 l
|
||||||
|
h
|
||||||
|
-0.4 -0.4 m
|
||||||
|
0.4 -0.4 l
|
||||||
|
0.4 0.4 l
|
||||||
|
-0.4 0.4 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="mark/cross(sx)" transformations="translations">
|
||||||
|
<group>
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.43 -0.57 m
|
||||||
|
0.57 0.43 l
|
||||||
|
0.43 0.57 l
|
||||||
|
-0.57 -0.43 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
<path fill="sym-stroke">
|
||||||
|
-0.43 0.57 m
|
||||||
|
0.57 -0.43 l
|
||||||
|
0.43 -0.57 l
|
||||||
|
-0.57 0.43 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</group>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fnormal(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/pointed(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-0.8 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fpointed(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-0.8 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/linear(spx)">
|
||||||
|
<path stroke="sym-stroke" pen="sym-pen">
|
||||||
|
-1 0.333 m
|
||||||
|
0 0 l
|
||||||
|
-1 -0.333 l
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/fdouble(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="white" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
-1 0 m
|
||||||
|
-2 0.333 l
|
||||||
|
-2 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<symbol name="arrow/double(spx)">
|
||||||
|
<path stroke="sym-stroke" fill="sym-stroke" pen="sym-pen">
|
||||||
|
0 0 m
|
||||||
|
-1 0.333 l
|
||||||
|
-1 -0.333 l
|
||||||
|
h
|
||||||
|
-1 0 m
|
||||||
|
-2 0.333 l
|
||||||
|
-2 -0.333 l
|
||||||
|
h
|
||||||
|
</path>
|
||||||
|
</symbol>
|
||||||
|
<pen name="heavier" value="0.8"/>
|
||||||
|
<pen name="fat" value="1.2"/>
|
||||||
|
<pen name="ultrafat" value="2"/>
|
||||||
|
<symbolsize name="large" value="5"/>
|
||||||
|
<symbolsize name="small" value="2"/>
|
||||||
|
<symbolsize name="tiny" value="1.1"/>
|
||||||
|
<arrowsize name="large" value="10"/>
|
||||||
|
<arrowsize name="small" value="5"/>
|
||||||
|
<arrowsize name="tiny" value="3"/>
|
||||||
|
<color name="red" value="1 0 0"/>
|
||||||
|
<color name="green" value="0 1 0"/>
|
||||||
|
<color name="blue" value="0 0 1"/>
|
||||||
|
<color name="yellow" value="1 1 0"/>
|
||||||
|
<color name="orange" value="1 0.647 0"/>
|
||||||
|
<color name="gold" value="1 0.843 0"/>
|
||||||
|
<color name="purple" value="0.627 0.125 0.941"/>
|
||||||
|
<color name="gray" value="0.745"/>
|
||||||
|
<color name="brown" value="0.647 0.165 0.165"/>
|
||||||
|
<color name="navy" value="0 0 0.502"/>
|
||||||
|
<color name="pink" value="1 0.753 0.796"/>
|
||||||
|
<color name="seagreen" value="0.18 0.545 0.341"/>
|
||||||
|
<color name="turquoise" value="0.251 0.878 0.816"/>
|
||||||
|
<color name="violet" value="0.933 0.51 0.933"/>
|
||||||
|
<color name="darkblue" value="0 0 0.545"/>
|
||||||
|
<color name="darkcyan" value="0 0.545 0.545"/>
|
||||||
|
<color name="darkgray" value="0.663"/>
|
||||||
|
<color name="darkgreen" value="0 0.392 0"/>
|
||||||
|
<color name="darkmagenta" value="0.545 0 0.545"/>
|
||||||
|
<color name="darkorange" value="1 0.549 0"/>
|
||||||
|
<color name="darkred" value="0.545 0 0"/>
|
||||||
|
<color name="lightblue" value="0.678 0.847 0.902"/>
|
||||||
|
<color name="lightcyan" value="0.878 1 1"/>
|
||||||
|
<color name="lightgray" value="0.827"/>
|
||||||
|
<color name="lightgreen" value="0.565 0.933 0.565"/>
|
||||||
|
<color name="lightyellow" value="1 1 0.878"/>
|
||||||
|
<dashstyle name="dashed" value="[4] 0"/>
|
||||||
|
<dashstyle name="dotted" value="[1 3] 0"/>
|
||||||
|
<dashstyle name="dash dotted" value="[4 2 1 2] 0"/>
|
||||||
|
<dashstyle name="dash dot dotted" value="[4 2 1 2 1 2] 0"/>
|
||||||
|
<textsize name="large" value="\large"/>
|
||||||
|
<textsize name="Large" value="\Large"/>
|
||||||
|
<textsize name="LARGE" value="\LARGE"/>
|
||||||
|
<textsize name="huge" value="\huge"/>
|
||||||
|
<textsize name="Huge" value="\Huge"/>
|
||||||
|
<textsize name="small" value="\small"/>
|
||||||
|
<textsize name="footnote" value="\footnotesize"/>
|
||||||
|
<textsize name="tiny" value="\tiny"/>
|
||||||
|
<textstyle name="center" begin="\begin{center}" end="\end{center}"/>
|
||||||
|
<textstyle name="itemize" begin="\begin{itemize}" end="\end{itemize}"/>
|
||||||
|
<textstyle name="item" begin="\begin{itemize}\item{}" end="\end{itemize}"/>
|
||||||
|
<gridsize name="4 pts" value="4"/>
|
||||||
|
<gridsize name="8 pts (~3 mm)" value="8"/>
|
||||||
|
<gridsize name="16 pts (~6 mm)" value="16"/>
|
||||||
|
<gridsize name="32 pts (~12 mm)" value="32"/>
|
||||||
|
<gridsize name="10 pts (~3.5 mm)" value="10"/>
|
||||||
|
<gridsize name="20 pts (~7 mm)" value="20"/>
|
||||||
|
<gridsize name="14 pts (~5 mm)" value="14"/>
|
||||||
|
<gridsize name="28 pts (~10 mm)" value="28"/>
|
||||||
|
<gridsize name="56 pts (~20 mm)" value="56"/>
|
||||||
|
<anglesize name="90 deg" value="90"/>
|
||||||
|
<anglesize name="60 deg" value="60"/>
|
||||||
|
<anglesize name="45 deg" value="45"/>
|
||||||
|
<anglesize name="30 deg" value="30"/>
|
||||||
|
<anglesize name="22.5 deg" value="22.5"/>
|
||||||
|
<tiling name="falling" angle="-60" step="4" width="1"/>
|
||||||
|
<tiling name="rising" angle="30" step="4" width="1"/>
|
||||||
|
</ipestyle>
|
||||||
|
<page>
|
||||||
|
<layer name="alpha"/>
|
||||||
|
<layer name="beta"/>
|
||||||
|
<view layers="alpha beta" active="beta"/>
|
||||||
|
<path layer="alpha" stroke="black">
|
||||||
|
192 752 m
|
||||||
|
48 608 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
192 752 m
|
||||||
|
336 608 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
48 608 m
|
||||||
|
72 584 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
72 584 m
|
||||||
|
216 728 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
72 632 m
|
||||||
|
120 584 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
120 584 m
|
||||||
|
240 704 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
96 656 m
|
||||||
|
168 584 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
168 584 m
|
||||||
|
264 680 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
120 680 m
|
||||||
|
216 584 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
216 584 m
|
||||||
|
288 656 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
144 704 m
|
||||||
|
264 584 l
|
||||||
|
312 632 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
168 728 m
|
||||||
|
312 584 l
|
||||||
|
</path>
|
||||||
|
<path stroke="black">
|
||||||
|
312 584 m
|
||||||
|
336 608 l
|
||||||
|
</path>
|
||||||
|
<text layer="beta" transformations="translations" pos="192 736" stroke="black" type="label" width="23.412" height="7.704" depth="0" halign="center" valign="center" size="large">$1050$</text>
|
||||||
|
<text transformations="translations" pos="168 712" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$740$</text>
|
||||||
|
<text transformations="translations" pos="144 688" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$900$</text>
|
||||||
|
<text transformations="translations" pos="120 664" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$450$</text>
|
||||||
|
<text transformations="translations" pos="96 640" stroke="black" type="label" width="23.412" height="7.704" depth="0" halign="center" valign="center" size="large">$1000$</text>
|
||||||
|
<text transformations="translations" pos="72 616" stroke="black" type="label" width="5.853" height="7.704" depth="0" halign="center" valign="center" size="large">$0$</text>
|
||||||
|
<text transformations="translations" pos="120 616" stroke="black" type="label" width="5.853" height="7.704" depth="0" halign="center" valign="center" size="large">$0$</text>
|
||||||
|
<text transformations="translations" pos="168 616" stroke="black" type="label" width="5.853" height="7.704" depth="0" halign="center" valign="center" size="large">$0$</text>
|
||||||
|
<text transformations="translations" pos="216 616" stroke="black" type="label" width="5.853" height="7.704" depth="0" halign="center" valign="center" size="large">$0$</text>
|
||||||
|
<text transformations="translations" pos="264 616" stroke="black" type="label" width="5.853" height="7.704" depth="0" halign="center" valign="center" size="large">$0$</text>
|
||||||
|
<text transformations="translations" pos="312 616" stroke="black" type="label" width="5.853" height="7.704" depth="0" halign="center" valign="center" size="large">$0$</text>
|
||||||
|
<text transformations="translations" pos="144 640" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$300$</text>
|
||||||
|
<text transformations="translations" pos="192 640" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$900$</text>
|
||||||
|
<text transformations="translations" pos="240 640" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$180$</text>
|
||||||
|
<text transformations="translations" pos="288 640" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$600$</text>
|
||||||
|
<text transformations="translations" pos="168 664" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$525$</text>
|
||||||
|
<text transformations="translations" pos="216 664" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$420$</text>
|
||||||
|
<text transformations="translations" pos="264 664" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$300$</text>
|
||||||
|
<text transformations="translations" pos="192 688" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$540$</text>
|
||||||
|
<text transformations="translations" pos="240 688" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$900$</text>
|
||||||
|
<text transformations="translations" pos="216 712" stroke="black" type="label" width="17.559" height="7.704" depth="0" halign="center" valign="center" size="large">$740$</text>
|
||||||
|
<text transformations="translations" pos="96 624" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$1$</text>
|
||||||
|
<text transformations="translations" pos="144 624" stroke="blue" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$2$</text>
|
||||||
|
<text transformations="translations" pos="192 624" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text transformations="translations" pos="240 624" stroke="green" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$4$</text>
|
||||||
|
<text transformations="translations" pos="288 624" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$5$</text>
|
||||||
|
<text transformations="translations" pos="120 648" stroke="orange" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$1$</text>
|
||||||
|
<text transformations="translations" pos="168 648" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text transformations="translations" pos="216 648" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$4$</text>
|
||||||
|
<text transformations="translations" pos="264 648" stroke="brown" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$5$</text>
|
||||||
|
<text transformations="translations" pos="144 672" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text transformations="translations" pos="192 672" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text transformations="translations" pos="240 672" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text transformations="translations" pos="168 696" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$1$</text>
|
||||||
|
<text transformations="translations" pos="216 696" stroke="black" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$5$</text>
|
||||||
|
<text transformations="translations" pos="192 720" stroke="seagreen" type="label" width="4.981" height="6.42" depth="0" halign="center" valign="center">$3$</text>
|
||||||
|
<text transformations="translations" pos="72 576" stroke="black" type="label" width="13.508" height="8.173" depth="1.79" halign="center" valign="center" size="large">$A_1$</text>
|
||||||
|
<text transformations="translations" pos="120 576" stroke="black" type="label" width="13.508" height="8.173" depth="1.79" halign="center" valign="center" size="large">$A_2$</text>
|
||||||
|
<text transformations="translations" pos="168 576" stroke="black" type="label" width="13.508" height="8.173" depth="1.79" halign="center" valign="center" size="large">$A_3$</text>
|
||||||
|
<text transformations="translations" pos="216 576" stroke="black" type="label" width="13.508" height="8.173" depth="1.79" halign="center" valign="center" size="large">$A_4$</text>
|
||||||
|
<text transformations="translations" pos="264 576" stroke="black" type="label" width="13.508" height="8.173" depth="1.79" halign="center" valign="center" size="large">$A_5$</text>
|
||||||
|
<text transformations="translations" pos="312 576" stroke="black" type="label" width="13.508" height="8.173" depth="1.79" halign="center" valign="center" size="large">$A_6$</text>
|
||||||
|
<text transformations="translations" pos="72 560" stroke="black" type="label" width="27.12" height="6.421" depth="0.83" halign="center" valign="center">$10\times 5$</text>
|
||||||
|
<text transformations="translations" pos="120 560" stroke="black" type="label" width="27.12" height="6.421" depth="0.83" halign="center" valign="center">$5\times 20$</text>
|
||||||
|
<text transformations="translations" pos="168 560" stroke="black" type="label" width="27.12" height="6.421" depth="0.83" halign="center" valign="center">$20\times 3$</text>
|
||||||
|
<text transformations="translations" pos="216 560" stroke="black" type="label" width="27.12" height="6.421" depth="0.83" halign="center" valign="center">$3\times 15$</text>
|
||||||
|
<text transformations="translations" pos="264 560" stroke="black" type="label" width="27.12" height="6.421" depth="0.83" halign="center" valign="center">$15\times 4$</text>
|
||||||
|
<text transformations="translations" pos="312 560" stroke="black" type="label" width="27.12" height="6.421" depth="0.83" halign="center" valign="center">$4\times 10$</text>
|
||||||
|
<text transformations="translations" pos="64 528" stroke="black" type="label" width="192.307" height="11.453" depth="6.48" valign="baseline">$\Rightarrow {\color{seagreen}\Big(}
|
||||||
|
{\color{orange}\big(}
|
||||||
|
A_1
|
||||||
|
{\color{orange}\big)}\
|
||||||
|
{\color{orange}\big(}
|
||||||
|
{\color{blue}(}
|
||||||
|
A_2
|
||||||
|
{\color{blue})}\
|
||||||
|
{\color{blue}(}
|
||||||
|
A_3
|
||||||
|
{\color{blue})}
|
||||||
|
{\color{orange}\big)}
|
||||||
|
{\color{seagreen}\Big)}\
|
||||||
|
{\color{seagreen}\Big(}
|
||||||
|
{\color{brown}\big(}
|
||||||
|
{\color{green}(}
|
||||||
|
A_4
|
||||||
|
{\color{green})}\
|
||||||
|
{\color{green}(}
|
||||||
|
A_5
|
||||||
|
{\color{green})}
|
||||||
|
{\color{brown}\big)}\
|
||||||
|
{\color{brown}\big(}
|
||||||
|
A_6
|
||||||
|
{\color{brown}\big)}
|
||||||
|
{\color{seagreen}\Big)}$</text>
|
||||||
|
<text transformations="translations" pos="48 632" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$1$</text>
|
||||||
|
<text matrix="1 0 0 1 -8 0" transformations="translations" pos="80 656" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$2$</text>
|
||||||
|
<text matrix="1 0 0 1 -8 0" transformations="translations" pos="104 680" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$3$</text>
|
||||||
|
<text transformations="translations" pos="120 704" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$4$</text>
|
||||||
|
<text transformations="translations" pos="144 728" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$5$</text>
|
||||||
|
<text transformations="translations" pos="168 752" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$6$</text>
|
||||||
|
<text transformations="translations" pos="216 752" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$1$</text>
|
||||||
|
<text transformations="translations" pos="240 728" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$2$</text>
|
||||||
|
<text transformations="translations" pos="264 704" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$3$</text>
|
||||||
|
<text transformations="translations" pos="288 680" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$4$</text>
|
||||||
|
<text matrix="1 0 0 1 0 -8" transformations="translations" pos="312 664" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$5$</text>
|
||||||
|
<text transformations="translations" pos="336 632" stroke="black" type="label" width="4.608" height="5.778" depth="0" halign="center" valign="center" size="small">$6$</text>
|
||||||
|
<text matrix="1 0 0 1 -8 8" transformations="translations" pos="96 704" stroke="black" type="label" width="6.619" height="9.405" depth="2.79" halign="center" valign="center" size="Large">$j$</text>
|
||||||
|
<text matrix="1 0 0 1 8 8" transformations="translations" pos="288 704" stroke="black" type="label" width="4.792" height="9.405" depth="0" halign="center" valign="center" size="Large">$i$</text>
|
||||||
|
<path stroke="gray">
|
||||||
|
44 612 m
|
||||||
|
48 608 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
68 636 m
|
||||||
|
72 632 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
92 660 m
|
||||||
|
96 656 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
116 684 m
|
||||||
|
120 680 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
140 708 m
|
||||||
|
144 704 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
164 732 m
|
||||||
|
168 728 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
188 756 m
|
||||||
|
192 752 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
192 752 m
|
||||||
|
196 756 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
216 728 m
|
||||||
|
220 732 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
240 704 m
|
||||||
|
244 708 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
264 680 m
|
||||||
|
268 684 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
288 656 m
|
||||||
|
292 660 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
312 632 m
|
||||||
|
316 636 l
|
||||||
|
</path>
|
||||||
|
<path stroke="gray">
|
||||||
|
336 608 m
|
||||||
|
340 612 l
|
||||||
|
</path>
|
||||||
|
</page>
|
||||||
|
</ipe>
|
Loading…
Reference in new issue